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 |
|---|---|---|---|---|
* {
font-size: 16px;
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Questrial', sans-serif;
}
body {
background-image: url("../img/footer_lodyas.png");
}
header, footer {
color: white;
display: flex;
align-items: center;
justify-content: center;
margin: auto;
padding: 1em 0.5em;
text-align: center;
width: 100%;
/* Fadein animation on page load */
-webkit-animation: fadein 4s; /* Webkit */
-moz-animation: fadein 4s; /* Firefox */
-ms-animation: fadein 4s; /* Internet Explorer */
animation: fadein 4s;
}
#menu {
margin-top: 4em;
}
#menu a {
text-decoration: none;
font-size: 2em;
color: white;
display: block;
margin: auto;
padding-top: 0.5em;
text-align: center;
width: 100%;
/* Fadein animation on page load */
-webkit-animation: fadein 4s; /* Webkit */
-moz-animation: fadein 4s; /* Firefox */
-ms-animation: fadein 4s; /* Internet Explorer */
animation: fadein 4s;
}
#menu a:last-child {
color: red;
padding-top: 1em;
}
@media (max-width: 700px) {
#menu a {
font-size: 4em;
margin-bottom: 0.5em;
}
}
#menu a:hover {
filter: opacity(0.7);
}
footer h1 {
font-size: 3em;
}
footer h1:hover {
opacity: 0.5;
}
.outer_card,
.inner_card {
transition: transform 0.25s, background 0.2s;
text-align: center;
/* Fadein animation on page load */
-webkit-animation: fadein 4s; /* Webkit */
-moz-animation: fadein 4s; /* Firefox */
-ms-animation: fadein 4s; /* Internet Explorer */
animation: fadein 4s;
}
.gameWindow {
width: 80%;
margin: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.outer_card {
backface-visibility: visible;
background-size: cover;
width: 10em;
height: 14em;
}
/* Increase the size of the cards on small displays */
@media (max-width: 600px) {
.gameWindow {
width: 95%;
}
.outer_card {
width: 15em;
height: 21em;
}
}
.outer_card:hover {
transform: scale(1.05);
filter: saturate(1.3) brightness(1.3);
}
.matched:hover {
transform: rotateY(-180deg);
filter: brightness(0.5);
}
.inner_card {
font-size: 9em;
backface-visibility: hidden;
height: auto;
transform: rotateY(-180deg) scaleX(-1);
}
.outer_card.selected .inner_card {
transform: rotateY(0deg) scaleX(-1);
}
.outer_card.selected {
transform: rotateY(-180deg);
}
.matched {
transform: rotateY(-180deg);
filter: brightness(0.5);
}
.matched .inner_card {
backface-visibility: visible;
transform: rotateY(180deg);
transition: 0s;
}
h1 {
font-size: 5em;
}
/* Fadein animation on page load */
@keyframes fadein {
from {
opacity: 0;
margin-top: 100px;
}
to {
opacity: 1;
margin-top: 0px;
}
}
/* Firefox */
@-moz-keyframes fadein {
from {
opacity: 0;
margin-top: 100px;
}
to {
opacity: 1;
margin-top: 0px;
}
}
/* Webkit */
@-webkit-keyframes fadein {
from {
opacity: 0;
margin-top: 100px;
}
to {
opacity: 1;
margin-top: 0px;
}
}
/* Internet Explorer */
@-ms-keyframes fadein {
from {
opacity: 0;
margin-top: 100px;
}
to {
opacity: 1;
margin-top: 0px;
}
} | Concentration/css/styles.css | * {
font-size: 16px;
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Questrial', sans-serif;
}
body {
background-image: url("../img/footer_lodyas.png");
}
header, footer {
color: white;
display: flex;
align-items: center;
justify-content: center;
margin: auto;
padding: 1em 0.5em;
text-align: center;
width: 100%;
/* Fadein animation on page load */
-webkit-animation: fadein 4s; /* Webkit */
-moz-animation: fadein 4s; /* Firefox */
-ms-animation: fadein 4s; /* Internet Explorer */
animation: fadein 4s;
}
#menu {
margin-top: 4em;
}
#menu a {
text-decoration: none;
font-size: 2em;
color: white;
display: block;
margin: auto;
padding-top: 0.5em;
text-align: center;
width: 100%;
/* Fadein animation on page load */
-webkit-animation: fadein 4s; /* Webkit */
-moz-animation: fadein 4s; /* Firefox */
-ms-animation: fadein 4s; /* Internet Explorer */
animation: fadein 4s;
}
#menu a:last-child {
color: red;
padding-top: 1em;
}
@media (max-width: 700px) {
#menu a {
font-size: 4em;
margin-bottom: 0.5em;
}
}
#menu a:hover {
filter: opacity(0.7);
}
footer h1 {
font-size: 3em;
}
footer h1:hover {
opacity: 0.5;
}
.outer_card,
.inner_card {
transition: transform 0.25s, background 0.2s;
text-align: center;
/* Fadein animation on page load */
-webkit-animation: fadein 4s; /* Webkit */
-moz-animation: fadein 4s; /* Firefox */
-ms-animation: fadein 4s; /* Internet Explorer */
animation: fadein 4s;
}
.gameWindow {
width: 80%;
margin: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.outer_card {
backface-visibility: visible;
background-size: cover;
width: 10em;
height: 14em;
}
/* Increase the size of the cards on small displays */
@media (max-width: 600px) {
.gameWindow {
width: 95%;
}
.outer_card {
width: 15em;
height: 21em;
}
}
.outer_card:hover {
transform: scale(1.05);
filter: saturate(1.3) brightness(1.3);
}
.matched:hover {
transform: rotateY(-180deg);
filter: brightness(0.5);
}
.inner_card {
font-size: 9em;
backface-visibility: hidden;
height: auto;
transform: rotateY(-180deg) scaleX(-1);
}
.outer_card.selected .inner_card {
transform: rotateY(0deg) scaleX(-1);
}
.outer_card.selected {
transform: rotateY(-180deg);
}
.matched {
transform: rotateY(-180deg);
filter: brightness(0.5);
}
.matched .inner_card {
backface-visibility: visible;
transform: rotateY(180deg);
transition: 0s;
}
h1 {
font-size: 5em;
}
/* Fadein animation on page load */
@keyframes fadein {
from {
opacity: 0;
margin-top: 100px;
}
to {
opacity: 1;
margin-top: 0px;
}
}
/* Firefox */
@-moz-keyframes fadein {
from {
opacity: 0;
margin-top: 100px;
}
to {
opacity: 1;
margin-top: 0px;
}
}
/* Webkit */
@-webkit-keyframes fadein {
from {
opacity: 0;
margin-top: 100px;
}
to {
opacity: 1;
margin-top: 0px;
}
}
/* Internet Explorer */
@-ms-keyframes fadein {
from {
opacity: 0;
margin-top: 100px;
}
to {
opacity: 1;
margin-top: 0px;
}
} | 0.422743 | 0.105579 |
@font-face {
font-family: scratchFont;
src: local(scratch.tff);
}
html, body{
height: 100%;
font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
body {
background-color: #F2F2F2;
}
#header {
display: block;
position: fixed;
top:0;
left:0;
height:50px;
/*margin:auto;*/
z-index: 100000;
font-size: 2rem;
text-align: center;
width: 100%;
background: #9C0;
color: #FFF;
box-shadow: 0 0 3px hsla(0, 0, 0, .25);
border-bottom: 1px solid hsla(0, 0, 0, .1);
}
.inner > ul {
display: flex;
margin: 0 auto;
padding: 0;
height: 50px;
list-style: none;
flex-wrap: nowrap;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
.inner > ul > li {
display: inline-block;
position: relative;
vertical-align: middle;
margin-right: 30px;
margin-left: 10px;
}
/*#name {
font-family: scratchFont;
letter-spacing: 1.1px;
}*/
#content {
color: #6B6B6B;
background-color: inherit;
margin: 50px auto;
padding: 20px 0;
min-width: 75%;
width: 75%;
min-height: 768px;
}
p {
line-height: 1.5rem;
}
#sdsTitle {
/* font-family: scratchFont; */
font-size: 3em;
font-weight: bold;
/*color: #824DCB; Purple doesn't look great, other suggestions? */
}
#credits ul {
display: flex;
margin: 0;
padding: 0;
list-style: none;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
#credits li {
display: inline-block;
margin: 10px 0;
width: 188px;
text-align: center;
}
#credits li img {
margin: 10px 23px;
border: 2px;
border-style: solid;
border-radius: 50%;
border-color: #B3B3B3;
background-color: #fff;
padding: 20px;
width: 85px;
height: 85px;
}
#credits {
margin: 0 auto;
margin-top: 50px;
}
#credits h2 {
text-align: center;
}
a:link, a:visited {
color: #9C0;
text-decoration: none;
}
a:hover {
color: #669900;
text-decoration: none;
}
a:active {
color: #360;
text-decoration: underline;
}
/* entering dropdown zone */
/* dropdown button */
.dropdownButton {
height: 50px;
background-color: #9C0;
color: #FFFFFF;
padding: 0px 5px;
font-size: 1rem;
border: none;
cursor: pointer;
}
/* Dropdown button on hover & focus */
.dropdownButton:hover, .dropdownButton:focus {
background-color: #80B300;
outline: none;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #F2F2F2;
min-width: 160px; /* this value can be changed as needed */
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
cursor: pointer;
}
/* Links inside the dropdown */
.dropdown-content a {
color: #6B6B6B;
padding: 12px 16px;
font-size: 0.6em;
text-decoration: none;
display: block;
}
.dropdown-content a:not(:last-child) {
border-bottom: 1px solid #E6E6E6;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #B3B3B3;
}
.dropdown-content a:hover:not(:last-child){
border-bottom: 1px solid #B3B3B3;
}
/* Show the dropdown menu */
.show {
display: block;
}
/*
ui-blue - #25AFF4
ui-orange - #F49D25
ui-gray - #F2F2F2
ui-dark-gray - #B3B3B3
ui-aqua - #26D9BB
ui-purple - #824DCB
ui-border - #D9D9D9
background-color: #FDFDFD
type-gray - #6B6B6B
splash-green - #9C0
splash-pink - #D2479D
*/ | style.css | @font-face {
font-family: scratchFont;
src: local(scratch.tff);
}
html, body{
height: 100%;
font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
body {
background-color: #F2F2F2;
}
#header {
display: block;
position: fixed;
top:0;
left:0;
height:50px;
/*margin:auto;*/
z-index: 100000;
font-size: 2rem;
text-align: center;
width: 100%;
background: #9C0;
color: #FFF;
box-shadow: 0 0 3px hsla(0, 0, 0, .25);
border-bottom: 1px solid hsla(0, 0, 0, .1);
}
.inner > ul {
display: flex;
margin: 0 auto;
padding: 0;
height: 50px;
list-style: none;
flex-wrap: nowrap;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
.inner > ul > li {
display: inline-block;
position: relative;
vertical-align: middle;
margin-right: 30px;
margin-left: 10px;
}
/*#name {
font-family: scratchFont;
letter-spacing: 1.1px;
}*/
#content {
color: #6B6B6B;
background-color: inherit;
margin: 50px auto;
padding: 20px 0;
min-width: 75%;
width: 75%;
min-height: 768px;
}
p {
line-height: 1.5rem;
}
#sdsTitle {
/* font-family: scratchFont; */
font-size: 3em;
font-weight: bold;
/*color: #824DCB; Purple doesn't look great, other suggestions? */
}
#credits ul {
display: flex;
margin: 0;
padding: 0;
list-style: none;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
#credits li {
display: inline-block;
margin: 10px 0;
width: 188px;
text-align: center;
}
#credits li img {
margin: 10px 23px;
border: 2px;
border-style: solid;
border-radius: 50%;
border-color: #B3B3B3;
background-color: #fff;
padding: 20px;
width: 85px;
height: 85px;
}
#credits {
margin: 0 auto;
margin-top: 50px;
}
#credits h2 {
text-align: center;
}
a:link, a:visited {
color: #9C0;
text-decoration: none;
}
a:hover {
color: #669900;
text-decoration: none;
}
a:active {
color: #360;
text-decoration: underline;
}
/* entering dropdown zone */
/* dropdown button */
.dropdownButton {
height: 50px;
background-color: #9C0;
color: #FFFFFF;
padding: 0px 5px;
font-size: 1rem;
border: none;
cursor: pointer;
}
/* Dropdown button on hover & focus */
.dropdownButton:hover, .dropdownButton:focus {
background-color: #80B300;
outline: none;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #F2F2F2;
min-width: 160px; /* this value can be changed as needed */
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
cursor: pointer;
}
/* Links inside the dropdown */
.dropdown-content a {
color: #6B6B6B;
padding: 12px 16px;
font-size: 0.6em;
text-decoration: none;
display: block;
}
.dropdown-content a:not(:last-child) {
border-bottom: 1px solid #E6E6E6;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #B3B3B3;
}
.dropdown-content a:hover:not(:last-child){
border-bottom: 1px solid #B3B3B3;
}
/* Show the dropdown menu */
.show {
display: block;
}
/*
ui-blue - #25AFF4
ui-orange - #F49D25
ui-gray - #F2F2F2
ui-dark-gray - #B3B3B3
ui-aqua - #26D9BB
ui-purple - #824DCB
ui-border - #D9D9D9
background-color: #FDFDFD
type-gray - #6B6B6B
splash-green - #9C0
splash-pink - #D2479D
*/ | 0.30965 | 0.08207 |
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #000;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.container a {
position: relative;
display: inline-block;
padding: 15px 30px;
border: 2px solid #0f0;
margin: 40px;
text-transform: uppercase;
font-weight: 600;
text-decoration: none;
letter-spacing: 2px;
color: #fff;
-webkit-box-reflect: below 0px linear-gradient(transparent, #0002);
transition: 0.5s;
transition-delay: 0s;
}
.container a:hover {
transition-delay: 1.5s;
color: #000;
box-shadow: 0 0 10px #0f0,
0 0 20px #0f0,
0 0 40px #0f0,
0 0 80px #0f0,
0 0 160px #0f0;
}
.container a span {
position: relative;
z-index: 100;
}
.container a:nth-child(2) {
filter: hue-rotate(80deg);
}
.container a::before {
content: '';
position: absolute;
left: -20px;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 2px;
background: #0f0;
box-shadow: 5px -8px 0 #0f0,
5px 8px 0 #0f0;
transition: width 0.5s, left 0.5s, height 0.5s,
box-shadow 0.5s;
transition-delay: 1s, 0.5s, 0s, 0s;
}
.container a:hover::before {
width: 60%;
height: 100%;
left: -2px;
box-shadow: 5px 0px 0 #0f0,
5px 0px 0 #0f0;
transition-delay: 0s, 0.5s, 1s, 1s;
}
.container a::after {
content: '';
position: absolute;
right: -20px;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 2px;
background: #0f0;
box-shadow: -5px -8px 0 #0f0,
-5px 8px 0 #0f0;
transition: width 0.5s, right 0.5s, height 0.5s,
box-shadow 0.5s;
transition-delay: 1s, 0.5s, 0s, 0s;
}
.container a:hover::after {
width: 60%;
height: 100%;
right: -2px;
box-shadow: -5px 0px 0 #0f0,
-5px 0px 0 #0f0;
transition-delay: 0s, 0.5s, 1s, 1s;
} | Energy Button Hover Effects/style/main.css | @import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #000;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.container a {
position: relative;
display: inline-block;
padding: 15px 30px;
border: 2px solid #0f0;
margin: 40px;
text-transform: uppercase;
font-weight: 600;
text-decoration: none;
letter-spacing: 2px;
color: #fff;
-webkit-box-reflect: below 0px linear-gradient(transparent, #0002);
transition: 0.5s;
transition-delay: 0s;
}
.container a:hover {
transition-delay: 1.5s;
color: #000;
box-shadow: 0 0 10px #0f0,
0 0 20px #0f0,
0 0 40px #0f0,
0 0 80px #0f0,
0 0 160px #0f0;
}
.container a span {
position: relative;
z-index: 100;
}
.container a:nth-child(2) {
filter: hue-rotate(80deg);
}
.container a::before {
content: '';
position: absolute;
left: -20px;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 2px;
background: #0f0;
box-shadow: 5px -8px 0 #0f0,
5px 8px 0 #0f0;
transition: width 0.5s, left 0.5s, height 0.5s,
box-shadow 0.5s;
transition-delay: 1s, 0.5s, 0s, 0s;
}
.container a:hover::before {
width: 60%;
height: 100%;
left: -2px;
box-shadow: 5px 0px 0 #0f0,
5px 0px 0 #0f0;
transition-delay: 0s, 0.5s, 1s, 1s;
}
.container a::after {
content: '';
position: absolute;
right: -20px;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 2px;
background: #0f0;
box-shadow: -5px -8px 0 #0f0,
-5px 8px 0 #0f0;
transition: width 0.5s, right 0.5s, height 0.5s,
box-shadow 0.5s;
transition-delay: 1s, 0.5s, 0s, 0s;
}
.container a:hover::after {
width: 60%;
height: 100%;
right: -2px;
box-shadow: -5px 0px 0 #0f0,
-5px 0px 0 #0f0;
transition-delay: 0s, 0.5s, 1s, 1s;
} | 0.394551 | 0.09947 |
.qv-object-PLSmartPivot .qv-object-content-container {
overflow-x:scroll;
overflow-y:hidden;
z-index:110;
}
.icon-xls{
width:15px;
opacity:.5;
}
.icon-xls:hover{
width:30px;
opacity:1;
}
.icon-pdf{
height:30px;
}
.qv-object-PLSmartPivot .icon-xls {
text-align:left;
}
.qv-object-PLSmartPivot .icon-pdf {
text-align:left
}
.qv-object-PLSmartPivot .icon-plus {
text-align:left;
height:11px;
cursor: pointer;
}.qv-object-PLSmartPivot .icon-minus {
text-align:left;
height:11px;
cursor: pointer;
}
.qv-object-PLSmartPivot button {
width: 100%;
}
.qv-object-PLSmartPivot table{
border-collapse:collapse;
border-spacing:0;
width:auto;
border-left:1px solid #d3d3d3;
border-right:1px solid #d3d3d3;
border-spacing:0;
border-top:1px solid #d3d3d3;
}
.qv-object-PLSmartPivot td, th{
border: 1px solid #ffffff;
padding:5px;
border-collapse: collapse;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: middle;
cursor: default;
}
.qv-object-PLSmartPivot .empty{
width:3%;
background:#ffffff;
min-width:4px !important;
max-width:4px !important;
/*border-right:1px solid white;
box-shadow:4px 2px 8px #e1e1e1
border-bottom:0;
border-top:0;
border-left:1px solid #d3d3d3;
border-right:1px solid #d3d3d3;
border-top:#fff 1px solid;
border-bottom:#fff 1px solid*/
}
.qv-object-PLSmartPivot th.main-kpi{
text-align:center;
vertical-align:middle;
border-bottom:1px solid #d3d3d3
}
.qv-object-PLSmartPivot .numeric{
text-align:right
}
.grid{
height:50px;
width:350px
}
.header-wrapper{
position:absolute;
top:0;
z-index:1
}
/*popups for headers*/
.tooltip
{
position: fixed!important;
color: #fff;
background-color: #000;
opacity:0.5;
text-align: center;
/*border: groove;*/
}
/*end popups*/
.row-wrapper{
position:absolute;
top:97px;
height:100%!important;
overflow-x:hidden;
overflow-y:scroll;
padding:0;
margin-top:0;
}
/*This is for wrap text in headers*/
.qv-object-PLSmartPivot .wrapclass25{
width:100%;
height:25px;
white-space: pre-line;
overflow: hidden;
display:block;
}
.qv-object-PLSmartPivot .wrapclass45{
width:100%;
height:45px;
white-space: pre-line;
overflow: hidden;
display:block;
}
.qv-object-PLSmartPivot .wrapclass70{
width:100%;
height:70px;
white-space: pre-line;
overflow: hidden;
display:inline-block;
vertical-align: middle;
line-height: 20px;
}
.qv-object-PLSmartPivot .wrapclassEmpty{
width:100%;
}
/*******************/
/* Medium column size*/
/*******************/
/*body*/
.qv-object-PLSmartPivot .grid-cells{
min-width:70px!important;
max-width:70px!important;
cursor: pointer;
background-color:white;
/*padding:5px 10px;
margin:0;*/
}
/*header*/
.qv-object-PLSmartPivot .grid-cells2{
min-width:69px!important;
max-width:69px!important;
cursor: pointer;
background-color:white;
/*padding:5px 10px;
margin:0;*/
}
/*body*/
.qv-object-PLSmartPivot .grid-cells-small{
min-width:52px!important;
max-width:52px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*header*/
.qv-object-PLSmartPivot .grid-cells2-small{
min-width:51px!important;
max-width:51px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*******************/
/* Small column size*/
/*******************/
/*body*/
.qv-object-PLSmartPivot .grid-cells-s{
min-width:67px!important;
max-width:67px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*header*/
.qv-object-PLSmartPivot .grid-cells2-s{
min-width:66px!important;
max-width:66px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*body*/
.qv-object-PLSmartPivot .grid-cells-small-s{
min-width:52px!important;
max-width:52px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*header*/
.qv-object-PLSmartPivot .grid-cells2-small-s{
min-width:51px!important;
max-width:51px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*******************/
/* large column size*/
/*******************/
/*body*/
.qv-object-PLSmartPivot .grid-cells-l{
min-width:82px!important;
max-width:82px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*header*/
.qv-object-PLSmartPivot .grid-cells2-l{
min-width:81px!important;
max-width:81px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*body*/
.qv-object-PLSmartPivot .grid-cells-small-l{
min-width:66px!important;
max-width:66px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*header*/
.qv-object-PLSmartPivot .grid-cells2-small-l{
min-width:65px!important;
max-width:65px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*END OF GRID CELLS*/
/*First Column*/
.qv-object-PLSmartPivot .fdim-cells{
min-width:230px!important;
max-width:230px!important;
cursor: pointer;
background-color:white;
/*padding:0 20px*/
}
.qv-object-PLSmartPivot .fdim-cells:hover {
/*cursor: default;*/
background-color:#808080 !important;
color:#ffffff;
}
.qv-object-PLSmartPivot tbody tr:hover {
cursor: default;
background-color:#808080 !important;
color:#ffffff;
}
.qv-object-PLSmartPivot .grid-cells-header{
/*padding:15px 10px*/
padding:0px
}
.qv-object-PLSmartPivot .grid-cells-title{
min-width:522px
}
/*estos dos hcen referencia a la primera columna*/
.kpi-table .fdim-cells{
/*padding:5px 10px*/
}
.data-table .fdim-cells{
display:none
}
.kpi-table{
width:240px !important;
overflow:hidden !important;
display:table;
height:100%;
z-index:100;
/*background:white;*/
left:258px;
margin:0;
padding:0;
z-index:999;
position:absolute;
top:0;
left:0;
border-right:1px solid white;
box-shadow:4px 2px 8px #e1e1e1;
}
.kpi-table .row-wrapper{
overflow:hidden
}
.data-table{
width:272px !important;
float:left;
display:table;
height:100%;
z-index:90;
position:absolute;
margin-left:253px;
-ms-overflow-style:none
} | css/PLSmartPivot.css | .qv-object-PLSmartPivot .qv-object-content-container {
overflow-x:scroll;
overflow-y:hidden;
z-index:110;
}
.icon-xls{
width:15px;
opacity:.5;
}
.icon-xls:hover{
width:30px;
opacity:1;
}
.icon-pdf{
height:30px;
}
.qv-object-PLSmartPivot .icon-xls {
text-align:left;
}
.qv-object-PLSmartPivot .icon-pdf {
text-align:left
}
.qv-object-PLSmartPivot .icon-plus {
text-align:left;
height:11px;
cursor: pointer;
}.qv-object-PLSmartPivot .icon-minus {
text-align:left;
height:11px;
cursor: pointer;
}
.qv-object-PLSmartPivot button {
width: 100%;
}
.qv-object-PLSmartPivot table{
border-collapse:collapse;
border-spacing:0;
width:auto;
border-left:1px solid #d3d3d3;
border-right:1px solid #d3d3d3;
border-spacing:0;
border-top:1px solid #d3d3d3;
}
.qv-object-PLSmartPivot td, th{
border: 1px solid #ffffff;
padding:5px;
border-collapse: collapse;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: middle;
cursor: default;
}
.qv-object-PLSmartPivot .empty{
width:3%;
background:#ffffff;
min-width:4px !important;
max-width:4px !important;
/*border-right:1px solid white;
box-shadow:4px 2px 8px #e1e1e1
border-bottom:0;
border-top:0;
border-left:1px solid #d3d3d3;
border-right:1px solid #d3d3d3;
border-top:#fff 1px solid;
border-bottom:#fff 1px solid*/
}
.qv-object-PLSmartPivot th.main-kpi{
text-align:center;
vertical-align:middle;
border-bottom:1px solid #d3d3d3
}
.qv-object-PLSmartPivot .numeric{
text-align:right
}
.grid{
height:50px;
width:350px
}
.header-wrapper{
position:absolute;
top:0;
z-index:1
}
/*popups for headers*/
.tooltip
{
position: fixed!important;
color: #fff;
background-color: #000;
opacity:0.5;
text-align: center;
/*border: groove;*/
}
/*end popups*/
.row-wrapper{
position:absolute;
top:97px;
height:100%!important;
overflow-x:hidden;
overflow-y:scroll;
padding:0;
margin-top:0;
}
/*This is for wrap text in headers*/
.qv-object-PLSmartPivot .wrapclass25{
width:100%;
height:25px;
white-space: pre-line;
overflow: hidden;
display:block;
}
.qv-object-PLSmartPivot .wrapclass45{
width:100%;
height:45px;
white-space: pre-line;
overflow: hidden;
display:block;
}
.qv-object-PLSmartPivot .wrapclass70{
width:100%;
height:70px;
white-space: pre-line;
overflow: hidden;
display:inline-block;
vertical-align: middle;
line-height: 20px;
}
.qv-object-PLSmartPivot .wrapclassEmpty{
width:100%;
}
/*******************/
/* Medium column size*/
/*******************/
/*body*/
.qv-object-PLSmartPivot .grid-cells{
min-width:70px!important;
max-width:70px!important;
cursor: pointer;
background-color:white;
/*padding:5px 10px;
margin:0;*/
}
/*header*/
.qv-object-PLSmartPivot .grid-cells2{
min-width:69px!important;
max-width:69px!important;
cursor: pointer;
background-color:white;
/*padding:5px 10px;
margin:0;*/
}
/*body*/
.qv-object-PLSmartPivot .grid-cells-small{
min-width:52px!important;
max-width:52px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*header*/
.qv-object-PLSmartPivot .grid-cells2-small{
min-width:51px!important;
max-width:51px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*******************/
/* Small column size*/
/*******************/
/*body*/
.qv-object-PLSmartPivot .grid-cells-s{
min-width:67px!important;
max-width:67px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*header*/
.qv-object-PLSmartPivot .grid-cells2-s{
min-width:66px!important;
max-width:66px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*body*/
.qv-object-PLSmartPivot .grid-cells-small-s{
min-width:52px!important;
max-width:52px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*header*/
.qv-object-PLSmartPivot .grid-cells2-small-s{
min-width:51px!important;
max-width:51px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*******************/
/* large column size*/
/*******************/
/*body*/
.qv-object-PLSmartPivot .grid-cells-l{
min-width:82px!important;
max-width:82px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*header*/
.qv-object-PLSmartPivot .grid-cells2-l{
min-width:81px!important;
max-width:81px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*body*/
.qv-object-PLSmartPivot .grid-cells-small-l{
min-width:66px!important;
max-width:66px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*header*/
.qv-object-PLSmartPivot .grid-cells2-small-l{
min-width:65px!important;
max-width:65px!important;
cursor: pointer;
/*padding:5px 10px;
margin:0;*/
}
/*END OF GRID CELLS*/
/*First Column*/
.qv-object-PLSmartPivot .fdim-cells{
min-width:230px!important;
max-width:230px!important;
cursor: pointer;
background-color:white;
/*padding:0 20px*/
}
.qv-object-PLSmartPivot .fdim-cells:hover {
/*cursor: default;*/
background-color:#808080 !important;
color:#ffffff;
}
.qv-object-PLSmartPivot tbody tr:hover {
cursor: default;
background-color:#808080 !important;
color:#ffffff;
}
.qv-object-PLSmartPivot .grid-cells-header{
/*padding:15px 10px*/
padding:0px
}
.qv-object-PLSmartPivot .grid-cells-title{
min-width:522px
}
/*estos dos hcen referencia a la primera columna*/
.kpi-table .fdim-cells{
/*padding:5px 10px*/
}
.data-table .fdim-cells{
display:none
}
.kpi-table{
width:240px !important;
overflow:hidden !important;
display:table;
height:100%;
z-index:100;
/*background:white;*/
left:258px;
margin:0;
padding:0;
z-index:999;
position:absolute;
top:0;
left:0;
border-right:1px solid white;
box-shadow:4px 2px 8px #e1e1e1;
}
.kpi-table .row-wrapper{
overflow:hidden
}
.data-table{
width:272px !important;
float:left;
display:table;
height:100%;
z-index:90;
position:absolute;
margin-left:253px;
-ms-overflow-style:none
} | 0.286668 | 0.053552 |
html,
body {
font-family: Inter, -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans,
Ubuntu, Cantrell, 'Helvetica Neue', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
'Segoe UI Symbol';
font-weight: 400;
line-height: 1.8;
padding: 0;
margin: 0;
box-sizing: border-box;
min-height: 100%;
display: flex;
flex-direction: column;
flex: 1;
font-size: var(--font-size-normal);
overflow-y: overlay;
}
body {
color: var(--gray900);
background: var(--gray75);
}
.zh-CN {
font-family: '方体', 'PingFang SC', '黑体', 'Heiti SC', 'Microsoft JhengHei UI',
'Microsoft JhengHei', Roboto, Noto, 'Noto Sans CJK SC', sans-serif !important;
}
.zh-TW {
font-family: '方體', 'PingFang TC', '黑體', 'Heiti TC', 'Microsoft JhengHei UI',
'Microsoft JhengHei', Roboto, Noto, 'Noto Sans CJK TC', sans-serif !important;
}
.ja-JP {
font-family: '游ゴシック体', YuGothic, 'ヒラギノ丸ゴ', 'Hiragino Sans', 'Yu Gothic UI',
'Meiryo UI', 'MS Gothic', Roboto, Noto, 'Noto Sans CJK JP', sans-serif !important;
}
.ko-KR {
font-family: 'Nanum Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', Roboto, Noto,
'Noto Sans CJK KR', sans-serif !important;
}
.ar-SA {
font-family: 'Geeza Pro', 'Arabic Typesetting', Roboto, Noto, 'Noto Naskh Arabic',
'Times New Roman', serif !important;
}
/* stylelint-disable */
.he-IL {
font-family: 'New Peninim MT', 'Arial Hebrew', Gisha, 'Times New Roman', Roboto, Noto,
'Noto Sans Hebrew', sans-serif !important;
}
.he-IL {
display: inline-block;
direction: rtl;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 400;
line-height: 30px;
padding: 0;
margin: 0;
}
button,
input,
select {
font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}
a,
a:active,
a:visited {
color: var(--primary400);
}
input[type='text'],
input[type='password'],
textarea {
color: var(--gray900);
background: var(--gray50);
padding: 4px 8px;
font-size: var(--font-size-normal);
line-height: 1.8;
border: 1px solid var(--gray500);
border-radius: 4px;
outline: none;
resize: none;
flex: 1;
}
input[type='checkbox'] + label {
margin-left: 10px;
}
label {
flex: 1;
margin-right: 20px;
}
label:empty {
flex: 0;
}
dt {
font-weight: 600;
margin: 0 0 5px 0;
}
dd {
margin: 0 0 30px 0;
}
main {
flex: 1;
display: flex;
flex-direction: column;
}
svg {
shape-rendering: geometricPrecision;
}
#__next {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
flex: 1;
}
#__modals {
z-index: 10;
}
.container {
padding: 0;
}
.row {
margin-right: 0;
margin-left: 0;
}
.row > .col,
.row > [class*='col-'] {
padding-right: 0;
padding-left: 0;
}
.center {
text-align: center;
} | styles/index.css | html,
body {
font-family: Inter, -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans,
Ubuntu, Cantrell, 'Helvetica Neue', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
'Segoe UI Symbol';
font-weight: 400;
line-height: 1.8;
padding: 0;
margin: 0;
box-sizing: border-box;
min-height: 100%;
display: flex;
flex-direction: column;
flex: 1;
font-size: var(--font-size-normal);
overflow-y: overlay;
}
body {
color: var(--gray900);
background: var(--gray75);
}
.zh-CN {
font-family: '方体', 'PingFang SC', '黑体', 'Heiti SC', 'Microsoft JhengHei UI',
'Microsoft JhengHei', Roboto, Noto, 'Noto Sans CJK SC', sans-serif !important;
}
.zh-TW {
font-family: '方體', 'PingFang TC', '黑體', 'Heiti TC', 'Microsoft JhengHei UI',
'Microsoft JhengHei', Roboto, Noto, 'Noto Sans CJK TC', sans-serif !important;
}
.ja-JP {
font-family: '游ゴシック体', YuGothic, 'ヒラギノ丸ゴ', 'Hiragino Sans', 'Yu Gothic UI',
'Meiryo UI', 'MS Gothic', Roboto, Noto, 'Noto Sans CJK JP', sans-serif !important;
}
.ko-KR {
font-family: 'Nanum Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', Roboto, Noto,
'Noto Sans CJK KR', sans-serif !important;
}
.ar-SA {
font-family: 'Geeza Pro', 'Arabic Typesetting', Roboto, Noto, 'Noto Naskh Arabic',
'Times New Roman', serif !important;
}
/* stylelint-disable */
.he-IL {
font-family: 'New Peninim MT', 'Arial Hebrew', Gisha, 'Times New Roman', Roboto, Noto,
'Noto Sans Hebrew', sans-serif !important;
}
.he-IL {
display: inline-block;
direction: rtl;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 400;
line-height: 30px;
padding: 0;
margin: 0;
}
button,
input,
select {
font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}
a,
a:active,
a:visited {
color: var(--primary400);
}
input[type='text'],
input[type='password'],
textarea {
color: var(--gray900);
background: var(--gray50);
padding: 4px 8px;
font-size: var(--font-size-normal);
line-height: 1.8;
border: 1px solid var(--gray500);
border-radius: 4px;
outline: none;
resize: none;
flex: 1;
}
input[type='checkbox'] + label {
margin-left: 10px;
}
label {
flex: 1;
margin-right: 20px;
}
label:empty {
flex: 0;
}
dt {
font-weight: 600;
margin: 0 0 5px 0;
}
dd {
margin: 0 0 30px 0;
}
main {
flex: 1;
display: flex;
flex-direction: column;
}
svg {
shape-rendering: geometricPrecision;
}
#__next {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
flex: 1;
}
#__modals {
z-index: 10;
}
.container {
padding: 0;
}
.row {
margin-right: 0;
margin-left: 0;
}
.row > .col,
.row > [class*='col-'] {
padding-right: 0;
padding-left: 0;
}
.center {
text-align: center;
} | 0.516595 | 0.095223 |
html {
color: #222;
font-size: 1em;
line-height: 1.4;
}
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #ccc;
margin: 1em 0;
padding: 0;
}
audio,
canvas,
iframe,
img,
svg,
video {
vertical-align: middle;
}
fieldset {
border: 0;
margin: 0;
padding: 0;
}
textarea {
resize: vertical;
}
.browserupgrade {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
/* ==========================================================================
Author's custom styles
========================================================================== */
body {
background-color: #FFF;
}
@font-face {
font-family: Roboto-Regular;
src: url(../fonts/Roboto-Regular.ttf);
}
@font-face {
font-family: Roboto-Light;
src: url(../fonts/Roboto-Light.ttf);
}
@font-face {
font-family: Roboto-Bold;
src: url(../fonts/Roboto-Bold.ttf);
font-weight: bold;
}
@font-face {
font-family: Roboto-LightItalic;
src: url(../fonts/Roboto-LightItalic.ttf);
}
@font-face {
font-family: Futura;
src: url(../fonts/Futura.ttf);
}
@font-face {
font-family: FuturaBT-Medium;
src: url(../fonts/FuturaBT-Medium.ttf);
}
.cssgrid .browserupgrade-grid {
display: none;
}
.big-text {
font-family: Futura;
font-size: 36px;
color: #121212;
}
a {
color: #41D3A9;
}
a:hover {
color: #83e8cb;
}
h1 {
font-family: Futura;
}
p {
font-family: Roboto-Regular;
font-size: 16px;
color: #727272;
line-height: 28px;
}
.centered {
width: 924px;
margin: 0 auto;
}
header {
position: relative;
height: 90px;
}
#menu-bars {
display: none;
}
header #logo {
position: absolute;
top: 20px;
}
header nav {
float: right;
margin-top: 30px;
}
header nav a, .menu-category {
text-decoration: none;
font-family: Roboto-Regular, sans-serif;
font-size: 16px;
color: #8A8A8A;
cursor: pointer;
}
@media all and (max-width: 768px) {
.menu-container.active .menu-category {
color: #19BC9C;
}
.menu-container.active .menu {
display: block;
}
}
@media all and (min-width: 769px) {
header {
position: static;
}
.menu-container {
display: inline-block;
}
.menu-container:not(:first-child) {
margin-left: 24px;
}
.menu-category {
position: relative;
}
.menu-container:hover .menu-category, .menu a:hover {
color: #19BC9C;
}
.menu-container:hover .menu {
display: block;
}
.on-mobile {
display: none;
}
.icon-angle-down {
width: 22px;
height: 21px;
}
}
.menu {
display: none;
position: absolute;
min-width: 100px;
z-index: 3;
background-color: white;
padding: 12px 24px;
font-family: Roboto-Regular, sans-serif;
font-size: 16px;
color: #8A8A8A;
line-height: 38px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24);
border-radius: 3px;
}
#jumbo {
width: 100%;
background-color: rgb(0, 211, 183);
overflow: hidden;
z-index: 1;
max-height: 850px;
position: relative;
}
#jumbo video {
display: inline-flex;
min-width: 1024px;
width: 100%;
position: relative;
-webkit-align-self: center; //safari 7+
align-self: center;
}
#jumbo-content {
z-index: 2;
position: absolute;
width: 100%;
height: 100%;
}
#jumbo-content .centered {
position: relative;
top: 50%;
transform: translateY(-50%);
}
#jumbo-legend-container {
width: 364px;
}
#jumbo-legend {
font-family: Futura;
font-size: 59px;
color: #FFFFFF;
}
#watch-overview-btn {
width: 265px;
height: 71px;
opacity: 0.88;
background-color: rgba(0, 0, 0, 0.15);
margin-top: 28px;
}
#watch-overview-btn:hover {
background-color: rgba(90, 90, 90, 0.1);
cursor: pointer;
}
#watch-overview-btn .play-link {
margin-left: 22px;
position: relative;
top: -4px;
}
#watch-overview-btn .play-link span {
color: #FFF;
}
.play-link {
cursor: pointer;
}
.play-link:hover, .booklet:hover {
opacity: 0.8;
}
.play-link-btn { /* play icon */
font-size: 45px;
text-decoration: none;
position: relative;
top: 9px;
}
.play-link-text {
font-family: Futura;
font-size: 22px;
margin-left: 10px;
text-decoration: underline;
}
#dash-1 {
padding-left: 10px;
}
.dash {
width: 35px;
height: 8px;
background-color: black;
margin: 50px auto;
}
#dash-1 .dash {
margin-left: 0;
}
#why-dai-and-vid, #mkr-govern-and-vid {
display: flex;
justify-content: space-between;
}
#why-dai {
padding-right: 80px;
}
#why-dai .play-link span {
color: #F8B46B;
}
.explanation {
margin-top: 30px;
font-size: 15px;
}
.vid-preview img {
display: block;
}
.vid-preview img:hover {
opacity: 0.8;
cursor: pointer;
}
.vid-summary {
font-family: Roboto-Regular;
font-size: 12px;
color: #727272;
line-height: 28px;
}
#with-dai-text {
padding-top: 50px;
}
#container{
padding-top: 20px;
}
#container article{
border: .1rem solid #ccc;
padding: 1rem 1.25rem;
margin: 2rem 0;
padding-bottom: 1.25rem;
background: white;
border-radius: .5rem;
}
#container code{
font-size: .8rem;
}
#container hr{
border: none; border-top: 1px solid gray;
}
#container .field { font-size: .8rem; margin: .75rem 0; }
#container a:link{
color: #337ab7;
}
#container a:visited{
color: #337ab7;
}
#mkr-govern-and-vid {
flex-direction: row-reverse;
}
#mkr-holders-govern-dai {
padding-left: 84px;
}
#mkr-holders-govern-dai .play-link span, #we-are-hiring a {
color: #41D3A9;
}
#mkr-token-vid img {
width: 263px;
}
#the-next-generation-text {
padding-top: 50px;
}
#doc-booklets, #we-are-hiring {
text-align: center;
}
#doc-booklets span {
font-family: Roboto-LightItalic;
color: #727272;
font-size: 25px;
}
#doc-booklets .booklets {
display: flex;
justify-content: space-around;
margin: 45px 0;
padding-left: 100px;
padding-right: 100px;
}
#we-are-hiring {
margin-bottom: 45px;
font-family: Futura;
color: #727272;
font-size: 20px;
}
footer .centered {
width: 836px;
margin-top: 52px;
}
footer {
padding-top: 8px;
padding-bottom: 55px;
background-color: #0B141F;
color: white;
overflow: hidden;
}
footer p {
color: white;
margin-top: 6px;
}
#subscribe-and-text {
display: flex;
}
#subscribe .big-text {
color: white;
}
#subscribe .email:focus {
outline: none;
border-bottom: 1px solid #FFFFFF;
}
#subscribe input:focus::-webkit-input-placeholder {
color: #A8A8A8;
}
/* Firefox < 19 */
#subscribe input:focus:-moz-placeholder {
color: #A8A8A8;
}
/* Firefox > 19 */
#subscribe input:focus::-moz-placeholder {
color: #A8A8A8;
}
/* Internet Explorer 10 */
#subscribe input:focus:-ms-input-placeholder {
color: #A8A8A8;
}
#subscribe .email {
background: none;
border: 0;
border-bottom: 1px solid #979797;
width: 325px;
padding-bottom: 10px;
}
#subscribe .button {
width: 153px;
height: 58px;
color: white;
background-color: #1BC4A6;
font-family: Futura;
font-size: 22px;
border-width: 0;
}
#subscribe .button:focus {
outline: none;
background-color: #4F6A7B;
}
#subscribe .button:hover {
background-color: #1edebe;
}
#subscribe input, #subscribe .button {
margin-top: 40px;
}
@media (min-width: 769px) {
#subscribe {
margin-top: 10px;
}
#subscribe .big-text {
white-space: nowrap;
}
#subscribe .button {
width: 143px;
height: 52px;
margin-left: 18px;
}
#subscribe .email {
width: 250px;
}
}
#dai-foundation-text {
padding-left: 93px;
}
#links {
grid-area: links;
display: flex;
justify-content: space-between;
}
.link-group {
line-height: 38px;
font-size: 14px;
}
.link-group a {
font-family: Roboto-Regular;
color: #8A8A8A;
text-decoration: none;
}
.link-group a:hover {
color: #ccc;
}
.link-category {
font-family: Roboto-Bold;
text-transform: uppercase;
}
#icon-links {
display: none;
}
#copyright {
font-family: Roboto-Regular;
font-size: 16px;
color: #8A8A8A;
}
#copyright img {
margin-left: 7px;
}
#copyright span {
margin-left: 27px;
}
.video-background {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
align-content: center;
justify-content: center;
align-items: center;
z-index: 5;
}
.close-vid-btn {
position: absolute;
right: 15px;
top: 15px;
color: #dcdcdc;
}
.close-vid-btn.fa {
font-size: 30px;
}
.close-vid-btn:hover {
color: white;
}
.announcement {
border-radius: 3px;
background-color: #fff7e2;
box-shadow: 1px 1px 5px #b1b1b1;
padding: 8px;
text-align: center;
margin: 18px 0;
font-family: Futura;
font-size: 20px;
position: relative;
color: black;
}
.announcement .js-close {
float: right;
opacity: 0.4;
}
.announcement .js-close:hover {
opacity: 0.9;
}
.js-close.fa {
font-size: 25px;
}
/* ==========================================================================
Media Queries
========================================================================== */
/*
Medium screen size
*/
@media (max-width: 990px) {
.centered {
width: 750px;
}
footer .centered {
width: 700px;
}
#why-dai {
padding-right: 30px;
}
#mkr-holders-govern-dai {
padding-left: 40px;
}
#dai-system-vid, #mkr-token-vid {
margin-top: 40px;
}
.vid-preview img {
width: 350px;
}
.booklet {
width: 230px;
}
#dai-foundation-text {
padding-left: 40px;
}
}
/* Mobile screen size */
@media (max-width: 768px) {
body {
overflow-x: hidden;
}
.centered {
width: 85%;
}
header {
height: 68px;
}
header nav {
display: none;
}
#content.menu-opened {
position: relative;
left: 236px;
}
#content.menu-opened #top-nav {
display: block;
}
header nav {
position: fixed;
top: 0px;
left: 0px;
bottom: 0px;
width: 256px;
background-color: #1D252A;
margin: 0;
z-index: 3;
}
.menu-container {
margin: 30px;
}
.menu-category {
font-family: Futura, sans-serif;
width: 100%;
display: inline-block;
font-size: 24px;
color: #FAFAFA;
letter-spacing: 0;
line-height: 1;
}
.menu-category .icon-angle-down {
float: right;
}
header nav div {
display: block;
margin-left: 0;
z-index: 3;
}
.menu {
position: static;
background-color: #1D252A;
box-shadow: none;
padding-left: 0;
padding-bottom: 0;
}
.menu a {
font-family: Roboto-Regular;
font-size: 16px;
color: #DFE2E9;
letter-spacing: 0;
line-height: 48px;
}
header {
justify-self: start;
}
#menu-bars {
display: block;
position: absolute;
top: 10px;
font-size: 25px;
height: 50px;
width: 50px;
left: -15px;
}
#menu-bars:before {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
header #logo {
left: 50px;
top: 15px;
}
#why-dai {
margin-top: 38px;
}
#why-dai .play-link, #mkr-holders-govern-dai .play-link, #dash-1 {
display: none;
}
#dai-system-vid .vid-preview {
float: none;
}
.vid-preview img {
width: 100%;
max-width: 388px;
}
#jumbo {
height: 340px;
}
#jumbo-legend-container {
width: 100%;
}
#jumbo-legend {
font-size: 44px;
}
#why-dai-and-vid, #mkr-govern-and-vid {
flex-direction: column;
align-items: center;
}
#why-dai {
padding-right: 0;
}
#mkr-holders-govern-dai {
padding-left: 0;
}
#mkr-token-vid img {
width: 150px;
}
.pitch {
font-family: Roboto-Light;
font-size: 24px;
color: #727272;
line-height: 38px;
}
#the-next-generation-text {
padding-bottom: 74px;
}
#doc-booklets .booklets {
flex-direction: column;
align-items: center;
align-content: center;
justify-content: center;
}
.booklet {
width: 288px;
}
footer {
background-color: white;
padding-bottom: 0;
padding-top: 0;
}
footer .centered {
width: 85%;
margin-top: 27px;
}
footer p {
color: #727272;
}
#subscribe-and-text {
margin-top: 0;
flex-direction: column;
}
#subscribe .big-text {
color: #121212;
}
#subscribe input.email {
max-width: 325px;
width: 100%;
font-size: 16px;
color: #727272;
}
#dai-foundation-text {
padding-left: 0;
margin-top: 27px;
}
#dai-foundation-text p {
margin: 0;
}
#links {
display: none;
}
#icon-links {
grid-area: icon-links;
display: flex;
justify-content: center;
margin-bottom: 45px;
}
#icon-links a {
font-size: 36px;
color: #1BC4A6;
transition: color 0.5s;
padding: 0 .4rem;
}
#icon-links a:hover {
color: #FCD370;
}
.dark {
background-color: #0B141F;
}
#copyright {
display: flex;
align-self: stretch;
justify-self: stretch;
height: 143px;
flex-direction: column;
align-items: center;
align-content: center;
justify-content: center;
}
#copyright img, #copyright span {
display: block;
margin-left: 0;
}
#copyright span {
margin-top: 17px;
}
.on-desktop {
display: none;
}
}
@media print,
(-o-min-device-pixel-ratio: 5/4),
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
}
/* ==========================================================================
Helper classes
========================================================================== */
.hidden {
display: none !important;
visibility: hidden;
}
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
}
.invisible {
visibility: hidden;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix {
*zoom: 1;
}
/* ==========================================================================
Print styles
========================================================================== */
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important;
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
} | src/layouts/makerdao-site.css | html {
color: #222;
font-size: 1em;
line-height: 1.4;
}
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #ccc;
margin: 1em 0;
padding: 0;
}
audio,
canvas,
iframe,
img,
svg,
video {
vertical-align: middle;
}
fieldset {
border: 0;
margin: 0;
padding: 0;
}
textarea {
resize: vertical;
}
.browserupgrade {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
/* ==========================================================================
Author's custom styles
========================================================================== */
body {
background-color: #FFF;
}
@font-face {
font-family: Roboto-Regular;
src: url(../fonts/Roboto-Regular.ttf);
}
@font-face {
font-family: Roboto-Light;
src: url(../fonts/Roboto-Light.ttf);
}
@font-face {
font-family: Roboto-Bold;
src: url(../fonts/Roboto-Bold.ttf);
font-weight: bold;
}
@font-face {
font-family: Roboto-LightItalic;
src: url(../fonts/Roboto-LightItalic.ttf);
}
@font-face {
font-family: Futura;
src: url(../fonts/Futura.ttf);
}
@font-face {
font-family: FuturaBT-Medium;
src: url(../fonts/FuturaBT-Medium.ttf);
}
.cssgrid .browserupgrade-grid {
display: none;
}
.big-text {
font-family: Futura;
font-size: 36px;
color: #121212;
}
a {
color: #41D3A9;
}
a:hover {
color: #83e8cb;
}
h1 {
font-family: Futura;
}
p {
font-family: Roboto-Regular;
font-size: 16px;
color: #727272;
line-height: 28px;
}
.centered {
width: 924px;
margin: 0 auto;
}
header {
position: relative;
height: 90px;
}
#menu-bars {
display: none;
}
header #logo {
position: absolute;
top: 20px;
}
header nav {
float: right;
margin-top: 30px;
}
header nav a, .menu-category {
text-decoration: none;
font-family: Roboto-Regular, sans-serif;
font-size: 16px;
color: #8A8A8A;
cursor: pointer;
}
@media all and (max-width: 768px) {
.menu-container.active .menu-category {
color: #19BC9C;
}
.menu-container.active .menu {
display: block;
}
}
@media all and (min-width: 769px) {
header {
position: static;
}
.menu-container {
display: inline-block;
}
.menu-container:not(:first-child) {
margin-left: 24px;
}
.menu-category {
position: relative;
}
.menu-container:hover .menu-category, .menu a:hover {
color: #19BC9C;
}
.menu-container:hover .menu {
display: block;
}
.on-mobile {
display: none;
}
.icon-angle-down {
width: 22px;
height: 21px;
}
}
.menu {
display: none;
position: absolute;
min-width: 100px;
z-index: 3;
background-color: white;
padding: 12px 24px;
font-family: Roboto-Regular, sans-serif;
font-size: 16px;
color: #8A8A8A;
line-height: 38px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24);
border-radius: 3px;
}
#jumbo {
width: 100%;
background-color: rgb(0, 211, 183);
overflow: hidden;
z-index: 1;
max-height: 850px;
position: relative;
}
#jumbo video {
display: inline-flex;
min-width: 1024px;
width: 100%;
position: relative;
-webkit-align-self: center; //safari 7+
align-self: center;
}
#jumbo-content {
z-index: 2;
position: absolute;
width: 100%;
height: 100%;
}
#jumbo-content .centered {
position: relative;
top: 50%;
transform: translateY(-50%);
}
#jumbo-legend-container {
width: 364px;
}
#jumbo-legend {
font-family: Futura;
font-size: 59px;
color: #FFFFFF;
}
#watch-overview-btn {
width: 265px;
height: 71px;
opacity: 0.88;
background-color: rgba(0, 0, 0, 0.15);
margin-top: 28px;
}
#watch-overview-btn:hover {
background-color: rgba(90, 90, 90, 0.1);
cursor: pointer;
}
#watch-overview-btn .play-link {
margin-left: 22px;
position: relative;
top: -4px;
}
#watch-overview-btn .play-link span {
color: #FFF;
}
.play-link {
cursor: pointer;
}
.play-link:hover, .booklet:hover {
opacity: 0.8;
}
.play-link-btn { /* play icon */
font-size: 45px;
text-decoration: none;
position: relative;
top: 9px;
}
.play-link-text {
font-family: Futura;
font-size: 22px;
margin-left: 10px;
text-decoration: underline;
}
#dash-1 {
padding-left: 10px;
}
.dash {
width: 35px;
height: 8px;
background-color: black;
margin: 50px auto;
}
#dash-1 .dash {
margin-left: 0;
}
#why-dai-and-vid, #mkr-govern-and-vid {
display: flex;
justify-content: space-between;
}
#why-dai {
padding-right: 80px;
}
#why-dai .play-link span {
color: #F8B46B;
}
.explanation {
margin-top: 30px;
font-size: 15px;
}
.vid-preview img {
display: block;
}
.vid-preview img:hover {
opacity: 0.8;
cursor: pointer;
}
.vid-summary {
font-family: Roboto-Regular;
font-size: 12px;
color: #727272;
line-height: 28px;
}
#with-dai-text {
padding-top: 50px;
}
#container{
padding-top: 20px;
}
#container article{
border: .1rem solid #ccc;
padding: 1rem 1.25rem;
margin: 2rem 0;
padding-bottom: 1.25rem;
background: white;
border-radius: .5rem;
}
#container code{
font-size: .8rem;
}
#container hr{
border: none; border-top: 1px solid gray;
}
#container .field { font-size: .8rem; margin: .75rem 0; }
#container a:link{
color: #337ab7;
}
#container a:visited{
color: #337ab7;
}
#mkr-govern-and-vid {
flex-direction: row-reverse;
}
#mkr-holders-govern-dai {
padding-left: 84px;
}
#mkr-holders-govern-dai .play-link span, #we-are-hiring a {
color: #41D3A9;
}
#mkr-token-vid img {
width: 263px;
}
#the-next-generation-text {
padding-top: 50px;
}
#doc-booklets, #we-are-hiring {
text-align: center;
}
#doc-booklets span {
font-family: Roboto-LightItalic;
color: #727272;
font-size: 25px;
}
#doc-booklets .booklets {
display: flex;
justify-content: space-around;
margin: 45px 0;
padding-left: 100px;
padding-right: 100px;
}
#we-are-hiring {
margin-bottom: 45px;
font-family: Futura;
color: #727272;
font-size: 20px;
}
footer .centered {
width: 836px;
margin-top: 52px;
}
footer {
padding-top: 8px;
padding-bottom: 55px;
background-color: #0B141F;
color: white;
overflow: hidden;
}
footer p {
color: white;
margin-top: 6px;
}
#subscribe-and-text {
display: flex;
}
#subscribe .big-text {
color: white;
}
#subscribe .email:focus {
outline: none;
border-bottom: 1px solid #FFFFFF;
}
#subscribe input:focus::-webkit-input-placeholder {
color: #A8A8A8;
}
/* Firefox < 19 */
#subscribe input:focus:-moz-placeholder {
color: #A8A8A8;
}
/* Firefox > 19 */
#subscribe input:focus::-moz-placeholder {
color: #A8A8A8;
}
/* Internet Explorer 10 */
#subscribe input:focus:-ms-input-placeholder {
color: #A8A8A8;
}
#subscribe .email {
background: none;
border: 0;
border-bottom: 1px solid #979797;
width: 325px;
padding-bottom: 10px;
}
#subscribe .button {
width: 153px;
height: 58px;
color: white;
background-color: #1BC4A6;
font-family: Futura;
font-size: 22px;
border-width: 0;
}
#subscribe .button:focus {
outline: none;
background-color: #4F6A7B;
}
#subscribe .button:hover {
background-color: #1edebe;
}
#subscribe input, #subscribe .button {
margin-top: 40px;
}
@media (min-width: 769px) {
#subscribe {
margin-top: 10px;
}
#subscribe .big-text {
white-space: nowrap;
}
#subscribe .button {
width: 143px;
height: 52px;
margin-left: 18px;
}
#subscribe .email {
width: 250px;
}
}
#dai-foundation-text {
padding-left: 93px;
}
#links {
grid-area: links;
display: flex;
justify-content: space-between;
}
.link-group {
line-height: 38px;
font-size: 14px;
}
.link-group a {
font-family: Roboto-Regular;
color: #8A8A8A;
text-decoration: none;
}
.link-group a:hover {
color: #ccc;
}
.link-category {
font-family: Roboto-Bold;
text-transform: uppercase;
}
#icon-links {
display: none;
}
#copyright {
font-family: Roboto-Regular;
font-size: 16px;
color: #8A8A8A;
}
#copyright img {
margin-left: 7px;
}
#copyright span {
margin-left: 27px;
}
.video-background {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
align-content: center;
justify-content: center;
align-items: center;
z-index: 5;
}
.close-vid-btn {
position: absolute;
right: 15px;
top: 15px;
color: #dcdcdc;
}
.close-vid-btn.fa {
font-size: 30px;
}
.close-vid-btn:hover {
color: white;
}
.announcement {
border-radius: 3px;
background-color: #fff7e2;
box-shadow: 1px 1px 5px #b1b1b1;
padding: 8px;
text-align: center;
margin: 18px 0;
font-family: Futura;
font-size: 20px;
position: relative;
color: black;
}
.announcement .js-close {
float: right;
opacity: 0.4;
}
.announcement .js-close:hover {
opacity: 0.9;
}
.js-close.fa {
font-size: 25px;
}
/* ==========================================================================
Media Queries
========================================================================== */
/*
Medium screen size
*/
@media (max-width: 990px) {
.centered {
width: 750px;
}
footer .centered {
width: 700px;
}
#why-dai {
padding-right: 30px;
}
#mkr-holders-govern-dai {
padding-left: 40px;
}
#dai-system-vid, #mkr-token-vid {
margin-top: 40px;
}
.vid-preview img {
width: 350px;
}
.booklet {
width: 230px;
}
#dai-foundation-text {
padding-left: 40px;
}
}
/* Mobile screen size */
@media (max-width: 768px) {
body {
overflow-x: hidden;
}
.centered {
width: 85%;
}
header {
height: 68px;
}
header nav {
display: none;
}
#content.menu-opened {
position: relative;
left: 236px;
}
#content.menu-opened #top-nav {
display: block;
}
header nav {
position: fixed;
top: 0px;
left: 0px;
bottom: 0px;
width: 256px;
background-color: #1D252A;
margin: 0;
z-index: 3;
}
.menu-container {
margin: 30px;
}
.menu-category {
font-family: Futura, sans-serif;
width: 100%;
display: inline-block;
font-size: 24px;
color: #FAFAFA;
letter-spacing: 0;
line-height: 1;
}
.menu-category .icon-angle-down {
float: right;
}
header nav div {
display: block;
margin-left: 0;
z-index: 3;
}
.menu {
position: static;
background-color: #1D252A;
box-shadow: none;
padding-left: 0;
padding-bottom: 0;
}
.menu a {
font-family: Roboto-Regular;
font-size: 16px;
color: #DFE2E9;
letter-spacing: 0;
line-height: 48px;
}
header {
justify-self: start;
}
#menu-bars {
display: block;
position: absolute;
top: 10px;
font-size: 25px;
height: 50px;
width: 50px;
left: -15px;
}
#menu-bars:before {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
header #logo {
left: 50px;
top: 15px;
}
#why-dai {
margin-top: 38px;
}
#why-dai .play-link, #mkr-holders-govern-dai .play-link, #dash-1 {
display: none;
}
#dai-system-vid .vid-preview {
float: none;
}
.vid-preview img {
width: 100%;
max-width: 388px;
}
#jumbo {
height: 340px;
}
#jumbo-legend-container {
width: 100%;
}
#jumbo-legend {
font-size: 44px;
}
#why-dai-and-vid, #mkr-govern-and-vid {
flex-direction: column;
align-items: center;
}
#why-dai {
padding-right: 0;
}
#mkr-holders-govern-dai {
padding-left: 0;
}
#mkr-token-vid img {
width: 150px;
}
.pitch {
font-family: Roboto-Light;
font-size: 24px;
color: #727272;
line-height: 38px;
}
#the-next-generation-text {
padding-bottom: 74px;
}
#doc-booklets .booklets {
flex-direction: column;
align-items: center;
align-content: center;
justify-content: center;
}
.booklet {
width: 288px;
}
footer {
background-color: white;
padding-bottom: 0;
padding-top: 0;
}
footer .centered {
width: 85%;
margin-top: 27px;
}
footer p {
color: #727272;
}
#subscribe-and-text {
margin-top: 0;
flex-direction: column;
}
#subscribe .big-text {
color: #121212;
}
#subscribe input.email {
max-width: 325px;
width: 100%;
font-size: 16px;
color: #727272;
}
#dai-foundation-text {
padding-left: 0;
margin-top: 27px;
}
#dai-foundation-text p {
margin: 0;
}
#links {
display: none;
}
#icon-links {
grid-area: icon-links;
display: flex;
justify-content: center;
margin-bottom: 45px;
}
#icon-links a {
font-size: 36px;
color: #1BC4A6;
transition: color 0.5s;
padding: 0 .4rem;
}
#icon-links a:hover {
color: #FCD370;
}
.dark {
background-color: #0B141F;
}
#copyright {
display: flex;
align-self: stretch;
justify-self: stretch;
height: 143px;
flex-direction: column;
align-items: center;
align-content: center;
justify-content: center;
}
#copyright img, #copyright span {
display: block;
margin-left: 0;
}
#copyright span {
margin-top: 17px;
}
.on-desktop {
display: none;
}
}
@media print,
(-o-min-device-pixel-ratio: 5/4),
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
}
/* ==========================================================================
Helper classes
========================================================================== */
.hidden {
display: none !important;
visibility: hidden;
}
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
}
.invisible {
visibility: hidden;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix {
*zoom: 1;
}
/* ==========================================================================
Print styles
========================================================================== */
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important;
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
} | 0.378344 | 0.081009 |
{
width: 230px;
height: 159px;
border-width: 1px;
border-style: solid;
border-color: #13005B;
position: relative;
margin-right: -10000px;
margin-top: 0px;
left: 0px;
margin-left: 0px;
min-height: 0px;
}
#pbuttonu159:hover #buttonu159
{
width: 251px;
height: 153px;
border-width: 1px;
border-style: solid;
border-color: #13005B;
position: relative;
margin-right: -10000px;
margin-top: 0px;
left: 0px;
margin-left: 0px;
min-height: 0px;
}
#pbuttonu166:hover #buttonu166
{
width: 256px;
height: 156px;
border-width: 1px;
border-style: solid;
border-color: #13005B;
position: relative;
margin-right: -10000px;
margin-top: 0px;
left: 0px;
margin-left: 0px;
min-height: 0px;
}
.ie #pbuttonu166:hover #buttonu166,.ie #pbuttonu163:hover #buttonu163,.ie #pbuttonu159:hover #buttonu159
{
opacity: 1;
-ms-filter: "";
filter: none;
background-color: transparent;
}
.version.index /* version checker */
{
color: #0000F5;
background-color: #24CF7B;
}
.html
{
background: #FFFFFF url("../images/73457%20blurd.jpg") no-repeat center center fixed;
background-size: cover;
}
#page
{
z-index: 1;
width: 960px;
min-height: 1268px;
background-image: none;
border-style: none;
border-color: #000000;
background-color: transparent;
margin-left: auto;
margin-right: auto;
}
#page_position_content
{
padding-top: 214px;
padding-bottom: 248px;
width: 0.01px;
}
#u289
{
z-index: 33;
width: 210px;
min-height: 98px;
border-style: none;
border-color: transparent;
background-color: transparent;
margin-left: 443px;
position: relative;
}
#u88
{
z-index: 2;
min-height: 91px;
padding-bottom: 43px;
}
#u88_align_to_page
{
margin-left: auto;
margin-right: auto;
width: 960px;
left: -100px;
}
#u99-4
{
z-index: 3;
width: 617px;
min-height: 48px;
margin-right: -10000px;
margin-top: 43px;
left: 272px;
}
#u99-4:hover
{
padding-top: 0px;
padding-bottom: 0px;
min-height: 48px;
width: 617px;
margin: 43px -10000px 0px 0px;
}
#u88-bw
{
z-index: 2;
min-height: 91px;
margin-top: 7px;
}
#ppbuttonu159
{
width: 0.01px;
margin-left: -23px;
margin-top: 405px;
}
#pbuttonu159
{
width: 0.01px;
margin-right: -10000px;
}
#buttonu159
{
z-index: 8;
width: 252px;
height: 154px;
border-color: #787878;
background-color: transparent;
border-radius: 10px;
position: relative;
margin-right: -10000px;
}
#u170-4
{
z-index: 9;
display: block;
vertical-align: top;
}
#pbuttonu159 #u170-4
{
position: relative;
margin-right: -10000px;
margin-top: 59px;
left: 60px;
}
#pbuttonu159:hover #u170-4
{
position: relative;
margin-right: -10000px;
margin-top: 58px;
left: 59px;
}
#u172
{
z-index: 13;
}
#pbuttonu159 #u172
{
position: relative;
margin-right: -10000px;
margin-top: 36px;
}
#pbuttonu159:hover #u172
{
position: relative;
margin-right: -10000px;
margin-top: 35px;
left: -1px;
}
#pbuttonu163
{
width: 0.01px;
margin: 2px -10000px -1px 388px;
}
#buttonu163
{
z-index: 16;
width: 231px;
height: 160px;
border-color: #787878;
background-color: transparent;
border-radius: 10px;
position: relative;
margin-right: -10000px;
}
#u177
{
z-index: 17;
width: 81px;
background-color: transparent;
}
#pbuttonu163:hover #u177
{
position: relative;
width: 81px;
margin-right: -10000px;
margin-top: 34px;
left: 25px;
min-height: 0px;
}
#pbuttonu163.ButtonSelected #u177
{
width: 81px;
min-height: 0px;
}
#pbuttonu163 #u177
{
position: relative;
width: 81px;
margin-right: -10000px;
margin-top: 35px;
left: 26px;
}
#u183-4
{
z-index: 19;
display: block;
vertical-align: top;
}
#pbuttonu163 #u183-4
{
position: relative;
margin-right: -10000px;
margin-top: 62px;
left: 81px;
}
#pbuttonu163:hover #u183-4
{
position: relative;
margin-right: -10000px;
margin-top: 61px;
left: 80px;
}
#pbuttonu166
{
width: 0.01px;
margin: 5px -10000px -1px 754px;
}
#buttonu166
{
z-index: 25;
width: 257px;
height: 157px;
border-color: #787878;
background-color: transparent;
border-radius: 10px;
position: relative;
margin-right: -10000px;
}
#u184
{
z-index: 26;
width: 71px;
background-color: transparent;
}
#pbuttonu166:hover #u184
{
position: relative;
width: 71px;
margin-right: -10000px;
margin-top: 41px;
left: 18px;
min-height: 0px;
}
#pbuttonu166.ButtonSelected #u184
{
width: 71px;
min-height: 0px;
}
#pbuttonu166 #u184
{
position: relative;
width: 71px;
margin-right: -10000px;
margin-top: 42px;
left: 19px;
}
#u197-4
{
z-index: 28;
display: block;
vertical-align: top;
}
#pbuttonu166 #u197-4
{
position: relative;
margin-right: -10000px;
margin-top: 61px;
left: 74px;
}
#pbuttonu166:hover #u197-4
{
position: relative;
margin-right: -10000px;
margin-top: 60px;
left: 73px;
}
.js #buttonu159.ose_pre_init,.js #buttonu163.ose_pre_init,.js #buttonu166.ose_pre_init
{
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
body
{
position: relative;
min-width: 960px;
padding-top: 36px;
padding-bottom: 60px;
}
#page .verticalspacer
{
clear: both;
} | website/css/index.css | {
width: 230px;
height: 159px;
border-width: 1px;
border-style: solid;
border-color: #13005B;
position: relative;
margin-right: -10000px;
margin-top: 0px;
left: 0px;
margin-left: 0px;
min-height: 0px;
}
#pbuttonu159:hover #buttonu159
{
width: 251px;
height: 153px;
border-width: 1px;
border-style: solid;
border-color: #13005B;
position: relative;
margin-right: -10000px;
margin-top: 0px;
left: 0px;
margin-left: 0px;
min-height: 0px;
}
#pbuttonu166:hover #buttonu166
{
width: 256px;
height: 156px;
border-width: 1px;
border-style: solid;
border-color: #13005B;
position: relative;
margin-right: -10000px;
margin-top: 0px;
left: 0px;
margin-left: 0px;
min-height: 0px;
}
.ie #pbuttonu166:hover #buttonu166,.ie #pbuttonu163:hover #buttonu163,.ie #pbuttonu159:hover #buttonu159
{
opacity: 1;
-ms-filter: "";
filter: none;
background-color: transparent;
}
.version.index /* version checker */
{
color: #0000F5;
background-color: #24CF7B;
}
.html
{
background: #FFFFFF url("../images/73457%20blurd.jpg") no-repeat center center fixed;
background-size: cover;
}
#page
{
z-index: 1;
width: 960px;
min-height: 1268px;
background-image: none;
border-style: none;
border-color: #000000;
background-color: transparent;
margin-left: auto;
margin-right: auto;
}
#page_position_content
{
padding-top: 214px;
padding-bottom: 248px;
width: 0.01px;
}
#u289
{
z-index: 33;
width: 210px;
min-height: 98px;
border-style: none;
border-color: transparent;
background-color: transparent;
margin-left: 443px;
position: relative;
}
#u88
{
z-index: 2;
min-height: 91px;
padding-bottom: 43px;
}
#u88_align_to_page
{
margin-left: auto;
margin-right: auto;
width: 960px;
left: -100px;
}
#u99-4
{
z-index: 3;
width: 617px;
min-height: 48px;
margin-right: -10000px;
margin-top: 43px;
left: 272px;
}
#u99-4:hover
{
padding-top: 0px;
padding-bottom: 0px;
min-height: 48px;
width: 617px;
margin: 43px -10000px 0px 0px;
}
#u88-bw
{
z-index: 2;
min-height: 91px;
margin-top: 7px;
}
#ppbuttonu159
{
width: 0.01px;
margin-left: -23px;
margin-top: 405px;
}
#pbuttonu159
{
width: 0.01px;
margin-right: -10000px;
}
#buttonu159
{
z-index: 8;
width: 252px;
height: 154px;
border-color: #787878;
background-color: transparent;
border-radius: 10px;
position: relative;
margin-right: -10000px;
}
#u170-4
{
z-index: 9;
display: block;
vertical-align: top;
}
#pbuttonu159 #u170-4
{
position: relative;
margin-right: -10000px;
margin-top: 59px;
left: 60px;
}
#pbuttonu159:hover #u170-4
{
position: relative;
margin-right: -10000px;
margin-top: 58px;
left: 59px;
}
#u172
{
z-index: 13;
}
#pbuttonu159 #u172
{
position: relative;
margin-right: -10000px;
margin-top: 36px;
}
#pbuttonu159:hover #u172
{
position: relative;
margin-right: -10000px;
margin-top: 35px;
left: -1px;
}
#pbuttonu163
{
width: 0.01px;
margin: 2px -10000px -1px 388px;
}
#buttonu163
{
z-index: 16;
width: 231px;
height: 160px;
border-color: #787878;
background-color: transparent;
border-radius: 10px;
position: relative;
margin-right: -10000px;
}
#u177
{
z-index: 17;
width: 81px;
background-color: transparent;
}
#pbuttonu163:hover #u177
{
position: relative;
width: 81px;
margin-right: -10000px;
margin-top: 34px;
left: 25px;
min-height: 0px;
}
#pbuttonu163.ButtonSelected #u177
{
width: 81px;
min-height: 0px;
}
#pbuttonu163 #u177
{
position: relative;
width: 81px;
margin-right: -10000px;
margin-top: 35px;
left: 26px;
}
#u183-4
{
z-index: 19;
display: block;
vertical-align: top;
}
#pbuttonu163 #u183-4
{
position: relative;
margin-right: -10000px;
margin-top: 62px;
left: 81px;
}
#pbuttonu163:hover #u183-4
{
position: relative;
margin-right: -10000px;
margin-top: 61px;
left: 80px;
}
#pbuttonu166
{
width: 0.01px;
margin: 5px -10000px -1px 754px;
}
#buttonu166
{
z-index: 25;
width: 257px;
height: 157px;
border-color: #787878;
background-color: transparent;
border-radius: 10px;
position: relative;
margin-right: -10000px;
}
#u184
{
z-index: 26;
width: 71px;
background-color: transparent;
}
#pbuttonu166:hover #u184
{
position: relative;
width: 71px;
margin-right: -10000px;
margin-top: 41px;
left: 18px;
min-height: 0px;
}
#pbuttonu166.ButtonSelected #u184
{
width: 71px;
min-height: 0px;
}
#pbuttonu166 #u184
{
position: relative;
width: 71px;
margin-right: -10000px;
margin-top: 42px;
left: 19px;
}
#u197-4
{
z-index: 28;
display: block;
vertical-align: top;
}
#pbuttonu166 #u197-4
{
position: relative;
margin-right: -10000px;
margin-top: 61px;
left: 74px;
}
#pbuttonu166:hover #u197-4
{
position: relative;
margin-right: -10000px;
margin-top: 60px;
left: 73px;
}
.js #buttonu159.ose_pre_init,.js #buttonu163.ose_pre_init,.js #buttonu166.ose_pre_init
{
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
body
{
position: relative;
min-width: 960px;
padding-top: 36px;
padding-bottom: 60px;
}
#page .verticalspacer
{
clear: both;
} | 0.29381 | 0.051177 |
.is-paddingless-left{
padding-left: 0 !important;
}
.rating-show {
unicode-bidi: bidi-override;
direction: rtl;
font-size: 1.2rem;
margin-top:2%;
}
.rating-show > span {
display: inline-block;
position: relative;
width: 1.1em;
}
.rating-show > span:hover,
.rating-show > span:hover ~ span {
color: transparent;
}
.rating-show > span:hover:before,
.rating-show > span:hover ~ span:before {
content: "\2605";
position: absolute;
left: 0;
color: gold;
}
.switch {
position: relative;
display: flex;
width: 50px;
height: 24px;
}
.switch input {display:none;}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 16px;
width: 16px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
.size-baju a{
margin-right:5px;
min-width:55px;
min-height:45px;
}
.is-active-size-baju{
background-color: #d6d6d6;
border: 1px solid #b2b2b2;
}
.button-quantity{
min-width: 45px;
min-height: 45px;
}
.button-add{
margin-left: 15px;
min-height: 45px;
font-size: .9rem;
padding-left: 30px;
padding-right: 30px;
}
.social-button1{color:#3B5998;}
.social-button2{color:#55ACEE;}
.social-button3{color:#dd4b39;}
.social-button4{color:#007bb5;}
.social-button5{color:#25D366;}
.inner {
padding: 1em;
background-color: white;
overflow: hidden;
position: relative;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.rating {
float: left;
width: 45%;
margin-right: 5%;
text-align: center;
}
.rating-num {
color: #333333;
font-size: 72px;
font-weight: 100;
line-height: 1em;
}
.rating-stars {
font-size: 20px;
color: #E3E3E3;
margin-bottom: .5em;
}
.rating-stars .active {
color: #737373;
}
.rating-users {
font-size: 14px;
}
.histo {
float: left;
width: 50%;
font-size: 13px;
}
.histo-star {
float: left;
padding: 3px;
}
.histo-rate {
width: 100%;
display: block;
clear: both;
}
.bar-block {
margin-left: 5px;
color: black;
display: block;
float: left;
width: 75%;
position: relative;
}
.bar {
padding: 6px;
display: block;
}
.review-samping{
font-size: 15px;
margin-left: 6px;
color: hotPink;
top: -4px;
position: relative;
}
.thumb:hover{
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .15);
}
.thumb-play:hover{
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .15);
}
.media{
margin-top:0.5rem !important;
}
.is-text-product{
font-size:0.9rem;
}
.text-shopping{
margin-right:4%;
}
.hr-modal{
margin-top:1.5%;
margin-bottom:1.5%;
}
.zoom {
display:inline-block;
position: relative;
cursor: zoom-in;
}
#tab_container .container_item {
display: none;
}
#tab_container .container_item.is-active {
display: block;
}
#thumbs{
margin-top:1%;
margin-left: 2.1%;
margin-right: 2.1%;
}
#thumbs img{
width:125px;
height:125px;
cursor:pointer;
}
.big-image{
width:98%;
display: block;
margin-left: auto;
margin-right: auto;
}
/* iPhone 6, 7, & 8 in portrait */
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {
.breadcrumb{
margin-top:23%;
padding-left:1%;
}
#thumbs{
margin-left: 0;
margin-right: 0;
}
#thumbs img{
width:67px;
height:67px;
margin-left:1%;
}
.is-text-product{
font-size:0.7rem;
}
#charNum{
font-size:0.7rem;
margin-top:1%;
}
}
/* iPhone 6, 7, & 8 Plus in portrait */
@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : portrait) {
#thumbs img{
width:75px;
height:75px;
}
.is-text-product{
font-size:0.7rem;
}
#charNum{
font-size:0.7rem;
margin-top:1%;
}
}
/* For 1366 Resolution */
@media only screen and (min-width: 1030px) and (max-width: 1366px){
#thumbs img{
width:107px;
height:107px;
}
} | git-aris/css/product-show.css | .is-paddingless-left{
padding-left: 0 !important;
}
.rating-show {
unicode-bidi: bidi-override;
direction: rtl;
font-size: 1.2rem;
margin-top:2%;
}
.rating-show > span {
display: inline-block;
position: relative;
width: 1.1em;
}
.rating-show > span:hover,
.rating-show > span:hover ~ span {
color: transparent;
}
.rating-show > span:hover:before,
.rating-show > span:hover ~ span:before {
content: "\2605";
position: absolute;
left: 0;
color: gold;
}
.switch {
position: relative;
display: flex;
width: 50px;
height: 24px;
}
.switch input {display:none;}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 16px;
width: 16px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
.size-baju a{
margin-right:5px;
min-width:55px;
min-height:45px;
}
.is-active-size-baju{
background-color: #d6d6d6;
border: 1px solid #b2b2b2;
}
.button-quantity{
min-width: 45px;
min-height: 45px;
}
.button-add{
margin-left: 15px;
min-height: 45px;
font-size: .9rem;
padding-left: 30px;
padding-right: 30px;
}
.social-button1{color:#3B5998;}
.social-button2{color:#55ACEE;}
.social-button3{color:#dd4b39;}
.social-button4{color:#007bb5;}
.social-button5{color:#25D366;}
.inner {
padding: 1em;
background-color: white;
overflow: hidden;
position: relative;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.rating {
float: left;
width: 45%;
margin-right: 5%;
text-align: center;
}
.rating-num {
color: #333333;
font-size: 72px;
font-weight: 100;
line-height: 1em;
}
.rating-stars {
font-size: 20px;
color: #E3E3E3;
margin-bottom: .5em;
}
.rating-stars .active {
color: #737373;
}
.rating-users {
font-size: 14px;
}
.histo {
float: left;
width: 50%;
font-size: 13px;
}
.histo-star {
float: left;
padding: 3px;
}
.histo-rate {
width: 100%;
display: block;
clear: both;
}
.bar-block {
margin-left: 5px;
color: black;
display: block;
float: left;
width: 75%;
position: relative;
}
.bar {
padding: 6px;
display: block;
}
.review-samping{
font-size: 15px;
margin-left: 6px;
color: hotPink;
top: -4px;
position: relative;
}
.thumb:hover{
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .15);
}
.thumb-play:hover{
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .15);
}
.media{
margin-top:0.5rem !important;
}
.is-text-product{
font-size:0.9rem;
}
.text-shopping{
margin-right:4%;
}
.hr-modal{
margin-top:1.5%;
margin-bottom:1.5%;
}
.zoom {
display:inline-block;
position: relative;
cursor: zoom-in;
}
#tab_container .container_item {
display: none;
}
#tab_container .container_item.is-active {
display: block;
}
#thumbs{
margin-top:1%;
margin-left: 2.1%;
margin-right: 2.1%;
}
#thumbs img{
width:125px;
height:125px;
cursor:pointer;
}
.big-image{
width:98%;
display: block;
margin-left: auto;
margin-right: auto;
}
/* iPhone 6, 7, & 8 in portrait */
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {
.breadcrumb{
margin-top:23%;
padding-left:1%;
}
#thumbs{
margin-left: 0;
margin-right: 0;
}
#thumbs img{
width:67px;
height:67px;
margin-left:1%;
}
.is-text-product{
font-size:0.7rem;
}
#charNum{
font-size:0.7rem;
margin-top:1%;
}
}
/* iPhone 6, 7, & 8 Plus in portrait */
@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : portrait) {
#thumbs img{
width:75px;
height:75px;
}
.is-text-product{
font-size:0.7rem;
}
#charNum{
font-size:0.7rem;
margin-top:1%;
}
}
/* For 1366 Resolution */
@media only screen and (min-width: 1030px) and (max-width: 1366px){
#thumbs img{
width:107px;
height:107px;
}
} | 0.369884 | 0.123683 |
.modal *
{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}/*:after,
:before
{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}*/
.pre-scrollable
{
overflow-y: scroll;
max-height: 340px;
}.container
{
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;
}@media (min-width:768px)
{
.container
{
width: 750px;
}
}@media (min-width:992px)
{
.container
{
width: 970px;
}
}@media (min-width:1200px)
{
.container
{
width: 1170px;
}
}.container-fluid
{
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;
}.row
{
margin-right: -15px;
margin-left: -15px;
}.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.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-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9
{
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9
{
float: left;
}.col-xs-12
{
width: 100%;
}.col-xs-11
{
width: 91.66666667%;
}.col-xs-10
{
width: 83.33333333%;
}.col-xs-9
{
width: 75%;
}.col-xs-8
{
width: 66.66666667%;
}.col-xs-7
{
width: 58.33333333%;
}.col-xs-6
{
width: 50%;
}.col-xs-5
{
width: 41.66666667%;
}.col-xs-4
{
width: 33.33333333%;
}.col-xs-3
{
width: 25%;
}.col-xs-2
{
width: 16.66666667%;
}.col-xs-1
{
width: 8.33333333%;
}.col-xs-pull-12
{
right: 100%;
}.col-xs-pull-11
{
right: 91.66666667%;
}.col-xs-pull-10
{
right: 83.33333333%;
}.col-xs-pull-9
{
right: 75%;
}.col-xs-pull-8
{
right: 66.66666667%;
}.col-xs-pull-7
{
right: 58.33333333%;
}.col-xs-pull-6
{
right: 50%;
}.col-xs-pull-5
{
right: 41.66666667%;
}.col-xs-pull-4
{
right: 33.33333333%;
}.col-xs-pull-3
{
right: 25%;
}.col-xs-pull-2
{
right: 16.66666667%;
}.col-xs-pull-1
{
right: 8.33333333%;
}.col-xs-pull-0
{
right: auto;
}.col-xs-push-12
{
left: 100%;
}.col-xs-push-11
{
left: 91.66666667%;
}.col-xs-push-10
{
left: 83.33333333%;
}.col-xs-push-9
{
left: 75%;
}.col-xs-push-8
{
left: 66.66666667%;
}.col-xs-push-7
{
left: 58.33333333%;
}.col-xs-push-6
{
left: 50%;
}.col-xs-push-5
{
left: 41.66666667%;
}.col-xs-push-4
{
left: 33.33333333%;
}.col-xs-push-3
{
left: 25%;
}.col-xs-push-2
{
left: 16.66666667%;
}.col-xs-push-1
{
left: 8.33333333%;
}.col-xs-push-0
{
left: auto;
}.col-xs-offset-12
{
margin-left: 100%;
}.col-xs-offset-11
{
margin-left: 91.66666667%;
}.col-xs-offset-10
{
margin-left: 83.33333333%;
}.col-xs-offset-9
{
margin-left: 75%;
}.col-xs-offset-8
{
margin-left: 66.66666667%;
}.col-xs-offset-7
{
margin-left: 58.33333333%;
}.col-xs-offset-6
{
margin-left: 50%;
}.col-xs-offset-5
{
margin-left: 41.66666667%;
}.col-xs-offset-4
{
margin-left: 33.33333333%;
}.col-xs-offset-3
{
margin-left: 25%;
}.col-xs-offset-2
{
margin-left: 16.66666667%;
}.col-xs-offset-1
{
margin-left: 8.33333333%;
}.col-xs-offset-0
{
margin-left: 0;
}@media (min-width:768px)
{
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9
{
float: left;
}.col-sm-12
{
width: 100%;
}.col-sm-11
{
width: 91.66666667%;
}.col-sm-10
{
width: 83.33333333%;
}.col-sm-9
{
width: 75%;
}.col-sm-8
{
width: 66.66666667%;
}.col-sm-7
{
width: 58.33333333%;
}.col-sm-6
{
width: 50%;
}.col-sm-5
{
width: 41.66666667%;
}.col-sm-4
{
width: 33.33333333%;
}.col-sm-3
{
width: 25%;
}.col-sm-2
{
width: 16.66666667%;
}.col-sm-1
{
width: 8.33333333%;
}.col-sm-pull-12
{
right: 100%;
}.col-sm-pull-11
{
right: 91.66666667%;
}.col-sm-pull-10
{
right: 83.33333333%;
}.col-sm-pull-9
{
right: 75%;
}.col-sm-pull-8
{
right: 66.66666667%;
}.col-sm-pull-7
{
right: 58.33333333%;
}.col-sm-pull-6
{
right: 50%;
}.col-sm-pull-5
{
right: 41.66666667%;
}.col-sm-pull-4
{
right: 33.33333333%;
}.col-sm-pull-3
{
right: 25%;
}.col-sm-pull-2
{
right: 16.66666667%;
}.col-sm-pull-1
{
right: 8.33333333%;
}.col-sm-pull-0
{
right: auto;
}.col-sm-push-12
{
left: 100%;
}.col-sm-push-11
{
left: 91.66666667%;
}.col-sm-push-10
{
left: 83.33333333%;
}.col-sm-push-9
{
left: 75%;
}.col-sm-push-8
{
left: 66.66666667%;
}.col-sm-push-7
{
left: 58.33333333%;
}.col-sm-push-6
{
left: 50%;
}.col-sm-push-5
{
left: 41.66666667%;
}.col-sm-push-4
{
left: 33.33333333%;
}.col-sm-push-3
{
left: 25%;
}.col-sm-push-2
{
left: 16.66666667%;
}.col-sm-push-1
{
left: 8.33333333%;
}.col-sm-push-0
{
left: auto;
}.col-sm-offset-12
{
margin-left: 100%;
}.col-sm-offset-11
{
margin-left: 91.66666667%;
}.col-sm-offset-10
{
margin-left: 83.33333333%;
}.col-sm-offset-9
{
margin-left: 75%;
}.col-sm-offset-8
{
margin-left: 66.66666667%;
}.col-sm-offset-7
{
margin-left: 58.33333333%;
}.col-sm-offset-6
{
margin-left: 50%;
}.col-sm-offset-5
{
margin-left: 41.66666667%;
}.col-sm-offset-4
{
margin-left: 33.33333333%;
}.col-sm-offset-3
{
margin-left: 25%;
}.col-sm-offset-2
{
margin-left: 16.66666667%;
}.col-sm-offset-1
{
margin-left: 8.33333333%;
}.col-sm-offset-0
{
margin-left: 0;
}
}@media (min-width:992px)
{
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9
{
float: left;
}.col-md-12
{
width: 100%;
}.col-md-11
{
width: 91.66666667%;
}.col-md-10
{
width: 83.33333333%;
}.col-md-9
{
width: 75%;
}.col-md-8
{
width: 66.66666667%;
}.col-md-7
{
width: 58.33333333%;
}.col-md-6
{
width: 50%;
}.col-md-5
{
width: 41.66666667%;
}.col-md-4
{
width: 33.33333333%;
}.col-md-3
{
width: 25%;
}.col-md-2
{
width: 16.66666667%;
}.col-md-1
{
width: 8.33333333%;
}.col-md-pull-12
{
right: 100%;
}.col-md-pull-11
{
right: 91.66666667%;
}.col-md-pull-10
{
right: 83.33333333%;
}.col-md-pull-9
{
right: 75%;
}.col-md-pull-8
{
right: 66.66666667%;
}.col-md-pull-7
{
right: 58.33333333%;
}.col-md-pull-6
{
right: 50%;
}.col-md-pull-5
{
right: 41.66666667%;
}.col-md-pull-4
{
right: 33.33333333%;
}.col-md-pull-3
{
right: 25%;
}.col-md-pull-2
{
right: 16.66666667%;
}.col-md-pull-1
{
right: 8.33333333%;
}.col-md-pull-0
{
right: auto;
}.col-md-push-12
{
left: 100%;
}.col-md-push-11
{
left: 91.66666667%;
}.col-md-push-10
{
left: 83.33333333%;
}.col-md-push-9
{
left: 75%;
}.col-md-push-8
{
left: 66.66666667%;
}.col-md-push-7
{
left: 58.33333333%;
}.col-md-push-6
{
left: 50%;
}.col-md-push-5
{
left: 41.66666667%;
}.col-md-push-4
{
left: 33.33333333%;
}.col-md-push-3
{
left: 25%;
}.col-md-push-2
{
left: 16.66666667%;
}.col-md-push-1
{
left: 8.33333333%;
}.col-md-push-0
{
left: auto;
}.col-md-offset-12
{
margin-left: 100%;
}.col-md-offset-11
{
margin-left: 91.66666667%;
}.col-md-offset-10
{
margin-left: 83.33333333%;
}.col-md-offset-9
{
margin-left: 75%;
}.col-md-offset-8
{
margin-left: 66.66666667%;
}.col-md-offset-7
{
margin-left: 58.33333333%;
}.col-md-offset-6
{
margin-left: 50%;
}.col-md-offset-5
{
margin-left: 41.66666667%;
}.col-md-offset-4
{
margin-left: 33.33333333%;
}.col-md-offset-3
{
margin-left: 25%;
}.col-md-offset-2
{
margin-left: 16.66666667%;
}.col-md-offset-1
{
margin-left: 8.33333333%;
}.col-md-offset-0
{
margin-left: 0;
}
}@media (min-width:1200px)
{
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9
{
float: left;
}.col-lg-12
{
width: 100%;
}.col-lg-11
{
width: 91.66666667%;
}.col-lg-10
{
width: 83.33333333%;
}.col-lg-9
{
width: 75%;
}.col-lg-8
{
width: 66.66666667%;
}.col-lg-7
{
width: 58.33333333%;
}.col-lg-6
{
width: 50%;
}.col-lg-5
{
width: 41.66666667%;
}.col-lg-4
{
width: 33.33333333%;
}.col-lg-3
{
width: 25%;
}.col-lg-2
{
width: 16.66666667%;
}.col-lg-1
{
width: 8.33333333%;
}.col-lg-pull-12
{
right: 100%;
}.col-lg-pull-11
{
right: 91.66666667%;
}.col-lg-pull-10
{
right: 83.33333333%;
}.col-lg-pull-9
{
right: 75%;
}.col-lg-pull-8
{
right: 66.66666667%;
}.col-lg-pull-7
{
right: 58.33333333%;
}.col-lg-pull-6
{
right: 50%;
}.col-lg-pull-5
{
right: 41.66666667%;
}.col-lg-pull-4
{
right: 33.33333333%;
}.col-lg-pull-3
{
right: 25%;
}.col-lg-pull-2
{
right: 16.66666667%;
}.col-lg-pull-1
{
right: 8.33333333%;
}.col-lg-pull-0
{
right: auto;
}.col-lg-push-12
{
left: 100%;
}.col-lg-push-11
{
left: 91.66666667%;
}.col-lg-push-10
{
left: 83.33333333%;
}.col-lg-push-9
{
left: 75%;
}.col-lg-push-8
{
left: 66.66666667%;
}.col-lg-push-7
{
left: 58.33333333%;
}.col-lg-push-6
{
left: 50%;
}.col-lg-push-5
{
left: 41.66666667%;
}.col-lg-push-4
{
left: 33.33333333%;
}.col-lg-push-3
{
left: 25%;
}.col-lg-push-2
{
left: 16.66666667%;
}.col-lg-push-1
{
left: 8.33333333%;
}.col-lg-push-0
{
left: auto;
}.col-lg-offset-12
{
margin-left: 100%;
}.col-lg-offset-11
{
margin-left: 91.66666667%;
}.col-lg-offset-10
{
margin-left: 83.33333333%;
}.col-lg-offset-9
{
margin-left: 75%;
}.col-lg-offset-8
{
margin-left: 66.66666667%;
}.col-lg-offset-7
{
margin-left: 58.33333333%;
}.col-lg-offset-6
{
margin-left: 50%;
}.col-lg-offset-5
{
margin-left: 41.66666667%;
}.col-lg-offset-4
{
margin-left: 33.33333333%;
}.col-lg-offset-3
{
margin-left: 25%;
}.col-lg-offset-2
{
margin-left: 16.66666667%;
}.col-lg-offset-1
{
margin-left: 8.33333333%;
}.col-lg-offset-0
{
margin-left: 0;
}
}
// .btn
// {
// font-size: 14px;
// font-weight: 400;
// line-height: 1.42857143;
// display: inline-block;
// margin-bottom: 0;
// padding: 6px 12px;
// cursor: pointer;
// -webkit-user-select: none;
// -moz-user-select: none;
// -ms-user-select: none;
// user-select: none;
// text-align: center;
// vertical-align: middle;
// white-space: nowrap;
// border: 1px solid transparent;
// border-radius: 4px;
// background-image: none;
// -ms-touch-action: manipulation;
// touch-action: manipulation;
// }.btn.active.focus,
// .btn.active:focus,
// .btn.focus,
// .btn:active.focus,
// .btn:active:focus,
// .btn:focus
// {
// outline: thin dotted;
// outline: 5px auto -webkit-focus-ring-color;
// outline-offset: -2px;
// }.btn.focus,
// .btn:focus,
// .btn:hover
// {
// text-decoration: none;
// color: #333;
// }.btn.active,
// .btn:active
// {
// outline: 0;
// background-image: none;
// -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
// box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
// }.btn.disabled,
// .btn[disabled],
// fieldset[disabled] .btn
// {
// cursor: not-allowed;
// opacity: .65;
// -webkit-box-shadow: none;
// box-shadow: none;
// filter: alpha(opacity=65);
// }a.btn.disabled,
// fieldset[disabled] a.btn
// {
// pointer-events: none;
// }.btn-default
// {
// color: #333;
// border-color: #ccc;
// background-color: #fff;
// }.btn-default.focus,
// .btn-default:focus
// {
// color: #333;
// border-color: #8c8c8c;
// background-color: #e6e6e6;
// }.btn-default:hover
// {
// color: #333;
// border-color: #adadad;
// background-color: #e6e6e6;
// }.btn-default.active,
// .btn-default:active,
// .open > .dropdown-toggle.btn-default
// {
// color: #333;
// border-color: #adadad;
// background-color: #e6e6e6;
// }.btn-default.active.focus,
// .btn-default.active:focus,
// .btn-default.active:hover,
// .btn-default:active.focus,
// .btn-default:active:focus,
// .btn-default:active:hover,
// .open > .dropdown-toggle.btn-default.focus,
// .open > .dropdown-toggle.btn-default:focus,
// .open > .dropdown-toggle.btn-default:hover
// {
// color: #333;
// border-color: #8c8c8c;
// background-color: #d4d4d4;
// }.btn-default.active,
// .btn-default:active,
// .open > .dropdown-toggle.btn-default
// {
// background-image: none;
// }.btn-default.disabled,
// .btn-default.disabled.active,
// .btn-default.disabled.focus,
// .btn-default.disabled:active,
// .btn-default.disabled:focus,
// .btn-default.disabled:hover,
// .btn-default[disabled],
// .btn-default[disabled].active,
// .btn-default[disabled].focus,
// .btn-default[disabled]:active,
// .btn-default[disabled]:focus,
// .btn-default[disabled]:hover,
// {
// border-color: #ccc;
// background-color: #fff;
// }.btn-default .badge
// {
// color: #fff;
// background-color: #333;
// }.btn-primary
// {
// color: #fff;
// border-color: #2e6da4;
// background-color: #337ab7;
// }.btn-primary.focus,
// .btn-primary:focus
// {
// color: #fff;
// border-color: #122b40;
// background-color: #286090;
// }.btn-primary:hover
// {
// color: #fff;
// border-color: #204d74;
// background-color: #286090;
// }.btn-primary.active,
// .btn-primary:active,
// .open > .dropdown-toggle.btn-primary
// {
// color: #fff;
// border-color: #204d74;
// background-color: #286090;
// }.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
// {
// color: #fff;
// border-color: #122b40;
// background-color: #204d74;
// }.btn-primary.active,
// .btn-primary:active,
// .open > .dropdown-toggle.btn-primary
// {
// background-image: none;
// }.btn-primary.disabled,
// .btn-primary.disabled.active,
// .btn-primary.disabled.focus,
// .btn-primary.disabled:active,
// .btn-primary.disabled:focus,
// .btn-primary.disabled:hover,
// .btn-primary[disabled],
// .btn-primary[disabled].active,
// .btn-primary[disabled].focus,
// .btn-primary[disabled]:active,
// .btn-primary[disabled]:focus,
// .btn-primary[disabled]:hover,
// fieldset[disabled] .btn-primary,
// fieldset[disabled] .btn-primary.active,
// fieldset[disabled] .btn-primary.focus,
// fieldset[disabled] .btn-primary:active,
// fieldset[disabled] .btn-primary:focus,
// fieldset[disabled] .btn-primary:hover
// {
// border-color: #2e6da4;
// background-color: #337ab7;
// }.btn-primary .badge
// {
// color: #337ab7;
// background-color: #fff;
// }.btn-success
// {
// color: #fff;
// border-color: #3499da;
// background-color: #3499da;
// }.btn-success.focus,
// .btn-success:focus
// {
// color: #fff;
// border-color:#3691cb;
// background-color: #3691cb;
// }.btn-success:hover
// {
// color: #fff;
// border-color: #3691cb;
// background-color: #3691cb;
// }.btn-success.active,
// .btn-success:active,
// .open > .dropdown-toggle.btn-success
// {
// color: #fff;
// border-color: #3691cb;
// background-color: #3691cb;
// }.btn-success.active.focus,
// .btn-success.active:focus,
// .btn-success.active:hover,
// .btn-success:active.focus,
// .btn-success:active:focus,
// .btn-success:active:hover,
// .open > .dropdown-toggle.btn-success.focus,
// .open > .dropdown-toggle.btn-success:focus,
// .open > .dropdown-toggle.btn-success:hover
// {
// color: #fff;
// border-color: #3691cb;
// background-color:#3691cb;
// }.btn-success.active,
// .btn-success:active,
// .open > .dropdown-toggle.btn-success
// {
// background-image: none;
// }.btn-success.disabled,
// .btn-success.disabled.active,
// .btn-success.disabled.focus,
// .btn-success.disabled:active,
// .btn-success.disabled:focus,
// .btn-success.disabled:hover,
// .btn-success[disabled],
// .btn-success[disabled].active,
// .btn-success[disabled].focus,
// .btn-success[disabled]:active,
// .btn-success[disabled]:focus,
// .btn-success[disabled]:hover,
// fieldset[disabled] .btn-success,
// fieldset[disabled] .btn-success.active,
// fieldset[disabled] .btn-success.focus,
// fieldset[disabled] .btn-success:active,
// fieldset[disabled] .btn-success:focus,
// fieldset[disabled] .btn-success:hover
// {
// border-color: #4cae4c;
// background-color: #5cb85c;
// }.btn-success .badge
// {
// color: #5cb85c;
// background-color: #fff;
// }.btn-info
// {
// color: #fff;
// border-color: #46b8da;
// background-color: #5bc0de;
// }.btn-info.focus,
// .btn-info:focus
// {
// color: #fff;
// border-color: #1b6d85;
// background-color: #31b0d5;
// }.btn-info:hover
// {
// color: #fff;
// border-color: #269abc;
// background-color: #31b0d5;
// }.btn-info.active,
// .btn-info:active,
// .open > .dropdown-toggle.btn-info
// {
// color: #fff;
// border-color: #269abc;
// background-color: #31b0d5;
// }.btn-info.active.focus,
// .btn-info.active:focus,
// .btn-info.active:hover,
// .btn-info:active.focus,
// .btn-info:active:focus,
// .btn-info:active:hover,
// .open > .dropdown-toggle.btn-info.focus,
// .open > .dropdown-toggle.btn-info:focus,
// .open > .dropdown-toggle.btn-info:hover
// {
// color: #fff;
// border-color: #1b6d85;
// background-color: #269abc;
// }.btn-info.active,
// .btn-info:active,
// .open > .dropdown-toggle.btn-info
// {
// background-image: none;
// }.btn-info.disabled,
// .btn-info.disabled.active,
// .btn-info.disabled.focus,
// .btn-info.disabled:active,
// .btn-info.disabled:focus,
// .btn-info.disabled:hover,
// .btn-info[disabled],
// .btn-info[disabled].active,
// .btn-info[disabled].focus,
// .btn-info[disabled]:active,
// .btn-info[disabled]:focus,
// .btn-info[disabled]:hover,
// fieldset[disabled] .btn-info,
// fieldset[disabled] .btn-info.active,
// fieldset[disabled] .btn-info.focus,
// fieldset[disabled] .btn-info:active,
// fieldset[disabled] .btn-info:focus,
// fieldset[disabled] .btn-info:hover
// {
// border-color: #46b8da;
// background-color: #5bc0de;
// }.btn-info .badge
// {
// color: #5bc0de;
// background-color: #fff;
// }.btn-warning
// {
// color: #fff;
// border-color: #eea236;
// background-color: #f0ad4e;
// }.btn-warning.focus,
// .btn-warning:focus
// {
// color: #fff;
// border-color: #985f0d;
// background-color: #ec971f;
// }.btn-warning:hover
// {
// color: #fff;
// border-color: #d58512;
// background-color: #ec971f;
// }.btn-warning.active,
// .btn-warning:active,
// .open > .dropdown-toggle.btn-warning
// {
// color: #fff;
// border-color: #d58512;
// background-color: #ec971f;
// }.btn-warning.active.focus,
// .btn-warning.active:focus,
// .btn-warning.active:hover,
// .btn-warning:active.focus,
// .btn-warning:active:focus,
// .btn-warning:active:hover,
// .open > .dropdown-toggle.btn-warning.focus,
// .open > .dropdown-toggle.btn-warning:focus,
// .open > .dropdown-toggle.btn-warning:hover
// {
// color: #fff;
// border-color: #985f0d;
// background-color: #d58512;
// }.btn-warning.active,
// .btn-warning:active,
// .open > .dropdown-toggle.btn-warning
// {
// background-image: none;
// }.btn-warning.disabled,
// .btn-warning.disabled.active,
// .btn-warning.disabled.focus,
// .btn-warning.disabled:active,
// .btn-warning.disabled:focus,
// .btn-warning.disabled:hover,
// .btn-warning[disabled],
// .btn-warning[disabled].active,
// .btn-warning[disabled].focus,
// .btn-warning[disabled]:active,
// .btn-warning[disabled]:focus,
// .btn-warning[disabled]:hover,
// fieldset[disabled] .btn-warning,
// fieldset[disabled] .btn-warning.active,
// fieldset[disabled] .btn-warning.focus,
// fieldset[disabled] .btn-warning:active,
// fieldset[disabled] .btn-warning:focus,
// fieldset[disabled] .btn-warning:hover
// {
// border-color: #eea236;
// background-color: #f0ad4e;
// }.btn-warning .badge
// {
// color: #f0ad4e;
// background-color: #fff;
// }.btn-danger
// {
// color: #fff;
// border-color: #d43f3a;
// background-color: #d9534f;
// }.btn-danger.focus,
// .btn-danger:focus
// {
// color: #fff;
// border-color: #761c19;
// background-color: #c9302c;
// }.btn-danger:hover
// {
// color: #fff;
// border-color: #ac2925;
// background-color: #c9302c;
// }.btn-danger.active,
// .btn-danger:active,
// .open > .dropdown-toggle.btn-danger
// {
// color: #fff;
// border-color: #ac2925;
// background-color: #c9302c;
// }.btn-danger.active.focus,
// .btn-danger.active:focus,
// .btn-danger.active:hover,
// .btn-danger:active.focus,
// .btn-danger:active:focus,
// .btn-danger:active:hover,
// .open > .dropdown-toggle.btn-danger.focus,
// .open > .dropdown-toggle.btn-danger:focus,
// .open > .dropdown-toggle.btn-danger:hover
// {
// color: #fff;
// border-color: #761c19;
// background-color: #ac2925;
// }.btn-danger.active,
// .btn-danger:active,
// .open > .dropdown-toggle.btn-danger
// {
// background-image: none;
// }.btn-danger.disabled,
// .btn-danger.disabled.active,
// .btn-danger.disabled.focus,
// .btn-danger.disabled:active,
// .btn-danger.disabled:focus,
// .btn-danger.disabled:hover,
// .btn-danger[disabled],
// .btn-danger[disabled].active,
// .btn-danger[disabled].focus,
// .btn-danger[disabled]:active,
// .btn-danger[disabled]:focus,
// .btn-danger[disabled]:hover,
// fieldset[disabled] .btn-danger,
// fieldset[disabled] .btn-danger.active,
// fieldset[disabled] .btn-danger.focus,
// fieldset[disabled] .btn-danger:active,
// fieldset[disabled] .btn-danger:focus,
// fieldset[disabled] .btn-danger:hover
// {
// border-color: #d43f3a;
// background-color: #d9534f;
// }.btn-danger .badge
// {
// color: #d9534f;
// background-color: #fff;
// }.btn-link
// {
// font-weight: 400;
// color: #337ab7;
// border-radius: 0;
// }.btn-link,
// .btn-link.active,
// .btn-link:active,
// .btn-link[disabled],
// fieldset[disabled] .btn-link
// {
// background-color: transparent;
// -webkit-box-shadow: none;
// box-shadow: none;
// }.btn-link,
// .btn-link:active,
// .btn-link:focus,
// .btn-link:hover
// {
// border-color: transparent;
// }.btn-link:focus,
// .btn-link:hover
// {
// text-decoration: underline;
// color: #23527c;
// background-color: transparent;
// }.btn-link[disabled]:focus,
// .btn-link[disabled]:hover,
// fieldset[disabled] .btn-link:focus,
// fieldset[disabled] .btn-link:hover
// {
// text-decoration: none;
// color: #777;
// }.btn-group-lg > .btn,
// .btn-lg
// {
// font-size: 18px;
// line-height: 1.3333333;
// padding: 10px 16px;
// border-radius: 6px;
// }.btn-group-sm > .btn,
// .btn-sm
// {
// font-size: 12px;
// line-height: 1.5;
// padding: 5px 10px;
// border-radius: 3px;
// }.btn-group-xs > .btn,
// .btn-xs
// {
// font-size: 12px;
// line-height: 1.5;
// padding: 1px 5px;
// border-radius: 3px;
// }.btn-block
// {
// display: block;
// width: 100%;
// }.btn-block + .btn-block
// {
// margin-top: 5px;
// }input[type=button].btn-block,
// input[type=reset].btn-block,
// input[type=submit].btn-block
// {
// width: 100%;
// }
.fade
{
-webkit-transition: opacity .15s linear;
-o-transition: opacity .15s linear;
transition: opacity .15s linear;
opacity: 0;
}.fade.in
{
opacity: 1;
}.collapse
{
display: none;
}.collapse.in
{
display: block;
}tr.collapse.in
{
display: table-row;
}tbody.collapse.in
{
display: table-row-group;
}.collapsing
{
position: relative;
overflow: hidden;
height: 0;
-webkit-transition-timing-function: ease;
-o-transition-timing-function: ease;
transition-timing-function: ease;
-webkit-transition-duration: .35s;
-o-transition-duration: .35s;
transition-duration: .35s;
-webkit-transition-property: height,visibility;
-o-transition-property: height,visibility;
transition-property: height,visibility;
}.caret
{
display: inline-block;
width: 0;
height: 0;
margin-left: 2px;
vertical-align: middle;
border-top: 4px dashed;
border-top: 4px solid\9;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
}.dropdown,
.dropup
{
position: relative;
}.dropdown-toggle:focus
{
outline: 0;
}.dropdown-menu
{
font-size: 14px;
position: absolute;
z-index: 1000;
top: 100%;
left: 0;
display: none;
float: left;
min-width: 160px;
margin: 2px 0 0;
padding: 5px 0;
list-style: none;
text-align: left;
border: 1px solid #ccc;
border: 1px solid rgba(0,0,0,.15);
border-radius: 4px;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
box-shadow: 0 6px 12px rgba(0,0,0,.175);
}.dropdown-menu.pull-right
{
right: 0;
left: auto;
}.dropdown-menu .divider
{
overflow: hidden;
height: 1px;
margin: 9px 0;
background-color: #e5e5e5;
}.dropdown-menu > li > a
{
font-weight: 400;
line-height: 1.42857143;
display: block;
clear: both;
padding: 3px 20px;
white-space: nowrap;
color: #333;
}.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover
{
text-decoration: none;
color: #262626;
background-color: #f5f5f5;
}.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover
{
text-decoration: none;
color: #fff;
outline: 0;
background-color: #337ab7;
}.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > a:hover
{
color: #777;
}.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > a:hover
{
cursor: not-allowed;
text-decoration: none;
background-color: transparent;
background-image: none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)
}.open > .dropdown-menu
{
display: block;
}.open > a
{
outline: 0;
}.dropdown-menu-right
{
right: 0;
left: auto;
}.dropdown-menu-left
{
right: auto;
left: 0;
}.dropdown-header
{
font-size: 12px;
line-height: 1.42857143;
display: block;
padding: 3px 20px;
white-space: nowrap;
color: #777;
}.dropdown-backdrop
{
position: fixed;
z-index: 990;
top: 0;
right: 0;
bottom: 0;
left: 0;
}.pull-right > .dropdown-menu
{
right: 0;
left: auto;
}.dropup .caret,
.navbar-fixed-bottom .dropdown .caret
{
content: '';
border-top: 0;
border-bottom: 4px dashed;
border-bottom: 4px solid\9;
}.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu
{
top: auto;
bottom: 100%;
margin-bottom: 2px;
}@media (min-width:768px)
{
.navbar-right .dropdown-menu
{
right: 0;
left: auto;
}.navbar-right .dropdown-menu-left
{
right: auto;
left: 0;
}
}.btn-group,
.btn-group-vertical
{
position: relative;
display: inline-block;
vertical-align: middle;
}.btn-group-vertical > .btn,
.btn-group > .btn
{
position: relative;
float: left;
}.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:hover,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover
{
z-index: 2;
}.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group
{
margin-left: -1px;
}.btn-toolbar
{
margin-left: -5px;
}.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group
{
float: left;
}.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group
{
margin-left: 5px;
}.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle)
{
border-radius: 0;
}.btn-group > .btn:first-child
{
margin-left: 0;
}.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle)
{
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child)
{
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}.btn-group > .btn-group
{
float: left;
}.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn
{
border-radius: 0;
}.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle
{
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child
{
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle
{
outline: 0;
}.btn-group > .btn + .dropdown-toggle
{
padding-right: 8px;
padding-left: 8px;
}.btn-group > .btn-lg + .dropdown-toggle
{
padding-right: 12px;
padding-left: 12px;
}.btn-group.open .dropdown-toggle
{
-webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}.btn-group.open .dropdown-toggle.btn-link
{
-webkit-box-shadow: none;
box-shadow: none;
}.btn .caret
{
margin-left: 0;
}.btn-lg .caret
{
border-width: 5px 5px 0;
border-bottom-width: 0;
}.dropup .btn-lg .caret
{
border-width: 0 5px 5px;
}.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn
{
display: block;
float: none;
width: 100%;
max-width: 100%;
}.btn-group-vertical > .btn-group > .btn
{
float: none;
}.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group
{
margin-top: -1px;
margin-left: 0;
}.btn-group-vertical > .btn:not(:first-child):not(:last-child)
{
border-radius: 0;
}.btn-group-vertical > .btn:first-child:not(:last-child)
{
border-top-right-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}.btn-group-vertical > .btn:last-child:not(:first-child)
{
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-left-radius: 4px;
}.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn
{
border-radius: 0;
}.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle
{
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child
{
border-top-left-radius: 0;
border-top-right-radius: 0;
}.btn-group-justified
{
display: table;
width: 100%;
table-layout: fixed;
border-collapse: separate;
}.btn-group-justified > .btn,
.btn-group-justified > .btn-group
{
display: table-cell;
float: none;
width: 1%;
}.btn-group-justified > .btn-group .btn
{
width: 100%;
}.btn-group-justified > .btn-group .dropdown-menu
{
left: auto;
}[data-toggle=buttons] > .btn input[type=checkbox],
[data-toggle=buttons] > .btn input[type=radio],
[data-toggle=buttons] > .btn-group > .btn input[type=checkbox],
[data-toggle=buttons] > .btn-group > .btn input[type=radio]
{
position: absolute;
clip: rect(0,0,0,0);
pointer-events: none;
}.input-group
{
position: relative;
display: table;
border-collapse: separate;
}.input-group[class*=col-]
{
float: none;
padding-right: 0;
padding-left: 0;
}.input-group .form-control
{
position: relative;
z-index: 2;
float: left;
width: 100%;
margin-bottom: 0;
}.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn
{
font-size: 18px;
line-height: 1.3333333;
height: 46px;
padding: 10px 16px;
border-radius: 6px;
}select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn
{
line-height: 46px;
height: 46px;
}select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn,
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn
{
height: auto;
}.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn
{
font-size: 12px;
line-height: 1.5;
height: 30px;
padding: 5px 10px;
border-radius: 3px;
}select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn
{
line-height: 30px;
height: 30px;
}select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn,
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn
{
height: auto;
}.input-group .form-control,
.input-group-addon,
.input-group-btn
{
display: table-cell;
}.input-group .form-control:not(:first-child):not(:last-child),
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child)
{
border-radius: 0;
}.input-group-addon,
.input-group-btn
{
width: 1%;
vertical-align: middle;
white-space: nowrap;
}.input-group-addon
{
font-size: 14px;
font-weight: 400;
line-height: 1;
padding: 6px 12px;
text-align: center;
color: #555;
border: 1px solid #ccc;
border-radius: 4px;
background-color: #eee;
}.input-group-addon.input-sm
{
font-size: 12px;
padding: 5px 10px;
border-radius: 3px;
}.input-group-addon.input-lg
{
font-size: 18px;
padding: 10px 16px;
border-radius: 6px;
}.input-group-addon input[type=checkbox],
.input-group-addon input[type=radio]
{
margin-top: 0;
}.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle)
{
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}.input-group-addon:first-child
{
border-right: 0;
}.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle
{
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}.input-group-addon:last-child
{
border-left: 0;
}.input-group-btn
{
font-size: 0;
position: relative;
white-space: nowrap;
}.input-group-btn > .btn
{
position: relative;
}.input-group-btn > .btn + .btn
{
margin-left: -1px;
}.input-group-btn > .btn:active,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:hover
{
z-index: 2;
}.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group
{
margin-right: -1px;
}.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group
{
z-index: 2;
margin-left: -1px;
}.close
{
font-size: 21px;
font-weight: 700;
line-height: 1;
float: right;
opacity: .2;
color: #000;
text-shadow: 0 1px 0 #fff;
filter: alpha(opacity=20);
}.close:focus,
.close:hover
{
cursor: pointer;
text-decoration: none;
opacity: .5;
color: #000;
filter: alpha(opacity=50);
}button.close
{
padding: 0;
cursor: pointer;
border: 0;
background: 0 0;
-webkit-appearance: none;
}.modal-open
{
overflow: hidden;
}.modal
{
position: fixed;
z-index: 1050;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: none;
overflow: hidden;
outline: 0;
-webkit-overflow-scrolling: touch;
}.modal.fade .modal-dialog
{
-webkit-transition: -webkit-transform .3s ease-out;
-o-transition: -o-transform .3s ease-out;
transition: transform .3s ease-out;
-webkit-transform: translate(0,-25%);
-ms-transform: translate(0,-25%);
-o-transform: translate(0,-25%);
transform: translate(0,-25%);
}.modal.in .modal-dialog
{
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
-o-transform: translate(0,0);
transform: translate(0,0);
}.modal-open .modal
{
overflow-x: hidden;
overflow-y: auto;
}.modal-dialog
{
position: relative;
width: auto;
margin: 10px;
}.modal-content
{
position: relative;
border: 1px solid #999;
border: 1px solid rgba(0,0,0,.2);
border-radius: 6px;
outline: 0;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
-webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
box-shadow: 0 3px 9px rgba(0,0,0,.5);
}.modal-backdrop
{
position: fixed;
z-index: 1040;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: #000;
}.modal-backdrop.fade
{
opacity: 0;
filter: alpha(opacity=0);
}.modal-backdrop.in
{
opacity: .5;
filter: alpha(opacity=50);
}.modal-header
{
min-height: 16.43px;
padding: 15px;
border-bottom: 1px solid #e5e5e5;
}.modal-header .close
{
margin-top: -2px;
}.modal-title
{
line-height: 1.42857143;
margin: 0;
}.modal-body
{
position: relative;
padding: 15px;
}.modal-footer
{
padding: 15px;
text-align: right;
border-top: 1px solid #e5e5e5;
}.modal-footer .btn + .btn
{
margin-bottom: 0;
margin-left: 5px;
}.modal-footer .btn-group .btn + .btn
{
margin-left: -1px;
}.modal-footer .btn-block + .btn-block
{
margin-left: 0;
}.modal-scrollbar-measure
{
position: absolute;
top: -9999px;
overflow: scroll;
width: 50px;
height: 50px;
}@media (min-width:768px)
{
.modal-dialog
{
width: 600px;
margin: 30px auto;
}.modal-content
{
-webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
box-shadow: 0 5px 15px rgba(0,0,0,.5);
}.modal-sm
{
width: 300px;
}
}@media (min-width:992px)
{
.modal-lg
{
width: 900px;
}
}.btn-group-vertical > .btn-group:after,
.btn-group-vertical > .btn-group:before,
.btn-toolbar:after,
.btn-toolbar:before,
.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before
{
display: table;
content: ' ';
}.btn-group-vertical > .btn-group:after,
.btn-toolbar:after,
.clearfix:after,
.container-fluid:after,
.container:after,
.dl-horizontal dd:after,
.form-horizontal .form-group:after,
.modal-footer:after,
.nav:after,
.navbar-collapse:after,
.navbar-header:after,
.navbar:after,
.pager:after,
.panel-body:after,
.row:after
{
clear: both;
} | public/s9/css/avatar/bootstrap.min.css | .modal *
{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}/*:after,
:before
{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}*/
.pre-scrollable
{
overflow-y: scroll;
max-height: 340px;
}.container
{
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;
}@media (min-width:768px)
{
.container
{
width: 750px;
}
}@media (min-width:992px)
{
.container
{
width: 970px;
}
}@media (min-width:1200px)
{
.container
{
width: 1170px;
}
}.container-fluid
{
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;
}.row
{
margin-right: -15px;
margin-left: -15px;
}.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.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-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9
{
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9
{
float: left;
}.col-xs-12
{
width: 100%;
}.col-xs-11
{
width: 91.66666667%;
}.col-xs-10
{
width: 83.33333333%;
}.col-xs-9
{
width: 75%;
}.col-xs-8
{
width: 66.66666667%;
}.col-xs-7
{
width: 58.33333333%;
}.col-xs-6
{
width: 50%;
}.col-xs-5
{
width: 41.66666667%;
}.col-xs-4
{
width: 33.33333333%;
}.col-xs-3
{
width: 25%;
}.col-xs-2
{
width: 16.66666667%;
}.col-xs-1
{
width: 8.33333333%;
}.col-xs-pull-12
{
right: 100%;
}.col-xs-pull-11
{
right: 91.66666667%;
}.col-xs-pull-10
{
right: 83.33333333%;
}.col-xs-pull-9
{
right: 75%;
}.col-xs-pull-8
{
right: 66.66666667%;
}.col-xs-pull-7
{
right: 58.33333333%;
}.col-xs-pull-6
{
right: 50%;
}.col-xs-pull-5
{
right: 41.66666667%;
}.col-xs-pull-4
{
right: 33.33333333%;
}.col-xs-pull-3
{
right: 25%;
}.col-xs-pull-2
{
right: 16.66666667%;
}.col-xs-pull-1
{
right: 8.33333333%;
}.col-xs-pull-0
{
right: auto;
}.col-xs-push-12
{
left: 100%;
}.col-xs-push-11
{
left: 91.66666667%;
}.col-xs-push-10
{
left: 83.33333333%;
}.col-xs-push-9
{
left: 75%;
}.col-xs-push-8
{
left: 66.66666667%;
}.col-xs-push-7
{
left: 58.33333333%;
}.col-xs-push-6
{
left: 50%;
}.col-xs-push-5
{
left: 41.66666667%;
}.col-xs-push-4
{
left: 33.33333333%;
}.col-xs-push-3
{
left: 25%;
}.col-xs-push-2
{
left: 16.66666667%;
}.col-xs-push-1
{
left: 8.33333333%;
}.col-xs-push-0
{
left: auto;
}.col-xs-offset-12
{
margin-left: 100%;
}.col-xs-offset-11
{
margin-left: 91.66666667%;
}.col-xs-offset-10
{
margin-left: 83.33333333%;
}.col-xs-offset-9
{
margin-left: 75%;
}.col-xs-offset-8
{
margin-left: 66.66666667%;
}.col-xs-offset-7
{
margin-left: 58.33333333%;
}.col-xs-offset-6
{
margin-left: 50%;
}.col-xs-offset-5
{
margin-left: 41.66666667%;
}.col-xs-offset-4
{
margin-left: 33.33333333%;
}.col-xs-offset-3
{
margin-left: 25%;
}.col-xs-offset-2
{
margin-left: 16.66666667%;
}.col-xs-offset-1
{
margin-left: 8.33333333%;
}.col-xs-offset-0
{
margin-left: 0;
}@media (min-width:768px)
{
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9
{
float: left;
}.col-sm-12
{
width: 100%;
}.col-sm-11
{
width: 91.66666667%;
}.col-sm-10
{
width: 83.33333333%;
}.col-sm-9
{
width: 75%;
}.col-sm-8
{
width: 66.66666667%;
}.col-sm-7
{
width: 58.33333333%;
}.col-sm-6
{
width: 50%;
}.col-sm-5
{
width: 41.66666667%;
}.col-sm-4
{
width: 33.33333333%;
}.col-sm-3
{
width: 25%;
}.col-sm-2
{
width: 16.66666667%;
}.col-sm-1
{
width: 8.33333333%;
}.col-sm-pull-12
{
right: 100%;
}.col-sm-pull-11
{
right: 91.66666667%;
}.col-sm-pull-10
{
right: 83.33333333%;
}.col-sm-pull-9
{
right: 75%;
}.col-sm-pull-8
{
right: 66.66666667%;
}.col-sm-pull-7
{
right: 58.33333333%;
}.col-sm-pull-6
{
right: 50%;
}.col-sm-pull-5
{
right: 41.66666667%;
}.col-sm-pull-4
{
right: 33.33333333%;
}.col-sm-pull-3
{
right: 25%;
}.col-sm-pull-2
{
right: 16.66666667%;
}.col-sm-pull-1
{
right: 8.33333333%;
}.col-sm-pull-0
{
right: auto;
}.col-sm-push-12
{
left: 100%;
}.col-sm-push-11
{
left: 91.66666667%;
}.col-sm-push-10
{
left: 83.33333333%;
}.col-sm-push-9
{
left: 75%;
}.col-sm-push-8
{
left: 66.66666667%;
}.col-sm-push-7
{
left: 58.33333333%;
}.col-sm-push-6
{
left: 50%;
}.col-sm-push-5
{
left: 41.66666667%;
}.col-sm-push-4
{
left: 33.33333333%;
}.col-sm-push-3
{
left: 25%;
}.col-sm-push-2
{
left: 16.66666667%;
}.col-sm-push-1
{
left: 8.33333333%;
}.col-sm-push-0
{
left: auto;
}.col-sm-offset-12
{
margin-left: 100%;
}.col-sm-offset-11
{
margin-left: 91.66666667%;
}.col-sm-offset-10
{
margin-left: 83.33333333%;
}.col-sm-offset-9
{
margin-left: 75%;
}.col-sm-offset-8
{
margin-left: 66.66666667%;
}.col-sm-offset-7
{
margin-left: 58.33333333%;
}.col-sm-offset-6
{
margin-left: 50%;
}.col-sm-offset-5
{
margin-left: 41.66666667%;
}.col-sm-offset-4
{
margin-left: 33.33333333%;
}.col-sm-offset-3
{
margin-left: 25%;
}.col-sm-offset-2
{
margin-left: 16.66666667%;
}.col-sm-offset-1
{
margin-left: 8.33333333%;
}.col-sm-offset-0
{
margin-left: 0;
}
}@media (min-width:992px)
{
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9
{
float: left;
}.col-md-12
{
width: 100%;
}.col-md-11
{
width: 91.66666667%;
}.col-md-10
{
width: 83.33333333%;
}.col-md-9
{
width: 75%;
}.col-md-8
{
width: 66.66666667%;
}.col-md-7
{
width: 58.33333333%;
}.col-md-6
{
width: 50%;
}.col-md-5
{
width: 41.66666667%;
}.col-md-4
{
width: 33.33333333%;
}.col-md-3
{
width: 25%;
}.col-md-2
{
width: 16.66666667%;
}.col-md-1
{
width: 8.33333333%;
}.col-md-pull-12
{
right: 100%;
}.col-md-pull-11
{
right: 91.66666667%;
}.col-md-pull-10
{
right: 83.33333333%;
}.col-md-pull-9
{
right: 75%;
}.col-md-pull-8
{
right: 66.66666667%;
}.col-md-pull-7
{
right: 58.33333333%;
}.col-md-pull-6
{
right: 50%;
}.col-md-pull-5
{
right: 41.66666667%;
}.col-md-pull-4
{
right: 33.33333333%;
}.col-md-pull-3
{
right: 25%;
}.col-md-pull-2
{
right: 16.66666667%;
}.col-md-pull-1
{
right: 8.33333333%;
}.col-md-pull-0
{
right: auto;
}.col-md-push-12
{
left: 100%;
}.col-md-push-11
{
left: 91.66666667%;
}.col-md-push-10
{
left: 83.33333333%;
}.col-md-push-9
{
left: 75%;
}.col-md-push-8
{
left: 66.66666667%;
}.col-md-push-7
{
left: 58.33333333%;
}.col-md-push-6
{
left: 50%;
}.col-md-push-5
{
left: 41.66666667%;
}.col-md-push-4
{
left: 33.33333333%;
}.col-md-push-3
{
left: 25%;
}.col-md-push-2
{
left: 16.66666667%;
}.col-md-push-1
{
left: 8.33333333%;
}.col-md-push-0
{
left: auto;
}.col-md-offset-12
{
margin-left: 100%;
}.col-md-offset-11
{
margin-left: 91.66666667%;
}.col-md-offset-10
{
margin-left: 83.33333333%;
}.col-md-offset-9
{
margin-left: 75%;
}.col-md-offset-8
{
margin-left: 66.66666667%;
}.col-md-offset-7
{
margin-left: 58.33333333%;
}.col-md-offset-6
{
margin-left: 50%;
}.col-md-offset-5
{
margin-left: 41.66666667%;
}.col-md-offset-4
{
margin-left: 33.33333333%;
}.col-md-offset-3
{
margin-left: 25%;
}.col-md-offset-2
{
margin-left: 16.66666667%;
}.col-md-offset-1
{
margin-left: 8.33333333%;
}.col-md-offset-0
{
margin-left: 0;
}
}@media (min-width:1200px)
{
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9
{
float: left;
}.col-lg-12
{
width: 100%;
}.col-lg-11
{
width: 91.66666667%;
}.col-lg-10
{
width: 83.33333333%;
}.col-lg-9
{
width: 75%;
}.col-lg-8
{
width: 66.66666667%;
}.col-lg-7
{
width: 58.33333333%;
}.col-lg-6
{
width: 50%;
}.col-lg-5
{
width: 41.66666667%;
}.col-lg-4
{
width: 33.33333333%;
}.col-lg-3
{
width: 25%;
}.col-lg-2
{
width: 16.66666667%;
}.col-lg-1
{
width: 8.33333333%;
}.col-lg-pull-12
{
right: 100%;
}.col-lg-pull-11
{
right: 91.66666667%;
}.col-lg-pull-10
{
right: 83.33333333%;
}.col-lg-pull-9
{
right: 75%;
}.col-lg-pull-8
{
right: 66.66666667%;
}.col-lg-pull-7
{
right: 58.33333333%;
}.col-lg-pull-6
{
right: 50%;
}.col-lg-pull-5
{
right: 41.66666667%;
}.col-lg-pull-4
{
right: 33.33333333%;
}.col-lg-pull-3
{
right: 25%;
}.col-lg-pull-2
{
right: 16.66666667%;
}.col-lg-pull-1
{
right: 8.33333333%;
}.col-lg-pull-0
{
right: auto;
}.col-lg-push-12
{
left: 100%;
}.col-lg-push-11
{
left: 91.66666667%;
}.col-lg-push-10
{
left: 83.33333333%;
}.col-lg-push-9
{
left: 75%;
}.col-lg-push-8
{
left: 66.66666667%;
}.col-lg-push-7
{
left: 58.33333333%;
}.col-lg-push-6
{
left: 50%;
}.col-lg-push-5
{
left: 41.66666667%;
}.col-lg-push-4
{
left: 33.33333333%;
}.col-lg-push-3
{
left: 25%;
}.col-lg-push-2
{
left: 16.66666667%;
}.col-lg-push-1
{
left: 8.33333333%;
}.col-lg-push-0
{
left: auto;
}.col-lg-offset-12
{
margin-left: 100%;
}.col-lg-offset-11
{
margin-left: 91.66666667%;
}.col-lg-offset-10
{
margin-left: 83.33333333%;
}.col-lg-offset-9
{
margin-left: 75%;
}.col-lg-offset-8
{
margin-left: 66.66666667%;
}.col-lg-offset-7
{
margin-left: 58.33333333%;
}.col-lg-offset-6
{
margin-left: 50%;
}.col-lg-offset-5
{
margin-left: 41.66666667%;
}.col-lg-offset-4
{
margin-left: 33.33333333%;
}.col-lg-offset-3
{
margin-left: 25%;
}.col-lg-offset-2
{
margin-left: 16.66666667%;
}.col-lg-offset-1
{
margin-left: 8.33333333%;
}.col-lg-offset-0
{
margin-left: 0;
}
}
// .btn
// {
// font-size: 14px;
// font-weight: 400;
// line-height: 1.42857143;
// display: inline-block;
// margin-bottom: 0;
// padding: 6px 12px;
// cursor: pointer;
// -webkit-user-select: none;
// -moz-user-select: none;
// -ms-user-select: none;
// user-select: none;
// text-align: center;
// vertical-align: middle;
// white-space: nowrap;
// border: 1px solid transparent;
// border-radius: 4px;
// background-image: none;
// -ms-touch-action: manipulation;
// touch-action: manipulation;
// }.btn.active.focus,
// .btn.active:focus,
// .btn.focus,
// .btn:active.focus,
// .btn:active:focus,
// .btn:focus
// {
// outline: thin dotted;
// outline: 5px auto -webkit-focus-ring-color;
// outline-offset: -2px;
// }.btn.focus,
// .btn:focus,
// .btn:hover
// {
// text-decoration: none;
// color: #333;
// }.btn.active,
// .btn:active
// {
// outline: 0;
// background-image: none;
// -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
// box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
// }.btn.disabled,
// .btn[disabled],
// fieldset[disabled] .btn
// {
// cursor: not-allowed;
// opacity: .65;
// -webkit-box-shadow: none;
// box-shadow: none;
// filter: alpha(opacity=65);
// }a.btn.disabled,
// fieldset[disabled] a.btn
// {
// pointer-events: none;
// }.btn-default
// {
// color: #333;
// border-color: #ccc;
// background-color: #fff;
// }.btn-default.focus,
// .btn-default:focus
// {
// color: #333;
// border-color: #8c8c8c;
// background-color: #e6e6e6;
// }.btn-default:hover
// {
// color: #333;
// border-color: #adadad;
// background-color: #e6e6e6;
// }.btn-default.active,
// .btn-default:active,
// .open > .dropdown-toggle.btn-default
// {
// color: #333;
// border-color: #adadad;
// background-color: #e6e6e6;
// }.btn-default.active.focus,
// .btn-default.active:focus,
// .btn-default.active:hover,
// .btn-default:active.focus,
// .btn-default:active:focus,
// .btn-default:active:hover,
// .open > .dropdown-toggle.btn-default.focus,
// .open > .dropdown-toggle.btn-default:focus,
// .open > .dropdown-toggle.btn-default:hover
// {
// color: #333;
// border-color: #8c8c8c;
// background-color: #d4d4d4;
// }.btn-default.active,
// .btn-default:active,
// .open > .dropdown-toggle.btn-default
// {
// background-image: none;
// }.btn-default.disabled,
// .btn-default.disabled.active,
// .btn-default.disabled.focus,
// .btn-default.disabled:active,
// .btn-default.disabled:focus,
// .btn-default.disabled:hover,
// .btn-default[disabled],
// .btn-default[disabled].active,
// .btn-default[disabled].focus,
// .btn-default[disabled]:active,
// .btn-default[disabled]:focus,
// .btn-default[disabled]:hover,
// {
// border-color: #ccc;
// background-color: #fff;
// }.btn-default .badge
// {
// color: #fff;
// background-color: #333;
// }.btn-primary
// {
// color: #fff;
// border-color: #2e6da4;
// background-color: #337ab7;
// }.btn-primary.focus,
// .btn-primary:focus
// {
// color: #fff;
// border-color: #122b40;
// background-color: #286090;
// }.btn-primary:hover
// {
// color: #fff;
// border-color: #204d74;
// background-color: #286090;
// }.btn-primary.active,
// .btn-primary:active,
// .open > .dropdown-toggle.btn-primary
// {
// color: #fff;
// border-color: #204d74;
// background-color: #286090;
// }.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
// {
// color: #fff;
// border-color: #122b40;
// background-color: #204d74;
// }.btn-primary.active,
// .btn-primary:active,
// .open > .dropdown-toggle.btn-primary
// {
// background-image: none;
// }.btn-primary.disabled,
// .btn-primary.disabled.active,
// .btn-primary.disabled.focus,
// .btn-primary.disabled:active,
// .btn-primary.disabled:focus,
// .btn-primary.disabled:hover,
// .btn-primary[disabled],
// .btn-primary[disabled].active,
// .btn-primary[disabled].focus,
// .btn-primary[disabled]:active,
// .btn-primary[disabled]:focus,
// .btn-primary[disabled]:hover,
// fieldset[disabled] .btn-primary,
// fieldset[disabled] .btn-primary.active,
// fieldset[disabled] .btn-primary.focus,
// fieldset[disabled] .btn-primary:active,
// fieldset[disabled] .btn-primary:focus,
// fieldset[disabled] .btn-primary:hover
// {
// border-color: #2e6da4;
// background-color: #337ab7;
// }.btn-primary .badge
// {
// color: #337ab7;
// background-color: #fff;
// }.btn-success
// {
// color: #fff;
// border-color: #3499da;
// background-color: #3499da;
// }.btn-success.focus,
// .btn-success:focus
// {
// color: #fff;
// border-color:#3691cb;
// background-color: #3691cb;
// }.btn-success:hover
// {
// color: #fff;
// border-color: #3691cb;
// background-color: #3691cb;
// }.btn-success.active,
// .btn-success:active,
// .open > .dropdown-toggle.btn-success
// {
// color: #fff;
// border-color: #3691cb;
// background-color: #3691cb;
// }.btn-success.active.focus,
// .btn-success.active:focus,
// .btn-success.active:hover,
// .btn-success:active.focus,
// .btn-success:active:focus,
// .btn-success:active:hover,
// .open > .dropdown-toggle.btn-success.focus,
// .open > .dropdown-toggle.btn-success:focus,
// .open > .dropdown-toggle.btn-success:hover
// {
// color: #fff;
// border-color: #3691cb;
// background-color:#3691cb;
// }.btn-success.active,
// .btn-success:active,
// .open > .dropdown-toggle.btn-success
// {
// background-image: none;
// }.btn-success.disabled,
// .btn-success.disabled.active,
// .btn-success.disabled.focus,
// .btn-success.disabled:active,
// .btn-success.disabled:focus,
// .btn-success.disabled:hover,
// .btn-success[disabled],
// .btn-success[disabled].active,
// .btn-success[disabled].focus,
// .btn-success[disabled]:active,
// .btn-success[disabled]:focus,
// .btn-success[disabled]:hover,
// fieldset[disabled] .btn-success,
// fieldset[disabled] .btn-success.active,
// fieldset[disabled] .btn-success.focus,
// fieldset[disabled] .btn-success:active,
// fieldset[disabled] .btn-success:focus,
// fieldset[disabled] .btn-success:hover
// {
// border-color: #4cae4c;
// background-color: #5cb85c;
// }.btn-success .badge
// {
// color: #5cb85c;
// background-color: #fff;
// }.btn-info
// {
// color: #fff;
// border-color: #46b8da;
// background-color: #5bc0de;
// }.btn-info.focus,
// .btn-info:focus
// {
// color: #fff;
// border-color: #1b6d85;
// background-color: #31b0d5;
// }.btn-info:hover
// {
// color: #fff;
// border-color: #269abc;
// background-color: #31b0d5;
// }.btn-info.active,
// .btn-info:active,
// .open > .dropdown-toggle.btn-info
// {
// color: #fff;
// border-color: #269abc;
// background-color: #31b0d5;
// }.btn-info.active.focus,
// .btn-info.active:focus,
// .btn-info.active:hover,
// .btn-info:active.focus,
// .btn-info:active:focus,
// .btn-info:active:hover,
// .open > .dropdown-toggle.btn-info.focus,
// .open > .dropdown-toggle.btn-info:focus,
// .open > .dropdown-toggle.btn-info:hover
// {
// color: #fff;
// border-color: #1b6d85;
// background-color: #269abc;
// }.btn-info.active,
// .btn-info:active,
// .open > .dropdown-toggle.btn-info
// {
// background-image: none;
// }.btn-info.disabled,
// .btn-info.disabled.active,
// .btn-info.disabled.focus,
// .btn-info.disabled:active,
// .btn-info.disabled:focus,
// .btn-info.disabled:hover,
// .btn-info[disabled],
// .btn-info[disabled].active,
// .btn-info[disabled].focus,
// .btn-info[disabled]:active,
// .btn-info[disabled]:focus,
// .btn-info[disabled]:hover,
// fieldset[disabled] .btn-info,
// fieldset[disabled] .btn-info.active,
// fieldset[disabled] .btn-info.focus,
// fieldset[disabled] .btn-info:active,
// fieldset[disabled] .btn-info:focus,
// fieldset[disabled] .btn-info:hover
// {
// border-color: #46b8da;
// background-color: #5bc0de;
// }.btn-info .badge
// {
// color: #5bc0de;
// background-color: #fff;
// }.btn-warning
// {
// color: #fff;
// border-color: #eea236;
// background-color: #f0ad4e;
// }.btn-warning.focus,
// .btn-warning:focus
// {
// color: #fff;
// border-color: #985f0d;
// background-color: #ec971f;
// }.btn-warning:hover
// {
// color: #fff;
// border-color: #d58512;
// background-color: #ec971f;
// }.btn-warning.active,
// .btn-warning:active,
// .open > .dropdown-toggle.btn-warning
// {
// color: #fff;
// border-color: #d58512;
// background-color: #ec971f;
// }.btn-warning.active.focus,
// .btn-warning.active:focus,
// .btn-warning.active:hover,
// .btn-warning:active.focus,
// .btn-warning:active:focus,
// .btn-warning:active:hover,
// .open > .dropdown-toggle.btn-warning.focus,
// .open > .dropdown-toggle.btn-warning:focus,
// .open > .dropdown-toggle.btn-warning:hover
// {
// color: #fff;
// border-color: #985f0d;
// background-color: #d58512;
// }.btn-warning.active,
// .btn-warning:active,
// .open > .dropdown-toggle.btn-warning
// {
// background-image: none;
// }.btn-warning.disabled,
// .btn-warning.disabled.active,
// .btn-warning.disabled.focus,
// .btn-warning.disabled:active,
// .btn-warning.disabled:focus,
// .btn-warning.disabled:hover,
// .btn-warning[disabled],
// .btn-warning[disabled].active,
// .btn-warning[disabled].focus,
// .btn-warning[disabled]:active,
// .btn-warning[disabled]:focus,
// .btn-warning[disabled]:hover,
// fieldset[disabled] .btn-warning,
// fieldset[disabled] .btn-warning.active,
// fieldset[disabled] .btn-warning.focus,
// fieldset[disabled] .btn-warning:active,
// fieldset[disabled] .btn-warning:focus,
// fieldset[disabled] .btn-warning:hover
// {
// border-color: #eea236;
// background-color: #f0ad4e;
// }.btn-warning .badge
// {
// color: #f0ad4e;
// background-color: #fff;
// }.btn-danger
// {
// color: #fff;
// border-color: #d43f3a;
// background-color: #d9534f;
// }.btn-danger.focus,
// .btn-danger:focus
// {
// color: #fff;
// border-color: #761c19;
// background-color: #c9302c;
// }.btn-danger:hover
// {
// color: #fff;
// border-color: #ac2925;
// background-color: #c9302c;
// }.btn-danger.active,
// .btn-danger:active,
// .open > .dropdown-toggle.btn-danger
// {
// color: #fff;
// border-color: #ac2925;
// background-color: #c9302c;
// }.btn-danger.active.focus,
// .btn-danger.active:focus,
// .btn-danger.active:hover,
// .btn-danger:active.focus,
// .btn-danger:active:focus,
// .btn-danger:active:hover,
// .open > .dropdown-toggle.btn-danger.focus,
// .open > .dropdown-toggle.btn-danger:focus,
// .open > .dropdown-toggle.btn-danger:hover
// {
// color: #fff;
// border-color: #761c19;
// background-color: #ac2925;
// }.btn-danger.active,
// .btn-danger:active,
// .open > .dropdown-toggle.btn-danger
// {
// background-image: none;
// }.btn-danger.disabled,
// .btn-danger.disabled.active,
// .btn-danger.disabled.focus,
// .btn-danger.disabled:active,
// .btn-danger.disabled:focus,
// .btn-danger.disabled:hover,
// .btn-danger[disabled],
// .btn-danger[disabled].active,
// .btn-danger[disabled].focus,
// .btn-danger[disabled]:active,
// .btn-danger[disabled]:focus,
// .btn-danger[disabled]:hover,
// fieldset[disabled] .btn-danger,
// fieldset[disabled] .btn-danger.active,
// fieldset[disabled] .btn-danger.focus,
// fieldset[disabled] .btn-danger:active,
// fieldset[disabled] .btn-danger:focus,
// fieldset[disabled] .btn-danger:hover
// {
// border-color: #d43f3a;
// background-color: #d9534f;
// }.btn-danger .badge
// {
// color: #d9534f;
// background-color: #fff;
// }.btn-link
// {
// font-weight: 400;
// color: #337ab7;
// border-radius: 0;
// }.btn-link,
// .btn-link.active,
// .btn-link:active,
// .btn-link[disabled],
// fieldset[disabled] .btn-link
// {
// background-color: transparent;
// -webkit-box-shadow: none;
// box-shadow: none;
// }.btn-link,
// .btn-link:active,
// .btn-link:focus,
// .btn-link:hover
// {
// border-color: transparent;
// }.btn-link:focus,
// .btn-link:hover
// {
// text-decoration: underline;
// color: #23527c;
// background-color: transparent;
// }.btn-link[disabled]:focus,
// .btn-link[disabled]:hover,
// fieldset[disabled] .btn-link:focus,
// fieldset[disabled] .btn-link:hover
// {
// text-decoration: none;
// color: #777;
// }.btn-group-lg > .btn,
// .btn-lg
// {
// font-size: 18px;
// line-height: 1.3333333;
// padding: 10px 16px;
// border-radius: 6px;
// }.btn-group-sm > .btn,
// .btn-sm
// {
// font-size: 12px;
// line-height: 1.5;
// padding: 5px 10px;
// border-radius: 3px;
// }.btn-group-xs > .btn,
// .btn-xs
// {
// font-size: 12px;
// line-height: 1.5;
// padding: 1px 5px;
// border-radius: 3px;
// }.btn-block
// {
// display: block;
// width: 100%;
// }.btn-block + .btn-block
// {
// margin-top: 5px;
// }input[type=button].btn-block,
// input[type=reset].btn-block,
// input[type=submit].btn-block
// {
// width: 100%;
// }
.fade
{
-webkit-transition: opacity .15s linear;
-o-transition: opacity .15s linear;
transition: opacity .15s linear;
opacity: 0;
}.fade.in
{
opacity: 1;
}.collapse
{
display: none;
}.collapse.in
{
display: block;
}tr.collapse.in
{
display: table-row;
}tbody.collapse.in
{
display: table-row-group;
}.collapsing
{
position: relative;
overflow: hidden;
height: 0;
-webkit-transition-timing-function: ease;
-o-transition-timing-function: ease;
transition-timing-function: ease;
-webkit-transition-duration: .35s;
-o-transition-duration: .35s;
transition-duration: .35s;
-webkit-transition-property: height,visibility;
-o-transition-property: height,visibility;
transition-property: height,visibility;
}.caret
{
display: inline-block;
width: 0;
height: 0;
margin-left: 2px;
vertical-align: middle;
border-top: 4px dashed;
border-top: 4px solid\9;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
}.dropdown,
.dropup
{
position: relative;
}.dropdown-toggle:focus
{
outline: 0;
}.dropdown-menu
{
font-size: 14px;
position: absolute;
z-index: 1000;
top: 100%;
left: 0;
display: none;
float: left;
min-width: 160px;
margin: 2px 0 0;
padding: 5px 0;
list-style: none;
text-align: left;
border: 1px solid #ccc;
border: 1px solid rgba(0,0,0,.15);
border-radius: 4px;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
box-shadow: 0 6px 12px rgba(0,0,0,.175);
}.dropdown-menu.pull-right
{
right: 0;
left: auto;
}.dropdown-menu .divider
{
overflow: hidden;
height: 1px;
margin: 9px 0;
background-color: #e5e5e5;
}.dropdown-menu > li > a
{
font-weight: 400;
line-height: 1.42857143;
display: block;
clear: both;
padding: 3px 20px;
white-space: nowrap;
color: #333;
}.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover
{
text-decoration: none;
color: #262626;
background-color: #f5f5f5;
}.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover
{
text-decoration: none;
color: #fff;
outline: 0;
background-color: #337ab7;
}.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > a:hover
{
color: #777;
}.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > a:hover
{
cursor: not-allowed;
text-decoration: none;
background-color: transparent;
background-image: none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)
}.open > .dropdown-menu
{
display: block;
}.open > a
{
outline: 0;
}.dropdown-menu-right
{
right: 0;
left: auto;
}.dropdown-menu-left
{
right: auto;
left: 0;
}.dropdown-header
{
font-size: 12px;
line-height: 1.42857143;
display: block;
padding: 3px 20px;
white-space: nowrap;
color: #777;
}.dropdown-backdrop
{
position: fixed;
z-index: 990;
top: 0;
right: 0;
bottom: 0;
left: 0;
}.pull-right > .dropdown-menu
{
right: 0;
left: auto;
}.dropup .caret,
.navbar-fixed-bottom .dropdown .caret
{
content: '';
border-top: 0;
border-bottom: 4px dashed;
border-bottom: 4px solid\9;
}.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu
{
top: auto;
bottom: 100%;
margin-bottom: 2px;
}@media (min-width:768px)
{
.navbar-right .dropdown-menu
{
right: 0;
left: auto;
}.navbar-right .dropdown-menu-left
{
right: auto;
left: 0;
}
}.btn-group,
.btn-group-vertical
{
position: relative;
display: inline-block;
vertical-align: middle;
}.btn-group-vertical > .btn,
.btn-group > .btn
{
position: relative;
float: left;
}.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:hover,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover
{
z-index: 2;
}.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group
{
margin-left: -1px;
}.btn-toolbar
{
margin-left: -5px;
}.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group
{
float: left;
}.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group
{
margin-left: 5px;
}.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle)
{
border-radius: 0;
}.btn-group > .btn:first-child
{
margin-left: 0;
}.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle)
{
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child)
{
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}.btn-group > .btn-group
{
float: left;
}.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn
{
border-radius: 0;
}.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle
{
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child
{
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle
{
outline: 0;
}.btn-group > .btn + .dropdown-toggle
{
padding-right: 8px;
padding-left: 8px;
}.btn-group > .btn-lg + .dropdown-toggle
{
padding-right: 12px;
padding-left: 12px;
}.btn-group.open .dropdown-toggle
{
-webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}.btn-group.open .dropdown-toggle.btn-link
{
-webkit-box-shadow: none;
box-shadow: none;
}.btn .caret
{
margin-left: 0;
}.btn-lg .caret
{
border-width: 5px 5px 0;
border-bottom-width: 0;
}.dropup .btn-lg .caret
{
border-width: 0 5px 5px;
}.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn
{
display: block;
float: none;
width: 100%;
max-width: 100%;
}.btn-group-vertical > .btn-group > .btn
{
float: none;
}.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group
{
margin-top: -1px;
margin-left: 0;
}.btn-group-vertical > .btn:not(:first-child):not(:last-child)
{
border-radius: 0;
}.btn-group-vertical > .btn:first-child:not(:last-child)
{
border-top-right-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}.btn-group-vertical > .btn:last-child:not(:first-child)
{
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-left-radius: 4px;
}.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn
{
border-radius: 0;
}.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle
{
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child
{
border-top-left-radius: 0;
border-top-right-radius: 0;
}.btn-group-justified
{
display: table;
width: 100%;
table-layout: fixed;
border-collapse: separate;
}.btn-group-justified > .btn,
.btn-group-justified > .btn-group
{
display: table-cell;
float: none;
width: 1%;
}.btn-group-justified > .btn-group .btn
{
width: 100%;
}.btn-group-justified > .btn-group .dropdown-menu
{
left: auto;
}[data-toggle=buttons] > .btn input[type=checkbox],
[data-toggle=buttons] > .btn input[type=radio],
[data-toggle=buttons] > .btn-group > .btn input[type=checkbox],
[data-toggle=buttons] > .btn-group > .btn input[type=radio]
{
position: absolute;
clip: rect(0,0,0,0);
pointer-events: none;
}.input-group
{
position: relative;
display: table;
border-collapse: separate;
}.input-group[class*=col-]
{
float: none;
padding-right: 0;
padding-left: 0;
}.input-group .form-control
{
position: relative;
z-index: 2;
float: left;
width: 100%;
margin-bottom: 0;
}.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn
{
font-size: 18px;
line-height: 1.3333333;
height: 46px;
padding: 10px 16px;
border-radius: 6px;
}select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn
{
line-height: 46px;
height: 46px;
}select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn,
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn
{
height: auto;
}.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn
{
font-size: 12px;
line-height: 1.5;
height: 30px;
padding: 5px 10px;
border-radius: 3px;
}select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn
{
line-height: 30px;
height: 30px;
}select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn,
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn
{
height: auto;
}.input-group .form-control,
.input-group-addon,
.input-group-btn
{
display: table-cell;
}.input-group .form-control:not(:first-child):not(:last-child),
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child)
{
border-radius: 0;
}.input-group-addon,
.input-group-btn
{
width: 1%;
vertical-align: middle;
white-space: nowrap;
}.input-group-addon
{
font-size: 14px;
font-weight: 400;
line-height: 1;
padding: 6px 12px;
text-align: center;
color: #555;
border: 1px solid #ccc;
border-radius: 4px;
background-color: #eee;
}.input-group-addon.input-sm
{
font-size: 12px;
padding: 5px 10px;
border-radius: 3px;
}.input-group-addon.input-lg
{
font-size: 18px;
padding: 10px 16px;
border-radius: 6px;
}.input-group-addon input[type=checkbox],
.input-group-addon input[type=radio]
{
margin-top: 0;
}.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle)
{
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}.input-group-addon:first-child
{
border-right: 0;
}.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle
{
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}.input-group-addon:last-child
{
border-left: 0;
}.input-group-btn
{
font-size: 0;
position: relative;
white-space: nowrap;
}.input-group-btn > .btn
{
position: relative;
}.input-group-btn > .btn + .btn
{
margin-left: -1px;
}.input-group-btn > .btn:active,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:hover
{
z-index: 2;
}.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group
{
margin-right: -1px;
}.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group
{
z-index: 2;
margin-left: -1px;
}.close
{
font-size: 21px;
font-weight: 700;
line-height: 1;
float: right;
opacity: .2;
color: #000;
text-shadow: 0 1px 0 #fff;
filter: alpha(opacity=20);
}.close:focus,
.close:hover
{
cursor: pointer;
text-decoration: none;
opacity: .5;
color: #000;
filter: alpha(opacity=50);
}button.close
{
padding: 0;
cursor: pointer;
border: 0;
background: 0 0;
-webkit-appearance: none;
}.modal-open
{
overflow: hidden;
}.modal
{
position: fixed;
z-index: 1050;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: none;
overflow: hidden;
outline: 0;
-webkit-overflow-scrolling: touch;
}.modal.fade .modal-dialog
{
-webkit-transition: -webkit-transform .3s ease-out;
-o-transition: -o-transform .3s ease-out;
transition: transform .3s ease-out;
-webkit-transform: translate(0,-25%);
-ms-transform: translate(0,-25%);
-o-transform: translate(0,-25%);
transform: translate(0,-25%);
}.modal.in .modal-dialog
{
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
-o-transform: translate(0,0);
transform: translate(0,0);
}.modal-open .modal
{
overflow-x: hidden;
overflow-y: auto;
}.modal-dialog
{
position: relative;
width: auto;
margin: 10px;
}.modal-content
{
position: relative;
border: 1px solid #999;
border: 1px solid rgba(0,0,0,.2);
border-radius: 6px;
outline: 0;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
-webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
box-shadow: 0 3px 9px rgba(0,0,0,.5);
}.modal-backdrop
{
position: fixed;
z-index: 1040;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: #000;
}.modal-backdrop.fade
{
opacity: 0;
filter: alpha(opacity=0);
}.modal-backdrop.in
{
opacity: .5;
filter: alpha(opacity=50);
}.modal-header
{
min-height: 16.43px;
padding: 15px;
border-bottom: 1px solid #e5e5e5;
}.modal-header .close
{
margin-top: -2px;
}.modal-title
{
line-height: 1.42857143;
margin: 0;
}.modal-body
{
position: relative;
padding: 15px;
}.modal-footer
{
padding: 15px;
text-align: right;
border-top: 1px solid #e5e5e5;
}.modal-footer .btn + .btn
{
margin-bottom: 0;
margin-left: 5px;
}.modal-footer .btn-group .btn + .btn
{
margin-left: -1px;
}.modal-footer .btn-block + .btn-block
{
margin-left: 0;
}.modal-scrollbar-measure
{
position: absolute;
top: -9999px;
overflow: scroll;
width: 50px;
height: 50px;
}@media (min-width:768px)
{
.modal-dialog
{
width: 600px;
margin: 30px auto;
}.modal-content
{
-webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
box-shadow: 0 5px 15px rgba(0,0,0,.5);
}.modal-sm
{
width: 300px;
}
}@media (min-width:992px)
{
.modal-lg
{
width: 900px;
}
}.btn-group-vertical > .btn-group:after,
.btn-group-vertical > .btn-group:before,
.btn-toolbar:after,
.btn-toolbar:before,
.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before
{
display: table;
content: ' ';
}.btn-group-vertical > .btn-group:after,
.btn-toolbar:after,
.clearfix:after,
.container-fluid:after,
.container:after,
.dl-horizontal dd:after,
.form-horizontal .form-group:after,
.modal-footer:after,
.nav:after,
.navbar-collapse:after,
.navbar-header:after,
.navbar:after,
.pager:after,
.panel-body:after,
.row:after
{
clear: both;
} | 0.317109 | 0.034947 |
::placeholder,
.input::placeholder,
.textarea::placeholder {
color: rgba(108, 49, 245, 0.9);
transition: all 100ms ease-in-out;
}
::placeholder,
.input:hover::placeholder,
.input:focus::placeholder,
.input:active::placeholder,
.textarea::placeholder {
color: rgba(108, 49, 245, 0.4);
}
:focus {
outline: rgba(147, 106, 241, 1) dashed 1px;
}
* {
--flashyGradient: linear-gradient(40deg, #ff62cc 10%, #f7fe0c 40%, #2af787 60%, #00f0d0 80%);
}
html {
height: 100%;
}
body {
height: 100%;
}
html,
body,
table {
scroll-behavior: smooth;
}
ul.pool-list {
@apply ml-4 mt-2 list-disc list-outside text-xxs sm:text-xs text-accent-1;
}
@screen sm {
ul.pool-list {
@apply ml-8;
}
}
@screen lg {
ul.pool-list {
@apply ml-0;
}
}
p {
@apply mb-2;
}
#video-player_popover_container {
pointer-events: none;
}
body.wistia_popover_mode #video-player_popover_container {
pointer-events: auto;
}
body.wistia_popover_mode #video-player_popover_container {
overflow: hidden;
}
.wistia_popover_mode {
overflow: hidden;
}
.wistia_popover_overlay {
outline: 0 !important;
width: 100% !important;
}
.wistia_popover_embed {
border-image-width: none !important;
top: 10vh !important;
box-shadow: none !important;
left: 0 !important;
right: 0 !important;
margin-left: auto !important;
margin-right: auto !important;
outline: 0 !important;
}
.w-video-wrapper {
background: #200546 !important;
}
.wistia_placebo_close_button {
display: none;
}
input:-internal-autofill-previewed,
input:-internal-autofill-selected,
textarea:-internal-autofill-previewed,
textarea:-internal-autofill-selected,
select:-internal-autofill-previewed,
select:-internal-autofill-selected {
background-color: white !important;
}
::selection {
background-color: #79ffe1;
color: var(--color-text-inverse);
}
hr {
border: 0;
height: 0;
border-top: 3px solid rgba(60, 8, 165, 0.3);
border-bottom: none;
background: transparent;
margin: 20px auto;
width: 90%;
}
a,
button {
@apply text-highlight-3;
transition: all 75ms ease-in-out;
}
a:hover,
button:hover {
@apply text-inverse;
}
label {
@apply block cursor-pointer mt-6 mb-1 text-left;
}
form:after {
content: '';
display: table;
clear: both;
}
button {
@apply outline-none;
}
button:focus {
@apply outline-none;
}
button[disabled] {
@apply opacity-20 cursor-not-allowed !important;
}
input:not([type='submit'])[disabled],
textarea[disabled] {
@apply border-transparent opacity-50 cursor-not-allowed !important;
}
input[type='submit'][disabled] {
@apply border-transparent cursor-not-allowed;
}
input:not([type='submit'])[readOnly] {
@apply cursor-not-allowed !important;
}
input[type='submit'][disabled] {
@apply border-transparent cursor-not-allowed;
}
.is-etherscan-arrow {
height: 1em;
position: relative;
top: -2px;
width: 1em;
}
@keyframes gradientBG {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.text-flashy {
background: var(--flashyGradient);
background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 200% auto;
animation: cycleBackgroundPos 6000ms infinite steps(100);
}
@keyframes cycleBackgroundPos {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.footer--container {
background-color: #0c021b;
}
.footer {
}
/* .footer a {
@apply text-primary border-0;
}
.footer a:hover {
@apply text-secondary;
} */
.footer .img-link:hover {
@apply border-0 no-underline;
}
.footer--pool-logo-container {
width: 133px;
}
.nav--pool-logo-container {
position: relative;
left: -6px;
}
@screen sm {
.nav--pool-logo-container {
left: 0;
}
}
.pool-logo {
height: 52px;
position: relative;
z-index: 1;
width: 133px;
}
.pool-logo:hover {
background-color: transparent;
}
.banner-text {
font-size: 2rem;
line-height: 1;
margin-bottom: 1rem;
margin-top: 0;
}
@screen xs {
.banner-text {
font-size: calc(2vw + 30px);
line-height: 1.2;
margin-top: 1rem;
margin-bottom: 4rem;
}
}
@screen sm {
.banner-text {
margin-top: 1rem;
margin-bottom: 4rem;
}
}
@screen lg {
.banner-text {
margin-top: 0.75rem;
}
}
.banner-text--small {
@apply pt-4;
font-size: calc(1.5vw + 13px) !important;
}
.button-scale:hover,
.button-scale:focus,
.button-scale:active {
transform: scale(1.02) translateY(-3px);
}
.mobile-nav-background {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100vw;
background: #190742;
z-index: 40;
}
.hamburger-button {
@apply shadow-4xl;
display: flex;
align-items: center;
justify-items: center;
outline: none;
border: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
cursor: pointer;
position: absolute;
bottom: 33px;
left: calc(100vw - 85px);
width: 50px;
height: 50px;
border-radius: 50%;
/* background: transparent; */
z-index: 50;
}
.hamburger-button > svg {
margin: auto;
}
ul.nav-mobile-list,
li.nav-mobile-listitem {
margin: 0;
padding: 0;
z-index: 50;
}
ul.nav-mobile-list {
padding: 25px;
position: absolute;
top: 100px;
width: 230px;
}
li.nav-mobile-listitem {
list-style: none;
margin-bottom: 20px;
display: flex;
align-items: center;
cursor: pointer;
}
.hero-text-left {
top: -8px;
}
@screen sm {
.hero-text-left {
width: 300px;
}
}
@screen lg {
.hero-text-left {
width: 420px;
}
}
.bg-vid-holo {
background-image: url('/vid@2x.png');
background-size: contain;
background-position: top center;
background-repeat: no-repeat;
padding-bottom: 56.25%; /* 16:9 */
height: 0;
overflow: hidden;
position: relative;
width: 100%;
}
@screen sm {
.bg-vid-holo {
background-position: top right;
width: 430px;
}
}
@screen lg {
.bg-vid-holo {
width: 556px;
}
}
.bg-vid-holo--inner {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.bg-vid-circle {
@apply shadow-elevation;
background: rgba(76, 36, 159, 0.8);
height: 104px;
width: 104px;
}
.bg-vid-holo:hover .bg-vid-circle {
background: rgba(53, 240, 208, 0.8);
}
.bg-vid-tri {
background-image: url('/bg-vid-tri.svg');
background-size: cover;
background-repeat: no-repeat;
margin-right: -6px;
height: 42px;
width: 35px;
}
.bg-how-art-waves {
background-image: url('/bg-how-art-waves.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
width: 100%;
}
@screen sm {
.bg-how-art-waves {
min-height: 800px;
}
}
.bg-overlay {
background-image: linear-gradient(40deg, #4c249f 30%, #9c48ba 100%) !important;
}
.interactable-chip {
@apply rounded-lg flex;
min-height: 50px;
min-width: 80px;
}
.interactable-chip-main-bg {
@apply bg-secondary hover:bg-highlight-3;
}
.interactable-chip-alt-bg {
@apply bg-default hover:bg-highlight-3;
}
@screen xs {
.interactable-chip {
min-height: 70px;
min-width: 100px;
}
}
@screen sm {
.interactable-chip {
min-height: 70px;
min-width: 150px;
}
}
@screen lg {
.interactable-chip {
min-height: 90px;
min-width: 180px;
}
}
.collapsible-target:hover * {
color: var(--color-text-white);
}
.collapsible-content {
overflow: hidden;
transition: max-height 100ms ease-out;
max-height: 0;
}
.collapsible-content--active {
max-height: 1000px;
transition: max-height 500ms ease-in;
height: auto;
}
.discord-button:hover path {
fill: var(--color-bg-blue-2);
}
.community-button:hover path {
stroke: var(--color-text-highlight-1);
}
.defi-pulse-image {
max-width: 280px;
}
@screen xs {
.defi-pulse-image {
max-width: 320px;
}
}
@screen sm {
.defi-pulse-image {
max-width: 400px;
}
}
.purple-pink-gradient-animation {
@apply bg-body;
}
.purple-pink-gradient-animation:after {
--borderFlashyWidth: 2px !important;
animation-duration: 4000ms !important;
background-image: linear-gradient(40deg, #4c249f 30%, #9c48ba 81%) !important;
}
.bg-developers {
background-image: linear-gradient(180deg, #32025e 0%, #150429 50%) !important;
}
.bg-developers-art-waves {
background-image: url('/bg-developers-art-waves@2x.png');
background-size: cover;
background-repeat: no-repeat;
background-position: center bottom;
min-height: 300px;
width: 100%;
}
@screen xs {
.bg-developers-art-waves {
min-height: 400px;
}
}
@screen sm {
.bg-developers-art-waves {
min-height: 800px;
}
}
.bg-holographic {
background-image: url('/bg-holographic@2x.png');
background-size: cover;
width: 100%;
} | assets/styles/pool.css | ::placeholder,
.input::placeholder,
.textarea::placeholder {
color: rgba(108, 49, 245, 0.9);
transition: all 100ms ease-in-out;
}
::placeholder,
.input:hover::placeholder,
.input:focus::placeholder,
.input:active::placeholder,
.textarea::placeholder {
color: rgba(108, 49, 245, 0.4);
}
:focus {
outline: rgba(147, 106, 241, 1) dashed 1px;
}
* {
--flashyGradient: linear-gradient(40deg, #ff62cc 10%, #f7fe0c 40%, #2af787 60%, #00f0d0 80%);
}
html {
height: 100%;
}
body {
height: 100%;
}
html,
body,
table {
scroll-behavior: smooth;
}
ul.pool-list {
@apply ml-4 mt-2 list-disc list-outside text-xxs sm:text-xs text-accent-1;
}
@screen sm {
ul.pool-list {
@apply ml-8;
}
}
@screen lg {
ul.pool-list {
@apply ml-0;
}
}
p {
@apply mb-2;
}
#video-player_popover_container {
pointer-events: none;
}
body.wistia_popover_mode #video-player_popover_container {
pointer-events: auto;
}
body.wistia_popover_mode #video-player_popover_container {
overflow: hidden;
}
.wistia_popover_mode {
overflow: hidden;
}
.wistia_popover_overlay {
outline: 0 !important;
width: 100% !important;
}
.wistia_popover_embed {
border-image-width: none !important;
top: 10vh !important;
box-shadow: none !important;
left: 0 !important;
right: 0 !important;
margin-left: auto !important;
margin-right: auto !important;
outline: 0 !important;
}
.w-video-wrapper {
background: #200546 !important;
}
.wistia_placebo_close_button {
display: none;
}
input:-internal-autofill-previewed,
input:-internal-autofill-selected,
textarea:-internal-autofill-previewed,
textarea:-internal-autofill-selected,
select:-internal-autofill-previewed,
select:-internal-autofill-selected {
background-color: white !important;
}
::selection {
background-color: #79ffe1;
color: var(--color-text-inverse);
}
hr {
border: 0;
height: 0;
border-top: 3px solid rgba(60, 8, 165, 0.3);
border-bottom: none;
background: transparent;
margin: 20px auto;
width: 90%;
}
a,
button {
@apply text-highlight-3;
transition: all 75ms ease-in-out;
}
a:hover,
button:hover {
@apply text-inverse;
}
label {
@apply block cursor-pointer mt-6 mb-1 text-left;
}
form:after {
content: '';
display: table;
clear: both;
}
button {
@apply outline-none;
}
button:focus {
@apply outline-none;
}
button[disabled] {
@apply opacity-20 cursor-not-allowed !important;
}
input:not([type='submit'])[disabled],
textarea[disabled] {
@apply border-transparent opacity-50 cursor-not-allowed !important;
}
input[type='submit'][disabled] {
@apply border-transparent cursor-not-allowed;
}
input:not([type='submit'])[readOnly] {
@apply cursor-not-allowed !important;
}
input[type='submit'][disabled] {
@apply border-transparent cursor-not-allowed;
}
.is-etherscan-arrow {
height: 1em;
position: relative;
top: -2px;
width: 1em;
}
@keyframes gradientBG {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.text-flashy {
background: var(--flashyGradient);
background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 200% auto;
animation: cycleBackgroundPos 6000ms infinite steps(100);
}
@keyframes cycleBackgroundPos {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.footer--container {
background-color: #0c021b;
}
.footer {
}
/* .footer a {
@apply text-primary border-0;
}
.footer a:hover {
@apply text-secondary;
} */
.footer .img-link:hover {
@apply border-0 no-underline;
}
.footer--pool-logo-container {
width: 133px;
}
.nav--pool-logo-container {
position: relative;
left: -6px;
}
@screen sm {
.nav--pool-logo-container {
left: 0;
}
}
.pool-logo {
height: 52px;
position: relative;
z-index: 1;
width: 133px;
}
.pool-logo:hover {
background-color: transparent;
}
.banner-text {
font-size: 2rem;
line-height: 1;
margin-bottom: 1rem;
margin-top: 0;
}
@screen xs {
.banner-text {
font-size: calc(2vw + 30px);
line-height: 1.2;
margin-top: 1rem;
margin-bottom: 4rem;
}
}
@screen sm {
.banner-text {
margin-top: 1rem;
margin-bottom: 4rem;
}
}
@screen lg {
.banner-text {
margin-top: 0.75rem;
}
}
.banner-text--small {
@apply pt-4;
font-size: calc(1.5vw + 13px) !important;
}
.button-scale:hover,
.button-scale:focus,
.button-scale:active {
transform: scale(1.02) translateY(-3px);
}
.mobile-nav-background {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100vw;
background: #190742;
z-index: 40;
}
.hamburger-button {
@apply shadow-4xl;
display: flex;
align-items: center;
justify-items: center;
outline: none;
border: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
cursor: pointer;
position: absolute;
bottom: 33px;
left: calc(100vw - 85px);
width: 50px;
height: 50px;
border-radius: 50%;
/* background: transparent; */
z-index: 50;
}
.hamburger-button > svg {
margin: auto;
}
ul.nav-mobile-list,
li.nav-mobile-listitem {
margin: 0;
padding: 0;
z-index: 50;
}
ul.nav-mobile-list {
padding: 25px;
position: absolute;
top: 100px;
width: 230px;
}
li.nav-mobile-listitem {
list-style: none;
margin-bottom: 20px;
display: flex;
align-items: center;
cursor: pointer;
}
.hero-text-left {
top: -8px;
}
@screen sm {
.hero-text-left {
width: 300px;
}
}
@screen lg {
.hero-text-left {
width: 420px;
}
}
.bg-vid-holo {
background-image: url('/vid@2x.png');
background-size: contain;
background-position: top center;
background-repeat: no-repeat;
padding-bottom: 56.25%; /* 16:9 */
height: 0;
overflow: hidden;
position: relative;
width: 100%;
}
@screen sm {
.bg-vid-holo {
background-position: top right;
width: 430px;
}
}
@screen lg {
.bg-vid-holo {
width: 556px;
}
}
.bg-vid-holo--inner {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.bg-vid-circle {
@apply shadow-elevation;
background: rgba(76, 36, 159, 0.8);
height: 104px;
width: 104px;
}
.bg-vid-holo:hover .bg-vid-circle {
background: rgba(53, 240, 208, 0.8);
}
.bg-vid-tri {
background-image: url('/bg-vid-tri.svg');
background-size: cover;
background-repeat: no-repeat;
margin-right: -6px;
height: 42px;
width: 35px;
}
.bg-how-art-waves {
background-image: url('/bg-how-art-waves.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
width: 100%;
}
@screen sm {
.bg-how-art-waves {
min-height: 800px;
}
}
.bg-overlay {
background-image: linear-gradient(40deg, #4c249f 30%, #9c48ba 100%) !important;
}
.interactable-chip {
@apply rounded-lg flex;
min-height: 50px;
min-width: 80px;
}
.interactable-chip-main-bg {
@apply bg-secondary hover:bg-highlight-3;
}
.interactable-chip-alt-bg {
@apply bg-default hover:bg-highlight-3;
}
@screen xs {
.interactable-chip {
min-height: 70px;
min-width: 100px;
}
}
@screen sm {
.interactable-chip {
min-height: 70px;
min-width: 150px;
}
}
@screen lg {
.interactable-chip {
min-height: 90px;
min-width: 180px;
}
}
.collapsible-target:hover * {
color: var(--color-text-white);
}
.collapsible-content {
overflow: hidden;
transition: max-height 100ms ease-out;
max-height: 0;
}
.collapsible-content--active {
max-height: 1000px;
transition: max-height 500ms ease-in;
height: auto;
}
.discord-button:hover path {
fill: var(--color-bg-blue-2);
}
.community-button:hover path {
stroke: var(--color-text-highlight-1);
}
.defi-pulse-image {
max-width: 280px;
}
@screen xs {
.defi-pulse-image {
max-width: 320px;
}
}
@screen sm {
.defi-pulse-image {
max-width: 400px;
}
}
.purple-pink-gradient-animation {
@apply bg-body;
}
.purple-pink-gradient-animation:after {
--borderFlashyWidth: 2px !important;
animation-duration: 4000ms !important;
background-image: linear-gradient(40deg, #4c249f 30%, #9c48ba 81%) !important;
}
.bg-developers {
background-image: linear-gradient(180deg, #32025e 0%, #150429 50%) !important;
}
.bg-developers-art-waves {
background-image: url('/bg-developers-art-waves@2x.png');
background-size: cover;
background-repeat: no-repeat;
background-position: center bottom;
min-height: 300px;
width: 100%;
}
@screen xs {
.bg-developers-art-waves {
min-height: 400px;
}
}
@screen sm {
.bg-developers-art-waves {
min-height: 800px;
}
}
.bg-holographic {
background-image: url('/bg-holographic@2x.png');
background-size: cover;
width: 100%;
} | 0.523664 | 0.086285 |
snippets {
display: none;
}
.hidden {
display: none;
}
#toggle {
display: grid;
grid-auto-flow: column;
text-align: center;
}
#toggle > h2 {
position: relative;
top: 5px;
padding-right: 10px;
}
#game-tabs {
display: flex;
overflow-x: scroll;
overflow-y: hidden;
}
#game-tabs-container > div > .slider {
display: flex;
}
#game-tabs-container > div > div > .custom-checkbox {
margin: auto;
}
div.slider > #name {
width: 250px;
margin: auto;
}
div.slider > #time {
width: 100px;
margin: auto;
}
input.slider {
width: 30%;
}
#game-tabs-container > * > div.slider {
outline-color: var(--white);
outline-style: solid;
outline-width: 1px;
height: 32px;
text-align: center;
}
#game-tabs-container > * > div.slider.disabled {
background-color: var(--red);
color: var(--white);
}
#game-tabs-container > * > div.slider.enabled {
background-color: var(--green);
color: var(--white);
}
#game-tabs-container > * > div.slider.indeterminate {
background-color: var(--orange);
color: var(--white);
}
.custom-checkbox .custom-control-input:checked~.custom-control-label:before {
background-color: var(--white);
}
.custom-checkbox > input[type="checkbox"][data-mode="0"]~.custom-control-label:after {
background-image: none;
}
.custom-checkbox > input[type="checkbox"][data-mode="1"]~.custom-control-label:after {
background-image: url("../images/checked.svg");
}
.custom-checkbox > input[type="checkbox"][data-mode="2"]~.custom-control-label:after {
background-image: url("../images/indeterminate.svg");
}
#fixed-names > div > label {
color: black;
}
#color-legend > ul > li {
padding: 1px;
margin: 1px;
}
#color-legend > ul > li:nth-child(1) {
background-color: var(--green);
}
#color-legend > ul > li:nth-child(2) {
background-color: var(--orange);
}
#color-legend > ul > li:nth-child(3) {
background-color: var(--red);
}
#input > input {
color: var(--white);
text-align: center;
width: 50px;
margin-left: 25px;
}
#input > input:disabled {
background-color: var(--red);
}
.radio > label {
color: var(--black);
}
#set-all-checkboxes > .custom-checkbox > label::after {
outline-style: solid;
outline-color: var(--black);
outline-width: 1px;
}
#set-all-checkboxes {
display: inline-flex;
position: relative;
left: 15px;
}
#set-all-checkboxes > label {
position: relative;
top: 5px;
} | public/css/styles.css | snippets {
display: none;
}
.hidden {
display: none;
}
#toggle {
display: grid;
grid-auto-flow: column;
text-align: center;
}
#toggle > h2 {
position: relative;
top: 5px;
padding-right: 10px;
}
#game-tabs {
display: flex;
overflow-x: scroll;
overflow-y: hidden;
}
#game-tabs-container > div > .slider {
display: flex;
}
#game-tabs-container > div > div > .custom-checkbox {
margin: auto;
}
div.slider > #name {
width: 250px;
margin: auto;
}
div.slider > #time {
width: 100px;
margin: auto;
}
input.slider {
width: 30%;
}
#game-tabs-container > * > div.slider {
outline-color: var(--white);
outline-style: solid;
outline-width: 1px;
height: 32px;
text-align: center;
}
#game-tabs-container > * > div.slider.disabled {
background-color: var(--red);
color: var(--white);
}
#game-tabs-container > * > div.slider.enabled {
background-color: var(--green);
color: var(--white);
}
#game-tabs-container > * > div.slider.indeterminate {
background-color: var(--orange);
color: var(--white);
}
.custom-checkbox .custom-control-input:checked~.custom-control-label:before {
background-color: var(--white);
}
.custom-checkbox > input[type="checkbox"][data-mode="0"]~.custom-control-label:after {
background-image: none;
}
.custom-checkbox > input[type="checkbox"][data-mode="1"]~.custom-control-label:after {
background-image: url("../images/checked.svg");
}
.custom-checkbox > input[type="checkbox"][data-mode="2"]~.custom-control-label:after {
background-image: url("../images/indeterminate.svg");
}
#fixed-names > div > label {
color: black;
}
#color-legend > ul > li {
padding: 1px;
margin: 1px;
}
#color-legend > ul > li:nth-child(1) {
background-color: var(--green);
}
#color-legend > ul > li:nth-child(2) {
background-color: var(--orange);
}
#color-legend > ul > li:nth-child(3) {
background-color: var(--red);
}
#input > input {
color: var(--white);
text-align: center;
width: 50px;
margin-left: 25px;
}
#input > input:disabled {
background-color: var(--red);
}
.radio > label {
color: var(--black);
}
#set-all-checkboxes > .custom-checkbox > label::after {
outline-style: solid;
outline-color: var(--black);
outline-width: 1px;
}
#set-all-checkboxes {
display: inline-flex;
position: relative;
left: 15px;
}
#set-all-checkboxes > label {
position: relative;
top: 5px;
} | 0.330471 | 0.083217 |
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Raleway:wght@400;500&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
.wrapper {
@apply grid w-full mx-auto mt-20 gap-y-8 lg:gap-y-20;
}
/* section header */
.section-header {
@apply underline text-gray-600 dark:text-gray-300 text-center;
}
/* navigation icon */
.nav-icon {
@apply text-black dark:text-white h-7 w-7 cursor-pointer;
}
/* navigation link */
.nav-link {
@apply cursor-pointer hover:text-black dark:hover:text-white text-gray-600 dark:text-gray-100 transition-colors duration-150;
}
/* navigation header */
.nav-header {
@apply max-w-7xl mx-auto flex top-0 inset-x-0 items-center justify-between z-50;
}
/* hero section */
.hero-section {
@apply px-8 py-8 lg:px-0 w-full flex flex-col items-center text-center max-w-xl lg:max-w-3xl mx-auto space-y-8;
}
/* projects section */
.projects-section {
@apply w-full max-w-5xl flex flex-col;
}
/* avatar */
.avatar {
@apply rounded-full object-cover object-top;
}
/* button with background color */
.btn-primary {
@apply text-center text-white bg-primary px-8 py-4 rounded-full uppercase font-medium text-sm outline-none border-2 border-primary transition duration-150 hover:text-primary hover:bg-white;
}
/* region: hero */
.username {
@apply text-lg font-medium prose;
}
.heading {
@apply text-4xl xl:text-6xl font-medium;
}
.subhead {
@apply text-base lg:text-lg font-sans prose;
}
strong {
@apply cursor-pointer hover:text-primary transition duration-100;
}
.phrase-container {
@apply w-full flex flex-col lg:flex-row space-y-6 lg:space-y-0 items-center justify-between prose;
}
.phrase-container .phrase {
@apply text-black dark:text-white font-semibold italic;
}
.phrase-container .author {
@apply text-gray-400 dark:text-gray-200 relative;
}
.phrase-container .author strong {
@apply text-gray-500 dark:text-gray-100;
}
.social-icon {
@apply w-8 h-8 cursor-pointer;
}
/* endregion */
/* services rendered card */
.service-card {
@apply cursor-pointer flex flex-col h-full w-full bg-white dark:bg-gray-800 rounded-md hover:shadow-lg hover:text-white hover:bg-primary transition duration-150;
}
.service-card h5 {
@apply group-hover:text-white;
}
.service-card p {
@apply group-hover:text-white;
}
/* banner image */
.service-card .banner-img-container {
@apply w-full h-40 overflow-hidden rounded-md;
}
.service-card .banner-img-container .banner-img {
@apply object-cover object-top rounded-br-xl;
}
.services-container {
@apply z-10 flex flex-col w-full mx-auto max-w-6xl px-8 lg:px-0 space-y-8 lg:space-y-0 md:grid md:grid-cols-2 md:grid-flow-row md:gap-x-4 lg:grid-cols-3 lg:gap-x-8;
} | styles/globals.css | @import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Raleway:wght@400;500&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
.wrapper {
@apply grid w-full mx-auto mt-20 gap-y-8 lg:gap-y-20;
}
/* section header */
.section-header {
@apply underline text-gray-600 dark:text-gray-300 text-center;
}
/* navigation icon */
.nav-icon {
@apply text-black dark:text-white h-7 w-7 cursor-pointer;
}
/* navigation link */
.nav-link {
@apply cursor-pointer hover:text-black dark:hover:text-white text-gray-600 dark:text-gray-100 transition-colors duration-150;
}
/* navigation header */
.nav-header {
@apply max-w-7xl mx-auto flex top-0 inset-x-0 items-center justify-between z-50;
}
/* hero section */
.hero-section {
@apply px-8 py-8 lg:px-0 w-full flex flex-col items-center text-center max-w-xl lg:max-w-3xl mx-auto space-y-8;
}
/* projects section */
.projects-section {
@apply w-full max-w-5xl flex flex-col;
}
/* avatar */
.avatar {
@apply rounded-full object-cover object-top;
}
/* button with background color */
.btn-primary {
@apply text-center text-white bg-primary px-8 py-4 rounded-full uppercase font-medium text-sm outline-none border-2 border-primary transition duration-150 hover:text-primary hover:bg-white;
}
/* region: hero */
.username {
@apply text-lg font-medium prose;
}
.heading {
@apply text-4xl xl:text-6xl font-medium;
}
.subhead {
@apply text-base lg:text-lg font-sans prose;
}
strong {
@apply cursor-pointer hover:text-primary transition duration-100;
}
.phrase-container {
@apply w-full flex flex-col lg:flex-row space-y-6 lg:space-y-0 items-center justify-between prose;
}
.phrase-container .phrase {
@apply text-black dark:text-white font-semibold italic;
}
.phrase-container .author {
@apply text-gray-400 dark:text-gray-200 relative;
}
.phrase-container .author strong {
@apply text-gray-500 dark:text-gray-100;
}
.social-icon {
@apply w-8 h-8 cursor-pointer;
}
/* endregion */
/* services rendered card */
.service-card {
@apply cursor-pointer flex flex-col h-full w-full bg-white dark:bg-gray-800 rounded-md hover:shadow-lg hover:text-white hover:bg-primary transition duration-150;
}
.service-card h5 {
@apply group-hover:text-white;
}
.service-card p {
@apply group-hover:text-white;
}
/* banner image */
.service-card .banner-img-container {
@apply w-full h-40 overflow-hidden rounded-md;
}
.service-card .banner-img-container .banner-img {
@apply object-cover object-top rounded-br-xl;
}
.services-container {
@apply z-10 flex flex-col w-full mx-auto max-w-6xl px-8 lg:px-0 space-y-8 lg:space-y-0 md:grid md:grid-cols-2 md:grid-flow-row md:gap-x-4 lg:grid-cols-3 lg:gap-x-8;
} | 0.392104 | 0.070176 |
.none {
display: none;
}
.util-border-radius-none {
-webkit-border-radius: none;
-moz-border-radius: none;
border-radius: none;
}
.util-text-ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.util-textHidden {
text-indent: 99999px;
overflow: hidden;
}
.axtabs-style-normal {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#fdfdfd, #e8e8e8);
/* For Safari */
background-image: -o-linear-gradient(#fdfdfd, #e8e8e8);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#fdfdfd, #e8e8e8);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#fdfdfd, #e8e8e8);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
color: #6e7a85;
border: 1px solid #b9babc;
text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-style-classic {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c1cdd5, #98a4ae);
/* For Safari */
background-image: -o-linear-gradient(#c1cdd5, #98a4ae);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c1cdd5, #98a4ae);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c1cdd5, #98a4ae);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
color: #ebf4f7;
border: 1px solid #81898e;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-style-blue {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#6faee1, #468ec9);
/* For Safari */
background-image: -o-linear-gradient(#6faee1, #468ec9);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#6faee1, #468ec9);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#6faee1, #468ec9);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
color: #d0ebfe;
border: 1px solid #3f80b1;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-style-green {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#98c87b, #79aa5a);
/* For Safari */
background-image: -o-linear-gradient(#98c87b, #79aa5a);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#98c87b, #79aa5a);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#98c87b, #79aa5a);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
color: #dffebe;
border: 1px solid #6a9751;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-style-red {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c65a5b, #a93b3e);
/* For Safari */
background-image: -o-linear-gradient(#c65a5b, #a93b3e);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c65a5b, #a93b3e);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c65a5b, #a93b3e);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
color: #fcccc9;
border: 1px solid #87302b;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-style-disabled {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#d7d7d7, #d7d7d7);
/* For Safari */
background-image: -o-linear-gradient(#d7d7d7, #d7d7d7);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#d7d7d7, #d7d7d7);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#d7d7d7, #d7d7d7);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
color: #eaeaea;
border: 1px solid #cccccc;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
box-shadow: none;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-event-normal {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#fdfdfd, #e8e8e8);
/* For Safari */
background-image: -o-linear-gradient(#fdfdfd, #e8e8e8);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#fdfdfd, #e8e8e8);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#fdfdfd, #e8e8e8);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
color: #6e7a85;
border: 1px solid #b9babc;
text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-event-normal:hover,
.axtabs-event-normal:focus {
background: #e8e8e8;
}
.axtabs-event-normal:active {
box-shadow: none;
}
.axtabs-event-normal.on {
text-shadow: none;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.axtabs-event-classic {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c1cdd5, #98a4ae);
/* For Safari */
background-image: -o-linear-gradient(#c1cdd5, #98a4ae);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c1cdd5, #98a4ae);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c1cdd5, #98a4ae);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
color: #ebf4f7;
border: 1px solid #81898e;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-event-classic:hover,
.axtabs-event-classic:focus {
background: #98a4ae;
}
.axtabs-event-classic:active {
box-shadow: none;
}
.axtabs-event-classic.on {
text-shadow: none;
color: #81898e;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.axtabs-event-blue {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#6faee1, #468ec9);
/* For Safari */
background-image: -o-linear-gradient(#6faee1, #468ec9);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#6faee1, #468ec9);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#6faee1, #468ec9);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
color: #d0ebfe;
border: 1px solid #3f80b1;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-event-blue:hover,
.axtabs-event-blue:focus {
background: #468ec9;
}
.axtabs-event-blue:active {
box-shadow: none;
}
.axtabs-event-blue.on {
text-shadow: none;
color: #3f80b1;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.axtabs-event-green {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#98c87b, #79aa5a);
/* For Safari */
background-image: -o-linear-gradient(#98c87b, #79aa5a);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#98c87b, #79aa5a);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#98c87b, #79aa5a);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
color: #dffebe;
border: 1px solid #6a9751;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-event-green:hover,
.axtabs-event-green:focus {
background: #79aa5a;
}
.axtabs-event-green:active {
box-shadow: none;
}
.axtabs-event-green.on {
text-shadow: none;
color: #6a9751;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.axtabs-event-red {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c65a5b, #a93b3e);
/* For Safari */
background-image: -o-linear-gradient(#c65a5b, #a93b3e);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c65a5b, #a93b3e);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c65a5b, #a93b3e);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
color: #fcccc9;
border: 1px solid #87302b;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-event-red:hover,
.axtabs-event-red:focus {
background: #a93b3e;
}
.axtabs-event-red:active {
box-shadow: none;
}
.axtabs-event-red.on {
text-shadow: none;
color: #87302b;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.axtabs-event-disabled {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#d7d7d7, #d7d7d7);
/* For Safari */
background-image: -o-linear-gradient(#d7d7d7, #d7d7d7);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#d7d7d7, #d7d7d7);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#d7d7d7, #d7d7d7);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
color: #eaeaea;
border: 1px solid #cccccc;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
box-shadow: none;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-event-disabled:hover,
.axtabs-event-disabled:focus {
background: #d7d7d7;
}
.axtabs-event-disabled:active {
box-shadow: none;
}
.axtabs-event-disabled.on {
text-shadow: none;
color: #cccccc;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabs {
position: relative;
min-height: 30px;
overflow: hidden;
box-sizing: content-box !important;
}
.AXTabs .AXTabsTray {
background: url('images/dx-tab-bg.png');
box-sizing: content-box !important;
}
.AXTabs .AXTabsTray .trayScroll {
position: absolute;
left: 0px;
top: 0px;
height: 30px;
box-sizing: content-box !important;
}
.AXTabs .AXTabsTray .AXTabSplit {
display: none;
}
.AXTabs .AXTabsTray .AXTab {
display: block;
float: left;
cursor: pointer;
position: relative;
height: 26px;
min-width: 50px;
padding: 0px 10px;
box-sizing: content-box !important;
margin: 2px 0px 0px 2px;
border: 1px solid #b9babc;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
font-size: 12px;
color: #6e7a86;
line-height: 26px;
text-align: center;
text-decoration: none;
outline: none;
}
.AXTabs .AXTabsTray .AXTab {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#fdfdfd, #e8e8e8);
/* For Safari */
background-image: -o-linear-gradient(#fdfdfd, #e8e8e8);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#fdfdfd, #e8e8e8);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#fdfdfd, #e8e8e8);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
color: #6e7a85;
border: 1px solid #b9babc;
text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabs .AXTabsTray .AXTab:hover,
.AXTabs .AXTabsTray .AXTab:focus {
background: #e8e8e8;
}
.AXTabs .AXTabsTray .AXTab:active {
box-shadow: none;
}
.AXTabs .AXTabsTray .AXTab.on {
text-shadow: none;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabs .AXTabsTray .AXTab:first-child {
margin-left: 5px;
}
.AXTabs .AXTabsTray .AXTab.Classic {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c1cdd5, #98a4ae);
/* For Safari */
background-image: -o-linear-gradient(#c1cdd5, #98a4ae);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c1cdd5, #98a4ae);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c1cdd5, #98a4ae);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
color: #ebf4f7;
border: 1px solid #81898e;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabs .AXTabsTray .AXTab.Classic:hover,
.AXTabs .AXTabsTray .AXTab.Classic:focus {
background: #98a4ae;
}
.AXTabs .AXTabsTray .AXTab.Classic:active {
box-shadow: none;
}
.AXTabs .AXTabsTray .AXTab.Classic.on {
text-shadow: none;
color: #81898e;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabs .AXTabsTray .AXTab.Blue {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#6faee1, #468ec9);
/* For Safari */
background-image: -o-linear-gradient(#6faee1, #468ec9);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#6faee1, #468ec9);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#6faee1, #468ec9);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
color: #d0ebfe;
border: 1px solid #3f80b1;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabs .AXTabsTray .AXTab.Blue:hover,
.AXTabs .AXTabsTray .AXTab.Blue:focus {
background: #468ec9;
}
.AXTabs .AXTabsTray .AXTab.Blue:active {
box-shadow: none;
}
.AXTabs .AXTabsTray .AXTab.Blue.on {
text-shadow: none;
color: #3f80b1;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabs .AXTabsTray .AXTab.Green {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#98c87b, #79aa5a);
/* For Safari */
background-image: -o-linear-gradient(#98c87b, #79aa5a);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#98c87b, #79aa5a);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#98c87b, #79aa5a);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
color: #dffebe;
border: 1px solid #6a9751;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabs .AXTabsTray .AXTab.Green:hover,
.AXTabs .AXTabsTray .AXTab.Green:focus {
background: #79aa5a;
}
.AXTabs .AXTabsTray .AXTab.Green:active {
box-shadow: none;
}
.AXTabs .AXTabsTray .AXTab.Green.on {
text-shadow: none;
color: #6a9751;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabs .AXTabsTray .AXTab.Red {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c65a5b, #a93b3e);
/* For Safari */
background-image: -o-linear-gradient(#c65a5b, #a93b3e);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c65a5b, #a93b3e);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c65a5b, #a93b3e);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
color: #fcccc9;
border: 1px solid #87302b;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabs .AXTabsTray .AXTab.Red:hover,
.AXTabs .AXTabsTray .AXTab.Red:focus {
background: #a93b3e;
}
.AXTabs .AXTabsTray .AXTab.Red:active {
box-shadow: none;
}
.AXTabs .AXTabsTray .AXTab.Red.on {
text-shadow: none;
color: #87302b;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabs .AXTabsTray .AXTab[disabled] {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#d7d7d7, #d7d7d7);
/* For Safari */
background-image: -o-linear-gradient(#d7d7d7, #d7d7d7);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#d7d7d7, #d7d7d7);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#d7d7d7, #d7d7d7);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
color: #eaeaea;
border: 1px solid #cccccc;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
box-shadow: none;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabs .AXTabsTray .AXTab[disabled]:hover,
.AXTabs .AXTabsTray .AXTab[disabled]:focus {
background: #d7d7d7;
}
.AXTabs .AXTabsTray .AXTab[disabled]:active {
box-shadow: none;
}
.AXTabs .AXTabsTray .AXTab[disabled].on {
text-shadow: none;
color: #cccccc;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabs .AXTabsTray .AXTab.closable {
padding-right: 20px;
}
.AXTabs .AXTabsTray .AXTab .AXTabClose {
position: absolute;
right: 5px;
top: 0px;
font-family: axicon;
}
.AXTabs .AXTabsTray .AXTab .AXTabClose:before {
content: "\f1b4";
}
.AXTabs .AXTabsTray .leftArrowHandleBox {
position: absolute;
left: 0px;
top: 1px;
width: 29px;
height: 28px;
background: url('images/dx-left-arrows-bg.png') repeat-y 0px 0px;
}
.AXTabs .AXTabsTray .leftArrowHandleBox .tabArrow {
display: block;
width: 29px;
height: 28px;
background: url('images/dx-left-arrows-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabs .AXTabsTray .leftArrowHandleBox .tabArrow:hover {
background: url('images/dx-left-arrows-01-r.png') no-repeat 50%;
}
.AXTabs .AXTabsTray .rightArrowHandleBox {
position: absolute;
right: 24px;
top: 1px;
width: 29px;
height: 28px;
background: url('images/dx-right-arrows-bg.png') repeat-y 100% 0px;
}
.AXTabs .AXTabsTray .rightArrowHandleBox .tabArrow {
display: block;
width: 29px;
height: 28px;
background: url('images/dx-right-arrows-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabs .AXTabsTray .rightArrowHandleBox .tabArrow:hover {
background: url('images/dx-right-arrows-01-r.png') no-repeat 50%;
}
.AXTabs .AXTabsTray .rightArrowMoreBox {
position: absolute;
right: 0px;
top: 1px;
width: 24px;
height: 28px;
background: #fff;
}
.AXTabs .AXTabsTray .rightArrowMoreBox .tabArrow {
display: block;
width: 24px;
height: 28px;
background: url('images/dx-right-arrows-more-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabs .AXTabsTray .rightArrowMoreBox .tabArrow:hover {
background: url('images/dx-right-arrows-more-01-r.png') no-repeat 50%;
}
.AXTabsLarge {
position: relative;
min-height: 46px;
overflow: hidden;
}
.AXTabsLarge .AXTabsTray {
background: url('images/dx-tab-bg-large.png');
}
.AXTabsLarge .AXTabsTray .trayScroll {
position: absolute;
left: 0px;
top: 0px;
height: 46px;
}
.AXTabsLarge .AXTabsTray .AXTab {
display: block;
float: left;
cursor: pointer;
position: relative;
height: 40px;
min-width: 100px;
padding: 0px 10px;
box-sizing: content-box !important;
margin: 4px 0px 0px 4px;
border: 1px solid #b9babc;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
font-size: 14px;
color: #6e7a86;
line-height: 40px;
text-align: center;
text-decoration: none;
outline: none;
}
.AXTabsLarge .AXTabsTray .AXTab {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#fdfdfd, #e8e8e8);
/* For Safari */
background-image: -o-linear-gradient(#fdfdfd, #e8e8e8);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#fdfdfd, #e8e8e8);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#fdfdfd, #e8e8e8);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
color: #6e7a85;
border: 1px solid #b9babc;
text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsLarge .AXTabsTray .AXTab:hover,
.AXTabsLarge .AXTabsTray .AXTab:focus {
background: #e8e8e8;
}
.AXTabsLarge .AXTabsTray .AXTab:active {
box-shadow: none;
}
.AXTabsLarge .AXTabsTray .AXTab.on {
text-shadow: none;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsLarge .AXTabsTray .AXTab:first-child {
margin-left: 5px;
}
.AXTabsLarge .AXTabsTray .AXTab.Classic {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c1cdd5, #98a4ae);
/* For Safari */
background-image: -o-linear-gradient(#c1cdd5, #98a4ae);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c1cdd5, #98a4ae);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c1cdd5, #98a4ae);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
color: #ebf4f7;
border: 1px solid #81898e;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsLarge .AXTabsTray .AXTab.Classic:hover,
.AXTabsLarge .AXTabsTray .AXTab.Classic:focus {
background: #98a4ae;
}
.AXTabsLarge .AXTabsTray .AXTab.Classic:active {
box-shadow: none;
}
.AXTabsLarge .AXTabsTray .AXTab.Classic.on {
text-shadow: none;
color: #81898e;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsLarge .AXTabsTray .AXTab.Blue {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#6faee1, #468ec9);
/* For Safari */
background-image: -o-linear-gradient(#6faee1, #468ec9);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#6faee1, #468ec9);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#6faee1, #468ec9);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
color: #d0ebfe;
border: 1px solid #3f80b1;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsLarge .AXTabsTray .AXTab.Blue:hover,
.AXTabsLarge .AXTabsTray .AXTab.Blue:focus {
background: #468ec9;
}
.AXTabsLarge .AXTabsTray .AXTab.Blue:active {
box-shadow: none;
}
.AXTabsLarge .AXTabsTray .AXTab.Blue.on {
text-shadow: none;
color: #3f80b1;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsLarge .AXTabsTray .AXTab.Green {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#98c87b, #79aa5a);
/* For Safari */
background-image: -o-linear-gradient(#98c87b, #79aa5a);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#98c87b, #79aa5a);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#98c87b, #79aa5a);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
color: #dffebe;
border: 1px solid #6a9751;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsLarge .AXTabsTray .AXTab.Green:hover,
.AXTabsLarge .AXTabsTray .AXTab.Green:focus {
background: #79aa5a;
}
.AXTabsLarge .AXTabsTray .AXTab.Green:active {
box-shadow: none;
}
.AXTabsLarge .AXTabsTray .AXTab.Green.on {
text-shadow: none;
color: #6a9751;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsLarge .AXTabsTray .AXTab.Red {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c65a5b, #a93b3e);
/* For Safari */
background-image: -o-linear-gradient(#c65a5b, #a93b3e);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c65a5b, #a93b3e);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c65a5b, #a93b3e);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
color: #fcccc9;
border: 1px solid #87302b;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsLarge .AXTabsTray .AXTab.Red:hover,
.AXTabsLarge .AXTabsTray .AXTab.Red:focus {
background: #a93b3e;
}
.AXTabsLarge .AXTabsTray .AXTab.Red:active {
box-shadow: none;
}
.AXTabsLarge .AXTabsTray .AXTab.Red.on {
text-shadow: none;
color: #87302b;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsLarge .AXTabsTray .AXTab[disabled] {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#d7d7d7, #d7d7d7);
/* For Safari */
background-image: -o-linear-gradient(#d7d7d7, #d7d7d7);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#d7d7d7, #d7d7d7);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#d7d7d7, #d7d7d7);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
color: #eaeaea;
border: 1px solid #cccccc;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
box-shadow: none;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsLarge .AXTabsTray .AXTab[disabled]:hover,
.AXTabsLarge .AXTabsTray .AXTab[disabled]:focus {
background: #d7d7d7;
}
.AXTabsLarge .AXTabsTray .AXTab[disabled]:active {
box-shadow: none;
}
.AXTabsLarge .AXTabsTray .AXTab[disabled].on {
text-shadow: none;
color: #cccccc;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsLarge .AXTabsTray .AXTab.closable {
padding-right: 20px;
}
.AXTabsLarge .AXTabsTray .AXTab .AXTabClose {
position: absolute;
right: 5px;
top: 0px;
font-family: axicon;
}
.AXTabsLarge .AXTabsTray .AXTab .AXTabClose:before {
content: "\f1b4";
}
.AXTabsLarge .AXTabsTray .leftArrowHandleBox {
position: absolute;
left: 0px;
top: 1px;
width: 29px;
height: 44px;
background: url('images/dx-left-arrows-bg.png') repeat-y 0px 0px;
}
.AXTabsLarge .AXTabsTray .leftArrowHandleBox .tabArrow {
display: block;
width: 29px;
height: 44px;
background: url('images/dx-left-arrows-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabsLarge .AXTabsTray .leftArrowHandleBox .tabArrow:hover {
background: url('images/dx-left-arrows-01-r.png') no-repeat 50%;
}
.AXTabsLarge .AXTabsTray .rightArrowHandleBox {
position: absolute;
right: 24px;
top: 1px;
width: 29px;
height: 44px;
background: url('images/dx-right-arrows-bg.png') repeat-y 100% 0px;
}
.AXTabsLarge .AXTabsTray .rightArrowHandleBox .tabArrow {
display: block;
width: 29px;
height: 44px;
background: url('images/dx-right-arrows-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabsLarge .AXTabsTray .rightArrowHandleBox .tabArrow:hover {
background: url('images/dx-right-arrows-01-r.png') no-repeat 50%;
}
.AXTabsLarge .AXTabsTray .rightArrowMoreBox {
position: absolute;
right: 0px;
top: 1px;
width: 24px;
height: 44px;
background: #fff;
}
.AXTabsLarge .AXTabsTray .rightArrowMoreBox .tabArrow {
display: block;
width: 24px;
height: 44px;
background: url('images/dx-right-arrows-more-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabsLarge .AXTabsTray .rightArrowMoreBox .tabArrow:hover {
background: url('images/dx-right-arrows-more-01-r.png') no-repeat 50%;
}
.AXTabsSmall {
position: relative;
min-height: 24px;
overflow: hidden;
}
.AXTabsSmall .AXTabsTray {
background: url('images/dx-tab-bg-small.png');
}
.AXTabsSmall .AXTabsTray .trayScroll {
position: absolute;
left: 0px;
top: 0px;
height: 24px;
}
.AXTabsSmall .AXTabsTray .AXTab {
display: block;
float: left;
cursor: pointer;
position: relative;
height: 20px;
min-width: 60px;
padding: 0px 10px;
box-sizing: content-box !important;
margin: 2px 0px 0px 2px;
border: 1px solid #b9babc;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
font-size: 11px;
color: #6e7a86;
line-height: 20px;
text-align: center;
text-decoration: none;
outline: none;
}
.AXTabsSmall .AXTabsTray .AXTab {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#fdfdfd, #e8e8e8);
/* For Safari */
background-image: -o-linear-gradient(#fdfdfd, #e8e8e8);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#fdfdfd, #e8e8e8);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#fdfdfd, #e8e8e8);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
color: #6e7a85;
border: 1px solid #b9babc;
text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsSmall .AXTabsTray .AXTab:hover,
.AXTabsSmall .AXTabsTray .AXTab:focus {
background: #e8e8e8;
}
.AXTabsSmall .AXTabsTray .AXTab:active {
box-shadow: none;
}
.AXTabsSmall .AXTabsTray .AXTab.on {
text-shadow: none;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsSmall .AXTabsTray .AXTab:first-child {
margin-left: 5px;
}
.AXTabsSmall .AXTabsTray .AXTab.Classic {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c1cdd5, #98a4ae);
/* For Safari */
background-image: -o-linear-gradient(#c1cdd5, #98a4ae);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c1cdd5, #98a4ae);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c1cdd5, #98a4ae);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
color: #ebf4f7;
border: 1px solid #81898e;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsSmall .AXTabsTray .AXTab.Classic:hover,
.AXTabsSmall .AXTabsTray .AXTab.Classic:focus {
background: #98a4ae;
}
.AXTabsSmall .AXTabsTray .AXTab.Classic:active {
box-shadow: none;
}
.AXTabsSmall .AXTabsTray .AXTab.Classic.on {
text-shadow: none;
color: #81898e;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsSmall .AXTabsTray .AXTab.Blue {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#6faee1, #468ec9);
/* For Safari */
background-image: -o-linear-gradient(#6faee1, #468ec9);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#6faee1, #468ec9);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#6faee1, #468ec9);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
color: #d0ebfe;
border: 1px solid #3f80b1;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsSmall .AXTabsTray .AXTab.Blue:hover,
.AXTabsSmall .AXTabsTray .AXTab.Blue:focus {
background: #468ec9;
}
.AXTabsSmall .AXTabsTray .AXTab.Blue:active {
box-shadow: none;
}
.AXTabsSmall .AXTabsTray .AXTab.Blue.on {
text-shadow: none;
color: #3f80b1;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsSmall .AXTabsTray .AXTab.Green {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#98c87b, #79aa5a);
/* For Safari */
background-image: -o-linear-gradient(#98c87b, #79aa5a);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#98c87b, #79aa5a);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#98c87b, #79aa5a);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
color: #dffebe;
border: 1px solid #6a9751;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsSmall .AXTabsTray .AXTab.Green:hover,
.AXTabsSmall .AXTabsTray .AXTab.Green:focus {
background: #79aa5a;
}
.AXTabsSmall .AXTabsTray .AXTab.Green:active {
box-shadow: none;
}
.AXTabsSmall .AXTabsTray .AXTab.Green.on {
text-shadow: none;
color: #6a9751;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsSmall .AXTabsTray .AXTab.Red {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c65a5b, #a93b3e);
/* For Safari */
background-image: -o-linear-gradient(#c65a5b, #a93b3e);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c65a5b, #a93b3e);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c65a5b, #a93b3e);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
color: #fcccc9;
border: 1px solid #87302b;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsSmall .AXTabsTray .AXTab.Red:hover,
.AXTabsSmall .AXTabsTray .AXTab.Red:focus {
background: #a93b3e;
}
.AXTabsSmall .AXTabsTray .AXTab.Red:active {
box-shadow: none;
}
.AXTabsSmall .AXTabsTray .AXTab.Red.on {
text-shadow: none;
color: #87302b;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsSmall .AXTabsTray .AXTab[disabled] {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#d7d7d7, #d7d7d7);
/* For Safari */
background-image: -o-linear-gradient(#d7d7d7, #d7d7d7);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#d7d7d7, #d7d7d7);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#d7d7d7, #d7d7d7);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
color: #eaeaea;
border: 1px solid #cccccc;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
box-shadow: none;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsSmall .AXTabsTray .AXTab[disabled]:hover,
.AXTabsSmall .AXTabsTray .AXTab[disabled]:focus {
background: #d7d7d7;
}
.AXTabsSmall .AXTabsTray .AXTab[disabled]:active {
box-shadow: none;
}
.AXTabsSmall .AXTabsTray .AXTab[disabled].on {
text-shadow: none;
color: #cccccc;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsSmall .AXTabsTray .AXTab.closable {
padding-right: 20px;
}
.AXTabsSmall .AXTabsTray .AXTab .AXTabClose {
position: absolute;
right: 5px;
top: 0px;
font-family: axicon;
}
.AXTabsSmall .AXTabsTray .AXTab .AXTabClose:before {
content: "\f1b4";
}
.AXTabsSmall .AXTabsTray .leftArrowHandleBox {
position: absolute;
left: 0px;
top: 1px;
width: 29px;
height: 22px;
background: url('images/dx-left-arrows-bg.png') repeat-y 0px 0px;
}
.AXTabsSmall .AXTabsTray .leftArrowHandleBox .tabArrow {
display: block;
width: 29px;
height: 22px;
background: url('images/dx-left-arrows-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabsSmall .AXTabsTray .leftArrowHandleBox .tabArrow:hover {
background: url('images/dx-left-arrows-01-r.png') no-repeat 50%;
}
.AXTabsSmall .AXTabsTray .rightArrowHandleBox {
position: absolute;
right: 24px;
top: 1px;
width: 29px;
height: 22px;
background: url('images/dx-right-arrows-bg.png') repeat-y 100% 0px;
}
.AXTabsSmall .AXTabsTray .rightArrowHandleBox .tabArrow {
display: block;
width: 29px;
height: 22px;
background: url('images/dx-right-arrows-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabsSmall .AXTabsTray .rightArrowHandleBox .tabArrow:hover {
background: url('images/dx-right-arrows-01-r.png') no-repeat 50%;
}
.AXTabsSmall .AXTabsTray .rightArrowMoreBox {
position: absolute;
right: 0px;
top: 1px;
width: 24px;
height: 22px;
background: #fff;
}
.AXTabsSmall .AXTabsTray .rightArrowMoreBox .tabArrow {
display: block;
width: 24px;
height: 22px;
background: url('images/dx-right-arrows-more-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabsSmall .AXTabsTray .rightArrowMoreBox .tabArrow:hover {
background: url('images/dx-right-arrows-more-01-r.png') no-repeat 50%;
} | public/axist/ui/arongi/dx-tabs.css | .none {
display: none;
}
.util-border-radius-none {
-webkit-border-radius: none;
-moz-border-radius: none;
border-radius: none;
}
.util-text-ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.util-textHidden {
text-indent: 99999px;
overflow: hidden;
}
.axtabs-style-normal {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#fdfdfd, #e8e8e8);
/* For Safari */
background-image: -o-linear-gradient(#fdfdfd, #e8e8e8);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#fdfdfd, #e8e8e8);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#fdfdfd, #e8e8e8);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
color: #6e7a85;
border: 1px solid #b9babc;
text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-style-classic {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c1cdd5, #98a4ae);
/* For Safari */
background-image: -o-linear-gradient(#c1cdd5, #98a4ae);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c1cdd5, #98a4ae);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c1cdd5, #98a4ae);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
color: #ebf4f7;
border: 1px solid #81898e;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-style-blue {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#6faee1, #468ec9);
/* For Safari */
background-image: -o-linear-gradient(#6faee1, #468ec9);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#6faee1, #468ec9);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#6faee1, #468ec9);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
color: #d0ebfe;
border: 1px solid #3f80b1;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-style-green {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#98c87b, #79aa5a);
/* For Safari */
background-image: -o-linear-gradient(#98c87b, #79aa5a);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#98c87b, #79aa5a);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#98c87b, #79aa5a);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
color: #dffebe;
border: 1px solid #6a9751;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-style-red {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c65a5b, #a93b3e);
/* For Safari */
background-image: -o-linear-gradient(#c65a5b, #a93b3e);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c65a5b, #a93b3e);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c65a5b, #a93b3e);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
color: #fcccc9;
border: 1px solid #87302b;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-style-disabled {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#d7d7d7, #d7d7d7);
/* For Safari */
background-image: -o-linear-gradient(#d7d7d7, #d7d7d7);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#d7d7d7, #d7d7d7);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#d7d7d7, #d7d7d7);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
color: #eaeaea;
border: 1px solid #cccccc;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
box-shadow: none;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-event-normal {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#fdfdfd, #e8e8e8);
/* For Safari */
background-image: -o-linear-gradient(#fdfdfd, #e8e8e8);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#fdfdfd, #e8e8e8);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#fdfdfd, #e8e8e8);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
color: #6e7a85;
border: 1px solid #b9babc;
text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-event-normal:hover,
.axtabs-event-normal:focus {
background: #e8e8e8;
}
.axtabs-event-normal:active {
box-shadow: none;
}
.axtabs-event-normal.on {
text-shadow: none;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.axtabs-event-classic {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c1cdd5, #98a4ae);
/* For Safari */
background-image: -o-linear-gradient(#c1cdd5, #98a4ae);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c1cdd5, #98a4ae);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c1cdd5, #98a4ae);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
color: #ebf4f7;
border: 1px solid #81898e;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-event-classic:hover,
.axtabs-event-classic:focus {
background: #98a4ae;
}
.axtabs-event-classic:active {
box-shadow: none;
}
.axtabs-event-classic.on {
text-shadow: none;
color: #81898e;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.axtabs-event-blue {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#6faee1, #468ec9);
/* For Safari */
background-image: -o-linear-gradient(#6faee1, #468ec9);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#6faee1, #468ec9);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#6faee1, #468ec9);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
color: #d0ebfe;
border: 1px solid #3f80b1;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-event-blue:hover,
.axtabs-event-blue:focus {
background: #468ec9;
}
.axtabs-event-blue:active {
box-shadow: none;
}
.axtabs-event-blue.on {
text-shadow: none;
color: #3f80b1;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.axtabs-event-green {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#98c87b, #79aa5a);
/* For Safari */
background-image: -o-linear-gradient(#98c87b, #79aa5a);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#98c87b, #79aa5a);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#98c87b, #79aa5a);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
color: #dffebe;
border: 1px solid #6a9751;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-event-green:hover,
.axtabs-event-green:focus {
background: #79aa5a;
}
.axtabs-event-green:active {
box-shadow: none;
}
.axtabs-event-green.on {
text-shadow: none;
color: #6a9751;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.axtabs-event-red {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c65a5b, #a93b3e);
/* For Safari */
background-image: -o-linear-gradient(#c65a5b, #a93b3e);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c65a5b, #a93b3e);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c65a5b, #a93b3e);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
color: #fcccc9;
border: 1px solid #87302b;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-event-red:hover,
.axtabs-event-red:focus {
background: #a93b3e;
}
.axtabs-event-red:active {
box-shadow: none;
}
.axtabs-event-red.on {
text-shadow: none;
color: #87302b;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.axtabs-event-disabled {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#d7d7d7, #d7d7d7);
/* For Safari */
background-image: -o-linear-gradient(#d7d7d7, #d7d7d7);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#d7d7d7, #d7d7d7);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#d7d7d7, #d7d7d7);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
color: #eaeaea;
border: 1px solid #cccccc;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
box-shadow: none;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.axtabs-event-disabled:hover,
.axtabs-event-disabled:focus {
background: #d7d7d7;
}
.axtabs-event-disabled:active {
box-shadow: none;
}
.axtabs-event-disabled.on {
text-shadow: none;
color: #cccccc;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabs {
position: relative;
min-height: 30px;
overflow: hidden;
box-sizing: content-box !important;
}
.AXTabs .AXTabsTray {
background: url('images/dx-tab-bg.png');
box-sizing: content-box !important;
}
.AXTabs .AXTabsTray .trayScroll {
position: absolute;
left: 0px;
top: 0px;
height: 30px;
box-sizing: content-box !important;
}
.AXTabs .AXTabsTray .AXTabSplit {
display: none;
}
.AXTabs .AXTabsTray .AXTab {
display: block;
float: left;
cursor: pointer;
position: relative;
height: 26px;
min-width: 50px;
padding: 0px 10px;
box-sizing: content-box !important;
margin: 2px 0px 0px 2px;
border: 1px solid #b9babc;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
font-size: 12px;
color: #6e7a86;
line-height: 26px;
text-align: center;
text-decoration: none;
outline: none;
}
.AXTabs .AXTabsTray .AXTab {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#fdfdfd, #e8e8e8);
/* For Safari */
background-image: -o-linear-gradient(#fdfdfd, #e8e8e8);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#fdfdfd, #e8e8e8);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#fdfdfd, #e8e8e8);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
color: #6e7a85;
border: 1px solid #b9babc;
text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabs .AXTabsTray .AXTab:hover,
.AXTabs .AXTabsTray .AXTab:focus {
background: #e8e8e8;
}
.AXTabs .AXTabsTray .AXTab:active {
box-shadow: none;
}
.AXTabs .AXTabsTray .AXTab.on {
text-shadow: none;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabs .AXTabsTray .AXTab:first-child {
margin-left: 5px;
}
.AXTabs .AXTabsTray .AXTab.Classic {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c1cdd5, #98a4ae);
/* For Safari */
background-image: -o-linear-gradient(#c1cdd5, #98a4ae);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c1cdd5, #98a4ae);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c1cdd5, #98a4ae);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
color: #ebf4f7;
border: 1px solid #81898e;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabs .AXTabsTray .AXTab.Classic:hover,
.AXTabs .AXTabsTray .AXTab.Classic:focus {
background: #98a4ae;
}
.AXTabs .AXTabsTray .AXTab.Classic:active {
box-shadow: none;
}
.AXTabs .AXTabsTray .AXTab.Classic.on {
text-shadow: none;
color: #81898e;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabs .AXTabsTray .AXTab.Blue {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#6faee1, #468ec9);
/* For Safari */
background-image: -o-linear-gradient(#6faee1, #468ec9);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#6faee1, #468ec9);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#6faee1, #468ec9);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
color: #d0ebfe;
border: 1px solid #3f80b1;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabs .AXTabsTray .AXTab.Blue:hover,
.AXTabs .AXTabsTray .AXTab.Blue:focus {
background: #468ec9;
}
.AXTabs .AXTabsTray .AXTab.Blue:active {
box-shadow: none;
}
.AXTabs .AXTabsTray .AXTab.Blue.on {
text-shadow: none;
color: #3f80b1;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabs .AXTabsTray .AXTab.Green {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#98c87b, #79aa5a);
/* For Safari */
background-image: -o-linear-gradient(#98c87b, #79aa5a);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#98c87b, #79aa5a);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#98c87b, #79aa5a);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
color: #dffebe;
border: 1px solid #6a9751;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabs .AXTabsTray .AXTab.Green:hover,
.AXTabs .AXTabsTray .AXTab.Green:focus {
background: #79aa5a;
}
.AXTabs .AXTabsTray .AXTab.Green:active {
box-shadow: none;
}
.AXTabs .AXTabsTray .AXTab.Green.on {
text-shadow: none;
color: #6a9751;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabs .AXTabsTray .AXTab.Red {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c65a5b, #a93b3e);
/* For Safari */
background-image: -o-linear-gradient(#c65a5b, #a93b3e);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c65a5b, #a93b3e);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c65a5b, #a93b3e);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
color: #fcccc9;
border: 1px solid #87302b;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabs .AXTabsTray .AXTab.Red:hover,
.AXTabs .AXTabsTray .AXTab.Red:focus {
background: #a93b3e;
}
.AXTabs .AXTabsTray .AXTab.Red:active {
box-shadow: none;
}
.AXTabs .AXTabsTray .AXTab.Red.on {
text-shadow: none;
color: #87302b;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabs .AXTabsTray .AXTab[disabled] {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#d7d7d7, #d7d7d7);
/* For Safari */
background-image: -o-linear-gradient(#d7d7d7, #d7d7d7);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#d7d7d7, #d7d7d7);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#d7d7d7, #d7d7d7);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
color: #eaeaea;
border: 1px solid #cccccc;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
box-shadow: none;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabs .AXTabsTray .AXTab[disabled]:hover,
.AXTabs .AXTabsTray .AXTab[disabled]:focus {
background: #d7d7d7;
}
.AXTabs .AXTabsTray .AXTab[disabled]:active {
box-shadow: none;
}
.AXTabs .AXTabsTray .AXTab[disabled].on {
text-shadow: none;
color: #cccccc;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabs .AXTabsTray .AXTab.closable {
padding-right: 20px;
}
.AXTabs .AXTabsTray .AXTab .AXTabClose {
position: absolute;
right: 5px;
top: 0px;
font-family: axicon;
}
.AXTabs .AXTabsTray .AXTab .AXTabClose:before {
content: "\f1b4";
}
.AXTabs .AXTabsTray .leftArrowHandleBox {
position: absolute;
left: 0px;
top: 1px;
width: 29px;
height: 28px;
background: url('images/dx-left-arrows-bg.png') repeat-y 0px 0px;
}
.AXTabs .AXTabsTray .leftArrowHandleBox .tabArrow {
display: block;
width: 29px;
height: 28px;
background: url('images/dx-left-arrows-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabs .AXTabsTray .leftArrowHandleBox .tabArrow:hover {
background: url('images/dx-left-arrows-01-r.png') no-repeat 50%;
}
.AXTabs .AXTabsTray .rightArrowHandleBox {
position: absolute;
right: 24px;
top: 1px;
width: 29px;
height: 28px;
background: url('images/dx-right-arrows-bg.png') repeat-y 100% 0px;
}
.AXTabs .AXTabsTray .rightArrowHandleBox .tabArrow {
display: block;
width: 29px;
height: 28px;
background: url('images/dx-right-arrows-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabs .AXTabsTray .rightArrowHandleBox .tabArrow:hover {
background: url('images/dx-right-arrows-01-r.png') no-repeat 50%;
}
.AXTabs .AXTabsTray .rightArrowMoreBox {
position: absolute;
right: 0px;
top: 1px;
width: 24px;
height: 28px;
background: #fff;
}
.AXTabs .AXTabsTray .rightArrowMoreBox .tabArrow {
display: block;
width: 24px;
height: 28px;
background: url('images/dx-right-arrows-more-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabs .AXTabsTray .rightArrowMoreBox .tabArrow:hover {
background: url('images/dx-right-arrows-more-01-r.png') no-repeat 50%;
}
.AXTabsLarge {
position: relative;
min-height: 46px;
overflow: hidden;
}
.AXTabsLarge .AXTabsTray {
background: url('images/dx-tab-bg-large.png');
}
.AXTabsLarge .AXTabsTray .trayScroll {
position: absolute;
left: 0px;
top: 0px;
height: 46px;
}
.AXTabsLarge .AXTabsTray .AXTab {
display: block;
float: left;
cursor: pointer;
position: relative;
height: 40px;
min-width: 100px;
padding: 0px 10px;
box-sizing: content-box !important;
margin: 4px 0px 0px 4px;
border: 1px solid #b9babc;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
font-size: 14px;
color: #6e7a86;
line-height: 40px;
text-align: center;
text-decoration: none;
outline: none;
}
.AXTabsLarge .AXTabsTray .AXTab {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#fdfdfd, #e8e8e8);
/* For Safari */
background-image: -o-linear-gradient(#fdfdfd, #e8e8e8);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#fdfdfd, #e8e8e8);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#fdfdfd, #e8e8e8);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
color: #6e7a85;
border: 1px solid #b9babc;
text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsLarge .AXTabsTray .AXTab:hover,
.AXTabsLarge .AXTabsTray .AXTab:focus {
background: #e8e8e8;
}
.AXTabsLarge .AXTabsTray .AXTab:active {
box-shadow: none;
}
.AXTabsLarge .AXTabsTray .AXTab.on {
text-shadow: none;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsLarge .AXTabsTray .AXTab:first-child {
margin-left: 5px;
}
.AXTabsLarge .AXTabsTray .AXTab.Classic {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c1cdd5, #98a4ae);
/* For Safari */
background-image: -o-linear-gradient(#c1cdd5, #98a4ae);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c1cdd5, #98a4ae);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c1cdd5, #98a4ae);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
color: #ebf4f7;
border: 1px solid #81898e;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsLarge .AXTabsTray .AXTab.Classic:hover,
.AXTabsLarge .AXTabsTray .AXTab.Classic:focus {
background: #98a4ae;
}
.AXTabsLarge .AXTabsTray .AXTab.Classic:active {
box-shadow: none;
}
.AXTabsLarge .AXTabsTray .AXTab.Classic.on {
text-shadow: none;
color: #81898e;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsLarge .AXTabsTray .AXTab.Blue {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#6faee1, #468ec9);
/* For Safari */
background-image: -o-linear-gradient(#6faee1, #468ec9);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#6faee1, #468ec9);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#6faee1, #468ec9);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
color: #d0ebfe;
border: 1px solid #3f80b1;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsLarge .AXTabsTray .AXTab.Blue:hover,
.AXTabsLarge .AXTabsTray .AXTab.Blue:focus {
background: #468ec9;
}
.AXTabsLarge .AXTabsTray .AXTab.Blue:active {
box-shadow: none;
}
.AXTabsLarge .AXTabsTray .AXTab.Blue.on {
text-shadow: none;
color: #3f80b1;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsLarge .AXTabsTray .AXTab.Green {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#98c87b, #79aa5a);
/* For Safari */
background-image: -o-linear-gradient(#98c87b, #79aa5a);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#98c87b, #79aa5a);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#98c87b, #79aa5a);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
color: #dffebe;
border: 1px solid #6a9751;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsLarge .AXTabsTray .AXTab.Green:hover,
.AXTabsLarge .AXTabsTray .AXTab.Green:focus {
background: #79aa5a;
}
.AXTabsLarge .AXTabsTray .AXTab.Green:active {
box-shadow: none;
}
.AXTabsLarge .AXTabsTray .AXTab.Green.on {
text-shadow: none;
color: #6a9751;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsLarge .AXTabsTray .AXTab.Red {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c65a5b, #a93b3e);
/* For Safari */
background-image: -o-linear-gradient(#c65a5b, #a93b3e);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c65a5b, #a93b3e);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c65a5b, #a93b3e);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
color: #fcccc9;
border: 1px solid #87302b;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsLarge .AXTabsTray .AXTab.Red:hover,
.AXTabsLarge .AXTabsTray .AXTab.Red:focus {
background: #a93b3e;
}
.AXTabsLarge .AXTabsTray .AXTab.Red:active {
box-shadow: none;
}
.AXTabsLarge .AXTabsTray .AXTab.Red.on {
text-shadow: none;
color: #87302b;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsLarge .AXTabsTray .AXTab[disabled] {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#d7d7d7, #d7d7d7);
/* For Safari */
background-image: -o-linear-gradient(#d7d7d7, #d7d7d7);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#d7d7d7, #d7d7d7);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#d7d7d7, #d7d7d7);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
color: #eaeaea;
border: 1px solid #cccccc;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
box-shadow: none;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsLarge .AXTabsTray .AXTab[disabled]:hover,
.AXTabsLarge .AXTabsTray .AXTab[disabled]:focus {
background: #d7d7d7;
}
.AXTabsLarge .AXTabsTray .AXTab[disabled]:active {
box-shadow: none;
}
.AXTabsLarge .AXTabsTray .AXTab[disabled].on {
text-shadow: none;
color: #cccccc;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsLarge .AXTabsTray .AXTab.closable {
padding-right: 20px;
}
.AXTabsLarge .AXTabsTray .AXTab .AXTabClose {
position: absolute;
right: 5px;
top: 0px;
font-family: axicon;
}
.AXTabsLarge .AXTabsTray .AXTab .AXTabClose:before {
content: "\f1b4";
}
.AXTabsLarge .AXTabsTray .leftArrowHandleBox {
position: absolute;
left: 0px;
top: 1px;
width: 29px;
height: 44px;
background: url('images/dx-left-arrows-bg.png') repeat-y 0px 0px;
}
.AXTabsLarge .AXTabsTray .leftArrowHandleBox .tabArrow {
display: block;
width: 29px;
height: 44px;
background: url('images/dx-left-arrows-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabsLarge .AXTabsTray .leftArrowHandleBox .tabArrow:hover {
background: url('images/dx-left-arrows-01-r.png') no-repeat 50%;
}
.AXTabsLarge .AXTabsTray .rightArrowHandleBox {
position: absolute;
right: 24px;
top: 1px;
width: 29px;
height: 44px;
background: url('images/dx-right-arrows-bg.png') repeat-y 100% 0px;
}
.AXTabsLarge .AXTabsTray .rightArrowHandleBox .tabArrow {
display: block;
width: 29px;
height: 44px;
background: url('images/dx-right-arrows-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabsLarge .AXTabsTray .rightArrowHandleBox .tabArrow:hover {
background: url('images/dx-right-arrows-01-r.png') no-repeat 50%;
}
.AXTabsLarge .AXTabsTray .rightArrowMoreBox {
position: absolute;
right: 0px;
top: 1px;
width: 24px;
height: 44px;
background: #fff;
}
.AXTabsLarge .AXTabsTray .rightArrowMoreBox .tabArrow {
display: block;
width: 24px;
height: 44px;
background: url('images/dx-right-arrows-more-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabsLarge .AXTabsTray .rightArrowMoreBox .tabArrow:hover {
background: url('images/dx-right-arrows-more-01-r.png') no-repeat 50%;
}
.AXTabsSmall {
position: relative;
min-height: 24px;
overflow: hidden;
}
.AXTabsSmall .AXTabsTray {
background: url('images/dx-tab-bg-small.png');
}
.AXTabsSmall .AXTabsTray .trayScroll {
position: absolute;
left: 0px;
top: 0px;
height: 24px;
}
.AXTabsSmall .AXTabsTray .AXTab {
display: block;
float: left;
cursor: pointer;
position: relative;
height: 20px;
min-width: 60px;
padding: 0px 10px;
box-sizing: content-box !important;
margin: 2px 0px 0px 2px;
border: 1px solid #b9babc;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
font-size: 11px;
color: #6e7a86;
line-height: 20px;
text-align: center;
text-decoration: none;
outline: none;
}
.AXTabsSmall .AXTabsTray .AXTab {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#fdfdfd, #e8e8e8);
/* For Safari */
background-image: -o-linear-gradient(#fdfdfd, #e8e8e8);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#fdfdfd, #e8e8e8);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#fdfdfd, #e8e8e8);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
/*For IE7-8-9*/
color: #6e7a85;
border: 1px solid #b9babc;
text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsSmall .AXTabsTray .AXTab:hover,
.AXTabsSmall .AXTabsTray .AXTab:focus {
background: #e8e8e8;
}
.AXTabsSmall .AXTabsTray .AXTab:active {
box-shadow: none;
}
.AXTabsSmall .AXTabsTray .AXTab.on {
text-shadow: none;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsSmall .AXTabsTray .AXTab:first-child {
margin-left: 5px;
}
.AXTabsSmall .AXTabsTray .AXTab.Classic {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c1cdd5, #98a4ae);
/* For Safari */
background-image: -o-linear-gradient(#c1cdd5, #98a4ae);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c1cdd5, #98a4ae);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c1cdd5, #98a4ae);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c1cdd5, endColorstr=#98a4ae);
/*For IE7-8-9*/
color: #ebf4f7;
border: 1px solid #81898e;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsSmall .AXTabsTray .AXTab.Classic:hover,
.AXTabsSmall .AXTabsTray .AXTab.Classic:focus {
background: #98a4ae;
}
.AXTabsSmall .AXTabsTray .AXTab.Classic:active {
box-shadow: none;
}
.AXTabsSmall .AXTabsTray .AXTab.Classic.on {
text-shadow: none;
color: #81898e;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsSmall .AXTabsTray .AXTab.Blue {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#6faee1, #468ec9);
/* For Safari */
background-image: -o-linear-gradient(#6faee1, #468ec9);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#6faee1, #468ec9);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#6faee1, #468ec9);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#6faee1, endColorstr=#468ec9);
/*For IE7-8-9*/
color: #d0ebfe;
border: 1px solid #3f80b1;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsSmall .AXTabsTray .AXTab.Blue:hover,
.AXTabsSmall .AXTabsTray .AXTab.Blue:focus {
background: #468ec9;
}
.AXTabsSmall .AXTabsTray .AXTab.Blue:active {
box-shadow: none;
}
.AXTabsSmall .AXTabsTray .AXTab.Blue.on {
text-shadow: none;
color: #3f80b1;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsSmall .AXTabsTray .AXTab.Green {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#98c87b, #79aa5a);
/* For Safari */
background-image: -o-linear-gradient(#98c87b, #79aa5a);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#98c87b, #79aa5a);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#98c87b, #79aa5a);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#98c87b, endColorstr=#79aa5a);
/*For IE7-8-9*/
color: #dffebe;
border: 1px solid #6a9751;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsSmall .AXTabsTray .AXTab.Green:hover,
.AXTabsSmall .AXTabsTray .AXTab.Green:focus {
background: #79aa5a;
}
.AXTabsSmall .AXTabsTray .AXTab.Green:active {
box-shadow: none;
}
.AXTabsSmall .AXTabsTray .AXTab.Green.on {
text-shadow: none;
color: #6a9751;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsSmall .AXTabsTray .AXTab.Red {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#c65a5b, #a93b3e);
/* For Safari */
background-image: -o-linear-gradient(#c65a5b, #a93b3e);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#c65a5b, #a93b3e);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#c65a5b, #a93b3e);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#c65a5b, endColorstr=#a93b3e);
/*For IE7-8-9*/
color: #fcccc9;
border: 1px solid #87302b;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsSmall .AXTabsTray .AXTab.Red:hover,
.AXTabsSmall .AXTabsTray .AXTab.Red:focus {
background: #a93b3e;
}
.AXTabsSmall .AXTabsTray .AXTab.Red:active {
box-shadow: none;
}
.AXTabsSmall .AXTabsTray .AXTab.Red.on {
text-shadow: none;
color: #87302b;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsSmall .AXTabsTray .AXTab[disabled] {
/*background: @stop;*/
background-image: -webkit-linear-gradient(#d7d7d7, #d7d7d7);
/* For Safari */
background-image: -o-linear-gradient(#d7d7d7, #d7d7d7);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#d7d7d7, #d7d7d7);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#d7d7d7, #d7d7d7);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#d7d7d7, endColorstr=#d7d7d7);
/*For IE7-8-9*/
color: #eaeaea;
border: 1px solid #cccccc;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
box-shadow: none;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.AXTabsSmall .AXTabsTray .AXTab[disabled]:hover,
.AXTabsSmall .AXTabsTray .AXTab[disabled]:focus {
background: #d7d7d7;
}
.AXTabsSmall .AXTabsTray .AXTab[disabled]:active {
box-shadow: none;
}
.AXTabsSmall .AXTabsTray .AXTab[disabled].on {
text-shadow: none;
color: #cccccc;
border-bottom: 1px solid #fff;
/*background: @stop;*/
background-image: -webkit-linear-gradient(#ffffff, #ffffff);
/* For Safari */
background-image: -o-linear-gradient(#ffffff, #ffffff);
/* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(#ffffff, #ffffff);
/* For Firefox 3.6 to 15 */
background-image: linear-gradient(#ffffff, #ffffff);
/* Standard syntax */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
-ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#ffffff);
/*For IE7-8-9*/
}
.AXTabsSmall .AXTabsTray .AXTab.closable {
padding-right: 20px;
}
.AXTabsSmall .AXTabsTray .AXTab .AXTabClose {
position: absolute;
right: 5px;
top: 0px;
font-family: axicon;
}
.AXTabsSmall .AXTabsTray .AXTab .AXTabClose:before {
content: "\f1b4";
}
.AXTabsSmall .AXTabsTray .leftArrowHandleBox {
position: absolute;
left: 0px;
top: 1px;
width: 29px;
height: 22px;
background: url('images/dx-left-arrows-bg.png') repeat-y 0px 0px;
}
.AXTabsSmall .AXTabsTray .leftArrowHandleBox .tabArrow {
display: block;
width: 29px;
height: 22px;
background: url('images/dx-left-arrows-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabsSmall .AXTabsTray .leftArrowHandleBox .tabArrow:hover {
background: url('images/dx-left-arrows-01-r.png') no-repeat 50%;
}
.AXTabsSmall .AXTabsTray .rightArrowHandleBox {
position: absolute;
right: 24px;
top: 1px;
width: 29px;
height: 22px;
background: url('images/dx-right-arrows-bg.png') repeat-y 100% 0px;
}
.AXTabsSmall .AXTabsTray .rightArrowHandleBox .tabArrow {
display: block;
width: 29px;
height: 22px;
background: url('images/dx-right-arrows-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabsSmall .AXTabsTray .rightArrowHandleBox .tabArrow:hover {
background: url('images/dx-right-arrows-01-r.png') no-repeat 50%;
}
.AXTabsSmall .AXTabsTray .rightArrowMoreBox {
position: absolute;
right: 0px;
top: 1px;
width: 24px;
height: 22px;
background: #fff;
}
.AXTabsSmall .AXTabsTray .rightArrowMoreBox .tabArrow {
display: block;
width: 24px;
height: 22px;
background: url('images/dx-right-arrows-more-01.png') no-repeat 50%;
text-indent: -1000px;
overflow: hidden;
}
.AXTabsSmall .AXTabsTray .rightArrowMoreBox .tabArrow:hover {
background: url('images/dx-right-arrows-more-01-r.png') no-repeat 50%;
} | 0.233357 | 0.110952 |
----------------------------------------------------*/
.tb-megamenu .dropdown-menu li > a:hover,
.tb-megamenu .dropdown-menu li > a:focus,
.tb-megamenu .dropdown-submenu:hover > a {
background: #4f4f4f;
}
.tb-megamenu .dropdown-menu a:visited {
color: #666;
}
.tb-megamenu hr {
margin: 0;
}
.tb-megamenu-admin-form .disabled {
pointer-events: none;
cursor: default;
opacity: .3;
}
/* -------------------------------------------------*/
/* TB MEGAMENU ADMIN UI
---------------------------------------------------*/
#tb-megamenu-admin {
min-height: 800px;
background: url(../images/grid-bg.jpg) top left;
margin: 0 -20px;
}
.tb-megamenu .admin-inline-toolbox h3 {
font-size: 18px;
line-height: 20px;
}
.tb-megamenu .admin-inline-toolbox h3 a.back-megamenu-toolbox {
font-size: 13px;
font-weight: normal;
}
/* Intro
---------------------*/
#tb-megamenu-admin-mm-intro {
float: left;
padding: 20px 145px 20px 20px;
text-shadow: 0 1px 1px white;
}
#tb-megamenu-admin-mm-intro h3 {
margin-top: 0;
}
#tb-megamenu-admin-mm-intro p,
#tb-megamenu-admin-mm-toolitem p,
#tb-megamenu-admin-mm-toolcol p,
#tb-megamenu-admin-mm-toolsub p {
display: block;
color: #999999;
font-size: 95%;
overflow: hidden;
}
/* Toolbox
---------------------*/
#tb-megamenu-admin-mm-tb {
float: left;
text-shadow: 0 1px 1px #fff;
}
#tb-megamenu-admin .admin-inline-toolbox {
position: relative;
}
#tb-megamenu-admin-mm-tb .admin-toolbox {
padding: 20px;
display: none;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
}
#tb-megamenu-admin-mm-tb .admin-toolbox h3 {
margin-top: 0;
}
#tb-megamenu-admin-mm-tb .admin-toolbox ul {
margin-left: 0;
margin-right: 20px;
float: left;
}
#tb-megamenu-admin-mm-intro > ul > li {
float: left;
}
#tb-megamenu-admin-mm-intro li {
margin-right: 20px;
}
#tb-megamenu-admin-mm-tb .admin-toolbox li > label,
#tb-megamenu-admin-mm-tb .admin-toolbox li > label a,
#tb-megamenu-admin-mm-intro li > label,
#tb-megamenu-admin-mm-intro li > label a {
font-size: 11px;
color: #999999;
}
#tb-megamenu-admin-mm-tb .btn [class^="icon-"],
#tb-megamenu-admin-mm-tb .btn [class*=" icon-"] {
margin-right: 0;
}
#tb-megamenu-admin-mm-tb .admin-toolbox li > label a:focus,
#tb-megamenu-admin-mm-tb .admin-toolbox li > label a:hover,
#tb-megamenu-admin-mm-intro li > label a:hover,
#tb-megamenu-admin-mm-intro li > label a:focus {
color: #0077bb;
}
/* Toolbox Actions ---- */
.tb-megamenu-admin-mm-row .toolbox-actions-group {
bottom: 9px;
position: absolute;
right: 20px;
}
.tb-megamenu-admin-mm-row .toolbox-links-groups {
top: 20px;
position: absolute;
right: 20px;
}
.tb-megamenu-admin-mm-row .toolbox-links-groups a {
color: #0074bd;
margin-left: 8px;
}
.tb-megamenu-admin-mm-row .toolbox-links-groups a:hover,
.tb-megamenu-admin-mm-row .toolbox-links-groups a:focus {
text-decoration: underline;
}
/* Fullscreen Toggle */
.tb-megamenu #navigation_params .tb-megamenu-admin-tog-fullscreen {
position: absolute;
right: 0;
top: -50px;
}
/* ADMIN LAYOUT
---------------------------------------------------*/
.tb-megamenu #tb-megamenu-block-wrapper .chzn-container,
.tb-megamenu #tb-megamenu-block-wrapper .chzn-drop{
width: 230px !important;
}
.tb-megamenu .chzn-container,
.tb-megamenu .chzn-drop {
max-width: 100% !important;
min-width: 100px;
width: 100% !important;
}
/* Toolbar ---*/
#tb-megamenu-admin fieldset {
padding: 0;
margin: 0;
border: 0;
}
#tb-megamenu-admin-toolbar .btn-group {
margin-left: 5px;
}
#tb-megamenu-admin-toolbar #tb-megamenu-admin-tb-save {
margin-right: 15px;
margin-left: 15px;
}
#tb-megamenu-admin-toolbar #tb-megamenu-admin-tb-close {
margin-left: 20px;
}
.tb-megamenu .btn [class^="icon-"],
.tb-megamenu .btn [class*=" icon-"] {
line-height: 1;
margin-right: 5px;
font-size: 14px;
}
#tb-megamenu-admin-toolbar button {
box-shadow: 1px 2px 2px rgba(0,0,0,.1);
}
/* Loading */
#tb-megamenu-admin-tb-recompile .icon-loading,
#tb-megamenu-admin-tb-recompile.loading .icon-check {
display: none;
}
#tb-megamenu-admin-tb-recompile.loading .icon-loading {
display: inline-block;
background: url(../images/loading.gif) no-repeat !important;
width: 14px;
height: 14px;
margin-bottom: -2px;
}
/* ADMIN TOOLBOX
---------------------------------------------------*/
.tb-megamenu .admin-inline-toolbox {
margin: 15px 0 20px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
background: #eee;
border-bottom: 1px solid #e6e6e6;
border-top: 1px solid #e6e6e6;
}
.tb-megamenu .admin-inline-toolbox ul {
margin: 0;
padding: 0;
}
.tb-megamenu .admin-inline-toolbox li {
margin: 0;
padding: 0;
display: inline-block;
list-style: none;
}
/* Fullscreen Toggle */
.tb-megamenu-admin-tog-fullscreen {
border: 1px solid #ccc;
background: #e6e6e6;
padding: 5px 10px;
}
/* ADMIN FORMS
---------------------------------------------------*/
/* Reset --- */
.tb-megamenu form label, form span.faux-label,
.tb-megamenu input#jform_title, input#jform_leveltitle, input#jform_grouptitle {
font-size: 100%;
}
.tb-megamenu fieldset input,
.tb-megamenu fieldset textarea,
.tb-megamenu fieldset select,
.tb-megamenu fieldset img,
.tb-megamenu fieldset button {
margin: 0;
float: none;
}
.tb-megamenu fieldset p {
font-size: 100%;
margin-bottom: 10px;
}
/* Button --- */
.tb-megamenu select, textarea,
.tb-megamenu input[type="text"], input[type="password"], input[type="datetime"],
.tb-megamenu input[type="datetime-local"], input[type="date"], input[type="month"],
.tb-megamenu input[type="time"], input[type="week"], input[type="number"],
.tb-megamenu input[type="email"], input[type="url"], input[type="search"],
.tb-megamenu input[type="tel"], input[type="color"], .uneditable-input,
.tb-megamenu .input-append .add-on, .input-prepend .add-on, .input-append .btn, .input-prepend .btn {
height: 22px;
line-height: 22px;
}
.tb-megamenu select, input[type="file"] {
height: 32px;
line-height: 32px;
}
/* Radio
--------*/
/* Radio Button Groups ---*/
.tb-megamenu .radio.btn-group input[type=radio] {
display: none;
}
.tb-megamenu .radio.btn-group > label:first-of-type {
margin-left: 0;
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
}
.tb-megamenu fieldset.radio.btn-group {
padding-left: 0;
padding-top: 0 !important;
}
.tb-megamenu fieldset select {
width: 180px;
}
/* Buttons
---------- */
.tb-megamenu .btn {
line-height: 22px;
}
.tb-megamenu .btn-success:hover {
border-color: #479047;
}
/* PLUGINS STYLES
--------------------------------------------------*/
/* Choosen
----------*/
/* @group Base */
.tb-megamenu .chzn-container {
font-size: 14px;
}
.tb-megamenu .chzn-container .chzn-drop {
background: #fff;
border: 1px solid #aaa;
border-top: 0;
top: 29px;
left: 0;
box-shadow: 0 4px 5px rgba(0,0,0,.15);
}
/* @end */
/* @group Single Chosen */
.tb-megamenu .chzn-container-single .chzn-single {
border-radius: 3px;
border: 1px solid #ccc;
box-shadow: 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);
font-size: 13px;
height: 21px;
line-height: 21px;
padding: 4px 0 4px 8px;
color: #555;
}
.tb-megamenu .chzn-container-single .chzn-default {
color: #999;
}
.tb-megamenu .chzn-container-single .chzn-single span {
margin-right: 26px;
}
.tb-megamenu .chzn-container-single .chzn-single abbr {
right: 26px;
top: 10px;
}
.tb-megamenu .chzn-container-single .chzn-single div {
width: 20px;
}
.tb-megamenu .chzn-container-single .chzn-single div b {
background-position: 0 4px;
}
.tb-megamenu .chzn-container-single .chzn-search {
padding: 5px 4px;
overflow: hidden;
}
.tb-megamenu .chzn-container-single .chzn-search input {
background-image: url(../images/search-invert.png);
background-position: 95% center;
margin: 0;
padding: 2px 20px 2px 5px;
border: 1px solid #eee;
float: none;
}
.tb-megamenu .chzn-container-single .chzn-search input:focus {
border: 1px solid rgba(82, 168, 236, .6);
}
.tb-megamenu .chzn-container .chzn-results li {
display: block;
font-size: 13px;
margin-right: 0 !important;
padding: 8px;
}
.tb-megamenu .chzn-container-single .chzn-drop {
border-radius: 0 0 3px 3px;
display: none;
width: 99%;
}
.tb-megamenu .chzn-with-drop .chzn-drop {
display: block;
}
/* @end */
/* @group Results */
.tb-megamenu .chzn-container .chzn-results {
clear: both;
}
.tb-megamenu .chzn-container .chzn-results .highlighted {
background-color: #07b;
background-image: -moz-linear-gradient(top, #0097ee, #0077bb);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0097ee), to(#0077bb));
background-image: -webkit-linear-gradient(top, #0097ee, #0077bb);
background-image: -o-linear-gradient(top, #0097ee, #0077bb);
background-image: linear-gradient(to bottom, #0097ee, #0077bb);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0097ee', endColorstr='#ff0077bb', GradientType=0);
color: #fff;
text-shadow: none;
}
.tb-megamenu .chzn-container .chzn-results li em {
background: #feffde;
font-style: normal;
}
.tb-megamenu .chzn-container .chzn-results .highlighted em {
background: transparent;
}
.tb-megamenu .chzn-container .chzn-results .no-results {
background: #f4f4f4;
display: list-item;
}
.tb-megamenu .chzn-container .chzn-results .group-result {
cursor: default;
color: #999;
font-weight: bold;
}
.tb-megamenu .chzn-container .chzn-results-scroll {
background: white;
margin: 0 4px;
position: absolute;
text-align: center;
width: 321px; /* This should by dynamic with js */
z-index: 1;
}
.tb-megamenu .chzn-container .chzn-results-scroll span {
display: inline-block;
height: 17px;
text-indent: -5000px;
width: 9px;
}
.tb-megamenu .chzn-container .chzn-results-scroll-down {
bottom: 0;
}
.tb-megamenu .chzn-container .chzn-results-scroll-down span {
background-position: -4px -3px;
}
.tb-megamenu .chzn-container .chzn-results-scroll-up span {
background-position: -22px -3px;
}
/* @end */
/* @group Active */
.tb-megamenu .chzn-container-active .chzn-single {
-webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
-moz-box-shadow : 0 0 5px rgba(0,0,0,.3);
box-shadow : 0 0 5px rgba(0,0,0,.3);
border: 1px solid #07b;
}
.tb-megamenu .chzn-with-drop a.chzn-single {
border: 1px solid #aaa;
background-color: #eee;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0 );
background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
background-image: -webkit-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
background-image: -moz-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
background-image: -o-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);
border-bottom-left-radius : 0;
border-bottom-right-radius: 0;
}
.tb-megamenu .chzn-with-drop a.chzn-single div b {
background-position: -18px 5px;
}
.tb-megamenu .chzn-container-active .chzn-choices {
box-shadow: 0 0 5px rgba(0,0,0,.3);
border: 1px solid #07b;
}
.tb-megamenu .chzn-container-active .chzn-choices .search-field input {
color: #333 !important;
}
/* @end */
/* Fix for Font Awesome */
.tb-megamenu [class^="icon-"]:before,
.tb-megamenu [class*=" icon-"]:before {
font-family: "FontAwesome";
}
.tb-megamenu .icon-eye-open:before,
.tb-megamenu .icon-eye:before {
content: "\f06e";
} | public/sites/all/modules/tb_megamenu/css/admin.css | ----------------------------------------------------*/
.tb-megamenu .dropdown-menu li > a:hover,
.tb-megamenu .dropdown-menu li > a:focus,
.tb-megamenu .dropdown-submenu:hover > a {
background: #4f4f4f;
}
.tb-megamenu .dropdown-menu a:visited {
color: #666;
}
.tb-megamenu hr {
margin: 0;
}
.tb-megamenu-admin-form .disabled {
pointer-events: none;
cursor: default;
opacity: .3;
}
/* -------------------------------------------------*/
/* TB MEGAMENU ADMIN UI
---------------------------------------------------*/
#tb-megamenu-admin {
min-height: 800px;
background: url(../images/grid-bg.jpg) top left;
margin: 0 -20px;
}
.tb-megamenu .admin-inline-toolbox h3 {
font-size: 18px;
line-height: 20px;
}
.tb-megamenu .admin-inline-toolbox h3 a.back-megamenu-toolbox {
font-size: 13px;
font-weight: normal;
}
/* Intro
---------------------*/
#tb-megamenu-admin-mm-intro {
float: left;
padding: 20px 145px 20px 20px;
text-shadow: 0 1px 1px white;
}
#tb-megamenu-admin-mm-intro h3 {
margin-top: 0;
}
#tb-megamenu-admin-mm-intro p,
#tb-megamenu-admin-mm-toolitem p,
#tb-megamenu-admin-mm-toolcol p,
#tb-megamenu-admin-mm-toolsub p {
display: block;
color: #999999;
font-size: 95%;
overflow: hidden;
}
/* Toolbox
---------------------*/
#tb-megamenu-admin-mm-tb {
float: left;
text-shadow: 0 1px 1px #fff;
}
#tb-megamenu-admin .admin-inline-toolbox {
position: relative;
}
#tb-megamenu-admin-mm-tb .admin-toolbox {
padding: 20px;
display: none;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
}
#tb-megamenu-admin-mm-tb .admin-toolbox h3 {
margin-top: 0;
}
#tb-megamenu-admin-mm-tb .admin-toolbox ul {
margin-left: 0;
margin-right: 20px;
float: left;
}
#tb-megamenu-admin-mm-intro > ul > li {
float: left;
}
#tb-megamenu-admin-mm-intro li {
margin-right: 20px;
}
#tb-megamenu-admin-mm-tb .admin-toolbox li > label,
#tb-megamenu-admin-mm-tb .admin-toolbox li > label a,
#tb-megamenu-admin-mm-intro li > label,
#tb-megamenu-admin-mm-intro li > label a {
font-size: 11px;
color: #999999;
}
#tb-megamenu-admin-mm-tb .btn [class^="icon-"],
#tb-megamenu-admin-mm-tb .btn [class*=" icon-"] {
margin-right: 0;
}
#tb-megamenu-admin-mm-tb .admin-toolbox li > label a:focus,
#tb-megamenu-admin-mm-tb .admin-toolbox li > label a:hover,
#tb-megamenu-admin-mm-intro li > label a:hover,
#tb-megamenu-admin-mm-intro li > label a:focus {
color: #0077bb;
}
/* Toolbox Actions ---- */
.tb-megamenu-admin-mm-row .toolbox-actions-group {
bottom: 9px;
position: absolute;
right: 20px;
}
.tb-megamenu-admin-mm-row .toolbox-links-groups {
top: 20px;
position: absolute;
right: 20px;
}
.tb-megamenu-admin-mm-row .toolbox-links-groups a {
color: #0074bd;
margin-left: 8px;
}
.tb-megamenu-admin-mm-row .toolbox-links-groups a:hover,
.tb-megamenu-admin-mm-row .toolbox-links-groups a:focus {
text-decoration: underline;
}
/* Fullscreen Toggle */
.tb-megamenu #navigation_params .tb-megamenu-admin-tog-fullscreen {
position: absolute;
right: 0;
top: -50px;
}
/* ADMIN LAYOUT
---------------------------------------------------*/
.tb-megamenu #tb-megamenu-block-wrapper .chzn-container,
.tb-megamenu #tb-megamenu-block-wrapper .chzn-drop{
width: 230px !important;
}
.tb-megamenu .chzn-container,
.tb-megamenu .chzn-drop {
max-width: 100% !important;
min-width: 100px;
width: 100% !important;
}
/* Toolbar ---*/
#tb-megamenu-admin fieldset {
padding: 0;
margin: 0;
border: 0;
}
#tb-megamenu-admin-toolbar .btn-group {
margin-left: 5px;
}
#tb-megamenu-admin-toolbar #tb-megamenu-admin-tb-save {
margin-right: 15px;
margin-left: 15px;
}
#tb-megamenu-admin-toolbar #tb-megamenu-admin-tb-close {
margin-left: 20px;
}
.tb-megamenu .btn [class^="icon-"],
.tb-megamenu .btn [class*=" icon-"] {
line-height: 1;
margin-right: 5px;
font-size: 14px;
}
#tb-megamenu-admin-toolbar button {
box-shadow: 1px 2px 2px rgba(0,0,0,.1);
}
/* Loading */
#tb-megamenu-admin-tb-recompile .icon-loading,
#tb-megamenu-admin-tb-recompile.loading .icon-check {
display: none;
}
#tb-megamenu-admin-tb-recompile.loading .icon-loading {
display: inline-block;
background: url(../images/loading.gif) no-repeat !important;
width: 14px;
height: 14px;
margin-bottom: -2px;
}
/* ADMIN TOOLBOX
---------------------------------------------------*/
.tb-megamenu .admin-inline-toolbox {
margin: 15px 0 20px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
background: #eee;
border-bottom: 1px solid #e6e6e6;
border-top: 1px solid #e6e6e6;
}
.tb-megamenu .admin-inline-toolbox ul {
margin: 0;
padding: 0;
}
.tb-megamenu .admin-inline-toolbox li {
margin: 0;
padding: 0;
display: inline-block;
list-style: none;
}
/* Fullscreen Toggle */
.tb-megamenu-admin-tog-fullscreen {
border: 1px solid #ccc;
background: #e6e6e6;
padding: 5px 10px;
}
/* ADMIN FORMS
---------------------------------------------------*/
/* Reset --- */
.tb-megamenu form label, form span.faux-label,
.tb-megamenu input#jform_title, input#jform_leveltitle, input#jform_grouptitle {
font-size: 100%;
}
.tb-megamenu fieldset input,
.tb-megamenu fieldset textarea,
.tb-megamenu fieldset select,
.tb-megamenu fieldset img,
.tb-megamenu fieldset button {
margin: 0;
float: none;
}
.tb-megamenu fieldset p {
font-size: 100%;
margin-bottom: 10px;
}
/* Button --- */
.tb-megamenu select, textarea,
.tb-megamenu input[type="text"], input[type="password"], input[type="datetime"],
.tb-megamenu input[type="datetime-local"], input[type="date"], input[type="month"],
.tb-megamenu input[type="time"], input[type="week"], input[type="number"],
.tb-megamenu input[type="email"], input[type="url"], input[type="search"],
.tb-megamenu input[type="tel"], input[type="color"], .uneditable-input,
.tb-megamenu .input-append .add-on, .input-prepend .add-on, .input-append .btn, .input-prepend .btn {
height: 22px;
line-height: 22px;
}
.tb-megamenu select, input[type="file"] {
height: 32px;
line-height: 32px;
}
/* Radio
--------*/
/* Radio Button Groups ---*/
.tb-megamenu .radio.btn-group input[type=radio] {
display: none;
}
.tb-megamenu .radio.btn-group > label:first-of-type {
margin-left: 0;
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
}
.tb-megamenu fieldset.radio.btn-group {
padding-left: 0;
padding-top: 0 !important;
}
.tb-megamenu fieldset select {
width: 180px;
}
/* Buttons
---------- */
.tb-megamenu .btn {
line-height: 22px;
}
.tb-megamenu .btn-success:hover {
border-color: #479047;
}
/* PLUGINS STYLES
--------------------------------------------------*/
/* Choosen
----------*/
/* @group Base */
.tb-megamenu .chzn-container {
font-size: 14px;
}
.tb-megamenu .chzn-container .chzn-drop {
background: #fff;
border: 1px solid #aaa;
border-top: 0;
top: 29px;
left: 0;
box-shadow: 0 4px 5px rgba(0,0,0,.15);
}
/* @end */
/* @group Single Chosen */
.tb-megamenu .chzn-container-single .chzn-single {
border-radius: 3px;
border: 1px solid #ccc;
box-shadow: 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);
font-size: 13px;
height: 21px;
line-height: 21px;
padding: 4px 0 4px 8px;
color: #555;
}
.tb-megamenu .chzn-container-single .chzn-default {
color: #999;
}
.tb-megamenu .chzn-container-single .chzn-single span {
margin-right: 26px;
}
.tb-megamenu .chzn-container-single .chzn-single abbr {
right: 26px;
top: 10px;
}
.tb-megamenu .chzn-container-single .chzn-single div {
width: 20px;
}
.tb-megamenu .chzn-container-single .chzn-single div b {
background-position: 0 4px;
}
.tb-megamenu .chzn-container-single .chzn-search {
padding: 5px 4px;
overflow: hidden;
}
.tb-megamenu .chzn-container-single .chzn-search input {
background-image: url(../images/search-invert.png);
background-position: 95% center;
margin: 0;
padding: 2px 20px 2px 5px;
border: 1px solid #eee;
float: none;
}
.tb-megamenu .chzn-container-single .chzn-search input:focus {
border: 1px solid rgba(82, 168, 236, .6);
}
.tb-megamenu .chzn-container .chzn-results li {
display: block;
font-size: 13px;
margin-right: 0 !important;
padding: 8px;
}
.tb-megamenu .chzn-container-single .chzn-drop {
border-radius: 0 0 3px 3px;
display: none;
width: 99%;
}
.tb-megamenu .chzn-with-drop .chzn-drop {
display: block;
}
/* @end */
/* @group Results */
.tb-megamenu .chzn-container .chzn-results {
clear: both;
}
.tb-megamenu .chzn-container .chzn-results .highlighted {
background-color: #07b;
background-image: -moz-linear-gradient(top, #0097ee, #0077bb);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0097ee), to(#0077bb));
background-image: -webkit-linear-gradient(top, #0097ee, #0077bb);
background-image: -o-linear-gradient(top, #0097ee, #0077bb);
background-image: linear-gradient(to bottom, #0097ee, #0077bb);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0097ee', endColorstr='#ff0077bb', GradientType=0);
color: #fff;
text-shadow: none;
}
.tb-megamenu .chzn-container .chzn-results li em {
background: #feffde;
font-style: normal;
}
.tb-megamenu .chzn-container .chzn-results .highlighted em {
background: transparent;
}
.tb-megamenu .chzn-container .chzn-results .no-results {
background: #f4f4f4;
display: list-item;
}
.tb-megamenu .chzn-container .chzn-results .group-result {
cursor: default;
color: #999;
font-weight: bold;
}
.tb-megamenu .chzn-container .chzn-results-scroll {
background: white;
margin: 0 4px;
position: absolute;
text-align: center;
width: 321px; /* This should by dynamic with js */
z-index: 1;
}
.tb-megamenu .chzn-container .chzn-results-scroll span {
display: inline-block;
height: 17px;
text-indent: -5000px;
width: 9px;
}
.tb-megamenu .chzn-container .chzn-results-scroll-down {
bottom: 0;
}
.tb-megamenu .chzn-container .chzn-results-scroll-down span {
background-position: -4px -3px;
}
.tb-megamenu .chzn-container .chzn-results-scroll-up span {
background-position: -22px -3px;
}
/* @end */
/* @group Active */
.tb-megamenu .chzn-container-active .chzn-single {
-webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
-moz-box-shadow : 0 0 5px rgba(0,0,0,.3);
box-shadow : 0 0 5px rgba(0,0,0,.3);
border: 1px solid #07b;
}
.tb-megamenu .chzn-with-drop a.chzn-single {
border: 1px solid #aaa;
background-color: #eee;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0 );
background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
background-image: -webkit-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
background-image: -moz-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
background-image: -o-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);
border-bottom-left-radius : 0;
border-bottom-right-radius: 0;
}
.tb-megamenu .chzn-with-drop a.chzn-single div b {
background-position: -18px 5px;
}
.tb-megamenu .chzn-container-active .chzn-choices {
box-shadow: 0 0 5px rgba(0,0,0,.3);
border: 1px solid #07b;
}
.tb-megamenu .chzn-container-active .chzn-choices .search-field input {
color: #333 !important;
}
/* @end */
/* Fix for Font Awesome */
.tb-megamenu [class^="icon-"]:before,
.tb-megamenu [class*=" icon-"]:before {
font-family: "FontAwesome";
}
.tb-megamenu .icon-eye-open:before,
.tb-megamenu .icon-eye:before {
content: "\f06e";
} | 0.173218 | 0.04725 |
body {
font-family: monospace;
background: #040d15;
}
a:hover {
text-decoration: none;
}
/*
=== TÍTULO ===
*/
.titulo-bg {
background-color: #EABF70;
color: #35240A;
border-radius: 0 0 8px 8px;
border: 2px solid #35240A;
border-top: none;
}
.titulo-row {
margin-bottom: 150px;
}
.titulo-row2 {
margin-bottom: 100px;
}
/*
=== CORPO BOVESPA ===
*/
#app {
display: none;
font-size: 3em;
text-align: center;
margin-top: 50px;
margin-bottom: 30px;
color: green;
}
.texto-info {
font-size: 2em;
color: white;
}
.container-info {
background: #01060c;
border-radius: 10px;
padding: 10px;
}
/*
=== CORPO EMPRESAS ===
*/
.label-empresas {
color: white;
line-height: 70px;
}
#select-row {
height: 70px;
background: #35240a69;
border-radius: 10px;
font-size: 2em;
}
.select-empresas {
width: 80%;
height: 70px;
background: none;
color: white;
border: 1px solid white;
cursor: pointer;
transition: 0.8s;
}
select.select-empresas:hover {
background: #EABF70;
color: #35240A;
border: 1px solid #35240A;
transition: 0.8s;
}
.botao-pesquisar-empresa {
width: 60%;
background: #EABF70;
color: #35240A;
border-radius: 10px;
transition: 0.8s;
}
.botao-pesquisar-empresa:hover, .botao-nova-pesquisa:hover {
background: none;
color: white;
border: 1px solid white;
transition: 0.8s;
}
.botao-nova-pesquisa {
width: 300px;
height: 60px;
font-size: 2em;
background: #EABF70;
color: #35240A;
border-radius: 10px;
transition: 0.8s;
}
#esconde-info {
display: none;
}
#reload-botao {
display: none;
height: 60px;
}
/*
=== BOTÕES HOME ===
*/
.botao{
border: 1px solid white;
color: white;
background: none;
padding: 20px;
font-size: 2.5em;
transition: 0.8s;
position: relative;
overflow: hidden;
}
.botao:hover {
color: #040d15;
text-decoration: none;
}
.botao::before {
content: "";
position: absolute;
left: 0;
width: 100%;
height: 0%;
background: white;
z-index: -1;
transition: 0.8s;
}
.botao1::before {
bottom: 0;
border-radius: 50% 50% 0 0;
}
.botao2::before {
top: 0;
border-radius: 0 0 50% 50%;
}
.botao:hover::before {
height: 180%;
}
/*Voltar*/
.botao-voltar-row {
margin-top: 80px;
}
.botao-voltar {
font-size: 1.7em;
background: none;
border: none;
border-left: 1px solid white;
border-bottom: 1px solid white;
padding: 8px;
color: white;
transition: 0.8s;
}
.botao-voltar:hover {
background: white;
color: #040d15;
transition: 0.8s;
}
/*
=== RODAPÉ ===
*/
footer {
background: #01060c;
width: 100%;
height: 30px;
color: white;
text-align: center;
line-height: 30px;
margin-top: 135px;
margin-bottom: 10px;
}
.rodape-empresas {
margin-top: 210px;
} | projetoPontoTel/static/css/main.css | body {
font-family: monospace;
background: #040d15;
}
a:hover {
text-decoration: none;
}
/*
=== TÍTULO ===
*/
.titulo-bg {
background-color: #EABF70;
color: #35240A;
border-radius: 0 0 8px 8px;
border: 2px solid #35240A;
border-top: none;
}
.titulo-row {
margin-bottom: 150px;
}
.titulo-row2 {
margin-bottom: 100px;
}
/*
=== CORPO BOVESPA ===
*/
#app {
display: none;
font-size: 3em;
text-align: center;
margin-top: 50px;
margin-bottom: 30px;
color: green;
}
.texto-info {
font-size: 2em;
color: white;
}
.container-info {
background: #01060c;
border-radius: 10px;
padding: 10px;
}
/*
=== CORPO EMPRESAS ===
*/
.label-empresas {
color: white;
line-height: 70px;
}
#select-row {
height: 70px;
background: #35240a69;
border-radius: 10px;
font-size: 2em;
}
.select-empresas {
width: 80%;
height: 70px;
background: none;
color: white;
border: 1px solid white;
cursor: pointer;
transition: 0.8s;
}
select.select-empresas:hover {
background: #EABF70;
color: #35240A;
border: 1px solid #35240A;
transition: 0.8s;
}
.botao-pesquisar-empresa {
width: 60%;
background: #EABF70;
color: #35240A;
border-radius: 10px;
transition: 0.8s;
}
.botao-pesquisar-empresa:hover, .botao-nova-pesquisa:hover {
background: none;
color: white;
border: 1px solid white;
transition: 0.8s;
}
.botao-nova-pesquisa {
width: 300px;
height: 60px;
font-size: 2em;
background: #EABF70;
color: #35240A;
border-radius: 10px;
transition: 0.8s;
}
#esconde-info {
display: none;
}
#reload-botao {
display: none;
height: 60px;
}
/*
=== BOTÕES HOME ===
*/
.botao{
border: 1px solid white;
color: white;
background: none;
padding: 20px;
font-size: 2.5em;
transition: 0.8s;
position: relative;
overflow: hidden;
}
.botao:hover {
color: #040d15;
text-decoration: none;
}
.botao::before {
content: "";
position: absolute;
left: 0;
width: 100%;
height: 0%;
background: white;
z-index: -1;
transition: 0.8s;
}
.botao1::before {
bottom: 0;
border-radius: 50% 50% 0 0;
}
.botao2::before {
top: 0;
border-radius: 0 0 50% 50%;
}
.botao:hover::before {
height: 180%;
}
/*Voltar*/
.botao-voltar-row {
margin-top: 80px;
}
.botao-voltar {
font-size: 1.7em;
background: none;
border: none;
border-left: 1px solid white;
border-bottom: 1px solid white;
padding: 8px;
color: white;
transition: 0.8s;
}
.botao-voltar:hover {
background: white;
color: #040d15;
transition: 0.8s;
}
/*
=== RODAPÉ ===
*/
footer {
background: #01060c;
width: 100%;
height: 30px;
color: white;
text-align: center;
line-height: 30px;
margin-top: 135px;
margin-bottom: 10px;
}
.rodape-empresas {
margin-top: 210px;
} | 0.356783 | 0.107719 |
.task-video .introduction {
margin: 20px 0;
}
.task-video .task-video-content {
overflow: hidden;
position: relative;
zoom: 1;
background: transparent;
transition: box-shadow 0.2s ease-in-out, background 0.2s ease-in-out;
}
.task-video .sections {
overflow-y: scroll;
}
.task-video .sections .section {
margin-bottom: 5px;
}
.task-video .section .title {
cursor: pointer;
font-weight: bold;
padding: 5px;
}
.task-video .section .title .duration {
float: right;
}
.task-video .section .title:hover,
.task-video .sections .active .title {
background: #DEF;
}
.task-video .section .description {
padding: 5px;
color: #999;
}
.task-video .section .description.hasImage {
display: flex;
align-items: center;
height: 100%;
}
.task-video .section .description.hasImage div.image {
width: 200px;
height: 100%;
margin: 0px 8px;
white-space: nowrap;
text-align: center;
flex-shrink: 0;
}
.task-video .section .description.hasImage div.image img {
width: 200px;
}
.task-video .time-link {
color: #36F;
cursor: pointer;
}
.task-video .time-link:hover {
text-decoration: underline;
}
.task-video .sections .viewed .title:after {
content: '';
display: inline-block;
width: 6px;
height: 12px;
border: solid #060;
border-width: 0 3px 3px 0;
transform: rotate(45deg);
margin-left: 10px;
}
.task-video .conclusion {
margin: 20px 0;
}
.task-video-narrow-mode .fixed-content .player,
.task-video-wide-mode .fixed-content {
background: #fff;
position: fixed;
top: 0;
left: 0;
z-index: 10;
-webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.66);
-moz-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.66);
box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.66);
}
.task-video-wide-mode .player {
position: absolute;
left: 0;
top: 0;
height: 100%;
}
.task-video-wide-mode .sections {
position: absolute;
height: 100%;
right: 0;
top: 0;
}
.task-video-narrow-mode .player {
width: 100%;
}
.task-video-narrow-mode .sections {
width: 100%;
} | pemFioi/taskVideo/player.css | .task-video .introduction {
margin: 20px 0;
}
.task-video .task-video-content {
overflow: hidden;
position: relative;
zoom: 1;
background: transparent;
transition: box-shadow 0.2s ease-in-out, background 0.2s ease-in-out;
}
.task-video .sections {
overflow-y: scroll;
}
.task-video .sections .section {
margin-bottom: 5px;
}
.task-video .section .title {
cursor: pointer;
font-weight: bold;
padding: 5px;
}
.task-video .section .title .duration {
float: right;
}
.task-video .section .title:hover,
.task-video .sections .active .title {
background: #DEF;
}
.task-video .section .description {
padding: 5px;
color: #999;
}
.task-video .section .description.hasImage {
display: flex;
align-items: center;
height: 100%;
}
.task-video .section .description.hasImage div.image {
width: 200px;
height: 100%;
margin: 0px 8px;
white-space: nowrap;
text-align: center;
flex-shrink: 0;
}
.task-video .section .description.hasImage div.image img {
width: 200px;
}
.task-video .time-link {
color: #36F;
cursor: pointer;
}
.task-video .time-link:hover {
text-decoration: underline;
}
.task-video .sections .viewed .title:after {
content: '';
display: inline-block;
width: 6px;
height: 12px;
border: solid #060;
border-width: 0 3px 3px 0;
transform: rotate(45deg);
margin-left: 10px;
}
.task-video .conclusion {
margin: 20px 0;
}
.task-video-narrow-mode .fixed-content .player,
.task-video-wide-mode .fixed-content {
background: #fff;
position: fixed;
top: 0;
left: 0;
z-index: 10;
-webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.66);
-moz-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.66);
box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.66);
}
.task-video-wide-mode .player {
position: absolute;
left: 0;
top: 0;
height: 100%;
}
.task-video-wide-mode .sections {
position: absolute;
height: 100%;
right: 0;
top: 0;
}
.task-video-narrow-mode .player {
width: 100%;
}
.task-video-narrow-mode .sections {
width: 100%;
} | 0.615319 | 0.120698 |
#submenu {
clear: both;
position: relative;
top: -1px;
z-index: 998;
height: 60px;
margin: 0px;
padding: 0 8px;
background: transparent url(/images/admin/menu/shadow.png) repeat-y 0 0;
/* ___ submenu items ___ */
/* ___ submenu: actions ___ */
/* ___ submenu: popup ___ */ }
#submenu > ul {
padding: 0px;
margin: 0px;
list-style: none;
border-top: 1px solid rgba(255, 255, 255, 0.4);
background: transparent url(/images/admin/menu/submenu/shadow.png) repeat-x 0 0;
border-top-right-radius: 3px ;
-moz-border-radius-top-right: 3px ;
-webkit-border-top-right-radius: 3px ;
height: 60px; }
#submenu > ul a {
text-decoration: none; }
#submenu > ul > li {
margin: 15px 7px 0 8px;
float: left; }
#submenu > ul > li.hoverable > a span em {
display: inline-block;
background: transparent url(/images/admin/menu/icons.png) no-repeat 0 -16px;
width: 12px;
height: 7px;
position: relative;
top: 0px;
left: 6px; }
#submenu > ul > li > a {
display: inline-block;
border-radius: 16px;
-moz-border-radius: 16px;
-webkit-border-radius: 16px;
box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2), 0 1px 0 0 rgba(255, 255, 255, 0.1) ;
-moz-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2), 0 1px 0 0 rgba(255, 255, 255, 0.1) ;
-webkit-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2), 0 1px 0 0 rgba(255, 255, 255, 0.1) ;
border: 1px solid rgba(0, 0, 0, 0.4);
border-top: 1px solid rgba(0, 0, 0, 0.3);
padding: 0px 16px 0px 16px;
height: 26px;
line-height: 22px;
outline: none; }
#submenu > ul > li > a span {
color: #fff;
font-size: 0.8em;
font-weight: normal;
text-shadow: 1px 1px 1px #000; }
#submenu > ul > li > a:hover {
border: 1px solid rgba(0, 0, 0, 0.9);
border-top: 1px solid rgba(0, 0, 0, 0.8); }
#submenu > ul > li > a.on, #submenu > ul > li > a:active {
border: 1px solid rgba(0, 0, 0, 0.2);
border-top: 1px solid rgba(0, 0, 0, 0.4);
border-bottom: 1px solid transparent !important;
box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0), 0 1px 0 0 rgba(255, 255, 255, 0.2) !important;
-moz-box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0), 0 1px 0 0 rgba(255, 255, 255, 0.2) !important;
-webkit-box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0), 0 1px 0 0 rgba(255, 255, 255, 0.2) !important; }
#submenu > ul > li > a.hover {
background: #fff !important;
border-color: transparent !important;
border-color-bottom: #fff;
padding-bottom: 0px;
border-bottom-left-radius: 0px !important;
-moz-border-radius-bottomleft: 0px !important;
-webkit-border-bottom-left-radius: 0px !important;
border-bottom-right-radius: 0px !important;
-moz-border-radius-bottomright: 0px !important;
-webkit-border-bottom-right-radius: 0px !important;
position: relative;
z-index: 998; }
#submenu > ul > li > a.hover span {
color: #8b8d9a;
text-shadow: none;
box-shadow: none " !important";
-moz-box-shadow: none " !important";
-webkit-box-shadow: none " !important"; }
#submenu > ul > li > a.hover span em {
background-position: -12px -16px; }
#submenu > ul > li > a.hover > em {
display: block;
position: absolute;
bottom: 0px;
right: -11px;
width: 13px;
height: 13px;
background: transparent url(/images/admin/menu/popup/bottom-right-corner.png) no-repeat 0 0; }
#submenu > .action {
display: block;
position: absolute;
top: 0px;
right: 22px;
height: 60px;
padding-left: 20px;
z-index: 1;
background: transparent url(/images/admin/menu/submenu/action-border.png) repeat-y left 0; }
#submenu > .action a {
margin-top: 18px;
display: inline-block;
background: rgba(0, 0, 0, 0.4);
border-radius: 16px;
-moz-border-radius: 16px;
-webkit-border-radius: 16px;
padding: 0px 10px 0 15px;
height: 22px;
line-height: 20px;
text-decoration: none;
border: 1px solid transparent;
outline: none; }
#submenu > .action a em {
display: inline-block;
position: relative;
background: transparent url(../../images/admin/menu/icons.png) no-repeat 0 0px;
height: 11px;
width: 11px;
top: 1px;
left: -5px; }
#submenu > .action a span {
position: relative;
top: -2px;
color: #fff;
font-size: 0.7em;
text-shadow: 1px 1px 1px #000; }
#submenu > .action a:hover {
border-color: black; }
#submenu .popup {
position: absolute;
top: 42px;
min-width: 250px;
background: #fff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
border-radius: 16px;
-moz-border-radius: 16px;
-webkit-border-radius: 16px;
border-top-left-radius: 0px ;
-moz-border-radius-topleft: 0px ;
-webkit-border-top-left-radius: 0px ;
z-index: 997; }
#submenu .popup a {
color: #1f82bc;
text-decoration: none; }
#submenu .popup a:hover {
text-decoration: underline; }
#submenu .popup .header {
border-bottom: 1px dotted #bbbbbd;
padding-bottom: 6px;
margin: 0px 16px; }
#submenu .popup .inner {
padding: 8px 16px; }
#submenu .popup h2 {
font-size: 0.7em;
font-weight: bold;
color: #1e1f26;
margin-bottom: 0px; }
#submenu .popup p {
margin: 0px;
padding: 10px 0 0 0px; }
#submenu .popup p a {
font-size: 0.8em;
background: transparent url(/images/admin/menu/popup/add.png) no-repeat left 4px;
padding-left: 12px; }
#submenu .popup p.edit {
padding-top: 0px; }
#submenu .popup p.edit a {
background: transparent url(/images/admin/menu/popup/bullet.png) no-repeat left 5px; }
#submenu .popup ul {
list-style-image: url(/images/admin/menu/popup/bullet.png);
margin: 0px 0px 0 15px; }
#submenu .popup ul li {
position: relative; }
#submenu .popup ul li a {
font-size: 0.7em; }
#submenu .popup ul li span {
display: inline;
position: absolute;
top: 6px;
right: 15px;
color: #8b8d9a;
font-size: 0.7em; }
#submenu .popup ul.big-links {
list-style: none;
margin: 0px; }
#submenu .popup ul.big-links li {
margin: 10px 0; }
#submenu .popup ul.big-links li a {
border-radius: 16px;
-moz-border-radius: 16px;
-webkit-border-radius: 16px;
padding: 3px 10px;
background: #ebedf4;
font-weight: bold;
font-size: 0.8em; }
#submenu .popup .footer {
background: #ebedf4;
padding: 8px 16px;
border-bottom-left-radius: 16px ;
-moz-border-radius-bottom-left: 16px ;
-webkit-border-bottom-left-radius: 16px ;
border-bottom-right-radius: 16px ;
-moz-border-radius-bottom-right: 16px ;
-webkit-border-bottom-right-radius: 16px ; }
#submenu .popup .footer a {
color: #8b8d9a;
font-weight: bold; }
/* ___ menu ___ */
#menu {
padding: 0px;
margin: 0px;
list-style: none;
margin: 20px 0 0 0px; }
#menu a {
text-decoration: none; }
#menu li.item {
float: left;
position: relative;
z-index: 994; }
#menu li.item > span, #menu li.item a {
float: left;
display: block; }
#menu li.item > span {
background: transparent url(/images/admin/menu/left.png) no-repeat 0 0;
width: 40px;
height: 39px;
background-position: 0 -39px; }
#menu li.item.first > span {
width: 18px;
background-position: 0 0; }
#menu li.item a {
background: transparent url(/images/admin/menu/right.png) no-repeat right 0px;
padding: 0px 52px 0 2px;
height: 39px;
line-height: 26px;
outline: none; }
#menu li.item a em, #menu li.item a span {
display: inline-block;
position: relative; }
#menu li.item a em {
background: transparent url(/images/admin/menu/icons.png) no-repeat 0px 0px; }
#menu li.item a span {
top: 9px;
left: 6px;
color: #787A89;
text-shadow: #C5CFD1 1px 1px 1px;
font-size: 0.8em; }
#menu li.item.item-2 {
left: -35px;
z-index: 991; }
#menu li.item.item-3 {
left: -70px;
z-index: 990; }
#menu li.item.item-4 {
left: -105px;
z-index: 989; }
#menu li.item.item-5 {
left: -140px;
z-index: 988; }
/* ___ section/color/icon associations ___ */
#menu li.contents a em {
position: relative;
width: 16px;
height: 12px;
line-height: 13px;
background-position: 0 -64px;
top: 10px;
left: 0; }
body.contents #menu li.contents {
z-index: 999; }
body.contents #menu li.contents a {
background-position: right -78px; }
body.contents #menu li.contents a span {
color: #fff;
text-shadow: none; }
body.contents #menu li.contents > span {
background-position: -80px -39px; }
body.contents #menu li.contents.first > span {
background-position: -36px 0px; }
body.contents #menu li.contents em {
position: relative;
width: 16px;
height: 12px;
line-height: 13px;
background-position: -16px -64px;
top: 10px;
left: 0; }
body.contents #submenu > ul {
background: #23242b url(/images/admin/menu/submenu/black-bg.png) repeat-x 0 0;
border-color: rgba(255, 255, 255, 0.2); }
body.contents #submenu > ul > li > a {
border: 1px solid rgba(0, 0, 0, 0.2);
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(0, 0, 0, 0.6);
box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1), 0 1px 0 0 rgba(255, 255, 255, 0.1) ;
-moz-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1), 0 1px 0 0 rgba(255, 255, 255, 0.1) ;
-webkit-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1), 0 1px 0 0 rgba(255, 255, 255, 0.1) ;
background: #27272e;
background: -moz-linear-gradient(0% 100% 90deg, #1e1e24, #303138);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#303138), to(#1e1e24)); }
body.contents #submenu > ul > li > a.on, body.contents #submenu > ul > li > a:active {
border: 1px solid rgba(0, 0, 0, 0.4);
border-top: 1px solid rgba(0, 0, 0, 0.6);
background: #1f2026;
background: -moz-linear-gradient(0% 100% 90deg, #212229, #1e1e24);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1e1e24), to(#212229)); }
body.contents #submenu > .action {
background-image: url(/images/admin/menu/submenu/black-action-border.png) !important; }
#menu li.assets a em {
position: relative;
width: 20px;
height: 16px;
line-height: 17px;
background-position: 0 -48px;
top: 11px;
left: 0; }
body.assets #menu li.assets {
z-index: 999; }
body.assets #menu li.assets a {
background-position: right -39px; }
body.assets #menu li.assets a span {
color: #fff;
text-shadow: none; }
body.assets #menu li.assets > span {
background-position: -40px -39px; }
body.assets #menu li.assets.first > span {
background-position: -18px 0px; }
body.assets #menu li.assets em {
position: relative;
width: 20px;
height: 16px;
line-height: 17px;
background-position: -20px -48px;
top: 11px;
left: 0; }
body.assets #submenu > ul {
background-color: #2e9a7d; }
body.assets #submenu > ul > li > a {
background: #1c765d;
background: -moz-linear-gradient(0% 100% 90deg, #13604b, #258c70);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#258c70), to(#13604b)); }
body.assets #submenu > ul > li > a.on, body.assets #submenu > ul > li > a:active {
background: #176550;
background: -moz-linear-gradient(0% 100% 90deg, #166d55, #195e4b);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#195e4b), to(#166d55)); }
#menu li.settings a em {
position: relative;
width: 14px;
height: 13px;
line-height: 14px;
background-position: 0 -32px;
top: 11px;
left: 0; }
body.settings #menu li.settings {
z-index: 999; }
body.settings #menu li.settings a {
background-position: right -117px; }
body.settings #menu li.settings a span {
color: #fff;
text-shadow: none; }
body.settings #menu li.settings > span {
background-position: -120px -39px; }
body.settings #menu li.settings.first > span {
background-position: -54px 0px; }
body.settings #menu li.settings em {
position: relative;
width: 14px;
height: 13px;
line-height: 14px;
background-position: -14px -32px;
top: 11px;
left: 0; }
body.settings #submenu > ul {
background-color: #2579ae; }
body.settings #submenu > ul > li > a {
background: #195f8d;
background: -moz-linear-gradient(0% 100% 90deg, #135179, #1f6ea1);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1f6ea1), to(#135179)); }
body.settings #submenu > ul > li > a.on, body.settings #submenu > ul > li > a:active {
background: #15527a;
background: -moz-linear-gradient(0% 100% 90deg, #175b88, #13496c);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#13496c), to(#175b88)); } | public/stylesheets/admin/menu.css | #submenu {
clear: both;
position: relative;
top: -1px;
z-index: 998;
height: 60px;
margin: 0px;
padding: 0 8px;
background: transparent url(/images/admin/menu/shadow.png) repeat-y 0 0;
/* ___ submenu items ___ */
/* ___ submenu: actions ___ */
/* ___ submenu: popup ___ */ }
#submenu > ul {
padding: 0px;
margin: 0px;
list-style: none;
border-top: 1px solid rgba(255, 255, 255, 0.4);
background: transparent url(/images/admin/menu/submenu/shadow.png) repeat-x 0 0;
border-top-right-radius: 3px ;
-moz-border-radius-top-right: 3px ;
-webkit-border-top-right-radius: 3px ;
height: 60px; }
#submenu > ul a {
text-decoration: none; }
#submenu > ul > li {
margin: 15px 7px 0 8px;
float: left; }
#submenu > ul > li.hoverable > a span em {
display: inline-block;
background: transparent url(/images/admin/menu/icons.png) no-repeat 0 -16px;
width: 12px;
height: 7px;
position: relative;
top: 0px;
left: 6px; }
#submenu > ul > li > a {
display: inline-block;
border-radius: 16px;
-moz-border-radius: 16px;
-webkit-border-radius: 16px;
box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2), 0 1px 0 0 rgba(255, 255, 255, 0.1) ;
-moz-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2), 0 1px 0 0 rgba(255, 255, 255, 0.1) ;
-webkit-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2), 0 1px 0 0 rgba(255, 255, 255, 0.1) ;
border: 1px solid rgba(0, 0, 0, 0.4);
border-top: 1px solid rgba(0, 0, 0, 0.3);
padding: 0px 16px 0px 16px;
height: 26px;
line-height: 22px;
outline: none; }
#submenu > ul > li > a span {
color: #fff;
font-size: 0.8em;
font-weight: normal;
text-shadow: 1px 1px 1px #000; }
#submenu > ul > li > a:hover {
border: 1px solid rgba(0, 0, 0, 0.9);
border-top: 1px solid rgba(0, 0, 0, 0.8); }
#submenu > ul > li > a.on, #submenu > ul > li > a:active {
border: 1px solid rgba(0, 0, 0, 0.2);
border-top: 1px solid rgba(0, 0, 0, 0.4);
border-bottom: 1px solid transparent !important;
box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0), 0 1px 0 0 rgba(255, 255, 255, 0.2) !important;
-moz-box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0), 0 1px 0 0 rgba(255, 255, 255, 0.2) !important;
-webkit-box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0), 0 1px 0 0 rgba(255, 255, 255, 0.2) !important; }
#submenu > ul > li > a.hover {
background: #fff !important;
border-color: transparent !important;
border-color-bottom: #fff;
padding-bottom: 0px;
border-bottom-left-radius: 0px !important;
-moz-border-radius-bottomleft: 0px !important;
-webkit-border-bottom-left-radius: 0px !important;
border-bottom-right-radius: 0px !important;
-moz-border-radius-bottomright: 0px !important;
-webkit-border-bottom-right-radius: 0px !important;
position: relative;
z-index: 998; }
#submenu > ul > li > a.hover span {
color: #8b8d9a;
text-shadow: none;
box-shadow: none " !important";
-moz-box-shadow: none " !important";
-webkit-box-shadow: none " !important"; }
#submenu > ul > li > a.hover span em {
background-position: -12px -16px; }
#submenu > ul > li > a.hover > em {
display: block;
position: absolute;
bottom: 0px;
right: -11px;
width: 13px;
height: 13px;
background: transparent url(/images/admin/menu/popup/bottom-right-corner.png) no-repeat 0 0; }
#submenu > .action {
display: block;
position: absolute;
top: 0px;
right: 22px;
height: 60px;
padding-left: 20px;
z-index: 1;
background: transparent url(/images/admin/menu/submenu/action-border.png) repeat-y left 0; }
#submenu > .action a {
margin-top: 18px;
display: inline-block;
background: rgba(0, 0, 0, 0.4);
border-radius: 16px;
-moz-border-radius: 16px;
-webkit-border-radius: 16px;
padding: 0px 10px 0 15px;
height: 22px;
line-height: 20px;
text-decoration: none;
border: 1px solid transparent;
outline: none; }
#submenu > .action a em {
display: inline-block;
position: relative;
background: transparent url(../../images/admin/menu/icons.png) no-repeat 0 0px;
height: 11px;
width: 11px;
top: 1px;
left: -5px; }
#submenu > .action a span {
position: relative;
top: -2px;
color: #fff;
font-size: 0.7em;
text-shadow: 1px 1px 1px #000; }
#submenu > .action a:hover {
border-color: black; }
#submenu .popup {
position: absolute;
top: 42px;
min-width: 250px;
background: #fff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
border-radius: 16px;
-moz-border-radius: 16px;
-webkit-border-radius: 16px;
border-top-left-radius: 0px ;
-moz-border-radius-topleft: 0px ;
-webkit-border-top-left-radius: 0px ;
z-index: 997; }
#submenu .popup a {
color: #1f82bc;
text-decoration: none; }
#submenu .popup a:hover {
text-decoration: underline; }
#submenu .popup .header {
border-bottom: 1px dotted #bbbbbd;
padding-bottom: 6px;
margin: 0px 16px; }
#submenu .popup .inner {
padding: 8px 16px; }
#submenu .popup h2 {
font-size: 0.7em;
font-weight: bold;
color: #1e1f26;
margin-bottom: 0px; }
#submenu .popup p {
margin: 0px;
padding: 10px 0 0 0px; }
#submenu .popup p a {
font-size: 0.8em;
background: transparent url(/images/admin/menu/popup/add.png) no-repeat left 4px;
padding-left: 12px; }
#submenu .popup p.edit {
padding-top: 0px; }
#submenu .popup p.edit a {
background: transparent url(/images/admin/menu/popup/bullet.png) no-repeat left 5px; }
#submenu .popup ul {
list-style-image: url(/images/admin/menu/popup/bullet.png);
margin: 0px 0px 0 15px; }
#submenu .popup ul li {
position: relative; }
#submenu .popup ul li a {
font-size: 0.7em; }
#submenu .popup ul li span {
display: inline;
position: absolute;
top: 6px;
right: 15px;
color: #8b8d9a;
font-size: 0.7em; }
#submenu .popup ul.big-links {
list-style: none;
margin: 0px; }
#submenu .popup ul.big-links li {
margin: 10px 0; }
#submenu .popup ul.big-links li a {
border-radius: 16px;
-moz-border-radius: 16px;
-webkit-border-radius: 16px;
padding: 3px 10px;
background: #ebedf4;
font-weight: bold;
font-size: 0.8em; }
#submenu .popup .footer {
background: #ebedf4;
padding: 8px 16px;
border-bottom-left-radius: 16px ;
-moz-border-radius-bottom-left: 16px ;
-webkit-border-bottom-left-radius: 16px ;
border-bottom-right-radius: 16px ;
-moz-border-radius-bottom-right: 16px ;
-webkit-border-bottom-right-radius: 16px ; }
#submenu .popup .footer a {
color: #8b8d9a;
font-weight: bold; }
/* ___ menu ___ */
#menu {
padding: 0px;
margin: 0px;
list-style: none;
margin: 20px 0 0 0px; }
#menu a {
text-decoration: none; }
#menu li.item {
float: left;
position: relative;
z-index: 994; }
#menu li.item > span, #menu li.item a {
float: left;
display: block; }
#menu li.item > span {
background: transparent url(/images/admin/menu/left.png) no-repeat 0 0;
width: 40px;
height: 39px;
background-position: 0 -39px; }
#menu li.item.first > span {
width: 18px;
background-position: 0 0; }
#menu li.item a {
background: transparent url(/images/admin/menu/right.png) no-repeat right 0px;
padding: 0px 52px 0 2px;
height: 39px;
line-height: 26px;
outline: none; }
#menu li.item a em, #menu li.item a span {
display: inline-block;
position: relative; }
#menu li.item a em {
background: transparent url(/images/admin/menu/icons.png) no-repeat 0px 0px; }
#menu li.item a span {
top: 9px;
left: 6px;
color: #787A89;
text-shadow: #C5CFD1 1px 1px 1px;
font-size: 0.8em; }
#menu li.item.item-2 {
left: -35px;
z-index: 991; }
#menu li.item.item-3 {
left: -70px;
z-index: 990; }
#menu li.item.item-4 {
left: -105px;
z-index: 989; }
#menu li.item.item-5 {
left: -140px;
z-index: 988; }
/* ___ section/color/icon associations ___ */
#menu li.contents a em {
position: relative;
width: 16px;
height: 12px;
line-height: 13px;
background-position: 0 -64px;
top: 10px;
left: 0; }
body.contents #menu li.contents {
z-index: 999; }
body.contents #menu li.contents a {
background-position: right -78px; }
body.contents #menu li.contents a span {
color: #fff;
text-shadow: none; }
body.contents #menu li.contents > span {
background-position: -80px -39px; }
body.contents #menu li.contents.first > span {
background-position: -36px 0px; }
body.contents #menu li.contents em {
position: relative;
width: 16px;
height: 12px;
line-height: 13px;
background-position: -16px -64px;
top: 10px;
left: 0; }
body.contents #submenu > ul {
background: #23242b url(/images/admin/menu/submenu/black-bg.png) repeat-x 0 0;
border-color: rgba(255, 255, 255, 0.2); }
body.contents #submenu > ul > li > a {
border: 1px solid rgba(0, 0, 0, 0.2);
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(0, 0, 0, 0.6);
box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1), 0 1px 0 0 rgba(255, 255, 255, 0.1) ;
-moz-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1), 0 1px 0 0 rgba(255, 255, 255, 0.1) ;
-webkit-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1), 0 1px 0 0 rgba(255, 255, 255, 0.1) ;
background: #27272e;
background: -moz-linear-gradient(0% 100% 90deg, #1e1e24, #303138);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#303138), to(#1e1e24)); }
body.contents #submenu > ul > li > a.on, body.contents #submenu > ul > li > a:active {
border: 1px solid rgba(0, 0, 0, 0.4);
border-top: 1px solid rgba(0, 0, 0, 0.6);
background: #1f2026;
background: -moz-linear-gradient(0% 100% 90deg, #212229, #1e1e24);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1e1e24), to(#212229)); }
body.contents #submenu > .action {
background-image: url(/images/admin/menu/submenu/black-action-border.png) !important; }
#menu li.assets a em {
position: relative;
width: 20px;
height: 16px;
line-height: 17px;
background-position: 0 -48px;
top: 11px;
left: 0; }
body.assets #menu li.assets {
z-index: 999; }
body.assets #menu li.assets a {
background-position: right -39px; }
body.assets #menu li.assets a span {
color: #fff;
text-shadow: none; }
body.assets #menu li.assets > span {
background-position: -40px -39px; }
body.assets #menu li.assets.first > span {
background-position: -18px 0px; }
body.assets #menu li.assets em {
position: relative;
width: 20px;
height: 16px;
line-height: 17px;
background-position: -20px -48px;
top: 11px;
left: 0; }
body.assets #submenu > ul {
background-color: #2e9a7d; }
body.assets #submenu > ul > li > a {
background: #1c765d;
background: -moz-linear-gradient(0% 100% 90deg, #13604b, #258c70);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#258c70), to(#13604b)); }
body.assets #submenu > ul > li > a.on, body.assets #submenu > ul > li > a:active {
background: #176550;
background: -moz-linear-gradient(0% 100% 90deg, #166d55, #195e4b);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#195e4b), to(#166d55)); }
#menu li.settings a em {
position: relative;
width: 14px;
height: 13px;
line-height: 14px;
background-position: 0 -32px;
top: 11px;
left: 0; }
body.settings #menu li.settings {
z-index: 999; }
body.settings #menu li.settings a {
background-position: right -117px; }
body.settings #menu li.settings a span {
color: #fff;
text-shadow: none; }
body.settings #menu li.settings > span {
background-position: -120px -39px; }
body.settings #menu li.settings.first > span {
background-position: -54px 0px; }
body.settings #menu li.settings em {
position: relative;
width: 14px;
height: 13px;
line-height: 14px;
background-position: -14px -32px;
top: 11px;
left: 0; }
body.settings #submenu > ul {
background-color: #2579ae; }
body.settings #submenu > ul > li > a {
background: #195f8d;
background: -moz-linear-gradient(0% 100% 90deg, #135179, #1f6ea1);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1f6ea1), to(#135179)); }
body.settings #submenu > ul > li > a.on, body.settings #submenu > ul > li > a:active {
background: #15527a;
background: -moz-linear-gradient(0% 100% 90deg, #175b88, #13496c);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#13496c), to(#175b88)); } | 0.202443 | 0.067148 |
margin: 20px 0;
padding: 20px;
background-color: #ebebeb;
display: inline-block;
border: 1px solid #e0e0e0;
}
#nbdq-add-field h4 {
margin: 0 0 10px;
text-transform: uppercase;
}
#nbdq-add-field label {
display: block;
margin-bottom: 10px;
}
#nbdq-add-field input[type="text"] {
width: 300px;
}
#nbdq_form_fields_form {
margin-bottom: 30px;
}
#nbdq_form_fields_form button[type="submit"].button-primary {
margin-top: 30px;
}
#nbdq_form_fields .td_field_action {
text-align: center;
}
#nbdq_form_fields tr.disabled-row td:not( .td_field_action ) {
opacity: 0.3;
}
#nbdq_form_fields tr.disabled-row .td_field_action .edit_field {
display: none;
}
#nbdq_form_fields tr:not( .is_custom ) .td_field_action .remove_field {
display: none;
}
#nbdq-add-field input.required,
#nbdq-add-field input.field-exists {
border: 1px solid rgba( 253, 76, 76, 1 );
-webkit-box-shadow: 2px 1px 10px 1px rgba( 253, 76, 76, 0.5 );
-moz-box-shadow: 2px 1px 10px 1px rgba( 253, 76, 76, 0.5 );
box-shadow: 2px 1px 10px 1px rgba( 253, 76, 76, 0.5 );
}
div#nbdq_field_add_edit_form input[type="text"], div#nbdq_field_add_edit_form select {
width: 100%;
padding: 5px 5px;
}
.nbdq-form-link{
margin-left: 240px;
}
#nbdq_field_add_edit_form td.label{
width: 100px;
}
#nbdq_field_add_edit_form td{
padding: 5px;
}
#nbdq_field_add_edit_form .ui-dialog-titlebar.ui-widget-header.ui-corner-all.ui-helper-clearfix.ui-draggable-handle {
border-radius: 0;
border: 0;
}
#nbdq_field_add_edit_form textarea {
width: 100%;
}
#nbdq_field_add_edit_form small {
color: #72777c;
font-style: italic;
}
#nbdq_field_add_edit_form button.ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-icon-only.ui-dialog-titlebar-close {
margin-top: 6px;
}
#nbdq_field_add_edit_form select, #nbdq_field_add_edit_form input[type="text"] {
background: none;
box-shadow: none;
}
#nbdq_form_fields td.ui-sortable-handle:before{
content: '\f333';
font-family: Dashicons;
text-align: center;
line-height: 1;
color: #999;
display: block;
width: 17px;
height: 100%;
margin: 4px 0 0 0;
} | nbdesignonline/assets/css/admin-quote.css | margin: 20px 0;
padding: 20px;
background-color: #ebebeb;
display: inline-block;
border: 1px solid #e0e0e0;
}
#nbdq-add-field h4 {
margin: 0 0 10px;
text-transform: uppercase;
}
#nbdq-add-field label {
display: block;
margin-bottom: 10px;
}
#nbdq-add-field input[type="text"] {
width: 300px;
}
#nbdq_form_fields_form {
margin-bottom: 30px;
}
#nbdq_form_fields_form button[type="submit"].button-primary {
margin-top: 30px;
}
#nbdq_form_fields .td_field_action {
text-align: center;
}
#nbdq_form_fields tr.disabled-row td:not( .td_field_action ) {
opacity: 0.3;
}
#nbdq_form_fields tr.disabled-row .td_field_action .edit_field {
display: none;
}
#nbdq_form_fields tr:not( .is_custom ) .td_field_action .remove_field {
display: none;
}
#nbdq-add-field input.required,
#nbdq-add-field input.field-exists {
border: 1px solid rgba( 253, 76, 76, 1 );
-webkit-box-shadow: 2px 1px 10px 1px rgba( 253, 76, 76, 0.5 );
-moz-box-shadow: 2px 1px 10px 1px rgba( 253, 76, 76, 0.5 );
box-shadow: 2px 1px 10px 1px rgba( 253, 76, 76, 0.5 );
}
div#nbdq_field_add_edit_form input[type="text"], div#nbdq_field_add_edit_form select {
width: 100%;
padding: 5px 5px;
}
.nbdq-form-link{
margin-left: 240px;
}
#nbdq_field_add_edit_form td.label{
width: 100px;
}
#nbdq_field_add_edit_form td{
padding: 5px;
}
#nbdq_field_add_edit_form .ui-dialog-titlebar.ui-widget-header.ui-corner-all.ui-helper-clearfix.ui-draggable-handle {
border-radius: 0;
border: 0;
}
#nbdq_field_add_edit_form textarea {
width: 100%;
}
#nbdq_field_add_edit_form small {
color: #72777c;
font-style: italic;
}
#nbdq_field_add_edit_form button.ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-icon-only.ui-dialog-titlebar-close {
margin-top: 6px;
}
#nbdq_field_add_edit_form select, #nbdq_field_add_edit_form input[type="text"] {
background: none;
box-shadow: none;
}
#nbdq_form_fields td.ui-sortable-handle:before{
content: '\f333';
font-family: Dashicons;
text-align: center;
line-height: 1;
color: #999;
display: block;
width: 17px;
height: 100%;
margin: 4px 0 0 0;
} | 0.313 | 0.122313 |
.checkbox-todo-riesgo {
display: flex;
background: #fec170;
border-radius: 6px;
overflow: hidden;
height: 50px;
}
.checkbox-tr-wrapper-left,
.checkbox-tr-wrapper-right {
width: 50%;
}
.checkbox-todo-riesgo input {
display: none;
}
.checkbox-todo-riesgo input:checked+label .checkbox-tr {
background: #fea328;
}
.checkbox-todo-riesgo input:checked+label .checkbox-radio:after {
opacity: 1;
}
.checkbox-todo-riesgo label {
display: block;
height: 100%;
cursor: pointer;
}
.checkbox-tr {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.checkbox-tr:hover {
background: #f1b461;
}
.checkbox-tr span {
color: black;
font-weight: 400;
font-size: 18px;
}
.checkbox-radio {
width: 22px;
height: 22px;
background: white;
border-radius: 50%;
position: relative;
margin-right: 12px;
}
.checkbox-radio:after {
width: 12px;
height: 12px;
background: rgb(43, 43, 43);
border-radius: 50%;
content: "";
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
opacity: 0;
position: absolute;
}
.error-message-wrap {
padding: 10px 16px;
color: #a73131;
font-size: 16px;
margin-bottom: 12px;
background: #ffe1e1;
display: none;
}
.error-message-wrap.show {
display: block;
}
/*-----------------LOADER CON CSS--------------------------*/
#loader {
display: none;
height: 100vh;
position: fixed;
width: 100%;
background: #000000a3;
z-index: 20;
}
.spinner {
margin: 40vh auto;
width: 50px;
height: 40px;
text-align: center;
font-size: 10px;
}
.spinner>div {
background-color: #eee;
height: 100%;
width: 6px;
display: inline-block;
-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
-webkit-animation-delay: -1.1s;
animation-delay: -1.1s;
}
.spinner .rect3 {
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
}
.spinner .rect4 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}
.spinner .rect5 {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
@-webkit-keyframes sk-stretchdelay {
0%,
40%,
100% {
-webkit-transform: scaleY(0.4)
}
20% {
-webkit-transform: scaleY(1.0)
}
}
@keyframes sk-stretchdelay {
0%,
40%,
100% {
transform: scaleY(0.4);
-webkit-transform: scaleY(0.4);
}
20% {
transform: scaleY(1.0);
-webkit-transform: scaleY(1.0);
}
} | public/css/custom.css | .checkbox-todo-riesgo {
display: flex;
background: #fec170;
border-radius: 6px;
overflow: hidden;
height: 50px;
}
.checkbox-tr-wrapper-left,
.checkbox-tr-wrapper-right {
width: 50%;
}
.checkbox-todo-riesgo input {
display: none;
}
.checkbox-todo-riesgo input:checked+label .checkbox-tr {
background: #fea328;
}
.checkbox-todo-riesgo input:checked+label .checkbox-radio:after {
opacity: 1;
}
.checkbox-todo-riesgo label {
display: block;
height: 100%;
cursor: pointer;
}
.checkbox-tr {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.checkbox-tr:hover {
background: #f1b461;
}
.checkbox-tr span {
color: black;
font-weight: 400;
font-size: 18px;
}
.checkbox-radio {
width: 22px;
height: 22px;
background: white;
border-radius: 50%;
position: relative;
margin-right: 12px;
}
.checkbox-radio:after {
width: 12px;
height: 12px;
background: rgb(43, 43, 43);
border-radius: 50%;
content: "";
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
opacity: 0;
position: absolute;
}
.error-message-wrap {
padding: 10px 16px;
color: #a73131;
font-size: 16px;
margin-bottom: 12px;
background: #ffe1e1;
display: none;
}
.error-message-wrap.show {
display: block;
}
/*-----------------LOADER CON CSS--------------------------*/
#loader {
display: none;
height: 100vh;
position: fixed;
width: 100%;
background: #000000a3;
z-index: 20;
}
.spinner {
margin: 40vh auto;
width: 50px;
height: 40px;
text-align: center;
font-size: 10px;
}
.spinner>div {
background-color: #eee;
height: 100%;
width: 6px;
display: inline-block;
-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
-webkit-animation-delay: -1.1s;
animation-delay: -1.1s;
}
.spinner .rect3 {
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
}
.spinner .rect4 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}
.spinner .rect5 {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
@-webkit-keyframes sk-stretchdelay {
0%,
40%,
100% {
-webkit-transform: scaleY(0.4)
}
20% {
-webkit-transform: scaleY(1.0)
}
}
@keyframes sk-stretchdelay {
0%,
40%,
100% {
transform: scaleY(0.4);
-webkit-transform: scaleY(0.4);
}
20% {
transform: scaleY(1.0);
-webkit-transform: scaleY(1.0);
}
} | 0.5083 | 0.13887 |
.body {
background-color: #242424 !important;
color: #EEEEEE !important;
}
.broadcast-bottom-menu,.text,.p-b2,.contentlist-heading,.fcol-gray,.categorymenu-box,.room-profile-body-main,.room-profile-menu,.ov-h,.link-arrow-right-gray,._pc__liveListItemDataHead___1lFC9,.mb-b4,.LiveReport__liveListEmpty___24YeJ,._pc__liveResultDuration___2XSHN,.LiveReport__liveListResultItem___2iDTY,.room-profile-head-action-menu,.keyslider-info,.tx-description,.box-head,.tx-head,.tx-date,.head-main,.msg-wrapper,.mt-b4{
color: #EEEEEE !important;
}
.pc-header,.p-b4,l-main,.foot-app,.foot-app-inner,.foot-main,.listcardinfo,.pickup-content,.side-subbanners-wrapper,.pickup-content-border,.foot-app-inner-image{
background-color: #454545 !important;
color: #BBBBBB !important;
}
.pc-header-menus,.listcard-info{
background-color: #606060 !important;
color: #BBBBBB !important;
}
.categorymenu-box,.categorymenu{
background-color: #303030 !important;
filter:brightness(90%) !important;
}
.is-showgold,.pc-header-mypage-name{
color: #80DD90 !important;
filter:brightness(100%) !important;
}
.pc-header-mypage-level,.pc-header-mypage-sg,.pc-header-mypage-description{
color: #90E0B0 !important;
}
.pc-header-menu :not(.pc-header-mypage-image .is-showgold .pc-header-mypage-name .pc-header-mypage-level .pc-header-mypage-sg .pc-header-mypage-description){
filter:brightness(60%);
}
.is-showgold{
filter:brightness(70%) !important;
}
.pc-header-search{
filter:brightness(90%);
}
.listcardinfo-main-text,.listcard-name{
color: #EEEEEE !important;
}
.listcardinfo-sub-text,.listcard-profile,.onlivecard-label{
color: #BBBBBB !important;
}
.listcardinfo-menu,.is-onlive,.side-link,.room-profile-head-action-menu{
filter:saturate(70%) !important;
}
.gcontents-heading,.sp-tab-category,.LiveReport__datePagerPrev___3tU6n,.LiveReport__datePagerNext___UG4eJ{
filter: invert(100%)!important;
}
.onlivecard-info,.l-inner{
filter:brightness(90%) !important;
}
.onlivecard-label,.LiveReport__datePagerCurrent___1D9kI{
color: #FFFFFF !important;
}
.side-subbanners-wrapper,.pickup-content-border{
filter:brightness(70%) !important;
}
.menu{
filter: contrast(1%);
}
.fs-b4,.l-inner,. _pc__challengeContainer___2NiuB {
color: #777777 !important;
}
.l-inner{
background-color: #303030 !important;
}
._pc__cardGridHolder___1RpGi,._pc__liveReport___1IWdA{
background-color: #505050 !important;
}
._pc__challengeContainer___2NiuB{
background-color: #666666 !important;
}
.mypage-head-bg,.LiveReport__liveResultData___uOJfr,.room-profile-info-heading{
filter:brightness(250%) !important;
}
.header-hamburger{
filter:invert(100%) !important;
}
.col-5{
filter:brightness(300%) !important;
}
._pc__pageTitle___1cBPB,.head-search-autocomplete,.tx-time-elapse,.tx-time-total,.LiveReport__summary___1CFb3,.list-gift-history,.clearfix,.LiveReport__liveListItemHeaderItem___14nn4,.table-type-02,.table-type-03,.box-thank-modal{
color: #303030 !important;
}
.bg-light-gray,.fl-r,.form-tx,.box-arrow-select{
color: #454545 !important;
}
.head-main{
color: #606060 !important;
}
.room-profile-body-sub,.room-profile-body{
background-color: #757578 !important;
}
._pc__blockList___3NxsS{
background-color: #888888 !important;
}
.room-profile-official-label{
color: #88EEAA !important;
}
.term-link{
filter:saturate(90%) !important;
}
.broadcast-menu-event-item {
filter:saturate(80%) !important;
}
.broadcast-balloon{
filter:brightness(85%) !important;
color: #585858 !important;
}
.box-broadcast-events,.broadcast-menu-item,.box-broadcast-about,.space-broadcast,.box-broadcast-link {
color: #EEEEEE !important;
background-color: #151515 !important;
}
.control-head {
background-color: #444444 !important;
} | css/stylebroadcast.css | .body {
background-color: #242424 !important;
color: #EEEEEE !important;
}
.broadcast-bottom-menu,.text,.p-b2,.contentlist-heading,.fcol-gray,.categorymenu-box,.room-profile-body-main,.room-profile-menu,.ov-h,.link-arrow-right-gray,._pc__liveListItemDataHead___1lFC9,.mb-b4,.LiveReport__liveListEmpty___24YeJ,._pc__liveResultDuration___2XSHN,.LiveReport__liveListResultItem___2iDTY,.room-profile-head-action-menu,.keyslider-info,.tx-description,.box-head,.tx-head,.tx-date,.head-main,.msg-wrapper,.mt-b4{
color: #EEEEEE !important;
}
.pc-header,.p-b4,l-main,.foot-app,.foot-app-inner,.foot-main,.listcardinfo,.pickup-content,.side-subbanners-wrapper,.pickup-content-border,.foot-app-inner-image{
background-color: #454545 !important;
color: #BBBBBB !important;
}
.pc-header-menus,.listcard-info{
background-color: #606060 !important;
color: #BBBBBB !important;
}
.categorymenu-box,.categorymenu{
background-color: #303030 !important;
filter:brightness(90%) !important;
}
.is-showgold,.pc-header-mypage-name{
color: #80DD90 !important;
filter:brightness(100%) !important;
}
.pc-header-mypage-level,.pc-header-mypage-sg,.pc-header-mypage-description{
color: #90E0B0 !important;
}
.pc-header-menu :not(.pc-header-mypage-image .is-showgold .pc-header-mypage-name .pc-header-mypage-level .pc-header-mypage-sg .pc-header-mypage-description){
filter:brightness(60%);
}
.is-showgold{
filter:brightness(70%) !important;
}
.pc-header-search{
filter:brightness(90%);
}
.listcardinfo-main-text,.listcard-name{
color: #EEEEEE !important;
}
.listcardinfo-sub-text,.listcard-profile,.onlivecard-label{
color: #BBBBBB !important;
}
.listcardinfo-menu,.is-onlive,.side-link,.room-profile-head-action-menu{
filter:saturate(70%) !important;
}
.gcontents-heading,.sp-tab-category,.LiveReport__datePagerPrev___3tU6n,.LiveReport__datePagerNext___UG4eJ{
filter: invert(100%)!important;
}
.onlivecard-info,.l-inner{
filter:brightness(90%) !important;
}
.onlivecard-label,.LiveReport__datePagerCurrent___1D9kI{
color: #FFFFFF !important;
}
.side-subbanners-wrapper,.pickup-content-border{
filter:brightness(70%) !important;
}
.menu{
filter: contrast(1%);
}
.fs-b4,.l-inner,. _pc__challengeContainer___2NiuB {
color: #777777 !important;
}
.l-inner{
background-color: #303030 !important;
}
._pc__cardGridHolder___1RpGi,._pc__liveReport___1IWdA{
background-color: #505050 !important;
}
._pc__challengeContainer___2NiuB{
background-color: #666666 !important;
}
.mypage-head-bg,.LiveReport__liveResultData___uOJfr,.room-profile-info-heading{
filter:brightness(250%) !important;
}
.header-hamburger{
filter:invert(100%) !important;
}
.col-5{
filter:brightness(300%) !important;
}
._pc__pageTitle___1cBPB,.head-search-autocomplete,.tx-time-elapse,.tx-time-total,.LiveReport__summary___1CFb3,.list-gift-history,.clearfix,.LiveReport__liveListItemHeaderItem___14nn4,.table-type-02,.table-type-03,.box-thank-modal{
color: #303030 !important;
}
.bg-light-gray,.fl-r,.form-tx,.box-arrow-select{
color: #454545 !important;
}
.head-main{
color: #606060 !important;
}
.room-profile-body-sub,.room-profile-body{
background-color: #757578 !important;
}
._pc__blockList___3NxsS{
background-color: #888888 !important;
}
.room-profile-official-label{
color: #88EEAA !important;
}
.term-link{
filter:saturate(90%) !important;
}
.broadcast-menu-event-item {
filter:saturate(80%) !important;
}
.broadcast-balloon{
filter:brightness(85%) !important;
color: #585858 !important;
}
.box-broadcast-events,.broadcast-menu-item,.box-broadcast-about,.space-broadcast,.box-broadcast-link {
color: #EEEEEE !important;
background-color: #151515 !important;
}
.control-head {
background-color: #444444 !important;
} | 0.203233 | 0.045713 |
.pin[usertype=you] {
background: #ef4343;
}
.pin[usertype=others] {
background: #4093f9;
}
.pin {
width: 30px;
height: 30px;
border-radius: 50% 50% 50% 0;
background: #89849b;
position: absolute;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
left: 50%;
top: 50%;
margin: -20px 0 0 -20px;
-webkit-animation-name: bounce;
-moz-animation-name: bounce;
-o-animation-name: bounce;
-ms-animation-name: bounce;
animation-name: bounce;
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
-ms-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-duration: 1s;
-moz-animation-duration: 1s;
-o-animation-duration: 1s;
-ms-animation-duration: 1s;
animation-duration: 1s;
}
.pin:after {
content: '';
width: 14px;
height: 14px;
margin: 8px 0 0 8px;
background: white;
position: absolute;
border-radius: 50%;
}
.username {
background: rgba(0, 0, 0, 0.2);
font-size: 15px;
position: absolute;
text-align: center;
padding: 0px 10px;
top: 20px;
transform: translateX(-60%);
z-index: 0;
}
.pulse {
background: rgba(0, 0, 0, 0.2);
border-radius: 50%;
height: 14px;
width: 14px;
position: absolute;
left: 50%;
top: 50%;
margin: 11px 0px 0px -12px;
-webkit-transform: rotateX(55deg);
-moz-transform: rotateX(55deg);
-o-transform: rotateX(55deg);
-ms-transform: rotateX(55deg);
transform: rotateX(55deg);
z-index: -2;
}
.pulse:after {
content: "";
border-radius: 50%;
height: 40px;
width: 40px;
position: absolute;
margin: -13px 0 0 -13px;
-webkit-animation: pulsate 1s ease-out;
-moz-animation: pulsate 1s ease-out;
-o-animation: pulsate 1s ease-out;
-ms-animation: pulsate 1s ease-out;
animation: pulsate 1s ease-out;
-webkit-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
-o-animation-iteration-count: infinite;
-ms-animation-iteration-count: infinite;
animation-iteration-count: infinite;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-box-shadow: 0 0 1px 2px #89849b;
box-shadow: 0 0 1px 2px #89849b;
-webkit-animation-delay: 1.1s;
-moz-animation-delay: 1.1s;
-o-animation-delay: 1.1s;
-ms-animation-delay: 1.1s;
animation-delay: 1.1s;
}
@-moz-keyframes pulsate {
0% {
-webkit-transform: scale(0.1, 0.1);
-moz-transform: scale(0.1, 0.1);
-o-transform: scale(0.1, 0.1);
-ms-transform: scale(0.1, 0.1);
transform: scale(0.1, 0.1);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
50% {
opacity: 1;
-ms-filter: none;
filter: none;
}
100% {
-webkit-transform: scale(1.2, 1.2);
-moz-transform: scale(1.2, 1.2);
-o-transform: scale(1.2, 1.2);
-ms-transform: scale(1.2, 1.2);
transform: scale(1.2, 1.2);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
@-webkit-keyframes pulsate {
0% {
-webkit-transform: scale(0.1, 0.1);
-moz-transform: scale(0.1, 0.1);
-o-transform: scale(0.1, 0.1);
-ms-transform: scale(0.1, 0.1);
transform: scale(0.1, 0.1);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
50% {
opacity: 1;
-ms-filter: none;
filter: none;
}
100% {
-webkit-transform: scale(1.2, 1.2);
-moz-transform: scale(1.2, 1.2);
-o-transform: scale(1.2, 1.2);
-ms-transform: scale(1.2, 1.2);
transform: scale(1.2, 1.2);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
@-o-keyframes pulsate {
0% {
-webkit-transform: scale(0.1, 0.1);
-moz-transform: scale(0.1, 0.1);
-o-transform: scale(0.1, 0.1);
-ms-transform: scale(0.1, 0.1);
transform: scale(0.1, 0.1);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
50% {
opacity: 1;
-ms-filter: none;
filter: none;
}
100% {
-webkit-transform: scale(1.2, 1.2);
-moz-transform: scale(1.2, 1.2);
-o-transform: scale(1.2, 1.2);
-ms-transform: scale(1.2, 1.2);
transform: scale(1.2, 1.2);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
@keyframes pulsate {
0% {
-webkit-transform: scale(0.1, 0.1);
-moz-transform: scale(0.1, 0.1);
-o-transform: scale(0.1, 0.1);
-ms-transform: scale(0.1, 0.1);
transform: scale(0.1, 0.1);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
50% {
opacity: 1;
-ms-filter: none;
filter: none;
}
100% {
-webkit-transform: scale(1.2, 1.2);
-moz-transform: scale(1.2, 1.2);
-o-transform: scale(1.2, 1.2);
-ms-transform: scale(1.2, 1.2);
transform: scale(1.2, 1.2);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
@-moz-keyframes bounce {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translateY(-2000px) rotate(-45deg);
-moz-transform: translateY(-2000px) rotate(-45deg);
-o-transform: translateY(-2000px) rotate(-45deg);
-ms-transform: translateY(-2000px) rotate(-45deg);
transform: translateY(-2000px) rotate(-45deg);
}
60% {
opacity: 1;
-ms-filter: none;
filter: none;
-webkit-transform: translateY(30px) rotate(-45deg);
-moz-transform: translateY(30px) rotate(-45deg);
-o-transform: translateY(30px) rotate(-45deg);
-ms-transform: translateY(30px) rotate(-45deg);
transform: translateY(30px) rotate(-45deg);
}
80% {
-webkit-transform: translateY(-10px) rotate(-45deg);
-moz-transform: translateY(-10px) rotate(-45deg);
-o-transform: translateY(-10px) rotate(-45deg);
-ms-transform: translateY(-10px) rotate(-45deg);
transform: translateY(-10px) rotate(-45deg);
}
100% {
-webkit-transform: translateY(0) rotate(-45deg);
-moz-transform: translateY(0) rotate(-45deg);
-o-transform: translateY(0) rotate(-45deg);
-ms-transform: translateY(0) rotate(-45deg);
transform: translateY(0) rotate(-45deg);
}
}
@-webkit-keyframes bounce {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translateY(-2000px) rotate(-45deg);
-moz-transform: translateY(-2000px) rotate(-45deg);
-o-transform: translateY(-2000px) rotate(-45deg);
-ms-transform: translateY(-2000px) rotate(-45deg);
transform: translateY(-2000px) rotate(-45deg);
}
60% {
opacity: 1;
-ms-filter: none;
filter: none;
-webkit-transform: translateY(30px) rotate(-45deg);
-moz-transform: translateY(30px) rotate(-45deg);
-o-transform: translateY(30px) rotate(-45deg);
-ms-transform: translateY(30px) rotate(-45deg);
transform: translateY(30px) rotate(-45deg);
}
80% {
-webkit-transform: translateY(-10px) rotate(-45deg);
-moz-transform: translateY(-10px) rotate(-45deg);
-o-transform: translateY(-10px) rotate(-45deg);
-ms-transform: translateY(-10px) rotate(-45deg);
transform: translateY(-10px) rotate(-45deg);
}
100% {
-webkit-transform: translateY(0) rotate(-45deg);
-moz-transform: translateY(0) rotate(-45deg);
-o-transform: translateY(0) rotate(-45deg);
-ms-transform: translateY(0) rotate(-45deg);
transform: translateY(0) rotate(-45deg);
}
}
@-o-keyframes bounce {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translateY(-2000px) rotate(-45deg);
-moz-transform: translateY(-2000px) rotate(-45deg);
-o-transform: translateY(-2000px) rotate(-45deg);
-ms-transform: translateY(-2000px) rotate(-45deg);
transform: translateY(-2000px) rotate(-45deg);
}
60% {
opacity: 1;
-ms-filter: none;
filter: none;
-webkit-transform: translateY(30px) rotate(-45deg);
-moz-transform: translateY(30px) rotate(-45deg);
-o-transform: translateY(30px) rotate(-45deg);
-ms-transform: translateY(30px) rotate(-45deg);
transform: translateY(30px) rotate(-45deg);
}
80% {
-webkit-transform: translateY(-10px) rotate(-45deg);
-moz-transform: translateY(-10px) rotate(-45deg);
-o-transform: translateY(-10px) rotate(-45deg);
-ms-transform: translateY(-10px) rotate(-45deg);
transform: translateY(-10px) rotate(-45deg);
}
100% {
-webkit-transform: translateY(0) rotate(-45deg);
-moz-transform: translateY(0) rotate(-45deg);
-o-transform: translateY(0) rotate(-45deg);
-ms-transform: translateY(0) rotate(-45deg);
transform: translateY(0) rotate(-45deg);
}
}
@keyframes bounce {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translateY(-2000px) rotate(-45deg);
-moz-transform: translateY(-2000px) rotate(-45deg);
-o-transform: translateY(-2000px) rotate(-45deg);
-ms-transform: translateY(-2000px) rotate(-45deg);
transform: translateY(-2000px) rotate(-45deg);
}
60% {
opacity: 1;
-ms-filter: none;
filter: none;
-webkit-transform: translateY(30px) rotate(-45deg);
-moz-transform: translateY(30px) rotate(-45deg);
-o-transform: translateY(30px) rotate(-45deg);
-ms-transform: translateY(30px) rotate(-45deg);
transform: translateY(30px) rotate(-45deg);
}
80% {
-webkit-transform: translateY(-10px) rotate(-45deg);
-moz-transform: translateY(-10px) rotate(-45deg);
-o-transform: translateY(-10px) rotate(-45deg);
-ms-transform: translateY(-10px) rotate(-45deg);
transform: translateY(-10px) rotate(-45deg);
}
100% {
-webkit-transform: translateY(0) rotate(-45deg);
-moz-transform: translateY(0) rotate(-45deg);
-o-transform: translateY(0) rotate(-45deg);
-ms-transform: translateY(0) rotate(-45deg);
transform: translateY(0) rotate(-45deg);
}
} | src/components/Marker/index.css | .pin[usertype=you] {
background: #ef4343;
}
.pin[usertype=others] {
background: #4093f9;
}
.pin {
width: 30px;
height: 30px;
border-radius: 50% 50% 50% 0;
background: #89849b;
position: absolute;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
left: 50%;
top: 50%;
margin: -20px 0 0 -20px;
-webkit-animation-name: bounce;
-moz-animation-name: bounce;
-o-animation-name: bounce;
-ms-animation-name: bounce;
animation-name: bounce;
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
-ms-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-duration: 1s;
-moz-animation-duration: 1s;
-o-animation-duration: 1s;
-ms-animation-duration: 1s;
animation-duration: 1s;
}
.pin:after {
content: '';
width: 14px;
height: 14px;
margin: 8px 0 0 8px;
background: white;
position: absolute;
border-radius: 50%;
}
.username {
background: rgba(0, 0, 0, 0.2);
font-size: 15px;
position: absolute;
text-align: center;
padding: 0px 10px;
top: 20px;
transform: translateX(-60%);
z-index: 0;
}
.pulse {
background: rgba(0, 0, 0, 0.2);
border-radius: 50%;
height: 14px;
width: 14px;
position: absolute;
left: 50%;
top: 50%;
margin: 11px 0px 0px -12px;
-webkit-transform: rotateX(55deg);
-moz-transform: rotateX(55deg);
-o-transform: rotateX(55deg);
-ms-transform: rotateX(55deg);
transform: rotateX(55deg);
z-index: -2;
}
.pulse:after {
content: "";
border-radius: 50%;
height: 40px;
width: 40px;
position: absolute;
margin: -13px 0 0 -13px;
-webkit-animation: pulsate 1s ease-out;
-moz-animation: pulsate 1s ease-out;
-o-animation: pulsate 1s ease-out;
-ms-animation: pulsate 1s ease-out;
animation: pulsate 1s ease-out;
-webkit-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
-o-animation-iteration-count: infinite;
-ms-animation-iteration-count: infinite;
animation-iteration-count: infinite;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-box-shadow: 0 0 1px 2px #89849b;
box-shadow: 0 0 1px 2px #89849b;
-webkit-animation-delay: 1.1s;
-moz-animation-delay: 1.1s;
-o-animation-delay: 1.1s;
-ms-animation-delay: 1.1s;
animation-delay: 1.1s;
}
@-moz-keyframes pulsate {
0% {
-webkit-transform: scale(0.1, 0.1);
-moz-transform: scale(0.1, 0.1);
-o-transform: scale(0.1, 0.1);
-ms-transform: scale(0.1, 0.1);
transform: scale(0.1, 0.1);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
50% {
opacity: 1;
-ms-filter: none;
filter: none;
}
100% {
-webkit-transform: scale(1.2, 1.2);
-moz-transform: scale(1.2, 1.2);
-o-transform: scale(1.2, 1.2);
-ms-transform: scale(1.2, 1.2);
transform: scale(1.2, 1.2);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
@-webkit-keyframes pulsate {
0% {
-webkit-transform: scale(0.1, 0.1);
-moz-transform: scale(0.1, 0.1);
-o-transform: scale(0.1, 0.1);
-ms-transform: scale(0.1, 0.1);
transform: scale(0.1, 0.1);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
50% {
opacity: 1;
-ms-filter: none;
filter: none;
}
100% {
-webkit-transform: scale(1.2, 1.2);
-moz-transform: scale(1.2, 1.2);
-o-transform: scale(1.2, 1.2);
-ms-transform: scale(1.2, 1.2);
transform: scale(1.2, 1.2);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
@-o-keyframes pulsate {
0% {
-webkit-transform: scale(0.1, 0.1);
-moz-transform: scale(0.1, 0.1);
-o-transform: scale(0.1, 0.1);
-ms-transform: scale(0.1, 0.1);
transform: scale(0.1, 0.1);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
50% {
opacity: 1;
-ms-filter: none;
filter: none;
}
100% {
-webkit-transform: scale(1.2, 1.2);
-moz-transform: scale(1.2, 1.2);
-o-transform: scale(1.2, 1.2);
-ms-transform: scale(1.2, 1.2);
transform: scale(1.2, 1.2);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
@keyframes pulsate {
0% {
-webkit-transform: scale(0.1, 0.1);
-moz-transform: scale(0.1, 0.1);
-o-transform: scale(0.1, 0.1);
-ms-transform: scale(0.1, 0.1);
transform: scale(0.1, 0.1);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
50% {
opacity: 1;
-ms-filter: none;
filter: none;
}
100% {
-webkit-transform: scale(1.2, 1.2);
-moz-transform: scale(1.2, 1.2);
-o-transform: scale(1.2, 1.2);
-ms-transform: scale(1.2, 1.2);
transform: scale(1.2, 1.2);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
@-moz-keyframes bounce {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translateY(-2000px) rotate(-45deg);
-moz-transform: translateY(-2000px) rotate(-45deg);
-o-transform: translateY(-2000px) rotate(-45deg);
-ms-transform: translateY(-2000px) rotate(-45deg);
transform: translateY(-2000px) rotate(-45deg);
}
60% {
opacity: 1;
-ms-filter: none;
filter: none;
-webkit-transform: translateY(30px) rotate(-45deg);
-moz-transform: translateY(30px) rotate(-45deg);
-o-transform: translateY(30px) rotate(-45deg);
-ms-transform: translateY(30px) rotate(-45deg);
transform: translateY(30px) rotate(-45deg);
}
80% {
-webkit-transform: translateY(-10px) rotate(-45deg);
-moz-transform: translateY(-10px) rotate(-45deg);
-o-transform: translateY(-10px) rotate(-45deg);
-ms-transform: translateY(-10px) rotate(-45deg);
transform: translateY(-10px) rotate(-45deg);
}
100% {
-webkit-transform: translateY(0) rotate(-45deg);
-moz-transform: translateY(0) rotate(-45deg);
-o-transform: translateY(0) rotate(-45deg);
-ms-transform: translateY(0) rotate(-45deg);
transform: translateY(0) rotate(-45deg);
}
}
@-webkit-keyframes bounce {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translateY(-2000px) rotate(-45deg);
-moz-transform: translateY(-2000px) rotate(-45deg);
-o-transform: translateY(-2000px) rotate(-45deg);
-ms-transform: translateY(-2000px) rotate(-45deg);
transform: translateY(-2000px) rotate(-45deg);
}
60% {
opacity: 1;
-ms-filter: none;
filter: none;
-webkit-transform: translateY(30px) rotate(-45deg);
-moz-transform: translateY(30px) rotate(-45deg);
-o-transform: translateY(30px) rotate(-45deg);
-ms-transform: translateY(30px) rotate(-45deg);
transform: translateY(30px) rotate(-45deg);
}
80% {
-webkit-transform: translateY(-10px) rotate(-45deg);
-moz-transform: translateY(-10px) rotate(-45deg);
-o-transform: translateY(-10px) rotate(-45deg);
-ms-transform: translateY(-10px) rotate(-45deg);
transform: translateY(-10px) rotate(-45deg);
}
100% {
-webkit-transform: translateY(0) rotate(-45deg);
-moz-transform: translateY(0) rotate(-45deg);
-o-transform: translateY(0) rotate(-45deg);
-ms-transform: translateY(0) rotate(-45deg);
transform: translateY(0) rotate(-45deg);
}
}
@-o-keyframes bounce {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translateY(-2000px) rotate(-45deg);
-moz-transform: translateY(-2000px) rotate(-45deg);
-o-transform: translateY(-2000px) rotate(-45deg);
-ms-transform: translateY(-2000px) rotate(-45deg);
transform: translateY(-2000px) rotate(-45deg);
}
60% {
opacity: 1;
-ms-filter: none;
filter: none;
-webkit-transform: translateY(30px) rotate(-45deg);
-moz-transform: translateY(30px) rotate(-45deg);
-o-transform: translateY(30px) rotate(-45deg);
-ms-transform: translateY(30px) rotate(-45deg);
transform: translateY(30px) rotate(-45deg);
}
80% {
-webkit-transform: translateY(-10px) rotate(-45deg);
-moz-transform: translateY(-10px) rotate(-45deg);
-o-transform: translateY(-10px) rotate(-45deg);
-ms-transform: translateY(-10px) rotate(-45deg);
transform: translateY(-10px) rotate(-45deg);
}
100% {
-webkit-transform: translateY(0) rotate(-45deg);
-moz-transform: translateY(0) rotate(-45deg);
-o-transform: translateY(0) rotate(-45deg);
-ms-transform: translateY(0) rotate(-45deg);
transform: translateY(0) rotate(-45deg);
}
}
@keyframes bounce {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translateY(-2000px) rotate(-45deg);
-moz-transform: translateY(-2000px) rotate(-45deg);
-o-transform: translateY(-2000px) rotate(-45deg);
-ms-transform: translateY(-2000px) rotate(-45deg);
transform: translateY(-2000px) rotate(-45deg);
}
60% {
opacity: 1;
-ms-filter: none;
filter: none;
-webkit-transform: translateY(30px) rotate(-45deg);
-moz-transform: translateY(30px) rotate(-45deg);
-o-transform: translateY(30px) rotate(-45deg);
-ms-transform: translateY(30px) rotate(-45deg);
transform: translateY(30px) rotate(-45deg);
}
80% {
-webkit-transform: translateY(-10px) rotate(-45deg);
-moz-transform: translateY(-10px) rotate(-45deg);
-o-transform: translateY(-10px) rotate(-45deg);
-ms-transform: translateY(-10px) rotate(-45deg);
transform: translateY(-10px) rotate(-45deg);
}
100% {
-webkit-transform: translateY(0) rotate(-45deg);
-moz-transform: translateY(0) rotate(-45deg);
-o-transform: translateY(0) rotate(-45deg);
-ms-transform: translateY(0) rotate(-45deg);
transform: translateY(0) rotate(-45deg);
}
} | 0.459319 | 0.133218 |
html {
font-family: sans-serif; /* 1 */
-ms-text-size-adjust: 100%; /* 2 */
-webkit-text-size-adjust: 100%; /* 2 */
}
body {
margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block; /* 1 */
vertical-align: baseline; /* 2 */
}
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: 0.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: -0.5em;
}
sub {
bottom: -0.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; /* 1 */
font: inherit; /* 2 */
margin: 0; /* 3 */
}
button {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button; /* 2 */
cursor: pointer; /* 3 */
}
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; /* 1 */
padding: 0; /* 2 */
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
input[type="search"] {
-webkit-appearance: textfield; /* 1 */ /* 2 */
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: 0.35em 0.625em 0.75em;
}
legend {
border: 0; /* 1 */
padding: 0; /* 2 */
}
textarea {
overflow: auto;
}
optgroup {
font-weight: bold;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}
html {
position: relative;
min-height: 100%;
}
body {
height: 100%;
font-family: 'Open Sans', sans-serif;
font-weight: 400;
color: #252525;
background: #f5f5f5;
font-size: 14px;
text-rendering: optimizelegibility;
-webkit-font-smoothing: antialiased;
}
::-moz-selection {
background: #f9669a;
color: #fff;
}
::selection {
background: #f9669a;
color: #fff;
}
a {
color: #e74c3c;
text-decoration: none;
}
strong {
font-weight: 700;
}
h2 {
font-size: 30px;
line-height: 35px;
color: #37474f;
margin: 0;
font-family: 'Exo', sans-serif;
font-weight: 400;
}
h2.margin-top {
margin-top: 5px;
}
h2 span.grey {
color: #a1b1c2;
}
h3 {
font-size: 25px;
line-height: 30px;
color: #37474f;
margin: 0;
font-family: 'Exo', sans-serif;
font-weight: 400;
}
h3.margin-top {
margin-top: 50px;
}
h3.margin-bottom {
margin-bottom: 20px;
}
p {
color: #78909c;
}
p.no-margin {
margin: 0;
}
p.margin-top {
margin-top: 12px;
}
p.inline {
display: inline;
}
p.dark {
color: #37474f;
font-size: 14px;
}
p.medium {
font-size: 20px;
line-height: 20px;
color: #37474f;
margin: 0;
}
p.big {
position: relative;
font-size: 30px;
line-height: 39px;
color: #37474f;
margin: 0;
}
p.big span {
font-size: 19px;
vertical-align: text-top;
}
hr {
border: none;
border-bottom: 1px solid #cfd8dc;
}
.opacity-link {
display: block;
-webkit-transition: opacity 150ms;
transition: opacity 150ms;
}
.opacity-link:hover {
opacity: 0.8 !important;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)" !important;
filter: alpha(opacity=80) !important;
}
.container {
width: 1170px;
margin: 0 auto;
box-sizing: border-box;
}
.container.fluid {
width: 90%;
}
@media (max-width: 1266px) {
.container {
width: 100%;
padding: 0 48px;
}
}
.container.margin-top {
margin-top: 160px;
}
@media (max-width: 1300px) {
.container.margin-top {
margin-top: 120px;
}
}
.row {
position: relative;
overflow: hidden;
}
.row.no-overflow {
overflow: visible;
}
.row.margin-top {
margin-top: 12px;
}
.row.center {
text-align: center;
}
.row.border-bottom {
border-bottom: 1px solid #cfd8dc;
padding: 15px 0;
}
.row.padding {
padding: 15px 0;
}
.row.padding-20 {
padding: 20px;
box-sizing: border-box;
}
.row.padding-big {
padding: 40px 20px;
box-sizing: border-box;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.part-2 {
box-sizing: border-box;
float: left;
width: 50%;
padding: 20px;
}
.center {
text-align: center;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.textLimiter {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.margin-top-big {
margin-top: 70px;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.absolute-right {
position: absolute;
top: 0;
right: 10px;
}
.activity {
margin: 20px 0;
}
.activity-item {
position: relative;
display: block;
min-height: 100px;
width: 100%;
background: #fff;
padding: 23px 30px;
box-sizing: border-box;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
margin-bottom: 10px;
color: #37474f;
-webkit-transition: box-shadow 200ms, background 200ms;
transition: box-shadow 200ms, background 200ms;
}
.activity-item:hover {
box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
background: #fafafa;
}
.activity-item.training {
background: url("../img/training-bg.png") no-repeat bottom right #fff;
background-size: 590px 101px;
}
.activity-item.hr-5 {
border-bottom: 4px solid #e1377a;
}
.activity-item.hr-4 {
border-bottom: 4px solid #fa8e7a;
}
.activity-item.hr-3 {
border-bottom: 4px solid #ffef7a;
}
.activity-item.hr-2 {
border-bottom: 4px solid #b1ff7a;
}
.activity-item.hr-1 {
border-bottom: 4px solid #29eb7b;
}
.activity-item .competition-mark {
position: absolute;
top: 50%;
left: -20px;
margin-top: -20px;
width: 40px;
height: 40px;
background: #f5f5f5;
border-radius: 50%;
border-right: 1px solid rgba(0,0,0,0.2);
}
.activity-item .competition-mark img {
position: relative;
top: 13px;
left: 13px;
width: 16px;
height: 16px;
}
.activity-item .left-img {
float: left;
width: 53px;
height: 53px;
margin-right: 30px;
border-radius: 2px;
}
.activity-item .left {
float: left;
width: calc(100% - 350px - 90px);
}
.activity-item .left .title {
margin-top: 6px;
display: block;
font-size: 18px;
font-family: 'Exo', sans-serif;
}
.activity-item .left .sport-text {
font-size: 14px;
color: #78909c;
}
.activity-item .right {
float: right;
margin-top: 10px;
width: 350px;
text-align: right;
}
.activity-item .right span {
padding: 0 15px;
}
.activity-item .right span span {
padding: 0;
}
.activity-item .right span:last-child {
padding: 0;
}
.activity-item .right span .fa {
margin-right: 5px;
}
.activity-item .right span.limiter {
position: relative;
top: 7px;
display: inline-block;
padding: 0;
width: 2px;
height: 24px;
background: #dbe1e8;
}
.activity-img {
width: 60px;
height: 60px;
border-radius: 2px;
margin: 0 3px;
}
.activity-icons {
position: absolute;
z-index: 2;
bottom: -30px;
left: 50%;
}
.activity-icons.num-1 {
width: 68px;
margin-left: -34px;
}
.activity-icons.num-2 {
width: 134px;
margin-left: -67px;
}
.activity-icons.num-3 {
width: 200px;
margin-left: -100px;
}
.user-avatar {
width: 45px;
height: 45px;
border-radius: 50%;
float: left;
margin-right: 15px;
}
.activity-date {
margin-top: 0;
}
.component .activity-delete {
position: absolute;
bottom: 10px;
right: 10px;
font-size: 12px;
}
.alert-msg {
z-index: 10;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 70px;
color: #fff;
text-align: center;
overflow: hidden;
-webkit-transform: translateY(0px);
transform: translateY(0px);
-webkit-transition: -webkit-transform 200ms cubic-bezier(0.835, 0, 0.19, 1);
transition: transform 200ms cubic-bezier(0.835, 0, 0.19, 1);
}
.alert-msg.hide {
-webkit-transform: translateY(-70px);
transform: translateY(-70px);
}
.alert-msg:hover {
cursor: pointer;
}
.alert-msg:hover:after {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
}
.alert-msg:after {
content: '\f057';
position: absolute;
top: 25px;
right: 55px;
font: normal normal normal 14px/1 FontAwesome;
font-size: 20px;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
opacity: 0.6;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
filter: alpha(opacity=60);
-webkit-transition: opacity 200ms;
transition: opacity 200ms;
}
.alert-msg p {
font-family: 'Exo', sans-serif;
font-weight: 400;
font-style: italic;
font-size: 16px !important;
line-height: 70px;
margin: 0;
color: #fff;
}
.alert-msg p strong {
font-weight: 700;
}
.alert-msg.ko {
background: #f9669a;
}
.alert-msg.ok {
background: #01bfa5;
}
.avatar-upload {
width: 430px;
margin: 0 auto;
}
.avatar-upload p {
margin-top: 0;
}
.avatar-upload img {
float: left;
width: 120px;
height: 120px;
border-radius: 50%;
margin-right: 35px;
}
.avatar-upload__img-wrapper {
width: 120px;
height: 120px;
}
.button {
position: relative;
}
.button input {
z-index: 1;
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
.button input:hover {
cursor: pointer;
}
.button input:focus {
outline: none;
}
.button {
position: relative;
display: inline-block;
line-height: 53px;
padding: 0 25px;
text-align: center;
border-radius: 28px;
color: #fff;
-webkit-transition: color 100ms linear, background 100ms linear, opacity 100ms linear;
transition: color 100ms linear, background 100ms linear, opacity 100ms linear;
font-size: 14px;
border: none;
}
.button:focus {
outline: none;
}
.button.small {
line-height: 40px;
}
.button.wider {
padding: 0 35px;
}
.button.ultra-wider {
padding: 0 55px;
}
.button.right {
float: right;
margin-left: 15px;
margin-top: 5px;
}
.button.no-margin-top {
margin-top: 0;
}
.button.show-on-hover {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
.button.margin-top {
margin-top: 20px;
}
.button.margin-right-small {
margin-right: 10px;
}
.button .fa {
position: relative;
top: 1px;
margin-left: -10px;
margin-right: 10px;
font-size: 18px;
}
.button.blue {
background: #0083e9;
}
.button.blue.border {
border: 1px solid #0083e9;
}
.button.blue:hover {
color: #0083e9;
background: transparent;
}
.button.blue.whiteBg:hover {
background: #fff;
}
.button.blue-inverse {
background: transparent;
color: #0083e9;
}
.button.blue-inverse.border {
border: 1px solid #0083e9;
}
.button.blue-inverse:hover {
color: #fff;
background: #0083e9;
}
.button.dark {
background: #37474f;
}
.button.dark.border {
border: 1px solid #37474f;
}
.button.dark:hover {
color: #37474f;
background: #fff;
}
.button.dark-inverse {
background: transparent;
color: #37474f;
}
.button.dark-inverse.border {
border: 1px solid #cfd8dc;
}
.button.dark-inverse:hover {
color: #37474f;
background: #cfd8dc;
}
.button.fb {
background: #3b5a94;
}
.button.fb.border {
border: 1px solid #3b5a94;
}
.button.fb:hover {
color: #3b5a94;
background: #fff;
}
.button.sidebar-dark {
background: transparent;
color: #78909c;
}
.button.sidebar-dark.border {
border: 1px solid #78909c;
}
.button.sidebar-dark:hover {
color: #fff;
background: #78909c;
}
.button.center {
display: block;
margin: 0 auto;
}
.button.half {
width: 50%;
}
.button.soft-half {
min-width: 50%;
}
.component {
position: relative;
padding: 20px;
margin-bottom: 20px;
box-sizing: border-box;
width: 100%;
}
.component.padding-big {
padding: 40px 20px;
}
.component.padding-40 {
padding: 40px;
}
.component.padding-42 {
padding: 42px 40px;
padding-bottom: 43px;
}
.component.padding-80-40 {
padding: 78px 40px;
padding-bottom: 79px;
}
.component.no-padding {
padding: 0;
}
.component.no-margin-bottom {
margin-bottom: 0;
}
.component.padding-right {
padding-right: 20px !important;
}
.component:hover .show-on-hover {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
}
.component.border-bottom {
border-bottom: 1px solid #cfd8dc;
}
.component.border-bottom-grey {
border-bottom: 1px solid #eaeef2;
}
.component.fixed-header {
position: absolute;
top: 70px;
left: 0;
background: #f5f5f5;
z-index: 5;
padding: 15px 20px;
}
.component.fixed-header .row {
overflow: visible;
}
.component.fixed-header.training {
background: url("../img/training-bg.png") no-repeat bottom left #f5f5f5;
background-size: 425px 73px;
}
.component.fixed-header .homepage__login {
position: absolute;
top: -7px;
right: 0;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translateX(300px);
transform: translateX(300px);
-webkit-transition: opacity 150ms ease-in, color 100ms linear, background 100ms linear;
transition: opacity 150ms ease-in, color 100ms linear, background 100ms linear;
}
.component.fixed {
position: fixed;
top: 0;
left: 0;
background: #f5f5f5;
}
.component.fixed .homepage__login {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
.component.margin-top {
margin-top: 10px;
}
.component.no-margin {
margin: 0;
}
.component.white {
background: #fff;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.dark {
background: #37474f;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.dark h2 {
color: #f5f5f5;
}
.component.grey {
background: #fafafa;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.grey h2 {
color: #f5f5f5;
}
.component.no-side-padding {
padding: 20px 0;
}
.component.no-side-padding .row {
padding: 0 20px;
}
.component.no-padding {
padding: 0;
}
.component.no-margin-bottom {
margin-bottom: 0;
}
.component.no-margin-top {
margin-top: 0;
}
.component.part-2 {
float: left;
width: 50%;
padding: 0 3px;
}
.component.part-2:first-child {
padding-left: 0;
}
.component.part-2:last-child {
padding-right: 0;
}
.component.part-3 {
float: left;
width: 33.3%;
padding: 0 3px;
}
.component.part-3.padding-10 {
padding: 0 10px;
}
.component.part-3:first-child {
padding-left: 0;
}
.component.part-3:last-child {
padding-right: 0;
}
.component.empty {
text-align: center;
}
.component.empty.bg-test .component {
background: url("/build/img/bg/no-test.png") #fff bottom left repeat-x;
}
.component.empty.bg-activity .component {
background: url("/build/img/bg/no-activity.png") #fff top center no-repeat;
}
.component.empty img {
margin-bottom: 30px;
}
.component.empty .component {
padding: 180px 20px;
}
.component.empty .button {
margin-top: 35px;
}
.component.empty.with-icon .component {
padding: 80px 20px;
padding-top: 50px;
}
.component.hr-1 {
background: #29eb7b;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.hr-1 h2,
.component.hr-1 p {
color: #f5f5f5;
}
.component.hr-2 {
background: #b1ff7a;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.hr-2 h2,
.component.hr-2 p {
color: #37474f;
}
.component.hr-3 {
background: #ffef7a;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.hr-3 h2,
.component.hr-3 p {
color: #37474f;
}
.component.hr-4 {
background: #fa8e7a;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.hr-4 h2,
.component.hr-4 p {
color: #f5f5f5;
}
.component.hr-5 {
background: #e1377a;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.hr-5 h2,
.component.hr-5 p {
color: #f5f5f5;
}
#comment-fixed.fixed {
position: fixed;
top: 65px;
right: 0;
}
.edit-row {
width: 100%;
box-sizing: border-box;
border-bottom: 1px solid #cfd8dc;
overflow: hidden;
padding: 70px 0px;
}
.edit-row.no-border {
border: none;
}
.edit-row.margin-top-big {
margin-top: 88px;
}
.edit-row .container {
width: 840px;
margin: 0 auto;
}
.edit-row .part-2 {
float: left;
width: 50%;
box-sizing: border-box;
padding: 0 30px;
}
.edit-row .part-2:first-child {
border-right: 1px solid #cfd8dc;
}
.edit-row .part-2.no-border {
border: none;
}
.edit-row .part-2.border-left {
border-left: 1px solid #cfd8dc;
}
.edit-row .part-2.padding-bottom {
padding-bottom: 10px;
}
.filter {
font-size: 16px;
display: inline-block;
line-height: 35px;
color: #37474f;
margin-left: 40px;
border-bottom: 2px solid transparent;
-webkit-transition: color 200ms, border 200ms;
transition: color 200ms, border 200ms;
}
.filter:hover,
.filter.active {
color: #0083e9;
border-bottom: 2px solid #0083e9;
}
footer {
position: relative;
height: 70px;
background: #e0e0e0;
font-size: 14px;
box-sizing: border-box;
padding: 27px 30px;
}
footer.sidebar {
padding-left: 290px;
}
footer.sidebar:before {
content: '';
display: block;
height: 70px;
width: 260px;
position: absolute;
top: 0;
left: 0;
background: #37474f;
}
footer p {
margin: 0;
}
footer a {
color: #0083e9;
}
.form-static {
width: 540px;
margin: 0 auto;
margin-bottom: 45px;
border: 1px solid #dfdfdf;
border-radius: 5px;
background: #fff;
}
.form-static .row:before,
.form-static .row:after {
content: " ";
display: table;
}
.form-static .row:after {
clear: both;
}
.form-static .row.margin-top {
margin-top: 20px;
}
.form-static .container {
width: 320px;
padding: 0;
}
.form-static .container.padding-top {
padding-top: 40px;
}
.form-static .container p {
font-size: 13px;
color: #37474f;
}
.form-static .container p.margin-20 {
margin: 20px 0;
}
.form-static .container a {
font-size: 13px;
color: #37474f;
text-decoration: underline;
}
.form-static .container a:hover {
text-decoration: none;
}
.form-static .container a.half {
display: inline-block;
width: 45%;
}
.form-static .container a.right {
float: right;
margin-top: 18px;
}
.form-static .container a.center {
text-align: center;
}
.form-static__header {
text-transform: uppercase;
color: #0083e9;
text-align: center;
display: block;
font-style: italic;
margin: 30px 0;
}
.form-static__logo {
position: relative;
display: block;
height: 80px;
width: 100%;
background: #0083e9;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
box-sizing: border-box;
padding-top: 25px;
margin-bottom: 25px;
}
.form-static__logo:after {
position: absolute;
bottom: -10px;
left: 50%;
margin-left: -5px;
content: '';
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #0083e9;
font-size: 0;
line-height: 0;
}
.form-static__logo a {
position: absolute;
top: 50%;
left: 50%;
margin: 0 auto;
margin-top: -12px;
margin-left: -62px;
display: block;
width: 125px;
height: 25px;
}
.form-static__logo img {
width: 125px;
height: 25px;
}
.form-static__others {
display: block;
background: #fafafa;
padding-top: 30px;
padding-bottom: 35px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
border-top: 1px solid #dfdfdf;
margin-top: 20px;
}
.form-static__others.center {
text-align: center;
}
.form-static__input {
border: none;
border-bottom: 1px solid #c1c5c7;
width: 100%;
height: 30px;
margin-bottom: 20px;
font-style: italic;
-webkit-transition: border 200ms ease-in;
transition: border 200ms ease-in;
}
.form-static__input:focus {
outline: none;
border-bottom: 1px solid #37474f;
}
.input {
position: relative;
display: inline-block;
width: 100%;
vertical-align: top;
margin-bottom: 10px;
box-sizing: border-box;
}
.input.half {
width: 45%;
}
.input.part-3 {
width: 30%;
}
.input.part-3:nth-child(2) {
margin: 0 5%;
}
.input.left {
float: left;
}
.input.right {
float: right;
}
.input.with-tooltip input {
padding-right: 20px;
}
.input__field {
position: relative;
display: block;
float: right;
border: none;
border-radius: 0;
-webkit-appearance: none;
box-sizing: border-box;
}
.input__field:focus {
outline: none;
}
.input__label {
z-index: 1;
display: inline-block;
float: right;
padding: 0;
width: 100%;
color: #c1c5c7;
font-size: 14px;
font-style: italic;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.input__label-content {
z-index: 1;
position: relative;
display: block;
width: 100%;
}
.input__field--hoshi {
margin-top: 10px;
padding: 10px 5px;
width: 100%;
background: transparent;
}
.input__label--hoshi {
position: absolute;
bottom: 0;
left: 0;
padding: 0 0.25em;
width: 100%;
height: calc(100% - 10px);
text-align: left;
pointer-events: none;
box-sizing: border-box;
}
.input__label-content--hoshi {
position: absolute;
top: 10px;
overflow: hidden;
}
.input__label--hoshi::before,
.input__label--hoshi::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: calc(100% - 10px);
border-bottom: 1px solid #c1c5c7;
}
.input__label--hoshi::after {
border-bottom: 2px solid #0083e9;
width: 0%;
-webkit-transition: width 0.3s;
transition: width 0.3s;
}
.input__field--hoshi:focus + .input__label--hoshi::after,
.input--filled .input__label--hoshi::after {
width: 100%;
}
.input__field--hoshi:focus + .input__label--hoshi .input__label-content--hoshi,
.input--filled .input__label-content--hoshi {
-webkit-animation: animField 500ms forwards;
animation: animField 500ms forwards;
}
.select-menu {
position: relative;
}
.select-menu.half {
width: 45%;
}
.select-menu.right {
float: right;
}
.select-menu label {
display: inline-block;
float: right;
padding: 0;
width: 100%;
color: #c1c5c7;
font-size: 14px;
font-style: italic;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.select-menu select {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 39px;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
.select-menu select:hover {
cursor: pointer;
}
.select-menu .select-menu__top-label {
display: block;
width: 100%;
height: 39px;
border-bottom: 2px solid #0083e9;
margin-top: 10px;
padding: 10px 5px;
box-sizing: border-box;
background: url("../img/select-arrow.png") no-repeat;
background-position: 94% 19px;
}
.checkbox {
position: relative;
margin-top: 10px;
}
.checkbox.half {
width: 45%;
}
.checkbox.left {
float: left;
}
.checkbox.right {
float: right;
}
.checkbox.margin-left {
margin-left: 5px;
}
.checkbox input[type=checkbox] {
z-index: 10;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
.checkbox input[type=checkbox]:hover {
cursor: pointer;
}
.checkbox input[type=checkbox] + label span {
position: relative;
top: -2px;
left: -6px;
display: inline-block;
width: 20px;
height: 18px;
margin: 0;
vertical-align: middle;
background: url("../img/checkbox.png") left top no-repeat;
cursor: pointer;
}
.checkbox input[type=checkbox]:checked + label span {
background: url("../img/checkbox.png") -20px top no-repeat;
}
.tooltip {
z-index: 50;
position: absolute;
top: 21px;
right: 0px;
}
.tooltip .tooltip__icon {
width: 16px;
height: 16px;
}
.tooltip .tooltip__icon:hover {
cursor: pointer;
}
.tooltip .tooltip__icon:hover + .tooltip__content {
-webkit-transform: translate3d(0%, 0%, 0);
transform: translate3d(0%, 0%, 0);
}
.tooltip .tooltip__content {
z-index: 50;
position: fixed;
width: 30%;
max-width: 300px;
height: 100%;
background: #f9669a;
top: 0px;
left: 0px;
font-weight: 700;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
-webkit-transition: -webkit-transform 500ms cubic-bezier(0.835, 0, 0.19, 1);
transition: transform 500ms cubic-bezier(0.835, 0, 0.19, 1);
vertical-align: middle;
box-sizing: border-box;
padding: 25px;
}
.tooltip .tooltip__content h2 {
color: #fff;
text-align: center;
font-family: 'Exo', sans-serif;
font-weight: 700;
font-style: italic;
}
.tooltip .tooltip__content p {
color: #fff;
text-align: justify;
font-family: 'Exo', sans-serif;
font-weight: 400;
font-size: 14px;
}
.inputs-description {
margin-top: 0;
margin-bottom: 3px;
margin-left: 4px;
color: #37474f;
}
.checkbox.sports {
position: relative;
margin: 0;
margin-top: 15px;
}
.checkbox.sports:nth-child(2) {
margin-top: 30px;
}
.checkbox.sports input[type=checkbox] + label span {
position: absolute;
top: 22px;
left: 0;
}
.checkbox.sports img {
float: left;
display: inline-block;
width: 60px;
height: 60px;
margin-left: 40px;
margin-right: 20px;
}
.checkbox.sports p {
float: left;
display: inline-block;
margin-top: 22px;
color: #252525;
}
.checkbox.image-bg span.img {
position: relative !important;
top: 0 !important;
width: 60px;
height: 60px;
float: left;
display: inline-block;
margin-left: 40px;
margin-right: 20px;
}
.checkbox.image-bg.image-public {
margin-top: 55px;
}
.checkbox.image-bg.image-competition span.img {
background: url("../img/icons/competition-checkbox@2x.png");
background-position: 0 0;
background-size: 60px 120px;
}
.checkbox.image-bg.image-public span.img {
background: url("../img/icons/public-checkbox@2x.png");
background-position: 0 0;
background-size: 60px 120px;
}
.checkbox.image-bg input[type=checkbox]:checked + label span.img {
background-position: 0 60px;
}
@-webkit-keyframes animField {
50% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
51% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
}
@keyframes animField {
50% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
51% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
}
.header {
width: 100%;
height: 70px;
background: #e0e0e0;
}
.header__logo {
position: relative;
float: left;
display: block;
width: 260px;
height: 70px;
background: #1e88e5;
}
.header__logo__img {
position: relative;
top: 23px;
left: 65px;
width: 125px;
height: 25px;
}
.header__menu {
float: left;
}
.header__menu__item {
display: inline-block;
line-height: 70px;
padding: 0 35px;
color: #979fa7;
-webkit-transition: color 200ms;
transition: color 200ms;
}
.header__menu__item .fa {
margin-right: 8px;
}
.header__menu__item:hover,
.header__menu__item.active {
color: #4f5f6f;
}
.header__profile {
float: right;
position: relative;
}
.header__profile .header__menu__item {
z-index: 8;
color: #37474f;
padding: 0 !important;
margin: 0 35px;
}
.header__profile .header__menu__item:hover {
box-shadow: 1px 2px 4px rgba(0,0,0,0.15);
background: #fff;
}
.header__profile .header__menu__item:hover .submenu {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
width: 140px;
height: 100px;
overflow: visible;
box-shadow: 1px 4px 4px rgba(0,0,0,0.15);
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
.header__profile .header__menu__item .fa {
margin-left: 10px;
font-size: 16px;
}
.header__profile .submenu {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
width: 0;
height: 0;
overflow: hidden;
z-index: 50;
position: absolute;
right: 35px;
top: 60px;
padding: none;
background: #fff;
border-radius: 8px;
padding: 8px 0;
}
.header__profile .submenu a {
display: block;
color: #37474f;
padding: 8px 20px;
line-height: 17px;
min-width: 100px;
}
.header__profile .submenu a:hover {
background: #f6f6f6;
}
.header__profile__img {
position: relative;
top: 15px;
width: 40px;
height: 40px;
border-radius: 50%;
margin-left: 15px;
}
.homepage {
background: url("../img/hp_bg.png") top right;
background-size: cover;
}
.homepage.no-bg {
background: #fff;
}
.homepage p {
color: #252525;
}
.homepage__header {
width: 100%;
height: 70px;
background: #fff;
background: rgba(224,224,224,0.5);
}
.homepage__logo {
position: relative;
font-family: 'Exo', sans-serif;
display: block;
float: left;
width: 260px;
height: 70px;
background: #0083e9;
-webkit-transition: opacity 100ms ease-in;
transition: opacity 100ms ease-in;
color: #fff;
font-weight: 700;
font-style: italic;
font-size: 21px;
}
.homepage__logo .homepage__logo__img {
position: relative;
top: 23px;
left: 65px;
width: 125px;
height: 25px;
}
.homepage__login {
display: block;
float: right;
background: #37474f;
margin-top: 8px;
margin-right: 30px;
font-size: 14px;
}
.homepage__lang {
position: relative;
display: inline-block;
float: right;
color: #37474f;
font-size: 14px;
margin-top: 25px;
margin-right: 15px;
}
.homepage h1 {
font-family: 'Exo', sans-serif;
color: #0083e9;
font-size: 60px;
line-height: 62px;
font-weight: 700;
font-style: italic;
margin: 18px 0;
}
.homepage__text {
font-size: 18px;
line-height: 30px;
margin: 0;
margin-bottom: 30px;
max-width: 650px;
font-family: 'Exo', sans-serif;
}
.homepage__footer {
position: absolute;
bottom: 10px;
width: 100%;
font-size: 12px;
}
.homepage__footer a {
color: #0083e9;
}
.icon-404 {
width: 208px;
height: 150px;
margin-top: 60px;
}
.link-underline {
position: relative;
display: inline-block;
}
.link-underline:after {
content: '';
position: absolute;
bottom: 0px;
left: 0;
width: 0%;
height: 100%;
border-bottom: 2px solid #37474f;
-webkit-transition: width 100ms ease-in-out;
transition: width 100ms ease-in-out;
}
.link-underline.margin-left {
margin-left: 20px;
}
.link-underline.blue {
color: #0083e9;
}
.link-underline.blue:after {
border-bottom: 2px solid #0083e9;
}
.link-underline:hover {
text-decoration: none;
}
.link-underline:hover:after {
width: 100%;
}
.modal-shadow {
display: none;
z-index: 20;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,0,0,0);
-webkit-transition: background 500ms;
transition: background 500ms;
}
.modal-shadow.show {
display: block;
}
.modal-shadow.show-bg {
background: rgba(55,71,79,0.6);
}
.modal {
display: none;
z-index: 25;
position: fixed;
top: 50px;
left: 50%;
width: 540px;
height: 292px;
margin-left: -270px;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translateY(-50px);
transform: translateY(-50px);
-webkit-transition: opacity 500ms, -webkit-transform 500ms;
transition: opacity 500ms, transform 500ms;
}
.modal:hover .modal-close {
opacity: 0.6;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
filter: alpha(opacity=60);
}
.modal.show {
display: block;
}
.modal.show-modal {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
.modal .form-static {
border: 1px solid #efefef;
}
.modal-close {
position: absolute;
top: 5px;
right: 10px;
color: #0083e9;
font-size: 25px;
opacity: 0.2;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
filter: alpha(opacity=20);
-webkit-transition: opacity 200ms;
transition: opacity 200ms;
}
.modal-close:hover {
opacity: 1 !important;
-ms-filter: none !important;
-webkit-filter: none !important;
filter: none !important;
}
.profile-left {
position: absolute;
top: 70px;
bottom: 70px;
left: 0;
width: 260px;
background: #37474f;
}
.profile__picture {
position: relative;
width: 260px;
height: 300px;
overflow: hidden;
}
.profile__picture.without-img {
background: #3e4e57;
height: auto;
}
.profile__picture.without-img .profile__picture__text {
position: relative;
bottom: 0;
padding: 25px 0;
}
.profile__picture img {
min-width: 100%;
min-height: 100%;
height: 100%;
}
.profile__picture__text {
position: absolute;
bottom: 0px;
left: 0;
width: 100%;
padding-top: 20px;
padding-bottom: 15px;
background: rgba(55,71,79,0.6);
}
.profile__picture__text h2 {
color: #fff;
font-size: 30px;
line-height: 35px;
font-weight: 400;
margin: 0 25px;
}
.profile__picture__text .coach-badge {
display: inline-block;
text-transform: uppercase;
color: #fff;
background: #e9448d;
padding: 0 10px;
font-size: 12px;
font-weight: 400;
margin-top: 0;
margin-left: 25px;
}
.profile-container {
padding: 0 30px;
overflow: hidden;
}
.profile-container.padding-top {
padding-top: 30px;
}
.profile-container.no-padding {
padding: 0;
}
.profile-info {
display: block;
float: left;
width: 100%;
margin-bottom: 10px;
}
.profile-info.margin-top {
margin-top: 10px;
}
.profile-info.margin-top-big {
margin-top: 30px;
}
.profile-info.half {
float: left;
width: 50%;
}
.profile-info__label {
color: #78909c;
font-size: 14px;
display: block;
}
.profile-info__detail {
position: relative;
color: #fff;
font-size: 30px;
}
.profile-info__detail-unit {
position: relative;
top: -13px;
left: 2px;
font-size: 12px;
}
.profile-info__heading {
display: block;
width: 100%;
float: left;
color: #78909c;
text-transform: uppercase;
font-size: 14px;
font-weight: 700;
margin-bottom: 20px;
}
.profile-info__heading.margin-top {
padding-top: 20px;
}
.profile-sport {
float: left;
width: 130px;
height: 130px;
background: #3e4e57;
box-sizing: border-box;
border-right: 1px solid #37474f;
border-bottom: 1px solid #37474f;
padding: 30px;
}
.profile-sport:nth-child(even) {
border-right: none;
}
.profile-sport span {
display: block;
text-align: center;
color: #78909c;
font-size: 14px;
}
.profile-sport img {
display: block;
width: 40px;
height: 40px;
margin: 0 auto;
margin-top: 10px;
}
.profile-right {
width: 100%;
box-sizing: border-box;
padding-left: 290px;
padding-right: 30px;
padding-top: 10px;
}
.row-component {
position: relative;
margin-left: -20px;
margin-right: -20px;
margin-bottom: 20px;
}
.row-component.no-margin-bottom {
margin-bottom: 0;
}
.row-component hr {
border: none;
border-top: 1px solid #eaeef2;
margin-bottom: 0;
margin-top: 15px;
}
.row-shape {
position: absolute;
top: 30px;
left: 25px;
}
.row-item {
display: block;
padding: 12px;
padding-left: 80px;
border-bottom: 1px solid #eaeef2;
}
.row-item.border-top {
border-top: 1px solid #eaeef2;
margin-top: 15px;
}
.row-item__zone,
.row-item__sub {
display: block;
color: #a1b1c2;
font-size: 14px;
}
.row-item__text {
display: block;
color: #37474f;
font-size: 21px;
}
.row-item.user {
position: relative;
}
.row-item.user img {
position: absolute;
top: 50%;
left: 22px;
margin-top: -20px;
border-radius: 50%;
width: 40px;
height: 40px;
}
a.row-item {
-webkit-transition: opacity 100ms;
transition: opacity 100ms;
}
a.row-item:hover {
opacity: 0.9;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
filter: alpha(opacity=90);
}
.static {
background: #f5f5f5;
padding-top: 75px;
padding-bottom: 20px;
}
.static h1 {
font-size: 30px;
text-align: center;
font-family: 'Exo', sans-serif;
font-weight: 400;
font-style: italic;
margin: 0;
margin-bottom: 10px;
}
.static h1 strong {
font-weight: 700;
}
.static p.small {
font-size: 12px;
}
.static p.center {
text-align: center;
}
.static p a {
color: #0083e9;
}
.static p a:hover {
text-decoration: underline;
}
.user-box {
position: relative;
display: block;
float: left;
width: 220px;
height: 220px;
background: #fff;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
margin-right: 40px;
margin-bottom: 40px;
-webkit-transition: box-shadow 200ms;
transition: box-shadow 200ms;
text-align: center;
box-sizing: border-box;
padding: 30px 10px;
}
.user-box:hover {
box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}
.user-box img {
display: block;
width: 100px;
height: 100px;
margin: 0 auto;
margin-bottom: 15px;
border-radius: 50%;
}
.user-box__small-text {
display: block;
font-size: 14px;
color: #a1b1c2;
}
.user-box__big-text {
display: block;
font-size: 18px;
color: #37474f;
}
.user-box__coach-label {
position: absolute;
top: 10px;
right: -10px;
display: inline-block;
text-transform: uppercase;
color: #fff;
background: #e9448d;
padding: 0 10px;
font-size: 12px;
font-weight: 400;
margin-top: 0;
margin-left: 25px;
} | build/css/app.css | html {
font-family: sans-serif; /* 1 */
-ms-text-size-adjust: 100%; /* 2 */
-webkit-text-size-adjust: 100%; /* 2 */
}
body {
margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block; /* 1 */
vertical-align: baseline; /* 2 */
}
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: 0.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: -0.5em;
}
sub {
bottom: -0.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; /* 1 */
font: inherit; /* 2 */
margin: 0; /* 3 */
}
button {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button; /* 2 */
cursor: pointer; /* 3 */
}
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; /* 1 */
padding: 0; /* 2 */
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
input[type="search"] {
-webkit-appearance: textfield; /* 1 */ /* 2 */
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: 0.35em 0.625em 0.75em;
}
legend {
border: 0; /* 1 */
padding: 0; /* 2 */
}
textarea {
overflow: auto;
}
optgroup {
font-weight: bold;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}
html {
position: relative;
min-height: 100%;
}
body {
height: 100%;
font-family: 'Open Sans', sans-serif;
font-weight: 400;
color: #252525;
background: #f5f5f5;
font-size: 14px;
text-rendering: optimizelegibility;
-webkit-font-smoothing: antialiased;
}
::-moz-selection {
background: #f9669a;
color: #fff;
}
::selection {
background: #f9669a;
color: #fff;
}
a {
color: #e74c3c;
text-decoration: none;
}
strong {
font-weight: 700;
}
h2 {
font-size: 30px;
line-height: 35px;
color: #37474f;
margin: 0;
font-family: 'Exo', sans-serif;
font-weight: 400;
}
h2.margin-top {
margin-top: 5px;
}
h2 span.grey {
color: #a1b1c2;
}
h3 {
font-size: 25px;
line-height: 30px;
color: #37474f;
margin: 0;
font-family: 'Exo', sans-serif;
font-weight: 400;
}
h3.margin-top {
margin-top: 50px;
}
h3.margin-bottom {
margin-bottom: 20px;
}
p {
color: #78909c;
}
p.no-margin {
margin: 0;
}
p.margin-top {
margin-top: 12px;
}
p.inline {
display: inline;
}
p.dark {
color: #37474f;
font-size: 14px;
}
p.medium {
font-size: 20px;
line-height: 20px;
color: #37474f;
margin: 0;
}
p.big {
position: relative;
font-size: 30px;
line-height: 39px;
color: #37474f;
margin: 0;
}
p.big span {
font-size: 19px;
vertical-align: text-top;
}
hr {
border: none;
border-bottom: 1px solid #cfd8dc;
}
.opacity-link {
display: block;
-webkit-transition: opacity 150ms;
transition: opacity 150ms;
}
.opacity-link:hover {
opacity: 0.8 !important;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)" !important;
filter: alpha(opacity=80) !important;
}
.container {
width: 1170px;
margin: 0 auto;
box-sizing: border-box;
}
.container.fluid {
width: 90%;
}
@media (max-width: 1266px) {
.container {
width: 100%;
padding: 0 48px;
}
}
.container.margin-top {
margin-top: 160px;
}
@media (max-width: 1300px) {
.container.margin-top {
margin-top: 120px;
}
}
.row {
position: relative;
overflow: hidden;
}
.row.no-overflow {
overflow: visible;
}
.row.margin-top {
margin-top: 12px;
}
.row.center {
text-align: center;
}
.row.border-bottom {
border-bottom: 1px solid #cfd8dc;
padding: 15px 0;
}
.row.padding {
padding: 15px 0;
}
.row.padding-20 {
padding: 20px;
box-sizing: border-box;
}
.row.padding-big {
padding: 40px 20px;
box-sizing: border-box;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.part-2 {
box-sizing: border-box;
float: left;
width: 50%;
padding: 20px;
}
.center {
text-align: center;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.textLimiter {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.margin-top-big {
margin-top: 70px;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.absolute-right {
position: absolute;
top: 0;
right: 10px;
}
.activity {
margin: 20px 0;
}
.activity-item {
position: relative;
display: block;
min-height: 100px;
width: 100%;
background: #fff;
padding: 23px 30px;
box-sizing: border-box;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
margin-bottom: 10px;
color: #37474f;
-webkit-transition: box-shadow 200ms, background 200ms;
transition: box-shadow 200ms, background 200ms;
}
.activity-item:hover {
box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
background: #fafafa;
}
.activity-item.training {
background: url("../img/training-bg.png") no-repeat bottom right #fff;
background-size: 590px 101px;
}
.activity-item.hr-5 {
border-bottom: 4px solid #e1377a;
}
.activity-item.hr-4 {
border-bottom: 4px solid #fa8e7a;
}
.activity-item.hr-3 {
border-bottom: 4px solid #ffef7a;
}
.activity-item.hr-2 {
border-bottom: 4px solid #b1ff7a;
}
.activity-item.hr-1 {
border-bottom: 4px solid #29eb7b;
}
.activity-item .competition-mark {
position: absolute;
top: 50%;
left: -20px;
margin-top: -20px;
width: 40px;
height: 40px;
background: #f5f5f5;
border-radius: 50%;
border-right: 1px solid rgba(0,0,0,0.2);
}
.activity-item .competition-mark img {
position: relative;
top: 13px;
left: 13px;
width: 16px;
height: 16px;
}
.activity-item .left-img {
float: left;
width: 53px;
height: 53px;
margin-right: 30px;
border-radius: 2px;
}
.activity-item .left {
float: left;
width: calc(100% - 350px - 90px);
}
.activity-item .left .title {
margin-top: 6px;
display: block;
font-size: 18px;
font-family: 'Exo', sans-serif;
}
.activity-item .left .sport-text {
font-size: 14px;
color: #78909c;
}
.activity-item .right {
float: right;
margin-top: 10px;
width: 350px;
text-align: right;
}
.activity-item .right span {
padding: 0 15px;
}
.activity-item .right span span {
padding: 0;
}
.activity-item .right span:last-child {
padding: 0;
}
.activity-item .right span .fa {
margin-right: 5px;
}
.activity-item .right span.limiter {
position: relative;
top: 7px;
display: inline-block;
padding: 0;
width: 2px;
height: 24px;
background: #dbe1e8;
}
.activity-img {
width: 60px;
height: 60px;
border-radius: 2px;
margin: 0 3px;
}
.activity-icons {
position: absolute;
z-index: 2;
bottom: -30px;
left: 50%;
}
.activity-icons.num-1 {
width: 68px;
margin-left: -34px;
}
.activity-icons.num-2 {
width: 134px;
margin-left: -67px;
}
.activity-icons.num-3 {
width: 200px;
margin-left: -100px;
}
.user-avatar {
width: 45px;
height: 45px;
border-radius: 50%;
float: left;
margin-right: 15px;
}
.activity-date {
margin-top: 0;
}
.component .activity-delete {
position: absolute;
bottom: 10px;
right: 10px;
font-size: 12px;
}
.alert-msg {
z-index: 10;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 70px;
color: #fff;
text-align: center;
overflow: hidden;
-webkit-transform: translateY(0px);
transform: translateY(0px);
-webkit-transition: -webkit-transform 200ms cubic-bezier(0.835, 0, 0.19, 1);
transition: transform 200ms cubic-bezier(0.835, 0, 0.19, 1);
}
.alert-msg.hide {
-webkit-transform: translateY(-70px);
transform: translateY(-70px);
}
.alert-msg:hover {
cursor: pointer;
}
.alert-msg:hover:after {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
}
.alert-msg:after {
content: '\f057';
position: absolute;
top: 25px;
right: 55px;
font: normal normal normal 14px/1 FontAwesome;
font-size: 20px;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
opacity: 0.6;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
filter: alpha(opacity=60);
-webkit-transition: opacity 200ms;
transition: opacity 200ms;
}
.alert-msg p {
font-family: 'Exo', sans-serif;
font-weight: 400;
font-style: italic;
font-size: 16px !important;
line-height: 70px;
margin: 0;
color: #fff;
}
.alert-msg p strong {
font-weight: 700;
}
.alert-msg.ko {
background: #f9669a;
}
.alert-msg.ok {
background: #01bfa5;
}
.avatar-upload {
width: 430px;
margin: 0 auto;
}
.avatar-upload p {
margin-top: 0;
}
.avatar-upload img {
float: left;
width: 120px;
height: 120px;
border-radius: 50%;
margin-right: 35px;
}
.avatar-upload__img-wrapper {
width: 120px;
height: 120px;
}
.button {
position: relative;
}
.button input {
z-index: 1;
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
.button input:hover {
cursor: pointer;
}
.button input:focus {
outline: none;
}
.button {
position: relative;
display: inline-block;
line-height: 53px;
padding: 0 25px;
text-align: center;
border-radius: 28px;
color: #fff;
-webkit-transition: color 100ms linear, background 100ms linear, opacity 100ms linear;
transition: color 100ms linear, background 100ms linear, opacity 100ms linear;
font-size: 14px;
border: none;
}
.button:focus {
outline: none;
}
.button.small {
line-height: 40px;
}
.button.wider {
padding: 0 35px;
}
.button.ultra-wider {
padding: 0 55px;
}
.button.right {
float: right;
margin-left: 15px;
margin-top: 5px;
}
.button.no-margin-top {
margin-top: 0;
}
.button.show-on-hover {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
.button.margin-top {
margin-top: 20px;
}
.button.margin-right-small {
margin-right: 10px;
}
.button .fa {
position: relative;
top: 1px;
margin-left: -10px;
margin-right: 10px;
font-size: 18px;
}
.button.blue {
background: #0083e9;
}
.button.blue.border {
border: 1px solid #0083e9;
}
.button.blue:hover {
color: #0083e9;
background: transparent;
}
.button.blue.whiteBg:hover {
background: #fff;
}
.button.blue-inverse {
background: transparent;
color: #0083e9;
}
.button.blue-inverse.border {
border: 1px solid #0083e9;
}
.button.blue-inverse:hover {
color: #fff;
background: #0083e9;
}
.button.dark {
background: #37474f;
}
.button.dark.border {
border: 1px solid #37474f;
}
.button.dark:hover {
color: #37474f;
background: #fff;
}
.button.dark-inverse {
background: transparent;
color: #37474f;
}
.button.dark-inverse.border {
border: 1px solid #cfd8dc;
}
.button.dark-inverse:hover {
color: #37474f;
background: #cfd8dc;
}
.button.fb {
background: #3b5a94;
}
.button.fb.border {
border: 1px solid #3b5a94;
}
.button.fb:hover {
color: #3b5a94;
background: #fff;
}
.button.sidebar-dark {
background: transparent;
color: #78909c;
}
.button.sidebar-dark.border {
border: 1px solid #78909c;
}
.button.sidebar-dark:hover {
color: #fff;
background: #78909c;
}
.button.center {
display: block;
margin: 0 auto;
}
.button.half {
width: 50%;
}
.button.soft-half {
min-width: 50%;
}
.component {
position: relative;
padding: 20px;
margin-bottom: 20px;
box-sizing: border-box;
width: 100%;
}
.component.padding-big {
padding: 40px 20px;
}
.component.padding-40 {
padding: 40px;
}
.component.padding-42 {
padding: 42px 40px;
padding-bottom: 43px;
}
.component.padding-80-40 {
padding: 78px 40px;
padding-bottom: 79px;
}
.component.no-padding {
padding: 0;
}
.component.no-margin-bottom {
margin-bottom: 0;
}
.component.padding-right {
padding-right: 20px !important;
}
.component:hover .show-on-hover {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
}
.component.border-bottom {
border-bottom: 1px solid #cfd8dc;
}
.component.border-bottom-grey {
border-bottom: 1px solid #eaeef2;
}
.component.fixed-header {
position: absolute;
top: 70px;
left: 0;
background: #f5f5f5;
z-index: 5;
padding: 15px 20px;
}
.component.fixed-header .row {
overflow: visible;
}
.component.fixed-header.training {
background: url("../img/training-bg.png") no-repeat bottom left #f5f5f5;
background-size: 425px 73px;
}
.component.fixed-header .homepage__login {
position: absolute;
top: -7px;
right: 0;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translateX(300px);
transform: translateX(300px);
-webkit-transition: opacity 150ms ease-in, color 100ms linear, background 100ms linear;
transition: opacity 150ms ease-in, color 100ms linear, background 100ms linear;
}
.component.fixed {
position: fixed;
top: 0;
left: 0;
background: #f5f5f5;
}
.component.fixed .homepage__login {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
.component.margin-top {
margin-top: 10px;
}
.component.no-margin {
margin: 0;
}
.component.white {
background: #fff;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.dark {
background: #37474f;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.dark h2 {
color: #f5f5f5;
}
.component.grey {
background: #fafafa;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.grey h2 {
color: #f5f5f5;
}
.component.no-side-padding {
padding: 20px 0;
}
.component.no-side-padding .row {
padding: 0 20px;
}
.component.no-padding {
padding: 0;
}
.component.no-margin-bottom {
margin-bottom: 0;
}
.component.no-margin-top {
margin-top: 0;
}
.component.part-2 {
float: left;
width: 50%;
padding: 0 3px;
}
.component.part-2:first-child {
padding-left: 0;
}
.component.part-2:last-child {
padding-right: 0;
}
.component.part-3 {
float: left;
width: 33.3%;
padding: 0 3px;
}
.component.part-3.padding-10 {
padding: 0 10px;
}
.component.part-3:first-child {
padding-left: 0;
}
.component.part-3:last-child {
padding-right: 0;
}
.component.empty {
text-align: center;
}
.component.empty.bg-test .component {
background: url("/build/img/bg/no-test.png") #fff bottom left repeat-x;
}
.component.empty.bg-activity .component {
background: url("/build/img/bg/no-activity.png") #fff top center no-repeat;
}
.component.empty img {
margin-bottom: 30px;
}
.component.empty .component {
padding: 180px 20px;
}
.component.empty .button {
margin-top: 35px;
}
.component.empty.with-icon .component {
padding: 80px 20px;
padding-top: 50px;
}
.component.hr-1 {
background: #29eb7b;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.hr-1 h2,
.component.hr-1 p {
color: #f5f5f5;
}
.component.hr-2 {
background: #b1ff7a;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.hr-2 h2,
.component.hr-2 p {
color: #37474f;
}
.component.hr-3 {
background: #ffef7a;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.hr-3 h2,
.component.hr-3 p {
color: #37474f;
}
.component.hr-4 {
background: #fa8e7a;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.hr-4 h2,
.component.hr-4 p {
color: #f5f5f5;
}
.component.hr-5 {
background: #e1377a;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.component.hr-5 h2,
.component.hr-5 p {
color: #f5f5f5;
}
#comment-fixed.fixed {
position: fixed;
top: 65px;
right: 0;
}
.edit-row {
width: 100%;
box-sizing: border-box;
border-bottom: 1px solid #cfd8dc;
overflow: hidden;
padding: 70px 0px;
}
.edit-row.no-border {
border: none;
}
.edit-row.margin-top-big {
margin-top: 88px;
}
.edit-row .container {
width: 840px;
margin: 0 auto;
}
.edit-row .part-2 {
float: left;
width: 50%;
box-sizing: border-box;
padding: 0 30px;
}
.edit-row .part-2:first-child {
border-right: 1px solid #cfd8dc;
}
.edit-row .part-2.no-border {
border: none;
}
.edit-row .part-2.border-left {
border-left: 1px solid #cfd8dc;
}
.edit-row .part-2.padding-bottom {
padding-bottom: 10px;
}
.filter {
font-size: 16px;
display: inline-block;
line-height: 35px;
color: #37474f;
margin-left: 40px;
border-bottom: 2px solid transparent;
-webkit-transition: color 200ms, border 200ms;
transition: color 200ms, border 200ms;
}
.filter:hover,
.filter.active {
color: #0083e9;
border-bottom: 2px solid #0083e9;
}
footer {
position: relative;
height: 70px;
background: #e0e0e0;
font-size: 14px;
box-sizing: border-box;
padding: 27px 30px;
}
footer.sidebar {
padding-left: 290px;
}
footer.sidebar:before {
content: '';
display: block;
height: 70px;
width: 260px;
position: absolute;
top: 0;
left: 0;
background: #37474f;
}
footer p {
margin: 0;
}
footer a {
color: #0083e9;
}
.form-static {
width: 540px;
margin: 0 auto;
margin-bottom: 45px;
border: 1px solid #dfdfdf;
border-radius: 5px;
background: #fff;
}
.form-static .row:before,
.form-static .row:after {
content: " ";
display: table;
}
.form-static .row:after {
clear: both;
}
.form-static .row.margin-top {
margin-top: 20px;
}
.form-static .container {
width: 320px;
padding: 0;
}
.form-static .container.padding-top {
padding-top: 40px;
}
.form-static .container p {
font-size: 13px;
color: #37474f;
}
.form-static .container p.margin-20 {
margin: 20px 0;
}
.form-static .container a {
font-size: 13px;
color: #37474f;
text-decoration: underline;
}
.form-static .container a:hover {
text-decoration: none;
}
.form-static .container a.half {
display: inline-block;
width: 45%;
}
.form-static .container a.right {
float: right;
margin-top: 18px;
}
.form-static .container a.center {
text-align: center;
}
.form-static__header {
text-transform: uppercase;
color: #0083e9;
text-align: center;
display: block;
font-style: italic;
margin: 30px 0;
}
.form-static__logo {
position: relative;
display: block;
height: 80px;
width: 100%;
background: #0083e9;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
box-sizing: border-box;
padding-top: 25px;
margin-bottom: 25px;
}
.form-static__logo:after {
position: absolute;
bottom: -10px;
left: 50%;
margin-left: -5px;
content: '';
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #0083e9;
font-size: 0;
line-height: 0;
}
.form-static__logo a {
position: absolute;
top: 50%;
left: 50%;
margin: 0 auto;
margin-top: -12px;
margin-left: -62px;
display: block;
width: 125px;
height: 25px;
}
.form-static__logo img {
width: 125px;
height: 25px;
}
.form-static__others {
display: block;
background: #fafafa;
padding-top: 30px;
padding-bottom: 35px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
border-top: 1px solid #dfdfdf;
margin-top: 20px;
}
.form-static__others.center {
text-align: center;
}
.form-static__input {
border: none;
border-bottom: 1px solid #c1c5c7;
width: 100%;
height: 30px;
margin-bottom: 20px;
font-style: italic;
-webkit-transition: border 200ms ease-in;
transition: border 200ms ease-in;
}
.form-static__input:focus {
outline: none;
border-bottom: 1px solid #37474f;
}
.input {
position: relative;
display: inline-block;
width: 100%;
vertical-align: top;
margin-bottom: 10px;
box-sizing: border-box;
}
.input.half {
width: 45%;
}
.input.part-3 {
width: 30%;
}
.input.part-3:nth-child(2) {
margin: 0 5%;
}
.input.left {
float: left;
}
.input.right {
float: right;
}
.input.with-tooltip input {
padding-right: 20px;
}
.input__field {
position: relative;
display: block;
float: right;
border: none;
border-radius: 0;
-webkit-appearance: none;
box-sizing: border-box;
}
.input__field:focus {
outline: none;
}
.input__label {
z-index: 1;
display: inline-block;
float: right;
padding: 0;
width: 100%;
color: #c1c5c7;
font-size: 14px;
font-style: italic;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.input__label-content {
z-index: 1;
position: relative;
display: block;
width: 100%;
}
.input__field--hoshi {
margin-top: 10px;
padding: 10px 5px;
width: 100%;
background: transparent;
}
.input__label--hoshi {
position: absolute;
bottom: 0;
left: 0;
padding: 0 0.25em;
width: 100%;
height: calc(100% - 10px);
text-align: left;
pointer-events: none;
box-sizing: border-box;
}
.input__label-content--hoshi {
position: absolute;
top: 10px;
overflow: hidden;
}
.input__label--hoshi::before,
.input__label--hoshi::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: calc(100% - 10px);
border-bottom: 1px solid #c1c5c7;
}
.input__label--hoshi::after {
border-bottom: 2px solid #0083e9;
width: 0%;
-webkit-transition: width 0.3s;
transition: width 0.3s;
}
.input__field--hoshi:focus + .input__label--hoshi::after,
.input--filled .input__label--hoshi::after {
width: 100%;
}
.input__field--hoshi:focus + .input__label--hoshi .input__label-content--hoshi,
.input--filled .input__label-content--hoshi {
-webkit-animation: animField 500ms forwards;
animation: animField 500ms forwards;
}
.select-menu {
position: relative;
}
.select-menu.half {
width: 45%;
}
.select-menu.right {
float: right;
}
.select-menu label {
display: inline-block;
float: right;
padding: 0;
width: 100%;
color: #c1c5c7;
font-size: 14px;
font-style: italic;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.select-menu select {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 39px;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
.select-menu select:hover {
cursor: pointer;
}
.select-menu .select-menu__top-label {
display: block;
width: 100%;
height: 39px;
border-bottom: 2px solid #0083e9;
margin-top: 10px;
padding: 10px 5px;
box-sizing: border-box;
background: url("../img/select-arrow.png") no-repeat;
background-position: 94% 19px;
}
.checkbox {
position: relative;
margin-top: 10px;
}
.checkbox.half {
width: 45%;
}
.checkbox.left {
float: left;
}
.checkbox.right {
float: right;
}
.checkbox.margin-left {
margin-left: 5px;
}
.checkbox input[type=checkbox] {
z-index: 10;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
.checkbox input[type=checkbox]:hover {
cursor: pointer;
}
.checkbox input[type=checkbox] + label span {
position: relative;
top: -2px;
left: -6px;
display: inline-block;
width: 20px;
height: 18px;
margin: 0;
vertical-align: middle;
background: url("../img/checkbox.png") left top no-repeat;
cursor: pointer;
}
.checkbox input[type=checkbox]:checked + label span {
background: url("../img/checkbox.png") -20px top no-repeat;
}
.tooltip {
z-index: 50;
position: absolute;
top: 21px;
right: 0px;
}
.tooltip .tooltip__icon {
width: 16px;
height: 16px;
}
.tooltip .tooltip__icon:hover {
cursor: pointer;
}
.tooltip .tooltip__icon:hover + .tooltip__content {
-webkit-transform: translate3d(0%, 0%, 0);
transform: translate3d(0%, 0%, 0);
}
.tooltip .tooltip__content {
z-index: 50;
position: fixed;
width: 30%;
max-width: 300px;
height: 100%;
background: #f9669a;
top: 0px;
left: 0px;
font-weight: 700;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
-webkit-transition: -webkit-transform 500ms cubic-bezier(0.835, 0, 0.19, 1);
transition: transform 500ms cubic-bezier(0.835, 0, 0.19, 1);
vertical-align: middle;
box-sizing: border-box;
padding: 25px;
}
.tooltip .tooltip__content h2 {
color: #fff;
text-align: center;
font-family: 'Exo', sans-serif;
font-weight: 700;
font-style: italic;
}
.tooltip .tooltip__content p {
color: #fff;
text-align: justify;
font-family: 'Exo', sans-serif;
font-weight: 400;
font-size: 14px;
}
.inputs-description {
margin-top: 0;
margin-bottom: 3px;
margin-left: 4px;
color: #37474f;
}
.checkbox.sports {
position: relative;
margin: 0;
margin-top: 15px;
}
.checkbox.sports:nth-child(2) {
margin-top: 30px;
}
.checkbox.sports input[type=checkbox] + label span {
position: absolute;
top: 22px;
left: 0;
}
.checkbox.sports img {
float: left;
display: inline-block;
width: 60px;
height: 60px;
margin-left: 40px;
margin-right: 20px;
}
.checkbox.sports p {
float: left;
display: inline-block;
margin-top: 22px;
color: #252525;
}
.checkbox.image-bg span.img {
position: relative !important;
top: 0 !important;
width: 60px;
height: 60px;
float: left;
display: inline-block;
margin-left: 40px;
margin-right: 20px;
}
.checkbox.image-bg.image-public {
margin-top: 55px;
}
.checkbox.image-bg.image-competition span.img {
background: url("../img/icons/competition-checkbox@2x.png");
background-position: 0 0;
background-size: 60px 120px;
}
.checkbox.image-bg.image-public span.img {
background: url("../img/icons/public-checkbox@2x.png");
background-position: 0 0;
background-size: 60px 120px;
}
.checkbox.image-bg input[type=checkbox]:checked + label span.img {
background-position: 0 60px;
}
@-webkit-keyframes animField {
50% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
51% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
}
@keyframes animField {
50% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
51% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
}
.header {
width: 100%;
height: 70px;
background: #e0e0e0;
}
.header__logo {
position: relative;
float: left;
display: block;
width: 260px;
height: 70px;
background: #1e88e5;
}
.header__logo__img {
position: relative;
top: 23px;
left: 65px;
width: 125px;
height: 25px;
}
.header__menu {
float: left;
}
.header__menu__item {
display: inline-block;
line-height: 70px;
padding: 0 35px;
color: #979fa7;
-webkit-transition: color 200ms;
transition: color 200ms;
}
.header__menu__item .fa {
margin-right: 8px;
}
.header__menu__item:hover,
.header__menu__item.active {
color: #4f5f6f;
}
.header__profile {
float: right;
position: relative;
}
.header__profile .header__menu__item {
z-index: 8;
color: #37474f;
padding: 0 !important;
margin: 0 35px;
}
.header__profile .header__menu__item:hover {
box-shadow: 1px 2px 4px rgba(0,0,0,0.15);
background: #fff;
}
.header__profile .header__menu__item:hover .submenu {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
width: 140px;
height: 100px;
overflow: visible;
box-shadow: 1px 4px 4px rgba(0,0,0,0.15);
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
.header__profile .header__menu__item .fa {
margin-left: 10px;
font-size: 16px;
}
.header__profile .submenu {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
width: 0;
height: 0;
overflow: hidden;
z-index: 50;
position: absolute;
right: 35px;
top: 60px;
padding: none;
background: #fff;
border-radius: 8px;
padding: 8px 0;
}
.header__profile .submenu a {
display: block;
color: #37474f;
padding: 8px 20px;
line-height: 17px;
min-width: 100px;
}
.header__profile .submenu a:hover {
background: #f6f6f6;
}
.header__profile__img {
position: relative;
top: 15px;
width: 40px;
height: 40px;
border-radius: 50%;
margin-left: 15px;
}
.homepage {
background: url("../img/hp_bg.png") top right;
background-size: cover;
}
.homepage.no-bg {
background: #fff;
}
.homepage p {
color: #252525;
}
.homepage__header {
width: 100%;
height: 70px;
background: #fff;
background: rgba(224,224,224,0.5);
}
.homepage__logo {
position: relative;
font-family: 'Exo', sans-serif;
display: block;
float: left;
width: 260px;
height: 70px;
background: #0083e9;
-webkit-transition: opacity 100ms ease-in;
transition: opacity 100ms ease-in;
color: #fff;
font-weight: 700;
font-style: italic;
font-size: 21px;
}
.homepage__logo .homepage__logo__img {
position: relative;
top: 23px;
left: 65px;
width: 125px;
height: 25px;
}
.homepage__login {
display: block;
float: right;
background: #37474f;
margin-top: 8px;
margin-right: 30px;
font-size: 14px;
}
.homepage__lang {
position: relative;
display: inline-block;
float: right;
color: #37474f;
font-size: 14px;
margin-top: 25px;
margin-right: 15px;
}
.homepage h1 {
font-family: 'Exo', sans-serif;
color: #0083e9;
font-size: 60px;
line-height: 62px;
font-weight: 700;
font-style: italic;
margin: 18px 0;
}
.homepage__text {
font-size: 18px;
line-height: 30px;
margin: 0;
margin-bottom: 30px;
max-width: 650px;
font-family: 'Exo', sans-serif;
}
.homepage__footer {
position: absolute;
bottom: 10px;
width: 100%;
font-size: 12px;
}
.homepage__footer a {
color: #0083e9;
}
.icon-404 {
width: 208px;
height: 150px;
margin-top: 60px;
}
.link-underline {
position: relative;
display: inline-block;
}
.link-underline:after {
content: '';
position: absolute;
bottom: 0px;
left: 0;
width: 0%;
height: 100%;
border-bottom: 2px solid #37474f;
-webkit-transition: width 100ms ease-in-out;
transition: width 100ms ease-in-out;
}
.link-underline.margin-left {
margin-left: 20px;
}
.link-underline.blue {
color: #0083e9;
}
.link-underline.blue:after {
border-bottom: 2px solid #0083e9;
}
.link-underline:hover {
text-decoration: none;
}
.link-underline:hover:after {
width: 100%;
}
.modal-shadow {
display: none;
z-index: 20;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,0,0,0);
-webkit-transition: background 500ms;
transition: background 500ms;
}
.modal-shadow.show {
display: block;
}
.modal-shadow.show-bg {
background: rgba(55,71,79,0.6);
}
.modal {
display: none;
z-index: 25;
position: fixed;
top: 50px;
left: 50%;
width: 540px;
height: 292px;
margin-left: -270px;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translateY(-50px);
transform: translateY(-50px);
-webkit-transition: opacity 500ms, -webkit-transform 500ms;
transition: opacity 500ms, transform 500ms;
}
.modal:hover .modal-close {
opacity: 0.6;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
filter: alpha(opacity=60);
}
.modal.show {
display: block;
}
.modal.show-modal {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
.modal .form-static {
border: 1px solid #efefef;
}
.modal-close {
position: absolute;
top: 5px;
right: 10px;
color: #0083e9;
font-size: 25px;
opacity: 0.2;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
filter: alpha(opacity=20);
-webkit-transition: opacity 200ms;
transition: opacity 200ms;
}
.modal-close:hover {
opacity: 1 !important;
-ms-filter: none !important;
-webkit-filter: none !important;
filter: none !important;
}
.profile-left {
position: absolute;
top: 70px;
bottom: 70px;
left: 0;
width: 260px;
background: #37474f;
}
.profile__picture {
position: relative;
width: 260px;
height: 300px;
overflow: hidden;
}
.profile__picture.without-img {
background: #3e4e57;
height: auto;
}
.profile__picture.without-img .profile__picture__text {
position: relative;
bottom: 0;
padding: 25px 0;
}
.profile__picture img {
min-width: 100%;
min-height: 100%;
height: 100%;
}
.profile__picture__text {
position: absolute;
bottom: 0px;
left: 0;
width: 100%;
padding-top: 20px;
padding-bottom: 15px;
background: rgba(55,71,79,0.6);
}
.profile__picture__text h2 {
color: #fff;
font-size: 30px;
line-height: 35px;
font-weight: 400;
margin: 0 25px;
}
.profile__picture__text .coach-badge {
display: inline-block;
text-transform: uppercase;
color: #fff;
background: #e9448d;
padding: 0 10px;
font-size: 12px;
font-weight: 400;
margin-top: 0;
margin-left: 25px;
}
.profile-container {
padding: 0 30px;
overflow: hidden;
}
.profile-container.padding-top {
padding-top: 30px;
}
.profile-container.no-padding {
padding: 0;
}
.profile-info {
display: block;
float: left;
width: 100%;
margin-bottom: 10px;
}
.profile-info.margin-top {
margin-top: 10px;
}
.profile-info.margin-top-big {
margin-top: 30px;
}
.profile-info.half {
float: left;
width: 50%;
}
.profile-info__label {
color: #78909c;
font-size: 14px;
display: block;
}
.profile-info__detail {
position: relative;
color: #fff;
font-size: 30px;
}
.profile-info__detail-unit {
position: relative;
top: -13px;
left: 2px;
font-size: 12px;
}
.profile-info__heading {
display: block;
width: 100%;
float: left;
color: #78909c;
text-transform: uppercase;
font-size: 14px;
font-weight: 700;
margin-bottom: 20px;
}
.profile-info__heading.margin-top {
padding-top: 20px;
}
.profile-sport {
float: left;
width: 130px;
height: 130px;
background: #3e4e57;
box-sizing: border-box;
border-right: 1px solid #37474f;
border-bottom: 1px solid #37474f;
padding: 30px;
}
.profile-sport:nth-child(even) {
border-right: none;
}
.profile-sport span {
display: block;
text-align: center;
color: #78909c;
font-size: 14px;
}
.profile-sport img {
display: block;
width: 40px;
height: 40px;
margin: 0 auto;
margin-top: 10px;
}
.profile-right {
width: 100%;
box-sizing: border-box;
padding-left: 290px;
padding-right: 30px;
padding-top: 10px;
}
.row-component {
position: relative;
margin-left: -20px;
margin-right: -20px;
margin-bottom: 20px;
}
.row-component.no-margin-bottom {
margin-bottom: 0;
}
.row-component hr {
border: none;
border-top: 1px solid #eaeef2;
margin-bottom: 0;
margin-top: 15px;
}
.row-shape {
position: absolute;
top: 30px;
left: 25px;
}
.row-item {
display: block;
padding: 12px;
padding-left: 80px;
border-bottom: 1px solid #eaeef2;
}
.row-item.border-top {
border-top: 1px solid #eaeef2;
margin-top: 15px;
}
.row-item__zone,
.row-item__sub {
display: block;
color: #a1b1c2;
font-size: 14px;
}
.row-item__text {
display: block;
color: #37474f;
font-size: 21px;
}
.row-item.user {
position: relative;
}
.row-item.user img {
position: absolute;
top: 50%;
left: 22px;
margin-top: -20px;
border-radius: 50%;
width: 40px;
height: 40px;
}
a.row-item {
-webkit-transition: opacity 100ms;
transition: opacity 100ms;
}
a.row-item:hover {
opacity: 0.9;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
filter: alpha(opacity=90);
}
.static {
background: #f5f5f5;
padding-top: 75px;
padding-bottom: 20px;
}
.static h1 {
font-size: 30px;
text-align: center;
font-family: 'Exo', sans-serif;
font-weight: 400;
font-style: italic;
margin: 0;
margin-bottom: 10px;
}
.static h1 strong {
font-weight: 700;
}
.static p.small {
font-size: 12px;
}
.static p.center {
text-align: center;
}
.static p a {
color: #0083e9;
}
.static p a:hover {
text-decoration: underline;
}
.user-box {
position: relative;
display: block;
float: left;
width: 220px;
height: 220px;
background: #fff;
box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
margin-right: 40px;
margin-bottom: 40px;
-webkit-transition: box-shadow 200ms;
transition: box-shadow 200ms;
text-align: center;
box-sizing: border-box;
padding: 30px 10px;
}
.user-box:hover {
box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}
.user-box img {
display: block;
width: 100px;
height: 100px;
margin: 0 auto;
margin-bottom: 15px;
border-radius: 50%;
}
.user-box__small-text {
display: block;
font-size: 14px;
color: #a1b1c2;
}
.user-box__big-text {
display: block;
font-size: 18px;
color: #37474f;
}
.user-box__coach-label {
position: absolute;
top: 10px;
right: -10px;
display: inline-block;
text-transform: uppercase;
color: #fff;
background: #e9448d;
padding: 0 10px;
font-size: 12px;
font-weight: 400;
margin-top: 0;
margin-left: 25px;
} | 0.38168 | 0.067209 |
body {
margin:0px;
background-image:none;
position:static;
left:auto;
width:1034px;
margin-left:0;
margin-right:0;
text-align:left;
}
#base {
position:absolute;
z-index:0;
}
#u0 {
position:absolute;
left:-8px;
top:-12px;
width:1050px;
height:1650px;
overflow:hidden;
}
#u0_state0 {
position:absolute;
left:0px;
top:0px;
width:1050px;
height:1650px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u0_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u1 {
position:absolute;
left:0px;
top:41px;
width:1030px;
height:69px;
overflow:hidden;
}
#u1_state0 {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:69px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u1_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u2 {
position:absolute;
left:52px;
top:6px;
width:60px;
height:60px;
}
#u2_img {
position:absolute;
left:0px;
top:0px;
width:60px;
height:60px;
}
#u3 {
position:absolute;
left:2px;
top:22px;
width:56px;
visibility:hidden;
word-wrap:break-word;
}
#u4 {
position:absolute;
left:122px;
top:20px;
width:168px;
height:31px;
}
#u4_input {
position:absolute;
left:0px;
top:0px;
width:168px;
height:31px;
font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:24px;
text-decoration:none;
color:#000000;
}
#u4_input:disabled {
color:grayText;
}
#u5 {
position:absolute;
left:280px;
top:2px;
width:290px;
height:64px;
overflow:hidden;
visibility:hidden;
}
#u5_state0 {
position:absolute;
left:0px;
top:0px;
width:290px;
height:64px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u5_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u6 {
position:absolute;
left:0px;
top:0px;
width:290px;
height:60px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:14px;
color:#000000;
text-align:left;
}
#u6_img {
position:absolute;
left:0px;
top:0px;
width:290px;
height:60px;
}
#u7 {
position:absolute;
left:2px;
top:11px;
width:286px;
word-wrap:break-word;
}
#u8 {
position:absolute;
left:0px;
top:139px;
width:960px;
height:1px;
overflow:hidden;
}
#u8_state0 {
position:absolute;
left:0px;
top:0px;
width:960px;
height:1px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u8_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u9 {
position:absolute;
left:-8px;
top:231px;
width:1038px;
height:910px;
overflow:hidden;
}
#u9_state0 {
position:absolute;
left:0px;
top:0px;
width:1038px;
height:910px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u9_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u10 {
position:absolute;
left:56px;
top:4px;
width:984px;
height:614px;
}
#u11 {
position:absolute;
left:0px;
top:0px;
width:115px;
height:58px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
}
#u11_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:58px;
}
#u12 {
position:absolute;
left:2px;
top:20px;
width:111px;
word-wrap:break-word;
}
#u13 {
position:absolute;
left:115px;
top:0px;
width:410px;
height:58px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
}
#u13_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:58px;
}
#u14 {
position:absolute;
left:2px;
top:20px;
width:406px;
word-wrap:break-word;
}
#u15 {
position:absolute;
left:525px;
top:0px;
width:93px;
height:58px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
}
#u15_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:58px;
}
#u16 {
position:absolute;
left:2px;
top:20px;
width:89px;
word-wrap:break-word;
}
#u17 {
position:absolute;
left:618px;
top:0px;
width:237px;
height:58px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
}
#u17_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:58px;
}
#u18 {
position:absolute;
left:2px;
top:20px;
width:233px;
word-wrap:break-word;
}
#u19 {
position:absolute;
left:855px;
top:0px;
width:124px;
height:58px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
}
#u19_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:58px;
}
#u20 {
position:absolute;
left:2px;
top:20px;
width:120px;
word-wrap:break-word;
}
#u21 {
position:absolute;
left:0px;
top:58px;
width:115px;
height:64px;
text-decoration:underline;
}
#u21_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:64px;
}
#u22 {
position:absolute;
left:2px;
top:24px;
width:111px;
word-wrap:break-word;
}
#u23 {
position:absolute;
left:115px;
top:58px;
width:410px;
height:64px;
text-decoration:underline;
}
#u23_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:64px;
}
#u24 {
position:absolute;
left:2px;
top:32px;
width:406px;
word-wrap:break-word;
}
#u25 {
position:absolute;
left:525px;
top:58px;
width:93px;
height:64px;
text-align:center;
}
#u25_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:64px;
}
#u26 {
position:absolute;
left:2px;
top:24px;
width:89px;
word-wrap:break-word;
}
#u27 {
position:absolute;
left:618px;
top:58px;
width:237px;
height:64px;
}
#u27_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:64px;
}
#u28 {
position:absolute;
left:2px;
top:24px;
width:233px;
word-wrap:break-word;
}
#u29 {
position:absolute;
left:855px;
top:58px;
width:124px;
height:64px;
text-align:center;
}
#u29_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:64px;
}
#u30 {
position:absolute;
left:2px;
top:24px;
width:120px;
word-wrap:break-word;
}
#u31 {
position:absolute;
left:0px;
top:122px;
width:115px;
height:50px;
text-decoration:underline;
}
#u31_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:50px;
}
#u32 {
position:absolute;
left:2px;
top:18px;
width:111px;
word-wrap:break-word;
}
#u33 {
position:absolute;
left:115px;
top:122px;
width:410px;
height:50px;
text-decoration:underline;
}
#u33_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:50px;
}
#u34 {
position:absolute;
left:2px;
top:33px;
width:406px;
word-wrap:break-word;
}
#u35 {
position:absolute;
left:525px;
top:122px;
width:93px;
height:50px;
text-align:center;
}
#u35_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:50px;
}
#u36 {
position:absolute;
left:2px;
top:18px;
width:89px;
word-wrap:break-word;
}
#u37 {
position:absolute;
left:618px;
top:122px;
width:237px;
height:50px;
text-decoration:underline;
}
#u37_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:50px;
}
#u38 {
position:absolute;
left:2px;
top:17px;
width:233px;
word-wrap:break-word;
}
#u39 {
position:absolute;
left:855px;
top:122px;
width:124px;
height:50px;
text-align:center;
}
#u39_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:50px;
}
#u40 {
position:absolute;
left:2px;
top:18px;
width:120px;
word-wrap:break-word;
}
#u41 {
position:absolute;
left:0px;
top:172px;
width:115px;
height:65px;
text-decoration:underline;
}
#u41_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:65px;
}
#u42 {
position:absolute;
left:2px;
top:25px;
width:111px;
word-wrap:break-word;
}
#u43 {
position:absolute;
left:115px;
top:172px;
width:410px;
height:65px;
text-decoration:underline;
}
#u43_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:65px;
}
#u44 {
position:absolute;
left:2px;
top:33px;
width:406px;
word-wrap:break-word;
}
#u45 {
position:absolute;
left:525px;
top:172px;
width:93px;
height:65px;
text-align:center;
}
#u45_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:65px;
}
#u46 {
position:absolute;
left:2px;
top:25px;
width:89px;
word-wrap:break-word;
}
#u47 {
position:absolute;
left:618px;
top:172px;
width:237px;
height:65px;
text-decoration:underline;
}
#u47_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:65px;
}
#u48 {
position:absolute;
left:2px;
top:24px;
width:233px;
word-wrap:break-word;
}
#u49 {
position:absolute;
left:855px;
top:172px;
width:124px;
height:65px;
text-align:center;
}
#u49_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:65px;
}
#u50 {
position:absolute;
left:2px;
top:25px;
width:120px;
word-wrap:break-word;
}
#u51 {
position:absolute;
left:0px;
top:237px;
width:115px;
height:49px;
text-decoration:underline;
}
#u51_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:49px;
}
#u52 {
position:absolute;
left:2px;
top:17px;
width:111px;
word-wrap:break-word;
}
#u53 {
position:absolute;
left:115px;
top:237px;
width:410px;
height:49px;
text-decoration:underline;
}
#u53_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:49px;
}
#u54 {
position:absolute;
left:2px;
top:32px;
width:406px;
word-wrap:break-word;
}
#u55 {
position:absolute;
left:525px;
top:237px;
width:93px;
height:49px;
text-align:center;
}
#u55_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:49px;
}
#u56 {
position:absolute;
left:2px;
top:17px;
width:89px;
word-wrap:break-word;
}
#u57 {
position:absolute;
left:618px;
top:237px;
width:237px;
height:49px;
text-decoration:underline;
}
#u57_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:49px;
}
#u58 {
position:absolute;
left:2px;
top:17px;
width:233px;
word-wrap:break-word;
}
#u59 {
position:absolute;
left:855px;
top:237px;
width:124px;
height:49px;
text-align:center;
}
#u59_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:49px;
}
#u60 {
position:absolute;
left:2px;
top:17px;
width:120px;
word-wrap:break-word;
}
#u61 {
position:absolute;
left:0px;
top:286px;
width:115px;
height:65px;
text-decoration:underline;
}
#u61_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:65px;
}
#u62 {
position:absolute;
left:2px;
top:25px;
width:111px;
word-wrap:break-word;
}
#u63 {
position:absolute;
left:115px;
top:286px;
width:410px;
height:65px;
text-decoration:underline;
}
#u63_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:65px;
}
#u64 {
position:absolute;
left:2px;
top:48px;
width:406px;
word-wrap:break-word;
}
#u65 {
position:absolute;
left:525px;
top:286px;
width:93px;
height:65px;
text-align:center;
}
#u65_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:65px;
}
#u66 {
position:absolute;
left:2px;
top:25px;
width:89px;
word-wrap:break-word;
}
#u67 {
position:absolute;
left:618px;
top:286px;
width:237px;
height:65px;
text-decoration:underline;
}
#u67_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:65px;
}
#u68 {
position:absolute;
left:2px;
top:24px;
width:233px;
word-wrap:break-word;
}
#u69 {
position:absolute;
left:855px;
top:286px;
width:124px;
height:65px;
text-align:center;
}
#u69_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:65px;
}
#u70 {
position:absolute;
left:2px;
top:25px;
width:120px;
word-wrap:break-word;
}
#u71 {
position:absolute;
left:0px;
top:351px;
width:115px;
height:50px;
text-decoration:underline;
}
#u71_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:50px;
}
#u72 {
position:absolute;
left:2px;
top:18px;
width:111px;
word-wrap:break-word;
}
#u73 {
position:absolute;
left:115px;
top:351px;
width:410px;
height:50px;
text-decoration:underline;
}
#u73_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:50px;
}
#u74 {
position:absolute;
left:2px;
top:33px;
width:406px;
word-wrap:break-word;
}
#u75 {
position:absolute;
left:525px;
top:351px;
width:93px;
height:50px;
text-align:center;
}
#u75_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:50px;
}
#u76 {
position:absolute;
left:2px;
top:18px;
width:89px;
word-wrap:break-word;
}
#u77 {
position:absolute;
left:618px;
top:351px;
width:237px;
height:50px;
text-decoration:underline;
}
#u77_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:50px;
}
#u78 {
position:absolute;
left:2px;
top:17px;
width:233px;
word-wrap:break-word;
}
#u79 {
position:absolute;
left:855px;
top:351px;
width:124px;
height:50px;
text-align:center;
}
#u79_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:50px;
}
#u80 {
position:absolute;
left:2px;
top:18px;
width:120px;
word-wrap:break-word;
}
#u81 {
position:absolute;
left:0px;
top:401px;
width:115px;
height:49px;
text-decoration:underline;
}
#u81_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:49px;
}
#u82 {
position:absolute;
left:2px;
top:17px;
width:111px;
word-wrap:break-word;
}
#u83 {
position:absolute;
left:115px;
top:401px;
width:410px;
height:49px;
text-decoration:underline;
}
#u83_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:49px;
}
#u84 {
position:absolute;
left:2px;
top:32px;
width:406px;
word-wrap:break-word;
}
#u85 {
position:absolute;
left:525px;
top:401px;
width:93px;
height:49px;
text-align:center;
}
#u85_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:49px;
}
#u86 {
position:absolute;
left:2px;
top:17px;
width:89px;
word-wrap:break-word;
}
#u87 {
position:absolute;
left:618px;
top:401px;
width:237px;
height:49px;
text-decoration:underline;
}
#u87_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:49px;
}
#u88 {
position:absolute;
left:2px;
top:16px;
width:233px;
word-wrap:break-word;
}
#u89 {
position:absolute;
left:855px;
top:401px;
width:124px;
height:49px;
text-align:center;
}
#u89_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:49px;
}
#u90 {
position:absolute;
left:2px;
top:17px;
width:120px;
word-wrap:break-word;
}
#u91 {
position:absolute;
left:0px;
top:450px;
width:115px;
height:61px;
}
#u91_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:61px;
}
#u92 {
position:absolute;
left:2px;
top:16px;
width:111px;
word-wrap:break-word;
}
#u93 {
position:absolute;
left:115px;
top:450px;
width:410px;
height:61px;
text-decoration:underline;
}
#u93_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:61px;
}
#u94 {
position:absolute;
left:2px;
top:44px;
width:406px;
word-wrap:break-word;
}
#u95 {
position:absolute;
left:525px;
top:450px;
width:93px;
height:61px;
text-align:center;
}
#u95_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:61px;
}
#u96 {
position:absolute;
left:2px;
top:23px;
width:89px;
word-wrap:break-word;
}
#u97 {
position:absolute;
left:618px;
top:450px;
width:237px;
height:61px;
text-decoration:underline;
}
#u97_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:61px;
}
#u98 {
position:absolute;
left:2px;
top:22px;
width:233px;
word-wrap:break-word;
}
#u99 {
position:absolute;
left:855px;
top:450px;
width:124px;
height:61px;
text-align:center;
}
#u99_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:61px;
}
#u100 {
position:absolute;
left:2px;
top:23px;
width:120px;
word-wrap:break-word;
}
#u101 {
position:absolute;
left:0px;
top:511px;
width:115px;
height:49px;
text-decoration:underline;
}
#u101_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:49px;
}
#u102 {
position:absolute;
left:2px;
top:17px;
width:111px;
word-wrap:break-word;
}
#u103 {
position:absolute;
left:115px;
top:511px;
width:410px;
height:49px;
text-decoration:underline;
}
#u103_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:49px;
}
#u104 {
position:absolute;
left:2px;
top:32px;
width:406px;
word-wrap:break-word;
}
#u105 {
position:absolute;
left:525px;
top:511px;
width:93px;
height:49px;
text-align:center;
}
#u105_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:49px;
}
#u106 {
position:absolute;
left:2px;
top:17px;
width:89px;
word-wrap:break-word;
}
#u107 {
position:absolute;
left:618px;
top:511px;
width:237px;
height:49px;
text-decoration:underline;
}
#u107_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:49px;
}
#u108 {
position:absolute;
left:2px;
top:16px;
width:233px;
word-wrap:break-word;
}
#u109 {
position:absolute;
left:855px;
top:511px;
width:124px;
height:49px;
text-align:center;
}
#u109_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:49px;
}
#u110 {
position:absolute;
left:2px;
top:17px;
width:120px;
word-wrap:break-word;
}
#u111 {
position:absolute;
left:0px;
top:560px;
width:115px;
height:49px;
text-decoration:underline;
}
#u111_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:49px;
}
#u112 {
position:absolute;
left:2px;
top:17px;
width:111px;
word-wrap:break-word;
}
#u113 {
position:absolute;
left:115px;
top:560px;
width:410px;
height:49px;
text-decoration:underline;
}
#u113_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:49px;
}
#u114 {
position:absolute;
left:2px;
top:32px;
width:406px;
word-wrap:break-word;
}
#u115 {
position:absolute;
left:525px;
top:560px;
width:93px;
height:49px;
text-align:center;
}
#u115_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:49px;
}
#u116 {
position:absolute;
left:2px;
top:17px;
width:89px;
word-wrap:break-word;
}
#u117 {
position:absolute;
left:618px;
top:560px;
width:237px;
height:49px;
text-decoration:underline;
}
#u117_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:49px;
}
#u118 {
position:absolute;
left:2px;
top:16px;
width:233px;
word-wrap:break-word;
}
#u119 {
position:absolute;
left:855px;
top:560px;
width:124px;
height:49px;
text-align:center;
}
#u119_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:49px;
}
#u120 {
position:absolute;
left:2px;
top:17px;
width:120px;
word-wrap:break-word;
}
#u121 {
position:absolute;
left:56px;
top:627px;
width:62px;
height:15px;
}
#u121_img {
position:absolute;
left:0px;
top:0px;
width:62px;
height:15px;
}
#u122 {
position:absolute;
left:0px;
top:0px;
width:62px;
white-space:nowrap;
}
#u123 {
position:absolute;
left:891px;
top:623px;
width:119px;
height:15px;
}
#u123_img {
position:absolute;
left:0px;
top:0px;
width:119px;
height:15px;
}
#u124 {
position:absolute;
left:0px;
top:0px;
width:119px;
white-space:nowrap;
}
#u125 {
position:absolute;
left:198px;
top:650px;
width:32px;
height:16px;
}
#u125_img {
position:absolute;
left:0px;
top:0px;
width:32px;
height:16px;
}
#u126 {
position:absolute;
left:0px;
top:0px;
width:32px;
visibility:hidden;
white-space:nowrap;
}
#u127 {
position:absolute;
left:480px;
top:70px;
width:80px;
height:20px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
}
#u127_img {
position:absolute;
left:0px;
top:0px;
width:80px;
height:20px;
}
#u128 {
position:absolute;
left:2px;
top:2px;
width:76px;
word-wrap:break-word;
}
#u129 {
position:absolute;
left:480px;
top:130px;
width:80px;
height:20px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
}
#u129_img {
position:absolute;
left:0px;
top:0px;
width:80px;
height:20px;
}
#u130 {
position:absolute;
left:2px;
top:2px;
width:76px;
word-wrap:break-word;
}
#u131 {
position:absolute;
left:480px;
top:360px;
width:80px;
height:20px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
}
#u131_img {
position:absolute;
left:0px;
top:0px;
width:80px;
height:20px;
}
#u132 {
position:absolute;
left:2px;
top:2px;
width:76px;
word-wrap:break-word;
}
#u133 {
position:absolute;
left:480px;
top:179px;
width:80px;
height:20px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
}
#u133_img {
position:absolute;
left:0px;
top:0px;
width:80px;
height:20px;
}
#u134 {
position:absolute;
left:2px;
top:2px;
width:76px;
word-wrap:break-word;
}
#u135 {
position:absolute;
left:128px;
top:627px;
width:101px;
height:15px;
text-decoration:underline;
}
#u135_img {
position:absolute;
left:0px;
top:0px;
width:101px;
height:15px;
}
#u136 {
position:absolute;
left:0px;
top:0px;
width:101px;
white-space:nowrap;
}
#u137 {
position:absolute;
left:139px;
top:244px;
width:25px;
height:25px;
}
#u137_img {
position:absolute;
left:0px;
top:0px;
width:25px;
height:25px;
}
#u138 {
position:absolute;
left:2px;
top:4px;
width:21px;
visibility:hidden;
word-wrap:break-word;
}
#u139 {
position:absolute;
left:139px;
top:408px;
width:25px;
height:25px;
}
#u139_img {
position:absolute;
left:0px;
top:0px;
width:25px;
height:25px;
}
#u140 {
position:absolute;
left:2px;
top:4px;
width:21px;
visibility:hidden;
word-wrap:break-word;
}
#u141 {
position:absolute;
left:139px;
top:473px;
width:25px;
height:25px;
}
#u141_img {
position:absolute;
left:0px;
top:0px;
width:25px;
height:25px;
}
#u142 {
position:absolute;
left:2px;
top:4px;
width:21px;
visibility:hidden;
word-wrap:break-word;
}
#u143 {
position:absolute;
left:139px;
top:523px;
width:25px;
height:25px;
}
#u143_img {
position:absolute;
left:0px;
top:0px;
width:25px;
height:25px;
}
#u144 {
position:absolute;
left:2px;
top:4px;
width:21px;
visibility:hidden;
word-wrap:break-word;
}
#u145 {
position:absolute;
left:48px;
top:172px;
width:982px;
height:58px;
overflow:hidden;
}
#u145_state0 {
position:absolute;
left:0px;
top:0px;
width:982px;
height:58px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u145_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u146 {
position:absolute;
left:0px;
top:0px;
width:980px;
height:50px;
}
#u146_img {
position:absolute;
left:0px;
top:0px;
width:980px;
height:50px;
}
#u147 {
position:absolute;
left:2px;
top:17px;
width:976px;
visibility:hidden;
word-wrap:break-word;
}
#u148 {
position:absolute;
left:10px;
top:12px;
width:100px;
height:15px;
}
#u148_img {
position:absolute;
left:0px;
top:0px;
width:100px;
height:15px;
}
#u149 {
position:absolute;
left:0px;
top:0px;
width:100px;
white-space:nowrap;
}
#u150 {
position:absolute;
left:680px;
top:6px;
width:196px;
height:25px;
}
#u150_input {
position:absolute;
left:0px;
top:0px;
width:196px;
height:25px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#999999;
text-align:left;
}
#u151 {
position:absolute;
left:883px;
top:6px;
width:60px;
height:25px;
}
#u151_img {
position:absolute;
left:0px;
top:0px;
width:60px;
height:25px;
}
#u152 {
position:absolute;
left:2px;
top:5px;
width:56px;
word-wrap:break-word;
}
#u153 {
position:absolute;
left:270px;
top:7px;
width:110px;
height:25px;
}
#u153_img {
position:absolute;
left:0px;
top:0px;
width:110px;
height:25px;
}
#u154 {
position:absolute;
left:2px;
top:5px;
width:106px;
word-wrap:break-word;
}
#u155 {
position:absolute;
left:72px;
top:8px;
width:150px;
height:22px;
}
#u155_input {
position:absolute;
left:0px;
top:0px;
width:150px;
height:22px;
font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#000000;
}
#u155_input:disabled {
color:grayText;
}
#u156 {
position:absolute;
left:787px;
top:31px;
width:88px;
height:15px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
text-decoration:underline;
}
#u156_img {
position:absolute;
left:0px;
top:0px;
width:88px;
height:15px;
}
#u157 {
position:absolute;
left:0px;
top:0px;
width:88px;
white-space:nowrap;
}
#u158 {
position:absolute;
left:0px;
top:113px;
width:1030px;
height:47px;
overflow:hidden;
}
#u158_state0 {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:47px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u158_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u159 {
position:absolute;
left:0px;
top:1px;
width:1030px;
height:40px;
overflow:hidden;
}
#u159_state0 {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:40px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u159_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u160 {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:40px;
color:#FFFFFF;
}
#u160_img {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:40px;
}
#u161 {
position:absolute;
left:2px;
top:12px;
width:1026px;
visibility:hidden;
word-wrap:break-word;
}
#u162 {
position:absolute;
left:50px;
top:31px;
width:70px;
height:10px;
}
#u162_start {
position:absolute;
left:0px;
top:-5px;
width:18px;
height:20px;
}
#u162_end {
position:absolute;
left:53px;
top:-5px;
width:18px;
height:20px;
}
#u162_line {
position:absolute;
left:0px;
top:3px;
width:70px;
height:4px;
}
#u163 {
position:absolute;
left:56px;
top:12px;
width:56px;
height:15px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
color:#000000;
}
#u163_img {
position:absolute;
left:0px;
top:0px;
width:56px;
height:15px;
}
#u164 {
position:absolute;
left:0px;
top:0px;
width:56px;
white-space:nowrap;
}
#u165 {
position:absolute;
left:186px;
top:12px;
width:80px;
height:15px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
color:#000000;
}
#u165_img {
position:absolute;
left:0px;
top:0px;
width:80px;
height:15px;
}
#u166 {
position:absolute;
left:0px;
top:0px;
width:80px;
white-space:nowrap;
}
#u167 {
position:absolute;
left:317px;
top:12px;
width:100px;
height:15px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
color:#000000;
}
#u167_img {
position:absolute;
left:0px;
top:0px;
width:100px;
height:15px;
}
#u168 {
position:absolute;
left:0px;
top:0px;
width:100px;
white-space:nowrap;
}
#u158_state1 {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:47px;
visibility:hidden;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u158_state1_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u169 {
position:absolute;
left:0px;
top:42px;
}
#u169_state0 {
position:relative;
left:0px;
top:0px;
background-image:none;
}
#u169_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u170 {
position:absolute;
left:0px;
top:0px;
width:950px;
height:40px;
color:#FFFFFF;
}
#u170_img {
position:absolute;
left:0px;
top:0px;
width:950px;
height:40px;
}
#u171 {
position:absolute;
left:2px;
top:12px;
width:946px;
visibility:hidden;
word-wrap:break-word;
}
#u172 {
position:absolute;
left:53px;
top:54px;
width:54px;
height:15px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
color:#FFFFFF;
}
#u172_img {
position:absolute;
left:0px;
top:0px;
width:54px;
height:15px;
}
#u173 {
position:absolute;
left:0px;
top:0px;
width:54px;
white-space:nowrap;
}
#u174 {
position:absolute;
left:48px;
top:73px;
width:70px;
height:10px;
}
#u174_start {
position:absolute;
left:0px;
top:-5px;
width:18px;
height:20px;
}
#u174_end {
position:absolute;
left:53px;
top:-5px;
width:18px;
height:20px;
}
#u174_line {
position:absolute;
left:0px;
top:3px;
width:70px;
height:4px;
}
#u175 {
position:absolute;
left:186px;
top:54px;
width:56px;
height:15px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
color:#FFFFFF;
}
#u175_img {
position:absolute;
left:0px;
top:0px;
width:56px;
height:15px;
}
#u175_img.selected {
}
#u175.selected {
}
#u176 {
position:absolute;
left:0px;
top:0px;
width:56px;
white-space:nowrap;
}
#u177 {
position:absolute;
left:316px;
top:54px;
width:73px;
height:15px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
color:#FFFFFF;
}
#u177_img {
position:absolute;
left:0px;
top:0px;
width:73px;
height:15px;
}
#u178 {
position:absolute;
left:0px;
top:0px;
width:73px;
white-space:nowrap;
}
#u179 {
position:absolute;
left:447px;
top:54px;
width:86px;
height:15px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
color:#FFFFFF;
}
#u179_img {
position:absolute;
left:0px;
top:0px;
width:86px;
height:15px;
}
#u180 {
position:absolute;
left:0px;
top:0px;
width:86px;
white-space:nowrap;
}
#u181 {
position:absolute;
left:160px;
top:42px;
width:120px;
height:41px;
overflow:hidden;
background-image:url('../../resources/images/transparent.gif');
}
#u182 {
position:absolute;
left:150px;
top:430px;
width:180px;
height:80px;
font-size:16px;
}
#u182_img {
position:absolute;
left:0px;
top:0px;
width:180px;
height:80px;
}
#u183 {
position:absolute;
left:2px;
top:22px;
width:176px;
word-wrap:break-word;
}
#u184 {
position:absolute;
left:48px;
top:900px;
width:970px;
height:30px;
overflow:hidden;
}
#u184_state0 {
position:absolute;
left:0px;
top:0px;
width:970px;
height:30px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u184_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u185 {
position:absolute;
left:251px;
top:10px;
width:429px;
height:13px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:10px;
}
#u185_img {
position:absolute;
left:0px;
top:0px;
width:429px;
height:13px;
}
#u186 {
position:absolute;
left:0px;
top:0px;
width:429px;
word-wrap:break-word;
}
#u187 {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:41px;
overflow:hidden;
}
#u187_state0 {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:41px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u187_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u188 {
position:absolute;
left:83px;
top:8px;
width:101px;
height:22px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
}
#u188_img {
position:absolute;
left:0px;
top:0px;
width:101px;
height:22px;
}
#u189 {
position:absolute;
left:2px;
top:2px;
width:97px;
white-space:nowrap;
}
#u190 {
position:absolute;
left:51px;
top:4px;
width:25px;
height:25px;
}
#u190_img {
position:absolute;
left:0px;
top:0px;
width:25px;
height:25px;
}
#u191 {
position:absolute;
left:2px;
top:4px;
width:21px;
visibility:hidden;
word-wrap:break-word;
}
#u192 {
position:absolute;
left:210px;
top:11px;
width:144px;
height:15px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
text-decoration:underline;
}
#u192_img {
position:absolute;
left:0px;
top:0px;
width:144px;
height:15px;
}
#u193 {
position:absolute;
left:0px;
top:0px;
width:144px;
white-space:nowrap;
}
#u194 {
position:absolute;
left:809px;
top:9px;
width:32px;
height:15px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
text-decoration:underline;
}
#u194_img {
position:absolute;
left:0px;
top:0px;
width:32px;
height:15px;
}
#u195 {
position:absolute;
left:0px;
top:0px;
width:32px;
white-space:nowrap;
}
#u196 {
position:absolute;
left:851px;
top:6px;
width:147px;
height:22px;
}
#u196_input {
position:absolute;
left:0px;
top:0px;
width:147px;
height:22px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
text-decoration:none;
color:#000000;
}
#u196_input:disabled {
color:grayText;
}
#u197 {
position:absolute;
left:433px;
top:4px;
width:418px;
height:30px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:14px;
}
#u197_img {
position:absolute;
left:0px;
top:0px;
width:418px;
height:30px;
}
#u198 {
position:absolute;
left:2px;
top:-4px;
width:414px;
word-wrap:break-word;
}
#u199 {
position:absolute;
left:364px;
top:8px;
width:196px;
height:29px;
}
#u199_img {
position:absolute;
left:0px;
top:0px;
width:196px;
height:29px;
}
#u200 {
position:absolute;
left:2px;
top:0px;
width:192px;
word-wrap:break-word;
} | projectCrowdExchange/prototype/files/activities_all_filter_page/styles.css | body {
margin:0px;
background-image:none;
position:static;
left:auto;
width:1034px;
margin-left:0;
margin-right:0;
text-align:left;
}
#base {
position:absolute;
z-index:0;
}
#u0 {
position:absolute;
left:-8px;
top:-12px;
width:1050px;
height:1650px;
overflow:hidden;
}
#u0_state0 {
position:absolute;
left:0px;
top:0px;
width:1050px;
height:1650px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u0_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u1 {
position:absolute;
left:0px;
top:41px;
width:1030px;
height:69px;
overflow:hidden;
}
#u1_state0 {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:69px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u1_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u2 {
position:absolute;
left:52px;
top:6px;
width:60px;
height:60px;
}
#u2_img {
position:absolute;
left:0px;
top:0px;
width:60px;
height:60px;
}
#u3 {
position:absolute;
left:2px;
top:22px;
width:56px;
visibility:hidden;
word-wrap:break-word;
}
#u4 {
position:absolute;
left:122px;
top:20px;
width:168px;
height:31px;
}
#u4_input {
position:absolute;
left:0px;
top:0px;
width:168px;
height:31px;
font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:24px;
text-decoration:none;
color:#000000;
}
#u4_input:disabled {
color:grayText;
}
#u5 {
position:absolute;
left:280px;
top:2px;
width:290px;
height:64px;
overflow:hidden;
visibility:hidden;
}
#u5_state0 {
position:absolute;
left:0px;
top:0px;
width:290px;
height:64px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u5_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u6 {
position:absolute;
left:0px;
top:0px;
width:290px;
height:60px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:14px;
color:#000000;
text-align:left;
}
#u6_img {
position:absolute;
left:0px;
top:0px;
width:290px;
height:60px;
}
#u7 {
position:absolute;
left:2px;
top:11px;
width:286px;
word-wrap:break-word;
}
#u8 {
position:absolute;
left:0px;
top:139px;
width:960px;
height:1px;
overflow:hidden;
}
#u8_state0 {
position:absolute;
left:0px;
top:0px;
width:960px;
height:1px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u8_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u9 {
position:absolute;
left:-8px;
top:231px;
width:1038px;
height:910px;
overflow:hidden;
}
#u9_state0 {
position:absolute;
left:0px;
top:0px;
width:1038px;
height:910px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u9_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u10 {
position:absolute;
left:56px;
top:4px;
width:984px;
height:614px;
}
#u11 {
position:absolute;
left:0px;
top:0px;
width:115px;
height:58px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
}
#u11_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:58px;
}
#u12 {
position:absolute;
left:2px;
top:20px;
width:111px;
word-wrap:break-word;
}
#u13 {
position:absolute;
left:115px;
top:0px;
width:410px;
height:58px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
}
#u13_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:58px;
}
#u14 {
position:absolute;
left:2px;
top:20px;
width:406px;
word-wrap:break-word;
}
#u15 {
position:absolute;
left:525px;
top:0px;
width:93px;
height:58px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
}
#u15_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:58px;
}
#u16 {
position:absolute;
left:2px;
top:20px;
width:89px;
word-wrap:break-word;
}
#u17 {
position:absolute;
left:618px;
top:0px;
width:237px;
height:58px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
}
#u17_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:58px;
}
#u18 {
position:absolute;
left:2px;
top:20px;
width:233px;
word-wrap:break-word;
}
#u19 {
position:absolute;
left:855px;
top:0px;
width:124px;
height:58px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
}
#u19_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:58px;
}
#u20 {
position:absolute;
left:2px;
top:20px;
width:120px;
word-wrap:break-word;
}
#u21 {
position:absolute;
left:0px;
top:58px;
width:115px;
height:64px;
text-decoration:underline;
}
#u21_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:64px;
}
#u22 {
position:absolute;
left:2px;
top:24px;
width:111px;
word-wrap:break-word;
}
#u23 {
position:absolute;
left:115px;
top:58px;
width:410px;
height:64px;
text-decoration:underline;
}
#u23_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:64px;
}
#u24 {
position:absolute;
left:2px;
top:32px;
width:406px;
word-wrap:break-word;
}
#u25 {
position:absolute;
left:525px;
top:58px;
width:93px;
height:64px;
text-align:center;
}
#u25_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:64px;
}
#u26 {
position:absolute;
left:2px;
top:24px;
width:89px;
word-wrap:break-word;
}
#u27 {
position:absolute;
left:618px;
top:58px;
width:237px;
height:64px;
}
#u27_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:64px;
}
#u28 {
position:absolute;
left:2px;
top:24px;
width:233px;
word-wrap:break-word;
}
#u29 {
position:absolute;
left:855px;
top:58px;
width:124px;
height:64px;
text-align:center;
}
#u29_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:64px;
}
#u30 {
position:absolute;
left:2px;
top:24px;
width:120px;
word-wrap:break-word;
}
#u31 {
position:absolute;
left:0px;
top:122px;
width:115px;
height:50px;
text-decoration:underline;
}
#u31_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:50px;
}
#u32 {
position:absolute;
left:2px;
top:18px;
width:111px;
word-wrap:break-word;
}
#u33 {
position:absolute;
left:115px;
top:122px;
width:410px;
height:50px;
text-decoration:underline;
}
#u33_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:50px;
}
#u34 {
position:absolute;
left:2px;
top:33px;
width:406px;
word-wrap:break-word;
}
#u35 {
position:absolute;
left:525px;
top:122px;
width:93px;
height:50px;
text-align:center;
}
#u35_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:50px;
}
#u36 {
position:absolute;
left:2px;
top:18px;
width:89px;
word-wrap:break-word;
}
#u37 {
position:absolute;
left:618px;
top:122px;
width:237px;
height:50px;
text-decoration:underline;
}
#u37_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:50px;
}
#u38 {
position:absolute;
left:2px;
top:17px;
width:233px;
word-wrap:break-word;
}
#u39 {
position:absolute;
left:855px;
top:122px;
width:124px;
height:50px;
text-align:center;
}
#u39_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:50px;
}
#u40 {
position:absolute;
left:2px;
top:18px;
width:120px;
word-wrap:break-word;
}
#u41 {
position:absolute;
left:0px;
top:172px;
width:115px;
height:65px;
text-decoration:underline;
}
#u41_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:65px;
}
#u42 {
position:absolute;
left:2px;
top:25px;
width:111px;
word-wrap:break-word;
}
#u43 {
position:absolute;
left:115px;
top:172px;
width:410px;
height:65px;
text-decoration:underline;
}
#u43_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:65px;
}
#u44 {
position:absolute;
left:2px;
top:33px;
width:406px;
word-wrap:break-word;
}
#u45 {
position:absolute;
left:525px;
top:172px;
width:93px;
height:65px;
text-align:center;
}
#u45_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:65px;
}
#u46 {
position:absolute;
left:2px;
top:25px;
width:89px;
word-wrap:break-word;
}
#u47 {
position:absolute;
left:618px;
top:172px;
width:237px;
height:65px;
text-decoration:underline;
}
#u47_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:65px;
}
#u48 {
position:absolute;
left:2px;
top:24px;
width:233px;
word-wrap:break-word;
}
#u49 {
position:absolute;
left:855px;
top:172px;
width:124px;
height:65px;
text-align:center;
}
#u49_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:65px;
}
#u50 {
position:absolute;
left:2px;
top:25px;
width:120px;
word-wrap:break-word;
}
#u51 {
position:absolute;
left:0px;
top:237px;
width:115px;
height:49px;
text-decoration:underline;
}
#u51_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:49px;
}
#u52 {
position:absolute;
left:2px;
top:17px;
width:111px;
word-wrap:break-word;
}
#u53 {
position:absolute;
left:115px;
top:237px;
width:410px;
height:49px;
text-decoration:underline;
}
#u53_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:49px;
}
#u54 {
position:absolute;
left:2px;
top:32px;
width:406px;
word-wrap:break-word;
}
#u55 {
position:absolute;
left:525px;
top:237px;
width:93px;
height:49px;
text-align:center;
}
#u55_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:49px;
}
#u56 {
position:absolute;
left:2px;
top:17px;
width:89px;
word-wrap:break-word;
}
#u57 {
position:absolute;
left:618px;
top:237px;
width:237px;
height:49px;
text-decoration:underline;
}
#u57_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:49px;
}
#u58 {
position:absolute;
left:2px;
top:17px;
width:233px;
word-wrap:break-word;
}
#u59 {
position:absolute;
left:855px;
top:237px;
width:124px;
height:49px;
text-align:center;
}
#u59_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:49px;
}
#u60 {
position:absolute;
left:2px;
top:17px;
width:120px;
word-wrap:break-word;
}
#u61 {
position:absolute;
left:0px;
top:286px;
width:115px;
height:65px;
text-decoration:underline;
}
#u61_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:65px;
}
#u62 {
position:absolute;
left:2px;
top:25px;
width:111px;
word-wrap:break-word;
}
#u63 {
position:absolute;
left:115px;
top:286px;
width:410px;
height:65px;
text-decoration:underline;
}
#u63_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:65px;
}
#u64 {
position:absolute;
left:2px;
top:48px;
width:406px;
word-wrap:break-word;
}
#u65 {
position:absolute;
left:525px;
top:286px;
width:93px;
height:65px;
text-align:center;
}
#u65_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:65px;
}
#u66 {
position:absolute;
left:2px;
top:25px;
width:89px;
word-wrap:break-word;
}
#u67 {
position:absolute;
left:618px;
top:286px;
width:237px;
height:65px;
text-decoration:underline;
}
#u67_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:65px;
}
#u68 {
position:absolute;
left:2px;
top:24px;
width:233px;
word-wrap:break-word;
}
#u69 {
position:absolute;
left:855px;
top:286px;
width:124px;
height:65px;
text-align:center;
}
#u69_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:65px;
}
#u70 {
position:absolute;
left:2px;
top:25px;
width:120px;
word-wrap:break-word;
}
#u71 {
position:absolute;
left:0px;
top:351px;
width:115px;
height:50px;
text-decoration:underline;
}
#u71_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:50px;
}
#u72 {
position:absolute;
left:2px;
top:18px;
width:111px;
word-wrap:break-word;
}
#u73 {
position:absolute;
left:115px;
top:351px;
width:410px;
height:50px;
text-decoration:underline;
}
#u73_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:50px;
}
#u74 {
position:absolute;
left:2px;
top:33px;
width:406px;
word-wrap:break-word;
}
#u75 {
position:absolute;
left:525px;
top:351px;
width:93px;
height:50px;
text-align:center;
}
#u75_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:50px;
}
#u76 {
position:absolute;
left:2px;
top:18px;
width:89px;
word-wrap:break-word;
}
#u77 {
position:absolute;
left:618px;
top:351px;
width:237px;
height:50px;
text-decoration:underline;
}
#u77_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:50px;
}
#u78 {
position:absolute;
left:2px;
top:17px;
width:233px;
word-wrap:break-word;
}
#u79 {
position:absolute;
left:855px;
top:351px;
width:124px;
height:50px;
text-align:center;
}
#u79_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:50px;
}
#u80 {
position:absolute;
left:2px;
top:18px;
width:120px;
word-wrap:break-word;
}
#u81 {
position:absolute;
left:0px;
top:401px;
width:115px;
height:49px;
text-decoration:underline;
}
#u81_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:49px;
}
#u82 {
position:absolute;
left:2px;
top:17px;
width:111px;
word-wrap:break-word;
}
#u83 {
position:absolute;
left:115px;
top:401px;
width:410px;
height:49px;
text-decoration:underline;
}
#u83_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:49px;
}
#u84 {
position:absolute;
left:2px;
top:32px;
width:406px;
word-wrap:break-word;
}
#u85 {
position:absolute;
left:525px;
top:401px;
width:93px;
height:49px;
text-align:center;
}
#u85_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:49px;
}
#u86 {
position:absolute;
left:2px;
top:17px;
width:89px;
word-wrap:break-word;
}
#u87 {
position:absolute;
left:618px;
top:401px;
width:237px;
height:49px;
text-decoration:underline;
}
#u87_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:49px;
}
#u88 {
position:absolute;
left:2px;
top:16px;
width:233px;
word-wrap:break-word;
}
#u89 {
position:absolute;
left:855px;
top:401px;
width:124px;
height:49px;
text-align:center;
}
#u89_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:49px;
}
#u90 {
position:absolute;
left:2px;
top:17px;
width:120px;
word-wrap:break-word;
}
#u91 {
position:absolute;
left:0px;
top:450px;
width:115px;
height:61px;
}
#u91_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:61px;
}
#u92 {
position:absolute;
left:2px;
top:16px;
width:111px;
word-wrap:break-word;
}
#u93 {
position:absolute;
left:115px;
top:450px;
width:410px;
height:61px;
text-decoration:underline;
}
#u93_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:61px;
}
#u94 {
position:absolute;
left:2px;
top:44px;
width:406px;
word-wrap:break-word;
}
#u95 {
position:absolute;
left:525px;
top:450px;
width:93px;
height:61px;
text-align:center;
}
#u95_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:61px;
}
#u96 {
position:absolute;
left:2px;
top:23px;
width:89px;
word-wrap:break-word;
}
#u97 {
position:absolute;
left:618px;
top:450px;
width:237px;
height:61px;
text-decoration:underline;
}
#u97_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:61px;
}
#u98 {
position:absolute;
left:2px;
top:22px;
width:233px;
word-wrap:break-word;
}
#u99 {
position:absolute;
left:855px;
top:450px;
width:124px;
height:61px;
text-align:center;
}
#u99_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:61px;
}
#u100 {
position:absolute;
left:2px;
top:23px;
width:120px;
word-wrap:break-word;
}
#u101 {
position:absolute;
left:0px;
top:511px;
width:115px;
height:49px;
text-decoration:underline;
}
#u101_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:49px;
}
#u102 {
position:absolute;
left:2px;
top:17px;
width:111px;
word-wrap:break-word;
}
#u103 {
position:absolute;
left:115px;
top:511px;
width:410px;
height:49px;
text-decoration:underline;
}
#u103_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:49px;
}
#u104 {
position:absolute;
left:2px;
top:32px;
width:406px;
word-wrap:break-word;
}
#u105 {
position:absolute;
left:525px;
top:511px;
width:93px;
height:49px;
text-align:center;
}
#u105_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:49px;
}
#u106 {
position:absolute;
left:2px;
top:17px;
width:89px;
word-wrap:break-word;
}
#u107 {
position:absolute;
left:618px;
top:511px;
width:237px;
height:49px;
text-decoration:underline;
}
#u107_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:49px;
}
#u108 {
position:absolute;
left:2px;
top:16px;
width:233px;
word-wrap:break-word;
}
#u109 {
position:absolute;
left:855px;
top:511px;
width:124px;
height:49px;
text-align:center;
}
#u109_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:49px;
}
#u110 {
position:absolute;
left:2px;
top:17px;
width:120px;
word-wrap:break-word;
}
#u111 {
position:absolute;
left:0px;
top:560px;
width:115px;
height:49px;
text-decoration:underline;
}
#u111_img {
position:absolute;
left:0px;
top:0px;
width:115px;
height:49px;
}
#u112 {
position:absolute;
left:2px;
top:17px;
width:111px;
word-wrap:break-word;
}
#u113 {
position:absolute;
left:115px;
top:560px;
width:410px;
height:49px;
text-decoration:underline;
}
#u113_img {
position:absolute;
left:0px;
top:0px;
width:410px;
height:49px;
}
#u114 {
position:absolute;
left:2px;
top:32px;
width:406px;
word-wrap:break-word;
}
#u115 {
position:absolute;
left:525px;
top:560px;
width:93px;
height:49px;
text-align:center;
}
#u115_img {
position:absolute;
left:0px;
top:0px;
width:93px;
height:49px;
}
#u116 {
position:absolute;
left:2px;
top:17px;
width:89px;
word-wrap:break-word;
}
#u117 {
position:absolute;
left:618px;
top:560px;
width:237px;
height:49px;
text-decoration:underline;
}
#u117_img {
position:absolute;
left:0px;
top:0px;
width:237px;
height:49px;
}
#u118 {
position:absolute;
left:2px;
top:16px;
width:233px;
word-wrap:break-word;
}
#u119 {
position:absolute;
left:855px;
top:560px;
width:124px;
height:49px;
text-align:center;
}
#u119_img {
position:absolute;
left:0px;
top:0px;
width:124px;
height:49px;
}
#u120 {
position:absolute;
left:2px;
top:17px;
width:120px;
word-wrap:break-word;
}
#u121 {
position:absolute;
left:56px;
top:627px;
width:62px;
height:15px;
}
#u121_img {
position:absolute;
left:0px;
top:0px;
width:62px;
height:15px;
}
#u122 {
position:absolute;
left:0px;
top:0px;
width:62px;
white-space:nowrap;
}
#u123 {
position:absolute;
left:891px;
top:623px;
width:119px;
height:15px;
}
#u123_img {
position:absolute;
left:0px;
top:0px;
width:119px;
height:15px;
}
#u124 {
position:absolute;
left:0px;
top:0px;
width:119px;
white-space:nowrap;
}
#u125 {
position:absolute;
left:198px;
top:650px;
width:32px;
height:16px;
}
#u125_img {
position:absolute;
left:0px;
top:0px;
width:32px;
height:16px;
}
#u126 {
position:absolute;
left:0px;
top:0px;
width:32px;
visibility:hidden;
white-space:nowrap;
}
#u127 {
position:absolute;
left:480px;
top:70px;
width:80px;
height:20px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
}
#u127_img {
position:absolute;
left:0px;
top:0px;
width:80px;
height:20px;
}
#u128 {
position:absolute;
left:2px;
top:2px;
width:76px;
word-wrap:break-word;
}
#u129 {
position:absolute;
left:480px;
top:130px;
width:80px;
height:20px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
}
#u129_img {
position:absolute;
left:0px;
top:0px;
width:80px;
height:20px;
}
#u130 {
position:absolute;
left:2px;
top:2px;
width:76px;
word-wrap:break-word;
}
#u131 {
position:absolute;
left:480px;
top:360px;
width:80px;
height:20px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
}
#u131_img {
position:absolute;
left:0px;
top:0px;
width:80px;
height:20px;
}
#u132 {
position:absolute;
left:2px;
top:2px;
width:76px;
word-wrap:break-word;
}
#u133 {
position:absolute;
left:480px;
top:179px;
width:80px;
height:20px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
}
#u133_img {
position:absolute;
left:0px;
top:0px;
width:80px;
height:20px;
}
#u134 {
position:absolute;
left:2px;
top:2px;
width:76px;
word-wrap:break-word;
}
#u135 {
position:absolute;
left:128px;
top:627px;
width:101px;
height:15px;
text-decoration:underline;
}
#u135_img {
position:absolute;
left:0px;
top:0px;
width:101px;
height:15px;
}
#u136 {
position:absolute;
left:0px;
top:0px;
width:101px;
white-space:nowrap;
}
#u137 {
position:absolute;
left:139px;
top:244px;
width:25px;
height:25px;
}
#u137_img {
position:absolute;
left:0px;
top:0px;
width:25px;
height:25px;
}
#u138 {
position:absolute;
left:2px;
top:4px;
width:21px;
visibility:hidden;
word-wrap:break-word;
}
#u139 {
position:absolute;
left:139px;
top:408px;
width:25px;
height:25px;
}
#u139_img {
position:absolute;
left:0px;
top:0px;
width:25px;
height:25px;
}
#u140 {
position:absolute;
left:2px;
top:4px;
width:21px;
visibility:hidden;
word-wrap:break-word;
}
#u141 {
position:absolute;
left:139px;
top:473px;
width:25px;
height:25px;
}
#u141_img {
position:absolute;
left:0px;
top:0px;
width:25px;
height:25px;
}
#u142 {
position:absolute;
left:2px;
top:4px;
width:21px;
visibility:hidden;
word-wrap:break-word;
}
#u143 {
position:absolute;
left:139px;
top:523px;
width:25px;
height:25px;
}
#u143_img {
position:absolute;
left:0px;
top:0px;
width:25px;
height:25px;
}
#u144 {
position:absolute;
left:2px;
top:4px;
width:21px;
visibility:hidden;
word-wrap:break-word;
}
#u145 {
position:absolute;
left:48px;
top:172px;
width:982px;
height:58px;
overflow:hidden;
}
#u145_state0 {
position:absolute;
left:0px;
top:0px;
width:982px;
height:58px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u145_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u146 {
position:absolute;
left:0px;
top:0px;
width:980px;
height:50px;
}
#u146_img {
position:absolute;
left:0px;
top:0px;
width:980px;
height:50px;
}
#u147 {
position:absolute;
left:2px;
top:17px;
width:976px;
visibility:hidden;
word-wrap:break-word;
}
#u148 {
position:absolute;
left:10px;
top:12px;
width:100px;
height:15px;
}
#u148_img {
position:absolute;
left:0px;
top:0px;
width:100px;
height:15px;
}
#u149 {
position:absolute;
left:0px;
top:0px;
width:100px;
white-space:nowrap;
}
#u150 {
position:absolute;
left:680px;
top:6px;
width:196px;
height:25px;
}
#u150_input {
position:absolute;
left:0px;
top:0px;
width:196px;
height:25px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#999999;
text-align:left;
}
#u151 {
position:absolute;
left:883px;
top:6px;
width:60px;
height:25px;
}
#u151_img {
position:absolute;
left:0px;
top:0px;
width:60px;
height:25px;
}
#u152 {
position:absolute;
left:2px;
top:5px;
width:56px;
word-wrap:break-word;
}
#u153 {
position:absolute;
left:270px;
top:7px;
width:110px;
height:25px;
}
#u153_img {
position:absolute;
left:0px;
top:0px;
width:110px;
height:25px;
}
#u154 {
position:absolute;
left:2px;
top:5px;
width:106px;
word-wrap:break-word;
}
#u155 {
position:absolute;
left:72px;
top:8px;
width:150px;
height:22px;
}
#u155_input {
position:absolute;
left:0px;
top:0px;
width:150px;
height:22px;
font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#000000;
}
#u155_input:disabled {
color:grayText;
}
#u156 {
position:absolute;
left:787px;
top:31px;
width:88px;
height:15px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
text-decoration:underline;
}
#u156_img {
position:absolute;
left:0px;
top:0px;
width:88px;
height:15px;
}
#u157 {
position:absolute;
left:0px;
top:0px;
width:88px;
white-space:nowrap;
}
#u158 {
position:absolute;
left:0px;
top:113px;
width:1030px;
height:47px;
overflow:hidden;
}
#u158_state0 {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:47px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u158_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u159 {
position:absolute;
left:0px;
top:1px;
width:1030px;
height:40px;
overflow:hidden;
}
#u159_state0 {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:40px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u159_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u160 {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:40px;
color:#FFFFFF;
}
#u160_img {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:40px;
}
#u161 {
position:absolute;
left:2px;
top:12px;
width:1026px;
visibility:hidden;
word-wrap:break-word;
}
#u162 {
position:absolute;
left:50px;
top:31px;
width:70px;
height:10px;
}
#u162_start {
position:absolute;
left:0px;
top:-5px;
width:18px;
height:20px;
}
#u162_end {
position:absolute;
left:53px;
top:-5px;
width:18px;
height:20px;
}
#u162_line {
position:absolute;
left:0px;
top:3px;
width:70px;
height:4px;
}
#u163 {
position:absolute;
left:56px;
top:12px;
width:56px;
height:15px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
color:#000000;
}
#u163_img {
position:absolute;
left:0px;
top:0px;
width:56px;
height:15px;
}
#u164 {
position:absolute;
left:0px;
top:0px;
width:56px;
white-space:nowrap;
}
#u165 {
position:absolute;
left:186px;
top:12px;
width:80px;
height:15px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
color:#000000;
}
#u165_img {
position:absolute;
left:0px;
top:0px;
width:80px;
height:15px;
}
#u166 {
position:absolute;
left:0px;
top:0px;
width:80px;
white-space:nowrap;
}
#u167 {
position:absolute;
left:317px;
top:12px;
width:100px;
height:15px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
color:#000000;
}
#u167_img {
position:absolute;
left:0px;
top:0px;
width:100px;
height:15px;
}
#u168 {
position:absolute;
left:0px;
top:0px;
width:100px;
white-space:nowrap;
}
#u158_state1 {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:47px;
visibility:hidden;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u158_state1_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u169 {
position:absolute;
left:0px;
top:42px;
}
#u169_state0 {
position:relative;
left:0px;
top:0px;
background-image:none;
}
#u169_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u170 {
position:absolute;
left:0px;
top:0px;
width:950px;
height:40px;
color:#FFFFFF;
}
#u170_img {
position:absolute;
left:0px;
top:0px;
width:950px;
height:40px;
}
#u171 {
position:absolute;
left:2px;
top:12px;
width:946px;
visibility:hidden;
word-wrap:break-word;
}
#u172 {
position:absolute;
left:53px;
top:54px;
width:54px;
height:15px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
color:#FFFFFF;
}
#u172_img {
position:absolute;
left:0px;
top:0px;
width:54px;
height:15px;
}
#u173 {
position:absolute;
left:0px;
top:0px;
width:54px;
white-space:nowrap;
}
#u174 {
position:absolute;
left:48px;
top:73px;
width:70px;
height:10px;
}
#u174_start {
position:absolute;
left:0px;
top:-5px;
width:18px;
height:20px;
}
#u174_end {
position:absolute;
left:53px;
top:-5px;
width:18px;
height:20px;
}
#u174_line {
position:absolute;
left:0px;
top:3px;
width:70px;
height:4px;
}
#u175 {
position:absolute;
left:186px;
top:54px;
width:56px;
height:15px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
color:#FFFFFF;
}
#u175_img {
position:absolute;
left:0px;
top:0px;
width:56px;
height:15px;
}
#u175_img.selected {
}
#u175.selected {
}
#u176 {
position:absolute;
left:0px;
top:0px;
width:56px;
white-space:nowrap;
}
#u177 {
position:absolute;
left:316px;
top:54px;
width:73px;
height:15px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
color:#FFFFFF;
}
#u177_img {
position:absolute;
left:0px;
top:0px;
width:73px;
height:15px;
}
#u178 {
position:absolute;
left:0px;
top:0px;
width:73px;
white-space:nowrap;
}
#u179 {
position:absolute;
left:447px;
top:54px;
width:86px;
height:15px;
font-family:'ArialMT', 'Arial';
font-weight:400;
font-style:normal;
color:#FFFFFF;
}
#u179_img {
position:absolute;
left:0px;
top:0px;
width:86px;
height:15px;
}
#u180 {
position:absolute;
left:0px;
top:0px;
width:86px;
white-space:nowrap;
}
#u181 {
position:absolute;
left:160px;
top:42px;
width:120px;
height:41px;
overflow:hidden;
background-image:url('../../resources/images/transparent.gif');
}
#u182 {
position:absolute;
left:150px;
top:430px;
width:180px;
height:80px;
font-size:16px;
}
#u182_img {
position:absolute;
left:0px;
top:0px;
width:180px;
height:80px;
}
#u183 {
position:absolute;
left:2px;
top:22px;
width:176px;
word-wrap:break-word;
}
#u184 {
position:absolute;
left:48px;
top:900px;
width:970px;
height:30px;
overflow:hidden;
}
#u184_state0 {
position:absolute;
left:0px;
top:0px;
width:970px;
height:30px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u184_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u185 {
position:absolute;
left:251px;
top:10px;
width:429px;
height:13px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:10px;
}
#u185_img {
position:absolute;
left:0px;
top:0px;
width:429px;
height:13px;
}
#u186 {
position:absolute;
left:0px;
top:0px;
width:429px;
word-wrap:break-word;
}
#u187 {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:41px;
overflow:hidden;
}
#u187_state0 {
position:absolute;
left:0px;
top:0px;
width:1030px;
height:41px;
-ms-overflow-x:hidden;
overflow-x:hidden;
-ms-overflow-y:hidden;
overflow-y:hidden;
background-image:none;
}
#u187_state0_content {
position:absolute;
left:0px;
top:0px;
width:1px;
height:1px;
}
#u188 {
position:absolute;
left:83px;
top:8px;
width:101px;
height:22px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
}
#u188_img {
position:absolute;
left:0px;
top:0px;
width:101px;
height:22px;
}
#u189 {
position:absolute;
left:2px;
top:2px;
width:97px;
white-space:nowrap;
}
#u190 {
position:absolute;
left:51px;
top:4px;
width:25px;
height:25px;
}
#u190_img {
position:absolute;
left:0px;
top:0px;
width:25px;
height:25px;
}
#u191 {
position:absolute;
left:2px;
top:4px;
width:21px;
visibility:hidden;
word-wrap:break-word;
}
#u192 {
position:absolute;
left:210px;
top:11px;
width:144px;
height:15px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
text-decoration:underline;
}
#u192_img {
position:absolute;
left:0px;
top:0px;
width:144px;
height:15px;
}
#u193 {
position:absolute;
left:0px;
top:0px;
width:144px;
white-space:nowrap;
}
#u194 {
position:absolute;
left:809px;
top:9px;
width:32px;
height:15px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
text-decoration:underline;
}
#u194_img {
position:absolute;
left:0px;
top:0px;
width:32px;
height:15px;
}
#u195 {
position:absolute;
left:0px;
top:0px;
width:32px;
white-space:nowrap;
}
#u196 {
position:absolute;
left:851px;
top:6px;
width:147px;
height:22px;
}
#u196_input {
position:absolute;
left:0px;
top:0px;
width:147px;
height:22px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:11px;
text-decoration:none;
color:#000000;
}
#u196_input:disabled {
color:grayText;
}
#u197 {
position:absolute;
left:433px;
top:4px;
width:418px;
height:30px;
font-family:'Roboto-Regular', 'Roboto';
font-weight:400;
font-style:normal;
font-size:14px;
}
#u197_img {
position:absolute;
left:0px;
top:0px;
width:418px;
height:30px;
}
#u198 {
position:absolute;
left:2px;
top:-4px;
width:414px;
word-wrap:break-word;
}
#u199 {
position:absolute;
left:364px;
top:8px;
width:196px;
height:29px;
}
#u199_img {
position:absolute;
left:0px;
top:0px;
width:196px;
height:29px;
}
#u200 {
position:absolute;
left:2px;
top:0px;
width:192px;
word-wrap:break-word;
} | 0.45423 | 0.053157 |
.datatable {
border: 0.06em solid #3577B2;
border-collapse: collapse;
width: 100%;
}
.datatable th {
background-color: #3577B2;
border-right: thin solid #80AFD9;
color: #FFFFFF;
font-family: verdana;
font-size: 10px;
font-weight: bold;
padding: 0.35em 0.31em 0.4em;
text-align: left;
}
.datatable thead tr th.sorting_asc {
background-image: url("/ui/style/img/tri_asc.gif");
background-position: right center;
background-repeat: no-repeat;
cursor: pointer;
padding-right: 1em;
}
table thead tr th.sorting_desc {
background-image: url("/ui/style/img/tri_desc.gif");
background-position: right center;
background-repeat: no-repeat;
cursor: pointer;
padding-right: 1em;
}
table thead tr th.sorting {
background-image: url("/ui/style/img/tri_ad.gif");
background-position: right center;
background-repeat: no-repeat;
cursor: pointer;
padding-right: 1em;
}
.odd {
background-color: #E0E0E0;
border: 0 none;
color: #0F5390;
font-family: verdana;
font-size: 0.875em;
text-align: left;
}
.even {
background-color: #FFFFFF;
border: 0 none;
color: #0F5390;
font-family: verdana;
font-size: 0.875em;
text-align: left;
}
.datatable td {
border-right: thin solid #BCC1C5;
border-top: medium hidden;
height: 33px;
margin-bottom: 1em;
/*padding: 0.3em 0.5em 0.5em 0.3em;*/
vertical-align: middle;
font-size: 10px;
}
/* Full number pagination */
.paging_full_numbers {
height: 22px;
line-height: 22px;
width: 400px;
}
.paging_two_button {
height: 22px;
line-height: 22px;
width: 400px;
}
.dataTables_paginate {
margin-top: 8px;
margin-right: 10em;
float: right;
text-align: right;
}
.paging_full_numbers span.paginate_button {
background-color: #DDDDDD;
}
.paging_full_numbers span.paginate_button, .paging_full_numbers span.paginate_active {
border: 1px solid #AAAAAA;
color: #333333 !important;
cursor: pointer;
margin: 0 3px;
padding: 2px 5px;
}
.paging_two_button div.paginate_disabled_previous, .paging_two_button div.paginate_disabled_next {
display:inline;
width:300px;
border: 1px solid #AAAAAA;
color: #333333 !important;
cursor: pointer;
margin: 0 3px;
padding: 2px 5px;
}
.paging_two_button div.paginate_enabled_previous, .paging_two_button div.paginate_enabled_next {
background-color: #DDDDDD;
display:inline;
width:300px;
border: 1px solid #AAAAAA;
color: #333333 !important;
cursor: pointer;
margin: 0 3px;
padding: 2px 5px;
}
.dataTables_info {
clear: both;
float: left;
margin-top: 10px;
}
.datatable a{
text-decoration:underline;
}
.datatable th.textAlignCenter{
text-align:center;
} | ui/style/css/datatable.css | .datatable {
border: 0.06em solid #3577B2;
border-collapse: collapse;
width: 100%;
}
.datatable th {
background-color: #3577B2;
border-right: thin solid #80AFD9;
color: #FFFFFF;
font-family: verdana;
font-size: 10px;
font-weight: bold;
padding: 0.35em 0.31em 0.4em;
text-align: left;
}
.datatable thead tr th.sorting_asc {
background-image: url("/ui/style/img/tri_asc.gif");
background-position: right center;
background-repeat: no-repeat;
cursor: pointer;
padding-right: 1em;
}
table thead tr th.sorting_desc {
background-image: url("/ui/style/img/tri_desc.gif");
background-position: right center;
background-repeat: no-repeat;
cursor: pointer;
padding-right: 1em;
}
table thead tr th.sorting {
background-image: url("/ui/style/img/tri_ad.gif");
background-position: right center;
background-repeat: no-repeat;
cursor: pointer;
padding-right: 1em;
}
.odd {
background-color: #E0E0E0;
border: 0 none;
color: #0F5390;
font-family: verdana;
font-size: 0.875em;
text-align: left;
}
.even {
background-color: #FFFFFF;
border: 0 none;
color: #0F5390;
font-family: verdana;
font-size: 0.875em;
text-align: left;
}
.datatable td {
border-right: thin solid #BCC1C5;
border-top: medium hidden;
height: 33px;
margin-bottom: 1em;
/*padding: 0.3em 0.5em 0.5em 0.3em;*/
vertical-align: middle;
font-size: 10px;
}
/* Full number pagination */
.paging_full_numbers {
height: 22px;
line-height: 22px;
width: 400px;
}
.paging_two_button {
height: 22px;
line-height: 22px;
width: 400px;
}
.dataTables_paginate {
margin-top: 8px;
margin-right: 10em;
float: right;
text-align: right;
}
.paging_full_numbers span.paginate_button {
background-color: #DDDDDD;
}
.paging_full_numbers span.paginate_button, .paging_full_numbers span.paginate_active {
border: 1px solid #AAAAAA;
color: #333333 !important;
cursor: pointer;
margin: 0 3px;
padding: 2px 5px;
}
.paging_two_button div.paginate_disabled_previous, .paging_two_button div.paginate_disabled_next {
display:inline;
width:300px;
border: 1px solid #AAAAAA;
color: #333333 !important;
cursor: pointer;
margin: 0 3px;
padding: 2px 5px;
}
.paging_two_button div.paginate_enabled_previous, .paging_two_button div.paginate_enabled_next {
background-color: #DDDDDD;
display:inline;
width:300px;
border: 1px solid #AAAAAA;
color: #333333 !important;
cursor: pointer;
margin: 0 3px;
padding: 2px 5px;
}
.dataTables_info {
clear: both;
float: left;
margin-top: 10px;
}
.datatable a{
text-decoration:underline;
}
.datatable th.textAlignCenter{
text-align:center;
} | 0.54819 | 0.296521 |
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
html {
font-family: 'Open Sans', sans-serif;
font-size: 12px;
}
html, body {
height: 100%;
font-family: 'Open Sans', sans-serif;
font-weight: 100;
background: #efefef;
color: #424a4d;
}
h1, h2, h3, h4, h5, h6 {
margin: 10px 0;
}
h1 {
line-height: 43px
}
h2 {
line-height: 35px
}
h3 {
line-height: 30px
}
h4 {
line-height: 22px
}
h3 small, h4 small, h5 small {
font-weight: 300;
color: #444;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 300;
color: #505458
}
.navbar {
min-height: 40px;
margin-bottom: 0px;
}
.navbar ul {
padding: 0px!important;
margin: 0px!important;
}
.navbar-nav li {
display: inline-block;
}
.navbar-nav li a {
padding-bottom: 10px;
padding-top: 10px;
}
#last-one {
position: absolute;
right: 40px;
}
.navbar-nav li:last-child {
position: absolute;
right: 0;
border: none;
}
.navbar, .navbar-inverse {
border: medium none;
border-radius: 0;
}
.header .header-seperation {
display: block;
height: 40px;
width: auto;
}
.fixed {
position: fixed;
}
#sidebar {
height: 100%;
transition: all 0.3s ease-in-out 0s;
width: 210px;
left: 0;
float: left;
}
#sidebar ul li {
position: relative;
}
#sidebar h3 {
font-weight: bold;
font-size: 18px;
padding: 15px 10px;
margin: 0;
text-transform: uppercase;
}
.sidebar-user {
padding: 20px 0px 20px 88px;
}
.sidebar-user-avatar {
background: rgba(0, 0, 0, 0.15);
border-radius: 34px;
float: left;
height: 68px;
margin-left: -78px;
padding: 2px;
width: 68px;
}
.sidebar-user-avatar img {
border-radius: 32px;
height: 64px;
width: 64px;
}
.sidebar-user-name {
font-size: 14px;
font-weight: 300;
line-height: 26px;
margin-top: 10px;
font-weight: bold;
text-decoration: none;
}
.sidebar-user-links a {
margin-right: 12px;
opacity: 0.3;
}
.sidebar-user-links a:focus, .sidebar-user-links a:hover {
opacity: 1;
text-decoration: none;
}
.sidebar-user-links a > i {
font-size: 16px;
}
.leftside-navigation, .right-stat-bar {
height: 100%;
}
.right-stat-bar ul {
list-style-type: none;
padding-left: 0;
}
.right-side-accordion li:nth-child(2) ul li .prog-row {
border: medium none;
}
.nav-collapse.collapse {
display: inline;
}
ul.sidebar-menu, ul.sidebar-menu li ul.sub {
margin: -2px 0 0;
padding: 0;
}
#sidebar > ul > li > ul.sub {
display: none;
}
#sidebar .sub-menu > .sub li a {
padding-left: 45px;
}
#sidebar > ul > li.active > ul.sub, #sidebar > ul > li > ul.sub > li > a {
display: block;
}
ul.sidebar-menu li ul.sub li {
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
}
ul.sidebar-menu li ul.sub li a {
font-size: 12px;
padding-bottom: 10px;
padding-top: 10px;
transition: all 0.3s ease 0s;
}
ul.sidebar-menu li ul.sub li a:hover, ul.sidebar-menu li ul.sub li.active a {
display: block;
transition: all 0.3s ease 0s;
}
ul.sidebar-menu li.sub-menu {
line-height: 15px;
}
ul.sidebar-menu ul.sub li {
border-bottom: medium none;
}
ul.sidebar-menu li a span {
display: inline-block;
}
ul.sidebar-menu li a {
display: block;
font-size: 12px;
font-weight: bold;
outline: medium none;
padding: 12px 12px 12px 25px;
text-decoration: none;
transition: all 0.3s ease 0s;
}
ul.sidebar-menu li a.active, ul.sidebar-menu li a:focus {
display: block;
transition: all 0.3s ease 0s;
}
ul.sidebar-menu li a i {
font-size: 15px;
padding-right: 6px;
}
ul.sidebar-menu li a:hover i, ul.sidebar-menu li a:focus i {
}
ul.sidebar-menu li a.active i {
}
.top-margin {
margin-top: 40px;
}
.page-container {
height: 100%;
margin: 0;
padding: 0;
position: relative;
}
#main-content {
left: 209px;
right: 0;
transition: all 0.3s ease-in-out 0s;
position: absolute;
}
#main-content2 {
position: absolute;
right: 209px;
transition: all 0.3s ease-in-out 0s;
}
#main-content3 {
position: absolute;
right: 210px;
transition: all 0.3s ease-in-out 0s;
width: 950px;
}
.page-content {
display: inline-block;
padding: 20px;
width: 100%;
margin-top: 40px;
position: relative;
}
.page-content:after {
clear: both;
content: "";
display: block;
}
/*dark-theme color start*/
.dark-theme .navbar, .navbar-inverse {
background-color: #363b3f;
}
.dark-theme #sidebar {
background: #363b3f;
}
.dark-theme ul.sidebar-menu li ul.sub li a:hover, ul.sidebar-menu li ul.sub li.active a {
background: #424a4d;
color: #dadbdd;
}
.dark-theme #sidebar h3 {
color: #fff;
}
.dark-theme .sidebar-user {
border-top: 2px solid #24292D;
border-bottom: 1px solid #474c50;
}
.dark-theme .sidebar-user-name {
color: #fff;
}
.dark-theme .sidebar-user-links a {
color: #FFFFFF;
}
.dark-theme .sidebar-user-links a:focus, .sidebar-user-links a:hover {
color: #FFFFFF;
}
.dark-theme ul.sidebar-menu li ul.sub li {
background: #2a2f33;
}
.dark-theme ul.sidebar-menu li ul.sub li a {
color: #AEB2B7;
}
.dark-theme ul.sidebar-menu li ul.sub li a:hover, ul.sidebar-menu li ul.sub li.active a {
background: #424a4d;
color: #dadbdd;
}
.dark-theme ul.sidebar-menu li a {
color: #AEB2B7;
}
.dark-theme ul.sidebar-menu li a.active, ul.sidebar-menu li a:focus {
background: #424a4d;
border-bottom: 1px solid #2d3236;
border-top: 1px solid #485053;
color: #dadbdd;
}
.dark-theme ul.sidebar-menu li a:hover i, ul.sidebar-menu li a:focus i {
color: #dadbdd;
}
.dark-theme ul.sidebar-menu li a.active i {
color: #dadbdd;
}
.dark-theme .navbar-nav li {
border-left: 1px solid #454a4e;
}
.dark-theme .sidebar-user {
background: rgba(0, 0, 0, 0.15);
}
.dark-theme .hov .con {
color: #aeb2b7;
}
.dark-theme .hov .con:hover {
background: none!important;
color: #428BCA;
}
.dark-theme .hov .con:focus {
background: none!important;
color: #FFFFFF;
}
.dark-theme .searchform input {
background: url("../images/icon-search.png") no-repeat scroll 95% center rgba(0,0,0,0.10);
color: #999;
}
.dark-theme .searchform input:focus {
background: url("../images/icon-search.png") no-repeat scroll 95% center rgba(0,0,0,0.10);
color: #999;
}
/*dark-theme color end*/
/*light-theme color start*/
.light-theme .navbar, .navbar-inverse {
background-color: #fff;
color: #5f5c57;
}
.navbar-inverse .navbar-nav > li > a:hover {
color: #999999;
}
.navbar-inverse .navbar-nav > li > a:focus {
color: #999999;
}
.light-theme #sidebar {
background: #fff;
}
.light-theme ul.sidebar-menu li ul.sub li a:hover, ul.sidebar-menu li ul.sub li.active a {
background: #fff;
color: #ffffff;
}
.light-theme #sidebar h3 {
color: #5f5c57;
}
.light-theme .sidebar-user {
border-top: 2px solid #efefef;
border-bottom: 1px solid #efefef;
}
.light-theme .sidebar-user-name {
color: #5f5c57;
}
.light-theme .sidebar-user-links a {
color: #000;
}
.light-theme .sidebar-user-links a:focus, .sidebar-user-links a:hover {
color: #5F5C57;
}
.light-theme ul.sidebar-menu li ul.sub li {
background: #fff;
}
.light-theme ul.sidebar-menu li ul.sub li a {
color: #5f5c57;
}
.light-theme ul.sidebar-menu li ul.sub li a:hover, ul.sidebar-menu li ul.sub li.active a {
background: #ff634d;
color: #fff;
}
.light-theme ul.sidebar-menu li a {
color: #5f5c57;
}
.light-theme ul.sidebar-menu li a.active, ul.sidebar-menu li a:focus {
background: #ff634d;
border-bottom: 1px solid #ff8776;
border-top: 1px solid #ff8776;
color: #fff;
}
.light-theme ul.sidebar-menu li a:hover i, ul.sidebar-menu li a:focus i {
color: #5F5C57;
}
.light-theme ul.sidebar-menu li a.active i {
color: #fff;
}
.light-theme .navbar-nav li {
border-left: 1px solid #d6d5d3;
}
.light-theme .sidebar-user {
background: rgba(255, 255, 255, 0.2);
}
.light-theme .hov .con {
color: #363b3f;
}
.light-theme .hov .con:hover {
color: #428BCA;
}
.light-theme .hov .con:focus {
color: #363b3f;
}
.light-theme .searchform input {
background: url("../images/icon-search.png") no-repeat scroll 95% center rgba(255,255,255,0.10);
color: #999;
}
.light-theme .searchform input:focus {
background: url("../images/icon-search.png") no-repeat scroll 95% center rgba(255,255,255,0.10);
color: #999;
}
/*light-theme color end*/
.panel {
background-color: #FFFFFF;
border-radius: 0 !important;
box-shadow: none !important;
}
.merge-left {
left: 0px!important;
}
.hide-left-bar {
left: -210px!important;
}
.box-shadow {
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
}
.box-shadow2 {
box-shadow: 4px 0px 3px -3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
}
.bg-danger {
background-color: #ff482e;
color: #FCE5E8;
}
.bg-success {
background-color: #8EC165;
color: #FCE5E8;
}
.changed-position {
position: absolute!important;
}
body.container {
border-left: 1px solid #CBD5DD;
border-right: 1px solid #CBD5DD;
box-shadow: 0 3px 60px rgba(0, 0, 0, 0.3);
padding: 0;
}
.hov .btn-group {
margin-right: 10px;
z-index: 101;
}
.hov .con {
display: block;
font-size: 15px;
height: 40px;
line-height: 20px;
padding: 10px 15px;
text-decoration: none;
background: transparent!important;
}
.hov .dropdown-menu {
border: 0 none;
border-top-right-radius: 0;
font-size: 12px;
margin-top: -4px;
border-radius: 0;
}
.hov .dropdown-menu a:hover {
background: none;
color: #FFFFFF;
}
.hov .label {
border-radius: 10px;
font-size: 8px;
font-weight: normal;
left: 22px;
position: absolute;
top: 2px;
}
.dropdown-alerts > .title {
border-bottom: 1px solid #DDDDDD;
height: 40px;
line-height: 20px;
margin-bottom: 0;
padding: 10px;
width: 320px;
}
.dropdown-alerts > .alert {
clear: both;
content: "";
display: table;
height: 40px;
line-height: 20px;
margin-bottom: 0;
padding: 10px;
width: 320px;
}
.dropdown-alerts > .alert:hover {
background: none repeat scroll 0 0 #EFEFEF !important;
cursor: pointer;
}
.dropdown-alerts > .alert > .alert-icon {
display: table-cell;
font-size: 16px;
position: relative;
text-align: left;
top: 1px;
width: 25px;
}
.dropdown-alerts > .alert > .alert-content {
color: #333333;
display: table-cell;
text-align: left;
}
.dropdown-alerts > .alert > .alert-time {
color: #999999;
display: table-cell;
text-align: right;
}
.dropdown-alerts > .alert > .alert-icon.alt-default {
color: #333333;
}
.dropdown-alerts > .alert > .alert-icon.alt-primary {
color: #7BAEDA;
}
.dropdown-alerts > .alert > .alert-icon.alt-warning {
color: #D58512;
}
.dropdown-alerts > .alert > .alert-icon.alt-danger {
color: #DF6F6C;
}
.dropdown-alerts > .divider, .dropdown-messages > .divider {
margin-bottom: 5px !important;
margin-top: 0 !important;
}
.dropdown-alerts > li > a, .dropdown-messages > li > a {
height: 40px;
line-height: 20px;
padding: 10px;
border: none;
}
.dropdown-alerts > li > a, .dropdown-messages > li > a:last-child {
position: relative;
}
.dropdown-messages > .title {
border-bottom: 1px solid #DDDDDD;
height: 40px;
line-height: 20px;
margin-bottom: 0;
padding: 10px;
width: 320px;
}
.dropdown-messages > .message {
clear: both;
content: "";
display: table;
height: 40px;
line-height: 20px;
margin-bottom: 0;
padding: 10px;
width: 320px;
}
.dropdown-messages > .message:hover {
background: none repeat scroll 0 0 #EFEFEF !important;
cursor: pointer;
}
.dropdown-messages > .message > .message-icon {
display: table-cell;
font-size: 16px;
position: relative;
text-align: left;
top: 1px;
width: 30px;
}
.dropdown-messages > .message > .message-icon > img {
height: 30px;
width: 30px;
}
.dropdown-messages > .message > .message-content {
color: #333333;
display: table-cell;
padding-left: 5px;
text-align: left;
}
.dropdown-messages > .message > .message-time {
color: #999999;
display: table-cell;
text-align: right;
}
.dropdown-messages > li > .message-content > a {
padding: 0px;
margin: 0px;
}
.dropdown-messages > li > .message-content > a:hover {
text-decoration: none;
color: #333;
}
.dropdown-profile > .title {
border-bottom: 1px solid #DDDDDD;
height: 30px;
line-height: 10px;
margin-bottom: 5px;
padding: 10px;
width: 200px;
}
.dropdown-profile > li {
border-left: none!important;
}
.dropdown-profile > li > a {
height: 30px;
line-height: 10px;
padding: 10px;
float: left;
clear: both;
}
.dropdown-profile > li > a:hover {
color: #333!important;
}
.dropdown-profile > li > a > span {
font-size: 12px;
margin-right: 8px;
}
.porlets-content {
padding: 15px;
}
.block {
background: #FFFFFF;
border: 0 none;
border-radius: 3px;
margin-bottom: 30px;
}
.block-web, .block-wizard {
background: 0 #FFFFFF;
border-radius: 3px;
margin-bottom: 20px;
padding: 20px;
position: relative;
transition: padding 500ms ease 0s;
}
.block-web.closed {
padding-bottom: 9px;
}
.block .header, .widget-block .header, .block-web .header {
background-color: #FEFEFE;
border-bottom: 1px solid #DADADA;
padding: 10px;
transition: border 500ms ease 0s;
}
.block-web.dark-box .header, .block-web.primary-box .header, .block-web.success-box .header, .block-web.info-box .header, .block-web.danger-box .header, .block-web.warning-box .header {
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.block-web.closed .header {
border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.block .header {
border-radius: 3px 3px 0 0;
padding: 10px;
}
.block-web .header {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
margin: -20px -20px 10px;
padding: 4px 18px;
}
.block-web .header.no-border {
border: 0 none;
}
.block-web .porlets-content {
padding: 5px 3px 0;
}
.block-web .porlets-content.full-width {
margin-bottom: -20px;
margin-left: -20px;
margin-right: -20px;
padding: 0;
}
.block-web .porlets-content h4 {
font-size: 16px;
}
.block-web.no-padding .porlets-content {
padding: 0 !important;
}
.block .header h2, .widget-block .header h2, .block-web .header h2 {
font-size: 29px;
font-weight: 100;
line-height: 38px;
margin: 0;
}
.block .header h3 {
font-weight: 200;
margin: 0px;
color: #fff;
font-size: 20px;
}
.widget-block .header h3, .block-web .header h3 {
font-weight: 200;
margin-top: 3px;
}
.block-web .actions, .block .actions {
float: right;
padding-top: 10px;
}
.block-web .actions .refresh i, .block .actions .refresh i {
font-size: 12px;
}
.block .actions {
padding-top: 5px;
}
.block-web .actions a {
color: rgba(0, 0, 0, 0.3);
margin-left: 6px;
}
.block-web .actions a:hover {
color: rgba(0, 0, 0, 0.5);
}
.block.block-color .actions a {
color: #FFFFFF;
font-size: 14px;
margin-left: 6px;
}
.block.block-color .actions a:hover i {
color: rgba(255, 255, 255, 0.8);
}
.block-web.dark-box .actions a {
color: #FFFFFF;
}
.block-web.dark-box .actions a:hover {
color: rgba(255, 255, 255, 0.5);
}
.dark-box {
background-color: #363b3f;
color: #FFFFFF;
}
.primary-box {
background-color: #428bca;
color: #FFFFFF;
}
.success-box {
background-color: #5cb85c;
color: #FFFFFF;
}
.info-box {
background-color: #5bc0de;
color: #FFFFFF;
}
.warning-box {
background-color: #f0ad4e;
color: #FFFFFF;
}
.danger-box {
background-color: #d9534f;
color: #FFFFFF;
}
.block .header.dark {
background-color: #383A41;
border-bottom: 0 none;
color: #FFFFFF;
}
.dark-box h3 {
color: #fff!important;
}
.primary-box h3 {
color: #fff!important;
}
.info-box h3 {
color: #fff!important;
}
.success-box h3 {
color: #fff!important;
}
.danger-box h3 {
color: #fff!important;
}
.dark-box i {
color: #fff!important;
}
.primary-box i {
color: #fff!important;
}
.info-box i {
color: #fff!important;
}
.success-box i {
color: #fff!important;
}
.danger-box i {
color: #fff!important;
}
.block .header h4 {
font-size: 15px;
font-weight: 400;
margin: 6px 0;
}
.block.block-color {
border-radius: 3px;
position: relative;
}
.block.block-color .header {
background: #363b3f;
border: 0 none;
color: #FFFFFF;
}
.block.block-color.primary .header {
background: #428bca;
color: #FFFFFF;
}
.block.block-color.success .header {
background: #5cb85c;
color: #FFFFFF;
}
.block.block-color.info .header {
background: #5bc0de;
color: #FFFFFF;
}
.block.block-color.warning .header {
background: #f0ad4e;
color: #FFFFFF;
}
.block.block-color.danger .header {
background: #d9534f;
color: #FFFFFF;
}
.block .loading, .block-web .loading {
background: rgba(255, 255, 255, 0.5);
cursor: wait;
display: none;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.block .loading i, .block-web .loading i {
font-size: 26px;
left: 50%;
margin-left: -13px;
margin-top: -13px;
position: relative;
top: 50%;
}
.spacer h2 {
font-size: 26px;
margin-bottom: 20px;
}
/*lockscreen start*/
.lockscreen {
height: 250px;
left: 50%;
margin-left: -239px;
margin-top: -185px;
position: absolute;
top: 50%;
width: 478px;
}
.lockscreen .logo {
display: block;
padding: 15px 0;
}
.lockscreen .logo + div {
background: #FFFFFF;
box-shadow: -21px 32px 40px rgba(0, 0, 0, 0.2);
overflow: hidden;
padding: 13px;
position: relative;
}
.lockscreen .logo > *:first-child {
margin: 0;
}
.lockscreen .logo img {
margin-right: -2px;
margin-top: -4px;
width: 29px;
}
.lockscreen .logo + div > img {
float: left;
}
.lockscreen .logo + div > img + div {
float: right;
width: 318px;
}
.lockscreen .logo + div > img + div > *:first-child {
margin-top: 0;
}
.lockscreen .logo + div > img + div > *:first-child > *:first-child {
opacity: 0.1;
padding: 15px;
}
.lockscreen .logo + div > img + div > *:first-child > small {
display: block;
padding-top: 5px;
}
.lockscreen .logo + div > img + div > *:first-child + p {
margin-bottom: 12px;
}
.margin-top-5 {
margin-top: 5px;
}
.margin-top-10 {
margin-top: 10px;
}
.margin-top-20 {
margin-top: 20px;
}
@media (max-width: 767px) {
.lockscreen .logo + div > img {
float: none !important;
}
.lockscreen {
height: auto;
left: 5%;
margin-left: 0;
margin-top: 0;
position: absolute;
text-align: center;
top: 0;
width: 90%;
}
.lockscreen .logo + div > img + div {
float: none;
height: auto;
width: 100%;
}
}
/*lockscreen end*/
/*Login start*/
.login-container .middle-login {
left: 50%;
margin-left: -215px;
margin-top: -170px;
position: absolute;
top: 50%;
width: 430px;
}
.login-container .block-web {
border: 0 none;
box-shadow: -21px 32px 40px rgba(0, 0, 0, 0.2);
margin-bottom: 20px;
overflow: hidden;
padding: 0;
}
.login-container .block-web .head {
background: #2e3236;
border-bottom: 1px solid #7761A7;
padding: 9px 20px;
}
.login-container .block-web .head h3 {
color: #FFFFFF;
line-height: 35px;
margin: 0;
min-height: 40px;
position: relative;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}
.login-container .head .logo-img {
left: 50%;
margin-left: -63px;
margin-top: -13px;
position: absolute;
top: 50%;
}
.login-container .block-web .content {
padding: 30px 30px 5px;
}
.login-container .block-web .content .form-control {
height: auto;
padding: 10px 8px;
box-shadow: none;
}
.login-container .block-web .content .form-group {
margin-bottom: 10px;
}
.login-container .block-web .content .title {
margin-bottom: 20px;
margin-top: 0;
}
.login-container .block-web .foot {
padding: 0 30px 15px;
text-align: right;
}
.login-container .block-web .foot .btn {
min-width: 70px;
}
.login-container .block-web .input-group-addon {
background: #FAFAFA;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
border-color: #E5E9EC;
}
.login-container .out-links {
padding-right: 3px;
}
.login-container .out-links a {
color: #2e3236;
}
/*Login end*/
/*404error start*/
.error-body {
background-color: #E5E9EC !important;
height: 100%;
}
.error-wrapper {
height: 624px;
margin: 0 auto -130px;
min-height: 100%;
padding: 0 0 60px;
}
.error-wrapper:after {
content: "";
display: block;
}
.error-container {
float: none;
margin-left: auto;
margin-right: auto;
}
.error-main {
margin-top: 18%;
position: absolute;
text-align: center;
}
.error-container .error-number {
color: #22262E;
font-size: 60px;
font-weight: 300;
line-height: 80px;
text-align: center;
}
.error-container .error-description {
color: #22262E;
font-size: 32px;
font-weight: 300;
text-align: center;
}
.error-container .error-description-mini {
color: #22262E;
font-size: 18px;
font-weight: 300;
text-align: center;
}
.error-container .input-prepend.inside .add-on {
background-color: #FFFFFF;
color: #A1A1A1;
padding-top: 6px;
}
.error-container ul.footer-links {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center;
}
.error-container ul.footer-links li {
border-right: 1px solid #000000;
display: inline;
padding: 0 10px;
}
.error-container ul.footer-links li a {
color: #22262E;
font-size: 12px;
}
.error-container ul.footer-links li:last-child {
border-right: medium none;
display: inline;
padding: 0 10px;
}
.error-container ul.footer-links.small-links li a {
color: #616A7B;
font-size: 11px;
}
.error-container ul.footer-links.small-links li {
border-right: 1px solid #616A7B;
}
.error-container ul.footer-links.small-links li:last-child {
border-right: medium none;
}
.error-container .copyright {
font-size: 12px;
text-align: center;
}
.input-with-icon {
position: relative;
}
.input-with-icon input {
padding-left: 32px !important;
}
.input-with-icon i {
color: #E5E9EC;
display: block;
font-size: 16px;
height: 16px;
margin: 9px 2px 4px 10px;
position: absolute;
text-align: center;
width: 16px;
}
/*404error end*/
.content-header {
font-size: 18px;
margin: 0;
padding: 0;
}
.btn, .ui-button, .icon-separator-vertical {
display: inline-block;
position: relative;
text-align: center;
vertical-align: middle;
white-space: nowrap;
box-shadow: none;
}
.button-content {
overflow: hidden;
text-overflow: ellipsis;
}
.button-content, .icon-separator {
display: block;
float: left;
text-align: center;
white-space: nowrap;
}
.button-content .float-left.glyph-icon {
margin-right: 5px;
}
.button-content .float-right.glyph-icon {
margin-left: 5px;
margin-right: 0;
}
[data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"] {
display: none;
}
.button-group-vertical .btn {
display: block;
float: none;
}
.button-group-vertical > .btn:first-child {
border-radius: 0;
}
.button-group-vertical > .btn + .btn {
border-radius: 0;
margin-top: -1px;
}
.button-group-vertical > .btn + .btn .icon-separator {
border-radius: 0;
}
.vertical-button {
max-width: 100px;
min-width: 60px;
padding: 5px 10px;
}
.content-header .btn {
border-radius: 0;
}
.right-margin {
margin-right: -6px;
}
.padd-adj {
padding: 2px 7px;
}
.border-gray {
border: 1px solid #ccc;
}
.block-web .bottom {
background: #fcfcfc;
border-top: 1px solid #ddd;
margin: 0px -20px -20px;
padding: 14px 18px;
clear: both;
}
.panel-icon-add {
color: #CCCCCC;
font-size: 70px;
padding: 4px 0;
text-align: center;
}
.zero-margin {
margin: 0px;
}
.zero-margin h3 {
font-size: 20px
}
.weather-bg {
background: #45b3aa;
border-radius: 4px 4px 0 0;
color: #FFFFFF;
font-size: 16px;
font-weight: 300;
text-align: center;
}
.weather-bg i {
display: block;
font-size: 60px;
}
.weather-bg .degree {
font-size: 60px;
}
.weather-category {
color: #74829C;
padding: 34px 0;
}
.weather-category ul {
display: inline-block;
margin: 0;
padding: 0;
width: 100%;
}
.weather-category ul li {
border-right: 1px solid #E6E6E6;
display: inline-block;
text-align: center;
width: 32%;
}
.weather-category ul li h5 {
font-weight: 300;
margin: 0 0 5px;
text-transform: uppercase;
}
.weather-category ul li a {
}
.weather-category ul li:last-child {
border-right: medium none;
}
.custom-bar-chart {
border-bottom: 1px solid #C9CDD7;
height: 290px;
margin-left: 10px;
margin-top: 20px;
position: relative;
}
.custom-bar-chart .bar {
border-radius: 5px 5px 0 0;
float: left;
height: 100%;
margin: 0 2%;
position: relative;
text-align: center;
width: 8.3%;
z-index: 10;
}
.custom-bar-chart .bar .title {
bottom: -20px;
font-size: 12px;
position: absolute;
text-align: center;
width: 100%;
}
.custom-bar-chart .bar .value {
background: #53b2ea;
border-radius: 3px 3px 0 0;
bottom: 0;
color: #BFC2CD;
position: absolute;
transition: all 0.3s ease 0s;
width: 100%;
}
.custom-bar-chart .bar .value:hover {
background: #ff634d;
color: #FFFFFF;
}
.y-axis {
color: #555555;
position: absolute;
text-align: right;
width: 100%;
}
.y-axis li {
border-top: 1px dashed #DBDCE0;
display: block;
height: 58px;
width: 100%;
}
.y-axis li:last-child {
border-top: medium none;
}
.y-axis li span {
display: block;
margin: -10px 0 0 -65px;
padding: 0 12px;
width: 40px;
}
.y-axis {
color: #555555;
text-align: right;
}
.chart {
display: inline-block;
text-align: center;
width: 100%;
}
.chart .heading {
text-align: left;
}
.chart .heading span {
display: block;
}
.panel.green-chart .chart-tittle {
background: none repeat scroll 0 0 #99C262;
border-radius: 0 0 4px 4px;
display: inline-block;
font-size: 16px;
font-weight: normal;
padding: 15px;
width: 100%;
}
#barchart {
display: inline-block;
margin-bottom: -15px;
}
.bar-bg-color {
background: #ff634d!important;
}
.min-height-fx {
min-height: 380px;
}
.knob-box {
width: 150px;
float: left;
}
.knob-content-box {
width: 120px;
float: left;
margin-left: 20px;
}
.knob-content-box h4 {
padding: 0px!important;
margin: 0px!important;
}
.bottom-content-box {
float: left;
margin-right: 14px;
}
.task-list li.removed {
opacity: 0;
padding-top: 0;
padding-bottom: 0;
height: 0;
overflow: hidden;
border-top: 0px;
}
.task-list li.selected {
text-decoration: line-through;
color: #eee;
}
.task-list li .task-del:hover, .task-list li .task-del:focus {
text-decoration: none;
}
.list-group-item, a.list-group-item {
background: #fff;
border: none;
margin-bottom: 2px;
}
.green-bg-color {
background: #2daba4;
color: #fff;
}
.green-bg-color i {
color: #fff;
}
.green-bg-color h3 {
color: #fff;
}
.green-bg-color .list-group-item {
background: rgba(255,255,255,0.25)!important;
color: #fff;
}
.orange-bg-color {
background: #f06464;
color: #fff;
}
.blue-bg-color {
background: #66a4d4;
color: #fff;
}
.paper {
background: -moz-linear-gradient(center top, #DFE8EC 0%, #FFFFFF 8%) repeat scroll 0 0 / 100% 30px rgba(0, 0, 0, 0);
font-size: 14px;
line-height: 30px;
outline: medium none;
padding: 30px 55px 27px;
position: relative;
}
.paper:after {
border-left: 1px solid #F8D3D3;
bottom: 0;
content: "";
left: 39px;
position: absolute;
top: 0;
width: 0;
}
.widget-notes {
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.04);
}
.widget-notes .content {
padding: 0;
}
.tab-content {
background-color: #FFFFFF;
margin-bottom: 18px;
overflow: hidden;
position: relative;
z-index: 10;
}
.tab-content > .tab-pane, .pill-content > .pill-pane {
padding: 15px;
}
.tab-content > .active, .pill-content > .active {
padding: 0px;
}
.tabs-left > .nav-tabs {
float: left;
margin-right: 0;
}
.tabs-right > .nav-tabs {
float: right;
margin-left: 0;
}
.nav-tabs {
background-color: #687174;
margin-bottom: 0;
}
.nav-tabs > li > a {
border: 0 none;
border-radius: 0;
min-width: 70px;
padding: 10px 20px;
color: #fff;
}
.nav-tabs > li > a:hover {
color: #505458;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
border-width: 0;
}
.nav-tabs > .active > a, .nav-tabs > .active > a:hover, .nav-tabs > .active > a:focus {
border: 0 none;
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
color: #505458;
}
.tabs-left > .nav-tabs > li > a {
border-bottom-left-radius: 3px;
border-top-left-radius: 3px;
}
.tabs-right > .nav-tabs > li > a {
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
}
.the-icons {
padding-top: 17px;
}
.the-icons i {
color: #505458;
display: inline-block;
font-size: 14px;
margin-right: 10px;
text-align: right;
width: 32px;
}
.the-icons a {
color: #505458;
font-size: 14px;
}
.the-icons a {
cursor: pointer;
display: block;
height: 32px;
line-height: 32px;
}
.the-icons a:hover {
text-decoration: none;
}
.the-icons a:hover .fa, .the-icons a:hover [class*="fa"] {
font-size: 28px;
vertical-align: -5px;
}
.progress {
border-radius: 3px;
box-shadow: none;
height: 10px;
margin-bottom: 15px;
}
.progress-hieght {
height: 20px;
}
.badge-primary {
background-color: #428bca;
}
.badge-warning {
background-color: #f0ad4e;
}
.badge-success {
background-color: #5cb85c;
}
.badge-danger {
background-color: #d9534f;
}
.badge-info {
background-color: #428bca;
}
.demo-btns {
list-style: none outside none;
margin: 0;
padding: 0;
}
.demo-btns > li {
display: inline-block;
margin-bottom: 7px;
}
.btn-label {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.15);
border-radius: 3px 0 0 3px;
display: inline-block;
left: -12px;
padding: 6px 12px;
position: relative;
}
.btn-labeled {
padding-bottom: 0;
padding-top: 0;
}
.nav-tabs {
border-bottom: 0 none;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
border: medium none;
}
.tab-content {
background: none repeat scroll 0 0 #FFFFFF;
border: 0 none;
border-radius: 0;
margin-bottom: 40px;
padding: 20px;
}
.tab-content h3 {
margin-top: 0;
padding: 0;
}
.tab-content #picture .fileinput .thumbnail {
border: 0 none;
}
.tab-content #picture .fileinput .thumbnail h2 {
position: relative;
top: 30%;
}
.tab-content h3, h2, h1:first-child {
margin-top: 0;
}
.tab-bottom .nav-tabs {
margin-bottom: 40px;
}
.tab-bottom .tab-content {
margin-bottom: 0;
}
.tab-bottom .nav-tabs > li.active > a:after, .tab-bottom .nav-tabs > li.active > a:hover:after, .tab-bottom .nav-tabs > li.active > a:focus:after {
bottom: 0;
top: auto;
}
.tab-bottom .nav-tabs > li.active > a, .tab-bottom .nav-tabs > li.active > a:hover, .tab-bottom .nav-tabs > li.active > a:focus {
border-top: 0 none;
margin-top: -1px;
}
.tab-bottom .tab-content {
border-radius: 3px 3px 3px 0;
}
.tab-left .nav-tabs {
float: left;
}
.tab-left .nav-tabs > li {
float: none;
margin-bottom: 0;
margin-right: 0;
}
.tab-left .nav-tabs > li > a {
border-radius: 0;
min-width: 38px;
padding: 12px 10px;
text-align: left;
}
.tab-left .nav-tabs > li .fa {
font-size: 14px;
}
.tab-left .nav-tabs > li.active > a:after, .tab-left .nav-tabs > li.active > a:hover:after, .tab-left .nav-tabs > li.active > a:focus:after {
bottom: 0;
height: 100%;
top: auto;
width: 2px;
}
.tab-left .nav-tabs > li.active > a, .tab-left .nav-tabs > li.active > a:hover, .tab-left .nav-tabs > li.active > a:focus {
box-shadow: -1px 3px 4px -3px rgba(0, 0, 0, 0.08);
margin-right: -1px;
padding: 13px 10px 12px 9px;
}
.tab-left .tab-content {
border-radius: 0 3px 3px;
overflow: auto;
}
.tab-right .nav-tabs {
float: right;
}
.tab-right .tab-content {
border-radius: 3px 0 3px 3px;
overflow: auto;
}
.tab-right .nav-tabs > li {
float: none;
margin-bottom: 2px;
margin-right: 0;
}
.tab-right .nav-tabs > li > a {
min-width: 38px;
padding: 12px 10px;
text-align: left;
}
.tab-right .nav-tabs > li .fa {
font-size: 14px;
}
.tab-right .nav-tabs > li.active > a:after, .tab-right .nav-tabs > li.active > a:hover:after, .tab-right .nav-tabs > li.active > a:focus:after {
bottom: 0;
height: 100%;
left: auto;
right: 0;
top: auto;
width: 2px;
}
.tab-right .nav-tabs > li.active > a, .tab-right .nav-tabs > li.active > a:hover, .tab-right .nav-tabs > li.active > a:focus {
border-style: none solid solid none;
border-width: 0 2px 1px 0;
box-shadow: 1px 3px 4px -3px rgba(0, 0, 0, 0.08);
margin-left: -1px;
padding: 13px 10px 12px 12px;
}
.accordion {
margin-bottom: 40px;
}
.accordion .panel-heading {
background: none repeat scroll 0 0 #FFFFFF;
padding: 0;
}
.accordion .panel-heading a {
color: #428bca;
display: block;
font-size: 15px;
padding: 10px 16px;
}
.accordion .panel-heading a:hover {
text-decoration: none !important;
}
.accordion .panel-heading a .fa {
margin-right: 10px;
transform: rotate(90deg);
transition: transform 200ms ease-in-out 0s;
}
.accordion .panel-heading a.collapsed {
color: #555555;
}
.accordion .panel-heading a.collapsed .fa {
transform: rotate(0deg);
}
.accordion .panel-heading + .panel-collapse .panel-body {
border-top: 0 none;
padding: 3px 20px 20px 34px;
}
.accordion .panel {
border-radius: 2px;
border-style: none solid;
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.04);
margin-bottom: 5px;
}
.accordion .panel:first-child {
border-top: 0 none;
}
.accordion.panel-group .panel + .panel {
margin-top: 0;
}
.accordion.accordion-color .panel-heading a {
background-color: #2e3236;
color: #FFFFFF;
}
.accordion.accordion-color .panel-heading a.collapsed {
background-color: #FFFFFF;
color: #555555;
}
.accordion.accordion-color .panel-collapse .panel-body {
background-color: #2e3236;
color: #FFFFFF;
}
.accordion.accordion-semi .panel-heading a {
background-color: #428bca;
color: #FFFFFF;
transition: background-color 200ms ease-in-out 0s;
}
.accordion.accordion-semi .panel-heading.success a {
background-color: #5cb85c;
}
.accordion.accordion-semi .panel-heading.warning a {
background-color: #f0ad4e;
}
.accordion.accordion-semi .panel-heading.danger a {
background-color: #d9534f;
}
.accordion.accordion-semi .panel-heading a.collapsed {
background-color: #FFFFFF;
color: #555555;
}
.accordion.accordion-semi .panel-collapse .panel-body {
padding: 15px 20px 20px 34px;
}
.slider {
display: block;
margin: 5px 0;
}
.slider.primary .slider-track {
background: #428bca;
}
.slider.sucess .slider-track {
background: #5cb85c;
}
.slider.info .slider-track {
background-color: #5bc0de;
background-image: none;
}
.slider.warning .slider-track {
background: #f0ad4e;
}
.slider.danger .slider-track {
background: #d9534f;
}
.slider.white .slider-track {
background: #FFFFFF;
}
.slider.slider-vertical {
margin: 0 10px;
}
.slider-handle.round {
background: linear-gradient(to bottom, #F8F9FA 13%, #FFFFFF 97%) repeat scroll 0 0 rgba(0, 0, 0, 0);
box-shadow: 0 2px 1px -1px #FFFFFF inset, 0 1px 3px rgba(0, 0, 0, 0.39);
height: 26px;
opacity: 1;
width: 26px;
}
.slider.slider-horizontal .slider-handle {
margin-top: -12px !important;
}
.slider.slider-horizontal .slider-track {
border-radius: 8px !important;
box-shadow: 0 0 1px 1px rgba(107, 170, 165, 0.33) inset !important;
height: 3px !important;
}
.slider.slider-vertical .slider-handle {
margin-left: -11px !important;
}
.slider.slider-vertical .slider-track {
width: 3px !important;
}
.the-icons [class*="span"]:first-child {
margin-left: 2.5641%;
}
.slider-selection {
border-radius: 8px !important;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.11) inset !important;
}
.blue .slider-selection {
background-color: #0A6EA0 !important;
background-image: none !important;
}
.red .slider-selection {
background-color: #000000 !important;
background-image: none !important;
}
.green .slider-selection {
background-color: #0E766D !important;
background-image: none !important;
}
.user-profile-sidebar {
margin: 0 0 20px;
}
.user-profile-sidebar .user-identity {
margin: 20px 0 0;
}
.user-profile-sidebar img {
width: 90px;
}
.account-status-data {
border-bottom: 1px dashed #DDDDDD;
border-top: 1px dashed #DDDDDD;
margin: 10px 0 20px;
padding: 10px 0;
text-align: center;
}
.account-status-data h5 {
color: #909090;
font-size: 11px;
line-height: 150%;
}
.user-button {
margin: 15px 0;
}
.user-button .btn {
margin: 5px 0;
}
#social {
background: none repeat scroll 0 0 #E5E9EC;
padding: 10px;
text-align: center;
}
#social a:hover {
text-decoration: none;
}
.fa-circle.facebook {
color: #5471AE;
}
.fa-circle.twitter {
color: #4EC6F6;
}
.fa-circle.gplus {
color: #E24E3E;
}
.fa-circle.tumblr {
color: #4D77A3;
}
.fa-circle.linkedin {
color: #3097CE;
}
.user-profile-content {
margin: 30px 15px;
}
.full {
padding: 0;
}
.block-web .nav-tabs > li > a {
border-color: -moz-use-text-color;
border-radius: 0;
border-style: none;
border-width: medium;
color: #fff;
font-size: 14px;
line-height: 1.42857;
margin: 0;
transition: all 0.4s ease 0s;
}
.block-web .nav-tabs > li > a i {
color: #FFFFFF;
}
.block-web .media-list {
margin-top: 30px;
}
.block-web .media-list a {
color: #1B1E24;
}
.block-web .media-list a:hover {
color: #212121;
text-decoration: none;
}
.block-web .media-list .media {
border-bottom: 1px solid #EAEAEA;
padding: 5px 20px;
}
.block-web .media-list li.media:last-child {
border-bottom: medium none;
}
.block-web .media-list .media .media-heading a {
color: #1B1E24;
font-size: 14px;
font-weight: 600;
margin-right: 5px;
}
.block-web .media-list .media .media-heading small {
color: #65BD77;
font-size: 11px;
}
.block-web .media-list .media p {
color: #909090;
}
.block-web .media-list .media .media-object {
width: 50px;
}
.block-web .media-list {
}
.block-web .nav-tabs > li.active > a, .block-web .nav-tabs > li.active > a:hover, .block-web .nav-tabs > li.active > a:focus {
background-color: #FFFFFF;
border-color: -moz-use-text-color;
border-style: none;
border-width: medium;
color: #1B1E24;
cursor: default;
}
.block-web .nav-tabs > li.active > a i, .block-web .nav-tabs > li.active > a:hover i, .block-web .nav-tabs > li.active > a:focus i {
color: #212121;
}
.block-web .additional-box {
position: absolute;
right: 15px;
top: 10px;
z-index: 99999;
}
.block-web .additional-btn {
position: absolute;
right: 15px;
top: 17px;
z-index: 99991;
}
.btn-compose-email {
margin-bottom: 20px;
padding: 10px 0;
}
.nav-email > li > a > .badge {
margin-top: 2px;
}
.nav-email > li > a {
color: #444444;
}
.nav-email > li > a > i {
margin-right: 10px;
text-align: center;
width: 16px;
}
.nav-email > li > a:hover {
background-color: #D8DCDF;
}
.table-email {
background-color: #F7F7F7;
border-bottom: 1px solid #EEEEEE;
box-shadow: none;
margin: 0;
}
.table-email tr.unread td {
background-color: #FFFFFF;
}
.table-email tbody > tr > td {
vertical-align: middle;
}
.table-email tr:hover {
background-color: #EEEEEE;
cursor: pointer;
}
.table-email tr.selected td {
background-color: #EEEEEE;
}
.table-email .ckbox {
height: 19px;
width: 18px;
}
.table-email .ckbox input[type="checkbox"]:checked + label:after {
top: 2px;
}
.table-email .star {
color: #CCCCCC;
}
.table-email .star-checked {
color: #F0AD4E;
}
.table-email td:first-child {
width: 30px;
}
.table-email td:nth-child(2) {
width: 30px;
}
.table-email .media {
margin: 0;
padding: 0;
}
.table-email .media-object {
width: 35px;
}
.table-email .media h4 {
font-size: 14px;
line-height: normal;
margin: 0;
}
.table-email .media-meta {
color: #999999;
font-size: 11px;
}
.table-email .email-summary {
margin: 2px 0 0;
}
.table-email .email-summary strong {
color: #333333;
}
.read-panel {
border-top: 1px solid #EEEEEE;
margin-top: 10px;
padding-top: 20px;
}
.media-object {
display: block;
}
.read-panel .media-object {
width: 35px;
}
.read-panel .media h4 {
font-size: 14px;
line-height: normal;
margin: 2px 0 0;
}
.btn-white {
background-color: #FFFFFF;
border: 1px solid #E5E9EC;
color: #5E5E5E;
}
.btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white.active, .btn-white.disabled, .btn-white[disabled] {
background-color: #FBFCFD;
border: 1px solid #B4B9BE;
}
.compose-mail {
display: inline-block;
margin-top: 20px;
position: relative;
width: 100%;
}
.compose-mail .compose-options {
color: #979797;
cursor: pointer;
display: inline-block;
font-size: 14px;
position: absolute;
right: 10px;
top: 7px;
}
.compose-mail input, .compose-mail input:focus {
border: medium none;
float: left;
padding: 0;
width: 80%;
}
.compose-mail .form-group {
border: 1px solid #F2F3F6;
display: inline-block;
margin-bottom: 0;
width: 100%;
}
.compose-mail .form-group label {
float: left;
line-height: 34px;
margin-bottom: 0;
padding-left: 5px;
width: 8%;
}
.compose-editor input {
margin-top: 15px;
}
.compose-editor {
display: inline-block;
margin-bottom: 15px;
width: 100%;
}
.compose-btn {
float: left;
margin-top: 6px;
}
#to {
border: none;
}
#subject {
border: none;
}
.toggle-slide {
-moz-user-select: none;
cursor: pointer;
direction: ltr;
overflow: hidden;
}
.toggle-slide .toggle-on, .toggle-slide .toggle-off, .toggle-slide .toggle-blob {
float: left;
}
.toggle-slide .toggle-blob {
cursor: grab;
position: relative;
z-index: 99;
}
.toggle-slide {
-moz-user-select: none;
cursor: pointer;
direction: ltr;
overflow: hidden;
border-radius: 3px;
}
.toggle-slide .toggle-on, .toggle-slide .toggle-off, .toggle-slide .toggle-blob {
float: left;
}
.toggle-slide .toggle-blob {
cursor: grab;
position: relative;
z-index: 99;
}
.toggle-default .toggle-slide {
border: 1px solid #CCCCCC;
}
.toggle-default .toggle-slide.active {
border-color: #999999;
}
.toggle-default .toggle-slide .toggle-on, .toggle-default .toggle-slide .toggle-off, .toggle-default .toggle-slide .toggle-blob {
font-size: 11px;
font-weight: 500;
}
.toggle-default .toggle-slide .toggle-on, .toggle-default .toggle-select .toggle-inner .active {
background: none repeat scroll 0 0 #999999;
color: #FFFFFF;
}
.toggle-default .toggle-slide .toggle-off, .toggle-default .toggle-select .toggle-on {
background: none repeat scroll 0 0 #F7F7F7;
color: #666666;
}
.toggle-default .toggle-slide .toggle-blob {
background: none repeat scroll 0 0 #FFFFFF;
border-right: 1px solid #CCCCCC;
}
.toggle-default .toggle-slide.active .toggle-blob {
border-left: 1px solid #999999;
border-right: 0 none;
}
.toggle-default .toggle-slide .toggle-blob:hover {
background: none repeat scroll 0 0 #FCFCFC;
}
.toggle-primary .toggle-slide {
border: 1px solid #999999;
}
.toggle-primary .toggle-slide.active {
border-color: #357EBD;
}
.toggle-primary .toggle-slide .toggle-on, .toggle-primary .toggle-slide .toggle-off, .toggle-primary .toggle-slide .toggle-blob {
font-size: 11px;
font-weight: 500;
}
.toggle-primary .toggle-slide .toggle-on, .toggle-primary .toggle-select .toggle-inner .active {
background: none repeat scroll 0 0 #428BCA;
color: #FFFFFF;
}
.toggle-primary .toggle-slide .toggle-off, .toggle-primary .toggle-select .toggle-on {
background: none repeat scroll 0 0 #BBBBBB;
color: #FFFFFF;
}
.toggle-primary .toggle-slide .toggle-blob {
background: none repeat scroll 0 0 #FFFFFF;
border-right: 1px solid #999999;
}
.toggle-primary .toggle-slide.active .toggle-blob {
border-left: 1px solid #357EBD;
border-right: 0 none;
}
.toggle-primary .toggle-slide .toggle-blob:hover {
background: none repeat scroll 0 0 #FCFCFC;
}
.toggle-success .toggle-slide {
border: 1px solid #999999;
}
.toggle-success .toggle-slide.active {
border-color: #1CAF9A;
}
.toggle-success .toggle-slide .toggle-on, .toggle-success .toggle-slide .toggle-off, .toggle-success .toggle-slide .toggle-blob {
font-size: 11px;
font-weight: 500;
}
.toggle-success .toggle-slide .toggle-on, .toggle-success .toggle-select .toggle-inner .active {
background: none repeat scroll 0 0 #1CAF9A;
color: #FFFFFF;
}
.toggle-success .toggle-slide .toggle-off, .toggle-success .toggle-select .toggle-on {
background: none repeat scroll 0 0 #BBBBBB;
color: #FFFFFF;
}
.toggle-success .toggle-slide .toggle-blob {
background: none repeat scroll 0 0 #FFFFFF;
border-right: 1px solid #999999;
}
.toggle-success .toggle-slide.active .toggle-blob {
border-left: 1px solid #4CAE4C;
border-right: 0 none;
}
.toggle-success .toggle-slide .toggle-blob:hover {
background: none repeat scroll 0 0 #FCFCFC;
}
.toggle-warning .toggle-slide {
border: 1px solid #999999;
}
.toggle-warning .toggle-slide.active {
border-color: #EEA236;
}
.toggle-warning .toggle-slide .toggle-on, .toggle-warning .toggle-slide .toggle-off, .toggle-warning .toggle-slide .toggle-blob {
font-size: 11px;
font-weight: 500;
}
.toggle-warning .toggle-slide .toggle-on, .toggle-warning .toggle-select .toggle-inner .active {
background: none repeat scroll 0 0 #F0AD4E;
color: #FFFFFF;
}
.toggle-warning .toggle-slide .toggle-off, .toggle-warning .toggle-select .toggle-on {
background: none repeat scroll 0 0 #BBBBBB;
color: #FFFFFF;
}
.toggle-warning .toggle-slide .toggle-blob {
background: none repeat scroll 0 0 #FFFFFF;
border-right: 1px solid #999999;
}
.toggle-warning .toggle-slide.active .toggle-blob {
border-left: 1px solid #EEA236;
border-right: 0 none;
}
.toggle-warning .toggle-slide .toggle-blob:hover {
background: none repeat scroll 0 0 #FCFCFC;
}
.toggle-danger .toggle-slide {
border: 1px solid #999999;
}
.toggle-danger .toggle-slide.active {
border-color: #D43F3A;
}
.toggle-danger .toggle-slide .toggle-on, .toggle-danger .toggle-slide .toggle-off, .toggle-danger .toggle-slide .toggle-blob {
font-size: 11px;
font-weight: 500;
}
.toggle-danger .toggle-slide .toggle-on, .toggle-danger .toggle-select .toggle-inner .active {
background: none repeat scroll 0 0 #D9534F;
color: #FFFFFF;
}
.toggle-danger .toggle-slide .toggle-off, .toggle-danger .toggle-select .toggle-on {
background: none repeat scroll 0 0 #BBBBBB;
color: #FFFFFF;
}
.toggle-danger .toggle-slide .toggle-blob {
background: none repeat scroll 0 0 #FFFFFF;
border-right: 1px solid #999999;
}
.toggle-danger .toggle-slide.active .toggle-blob {
border-left: 1px solid #D43F3A;
border-right: 0 none;
}
.toggle-danger .toggle-slide .toggle-blob:hover {
background: none repeat scroll 0 0 #FCFCFC;
}
.ckbox, .rdio {
position: relative;
}
.ckbox input[type="checkbox"], .rdio input[type="radio"] {
opacity: 0;
}
.ckbox label, .rdio label {
cursor: pointer;
margin-bottom: 15px !important;
margin-left: 30px!important;
}
.ckbox label:before {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #BBBBBB;
border-radius: 2px;
content: "";
display: inline-block;
height: 18px;
left: 0;
position: absolute;
top: 1px;
width: 18px;
}
.ckbox input[type="checkbox"]:disabled + label {
color: #999999;
}
.ckbox input[type="checkbox"]:disabled + label:before {
background-color: #EEEEEE;
}
.ckbox input[type="checkbox"]:checked + label:after {
color: #FFFFFF;
content: "";
display: inline-block;
font-family: 'FontAwesome';
font-size: 11px;
height: 16px;
left: 3.5px;
position: absolute;
top: 0;
width: 16px;
}
.ckbox-default input[type="checkbox"]:checked + label:before {
border-color: #999999;
}
.ckbox-default input[type="checkbox"]:checked + label:after {
color: #333333;
}
.ckbox-primary input[type="checkbox"]:checked + label:before {
background-color: #428bca;
border-color: #428bca;
}
.ckbox-warning input[type="checkbox"]:checked + label:before {
background-color: #f0ad4e;
border-color: #f0ad4e;
}
.ckbox-success input[type="checkbox"]:checked + label:before {
background-color: #5cb85c;
border-color: #5cb85c;
}
.ckbox-danger input[type="checkbox"]:checked + label:before {
background-color: #d9534f;
border-color: #d9534f;
}
.rdio label:before {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #BBBBBB;
border-radius: 50px;
content: "";
display: inline-block;
height: 18px;
left: 0;
position: absolute;
top: 1px;
width: 18px;
}
.rdio input[type="radio"]:disabled + label {
color: #999999;
}
.rdio input[type="radio"]:disabled + label:before {
background-color: #EEEEEE;
}
.rdio input[type="radio"]:checked + label:after {
background-color: #444444;
border-radius: 50px;
content: "";
display: inline-block;
font-size: 11px;
height: 10px;
left: 4px;
position: absolute;
top: 5px;
width: 10px;
}
.rdio-default input[type="radio"]:checked + label:before {
border-color: #999999;
}
.rdio-primary input[type="radio"]:checked + label:before {
border-color: #428bca;
}
.rdio-primary input[type="radio"]:checked + label:after {
background-color: #428bca;
}
.rdio-warning input[type="radio"]:checked + label:before {
border-color: #f0ad4e;
}
.rdio-warning input[type="radio"]:checked + label:after {
background-color: #f0ad4e;
}
.rdio-success input[type="radio"]:checked + label:before {
border-color: #5cb85c;
}
.rdio-success input[type="radio"]:checked + label:after {
background-color: #5cb85c;
}
.rdio-danger input[type="radio"]:checked + label:before {
border-color: #d9534f;
}
.rdio-danger input[type="radio"]:checked + label:after {
background-color: #d9534f;
}
.basic-wizard .nav li a {
background: none repeat scroll 0 0 #E4E7EA;
border-bottom: 1px solid #CCCCCC;
border-radius: 0;
border-right: 1px solid #CCCCCC;
color: #4A535E;
opacity: 0.75;
}
.basic-wizard .nav li:last-child a {
border-right: 0 none;
}
.basic-wizard .nav li a:hover {
background-color: #F7F7F7;
opacity: 1;
}
.basic-wizard .nav li.active a, .basic-wizard .nav li.active a:focus, .basic-wizard .nav li.active a:active {
background: none repeat scroll 0 0 #FCFCFC;
border-bottom-color: #FCFCFC;
color: #333333;
opacity: 1;
}
.basic-wizard .pager {
background: none repeat scroll 0 0 #F7F7F7;
border-top: 1px solid #DDDDDD;
margin: 0;
padding: 10px;
}
.basic-wizard .pager li a {
background-color: #428BCA;
border-color: #357EBD;
border-radius: 2px;
color: #FFFFFF;
}
.basic-wizard .pager li a:hover {
background-color: #3276B1;
border-color: #285E8E;
}
.basic-wizard .pager li.disabled a {
background: none repeat scroll 0 0 #EEEEEE;
border-color: #CCCCCC;
color: #999999;
}
.basic-wizard .progress {
border-radius: 2px;
height: 12px;
}
.basic-wizard .nav-disabled-click li a:hover, .basic-wizard .nav-disabled-click li a:active, .basic-wizard .nav-disabled-click li a:focus {
background-color: #E4E7EA;
color: #4A535E;
cursor: default;
opacity: 0.75;
}
.basic-wizard .nav-disabled-click li.active a:hover, .basic-wizard .nav-disabled-click li.active a:active, .basic-wizard .nav-disabled-click li.active a:focus {
background: none repeat scroll 0 0 #FCFCFC;
color: #333333;
opacity: 1;
}
.basic-wizard .tab-content {
border-radius: 0;
box-shadow: none;
}
.form .form-control {
margin-bottom: 15px;
}
.cke_top {
background: #e4e7ea!important;
border-bottom: 1px solid #B6B6B6;
box-shadow: 0 1px 0 #FFFFFF inset;
padding: 6px 8px 2px;
}
.cke_bottom {
background: #e4e7ea!important;
border-top: 1px solid #BFBFBF;
box-shadow: 0 1px 0 #FFFFFF inset;
padding: 6px 8px 2px;
position: relative;
}
.parsley-error-list {
margin-top: 4px;
padding: 0;
}
.parsley-error-list li {
color: #CC0000;
list-style: none outside none;
padding: 0;
}
.parsley-error {
border-color: #CC0000 !important;
}
.thumbnail {
margin-bottom: 0px;
}
.thumbnail-view {
cursor: zoom-in;
display: inline-block;
overflow: hidden;
position: relative;
}
.thumbnail-view img {
max-width: 100%;
}
.thumbnail-view .thumbnail-view-hover {
background: url(../images/gallery/zoom.png) no-repeat scroll 50% center #111111;
display: block;
height: 100%;
opacity: 0.5;
position: absolute;
right: 0;
transform: translateY(-100%);
transition: all 0.25s ease-in-out 0s;
width: 100%;
z-index: 10;
}
.thumbnail-view:hover .thumbnail-view-hover {
opacity: 0.5;
transform: translateY(0%);
}
.thumbnail-footer {
border-top: 1px dotted #CCCCCC;
padding: 7px 10px;
}
.thumbnail-footer:before, .thumbnail-footer:after {
content: " ";
display: table;
}
.thumbnail-footer:after {
clear: both;
}
.thumbnail-footer a {
color: #999999;
font-size: 12px;
}
.thumbnail-footer a:hover {
color: #E5412D;
text-decoration: none;
}
.thumbnail-footer .pull-left a {
padding: 0 12px 0 0;
}
.thumbnail-footer .pull-right a {
padding: 0 0 0 12px;
}
.ui-lightbox, .ui-lightbox-gallery a {
cursor: -moz-zoom-in;
cursor: -webkit-zoom-in;
cursor: zoom-in;
}
/*tree views css start*/
.treeview, .treeview ul {
padding: 0;
margin: 0;
list-style: none;
}
.treeview ul {
background-color: white;
margin-top: 4px;
}
.treeview .hitarea {
background: url(../plugins/tree-views/images/treeview-default.gif) -64px -25px no-repeat;
height: 16px;
width: 16px;
margin-left: -16px;
float: left;
cursor: pointer;
}
/* fix for IE6 */
* html .hitarea {
display: inline;
float:none;
}
.treeview li {
margin: 0;
padding: 3px 0pt 3px 16px;
}
.treeview a.selected {
background-color: #eee;
}
#treecontrol { margin: 1em 0; display: none; }
.treeview .hover { color: red; cursor: pointer; }
.treeview li { background: url(../plugins/tree-views/images/treeview-default-line.gif) 0 0 no-repeat; }
.treeview li.collapsable, .treeview li.expandable { background-position: 0 -176px; }
.treeview .expandable-hitarea { background-position: -80px -3px; }
.treeview li.last { background-position: 0 -1766px }
.treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(../plugins/tree-views/images/treeview-default.gif); }
.treeview li.lastCollapsable { background-position: 0 -111px }
.treeview li.lastExpandable { background-position: -32px -67px }
.treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea { background-position: 0; }
.treeview-red li { background-image: url(../plugins/tree-views/images/treeview-red-line.gif); }
.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable { background-image: url(../plugins/tree-views/images/treeview-red.gif); }
.treeview-black li { background-image: url(../plugins/tree-views/images/treeview-black-line.gif); }
.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable { background-image: url(../plugins/tree-views/images/treeview-black.gif); }
.treeview-gray li { background-image: url(../plugins/tree-views/images/treeview-gray-line.gif); }
.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable { background-image: url(../plugins/tree-views/images/treeview-gray.gif); }
.treeview-famfamfam li { background-image: url(../plugins/tree-views/images/treeview-famfamfam-line.gif); }
.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable { background-image: url(../plugins/tree-views/images/treeview-famfamfam.gif); }
.treeview .placeholder {
background: url(../plugins/tree-views/images/ajax-loader.gif) 0 0 no-repeat;
height: 16px;
width: 16px;
display: block;
}
.filetree li { padding: 3px 0 2px 16px; }
.filetree span.folder, .filetree span.file { padding: 1px 0 1px 16px; display: block; }
.filetree span.folder { background: url(../plugins/tree-views/images/folder.gif) 0 0 no-repeat; }
.filetree li.expandable span.folder { background: url(../plugins/tree-views/images/folder-closed.gif) 0 0 no-repeat; }
.filetree span.file { background: url(../plugins/tree-views/images/file.gif) 0 0 no-repeat; }
/*tree views css end*/
.inputWidth{ width:170px;}
.register-bottom {
background: none repeat scroll 0 0 #FCFCFC;
border-top: 1px solid #DDDDDD;
clear: both;
fright: 20px;
margin: 0 -19px;
padding: 14px 55px;
}
/*timeline css style*/
.timeline {
border-collapse: collapse;
border-spacing: 0;
display: table;
position: relative;
table-layout: fixed;
width: 100%;
}
.timeline .time-show {
margin-bottom: 30px;
margin-right: -75px;
margin-top: 30px;
position: relative;
}
.timeline .time-show.first {
}
.time-show .btn {
width: 150px;
}
.timeline .time-show a {
color: #FFFFFF;
}
.timeline:before {
background-color: #D8D9DF;
bottom: 0;
content: "";
left: 50%;
position: absolute;
top: 30px;
width: 1px;
z-index: 0;
}
h3.timeline-title {
color: #C8CCD7;
font-size: 20px;
font-weight: 400;
margin: 0 0 5px;
text-transform: uppercase;
}
.t-info {
color: #C8CCD7;
}
.timeline-item:before, .timeline-item.alt:after {
content: "";
display: block;
width: 50%;
}
.timeline-item {
display: table-row;
}
.timeline-desk {
display: table-cell;
vertical-align: top;
width: 50%;
}
.timeline-desk h1 {
font-size: 16px;
font-weight: 300;
margin: 0 0 5px;
}
.timeline-desk .panel {
background: none repeat scroll 0 0 #FFFFFF;
display: block;
margin-left: 45px;
position: relative;
text-align: left;
}
.timeline-item .timeline-desk .arrow {
border-bottom: 8px solid rgba(0, 0, 0, 0);
border-top: 8px solid rgba(0, 0, 0, 0);
display: block;
height: 0;
left: -7px;
position: absolute;
top: 13px;
width: 0;
}
.timeline-item .timeline-desk .arrow {
border-right: 8px solid #FFFFFF !important;
}
.timeline-item.alt .timeline-desk .arrow-alt {
border-bottom: 8px solid rgba(0, 0, 0, 0);
border-top: 8px solid rgba(0, 0, 0, 0);
display: block;
height: 0;
left: auto;
position: absolute;
right: -7px;
top: 13px;
width: 0;
}
.timeline-item.alt .timeline-desk .arrow-alt {
border-left: 8px solid #FFFFFF !important;
}
.timeline .timeline-icon {
left: -60px;
position: absolute;
top: 5px;
}
.timeline .timeline-icon {
background: none repeat scroll 0 0 #C7CBD6;
}
.timeline-desk span a {
text-transform: uppercase;
}
.timeline-desk h1.red, .timeline-desk span a.red {
color: #EF6F66;
}
.timeline-desk h1.green, .timeline-desk span a.green {
color: #39B6AE;
}
.timeline-desk h1.blue, .timeline-desk span a.blue {
color: #56C9F5;
}
.timeline-desk h1.purple, .timeline-desk span a.purple {
color: #8074C6;
}
.timeline-desk h1.light-green, .timeline-desk span a.light-green {
color: #A8D76F;
}
.timeline-desk h1.yellow, .timeline-desk span a.yellow {
color: #FED65A;
}
.timeline .timeline-icon.red {
background: none repeat scroll 0 0 #F87C74;
}
.timeline .timeline-icon.green {
background: none repeat scroll 0 0 #48C5BD;
}
.timeline .timeline-icon.blue {
background: none repeat scroll 0 0 #67D4FE;
}
.timeline .timeline-icon.purple {
background: none repeat scroll 0 0 #8074C6;
}
.timeline .timeline-icon.light-green {
background: none repeat scroll 0 0 #B0E077;
}
.timeline .timeline-icon.yellow {
background: none repeat scroll 0 0 #FFDC6F;
}
.timeline .timeline-icon {
border-radius: 50%;
color: #FFFFFF;
display: block;
height: 30px;
text-align: center;
width: 30px;
}
.timeline .timeline-icon i {
margin-top: 9px;
}
.timeline-item.alt .timeline-icon {
left: auto;
right: -60px;
}
.timeline .time-icon:before {
font-size: 16px;
margin-top: 5px;
}
.timeline .timeline-date {
display: none;
left: -245px;
position: absolute;
text-align: right;
top: 12px;
width: 150px;
}
.timeline-item.alt .timeline-date {
display: none;
left: auto;
right: -245px;
text-align: left;
}
.timeline-desk h5 span {
color: #999999;
display: block;
font-size: 12px;
margin-bottom: 4px;
}
.timeline-item.alt:before {
display: none;
}
.timeline-item:before, .timeline-item.alt:after {
content: "";
display: block;
width: 50%;
}
.timeline-desk p {
color: #999999;
font-size: 14px;
margin-bottom: 0;
}
.timeline-desk a {
color: #1FB5AD;
}
.timeline-desk .panel {
margin-bottom: 5px;
}
.timeline-desk .album {
margin-top: 20px;
}
.timeline-item.alt .timeline-desk .album {
float: right;
margin-top: 20px;
}
.timeline-desk .album a {
float: left;
margin-right: 5px;
}
.timeline-item.alt .timeline-desk .album a {
float: right;
margin-left: 5px;
}
.timeline-desk .notification {
background: none repeat scroll 0 0 #FFFFFF;
margin-top: 20px;
padding: 8px;
}
.timeline-item.alt .panel {
margin-left: 0;
margin-right: 45px;
}
.mbot30 {
margin-bottom: 30px;
}
.timeline-item.alt h1, .timeline-item.alt p {
text-align: right;
}
select {
-moz-appearance: none;
background: url(../images/select.png) no-repeat scroll right center / 24px 20px #FFFFFF !important;
border: 1px solid #E1E6EF !important;
border-radius: 2px !important;
box-shadow: none !important;
color: #888888;
cursor: pointer;
display: inline-block;
outline: medium none;
}
select[disabled] {
background-color: #F2F4F8 !important;
color: #C0CADD;
}
select[multiple] {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
}
select.input-lg {
padding: 0 11px;
}
select.input-sm {
padding: 0 12px;
}
.select2-drop {
border: 1px solid #E1E6EF;
border-radius: 0 0 2px 2px;
box-shadow: none;
color: #374767;
}
.select2-container-multi .select2-choices {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #E1E6EF !important;
border-radius: 2px !important;
box-shadow: none !important;
margin: -7px -13px 0 !important;
}
.select2-default {
color: #C0CADD !important;
padding-left: 12px !important;
}
.select2-container-multi .select2-choices .select2-search-choice {
background-color: #F2F4F8;
background-image: none;
border: 1px solid #E1E6EF;
border-radius: 1px;
box-shadow: none;
filter: none;
font-size: 11px;
margin: 5px 0 3px 5px;
padding: 3px 5px 4px 18px;
}
.select2-container-multi .select2-choices .select2-search-field input {
color: #374767;
}
@-moz-document url-prefix("") {
select {
text-indent: 0.01px;
text-overflow: "";
}
select.input-lg {
padding: 10px 11px;
}
select.input-sm {
padding: 6px 12px;
}
.select2-container-multi .select2-choices {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
border: 1px solid rgba(0, 0, 0, 0) !important;
margin: -3px -13px 0 !important;
}
.select2-container-multi .select2-choices .select2-search-choice {
margin: 1px 0 3px 5px;
}
}
.limiterBox {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
-moz-box-sizing: content-box;
background-color: #E1E6EF;
border-color: -moz-use-text-color #E1E6EF #E1E6EF;
border-image: none;
border-right: 1px solid #E1E6EF;
border-style: none solid solid;
border-width: medium 1px 1px;
color: #FFFFFF;
font-size: 10px;
opacity: 0.9;
padding: 3px 6px;
}
.editor {
-moz-box-sizing: content-box;
background-color: #FFFFFF;
border: 1px solid #E1E6EF;
border-collapse: separate;
border-radius: 2px;
height: 250px;
margin-top: 20px;
max-height: 250px;
outline: medium none;
overflow: scroll;
padding: 4px;
}
div[data-role="editor-toolbar"] {
-moz-user-select: none;
}
.dropdown-menu a {
cursor: pointer;
}
.twitter-typeahead .tt-query, .twitter-typeahead .tt-hint {
margin-bottom: 0;
}
.right-info-bar {
background-color: #FFFFFF;
box-shadow: 0 0 3px #4D4D4D;
height: 100%;
padding: 0;
position: fixed;
right: -250px;
top: 40px;
transition: right 0.5s ease 0s;
width: 240px;
z-index: 9999;
}
.right-info-bar .block {
background-color: #F7F7F7;
margin-bottom: 10px;
}
.right-info-bar .block .heading {
background-color: #E6E6E6;
color: #4D4D4D;
font-size: 15px;
margin: 0;
padding: 10px;
}
.infos {
margin: 0 10px;
padding: 0;
}
.infos li {
border-bottom: 1px solid #E6E6E6;
cursor: pointer;
display: block;
padding: 8px 0;
}
.infos li .label {
display: inline-block;
margin-right: 10px;
padding: 6px;
text-align: center;
width: 24px;
}
.infos li .label i {
font-size: 10px;
}
.infos li .user img {
border: 1px solid #CCCCCC;
border-radius: 50%;
height: 24px;
width: 24px;
}
.infos li .info {
color: #33393C;
margin-left: 34px;
}
.infos li .info h6 {
font-size: 11px;
font-weight: 500;
line-height: 100%;
margin: 0 0 2px;
padding: 0;
}
.infos li .info p {
color: #999999;
font-size: 10px;
line-height: 100%;
margin: 0;
padding: 0;
}
.infos li .info small {
color: #666666;
font-size: 11px;
}
.infos li a {
color: #33393C;
font-weight: 500;
}
.infos li a span {
color: #808080;
font-size: 11px;
font-weight: 200;
}
.infos li:last-child {
border-bottom: 0 none;
}
.online-users {
list-style-type: none;
margin: 0;
padding: 0;
}
.online-users li a {
display: block;
padding: 3px 10px;
position: relative;
}
.online-users li a img {
height: 16px;
margin-right: 3px;
width: 16px;
}
.online-users li a .user-name {
display: inline-block;
}
.online-users li a .user-status, .online-users li a .user-status.online, .online-users li a .user-status.busy, .online-users li a .user-status.away {
background: none repeat scroll 0 0 #CCCCCC;
border-radius: 100%;
box-shadow: 0 0 4px #999999 inset;
height: 8px;
position: absolute;
right: 5px;
top: 6px;
width: 8px;
}
.online-users li a .user-status.online, .online-users li a .user-status.online.online, .online-users li a .user-status.busy.online, .online-users li a .user-status.away.online {
background: none repeat scroll 0 0 #5cb85c;
}
.online-users li a .user-status.busy, .online-users li a .user-status.online.busy, .online-users li a .user-status.busy.busy, .online-users li a .user-status.away.busy {
background: none repeat scroll 0 0 #ff634d;
}
.online-users li a .user-status.away, .online-users li a .user-status.online.away, .online-users li a .user-status.busy.away, .online-users li a .user-status.away.away {
background: none repeat scroll 0 0 #fef00b;
}
.progress-statistics {
list-style-type: none;
margin: 0;
padding: 0;
}
.progress-statistics li {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #F2F2F2;
border-radius: 2px;
padding: 5px 10px;
transition: all 0.5s ease 0s;
}
.progress-statistics li .progress {
background-color: #E0E0E0;
background-image: -moz-linear-gradient(center top , #F5F5F5, #E0E0E0);
margin-bottom: 3px;
margin-top: 3px;
}
.progress-statistics li .details {
display: inline;
font-size: 11px;
font-weight: 700;
} | web/themes/app/css/style.css | @import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
html {
font-family: 'Open Sans', sans-serif;
font-size: 12px;
}
html, body {
height: 100%;
font-family: 'Open Sans', sans-serif;
font-weight: 100;
background: #efefef;
color: #424a4d;
}
h1, h2, h3, h4, h5, h6 {
margin: 10px 0;
}
h1 {
line-height: 43px
}
h2 {
line-height: 35px
}
h3 {
line-height: 30px
}
h4 {
line-height: 22px
}
h3 small, h4 small, h5 small {
font-weight: 300;
color: #444;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 300;
color: #505458
}
.navbar {
min-height: 40px;
margin-bottom: 0px;
}
.navbar ul {
padding: 0px!important;
margin: 0px!important;
}
.navbar-nav li {
display: inline-block;
}
.navbar-nav li a {
padding-bottom: 10px;
padding-top: 10px;
}
#last-one {
position: absolute;
right: 40px;
}
.navbar-nav li:last-child {
position: absolute;
right: 0;
border: none;
}
.navbar, .navbar-inverse {
border: medium none;
border-radius: 0;
}
.header .header-seperation {
display: block;
height: 40px;
width: auto;
}
.fixed {
position: fixed;
}
#sidebar {
height: 100%;
transition: all 0.3s ease-in-out 0s;
width: 210px;
left: 0;
float: left;
}
#sidebar ul li {
position: relative;
}
#sidebar h3 {
font-weight: bold;
font-size: 18px;
padding: 15px 10px;
margin: 0;
text-transform: uppercase;
}
.sidebar-user {
padding: 20px 0px 20px 88px;
}
.sidebar-user-avatar {
background: rgba(0, 0, 0, 0.15);
border-radius: 34px;
float: left;
height: 68px;
margin-left: -78px;
padding: 2px;
width: 68px;
}
.sidebar-user-avatar img {
border-radius: 32px;
height: 64px;
width: 64px;
}
.sidebar-user-name {
font-size: 14px;
font-weight: 300;
line-height: 26px;
margin-top: 10px;
font-weight: bold;
text-decoration: none;
}
.sidebar-user-links a {
margin-right: 12px;
opacity: 0.3;
}
.sidebar-user-links a:focus, .sidebar-user-links a:hover {
opacity: 1;
text-decoration: none;
}
.sidebar-user-links a > i {
font-size: 16px;
}
.leftside-navigation, .right-stat-bar {
height: 100%;
}
.right-stat-bar ul {
list-style-type: none;
padding-left: 0;
}
.right-side-accordion li:nth-child(2) ul li .prog-row {
border: medium none;
}
.nav-collapse.collapse {
display: inline;
}
ul.sidebar-menu, ul.sidebar-menu li ul.sub {
margin: -2px 0 0;
padding: 0;
}
#sidebar > ul > li > ul.sub {
display: none;
}
#sidebar .sub-menu > .sub li a {
padding-left: 45px;
}
#sidebar > ul > li.active > ul.sub, #sidebar > ul > li > ul.sub > li > a {
display: block;
}
ul.sidebar-menu li ul.sub li {
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
}
ul.sidebar-menu li ul.sub li a {
font-size: 12px;
padding-bottom: 10px;
padding-top: 10px;
transition: all 0.3s ease 0s;
}
ul.sidebar-menu li ul.sub li a:hover, ul.sidebar-menu li ul.sub li.active a {
display: block;
transition: all 0.3s ease 0s;
}
ul.sidebar-menu li.sub-menu {
line-height: 15px;
}
ul.sidebar-menu ul.sub li {
border-bottom: medium none;
}
ul.sidebar-menu li a span {
display: inline-block;
}
ul.sidebar-menu li a {
display: block;
font-size: 12px;
font-weight: bold;
outline: medium none;
padding: 12px 12px 12px 25px;
text-decoration: none;
transition: all 0.3s ease 0s;
}
ul.sidebar-menu li a.active, ul.sidebar-menu li a:focus {
display: block;
transition: all 0.3s ease 0s;
}
ul.sidebar-menu li a i {
font-size: 15px;
padding-right: 6px;
}
ul.sidebar-menu li a:hover i, ul.sidebar-menu li a:focus i {
}
ul.sidebar-menu li a.active i {
}
.top-margin {
margin-top: 40px;
}
.page-container {
height: 100%;
margin: 0;
padding: 0;
position: relative;
}
#main-content {
left: 209px;
right: 0;
transition: all 0.3s ease-in-out 0s;
position: absolute;
}
#main-content2 {
position: absolute;
right: 209px;
transition: all 0.3s ease-in-out 0s;
}
#main-content3 {
position: absolute;
right: 210px;
transition: all 0.3s ease-in-out 0s;
width: 950px;
}
.page-content {
display: inline-block;
padding: 20px;
width: 100%;
margin-top: 40px;
position: relative;
}
.page-content:after {
clear: both;
content: "";
display: block;
}
/*dark-theme color start*/
.dark-theme .navbar, .navbar-inverse {
background-color: #363b3f;
}
.dark-theme #sidebar {
background: #363b3f;
}
.dark-theme ul.sidebar-menu li ul.sub li a:hover, ul.sidebar-menu li ul.sub li.active a {
background: #424a4d;
color: #dadbdd;
}
.dark-theme #sidebar h3 {
color: #fff;
}
.dark-theme .sidebar-user {
border-top: 2px solid #24292D;
border-bottom: 1px solid #474c50;
}
.dark-theme .sidebar-user-name {
color: #fff;
}
.dark-theme .sidebar-user-links a {
color: #FFFFFF;
}
.dark-theme .sidebar-user-links a:focus, .sidebar-user-links a:hover {
color: #FFFFFF;
}
.dark-theme ul.sidebar-menu li ul.sub li {
background: #2a2f33;
}
.dark-theme ul.sidebar-menu li ul.sub li a {
color: #AEB2B7;
}
.dark-theme ul.sidebar-menu li ul.sub li a:hover, ul.sidebar-menu li ul.sub li.active a {
background: #424a4d;
color: #dadbdd;
}
.dark-theme ul.sidebar-menu li a {
color: #AEB2B7;
}
.dark-theme ul.sidebar-menu li a.active, ul.sidebar-menu li a:focus {
background: #424a4d;
border-bottom: 1px solid #2d3236;
border-top: 1px solid #485053;
color: #dadbdd;
}
.dark-theme ul.sidebar-menu li a:hover i, ul.sidebar-menu li a:focus i {
color: #dadbdd;
}
.dark-theme ul.sidebar-menu li a.active i {
color: #dadbdd;
}
.dark-theme .navbar-nav li {
border-left: 1px solid #454a4e;
}
.dark-theme .sidebar-user {
background: rgba(0, 0, 0, 0.15);
}
.dark-theme .hov .con {
color: #aeb2b7;
}
.dark-theme .hov .con:hover {
background: none!important;
color: #428BCA;
}
.dark-theme .hov .con:focus {
background: none!important;
color: #FFFFFF;
}
.dark-theme .searchform input {
background: url("../images/icon-search.png") no-repeat scroll 95% center rgba(0,0,0,0.10);
color: #999;
}
.dark-theme .searchform input:focus {
background: url("../images/icon-search.png") no-repeat scroll 95% center rgba(0,0,0,0.10);
color: #999;
}
/*dark-theme color end*/
/*light-theme color start*/
.light-theme .navbar, .navbar-inverse {
background-color: #fff;
color: #5f5c57;
}
.navbar-inverse .navbar-nav > li > a:hover {
color: #999999;
}
.navbar-inverse .navbar-nav > li > a:focus {
color: #999999;
}
.light-theme #sidebar {
background: #fff;
}
.light-theme ul.sidebar-menu li ul.sub li a:hover, ul.sidebar-menu li ul.sub li.active a {
background: #fff;
color: #ffffff;
}
.light-theme #sidebar h3 {
color: #5f5c57;
}
.light-theme .sidebar-user {
border-top: 2px solid #efefef;
border-bottom: 1px solid #efefef;
}
.light-theme .sidebar-user-name {
color: #5f5c57;
}
.light-theme .sidebar-user-links a {
color: #000;
}
.light-theme .sidebar-user-links a:focus, .sidebar-user-links a:hover {
color: #5F5C57;
}
.light-theme ul.sidebar-menu li ul.sub li {
background: #fff;
}
.light-theme ul.sidebar-menu li ul.sub li a {
color: #5f5c57;
}
.light-theme ul.sidebar-menu li ul.sub li a:hover, ul.sidebar-menu li ul.sub li.active a {
background: #ff634d;
color: #fff;
}
.light-theme ul.sidebar-menu li a {
color: #5f5c57;
}
.light-theme ul.sidebar-menu li a.active, ul.sidebar-menu li a:focus {
background: #ff634d;
border-bottom: 1px solid #ff8776;
border-top: 1px solid #ff8776;
color: #fff;
}
.light-theme ul.sidebar-menu li a:hover i, ul.sidebar-menu li a:focus i {
color: #5F5C57;
}
.light-theme ul.sidebar-menu li a.active i {
color: #fff;
}
.light-theme .navbar-nav li {
border-left: 1px solid #d6d5d3;
}
.light-theme .sidebar-user {
background: rgba(255, 255, 255, 0.2);
}
.light-theme .hov .con {
color: #363b3f;
}
.light-theme .hov .con:hover {
color: #428BCA;
}
.light-theme .hov .con:focus {
color: #363b3f;
}
.light-theme .searchform input {
background: url("../images/icon-search.png") no-repeat scroll 95% center rgba(255,255,255,0.10);
color: #999;
}
.light-theme .searchform input:focus {
background: url("../images/icon-search.png") no-repeat scroll 95% center rgba(255,255,255,0.10);
color: #999;
}
/*light-theme color end*/
.panel {
background-color: #FFFFFF;
border-radius: 0 !important;
box-shadow: none !important;
}
.merge-left {
left: 0px!important;
}
.hide-left-bar {
left: -210px!important;
}
.box-shadow {
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
}
.box-shadow2 {
box-shadow: 4px 0px 3px -3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
}
.bg-danger {
background-color: #ff482e;
color: #FCE5E8;
}
.bg-success {
background-color: #8EC165;
color: #FCE5E8;
}
.changed-position {
position: absolute!important;
}
body.container {
border-left: 1px solid #CBD5DD;
border-right: 1px solid #CBD5DD;
box-shadow: 0 3px 60px rgba(0, 0, 0, 0.3);
padding: 0;
}
.hov .btn-group {
margin-right: 10px;
z-index: 101;
}
.hov .con {
display: block;
font-size: 15px;
height: 40px;
line-height: 20px;
padding: 10px 15px;
text-decoration: none;
background: transparent!important;
}
.hov .dropdown-menu {
border: 0 none;
border-top-right-radius: 0;
font-size: 12px;
margin-top: -4px;
border-radius: 0;
}
.hov .dropdown-menu a:hover {
background: none;
color: #FFFFFF;
}
.hov .label {
border-radius: 10px;
font-size: 8px;
font-weight: normal;
left: 22px;
position: absolute;
top: 2px;
}
.dropdown-alerts > .title {
border-bottom: 1px solid #DDDDDD;
height: 40px;
line-height: 20px;
margin-bottom: 0;
padding: 10px;
width: 320px;
}
.dropdown-alerts > .alert {
clear: both;
content: "";
display: table;
height: 40px;
line-height: 20px;
margin-bottom: 0;
padding: 10px;
width: 320px;
}
.dropdown-alerts > .alert:hover {
background: none repeat scroll 0 0 #EFEFEF !important;
cursor: pointer;
}
.dropdown-alerts > .alert > .alert-icon {
display: table-cell;
font-size: 16px;
position: relative;
text-align: left;
top: 1px;
width: 25px;
}
.dropdown-alerts > .alert > .alert-content {
color: #333333;
display: table-cell;
text-align: left;
}
.dropdown-alerts > .alert > .alert-time {
color: #999999;
display: table-cell;
text-align: right;
}
.dropdown-alerts > .alert > .alert-icon.alt-default {
color: #333333;
}
.dropdown-alerts > .alert > .alert-icon.alt-primary {
color: #7BAEDA;
}
.dropdown-alerts > .alert > .alert-icon.alt-warning {
color: #D58512;
}
.dropdown-alerts > .alert > .alert-icon.alt-danger {
color: #DF6F6C;
}
.dropdown-alerts > .divider, .dropdown-messages > .divider {
margin-bottom: 5px !important;
margin-top: 0 !important;
}
.dropdown-alerts > li > a, .dropdown-messages > li > a {
height: 40px;
line-height: 20px;
padding: 10px;
border: none;
}
.dropdown-alerts > li > a, .dropdown-messages > li > a:last-child {
position: relative;
}
.dropdown-messages > .title {
border-bottom: 1px solid #DDDDDD;
height: 40px;
line-height: 20px;
margin-bottom: 0;
padding: 10px;
width: 320px;
}
.dropdown-messages > .message {
clear: both;
content: "";
display: table;
height: 40px;
line-height: 20px;
margin-bottom: 0;
padding: 10px;
width: 320px;
}
.dropdown-messages > .message:hover {
background: none repeat scroll 0 0 #EFEFEF !important;
cursor: pointer;
}
.dropdown-messages > .message > .message-icon {
display: table-cell;
font-size: 16px;
position: relative;
text-align: left;
top: 1px;
width: 30px;
}
.dropdown-messages > .message > .message-icon > img {
height: 30px;
width: 30px;
}
.dropdown-messages > .message > .message-content {
color: #333333;
display: table-cell;
padding-left: 5px;
text-align: left;
}
.dropdown-messages > .message > .message-time {
color: #999999;
display: table-cell;
text-align: right;
}
.dropdown-messages > li > .message-content > a {
padding: 0px;
margin: 0px;
}
.dropdown-messages > li > .message-content > a:hover {
text-decoration: none;
color: #333;
}
.dropdown-profile > .title {
border-bottom: 1px solid #DDDDDD;
height: 30px;
line-height: 10px;
margin-bottom: 5px;
padding: 10px;
width: 200px;
}
.dropdown-profile > li {
border-left: none!important;
}
.dropdown-profile > li > a {
height: 30px;
line-height: 10px;
padding: 10px;
float: left;
clear: both;
}
.dropdown-profile > li > a:hover {
color: #333!important;
}
.dropdown-profile > li > a > span {
font-size: 12px;
margin-right: 8px;
}
.porlets-content {
padding: 15px;
}
.block {
background: #FFFFFF;
border: 0 none;
border-radius: 3px;
margin-bottom: 30px;
}
.block-web, .block-wizard {
background: 0 #FFFFFF;
border-radius: 3px;
margin-bottom: 20px;
padding: 20px;
position: relative;
transition: padding 500ms ease 0s;
}
.block-web.closed {
padding-bottom: 9px;
}
.block .header, .widget-block .header, .block-web .header {
background-color: #FEFEFE;
border-bottom: 1px solid #DADADA;
padding: 10px;
transition: border 500ms ease 0s;
}
.block-web.dark-box .header, .block-web.primary-box .header, .block-web.success-box .header, .block-web.info-box .header, .block-web.danger-box .header, .block-web.warning-box .header {
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.block-web.closed .header {
border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.block .header {
border-radius: 3px 3px 0 0;
padding: 10px;
}
.block-web .header {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
margin: -20px -20px 10px;
padding: 4px 18px;
}
.block-web .header.no-border {
border: 0 none;
}
.block-web .porlets-content {
padding: 5px 3px 0;
}
.block-web .porlets-content.full-width {
margin-bottom: -20px;
margin-left: -20px;
margin-right: -20px;
padding: 0;
}
.block-web .porlets-content h4 {
font-size: 16px;
}
.block-web.no-padding .porlets-content {
padding: 0 !important;
}
.block .header h2, .widget-block .header h2, .block-web .header h2 {
font-size: 29px;
font-weight: 100;
line-height: 38px;
margin: 0;
}
.block .header h3 {
font-weight: 200;
margin: 0px;
color: #fff;
font-size: 20px;
}
.widget-block .header h3, .block-web .header h3 {
font-weight: 200;
margin-top: 3px;
}
.block-web .actions, .block .actions {
float: right;
padding-top: 10px;
}
.block-web .actions .refresh i, .block .actions .refresh i {
font-size: 12px;
}
.block .actions {
padding-top: 5px;
}
.block-web .actions a {
color: rgba(0, 0, 0, 0.3);
margin-left: 6px;
}
.block-web .actions a:hover {
color: rgba(0, 0, 0, 0.5);
}
.block.block-color .actions a {
color: #FFFFFF;
font-size: 14px;
margin-left: 6px;
}
.block.block-color .actions a:hover i {
color: rgba(255, 255, 255, 0.8);
}
.block-web.dark-box .actions a {
color: #FFFFFF;
}
.block-web.dark-box .actions a:hover {
color: rgba(255, 255, 255, 0.5);
}
.dark-box {
background-color: #363b3f;
color: #FFFFFF;
}
.primary-box {
background-color: #428bca;
color: #FFFFFF;
}
.success-box {
background-color: #5cb85c;
color: #FFFFFF;
}
.info-box {
background-color: #5bc0de;
color: #FFFFFF;
}
.warning-box {
background-color: #f0ad4e;
color: #FFFFFF;
}
.danger-box {
background-color: #d9534f;
color: #FFFFFF;
}
.block .header.dark {
background-color: #383A41;
border-bottom: 0 none;
color: #FFFFFF;
}
.dark-box h3 {
color: #fff!important;
}
.primary-box h3 {
color: #fff!important;
}
.info-box h3 {
color: #fff!important;
}
.success-box h3 {
color: #fff!important;
}
.danger-box h3 {
color: #fff!important;
}
.dark-box i {
color: #fff!important;
}
.primary-box i {
color: #fff!important;
}
.info-box i {
color: #fff!important;
}
.success-box i {
color: #fff!important;
}
.danger-box i {
color: #fff!important;
}
.block .header h4 {
font-size: 15px;
font-weight: 400;
margin: 6px 0;
}
.block.block-color {
border-radius: 3px;
position: relative;
}
.block.block-color .header {
background: #363b3f;
border: 0 none;
color: #FFFFFF;
}
.block.block-color.primary .header {
background: #428bca;
color: #FFFFFF;
}
.block.block-color.success .header {
background: #5cb85c;
color: #FFFFFF;
}
.block.block-color.info .header {
background: #5bc0de;
color: #FFFFFF;
}
.block.block-color.warning .header {
background: #f0ad4e;
color: #FFFFFF;
}
.block.block-color.danger .header {
background: #d9534f;
color: #FFFFFF;
}
.block .loading, .block-web .loading {
background: rgba(255, 255, 255, 0.5);
cursor: wait;
display: none;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.block .loading i, .block-web .loading i {
font-size: 26px;
left: 50%;
margin-left: -13px;
margin-top: -13px;
position: relative;
top: 50%;
}
.spacer h2 {
font-size: 26px;
margin-bottom: 20px;
}
/*lockscreen start*/
.lockscreen {
height: 250px;
left: 50%;
margin-left: -239px;
margin-top: -185px;
position: absolute;
top: 50%;
width: 478px;
}
.lockscreen .logo {
display: block;
padding: 15px 0;
}
.lockscreen .logo + div {
background: #FFFFFF;
box-shadow: -21px 32px 40px rgba(0, 0, 0, 0.2);
overflow: hidden;
padding: 13px;
position: relative;
}
.lockscreen .logo > *:first-child {
margin: 0;
}
.lockscreen .logo img {
margin-right: -2px;
margin-top: -4px;
width: 29px;
}
.lockscreen .logo + div > img {
float: left;
}
.lockscreen .logo + div > img + div {
float: right;
width: 318px;
}
.lockscreen .logo + div > img + div > *:first-child {
margin-top: 0;
}
.lockscreen .logo + div > img + div > *:first-child > *:first-child {
opacity: 0.1;
padding: 15px;
}
.lockscreen .logo + div > img + div > *:first-child > small {
display: block;
padding-top: 5px;
}
.lockscreen .logo + div > img + div > *:first-child + p {
margin-bottom: 12px;
}
.margin-top-5 {
margin-top: 5px;
}
.margin-top-10 {
margin-top: 10px;
}
.margin-top-20 {
margin-top: 20px;
}
@media (max-width: 767px) {
.lockscreen .logo + div > img {
float: none !important;
}
.lockscreen {
height: auto;
left: 5%;
margin-left: 0;
margin-top: 0;
position: absolute;
text-align: center;
top: 0;
width: 90%;
}
.lockscreen .logo + div > img + div {
float: none;
height: auto;
width: 100%;
}
}
/*lockscreen end*/
/*Login start*/
.login-container .middle-login {
left: 50%;
margin-left: -215px;
margin-top: -170px;
position: absolute;
top: 50%;
width: 430px;
}
.login-container .block-web {
border: 0 none;
box-shadow: -21px 32px 40px rgba(0, 0, 0, 0.2);
margin-bottom: 20px;
overflow: hidden;
padding: 0;
}
.login-container .block-web .head {
background: #2e3236;
border-bottom: 1px solid #7761A7;
padding: 9px 20px;
}
.login-container .block-web .head h3 {
color: #FFFFFF;
line-height: 35px;
margin: 0;
min-height: 40px;
position: relative;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}
.login-container .head .logo-img {
left: 50%;
margin-left: -63px;
margin-top: -13px;
position: absolute;
top: 50%;
}
.login-container .block-web .content {
padding: 30px 30px 5px;
}
.login-container .block-web .content .form-control {
height: auto;
padding: 10px 8px;
box-shadow: none;
}
.login-container .block-web .content .form-group {
margin-bottom: 10px;
}
.login-container .block-web .content .title {
margin-bottom: 20px;
margin-top: 0;
}
.login-container .block-web .foot {
padding: 0 30px 15px;
text-align: right;
}
.login-container .block-web .foot .btn {
min-width: 70px;
}
.login-container .block-web .input-group-addon {
background: #FAFAFA;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
border-color: #E5E9EC;
}
.login-container .out-links {
padding-right: 3px;
}
.login-container .out-links a {
color: #2e3236;
}
/*Login end*/
/*404error start*/
.error-body {
background-color: #E5E9EC !important;
height: 100%;
}
.error-wrapper {
height: 624px;
margin: 0 auto -130px;
min-height: 100%;
padding: 0 0 60px;
}
.error-wrapper:after {
content: "";
display: block;
}
.error-container {
float: none;
margin-left: auto;
margin-right: auto;
}
.error-main {
margin-top: 18%;
position: absolute;
text-align: center;
}
.error-container .error-number {
color: #22262E;
font-size: 60px;
font-weight: 300;
line-height: 80px;
text-align: center;
}
.error-container .error-description {
color: #22262E;
font-size: 32px;
font-weight: 300;
text-align: center;
}
.error-container .error-description-mini {
color: #22262E;
font-size: 18px;
font-weight: 300;
text-align: center;
}
.error-container .input-prepend.inside .add-on {
background-color: #FFFFFF;
color: #A1A1A1;
padding-top: 6px;
}
.error-container ul.footer-links {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center;
}
.error-container ul.footer-links li {
border-right: 1px solid #000000;
display: inline;
padding: 0 10px;
}
.error-container ul.footer-links li a {
color: #22262E;
font-size: 12px;
}
.error-container ul.footer-links li:last-child {
border-right: medium none;
display: inline;
padding: 0 10px;
}
.error-container ul.footer-links.small-links li a {
color: #616A7B;
font-size: 11px;
}
.error-container ul.footer-links.small-links li {
border-right: 1px solid #616A7B;
}
.error-container ul.footer-links.small-links li:last-child {
border-right: medium none;
}
.error-container .copyright {
font-size: 12px;
text-align: center;
}
.input-with-icon {
position: relative;
}
.input-with-icon input {
padding-left: 32px !important;
}
.input-with-icon i {
color: #E5E9EC;
display: block;
font-size: 16px;
height: 16px;
margin: 9px 2px 4px 10px;
position: absolute;
text-align: center;
width: 16px;
}
/*404error end*/
.content-header {
font-size: 18px;
margin: 0;
padding: 0;
}
.btn, .ui-button, .icon-separator-vertical {
display: inline-block;
position: relative;
text-align: center;
vertical-align: middle;
white-space: nowrap;
box-shadow: none;
}
.button-content {
overflow: hidden;
text-overflow: ellipsis;
}
.button-content, .icon-separator {
display: block;
float: left;
text-align: center;
white-space: nowrap;
}
.button-content .float-left.glyph-icon {
margin-right: 5px;
}
.button-content .float-right.glyph-icon {
margin-left: 5px;
margin-right: 0;
}
[data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"] {
display: none;
}
.button-group-vertical .btn {
display: block;
float: none;
}
.button-group-vertical > .btn:first-child {
border-radius: 0;
}
.button-group-vertical > .btn + .btn {
border-radius: 0;
margin-top: -1px;
}
.button-group-vertical > .btn + .btn .icon-separator {
border-radius: 0;
}
.vertical-button {
max-width: 100px;
min-width: 60px;
padding: 5px 10px;
}
.content-header .btn {
border-radius: 0;
}
.right-margin {
margin-right: -6px;
}
.padd-adj {
padding: 2px 7px;
}
.border-gray {
border: 1px solid #ccc;
}
.block-web .bottom {
background: #fcfcfc;
border-top: 1px solid #ddd;
margin: 0px -20px -20px;
padding: 14px 18px;
clear: both;
}
.panel-icon-add {
color: #CCCCCC;
font-size: 70px;
padding: 4px 0;
text-align: center;
}
.zero-margin {
margin: 0px;
}
.zero-margin h3 {
font-size: 20px
}
.weather-bg {
background: #45b3aa;
border-radius: 4px 4px 0 0;
color: #FFFFFF;
font-size: 16px;
font-weight: 300;
text-align: center;
}
.weather-bg i {
display: block;
font-size: 60px;
}
.weather-bg .degree {
font-size: 60px;
}
.weather-category {
color: #74829C;
padding: 34px 0;
}
.weather-category ul {
display: inline-block;
margin: 0;
padding: 0;
width: 100%;
}
.weather-category ul li {
border-right: 1px solid #E6E6E6;
display: inline-block;
text-align: center;
width: 32%;
}
.weather-category ul li h5 {
font-weight: 300;
margin: 0 0 5px;
text-transform: uppercase;
}
.weather-category ul li a {
}
.weather-category ul li:last-child {
border-right: medium none;
}
.custom-bar-chart {
border-bottom: 1px solid #C9CDD7;
height: 290px;
margin-left: 10px;
margin-top: 20px;
position: relative;
}
.custom-bar-chart .bar {
border-radius: 5px 5px 0 0;
float: left;
height: 100%;
margin: 0 2%;
position: relative;
text-align: center;
width: 8.3%;
z-index: 10;
}
.custom-bar-chart .bar .title {
bottom: -20px;
font-size: 12px;
position: absolute;
text-align: center;
width: 100%;
}
.custom-bar-chart .bar .value {
background: #53b2ea;
border-radius: 3px 3px 0 0;
bottom: 0;
color: #BFC2CD;
position: absolute;
transition: all 0.3s ease 0s;
width: 100%;
}
.custom-bar-chart .bar .value:hover {
background: #ff634d;
color: #FFFFFF;
}
.y-axis {
color: #555555;
position: absolute;
text-align: right;
width: 100%;
}
.y-axis li {
border-top: 1px dashed #DBDCE0;
display: block;
height: 58px;
width: 100%;
}
.y-axis li:last-child {
border-top: medium none;
}
.y-axis li span {
display: block;
margin: -10px 0 0 -65px;
padding: 0 12px;
width: 40px;
}
.y-axis {
color: #555555;
text-align: right;
}
.chart {
display: inline-block;
text-align: center;
width: 100%;
}
.chart .heading {
text-align: left;
}
.chart .heading span {
display: block;
}
.panel.green-chart .chart-tittle {
background: none repeat scroll 0 0 #99C262;
border-radius: 0 0 4px 4px;
display: inline-block;
font-size: 16px;
font-weight: normal;
padding: 15px;
width: 100%;
}
#barchart {
display: inline-block;
margin-bottom: -15px;
}
.bar-bg-color {
background: #ff634d!important;
}
.min-height-fx {
min-height: 380px;
}
.knob-box {
width: 150px;
float: left;
}
.knob-content-box {
width: 120px;
float: left;
margin-left: 20px;
}
.knob-content-box h4 {
padding: 0px!important;
margin: 0px!important;
}
.bottom-content-box {
float: left;
margin-right: 14px;
}
.task-list li.removed {
opacity: 0;
padding-top: 0;
padding-bottom: 0;
height: 0;
overflow: hidden;
border-top: 0px;
}
.task-list li.selected {
text-decoration: line-through;
color: #eee;
}
.task-list li .task-del:hover, .task-list li .task-del:focus {
text-decoration: none;
}
.list-group-item, a.list-group-item {
background: #fff;
border: none;
margin-bottom: 2px;
}
.green-bg-color {
background: #2daba4;
color: #fff;
}
.green-bg-color i {
color: #fff;
}
.green-bg-color h3 {
color: #fff;
}
.green-bg-color .list-group-item {
background: rgba(255,255,255,0.25)!important;
color: #fff;
}
.orange-bg-color {
background: #f06464;
color: #fff;
}
.blue-bg-color {
background: #66a4d4;
color: #fff;
}
.paper {
background: -moz-linear-gradient(center top, #DFE8EC 0%, #FFFFFF 8%) repeat scroll 0 0 / 100% 30px rgba(0, 0, 0, 0);
font-size: 14px;
line-height: 30px;
outline: medium none;
padding: 30px 55px 27px;
position: relative;
}
.paper:after {
border-left: 1px solid #F8D3D3;
bottom: 0;
content: "";
left: 39px;
position: absolute;
top: 0;
width: 0;
}
.widget-notes {
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.04);
}
.widget-notes .content {
padding: 0;
}
.tab-content {
background-color: #FFFFFF;
margin-bottom: 18px;
overflow: hidden;
position: relative;
z-index: 10;
}
.tab-content > .tab-pane, .pill-content > .pill-pane {
padding: 15px;
}
.tab-content > .active, .pill-content > .active {
padding: 0px;
}
.tabs-left > .nav-tabs {
float: left;
margin-right: 0;
}
.tabs-right > .nav-tabs {
float: right;
margin-left: 0;
}
.nav-tabs {
background-color: #687174;
margin-bottom: 0;
}
.nav-tabs > li > a {
border: 0 none;
border-radius: 0;
min-width: 70px;
padding: 10px 20px;
color: #fff;
}
.nav-tabs > li > a:hover {
color: #505458;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
border-width: 0;
}
.nav-tabs > .active > a, .nav-tabs > .active > a:hover, .nav-tabs > .active > a:focus {
border: 0 none;
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
color: #505458;
}
.tabs-left > .nav-tabs > li > a {
border-bottom-left-radius: 3px;
border-top-left-radius: 3px;
}
.tabs-right > .nav-tabs > li > a {
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
}
.the-icons {
padding-top: 17px;
}
.the-icons i {
color: #505458;
display: inline-block;
font-size: 14px;
margin-right: 10px;
text-align: right;
width: 32px;
}
.the-icons a {
color: #505458;
font-size: 14px;
}
.the-icons a {
cursor: pointer;
display: block;
height: 32px;
line-height: 32px;
}
.the-icons a:hover {
text-decoration: none;
}
.the-icons a:hover .fa, .the-icons a:hover [class*="fa"] {
font-size: 28px;
vertical-align: -5px;
}
.progress {
border-radius: 3px;
box-shadow: none;
height: 10px;
margin-bottom: 15px;
}
.progress-hieght {
height: 20px;
}
.badge-primary {
background-color: #428bca;
}
.badge-warning {
background-color: #f0ad4e;
}
.badge-success {
background-color: #5cb85c;
}
.badge-danger {
background-color: #d9534f;
}
.badge-info {
background-color: #428bca;
}
.demo-btns {
list-style: none outside none;
margin: 0;
padding: 0;
}
.demo-btns > li {
display: inline-block;
margin-bottom: 7px;
}
.btn-label {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.15);
border-radius: 3px 0 0 3px;
display: inline-block;
left: -12px;
padding: 6px 12px;
position: relative;
}
.btn-labeled {
padding-bottom: 0;
padding-top: 0;
}
.nav-tabs {
border-bottom: 0 none;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
border: medium none;
}
.tab-content {
background: none repeat scroll 0 0 #FFFFFF;
border: 0 none;
border-radius: 0;
margin-bottom: 40px;
padding: 20px;
}
.tab-content h3 {
margin-top: 0;
padding: 0;
}
.tab-content #picture .fileinput .thumbnail {
border: 0 none;
}
.tab-content #picture .fileinput .thumbnail h2 {
position: relative;
top: 30%;
}
.tab-content h3, h2, h1:first-child {
margin-top: 0;
}
.tab-bottom .nav-tabs {
margin-bottom: 40px;
}
.tab-bottom .tab-content {
margin-bottom: 0;
}
.tab-bottom .nav-tabs > li.active > a:after, .tab-bottom .nav-tabs > li.active > a:hover:after, .tab-bottom .nav-tabs > li.active > a:focus:after {
bottom: 0;
top: auto;
}
.tab-bottom .nav-tabs > li.active > a, .tab-bottom .nav-tabs > li.active > a:hover, .tab-bottom .nav-tabs > li.active > a:focus {
border-top: 0 none;
margin-top: -1px;
}
.tab-bottom .tab-content {
border-radius: 3px 3px 3px 0;
}
.tab-left .nav-tabs {
float: left;
}
.tab-left .nav-tabs > li {
float: none;
margin-bottom: 0;
margin-right: 0;
}
.tab-left .nav-tabs > li > a {
border-radius: 0;
min-width: 38px;
padding: 12px 10px;
text-align: left;
}
.tab-left .nav-tabs > li .fa {
font-size: 14px;
}
.tab-left .nav-tabs > li.active > a:after, .tab-left .nav-tabs > li.active > a:hover:after, .tab-left .nav-tabs > li.active > a:focus:after {
bottom: 0;
height: 100%;
top: auto;
width: 2px;
}
.tab-left .nav-tabs > li.active > a, .tab-left .nav-tabs > li.active > a:hover, .tab-left .nav-tabs > li.active > a:focus {
box-shadow: -1px 3px 4px -3px rgba(0, 0, 0, 0.08);
margin-right: -1px;
padding: 13px 10px 12px 9px;
}
.tab-left .tab-content {
border-radius: 0 3px 3px;
overflow: auto;
}
.tab-right .nav-tabs {
float: right;
}
.tab-right .tab-content {
border-radius: 3px 0 3px 3px;
overflow: auto;
}
.tab-right .nav-tabs > li {
float: none;
margin-bottom: 2px;
margin-right: 0;
}
.tab-right .nav-tabs > li > a {
min-width: 38px;
padding: 12px 10px;
text-align: left;
}
.tab-right .nav-tabs > li .fa {
font-size: 14px;
}
.tab-right .nav-tabs > li.active > a:after, .tab-right .nav-tabs > li.active > a:hover:after, .tab-right .nav-tabs > li.active > a:focus:after {
bottom: 0;
height: 100%;
left: auto;
right: 0;
top: auto;
width: 2px;
}
.tab-right .nav-tabs > li.active > a, .tab-right .nav-tabs > li.active > a:hover, .tab-right .nav-tabs > li.active > a:focus {
border-style: none solid solid none;
border-width: 0 2px 1px 0;
box-shadow: 1px 3px 4px -3px rgba(0, 0, 0, 0.08);
margin-left: -1px;
padding: 13px 10px 12px 12px;
}
.accordion {
margin-bottom: 40px;
}
.accordion .panel-heading {
background: none repeat scroll 0 0 #FFFFFF;
padding: 0;
}
.accordion .panel-heading a {
color: #428bca;
display: block;
font-size: 15px;
padding: 10px 16px;
}
.accordion .panel-heading a:hover {
text-decoration: none !important;
}
.accordion .panel-heading a .fa {
margin-right: 10px;
transform: rotate(90deg);
transition: transform 200ms ease-in-out 0s;
}
.accordion .panel-heading a.collapsed {
color: #555555;
}
.accordion .panel-heading a.collapsed .fa {
transform: rotate(0deg);
}
.accordion .panel-heading + .panel-collapse .panel-body {
border-top: 0 none;
padding: 3px 20px 20px 34px;
}
.accordion .panel {
border-radius: 2px;
border-style: none solid;
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.04);
margin-bottom: 5px;
}
.accordion .panel:first-child {
border-top: 0 none;
}
.accordion.panel-group .panel + .panel {
margin-top: 0;
}
.accordion.accordion-color .panel-heading a {
background-color: #2e3236;
color: #FFFFFF;
}
.accordion.accordion-color .panel-heading a.collapsed {
background-color: #FFFFFF;
color: #555555;
}
.accordion.accordion-color .panel-collapse .panel-body {
background-color: #2e3236;
color: #FFFFFF;
}
.accordion.accordion-semi .panel-heading a {
background-color: #428bca;
color: #FFFFFF;
transition: background-color 200ms ease-in-out 0s;
}
.accordion.accordion-semi .panel-heading.success a {
background-color: #5cb85c;
}
.accordion.accordion-semi .panel-heading.warning a {
background-color: #f0ad4e;
}
.accordion.accordion-semi .panel-heading.danger a {
background-color: #d9534f;
}
.accordion.accordion-semi .panel-heading a.collapsed {
background-color: #FFFFFF;
color: #555555;
}
.accordion.accordion-semi .panel-collapse .panel-body {
padding: 15px 20px 20px 34px;
}
.slider {
display: block;
margin: 5px 0;
}
.slider.primary .slider-track {
background: #428bca;
}
.slider.sucess .slider-track {
background: #5cb85c;
}
.slider.info .slider-track {
background-color: #5bc0de;
background-image: none;
}
.slider.warning .slider-track {
background: #f0ad4e;
}
.slider.danger .slider-track {
background: #d9534f;
}
.slider.white .slider-track {
background: #FFFFFF;
}
.slider.slider-vertical {
margin: 0 10px;
}
.slider-handle.round {
background: linear-gradient(to bottom, #F8F9FA 13%, #FFFFFF 97%) repeat scroll 0 0 rgba(0, 0, 0, 0);
box-shadow: 0 2px 1px -1px #FFFFFF inset, 0 1px 3px rgba(0, 0, 0, 0.39);
height: 26px;
opacity: 1;
width: 26px;
}
.slider.slider-horizontal .slider-handle {
margin-top: -12px !important;
}
.slider.slider-horizontal .slider-track {
border-radius: 8px !important;
box-shadow: 0 0 1px 1px rgba(107, 170, 165, 0.33) inset !important;
height: 3px !important;
}
.slider.slider-vertical .slider-handle {
margin-left: -11px !important;
}
.slider.slider-vertical .slider-track {
width: 3px !important;
}
.the-icons [class*="span"]:first-child {
margin-left: 2.5641%;
}
.slider-selection {
border-radius: 8px !important;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.11) inset !important;
}
.blue .slider-selection {
background-color: #0A6EA0 !important;
background-image: none !important;
}
.red .slider-selection {
background-color: #000000 !important;
background-image: none !important;
}
.green .slider-selection {
background-color: #0E766D !important;
background-image: none !important;
}
.user-profile-sidebar {
margin: 0 0 20px;
}
.user-profile-sidebar .user-identity {
margin: 20px 0 0;
}
.user-profile-sidebar img {
width: 90px;
}
.account-status-data {
border-bottom: 1px dashed #DDDDDD;
border-top: 1px dashed #DDDDDD;
margin: 10px 0 20px;
padding: 10px 0;
text-align: center;
}
.account-status-data h5 {
color: #909090;
font-size: 11px;
line-height: 150%;
}
.user-button {
margin: 15px 0;
}
.user-button .btn {
margin: 5px 0;
}
#social {
background: none repeat scroll 0 0 #E5E9EC;
padding: 10px;
text-align: center;
}
#social a:hover {
text-decoration: none;
}
.fa-circle.facebook {
color: #5471AE;
}
.fa-circle.twitter {
color: #4EC6F6;
}
.fa-circle.gplus {
color: #E24E3E;
}
.fa-circle.tumblr {
color: #4D77A3;
}
.fa-circle.linkedin {
color: #3097CE;
}
.user-profile-content {
margin: 30px 15px;
}
.full {
padding: 0;
}
.block-web .nav-tabs > li > a {
border-color: -moz-use-text-color;
border-radius: 0;
border-style: none;
border-width: medium;
color: #fff;
font-size: 14px;
line-height: 1.42857;
margin: 0;
transition: all 0.4s ease 0s;
}
.block-web .nav-tabs > li > a i {
color: #FFFFFF;
}
.block-web .media-list {
margin-top: 30px;
}
.block-web .media-list a {
color: #1B1E24;
}
.block-web .media-list a:hover {
color: #212121;
text-decoration: none;
}
.block-web .media-list .media {
border-bottom: 1px solid #EAEAEA;
padding: 5px 20px;
}
.block-web .media-list li.media:last-child {
border-bottom: medium none;
}
.block-web .media-list .media .media-heading a {
color: #1B1E24;
font-size: 14px;
font-weight: 600;
margin-right: 5px;
}
.block-web .media-list .media .media-heading small {
color: #65BD77;
font-size: 11px;
}
.block-web .media-list .media p {
color: #909090;
}
.block-web .media-list .media .media-object {
width: 50px;
}
.block-web .media-list {
}
.block-web .nav-tabs > li.active > a, .block-web .nav-tabs > li.active > a:hover, .block-web .nav-tabs > li.active > a:focus {
background-color: #FFFFFF;
border-color: -moz-use-text-color;
border-style: none;
border-width: medium;
color: #1B1E24;
cursor: default;
}
.block-web .nav-tabs > li.active > a i, .block-web .nav-tabs > li.active > a:hover i, .block-web .nav-tabs > li.active > a:focus i {
color: #212121;
}
.block-web .additional-box {
position: absolute;
right: 15px;
top: 10px;
z-index: 99999;
}
.block-web .additional-btn {
position: absolute;
right: 15px;
top: 17px;
z-index: 99991;
}
.btn-compose-email {
margin-bottom: 20px;
padding: 10px 0;
}
.nav-email > li > a > .badge {
margin-top: 2px;
}
.nav-email > li > a {
color: #444444;
}
.nav-email > li > a > i {
margin-right: 10px;
text-align: center;
width: 16px;
}
.nav-email > li > a:hover {
background-color: #D8DCDF;
}
.table-email {
background-color: #F7F7F7;
border-bottom: 1px solid #EEEEEE;
box-shadow: none;
margin: 0;
}
.table-email tr.unread td {
background-color: #FFFFFF;
}
.table-email tbody > tr > td {
vertical-align: middle;
}
.table-email tr:hover {
background-color: #EEEEEE;
cursor: pointer;
}
.table-email tr.selected td {
background-color: #EEEEEE;
}
.table-email .ckbox {
height: 19px;
width: 18px;
}
.table-email .ckbox input[type="checkbox"]:checked + label:after {
top: 2px;
}
.table-email .star {
color: #CCCCCC;
}
.table-email .star-checked {
color: #F0AD4E;
}
.table-email td:first-child {
width: 30px;
}
.table-email td:nth-child(2) {
width: 30px;
}
.table-email .media {
margin: 0;
padding: 0;
}
.table-email .media-object {
width: 35px;
}
.table-email .media h4 {
font-size: 14px;
line-height: normal;
margin: 0;
}
.table-email .media-meta {
color: #999999;
font-size: 11px;
}
.table-email .email-summary {
margin: 2px 0 0;
}
.table-email .email-summary strong {
color: #333333;
}
.read-panel {
border-top: 1px solid #EEEEEE;
margin-top: 10px;
padding-top: 20px;
}
.media-object {
display: block;
}
.read-panel .media-object {
width: 35px;
}
.read-panel .media h4 {
font-size: 14px;
line-height: normal;
margin: 2px 0 0;
}
.btn-white {
background-color: #FFFFFF;
border: 1px solid #E5E9EC;
color: #5E5E5E;
}
.btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white.active, .btn-white.disabled, .btn-white[disabled] {
background-color: #FBFCFD;
border: 1px solid #B4B9BE;
}
.compose-mail {
display: inline-block;
margin-top: 20px;
position: relative;
width: 100%;
}
.compose-mail .compose-options {
color: #979797;
cursor: pointer;
display: inline-block;
font-size: 14px;
position: absolute;
right: 10px;
top: 7px;
}
.compose-mail input, .compose-mail input:focus {
border: medium none;
float: left;
padding: 0;
width: 80%;
}
.compose-mail .form-group {
border: 1px solid #F2F3F6;
display: inline-block;
margin-bottom: 0;
width: 100%;
}
.compose-mail .form-group label {
float: left;
line-height: 34px;
margin-bottom: 0;
padding-left: 5px;
width: 8%;
}
.compose-editor input {
margin-top: 15px;
}
.compose-editor {
display: inline-block;
margin-bottom: 15px;
width: 100%;
}
.compose-btn {
float: left;
margin-top: 6px;
}
#to {
border: none;
}
#subject {
border: none;
}
.toggle-slide {
-moz-user-select: none;
cursor: pointer;
direction: ltr;
overflow: hidden;
}
.toggle-slide .toggle-on, .toggle-slide .toggle-off, .toggle-slide .toggle-blob {
float: left;
}
.toggle-slide .toggle-blob {
cursor: grab;
position: relative;
z-index: 99;
}
.toggle-slide {
-moz-user-select: none;
cursor: pointer;
direction: ltr;
overflow: hidden;
border-radius: 3px;
}
.toggle-slide .toggle-on, .toggle-slide .toggle-off, .toggle-slide .toggle-blob {
float: left;
}
.toggle-slide .toggle-blob {
cursor: grab;
position: relative;
z-index: 99;
}
.toggle-default .toggle-slide {
border: 1px solid #CCCCCC;
}
.toggle-default .toggle-slide.active {
border-color: #999999;
}
.toggle-default .toggle-slide .toggle-on, .toggle-default .toggle-slide .toggle-off, .toggle-default .toggle-slide .toggle-blob {
font-size: 11px;
font-weight: 500;
}
.toggle-default .toggle-slide .toggle-on, .toggle-default .toggle-select .toggle-inner .active {
background: none repeat scroll 0 0 #999999;
color: #FFFFFF;
}
.toggle-default .toggle-slide .toggle-off, .toggle-default .toggle-select .toggle-on {
background: none repeat scroll 0 0 #F7F7F7;
color: #666666;
}
.toggle-default .toggle-slide .toggle-blob {
background: none repeat scroll 0 0 #FFFFFF;
border-right: 1px solid #CCCCCC;
}
.toggle-default .toggle-slide.active .toggle-blob {
border-left: 1px solid #999999;
border-right: 0 none;
}
.toggle-default .toggle-slide .toggle-blob:hover {
background: none repeat scroll 0 0 #FCFCFC;
}
.toggle-primary .toggle-slide {
border: 1px solid #999999;
}
.toggle-primary .toggle-slide.active {
border-color: #357EBD;
}
.toggle-primary .toggle-slide .toggle-on, .toggle-primary .toggle-slide .toggle-off, .toggle-primary .toggle-slide .toggle-blob {
font-size: 11px;
font-weight: 500;
}
.toggle-primary .toggle-slide .toggle-on, .toggle-primary .toggle-select .toggle-inner .active {
background: none repeat scroll 0 0 #428BCA;
color: #FFFFFF;
}
.toggle-primary .toggle-slide .toggle-off, .toggle-primary .toggle-select .toggle-on {
background: none repeat scroll 0 0 #BBBBBB;
color: #FFFFFF;
}
.toggle-primary .toggle-slide .toggle-blob {
background: none repeat scroll 0 0 #FFFFFF;
border-right: 1px solid #999999;
}
.toggle-primary .toggle-slide.active .toggle-blob {
border-left: 1px solid #357EBD;
border-right: 0 none;
}
.toggle-primary .toggle-slide .toggle-blob:hover {
background: none repeat scroll 0 0 #FCFCFC;
}
.toggle-success .toggle-slide {
border: 1px solid #999999;
}
.toggle-success .toggle-slide.active {
border-color: #1CAF9A;
}
.toggle-success .toggle-slide .toggle-on, .toggle-success .toggle-slide .toggle-off, .toggle-success .toggle-slide .toggle-blob {
font-size: 11px;
font-weight: 500;
}
.toggle-success .toggle-slide .toggle-on, .toggle-success .toggle-select .toggle-inner .active {
background: none repeat scroll 0 0 #1CAF9A;
color: #FFFFFF;
}
.toggle-success .toggle-slide .toggle-off, .toggle-success .toggle-select .toggle-on {
background: none repeat scroll 0 0 #BBBBBB;
color: #FFFFFF;
}
.toggle-success .toggle-slide .toggle-blob {
background: none repeat scroll 0 0 #FFFFFF;
border-right: 1px solid #999999;
}
.toggle-success .toggle-slide.active .toggle-blob {
border-left: 1px solid #4CAE4C;
border-right: 0 none;
}
.toggle-success .toggle-slide .toggle-blob:hover {
background: none repeat scroll 0 0 #FCFCFC;
}
.toggle-warning .toggle-slide {
border: 1px solid #999999;
}
.toggle-warning .toggle-slide.active {
border-color: #EEA236;
}
.toggle-warning .toggle-slide .toggle-on, .toggle-warning .toggle-slide .toggle-off, .toggle-warning .toggle-slide .toggle-blob {
font-size: 11px;
font-weight: 500;
}
.toggle-warning .toggle-slide .toggle-on, .toggle-warning .toggle-select .toggle-inner .active {
background: none repeat scroll 0 0 #F0AD4E;
color: #FFFFFF;
}
.toggle-warning .toggle-slide .toggle-off, .toggle-warning .toggle-select .toggle-on {
background: none repeat scroll 0 0 #BBBBBB;
color: #FFFFFF;
}
.toggle-warning .toggle-slide .toggle-blob {
background: none repeat scroll 0 0 #FFFFFF;
border-right: 1px solid #999999;
}
.toggle-warning .toggle-slide.active .toggle-blob {
border-left: 1px solid #EEA236;
border-right: 0 none;
}
.toggle-warning .toggle-slide .toggle-blob:hover {
background: none repeat scroll 0 0 #FCFCFC;
}
.toggle-danger .toggle-slide {
border: 1px solid #999999;
}
.toggle-danger .toggle-slide.active {
border-color: #D43F3A;
}
.toggle-danger .toggle-slide .toggle-on, .toggle-danger .toggle-slide .toggle-off, .toggle-danger .toggle-slide .toggle-blob {
font-size: 11px;
font-weight: 500;
}
.toggle-danger .toggle-slide .toggle-on, .toggle-danger .toggle-select .toggle-inner .active {
background: none repeat scroll 0 0 #D9534F;
color: #FFFFFF;
}
.toggle-danger .toggle-slide .toggle-off, .toggle-danger .toggle-select .toggle-on {
background: none repeat scroll 0 0 #BBBBBB;
color: #FFFFFF;
}
.toggle-danger .toggle-slide .toggle-blob {
background: none repeat scroll 0 0 #FFFFFF;
border-right: 1px solid #999999;
}
.toggle-danger .toggle-slide.active .toggle-blob {
border-left: 1px solid #D43F3A;
border-right: 0 none;
}
.toggle-danger .toggle-slide .toggle-blob:hover {
background: none repeat scroll 0 0 #FCFCFC;
}
.ckbox, .rdio {
position: relative;
}
.ckbox input[type="checkbox"], .rdio input[type="radio"] {
opacity: 0;
}
.ckbox label, .rdio label {
cursor: pointer;
margin-bottom: 15px !important;
margin-left: 30px!important;
}
.ckbox label:before {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #BBBBBB;
border-radius: 2px;
content: "";
display: inline-block;
height: 18px;
left: 0;
position: absolute;
top: 1px;
width: 18px;
}
.ckbox input[type="checkbox"]:disabled + label {
color: #999999;
}
.ckbox input[type="checkbox"]:disabled + label:before {
background-color: #EEEEEE;
}
.ckbox input[type="checkbox"]:checked + label:after {
color: #FFFFFF;
content: "";
display: inline-block;
font-family: 'FontAwesome';
font-size: 11px;
height: 16px;
left: 3.5px;
position: absolute;
top: 0;
width: 16px;
}
.ckbox-default input[type="checkbox"]:checked + label:before {
border-color: #999999;
}
.ckbox-default input[type="checkbox"]:checked + label:after {
color: #333333;
}
.ckbox-primary input[type="checkbox"]:checked + label:before {
background-color: #428bca;
border-color: #428bca;
}
.ckbox-warning input[type="checkbox"]:checked + label:before {
background-color: #f0ad4e;
border-color: #f0ad4e;
}
.ckbox-success input[type="checkbox"]:checked + label:before {
background-color: #5cb85c;
border-color: #5cb85c;
}
.ckbox-danger input[type="checkbox"]:checked + label:before {
background-color: #d9534f;
border-color: #d9534f;
}
.rdio label:before {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #BBBBBB;
border-radius: 50px;
content: "";
display: inline-block;
height: 18px;
left: 0;
position: absolute;
top: 1px;
width: 18px;
}
.rdio input[type="radio"]:disabled + label {
color: #999999;
}
.rdio input[type="radio"]:disabled + label:before {
background-color: #EEEEEE;
}
.rdio input[type="radio"]:checked + label:after {
background-color: #444444;
border-radius: 50px;
content: "";
display: inline-block;
font-size: 11px;
height: 10px;
left: 4px;
position: absolute;
top: 5px;
width: 10px;
}
.rdio-default input[type="radio"]:checked + label:before {
border-color: #999999;
}
.rdio-primary input[type="radio"]:checked + label:before {
border-color: #428bca;
}
.rdio-primary input[type="radio"]:checked + label:after {
background-color: #428bca;
}
.rdio-warning input[type="radio"]:checked + label:before {
border-color: #f0ad4e;
}
.rdio-warning input[type="radio"]:checked + label:after {
background-color: #f0ad4e;
}
.rdio-success input[type="radio"]:checked + label:before {
border-color: #5cb85c;
}
.rdio-success input[type="radio"]:checked + label:after {
background-color: #5cb85c;
}
.rdio-danger input[type="radio"]:checked + label:before {
border-color: #d9534f;
}
.rdio-danger input[type="radio"]:checked + label:after {
background-color: #d9534f;
}
.basic-wizard .nav li a {
background: none repeat scroll 0 0 #E4E7EA;
border-bottom: 1px solid #CCCCCC;
border-radius: 0;
border-right: 1px solid #CCCCCC;
color: #4A535E;
opacity: 0.75;
}
.basic-wizard .nav li:last-child a {
border-right: 0 none;
}
.basic-wizard .nav li a:hover {
background-color: #F7F7F7;
opacity: 1;
}
.basic-wizard .nav li.active a, .basic-wizard .nav li.active a:focus, .basic-wizard .nav li.active a:active {
background: none repeat scroll 0 0 #FCFCFC;
border-bottom-color: #FCFCFC;
color: #333333;
opacity: 1;
}
.basic-wizard .pager {
background: none repeat scroll 0 0 #F7F7F7;
border-top: 1px solid #DDDDDD;
margin: 0;
padding: 10px;
}
.basic-wizard .pager li a {
background-color: #428BCA;
border-color: #357EBD;
border-radius: 2px;
color: #FFFFFF;
}
.basic-wizard .pager li a:hover {
background-color: #3276B1;
border-color: #285E8E;
}
.basic-wizard .pager li.disabled a {
background: none repeat scroll 0 0 #EEEEEE;
border-color: #CCCCCC;
color: #999999;
}
.basic-wizard .progress {
border-radius: 2px;
height: 12px;
}
.basic-wizard .nav-disabled-click li a:hover, .basic-wizard .nav-disabled-click li a:active, .basic-wizard .nav-disabled-click li a:focus {
background-color: #E4E7EA;
color: #4A535E;
cursor: default;
opacity: 0.75;
}
.basic-wizard .nav-disabled-click li.active a:hover, .basic-wizard .nav-disabled-click li.active a:active, .basic-wizard .nav-disabled-click li.active a:focus {
background: none repeat scroll 0 0 #FCFCFC;
color: #333333;
opacity: 1;
}
.basic-wizard .tab-content {
border-radius: 0;
box-shadow: none;
}
.form .form-control {
margin-bottom: 15px;
}
.cke_top {
background: #e4e7ea!important;
border-bottom: 1px solid #B6B6B6;
box-shadow: 0 1px 0 #FFFFFF inset;
padding: 6px 8px 2px;
}
.cke_bottom {
background: #e4e7ea!important;
border-top: 1px solid #BFBFBF;
box-shadow: 0 1px 0 #FFFFFF inset;
padding: 6px 8px 2px;
position: relative;
}
.parsley-error-list {
margin-top: 4px;
padding: 0;
}
.parsley-error-list li {
color: #CC0000;
list-style: none outside none;
padding: 0;
}
.parsley-error {
border-color: #CC0000 !important;
}
.thumbnail {
margin-bottom: 0px;
}
.thumbnail-view {
cursor: zoom-in;
display: inline-block;
overflow: hidden;
position: relative;
}
.thumbnail-view img {
max-width: 100%;
}
.thumbnail-view .thumbnail-view-hover {
background: url(../images/gallery/zoom.png) no-repeat scroll 50% center #111111;
display: block;
height: 100%;
opacity: 0.5;
position: absolute;
right: 0;
transform: translateY(-100%);
transition: all 0.25s ease-in-out 0s;
width: 100%;
z-index: 10;
}
.thumbnail-view:hover .thumbnail-view-hover {
opacity: 0.5;
transform: translateY(0%);
}
.thumbnail-footer {
border-top: 1px dotted #CCCCCC;
padding: 7px 10px;
}
.thumbnail-footer:before, .thumbnail-footer:after {
content: " ";
display: table;
}
.thumbnail-footer:after {
clear: both;
}
.thumbnail-footer a {
color: #999999;
font-size: 12px;
}
.thumbnail-footer a:hover {
color: #E5412D;
text-decoration: none;
}
.thumbnail-footer .pull-left a {
padding: 0 12px 0 0;
}
.thumbnail-footer .pull-right a {
padding: 0 0 0 12px;
}
.ui-lightbox, .ui-lightbox-gallery a {
cursor: -moz-zoom-in;
cursor: -webkit-zoom-in;
cursor: zoom-in;
}
/*tree views css start*/
.treeview, .treeview ul {
padding: 0;
margin: 0;
list-style: none;
}
.treeview ul {
background-color: white;
margin-top: 4px;
}
.treeview .hitarea {
background: url(../plugins/tree-views/images/treeview-default.gif) -64px -25px no-repeat;
height: 16px;
width: 16px;
margin-left: -16px;
float: left;
cursor: pointer;
}
/* fix for IE6 */
* html .hitarea {
display: inline;
float:none;
}
.treeview li {
margin: 0;
padding: 3px 0pt 3px 16px;
}
.treeview a.selected {
background-color: #eee;
}
#treecontrol { margin: 1em 0; display: none; }
.treeview .hover { color: red; cursor: pointer; }
.treeview li { background: url(../plugins/tree-views/images/treeview-default-line.gif) 0 0 no-repeat; }
.treeview li.collapsable, .treeview li.expandable { background-position: 0 -176px; }
.treeview .expandable-hitarea { background-position: -80px -3px; }
.treeview li.last { background-position: 0 -1766px }
.treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(../plugins/tree-views/images/treeview-default.gif); }
.treeview li.lastCollapsable { background-position: 0 -111px }
.treeview li.lastExpandable { background-position: -32px -67px }
.treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea { background-position: 0; }
.treeview-red li { background-image: url(../plugins/tree-views/images/treeview-red-line.gif); }
.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable { background-image: url(../plugins/tree-views/images/treeview-red.gif); }
.treeview-black li { background-image: url(../plugins/tree-views/images/treeview-black-line.gif); }
.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable { background-image: url(../plugins/tree-views/images/treeview-black.gif); }
.treeview-gray li { background-image: url(../plugins/tree-views/images/treeview-gray-line.gif); }
.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable { background-image: url(../plugins/tree-views/images/treeview-gray.gif); }
.treeview-famfamfam li { background-image: url(../plugins/tree-views/images/treeview-famfamfam-line.gif); }
.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable { background-image: url(../plugins/tree-views/images/treeview-famfamfam.gif); }
.treeview .placeholder {
background: url(../plugins/tree-views/images/ajax-loader.gif) 0 0 no-repeat;
height: 16px;
width: 16px;
display: block;
}
.filetree li { padding: 3px 0 2px 16px; }
.filetree span.folder, .filetree span.file { padding: 1px 0 1px 16px; display: block; }
.filetree span.folder { background: url(../plugins/tree-views/images/folder.gif) 0 0 no-repeat; }
.filetree li.expandable span.folder { background: url(../plugins/tree-views/images/folder-closed.gif) 0 0 no-repeat; }
.filetree span.file { background: url(../plugins/tree-views/images/file.gif) 0 0 no-repeat; }
/*tree views css end*/
.inputWidth{ width:170px;}
.register-bottom {
background: none repeat scroll 0 0 #FCFCFC;
border-top: 1px solid #DDDDDD;
clear: both;
fright: 20px;
margin: 0 -19px;
padding: 14px 55px;
}
/*timeline css style*/
.timeline {
border-collapse: collapse;
border-spacing: 0;
display: table;
position: relative;
table-layout: fixed;
width: 100%;
}
.timeline .time-show {
margin-bottom: 30px;
margin-right: -75px;
margin-top: 30px;
position: relative;
}
.timeline .time-show.first {
}
.time-show .btn {
width: 150px;
}
.timeline .time-show a {
color: #FFFFFF;
}
.timeline:before {
background-color: #D8D9DF;
bottom: 0;
content: "";
left: 50%;
position: absolute;
top: 30px;
width: 1px;
z-index: 0;
}
h3.timeline-title {
color: #C8CCD7;
font-size: 20px;
font-weight: 400;
margin: 0 0 5px;
text-transform: uppercase;
}
.t-info {
color: #C8CCD7;
}
.timeline-item:before, .timeline-item.alt:after {
content: "";
display: block;
width: 50%;
}
.timeline-item {
display: table-row;
}
.timeline-desk {
display: table-cell;
vertical-align: top;
width: 50%;
}
.timeline-desk h1 {
font-size: 16px;
font-weight: 300;
margin: 0 0 5px;
}
.timeline-desk .panel {
background: none repeat scroll 0 0 #FFFFFF;
display: block;
margin-left: 45px;
position: relative;
text-align: left;
}
.timeline-item .timeline-desk .arrow {
border-bottom: 8px solid rgba(0, 0, 0, 0);
border-top: 8px solid rgba(0, 0, 0, 0);
display: block;
height: 0;
left: -7px;
position: absolute;
top: 13px;
width: 0;
}
.timeline-item .timeline-desk .arrow {
border-right: 8px solid #FFFFFF !important;
}
.timeline-item.alt .timeline-desk .arrow-alt {
border-bottom: 8px solid rgba(0, 0, 0, 0);
border-top: 8px solid rgba(0, 0, 0, 0);
display: block;
height: 0;
left: auto;
position: absolute;
right: -7px;
top: 13px;
width: 0;
}
.timeline-item.alt .timeline-desk .arrow-alt {
border-left: 8px solid #FFFFFF !important;
}
.timeline .timeline-icon {
left: -60px;
position: absolute;
top: 5px;
}
.timeline .timeline-icon {
background: none repeat scroll 0 0 #C7CBD6;
}
.timeline-desk span a {
text-transform: uppercase;
}
.timeline-desk h1.red, .timeline-desk span a.red {
color: #EF6F66;
}
.timeline-desk h1.green, .timeline-desk span a.green {
color: #39B6AE;
}
.timeline-desk h1.blue, .timeline-desk span a.blue {
color: #56C9F5;
}
.timeline-desk h1.purple, .timeline-desk span a.purple {
color: #8074C6;
}
.timeline-desk h1.light-green, .timeline-desk span a.light-green {
color: #A8D76F;
}
.timeline-desk h1.yellow, .timeline-desk span a.yellow {
color: #FED65A;
}
.timeline .timeline-icon.red {
background: none repeat scroll 0 0 #F87C74;
}
.timeline .timeline-icon.green {
background: none repeat scroll 0 0 #48C5BD;
}
.timeline .timeline-icon.blue {
background: none repeat scroll 0 0 #67D4FE;
}
.timeline .timeline-icon.purple {
background: none repeat scroll 0 0 #8074C6;
}
.timeline .timeline-icon.light-green {
background: none repeat scroll 0 0 #B0E077;
}
.timeline .timeline-icon.yellow {
background: none repeat scroll 0 0 #FFDC6F;
}
.timeline .timeline-icon {
border-radius: 50%;
color: #FFFFFF;
display: block;
height: 30px;
text-align: center;
width: 30px;
}
.timeline .timeline-icon i {
margin-top: 9px;
}
.timeline-item.alt .timeline-icon {
left: auto;
right: -60px;
}
.timeline .time-icon:before {
font-size: 16px;
margin-top: 5px;
}
.timeline .timeline-date {
display: none;
left: -245px;
position: absolute;
text-align: right;
top: 12px;
width: 150px;
}
.timeline-item.alt .timeline-date {
display: none;
left: auto;
right: -245px;
text-align: left;
}
.timeline-desk h5 span {
color: #999999;
display: block;
font-size: 12px;
margin-bottom: 4px;
}
.timeline-item.alt:before {
display: none;
}
.timeline-item:before, .timeline-item.alt:after {
content: "";
display: block;
width: 50%;
}
.timeline-desk p {
color: #999999;
font-size: 14px;
margin-bottom: 0;
}
.timeline-desk a {
color: #1FB5AD;
}
.timeline-desk .panel {
margin-bottom: 5px;
}
.timeline-desk .album {
margin-top: 20px;
}
.timeline-item.alt .timeline-desk .album {
float: right;
margin-top: 20px;
}
.timeline-desk .album a {
float: left;
margin-right: 5px;
}
.timeline-item.alt .timeline-desk .album a {
float: right;
margin-left: 5px;
}
.timeline-desk .notification {
background: none repeat scroll 0 0 #FFFFFF;
margin-top: 20px;
padding: 8px;
}
.timeline-item.alt .panel {
margin-left: 0;
margin-right: 45px;
}
.mbot30 {
margin-bottom: 30px;
}
.timeline-item.alt h1, .timeline-item.alt p {
text-align: right;
}
select {
-moz-appearance: none;
background: url(../images/select.png) no-repeat scroll right center / 24px 20px #FFFFFF !important;
border: 1px solid #E1E6EF !important;
border-radius: 2px !important;
box-shadow: none !important;
color: #888888;
cursor: pointer;
display: inline-block;
outline: medium none;
}
select[disabled] {
background-color: #F2F4F8 !important;
color: #C0CADD;
}
select[multiple] {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
}
select.input-lg {
padding: 0 11px;
}
select.input-sm {
padding: 0 12px;
}
.select2-drop {
border: 1px solid #E1E6EF;
border-radius: 0 0 2px 2px;
box-shadow: none;
color: #374767;
}
.select2-container-multi .select2-choices {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #E1E6EF !important;
border-radius: 2px !important;
box-shadow: none !important;
margin: -7px -13px 0 !important;
}
.select2-default {
color: #C0CADD !important;
padding-left: 12px !important;
}
.select2-container-multi .select2-choices .select2-search-choice {
background-color: #F2F4F8;
background-image: none;
border: 1px solid #E1E6EF;
border-radius: 1px;
box-shadow: none;
filter: none;
font-size: 11px;
margin: 5px 0 3px 5px;
padding: 3px 5px 4px 18px;
}
.select2-container-multi .select2-choices .select2-search-field input {
color: #374767;
}
@-moz-document url-prefix("") {
select {
text-indent: 0.01px;
text-overflow: "";
}
select.input-lg {
padding: 10px 11px;
}
select.input-sm {
padding: 6px 12px;
}
.select2-container-multi .select2-choices {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
border: 1px solid rgba(0, 0, 0, 0) !important;
margin: -3px -13px 0 !important;
}
.select2-container-multi .select2-choices .select2-search-choice {
margin: 1px 0 3px 5px;
}
}
.limiterBox {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
-moz-box-sizing: content-box;
background-color: #E1E6EF;
border-color: -moz-use-text-color #E1E6EF #E1E6EF;
border-image: none;
border-right: 1px solid #E1E6EF;
border-style: none solid solid;
border-width: medium 1px 1px;
color: #FFFFFF;
font-size: 10px;
opacity: 0.9;
padding: 3px 6px;
}
.editor {
-moz-box-sizing: content-box;
background-color: #FFFFFF;
border: 1px solid #E1E6EF;
border-collapse: separate;
border-radius: 2px;
height: 250px;
margin-top: 20px;
max-height: 250px;
outline: medium none;
overflow: scroll;
padding: 4px;
}
div[data-role="editor-toolbar"] {
-moz-user-select: none;
}
.dropdown-menu a {
cursor: pointer;
}
.twitter-typeahead .tt-query, .twitter-typeahead .tt-hint {
margin-bottom: 0;
}
.right-info-bar {
background-color: #FFFFFF;
box-shadow: 0 0 3px #4D4D4D;
height: 100%;
padding: 0;
position: fixed;
right: -250px;
top: 40px;
transition: right 0.5s ease 0s;
width: 240px;
z-index: 9999;
}
.right-info-bar .block {
background-color: #F7F7F7;
margin-bottom: 10px;
}
.right-info-bar .block .heading {
background-color: #E6E6E6;
color: #4D4D4D;
font-size: 15px;
margin: 0;
padding: 10px;
}
.infos {
margin: 0 10px;
padding: 0;
}
.infos li {
border-bottom: 1px solid #E6E6E6;
cursor: pointer;
display: block;
padding: 8px 0;
}
.infos li .label {
display: inline-block;
margin-right: 10px;
padding: 6px;
text-align: center;
width: 24px;
}
.infos li .label i {
font-size: 10px;
}
.infos li .user img {
border: 1px solid #CCCCCC;
border-radius: 50%;
height: 24px;
width: 24px;
}
.infos li .info {
color: #33393C;
margin-left: 34px;
}
.infos li .info h6 {
font-size: 11px;
font-weight: 500;
line-height: 100%;
margin: 0 0 2px;
padding: 0;
}
.infos li .info p {
color: #999999;
font-size: 10px;
line-height: 100%;
margin: 0;
padding: 0;
}
.infos li .info small {
color: #666666;
font-size: 11px;
}
.infos li a {
color: #33393C;
font-weight: 500;
}
.infos li a span {
color: #808080;
font-size: 11px;
font-weight: 200;
}
.infos li:last-child {
border-bottom: 0 none;
}
.online-users {
list-style-type: none;
margin: 0;
padding: 0;
}
.online-users li a {
display: block;
padding: 3px 10px;
position: relative;
}
.online-users li a img {
height: 16px;
margin-right: 3px;
width: 16px;
}
.online-users li a .user-name {
display: inline-block;
}
.online-users li a .user-status, .online-users li a .user-status.online, .online-users li a .user-status.busy, .online-users li a .user-status.away {
background: none repeat scroll 0 0 #CCCCCC;
border-radius: 100%;
box-shadow: 0 0 4px #999999 inset;
height: 8px;
position: absolute;
right: 5px;
top: 6px;
width: 8px;
}
.online-users li a .user-status.online, .online-users li a .user-status.online.online, .online-users li a .user-status.busy.online, .online-users li a .user-status.away.online {
background: none repeat scroll 0 0 #5cb85c;
}
.online-users li a .user-status.busy, .online-users li a .user-status.online.busy, .online-users li a .user-status.busy.busy, .online-users li a .user-status.away.busy {
background: none repeat scroll 0 0 #ff634d;
}
.online-users li a .user-status.away, .online-users li a .user-status.online.away, .online-users li a .user-status.busy.away, .online-users li a .user-status.away.away {
background: none repeat scroll 0 0 #fef00b;
}
.progress-statistics {
list-style-type: none;
margin: 0;
padding: 0;
}
.progress-statistics li {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #F2F2F2;
border-radius: 2px;
padding: 5px 10px;
transition: all 0.5s ease 0s;
}
.progress-statistics li .progress {
background-color: #E0E0E0;
background-image: -moz-linear-gradient(center top , #F5F5F5, #E0E0E0);
margin-bottom: 3px;
margin-top: 3px;
}
.progress-statistics li .details {
display: inline;
font-size: 11px;
font-weight: 700;
} | 0.235812 | 0.041598 |
.blog-block {
display: block;
overflow: hidden;
width: 65%;
margin: 0px 0px;
padding-left: 0%;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
color: #fff;
font-size: 10px;
line-height: 10px;
}
.blog-post-wrapper {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: auto;
margin-right: 0%;
margin-bottom: 5%;
margin-left: 0%;
border: 0px none transparent;
border-radius: 3px;
background-color: #fff;
-webkit-transition: box-shadow 200ms ease, -webkit-transform 200ms ease;
transition: box-shadow 200ms ease, -webkit-transform 200ms ease;
transition: transform 200ms ease, box-shadow 200ms ease;
transition: transform 200ms ease, box-shadow 200ms ease, -webkit-transform 200ms ease;
text-decoration: none;
}
.image-wrapper {
position: relative;
overflow: hidden;
width: 55%;
height: 260px;
max-width: 60%;
border-radius: 3px;
}
.thumbnail-image {
width: 100%;
height: 100%;
border-radius: 5px;
}
.thumbnail-text {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
height: auto;
padding: 0px 13px 13px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
border: 1px none #000;
}
.post-title {
margin-bottom: 2px;
font-family: Roboto, sans-serif;
color: #0e1b47;
font-size: 16px;
line-height: 21px;
font-weight: 400;
cursor: pointer;
}
.post-title:hover {
font-weight: 600;
}
.preview-text {
overflow: hidden;
height: 110px;
margin-top: 10px;
font-family: Roboto, sans-serif;
color: #090606;
font-size: 14px;
line-height: 19px;
}
.post-details {
position: relative;
left: 0%;
top: auto;
right: 0%;
bottom: 0%;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-top: 0px;
padding: 6px 13px;
border: 1px none #000;
font-family: Roboto, sans-serif;
color: #090606;
font-size: 12px;
text-decoration: none;
text-transform: uppercase;
}
.post-author {
width: auto;
margin-right: 5px;
color: #090606;
font-size: 13px;
line-height: 35px;
font-weight: 400;
cursor: pointer;
}
.post-author:hover {
font-weight: 600;
}
.thumbnail-post-date {
margin-bottom: 5px;
margin-left: 0px;
font-family: Roboto, sans-serif;
color: #090606;
font-size: 12px;
line-height: 35px;
letter-spacing: 0.5px;
text-transform: uppercase;
}
.category-tag {
position: relative;
left: auto;
top: auto;
right: auto;
bottom: auto;
z-index: 0;
margin-top: 5px;
margin-right: 6px;
margin-bottom: 10px;
padding: 0px 0px 3px;
border-radius: 0px;
background-color: transparent;
font-family: Roboto, sans-serif;
color: #000;
font-size: 14px;
line-height: 100%;
letter-spacing: 2px;
text-decoration: none;
text-transform: uppercase;
cursor: pointer;
}
.category-tag::after {
position: absolute;
content: "";
left: 1px;
bottom: 2px;
background-color: rgb(197,215,201);
width: 50px;
height: 8px;
z-index: -1;
}
.category-tag:hover {
color: #0e1b47;
font-weight: 600;
}
.sidebar-content-container {
position: static;
left: 0%;
top: 0%;
right: 0%;
bottom: 40%;
display: block;
width: 80%;
height: auto;
margin-bottom: 20px;
padding: 5% 10%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
border-style: solid;
border-width: 1px;
border-color: rgba(227, 231, 232, 0.7);
border-radius: 5px;
background-color: #fff;
}
.sidebar-content-container.recent-posts {
margin-bottom: 20px;
margin-left: 10%;
padding: 7%;
}
.sidebar-content-container.categories {
margin-left: 10%;
padding-top: 7%;
padding-bottom: 7%;
padding-left: 7%;
}
.body {
display: block;
}
.section-heading {
display: block;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
text-align: center;
}
.section-title {
margin-top: 0px;
margin-bottom: 0px;
font-family: Roboto, sans-serif;
color: #000;
font-size: 20px;
line-height: 27px;
font-weight: 400;
text-align: left;
letter-spacing: 2px;
}
.med-divider {
display: block;
width: 100%;
height: 1px;
margin: 10px auto;
background-color: #dedede;
list-style-type: lower-alpha;
}
.tag {
display: block;
overflow: visible;
width: auto;
height: auto;
margin-right: 0px;
margin-bottom: 6px;
padding: 10px 6px;
border-bottom: 1px solid rgba(227, 231, 232, 0.7);
font-family: Roboto, sans-serif;
color: #000;
font-size: 14px;
font-weight: 400;
text-decoration: none;
cursor: pointer;
}
.tabs-block {
display: block;
width: 100%;
margin-right: auto;
margin-left: auto;
padding: 6px 0%;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.tabs-block.categoies {
width: 100%;
margin-left: 0px;
}
.post-section {
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding: 2% 7%;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.section {
height: 80vh;
}
.content-wrap {
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 40%;
margin-left: 3%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
border: 0px none #000;
}
.html-embed {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 18px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
cursor: pointer;
}
.sidebar {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 35%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.recent-post-wrap {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-top: 6px;
margin-bottom: 6px;
padding-top: 10px;
padding-bottom: 10px;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
border-bottom: 1px solid rgba(227, 231, 232, 0.7);
}
.recent-post-date {
margin-bottom: 15px;
font-family: Roboto, sans-serif;
color: #000;
font-size: 13px;
text-transform: uppercase;
}
.recent-post-title {
font-family: Roboto, sans-serif;
color: #0e1b47;
font-weight: 400;
cursor: pointer;
}
.recent-post-title:hover {
font-weight: 600;
}
.recent-post-content-block {
width: 70%;
padding-right: 8%;
}
.recent-post-thumbnail {
width: 70px;
height: 70px;
max-width: 70px;
border-radius: 5px;
cursor: pointer;
}
.blog-page-heading {
position: relative;
width: 86%;
margin-right: auto;
margin-left: auto;
padding-bottom: 0px;
font-family: Roboto, sans-serif;
color: #000;
font-size: 24px;
font-weight: 400;
text-transform: uppercase;
}
.blog-page-heading::after {
position: absolute;
content: "";
left: 1px;
bottom: 2px;
background-color: rgb(197,215,201);
width: 120px;
height: 13px;
z-index: -1;
}
@media screen and (max-width: 991px) {
.blog-block {
width: 80%;
}
.category-tag {
font-size: 13px;
}
.sidebar-content-container {
width: 20%;
padding-right: 10px;
}
.sidebar-content-container.recent-posts {
width: 100%;
margin-left: 5%;
}
.sidebar-content-container.categories {
width: 100%;
margin-left: 5%;
}
.body {
display: block;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.section-heading {
display: block;
text-align: center;
}
.blog-page-heading {
font-size: 25px;
margin-bottom: 20px;
}
.section-title {
font-size: 25px;
}
}
@media screen and (max-width: 767px) {
.blog-block {
display: block;
width: 100%;
}
.recent-post-date, .recent-post-title{
font-size: 16px;
}
.category-tag {
font-size: 16px;
}
.blog-post-wrapper {
width: 100%;
margin-right: 0%;
margin-bottom: 4%;
margin-left: 0%;
}
.sidebar-content-container {
position: static;
width: 100%;
margin-bottom: 10vw;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.sidebar-content-container.recent-posts {
width: 90%;
margin-left: 0%;
}
.sidebar-content-container.categories {
width: 90%;
margin-bottom: 5vw;
margin-left: 0%;
}
.body {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.tabs-block {
position: relative;
}
.post-section {
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding-left: 7%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
direction: ltr;
}
.sidebar {
width: 100%;
}
}
@media screen and (max-width: 479px) {
.blog-block {
padding-right: 0%;
padding-left: 0%;
}
.blog-post-wrapper {
width: 100%;
margin-right: 0%;
margin-bottom: 15%;
margin-left: 0%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.image-wrapper {
width: 100%;
height: 200px;
max-width: 100%;
border-radius: 0px;
}
.thumbnail-image {
border-radius: 0px;
}
.thumbnail-text {
padding-top: 6px;
padding-bottom: 0px;
padding-left: 2px;
}
.post-title {
margin-bottom: 0px;
font-size:19px;}
.preview-text {
margin-top: 0px;
font-size: 16px;}
.post-details {
padding-top: 0px;
padding-bottom: 0px;
padding-left: 0px;
}
.post-author {
padding-left: 2px; font-size: 16px;
}
.thumbnail-post-date {
margin-bottom: 0px;
font-size:15px;}
.category-tag {
margin-bottom: 5px;
}
.sidebar-content-container.recent-posts {
width: 100%;
margin-left: 0%;
}
.sidebar-content-container.categories {
width: 100%;
margin-bottom: 25px;
padding-right: 7%;
}
.section-heading {
display: block;
}
.med-divider {
width: 100%;
}
.tag {
font-size: 16px;
}
.tabs-block {
padding-left: 0%;
}
.tabs-block.recent-posts {
padding-left: 0%;
}
.content-wrap {
width: 100%;
margin-left: 0%;
}
.sidebar {
width: 100%;
}
} | src/components/BlogCategorySection/css/BlogCategorySection.css | .blog-block {
display: block;
overflow: hidden;
width: 65%;
margin: 0px 0px;
padding-left: 0%;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
color: #fff;
font-size: 10px;
line-height: 10px;
}
.blog-post-wrapper {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: auto;
margin-right: 0%;
margin-bottom: 5%;
margin-left: 0%;
border: 0px none transparent;
border-radius: 3px;
background-color: #fff;
-webkit-transition: box-shadow 200ms ease, -webkit-transform 200ms ease;
transition: box-shadow 200ms ease, -webkit-transform 200ms ease;
transition: transform 200ms ease, box-shadow 200ms ease;
transition: transform 200ms ease, box-shadow 200ms ease, -webkit-transform 200ms ease;
text-decoration: none;
}
.image-wrapper {
position: relative;
overflow: hidden;
width: 55%;
height: 260px;
max-width: 60%;
border-radius: 3px;
}
.thumbnail-image {
width: 100%;
height: 100%;
border-radius: 5px;
}
.thumbnail-text {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
height: auto;
padding: 0px 13px 13px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
border: 1px none #000;
}
.post-title {
margin-bottom: 2px;
font-family: Roboto, sans-serif;
color: #0e1b47;
font-size: 16px;
line-height: 21px;
font-weight: 400;
cursor: pointer;
}
.post-title:hover {
font-weight: 600;
}
.preview-text {
overflow: hidden;
height: 110px;
margin-top: 10px;
font-family: Roboto, sans-serif;
color: #090606;
font-size: 14px;
line-height: 19px;
}
.post-details {
position: relative;
left: 0%;
top: auto;
right: 0%;
bottom: 0%;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-top: 0px;
padding: 6px 13px;
border: 1px none #000;
font-family: Roboto, sans-serif;
color: #090606;
font-size: 12px;
text-decoration: none;
text-transform: uppercase;
}
.post-author {
width: auto;
margin-right: 5px;
color: #090606;
font-size: 13px;
line-height: 35px;
font-weight: 400;
cursor: pointer;
}
.post-author:hover {
font-weight: 600;
}
.thumbnail-post-date {
margin-bottom: 5px;
margin-left: 0px;
font-family: Roboto, sans-serif;
color: #090606;
font-size: 12px;
line-height: 35px;
letter-spacing: 0.5px;
text-transform: uppercase;
}
.category-tag {
position: relative;
left: auto;
top: auto;
right: auto;
bottom: auto;
z-index: 0;
margin-top: 5px;
margin-right: 6px;
margin-bottom: 10px;
padding: 0px 0px 3px;
border-radius: 0px;
background-color: transparent;
font-family: Roboto, sans-serif;
color: #000;
font-size: 14px;
line-height: 100%;
letter-spacing: 2px;
text-decoration: none;
text-transform: uppercase;
cursor: pointer;
}
.category-tag::after {
position: absolute;
content: "";
left: 1px;
bottom: 2px;
background-color: rgb(197,215,201);
width: 50px;
height: 8px;
z-index: -1;
}
.category-tag:hover {
color: #0e1b47;
font-weight: 600;
}
.sidebar-content-container {
position: static;
left: 0%;
top: 0%;
right: 0%;
bottom: 40%;
display: block;
width: 80%;
height: auto;
margin-bottom: 20px;
padding: 5% 10%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
border-style: solid;
border-width: 1px;
border-color: rgba(227, 231, 232, 0.7);
border-radius: 5px;
background-color: #fff;
}
.sidebar-content-container.recent-posts {
margin-bottom: 20px;
margin-left: 10%;
padding: 7%;
}
.sidebar-content-container.categories {
margin-left: 10%;
padding-top: 7%;
padding-bottom: 7%;
padding-left: 7%;
}
.body {
display: block;
}
.section-heading {
display: block;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
text-align: center;
}
.section-title {
margin-top: 0px;
margin-bottom: 0px;
font-family: Roboto, sans-serif;
color: #000;
font-size: 20px;
line-height: 27px;
font-weight: 400;
text-align: left;
letter-spacing: 2px;
}
.med-divider {
display: block;
width: 100%;
height: 1px;
margin: 10px auto;
background-color: #dedede;
list-style-type: lower-alpha;
}
.tag {
display: block;
overflow: visible;
width: auto;
height: auto;
margin-right: 0px;
margin-bottom: 6px;
padding: 10px 6px;
border-bottom: 1px solid rgba(227, 231, 232, 0.7);
font-family: Roboto, sans-serif;
color: #000;
font-size: 14px;
font-weight: 400;
text-decoration: none;
cursor: pointer;
}
.tabs-block {
display: block;
width: 100%;
margin-right: auto;
margin-left: auto;
padding: 6px 0%;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.tabs-block.categoies {
width: 100%;
margin-left: 0px;
}
.post-section {
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding: 2% 7%;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.section {
height: 80vh;
}
.content-wrap {
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 40%;
margin-left: 3%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
border: 0px none #000;
}
.html-embed {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 18px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
cursor: pointer;
}
.sidebar {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 35%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.recent-post-wrap {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-top: 6px;
margin-bottom: 6px;
padding-top: 10px;
padding-bottom: 10px;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
border-bottom: 1px solid rgba(227, 231, 232, 0.7);
}
.recent-post-date {
margin-bottom: 15px;
font-family: Roboto, sans-serif;
color: #000;
font-size: 13px;
text-transform: uppercase;
}
.recent-post-title {
font-family: Roboto, sans-serif;
color: #0e1b47;
font-weight: 400;
cursor: pointer;
}
.recent-post-title:hover {
font-weight: 600;
}
.recent-post-content-block {
width: 70%;
padding-right: 8%;
}
.recent-post-thumbnail {
width: 70px;
height: 70px;
max-width: 70px;
border-radius: 5px;
cursor: pointer;
}
.blog-page-heading {
position: relative;
width: 86%;
margin-right: auto;
margin-left: auto;
padding-bottom: 0px;
font-family: Roboto, sans-serif;
color: #000;
font-size: 24px;
font-weight: 400;
text-transform: uppercase;
}
.blog-page-heading::after {
position: absolute;
content: "";
left: 1px;
bottom: 2px;
background-color: rgb(197,215,201);
width: 120px;
height: 13px;
z-index: -1;
}
@media screen and (max-width: 991px) {
.blog-block {
width: 80%;
}
.category-tag {
font-size: 13px;
}
.sidebar-content-container {
width: 20%;
padding-right: 10px;
}
.sidebar-content-container.recent-posts {
width: 100%;
margin-left: 5%;
}
.sidebar-content-container.categories {
width: 100%;
margin-left: 5%;
}
.body {
display: block;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.section-heading {
display: block;
text-align: center;
}
.blog-page-heading {
font-size: 25px;
margin-bottom: 20px;
}
.section-title {
font-size: 25px;
}
}
@media screen and (max-width: 767px) {
.blog-block {
display: block;
width: 100%;
}
.recent-post-date, .recent-post-title{
font-size: 16px;
}
.category-tag {
font-size: 16px;
}
.blog-post-wrapper {
width: 100%;
margin-right: 0%;
margin-bottom: 4%;
margin-left: 0%;
}
.sidebar-content-container {
position: static;
width: 100%;
margin-bottom: 10vw;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.sidebar-content-container.recent-posts {
width: 90%;
margin-left: 0%;
}
.sidebar-content-container.categories {
width: 90%;
margin-bottom: 5vw;
margin-left: 0%;
}
.body {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.tabs-block {
position: relative;
}
.post-section {
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding-left: 7%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
direction: ltr;
}
.sidebar {
width: 100%;
}
}
@media screen and (max-width: 479px) {
.blog-block {
padding-right: 0%;
padding-left: 0%;
}
.blog-post-wrapper {
width: 100%;
margin-right: 0%;
margin-bottom: 15%;
margin-left: 0%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.image-wrapper {
width: 100%;
height: 200px;
max-width: 100%;
border-radius: 0px;
}
.thumbnail-image {
border-radius: 0px;
}
.thumbnail-text {
padding-top: 6px;
padding-bottom: 0px;
padding-left: 2px;
}
.post-title {
margin-bottom: 0px;
font-size:19px;}
.preview-text {
margin-top: 0px;
font-size: 16px;}
.post-details {
padding-top: 0px;
padding-bottom: 0px;
padding-left: 0px;
}
.post-author {
padding-left: 2px; font-size: 16px;
}
.thumbnail-post-date {
margin-bottom: 0px;
font-size:15px;}
.category-tag {
margin-bottom: 5px;
}
.sidebar-content-container.recent-posts {
width: 100%;
margin-left: 0%;
}
.sidebar-content-container.categories {
width: 100%;
margin-bottom: 25px;
padding-right: 7%;
}
.section-heading {
display: block;
}
.med-divider {
width: 100%;
}
.tag {
font-size: 16px;
}
.tabs-block {
padding-left: 0%;
}
.tabs-block.recent-posts {
padding-left: 0%;
}
.content-wrap {
width: 100%;
margin-left: 0%;
}
.sidebar {
width: 100%;
}
} | 0.365343 | 0.095434 |
body {
background-color: #fff;
}
.btn {
border-radius: 0px;
}
.category-list-title {
color: #337ab7;
}
.category-list-title:visited {
color: #551a8b;
}
.list-title {
color: #337ab7;
}
.list-title:visited {
color: #551a8b;
}
.item-title {
color: #337ab7;
}
.item-title:visited {
color: #551a8b;
}
.icon-list {
color: #f87147;
}
.icon-menu {
color: #f87147;
}
.logo-theme-1 {
margin: 10px 0px;
}
.logo-theme-1 .logo {
margin-right: 5px;
}
.logo-theme-1 .site-name {
font-size: 24px;
text-decoration: none;
}
.logo-theme-1 .site-name:hover {
color: #e67e22;
}
.header-login-1 {
float: right;
margin-top: 30px;
}
.header-login-1 .login-item {
font-size: 16px;
font-weight: lighter;
}
.header-login-1 .login-item a {
margin-left: 10px;
}
.navbar-theme-1 {
background-color: #028fd0;
border: 0px;
border-radius: 0px;
}
.navbar-theme-1 .navbar-brand {
color: #fff;
}
.navbar-theme-1 .navbar-brand:hover,
.navbar-theme-1 .navbar-brand:focus {
color: #f0f0f0;
background-color: transparent;
}
.navbar-theme-1 .navbar-text {
color: #fff;
}
.navbar-theme-1 .navbar-nav > li > a {
color: #fff;
}
.navbar-theme-1 .navbar-nav > li > a:hover,
.navbar-theme-1 .navbar-nav > li > a:focus {
color: #fff;
background-color: #0288c6;
}
.navbar-theme-1 .navbar-nav > .active > a,
.navbar-theme-1 .navbar-nav > .active > a:hover,
.navbar-theme-1 .navbar-nav > .active > a:focus {
color: #fff;
background-color: #e67e22;
}
.navbar-theme-1 .navbar-nav > .disabled > a,
.navbar-theme-1 .navbar-nav > .disabled > a:hover,
.navbar-theme-1 .navbar-nav > .disabled > a:focus {
color: #f0f0f0;
background-color: transparent;
}
.navbar-theme-1 .navbar-toggle {
background-color: #fff;
border-color: #fff;
}
.navbar-theme-1 .navbar-toggle:hover,
.navbar-theme-1 .navbar-toggle:focus {
background-color: #f0f0f0;
}
.navbar-theme-1 .navbar-toggle .icon-bar {
background-color: #028fd0;
}
.navbar-theme-1 .navbar-collapse {
padding-left: 0px;
border-color: transparent;
}
.navbar-theme-1 .navbar-nav > .open > a,
.navbar-theme-1 .navbar-nav > .open > a:hover,
.navbar-theme-1 .navbar-nav > .open > a:focus {
color: #fff;
background-color: #e67e22;
}
@media (max-width: 767px) {
.navbar-theme-1 .navbar-collapse {
padding-left: 15px;
}
.navbar-theme-1 .navbar-nav .open .dropdown-menu > li > a {
color: #fff;
}
.navbar-theme-1 .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-theme-1 .navbar-nav .open .dropdown-menu > li > a:focus {
color: #fff;
background-color: #0288c6;
}
.navbar-theme-1 .navbar-nav .open .dropdown-menu > .active > a,
.navbar-theme-1 .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-theme-1 .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #fff;
background-color: #e67e22;
}
.navbar-theme-1 .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-theme-1 .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-theme-1 .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #f0f0f0;
background-color: transparent;
}
}
.navbar-theme-1 .navbar-link {
color: #fff;
}
.navbar-theme-1 .navbar-link:hover {
color: #fff;
}
.navbar-theme-1 .btn-link {
color: #fff;
}
.navbar-theme-1 .btn-link:hover,
.navbar-theme-1 .btn-link:focus {
color: #fff;
}
.navbar-theme-1 .btn-link[disabled]:hover,
fieldset[disabled] .navbar-theme-1 .btn-link:hover,
.navbar-theme-1 .btn-link[disabled]:focus,
fieldset[disabled] .navbar-theme-1 .btn-link:focus {
color: #f0f0f0;
}
.carousel-theme-1 .carousel {
margin-bottom: 20px;
}
.carousel-theme-1 .carousel .carousel-img {
width: 100%;
height: 420px;
}
@media (max-width: 767px) {
.carousel-theme-1 .carousel .carousel-img {
height: auto;
}
}
.well-1 {
border-radius: 0px;
}
.panel-heading {
padding: 10px 0px 0px 0px;
}
.panel-body {
padding: 10px 0 0 0;
}
.panel-theme-1 {
border-color: #fff;
border-radius: 0px;
box-shadow: none;
}
.panel-theme-1 > .panel-heading {
color: #333;
background-color: transparent;
border-bottom: 1px solid #ccc;
}
.panel-theme-1 > .panel-heading .category-title {
display: inline-block;
margin: 0 0 -2px 0;
padding-bottom: 5px;
border-bottom: 2px solid #028fd0;
color: #028fd0;
font-size: 18px;
}
.panel-theme-1 > .panel-heading .category-more {
float: right;
margin-top: 2px;
}
.panel-theme-1 > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #ddd;
}
.panel-theme-1 > .panel-heading .badge {
color: #f5f5f5;
background-color: #333;
}
.panel-theme-1 > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #ddd;
}
.panel-theme-1 .list-group .active {
background-color: #028fd0;
}
.panel-theme-2 {
padding: 20px;
border-color: transparent;
border-radius: 0px;
box-shadow: none;
}
.panel-theme-2 > .panel-heading {
color: #333;
background-color: transparent;
border-bottom: 1px solid #ccc;
}
.panel-theme-2 > .panel-heading .category-title {
display: inline-block;
margin: 0 0 -2px 0;
padding-bottom: 5px;
border-bottom: 2px solid #028fd0;
color: #028fd0;
font-size: 18px;
}
.list-theme-1 .list-ul {
padding-left: 0px;
list-style: none;
}
.list-theme-1 .list-title {
line-height: 2.5;
}
.list-theme-1 .badge {
margin-right: 5px;
color: #f5f5f5;
background-color: #028fd0;
border-radius: 0px;
}
.list-theme-1 .badge-hot {
background-color: #e67e22;
}
.list-theme-1 .link-date {
color: #888;
line-height: 2.5;
}
.list-theme-1 .list-label {
float: right;
margin-top : 5px;
padding: 5px;
}
.list-theme-3 .list-head {
border-bottom: 1px dashed #cbd2d8;
padding-bottom: 10px;
margin-bottom: 10px;
}
.list-theme-3 .list-title {
display: inline-block;
padding-bottom: 5px;
}
.list-theme-3 .list-title-1 {
display: block;
padding-bottom: 5px;
}
.list-theme-3 .list-mess .list-left {
float: left;
margin-right: 10px;
}
.list-theme-3 .list-mess {
margin-top: 5px;
}
.list-theme-3 .list-image {
height: 80px;
width: 80px;
}
.list-theme-3 .label {
display: inline-block;
padding: 5px;
margin-bottom: 5px;
}
.list-theme-3 .list-description {
color: #888;
font-weight: 300;
}
.list-theme-4 .list-image-1 {
padding: 5px;
max-width: 200px;
border: 0px;
border-radius: 0px;
}
.list-theme-4 .list-image-1 .list-photo {
margin-bottom: 5px;
height: 120px;
}
.list-theme-4 .list-image-1:hover {
background-color: #f0f0f0;
}
.list-theme-4 .list-title {
display: block;
}
.list-theme-4 .list-image-1 .list-photo {
}
.list-theme-4 .list-description {
overflow: hidden;
white-space: nowrap;
color: #888;
text-overflow: ellipsis;
font-weight: 300;
}
.list-theme-5 .list-item {
margin: 5px 10px 5px 0px;
}
.list-theme-6 .list-title {
display: inline-block;
margin-bottom: 5px;
}
.list-theme-6 .list-description {
color: #888;
}
.list-theme-7 .list-ul,
.list-theme-7 .list-ul-child {
padding-left: 0px;
list-style: none;
line-height: 2;
}
.list-theme-7 .list-ul .list-item {
color: #333;
}
.list-theme-7 .list-ul-child li {
padding-left: 20px;
}
.list-theme-7 .list-ul-child .list-item {
color: #333;
}
.list-theme-7 .active > .list-item {
color: #f87147;
}
.list-theme-8 {
padding: 20px;
background-color: #fff;
border: 1px solid #dedede;
}
.list-theme-8 .list-head {
padding: 10px 5px;
}
.list-theme-8 .list-head:hover,
.list-theme-8 .list-head:active {
background-color: #f0f0f0;
}
.list-theme-8 .list-head .list-photo {
margin-left: auto;
margin-right: auto;
height: 120px;
}
.list-theme-8 .list-head .list-title {
display: inline-block;
margin-bottom: 10px;
}
.list-theme-8 .list-head .list-type {
margin-bottom: 5px;
color: #666;
}
.list-theme-8 .list-head .list-description {
margin-bottom: 5px;
color: #888;
}
.list-theme-9 {
}
.list-theme-9 .list-cover {
display: block;
}
.list-theme-9 .list-cover-1 img {
margin-top: 10px;
height: 140px;
}
.list-theme-9 .list-cover-2 img {
height: 150px;
}
.list-theme-9 .list-cover-1 img,
.list-theme-9 .list-cover-2 img {
margin-left: auto;
margin-right: auto;
}
.list-theme-9 .list-cover-text {
display: block;
margin: 5px 0px;
text-align: center;
color: #333;
}
.list-theme-9 .list-ul {
list-style: none;
padding: 0px;
}
.list-theme-9 .list-ul li {
line-height: 2;
}
.list-theme-9 .list-ul .list-title {
}
.list-theme-9 .cate-line-1 {
margin-top: 10px;
}
.list-theme-9 .cate-line-1 .line-title {
float: left;
margin-right: 5px;
color: #333;
font-weight: bold;
}
.list-theme-9 .cate-line-1 .line {
margin-top: 12px;
border-top-color: #dedede;
}
.list-theme-12 {
padding: 5px;
}
.list-theme-12:hover,
.list-theme-12:active {
background-color: #f0f0f0;
}
.list-theme-12 .item-a {
}
.list-theme-12 .item-image {
margin-left: auto;
margin-right: auto;
margin-bottom: 5px;
height: 80px;
}
.list-theme-12 .item-title {
display: block;
text-align: center;
}
.list-theme-13 {
}
.list-theme-13 .list-top {
margin-bottom: 5px;
}
.list-theme-13 .list-top .list-image {
margin-bottom: 10px;
width: 100%;
height: 150px;
}
.list-theme-13 .list-top .list-title {
display: inline-block;
margin-bottom: 5px;
font-size: 18px;
}
.list-theme-13 .list-top .list-description {
color: #888;
}
.list-theme-13 .list-item {
margin-bottom: 5px;
}
.list-theme-13 .list-item .list-title {
line-height: 2;
}
.list-theme-13 .list-item .link-date {
color: #888;
line-height: 2;
}
.breadcrumb-theme-1 {
background-color: #fff;
border-radius: 0px;
}
.breadcrumb-theme-1 a {
color: #028fd0;
}
.search .btn {
border-color: #028fd0;
background-color: #028fd0;
}
.search-1 {
margin-bottom: 20px;
}
.search-2 {
margin-bottom: 20px;
}
.search-theme-1 {
padding: 20px;
border: 1px solid #dedede;
background-color: #fff;
}
.search-theme-1 .search-result {
font-size: 20px;
}
.search-theme-1 .search-ul {
padding-left: 0px;
list-style: none;
}
.search-theme-1 .search-li {
margin-bottom: 10px;
padding-bottom: 5px;
border-bottom: 1px dashed #dedede;
}
.search-theme-1 .search-li-title {
display: inline-block;
margin-bottom: 5px;
font-size: 18px;
}
.search-theme-1 .search-li-description {
color: #888;
}
.category-list-1 {
padding: 20px;
border: 1px solid #dedede;
background-color: #fff;
min-height: 500px;
}
.category-list-1 .category-list-head {
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: 1px dashed #cbd2d8;
}
.category-list-1 .category-list-head .icon {
margin-right: 5px;
font-size: 18px;
}
.category-list-1 .category-list-top {
margin-bottom: 5px;
}
.category-list-1 .category-list-top .icon-list {
font-size: 16px;
}
.category-list-1 .category-list-title {
font-size: 16px;
}
.category-list-1 .category-list-img {
float: left;
margin-right: 10px;
width: 90px;
height: 90px;
}
.category-list-1 .category-detail {
margin-top: 5px;
}
.category-list-1 .category-mess {
color: #888;
font-size: 12px;
}
.category-list-1 .category-mess span {
margin-right: 10px;
}
.category-list-1 .category-description {
color: #888;
}
.category-list-2 {
padding: 20px;
border: 1px solid #dedede;
background-color: #fff;
min-height: 500px;
}
.category-list-2 .category-list-top {
margin-bottom: 5px;
}
.category-list-2 .category-list-title {
width: 100%;
font-size: 16px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.category-list-2 .category-list-head {
margin-bottom: 15px;
}
.category-list-2 .category-list-head .category-list-img img {
float: left;
margin-right: 10px;
width: 90px;
height: 90px;
}
.category-list-2 .category-list-head .category-label {
display: inline-block;
margin-bottom: 5px;
}
.category-list-2 .category-list-head .category-description {
color: #888;
}
.category-list-3 {
min-height: 500px;
}
.category-list-3 .category-list-item {
padding: 20px;
margin-bottom: 20px;
border: 1px solid #dedede;
}
.category-list-3 .category-list-head {
padding-bottom: 10px;
}
.category-list-3 .category-list-head .icon {
margin-right: 5px;
font-size: 18px;
}
.category-list-3 .category-list-top {
margin-bottom: 10px;
}
.category-list-3 .category-list-top .icon-list {
font-size: 16px;
}
.category-list-3 .category-list-title {
font-size: 16px;
}
.category-list-3 .category-list-img {
float: left;
margin-right: 10px;
width: 90px;
height: 90px;
}
.category-list-3 .category-detail {
margin-top: 5px;
}
.category-list-3 .category-mess {
color: #888;
font-size: 12px;
}
.category-list-3 .category-mess span {
margin-right: 10px;
}
.category-list-3 .category-description {
color: #888;
}
.category-list-3 .category-label .label {
margin-right: 5px;
font-size: 12px;
}
.tags-col-1 {
margin-bottom: 20px;
}
.tags-col-1 .btn:hover {
border-color: #e67e22;
background-color: #e67e22;
color: #fff;
}
.tags-col-1 .active {
border-color: #028fd0;
background-color: #028fd0;
color: #fff;
}
.pagination-place {
display: none;
}
.pagination-1 .pagination > li > a,
.pagination-1 .pagination > li > span {
border-radius: 0px;
}
.pagination-1 .pagination .active a {
border-color: #028fd0;
background-color: #028fd0;
}
.article-content-1 {
margin-bottom: 20px;
background-color: #fff;
border: 1px solid #dedede;
min-height: 500px;
}
.article-content-1 .article-content-body {
padding: 20px;
}
.article-content-1 .article-content-body .article-content-title {
margin-bottom: 20px;
color: #333;
font-size: 24px;
text-align: center;
}
.article-content-1 .article-content-body .article-content-mess {
margin-bottom: 20px;
color: #888;
text-align: center;
}
.article-content-1 .article-content-body .article-content-mess span {
margin: 0px 10px;
}
.article-content-1 .article-content-body .article-content-description {
padding: 15px;
margin-bottom: 20px;
border: 1px solid #dedede;
box-shadow: 0px 0px 5px #dedede inset;
color: #888;
text-indent: 2em;
}
.article-content-1 .article-content-body .article-content-detail {
margin-bottom: 20px;
}
.article-content-1 .article-content-body .article-content-detail,
.article-content-1 .article-content-body .article-content-detail p {
text-indent: 2em;
line-height: 2;
}
.article-comment-list-1 .media {
padding-bottom: 10px;
border-bottom: 1px dotted #dedede;
}
.article-comment-list-1 .comment-mess {
color: #888;
}
.article-comment-list-1 .comment-photo {
display: block;
margin-bottom: 5px;
max-width: 60px;
max-height: 60px;
}
.article-comment-list-1 .comment-name {
display: inline-block;
width: 100%;
text-align: center;
}
.article-comment-list-1 .comment-index {
font-size: 12px;
color: #888;
}
.article-comment-list-1 .comment-date {
float: right;
font-size: 12px;
color: #888;
}
.article-comment-list-1 .comment-content {
padding: 15px 0px;
}
.article-comment-list-1 .commentForm {
margin-top: 10px;
}
.article-comment-list-1 .reply {
margin: 5px 0px;
padding: 10px;
border: 1px solid #dedede;
}
.article-comment-1 .form-comment input[type=text] {
display: inline-block;
margin-right: 10px;
width: auto;
border-radius: 0px;
}
.article-comment-1 .comment-text {
margin-bottom: 10px;
}
.article-comment-1 .textarea-comment {
display: block;
margin-bottom: 10px;
border-radius: 0px;
}
.article-comment-1 .comment-code {
width: 80px !important;
}
.article-comment-1 .btn-submit {
float: right;
}
.footer-theme-1 .footer {
padding: 20px 0 20px 0;
color: #fff;
background-color: #028fd0;
border-top: 3px solid #0288c6;
}
.footer-theme-1 .footer a {
color: #f2f2f2;
}
.footer-theme-1 .footer .headline {
display: block;
margin: 20px 0 15px 0;
border-bottom: 1px dotted #f0f0f0;
}
.footer-theme-1 .footer .headline .heading-title {
display: inline-block;
margin: 0 0 -2px 0;
padding-bottom: 5px;
border-bottom: 2px solid #fff;
font-size: 18px;
}
.footer-theme-1 .footer .footer-link a {
display: inline-block;
margin: 5px 15px 5px 0px;
}
.footer-theme-1 .footer .copyright {
margin-top: 20px;
text-align: center;
}
.footer-theme-1 .footer .copyright a {
color: #f0f0f0;
} | src/main/webapp/static/modules/cms/front/themes/basic/theme-basic.css | body {
background-color: #fff;
}
.btn {
border-radius: 0px;
}
.category-list-title {
color: #337ab7;
}
.category-list-title:visited {
color: #551a8b;
}
.list-title {
color: #337ab7;
}
.list-title:visited {
color: #551a8b;
}
.item-title {
color: #337ab7;
}
.item-title:visited {
color: #551a8b;
}
.icon-list {
color: #f87147;
}
.icon-menu {
color: #f87147;
}
.logo-theme-1 {
margin: 10px 0px;
}
.logo-theme-1 .logo {
margin-right: 5px;
}
.logo-theme-1 .site-name {
font-size: 24px;
text-decoration: none;
}
.logo-theme-1 .site-name:hover {
color: #e67e22;
}
.header-login-1 {
float: right;
margin-top: 30px;
}
.header-login-1 .login-item {
font-size: 16px;
font-weight: lighter;
}
.header-login-1 .login-item a {
margin-left: 10px;
}
.navbar-theme-1 {
background-color: #028fd0;
border: 0px;
border-radius: 0px;
}
.navbar-theme-1 .navbar-brand {
color: #fff;
}
.navbar-theme-1 .navbar-brand:hover,
.navbar-theme-1 .navbar-brand:focus {
color: #f0f0f0;
background-color: transparent;
}
.navbar-theme-1 .navbar-text {
color: #fff;
}
.navbar-theme-1 .navbar-nav > li > a {
color: #fff;
}
.navbar-theme-1 .navbar-nav > li > a:hover,
.navbar-theme-1 .navbar-nav > li > a:focus {
color: #fff;
background-color: #0288c6;
}
.navbar-theme-1 .navbar-nav > .active > a,
.navbar-theme-1 .navbar-nav > .active > a:hover,
.navbar-theme-1 .navbar-nav > .active > a:focus {
color: #fff;
background-color: #e67e22;
}
.navbar-theme-1 .navbar-nav > .disabled > a,
.navbar-theme-1 .navbar-nav > .disabled > a:hover,
.navbar-theme-1 .navbar-nav > .disabled > a:focus {
color: #f0f0f0;
background-color: transparent;
}
.navbar-theme-1 .navbar-toggle {
background-color: #fff;
border-color: #fff;
}
.navbar-theme-1 .navbar-toggle:hover,
.navbar-theme-1 .navbar-toggle:focus {
background-color: #f0f0f0;
}
.navbar-theme-1 .navbar-toggle .icon-bar {
background-color: #028fd0;
}
.navbar-theme-1 .navbar-collapse {
padding-left: 0px;
border-color: transparent;
}
.navbar-theme-1 .navbar-nav > .open > a,
.navbar-theme-1 .navbar-nav > .open > a:hover,
.navbar-theme-1 .navbar-nav > .open > a:focus {
color: #fff;
background-color: #e67e22;
}
@media (max-width: 767px) {
.navbar-theme-1 .navbar-collapse {
padding-left: 15px;
}
.navbar-theme-1 .navbar-nav .open .dropdown-menu > li > a {
color: #fff;
}
.navbar-theme-1 .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-theme-1 .navbar-nav .open .dropdown-menu > li > a:focus {
color: #fff;
background-color: #0288c6;
}
.navbar-theme-1 .navbar-nav .open .dropdown-menu > .active > a,
.navbar-theme-1 .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-theme-1 .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #fff;
background-color: #e67e22;
}
.navbar-theme-1 .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-theme-1 .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-theme-1 .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #f0f0f0;
background-color: transparent;
}
}
.navbar-theme-1 .navbar-link {
color: #fff;
}
.navbar-theme-1 .navbar-link:hover {
color: #fff;
}
.navbar-theme-1 .btn-link {
color: #fff;
}
.navbar-theme-1 .btn-link:hover,
.navbar-theme-1 .btn-link:focus {
color: #fff;
}
.navbar-theme-1 .btn-link[disabled]:hover,
fieldset[disabled] .navbar-theme-1 .btn-link:hover,
.navbar-theme-1 .btn-link[disabled]:focus,
fieldset[disabled] .navbar-theme-1 .btn-link:focus {
color: #f0f0f0;
}
.carousel-theme-1 .carousel {
margin-bottom: 20px;
}
.carousel-theme-1 .carousel .carousel-img {
width: 100%;
height: 420px;
}
@media (max-width: 767px) {
.carousel-theme-1 .carousel .carousel-img {
height: auto;
}
}
.well-1 {
border-radius: 0px;
}
.panel-heading {
padding: 10px 0px 0px 0px;
}
.panel-body {
padding: 10px 0 0 0;
}
.panel-theme-1 {
border-color: #fff;
border-radius: 0px;
box-shadow: none;
}
.panel-theme-1 > .panel-heading {
color: #333;
background-color: transparent;
border-bottom: 1px solid #ccc;
}
.panel-theme-1 > .panel-heading .category-title {
display: inline-block;
margin: 0 0 -2px 0;
padding-bottom: 5px;
border-bottom: 2px solid #028fd0;
color: #028fd0;
font-size: 18px;
}
.panel-theme-1 > .panel-heading .category-more {
float: right;
margin-top: 2px;
}
.panel-theme-1 > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #ddd;
}
.panel-theme-1 > .panel-heading .badge {
color: #f5f5f5;
background-color: #333;
}
.panel-theme-1 > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #ddd;
}
.panel-theme-1 .list-group .active {
background-color: #028fd0;
}
.panel-theme-2 {
padding: 20px;
border-color: transparent;
border-radius: 0px;
box-shadow: none;
}
.panel-theme-2 > .panel-heading {
color: #333;
background-color: transparent;
border-bottom: 1px solid #ccc;
}
.panel-theme-2 > .panel-heading .category-title {
display: inline-block;
margin: 0 0 -2px 0;
padding-bottom: 5px;
border-bottom: 2px solid #028fd0;
color: #028fd0;
font-size: 18px;
}
.list-theme-1 .list-ul {
padding-left: 0px;
list-style: none;
}
.list-theme-1 .list-title {
line-height: 2.5;
}
.list-theme-1 .badge {
margin-right: 5px;
color: #f5f5f5;
background-color: #028fd0;
border-radius: 0px;
}
.list-theme-1 .badge-hot {
background-color: #e67e22;
}
.list-theme-1 .link-date {
color: #888;
line-height: 2.5;
}
.list-theme-1 .list-label {
float: right;
margin-top : 5px;
padding: 5px;
}
.list-theme-3 .list-head {
border-bottom: 1px dashed #cbd2d8;
padding-bottom: 10px;
margin-bottom: 10px;
}
.list-theme-3 .list-title {
display: inline-block;
padding-bottom: 5px;
}
.list-theme-3 .list-title-1 {
display: block;
padding-bottom: 5px;
}
.list-theme-3 .list-mess .list-left {
float: left;
margin-right: 10px;
}
.list-theme-3 .list-mess {
margin-top: 5px;
}
.list-theme-3 .list-image {
height: 80px;
width: 80px;
}
.list-theme-3 .label {
display: inline-block;
padding: 5px;
margin-bottom: 5px;
}
.list-theme-3 .list-description {
color: #888;
font-weight: 300;
}
.list-theme-4 .list-image-1 {
padding: 5px;
max-width: 200px;
border: 0px;
border-radius: 0px;
}
.list-theme-4 .list-image-1 .list-photo {
margin-bottom: 5px;
height: 120px;
}
.list-theme-4 .list-image-1:hover {
background-color: #f0f0f0;
}
.list-theme-4 .list-title {
display: block;
}
.list-theme-4 .list-image-1 .list-photo {
}
.list-theme-4 .list-description {
overflow: hidden;
white-space: nowrap;
color: #888;
text-overflow: ellipsis;
font-weight: 300;
}
.list-theme-5 .list-item {
margin: 5px 10px 5px 0px;
}
.list-theme-6 .list-title {
display: inline-block;
margin-bottom: 5px;
}
.list-theme-6 .list-description {
color: #888;
}
.list-theme-7 .list-ul,
.list-theme-7 .list-ul-child {
padding-left: 0px;
list-style: none;
line-height: 2;
}
.list-theme-7 .list-ul .list-item {
color: #333;
}
.list-theme-7 .list-ul-child li {
padding-left: 20px;
}
.list-theme-7 .list-ul-child .list-item {
color: #333;
}
.list-theme-7 .active > .list-item {
color: #f87147;
}
.list-theme-8 {
padding: 20px;
background-color: #fff;
border: 1px solid #dedede;
}
.list-theme-8 .list-head {
padding: 10px 5px;
}
.list-theme-8 .list-head:hover,
.list-theme-8 .list-head:active {
background-color: #f0f0f0;
}
.list-theme-8 .list-head .list-photo {
margin-left: auto;
margin-right: auto;
height: 120px;
}
.list-theme-8 .list-head .list-title {
display: inline-block;
margin-bottom: 10px;
}
.list-theme-8 .list-head .list-type {
margin-bottom: 5px;
color: #666;
}
.list-theme-8 .list-head .list-description {
margin-bottom: 5px;
color: #888;
}
.list-theme-9 {
}
.list-theme-9 .list-cover {
display: block;
}
.list-theme-9 .list-cover-1 img {
margin-top: 10px;
height: 140px;
}
.list-theme-9 .list-cover-2 img {
height: 150px;
}
.list-theme-9 .list-cover-1 img,
.list-theme-9 .list-cover-2 img {
margin-left: auto;
margin-right: auto;
}
.list-theme-9 .list-cover-text {
display: block;
margin: 5px 0px;
text-align: center;
color: #333;
}
.list-theme-9 .list-ul {
list-style: none;
padding: 0px;
}
.list-theme-9 .list-ul li {
line-height: 2;
}
.list-theme-9 .list-ul .list-title {
}
.list-theme-9 .cate-line-1 {
margin-top: 10px;
}
.list-theme-9 .cate-line-1 .line-title {
float: left;
margin-right: 5px;
color: #333;
font-weight: bold;
}
.list-theme-9 .cate-line-1 .line {
margin-top: 12px;
border-top-color: #dedede;
}
.list-theme-12 {
padding: 5px;
}
.list-theme-12:hover,
.list-theme-12:active {
background-color: #f0f0f0;
}
.list-theme-12 .item-a {
}
.list-theme-12 .item-image {
margin-left: auto;
margin-right: auto;
margin-bottom: 5px;
height: 80px;
}
.list-theme-12 .item-title {
display: block;
text-align: center;
}
.list-theme-13 {
}
.list-theme-13 .list-top {
margin-bottom: 5px;
}
.list-theme-13 .list-top .list-image {
margin-bottom: 10px;
width: 100%;
height: 150px;
}
.list-theme-13 .list-top .list-title {
display: inline-block;
margin-bottom: 5px;
font-size: 18px;
}
.list-theme-13 .list-top .list-description {
color: #888;
}
.list-theme-13 .list-item {
margin-bottom: 5px;
}
.list-theme-13 .list-item .list-title {
line-height: 2;
}
.list-theme-13 .list-item .link-date {
color: #888;
line-height: 2;
}
.breadcrumb-theme-1 {
background-color: #fff;
border-radius: 0px;
}
.breadcrumb-theme-1 a {
color: #028fd0;
}
.search .btn {
border-color: #028fd0;
background-color: #028fd0;
}
.search-1 {
margin-bottom: 20px;
}
.search-2 {
margin-bottom: 20px;
}
.search-theme-1 {
padding: 20px;
border: 1px solid #dedede;
background-color: #fff;
}
.search-theme-1 .search-result {
font-size: 20px;
}
.search-theme-1 .search-ul {
padding-left: 0px;
list-style: none;
}
.search-theme-1 .search-li {
margin-bottom: 10px;
padding-bottom: 5px;
border-bottom: 1px dashed #dedede;
}
.search-theme-1 .search-li-title {
display: inline-block;
margin-bottom: 5px;
font-size: 18px;
}
.search-theme-1 .search-li-description {
color: #888;
}
.category-list-1 {
padding: 20px;
border: 1px solid #dedede;
background-color: #fff;
min-height: 500px;
}
.category-list-1 .category-list-head {
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: 1px dashed #cbd2d8;
}
.category-list-1 .category-list-head .icon {
margin-right: 5px;
font-size: 18px;
}
.category-list-1 .category-list-top {
margin-bottom: 5px;
}
.category-list-1 .category-list-top .icon-list {
font-size: 16px;
}
.category-list-1 .category-list-title {
font-size: 16px;
}
.category-list-1 .category-list-img {
float: left;
margin-right: 10px;
width: 90px;
height: 90px;
}
.category-list-1 .category-detail {
margin-top: 5px;
}
.category-list-1 .category-mess {
color: #888;
font-size: 12px;
}
.category-list-1 .category-mess span {
margin-right: 10px;
}
.category-list-1 .category-description {
color: #888;
}
.category-list-2 {
padding: 20px;
border: 1px solid #dedede;
background-color: #fff;
min-height: 500px;
}
.category-list-2 .category-list-top {
margin-bottom: 5px;
}
.category-list-2 .category-list-title {
width: 100%;
font-size: 16px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.category-list-2 .category-list-head {
margin-bottom: 15px;
}
.category-list-2 .category-list-head .category-list-img img {
float: left;
margin-right: 10px;
width: 90px;
height: 90px;
}
.category-list-2 .category-list-head .category-label {
display: inline-block;
margin-bottom: 5px;
}
.category-list-2 .category-list-head .category-description {
color: #888;
}
.category-list-3 {
min-height: 500px;
}
.category-list-3 .category-list-item {
padding: 20px;
margin-bottom: 20px;
border: 1px solid #dedede;
}
.category-list-3 .category-list-head {
padding-bottom: 10px;
}
.category-list-3 .category-list-head .icon {
margin-right: 5px;
font-size: 18px;
}
.category-list-3 .category-list-top {
margin-bottom: 10px;
}
.category-list-3 .category-list-top .icon-list {
font-size: 16px;
}
.category-list-3 .category-list-title {
font-size: 16px;
}
.category-list-3 .category-list-img {
float: left;
margin-right: 10px;
width: 90px;
height: 90px;
}
.category-list-3 .category-detail {
margin-top: 5px;
}
.category-list-3 .category-mess {
color: #888;
font-size: 12px;
}
.category-list-3 .category-mess span {
margin-right: 10px;
}
.category-list-3 .category-description {
color: #888;
}
.category-list-3 .category-label .label {
margin-right: 5px;
font-size: 12px;
}
.tags-col-1 {
margin-bottom: 20px;
}
.tags-col-1 .btn:hover {
border-color: #e67e22;
background-color: #e67e22;
color: #fff;
}
.tags-col-1 .active {
border-color: #028fd0;
background-color: #028fd0;
color: #fff;
}
.pagination-place {
display: none;
}
.pagination-1 .pagination > li > a,
.pagination-1 .pagination > li > span {
border-radius: 0px;
}
.pagination-1 .pagination .active a {
border-color: #028fd0;
background-color: #028fd0;
}
.article-content-1 {
margin-bottom: 20px;
background-color: #fff;
border: 1px solid #dedede;
min-height: 500px;
}
.article-content-1 .article-content-body {
padding: 20px;
}
.article-content-1 .article-content-body .article-content-title {
margin-bottom: 20px;
color: #333;
font-size: 24px;
text-align: center;
}
.article-content-1 .article-content-body .article-content-mess {
margin-bottom: 20px;
color: #888;
text-align: center;
}
.article-content-1 .article-content-body .article-content-mess span {
margin: 0px 10px;
}
.article-content-1 .article-content-body .article-content-description {
padding: 15px;
margin-bottom: 20px;
border: 1px solid #dedede;
box-shadow: 0px 0px 5px #dedede inset;
color: #888;
text-indent: 2em;
}
.article-content-1 .article-content-body .article-content-detail {
margin-bottom: 20px;
}
.article-content-1 .article-content-body .article-content-detail,
.article-content-1 .article-content-body .article-content-detail p {
text-indent: 2em;
line-height: 2;
}
.article-comment-list-1 .media {
padding-bottom: 10px;
border-bottom: 1px dotted #dedede;
}
.article-comment-list-1 .comment-mess {
color: #888;
}
.article-comment-list-1 .comment-photo {
display: block;
margin-bottom: 5px;
max-width: 60px;
max-height: 60px;
}
.article-comment-list-1 .comment-name {
display: inline-block;
width: 100%;
text-align: center;
}
.article-comment-list-1 .comment-index {
font-size: 12px;
color: #888;
}
.article-comment-list-1 .comment-date {
float: right;
font-size: 12px;
color: #888;
}
.article-comment-list-1 .comment-content {
padding: 15px 0px;
}
.article-comment-list-1 .commentForm {
margin-top: 10px;
}
.article-comment-list-1 .reply {
margin: 5px 0px;
padding: 10px;
border: 1px solid #dedede;
}
.article-comment-1 .form-comment input[type=text] {
display: inline-block;
margin-right: 10px;
width: auto;
border-radius: 0px;
}
.article-comment-1 .comment-text {
margin-bottom: 10px;
}
.article-comment-1 .textarea-comment {
display: block;
margin-bottom: 10px;
border-radius: 0px;
}
.article-comment-1 .comment-code {
width: 80px !important;
}
.article-comment-1 .btn-submit {
float: right;
}
.footer-theme-1 .footer {
padding: 20px 0 20px 0;
color: #fff;
background-color: #028fd0;
border-top: 3px solid #0288c6;
}
.footer-theme-1 .footer a {
color: #f2f2f2;
}
.footer-theme-1 .footer .headline {
display: block;
margin: 20px 0 15px 0;
border-bottom: 1px dotted #f0f0f0;
}
.footer-theme-1 .footer .headline .heading-title {
display: inline-block;
margin: 0 0 -2px 0;
padding-bottom: 5px;
border-bottom: 2px solid #fff;
font-size: 18px;
}
.footer-theme-1 .footer .footer-link a {
display: inline-block;
margin: 5px 15px 5px 0px;
}
.footer-theme-1 .footer .copyright {
margin-top: 20px;
text-align: center;
}
.footer-theme-1 .footer .copyright a {
color: #f0f0f0;
} | 0.229018 | 0.067393 |
a.cta-btn {
border: 1px solid;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-family: inherit;
font-size: 0.875rem;
margin: 0;
text-align: center;
text-decoration: none;
vertical-align: bottom;
background-color: #fff;
border-color: currentColor;
border-radius: 3px;
color: #0654ba;
display: inline-block;
max-width: 100%;
padding: 11px 48px;
}
a.cta-btn--fixed-height {
height: 40px;
}
a.cta-btn--truncated {
height: 40px;
}
a.cta-btn--truncated,
a.cta-btn--truncated span {
line-height: 1.4em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
a.cta-btn:visited {
color: #0654ba;
}
a.cta-btn:focus,
a.cta-btn:hover {
background-color: #00489f;
border-color: #00489f;
color: #fff;
}
a.cta-btn:not([href]),
a.cta-btn[aria-disabled="true"] {
background-color: #fff;
border-color: #ccc;
color: #ccc;
}
.cta-btn__icon {
align-self: center;
}
.cta-btn__icon:first-child {
margin-right: 8px;
}
.cta-btn__icon:last-child {
margin-left: 8px;
}
a.cta-btn--fluid {
width: 100%;
}
.cta-btn__cell {
-webkit-box-align: center;
align-items: center;
display: -webkit-box;
display: flex;
width: 100%;
-webkit-box-pack: center;
justify-content: center;
}
.cta-btn__cell--fixed-height {
display: -webkit-inline-box;
display: inline-flex;
}
.cta-btn__cell--fixed-height > span,
.cta-btn__cell--fixed-height > svg {
align-self: baseline;
max-width: calc(100% - 32px);
}
.cta-btn__cell--truncated {
display: -webkit-inline-box;
display: inline-flex;
}
.cta-btn__cell--truncated > span,
.cta-btn__cell--truncated > svg {
align-self: baseline;
max-width: calc(100% - 32px);
}
svg.cta-btn__icon {
fill: currentColor;
stroke: currentColor;
stroke-width: 0;
}
.cta-btn__cell--fixed-height span.cta-btn__icon,
.cta-btn__cell--fixed-height svg.icon {
align-self: center;
}
.cta-btn__cell--fixed-height svg.icon {
height: 1rem;
width: 1rem;
}
svg.expand-btn__icon,
svg.cta-btn__icon {
height: 8px;
width: 8px;
}
a.cta-btn__cell--fixed-height a.cta-btn__icon {
align-self: center;
overflow: visible;
}
a.cta-btn--small {
font-size: 0.75rem;
padding: 8px 32px;
}
a.cta-btn--small-fixed-height {
height: 32px;
}
a.cta-btn--small-truncated {
font-size: 0.75rem;
padding: 8px 32px;
height: 32px;
}
a.cta-btn--small-truncated,
a.cta-btn--small-truncated span {
line-height: 1.4em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
a.cta-btn--medium {
font-size: 0.875rem;
padding: 11px 40px;
}
a.cta-btn--medium-fixed-height {
height: 40px;
}
a.cta-btn--medium-truncated {
font-size: 0.875rem;
padding: 11px 40px;
height: 40px;
}
a.cta-btn--medium-truncated,
a.cta-btn--medium-truncated span {
line-height: 1.4em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
a.cta-btn--large {
font-size: 1rem;
padding: 14px 48px;
}
a.cta-btn--large-fixed-height {
height: 48px;
}
a.cta-btn--large-truncated {
font-size: 1rem;
padding: 14px 48px;
height: 48px;
}
a.cta-btn--large-truncated,
a.cta-btn--large-truncated span {
line-height: 1.4em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
a.cta-btn--extra-large {
font-size: 1.125rem;
padding: 15.875px 56px;
}
a.cta-btn--extra-large-fixed-height {
height: 56px;
}
a.cta-btn--extra-large-truncated {
font-size: 1.125rem;
padding: 15.875px 56px;
height: 56px;
}
a.cta-btn--extra-large-truncated,
a.cta-btn--extra-large-truncated span {
line-height: 1.4em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} | dist/cta-button/ds4/cta-button.css | a.cta-btn {
border: 1px solid;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-family: inherit;
font-size: 0.875rem;
margin: 0;
text-align: center;
text-decoration: none;
vertical-align: bottom;
background-color: #fff;
border-color: currentColor;
border-radius: 3px;
color: #0654ba;
display: inline-block;
max-width: 100%;
padding: 11px 48px;
}
a.cta-btn--fixed-height {
height: 40px;
}
a.cta-btn--truncated {
height: 40px;
}
a.cta-btn--truncated,
a.cta-btn--truncated span {
line-height: 1.4em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
a.cta-btn:visited {
color: #0654ba;
}
a.cta-btn:focus,
a.cta-btn:hover {
background-color: #00489f;
border-color: #00489f;
color: #fff;
}
a.cta-btn:not([href]),
a.cta-btn[aria-disabled="true"] {
background-color: #fff;
border-color: #ccc;
color: #ccc;
}
.cta-btn__icon {
align-self: center;
}
.cta-btn__icon:first-child {
margin-right: 8px;
}
.cta-btn__icon:last-child {
margin-left: 8px;
}
a.cta-btn--fluid {
width: 100%;
}
.cta-btn__cell {
-webkit-box-align: center;
align-items: center;
display: -webkit-box;
display: flex;
width: 100%;
-webkit-box-pack: center;
justify-content: center;
}
.cta-btn__cell--fixed-height {
display: -webkit-inline-box;
display: inline-flex;
}
.cta-btn__cell--fixed-height > span,
.cta-btn__cell--fixed-height > svg {
align-self: baseline;
max-width: calc(100% - 32px);
}
.cta-btn__cell--truncated {
display: -webkit-inline-box;
display: inline-flex;
}
.cta-btn__cell--truncated > span,
.cta-btn__cell--truncated > svg {
align-self: baseline;
max-width: calc(100% - 32px);
}
svg.cta-btn__icon {
fill: currentColor;
stroke: currentColor;
stroke-width: 0;
}
.cta-btn__cell--fixed-height span.cta-btn__icon,
.cta-btn__cell--fixed-height svg.icon {
align-self: center;
}
.cta-btn__cell--fixed-height svg.icon {
height: 1rem;
width: 1rem;
}
svg.expand-btn__icon,
svg.cta-btn__icon {
height: 8px;
width: 8px;
}
a.cta-btn__cell--fixed-height a.cta-btn__icon {
align-self: center;
overflow: visible;
}
a.cta-btn--small {
font-size: 0.75rem;
padding: 8px 32px;
}
a.cta-btn--small-fixed-height {
height: 32px;
}
a.cta-btn--small-truncated {
font-size: 0.75rem;
padding: 8px 32px;
height: 32px;
}
a.cta-btn--small-truncated,
a.cta-btn--small-truncated span {
line-height: 1.4em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
a.cta-btn--medium {
font-size: 0.875rem;
padding: 11px 40px;
}
a.cta-btn--medium-fixed-height {
height: 40px;
}
a.cta-btn--medium-truncated {
font-size: 0.875rem;
padding: 11px 40px;
height: 40px;
}
a.cta-btn--medium-truncated,
a.cta-btn--medium-truncated span {
line-height: 1.4em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
a.cta-btn--large {
font-size: 1rem;
padding: 14px 48px;
}
a.cta-btn--large-fixed-height {
height: 48px;
}
a.cta-btn--large-truncated {
font-size: 1rem;
padding: 14px 48px;
height: 48px;
}
a.cta-btn--large-truncated,
a.cta-btn--large-truncated span {
line-height: 1.4em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
a.cta-btn--extra-large {
font-size: 1.125rem;
padding: 15.875px 56px;
}
a.cta-btn--extra-large-fixed-height {
height: 56px;
}
a.cta-btn--extra-large-truncated {
font-size: 1.125rem;
padding: 15.875px 56px;
height: 56px;
}
a.cta-btn--extra-large-truncated,
a.cta-btn--extra-large-truncated span {
line-height: 1.4em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} | 0.30054 | 0.064653 |
@font-face {
font-family: "Book Antiqua";
src: url("fonts/Book-Antiqua.otf"); }
@font-face {
font-family: "DuvallSmallCaps";
src: url("fonts/DuvallSmallCaps.otf"); }
.dcc .window-content {
height: 100%;
padding: 5px;
overflow-y: hidden;
font-family: "Book Antiqua", "Palatino Linotype", serif; }
.dcc .window-content label {
font-family: "DuvallSmallCaps", "Palatino Linotype", serif; }
/* ----------------------------------------- */
/* Rollable */
/* ----------------------------------------- */
.dcc .rollable:hover {
color: #000;
text-shadow: 0 0 10px red;
cursor: pointer; }
/* ----------------------------------------- */
/* Actor Sheet */
/* ----------------------------------------- */
.dcc.sheet.actor {
min-width: 605px;
min-height: 631px; }
.dcc .editor,
.dcc .editor-content {
height: 100%; }
/* ----------------------------------------- */
/* Sheet Header */
/* ----------------------------------------- */
.dcc .sheet-header {
overflow: hidden;
justify-content: flex-start;
margin-bottom: 10px; }
.dcc .sheet-header .profile-img {
flex: 0 0 100px;
height: 100px;
margin: 5px 10px 0 0; }
.dcc .sheet-header h1.charname {
flex: 0 0 100%;
height: 50px;
padding: 0;
margin: 5px 0;
border-bottom: 0; }
.dcc .sheet-header h1.charname input {
width: 100%;
height: 100%;
margin: 0; }
.dcc .alignment {
margin-left: 15px;
text-align: center;
flex: 0 0 10%; }
.dcc .alignment select {
font-family: inherit;
height: 24px;
width: 90px; }
.dcc .occupation input {
width: 100%; }
.dcc .occupation label {
margin: 0 0 0 4px; }
.dcc.actor.sheet .character-main-top-row {
flex: 0 0 100px; }
/* ----------------------------------------- */
/* Action Dice */
/* ----------------------------------------- */
.dcc .action-dice {
flex: 0 0 100px;
text-align: center;
margin: 0 0 0 10px; }
/* ----------------------------------------- */
/* Ability Scores */
/* ----------------------------------------- */
.dcc.sheet.actor .ability-scores {
flex: 0 0 140px;
height: 425px;
list-style: none;
margin: 7px;
padding: 0;
font-size: 20px;
border: 2px groove #eeede0;
border-radius: 5px; }
.dcc.sheet.actor .ability-scores .ability {
height: 70px;
text-align: center;
border-bottom: 2px groove #eeede0;
padding-top: 3px; }
.dcc.sheet.actor .ability-scores .ability:last-child {
border-bottom: none; }
.dcc.sheet.actor .ability-scores .ability input.ability-score {
height: 30px;
width: 36px;
margin: 0 auto;
line-height: 32px;
font-size: 24px; }
.dcc.sheet.actor .ability-scores .ability .ability-modifiers {
flex: 0 0 24px;
height: 23px;
margin: -16px 0 0 110px;
width: 30px;
line-height: 22px;
font-size: 16px;
border-top: 2px groove #eeede0;
border-left: 2px groove #eeede0;
}
.dcc.sheet.actor .ability-scores .ability input.ability-score-raw {
height: 25px;
width: 30px;
margin: 0 auto;
line-height: 32px;
font-size: 16px; }
/* ----------------------------------------- */
/* Armor */
/* ----------------------------------------- */
.dcc .armor-heading {
margin: 8px 0 0 0;
font-family: "DuvallSmallCaps", "Palatino Linotype", serif;
font-size: 1.1rem;
border-bottom: 2px groove #eeede0;
flex: 0 0 10px;
line-height: 1.2rem;
background-image: url("./images/gauntlet.png");
background-size: 55px 17px;
background-position-x: 70px;
background-repeat: no-repeat; }
.dcc .armor-list {
margin: 0 8px 0 0;
font-family: "Book Antiqua", "Palatino Linotype", serif;
padding: 0; }
.dcc .armor-list input {
height: 30px; }
.dcc .armor-list-header {
margin: 7px 0 2px 0;
font-family: "DuvallSmallCaps", "Palatino Linotype", serif;
font-size: .8rem;
flex: 0 0 10px;
padding: 0; }
.dcc .armor-bonus {
flex: 0 0 45px;
margin: 0 8px 0 8px;
text-align: center; }
.dcc .armor-checkpenalty {
flex: 0 0 60px;
margin: 0 8px 0 0;
text-align: center; }
.dcc .armor-fumbledie {
flex: 0 0 80px;
text-align: center; }
.dcc .armor-notes {
flex: 0 0 110px;
margin: 0 0 0 8px; }
/* ----------------------------------------- */
/* Armor Class */
/* ----------------------------------------- */
.dcc .ac {
background-image: url("./images/shield.png");
background-size: 60px 76px;
background-repeat: no-repeat;
flex: 0 0 60px;
height: 99px;
text-align: center;
margin: 10px 0 0 6px; }
.dcc .ac label {
margin: 31px auto 0 auto;
font-size: 1.1rem;
line-height: 1.6rem; }
.dcc .ac .ac-value {
width: 35px;
margin: 21px auto 0 auto;
font-size: 1.6rem;
height: 25px; }
/* ----------------------------------------- */
/* Chat Rolls */
/* ----------------------------------------- */
.dice-roll .dice-total.critical,
.inline-roll.critical {
color: green;
font-weight: 900; }
.dice-roll .dice-total.fumble,
.inline-roll.fumble {
color: red; }
/* ----------------------------------------- */
/* Criticals */
/* ----------------------------------------- */
.dcc .crit-die {
flex: 0 0 80px;
text-align: center;
margin: 0 0 0 10px; }
.dcc .crit-table {
flex: 0 0 80px;
text-align: center;
margin: 0 0 0 10px; }
/* ----------------------------------------- */
/* Hit Dice */
/* ----------------------------------------- */
.dcc .hd {
flex: 0 0 50px;
text-align: center;
margin: 0 0 0 0; }
/* ----------------------------------------- */
/* Hit Points */
/* ----------------------------------------- */
.dcc .hp {
background-image: url("./images/heart.png");
background-size: 80px 75px;
background-repeat: no-repeat;
background-position-y: 9px;
flex: 0 0 99px;
height: 99px;
text-align: center;
margin: 0 0 0 5px; }
.dcc .hp .current-label {
margin: -8px auto 0 28px;
font-size: 1.1rem;
line-height: 1.6rem; }
.dcc .hp .current {
width: 35px;
margin: 31px auto 0 23px;
font-size: 1.6rem;
height: 25px; }
.dcc .hp .max {
width: 25px;
margin: 7px auto 0 63px;
height: 17px; }
.dcc .hp .max-label {
margin: 2px auto 0 65px;
font-size: .6rem;
line-height: .8rem; }
/* ----------------------------------------- */
/* Init */
/* ----------------------------------------- */
.dcc .init-and-speed {
flex: 0 0 100px;
margin: 7px 0 0 0;
text-align: right; }
.dcc .init {
flex: 0 0 30px;
align-items: center; }
.dcc .init label {
font-size: 1.1rem; }
.dcc .init .init-value {
width: 40px;
font-size: 1.1rem;
text-align: center; }
/* ----------------------------------------- */
/* Notes */
/* ----------------------------------------- */
.dcc .notes {
border: 2px groove #eeede0;
font-size: 1.2rem;
height: 85%; }
.dcc .notes-label {
font-family: "DuvallSmallCaps", "Palatino Linotype", serif;
font-size: 1.5rem;
margin-top: 20px; }
/* ----------------------------------------- */
/* Speed */
/* ----------------------------------------- */
.dcc .speed label {
margin: 10px auto 0 0;
font-size: 1.1rem; }
.dcc .speed .speed-other {
width: 100px;
margin: 5px 0 0 0; }
.dcc .speed .speed-other-label {
font-size: .8rem;
line-height: .8rem;
margin: 0 7px 0 0; }
.dcc .speed .speed-value {
width: 40px;
font-size: 1.1rem;
height: 25px;
text-align: center; }
/* ----------------------------------------- */
/* Artifact */
/* ----------------------------------------- */
.dcc .artifactcheck label {
margin: 10px auto 0 0;
font-size: 1.1rem; }
.dcc .artifactcheck .artifactcheck-other {
width: 100px;
margin: 5px 0 0 0; }
.dcc .artifactcheck .artifactcheck-other-label {
font-size: .8rem;
line-height: .8rem;
margin: 0 7px 0 0; }
.dcc .artifactcheck .artifactcheck-value {
width: 40px;
font-size: 1.1rem;
height: 25px;
text-align: center; }
/* ----------------------------------------- */
/* Saving Throws */
/* ----------------------------------------- */
.dcc.sheet.actor .saving-throws {
flex: 0 0 152px;
height: 102px;
list-style: none;
margin: 7px 0 0 0;
padding: 2px 0 3px 7px;
font-size: 20px;
border: 2px groove #eeede0;
border-radius: 5px;
text-align: left; }
.dcc.sheet.actor .saving-throws .save {
margin-bottom: .25rem; }
.dcc.sheet.actor .saving-throws span {
font-family: "Book Antiqua", "Palatino Linotype", serif; }
.dcc.sheet.actor .saving-throws input {
margin-bottom: 0;
width: 36px;
font-family: "Book Antiqua", "Palatino Linotype", serif;
text-align: center; }
/* ----------------------------------------- */
/* Special */
/* ----------------------------------------- */
.dcc .special {
flex: 0 0 155px;
margin: 0 8px 0 0; }
/* ----------------------------------------- */
/* Tabs */
/* ----------------------------------------- */
.dcc .tabs {
height: 40px; }
.dcc .tabs .item {
line-height: 35px;
font-weight: bold;
border: 2px groove #eeede0;
border-radius: 5px 5px 0 0;
margin-bottom: 10px; }
.dcc .tabs .item.active {
text-decoration: underline;
text-shadow: none;
border-bottom: none;
margin-bottom: 11px; }
.dcc .sheet-body {
overflow: hidden; }
.dcc .sheet-body .tab {
height: 100%;
overflow-y: auto; }
/* ----------------------------------------- */
/* Weapons */
/* ----------------------------------------- */
.dcc .weapons {
margin: 10px 0 0 0; }
.dcc .weapons-heading {
margin: 10px 0 0 0;
font-family: "DuvallSmallCaps", "Palatino Linotype", serif;
font-size: 1.1rem;
border-bottom: 2px groove #eeede0;
flex: 0 0 10px;
line-height: 1.2rem;
background-image: url("./images/axe.png");
background-size: 90px 18px;
background-position-x: 155px;
background-repeat: no-repeat; }
.dcc .weapons-heading.ranged {
background-image: url("./images/bow.png");
background-size: 90px 17px;
background-position-x: 165px; }
.dcc .weapon-list {
margin: 0 0 0 0;
font-family: "Book Antiqua", "Palatino Linotype", serif;
padding: 0; }
.dcc .weapon-list input {
margin: 0 8px 0 0;
height: 30px; }
.dcc .weapon-list-header {
margin: 0 0 1px 0;
font-family: "DuvallSmallCaps", "Palatino Linotype", serif;
font-size: .8rem;
flex: 0 0 10px;
padding: 0; }
.dcc .weapon {
flex: 0 0 35px; }
.dcc .weapon-button {
flex: 0 0 30px;
margin: 5px 0 0 0;
background-image: url("/icons/svg/d20-black.svg");
background-size: 22px 22px;
background-repeat: no-repeat; }
.dcc .weapon-damage {
flex: 0 0 80px;
margin: 0 10px 0 0;
text-align: center; }
.dcc .weapon-name-label {
padding: 0 0 0 30px; }
.dcc .weapon-notes {
flex: 0 0 110px;
margin: 0 8px 0 0; }
.dcc .weapon-tohit {
flex: 0 0 60px;
margin: 0 6px 0 0;
text-align: center; }
.dcc .weapon-special {
flex: 0 0 1;
text-align: center; } | styles/dcc.css | @font-face {
font-family: "Book Antiqua";
src: url("fonts/Book-Antiqua.otf"); }
@font-face {
font-family: "DuvallSmallCaps";
src: url("fonts/DuvallSmallCaps.otf"); }
.dcc .window-content {
height: 100%;
padding: 5px;
overflow-y: hidden;
font-family: "Book Antiqua", "Palatino Linotype", serif; }
.dcc .window-content label {
font-family: "DuvallSmallCaps", "Palatino Linotype", serif; }
/* ----------------------------------------- */
/* Rollable */
/* ----------------------------------------- */
.dcc .rollable:hover {
color: #000;
text-shadow: 0 0 10px red;
cursor: pointer; }
/* ----------------------------------------- */
/* Actor Sheet */
/* ----------------------------------------- */
.dcc.sheet.actor {
min-width: 605px;
min-height: 631px; }
.dcc .editor,
.dcc .editor-content {
height: 100%; }
/* ----------------------------------------- */
/* Sheet Header */
/* ----------------------------------------- */
.dcc .sheet-header {
overflow: hidden;
justify-content: flex-start;
margin-bottom: 10px; }
.dcc .sheet-header .profile-img {
flex: 0 0 100px;
height: 100px;
margin: 5px 10px 0 0; }
.dcc .sheet-header h1.charname {
flex: 0 0 100%;
height: 50px;
padding: 0;
margin: 5px 0;
border-bottom: 0; }
.dcc .sheet-header h1.charname input {
width: 100%;
height: 100%;
margin: 0; }
.dcc .alignment {
margin-left: 15px;
text-align: center;
flex: 0 0 10%; }
.dcc .alignment select {
font-family: inherit;
height: 24px;
width: 90px; }
.dcc .occupation input {
width: 100%; }
.dcc .occupation label {
margin: 0 0 0 4px; }
.dcc.actor.sheet .character-main-top-row {
flex: 0 0 100px; }
/* ----------------------------------------- */
/* Action Dice */
/* ----------------------------------------- */
.dcc .action-dice {
flex: 0 0 100px;
text-align: center;
margin: 0 0 0 10px; }
/* ----------------------------------------- */
/* Ability Scores */
/* ----------------------------------------- */
.dcc.sheet.actor .ability-scores {
flex: 0 0 140px;
height: 425px;
list-style: none;
margin: 7px;
padding: 0;
font-size: 20px;
border: 2px groove #eeede0;
border-radius: 5px; }
.dcc.sheet.actor .ability-scores .ability {
height: 70px;
text-align: center;
border-bottom: 2px groove #eeede0;
padding-top: 3px; }
.dcc.sheet.actor .ability-scores .ability:last-child {
border-bottom: none; }
.dcc.sheet.actor .ability-scores .ability input.ability-score {
height: 30px;
width: 36px;
margin: 0 auto;
line-height: 32px;
font-size: 24px; }
.dcc.sheet.actor .ability-scores .ability .ability-modifiers {
flex: 0 0 24px;
height: 23px;
margin: -16px 0 0 110px;
width: 30px;
line-height: 22px;
font-size: 16px;
border-top: 2px groove #eeede0;
border-left: 2px groove #eeede0;
}
.dcc.sheet.actor .ability-scores .ability input.ability-score-raw {
height: 25px;
width: 30px;
margin: 0 auto;
line-height: 32px;
font-size: 16px; }
/* ----------------------------------------- */
/* Armor */
/* ----------------------------------------- */
.dcc .armor-heading {
margin: 8px 0 0 0;
font-family: "DuvallSmallCaps", "Palatino Linotype", serif;
font-size: 1.1rem;
border-bottom: 2px groove #eeede0;
flex: 0 0 10px;
line-height: 1.2rem;
background-image: url("./images/gauntlet.png");
background-size: 55px 17px;
background-position-x: 70px;
background-repeat: no-repeat; }
.dcc .armor-list {
margin: 0 8px 0 0;
font-family: "Book Antiqua", "Palatino Linotype", serif;
padding: 0; }
.dcc .armor-list input {
height: 30px; }
.dcc .armor-list-header {
margin: 7px 0 2px 0;
font-family: "DuvallSmallCaps", "Palatino Linotype", serif;
font-size: .8rem;
flex: 0 0 10px;
padding: 0; }
.dcc .armor-bonus {
flex: 0 0 45px;
margin: 0 8px 0 8px;
text-align: center; }
.dcc .armor-checkpenalty {
flex: 0 0 60px;
margin: 0 8px 0 0;
text-align: center; }
.dcc .armor-fumbledie {
flex: 0 0 80px;
text-align: center; }
.dcc .armor-notes {
flex: 0 0 110px;
margin: 0 0 0 8px; }
/* ----------------------------------------- */
/* Armor Class */
/* ----------------------------------------- */
.dcc .ac {
background-image: url("./images/shield.png");
background-size: 60px 76px;
background-repeat: no-repeat;
flex: 0 0 60px;
height: 99px;
text-align: center;
margin: 10px 0 0 6px; }
.dcc .ac label {
margin: 31px auto 0 auto;
font-size: 1.1rem;
line-height: 1.6rem; }
.dcc .ac .ac-value {
width: 35px;
margin: 21px auto 0 auto;
font-size: 1.6rem;
height: 25px; }
/* ----------------------------------------- */
/* Chat Rolls */
/* ----------------------------------------- */
.dice-roll .dice-total.critical,
.inline-roll.critical {
color: green;
font-weight: 900; }
.dice-roll .dice-total.fumble,
.inline-roll.fumble {
color: red; }
/* ----------------------------------------- */
/* Criticals */
/* ----------------------------------------- */
.dcc .crit-die {
flex: 0 0 80px;
text-align: center;
margin: 0 0 0 10px; }
.dcc .crit-table {
flex: 0 0 80px;
text-align: center;
margin: 0 0 0 10px; }
/* ----------------------------------------- */
/* Hit Dice */
/* ----------------------------------------- */
.dcc .hd {
flex: 0 0 50px;
text-align: center;
margin: 0 0 0 0; }
/* ----------------------------------------- */
/* Hit Points */
/* ----------------------------------------- */
.dcc .hp {
background-image: url("./images/heart.png");
background-size: 80px 75px;
background-repeat: no-repeat;
background-position-y: 9px;
flex: 0 0 99px;
height: 99px;
text-align: center;
margin: 0 0 0 5px; }
.dcc .hp .current-label {
margin: -8px auto 0 28px;
font-size: 1.1rem;
line-height: 1.6rem; }
.dcc .hp .current {
width: 35px;
margin: 31px auto 0 23px;
font-size: 1.6rem;
height: 25px; }
.dcc .hp .max {
width: 25px;
margin: 7px auto 0 63px;
height: 17px; }
.dcc .hp .max-label {
margin: 2px auto 0 65px;
font-size: .6rem;
line-height: .8rem; }
/* ----------------------------------------- */
/* Init */
/* ----------------------------------------- */
.dcc .init-and-speed {
flex: 0 0 100px;
margin: 7px 0 0 0;
text-align: right; }
.dcc .init {
flex: 0 0 30px;
align-items: center; }
.dcc .init label {
font-size: 1.1rem; }
.dcc .init .init-value {
width: 40px;
font-size: 1.1rem;
text-align: center; }
/* ----------------------------------------- */
/* Notes */
/* ----------------------------------------- */
.dcc .notes {
border: 2px groove #eeede0;
font-size: 1.2rem;
height: 85%; }
.dcc .notes-label {
font-family: "DuvallSmallCaps", "Palatino Linotype", serif;
font-size: 1.5rem;
margin-top: 20px; }
/* ----------------------------------------- */
/* Speed */
/* ----------------------------------------- */
.dcc .speed label {
margin: 10px auto 0 0;
font-size: 1.1rem; }
.dcc .speed .speed-other {
width: 100px;
margin: 5px 0 0 0; }
.dcc .speed .speed-other-label {
font-size: .8rem;
line-height: .8rem;
margin: 0 7px 0 0; }
.dcc .speed .speed-value {
width: 40px;
font-size: 1.1rem;
height: 25px;
text-align: center; }
/* ----------------------------------------- */
/* Artifact */
/* ----------------------------------------- */
.dcc .artifactcheck label {
margin: 10px auto 0 0;
font-size: 1.1rem; }
.dcc .artifactcheck .artifactcheck-other {
width: 100px;
margin: 5px 0 0 0; }
.dcc .artifactcheck .artifactcheck-other-label {
font-size: .8rem;
line-height: .8rem;
margin: 0 7px 0 0; }
.dcc .artifactcheck .artifactcheck-value {
width: 40px;
font-size: 1.1rem;
height: 25px;
text-align: center; }
/* ----------------------------------------- */
/* Saving Throws */
/* ----------------------------------------- */
.dcc.sheet.actor .saving-throws {
flex: 0 0 152px;
height: 102px;
list-style: none;
margin: 7px 0 0 0;
padding: 2px 0 3px 7px;
font-size: 20px;
border: 2px groove #eeede0;
border-radius: 5px;
text-align: left; }
.dcc.sheet.actor .saving-throws .save {
margin-bottom: .25rem; }
.dcc.sheet.actor .saving-throws span {
font-family: "Book Antiqua", "Palatino Linotype", serif; }
.dcc.sheet.actor .saving-throws input {
margin-bottom: 0;
width: 36px;
font-family: "Book Antiqua", "Palatino Linotype", serif;
text-align: center; }
/* ----------------------------------------- */
/* Special */
/* ----------------------------------------- */
.dcc .special {
flex: 0 0 155px;
margin: 0 8px 0 0; }
/* ----------------------------------------- */
/* Tabs */
/* ----------------------------------------- */
.dcc .tabs {
height: 40px; }
.dcc .tabs .item {
line-height: 35px;
font-weight: bold;
border: 2px groove #eeede0;
border-radius: 5px 5px 0 0;
margin-bottom: 10px; }
.dcc .tabs .item.active {
text-decoration: underline;
text-shadow: none;
border-bottom: none;
margin-bottom: 11px; }
.dcc .sheet-body {
overflow: hidden; }
.dcc .sheet-body .tab {
height: 100%;
overflow-y: auto; }
/* ----------------------------------------- */
/* Weapons */
/* ----------------------------------------- */
.dcc .weapons {
margin: 10px 0 0 0; }
.dcc .weapons-heading {
margin: 10px 0 0 0;
font-family: "DuvallSmallCaps", "Palatino Linotype", serif;
font-size: 1.1rem;
border-bottom: 2px groove #eeede0;
flex: 0 0 10px;
line-height: 1.2rem;
background-image: url("./images/axe.png");
background-size: 90px 18px;
background-position-x: 155px;
background-repeat: no-repeat; }
.dcc .weapons-heading.ranged {
background-image: url("./images/bow.png");
background-size: 90px 17px;
background-position-x: 165px; }
.dcc .weapon-list {
margin: 0 0 0 0;
font-family: "Book Antiqua", "Palatino Linotype", serif;
padding: 0; }
.dcc .weapon-list input {
margin: 0 8px 0 0;
height: 30px; }
.dcc .weapon-list-header {
margin: 0 0 1px 0;
font-family: "DuvallSmallCaps", "Palatino Linotype", serif;
font-size: .8rem;
flex: 0 0 10px;
padding: 0; }
.dcc .weapon {
flex: 0 0 35px; }
.dcc .weapon-button {
flex: 0 0 30px;
margin: 5px 0 0 0;
background-image: url("/icons/svg/d20-black.svg");
background-size: 22px 22px;
background-repeat: no-repeat; }
.dcc .weapon-damage {
flex: 0 0 80px;
margin: 0 10px 0 0;
text-align: center; }
.dcc .weapon-name-label {
padding: 0 0 0 30px; }
.dcc .weapon-notes {
flex: 0 0 110px;
margin: 0 8px 0 0; }
.dcc .weapon-tohit {
flex: 0 0 60px;
margin: 0 6px 0 0;
text-align: center; }
.dcc .weapon-special {
flex: 0 0 1;
text-align: center; } | 0.256925 | 0.052814 |
.center_log{
font-size: 0.38rem;
line-height: 0.88rem;
margin: 0 auto;
}
.content{
background: rgba(255,255,255,.9);
}
.login_bg{
height: 100%;
background: url(../img/log_ph.jpg) no-repeat;
background-size: cover;
}
/*登陆*/
.wrap{
margin: 0 auto;
width: 5.8rem;
}
.log_wrap{
padding-top: 0.3rem;
}
.log_ipt{
margin-top: 0.2rem;
}
.input-container{
position: relative;
width: 100%;
line-height: 0.26rem;
border-bottom: 1px solid #c2c2c2;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.input-container img{
margin-top: 0.3rem;
}
.txt-input{
font-size: 0.3rem;
height: 0.3rem;
padding: 0.3rem 0;
border: none;
width: 5.1rem;
background: none;
border: none;
outline: none;
margin-left: 0.3rem;
color: #818181;
}
.phone{
width: 0.21rem;
height: 0.30rem;
}
.lock{
width: 0.26rem;
height: 0.30rem;
}
.label-checkbox {
position: absolute;
right: 0;
top: 0;
overflow: hidden;
z-index: 99;
}
.eye_hide,.eye_show{
height: 0.3rem;
width: 0.48rem;
}
.eye_show{
display: none;
}
.code_hide{
display: none;
}
.code_show{
display: block;
}
.button{
margin-top: 1rem;
width: 100%;
overflow: hidden;
}
.reg_button{
margin-top: 0.6rem;
width: 100%;
overflow: hidden;
}
.btn-register{
font-size: 0.32rem;
width: 100%;
line-height: 0.8rem;
background-color: #30a5dd;
color: #FFFFFF;
border-radius: 0.05rem;
border: 0;
}
.wap_q{
margin-top: 0.3rem;
}
.wap_q img{
width: 0.28rem;
height: 0.28rem;
margin-right: 0.1rem;
}
.wap_q_l{
float: left;
height:0.28rem;
line-height: 0.28rem;
}
.wap_q .wap_q_l a{
font-size: 0.28rem;
line-height: 0.28rem;
flex: 1;
display: block;
/*padding:5px;*/
color: #818181;
}
.wap_q_r{
float: right;
}
.wap_q .wap_q_r a{
font-size: 0.28rem;
line-height: 0.28rem;
flex: 1;
color: #818181;
}
.other_loge{
margin-top: 0.8rem;
text-align: center;
}
.other_title{
display: block; /*设置为块级元素会独占一行形成上下居中的效果*/
font-size: 0.32rem;
position: relative; /*定位横线(当横线的父元素)*/
}
.other_title:before, .other_title:after {
content: ''; /*CSS伪类用法*/
position: absolute; /*定位背景横线的位置*/
top: 52%;
background: #cccccc; /*宽和高做出来的背景横线*/
width: 1.6rem;
height: 1px;
}
.other_title:before{
left: 0%; /*调整背景横线的左右距离*/
}
.other_title:after {
right: 0%;
}
/*注册*/
.validation{
width: 0.35rem;
height: 0.3rem;
}
.username{
width: 0.3rem;
height: 0.3rem;
margin-top: 0.3rem;
}
.log_post{
width: 0.26rem;
height: 0.3rem;
}
.txt-validation{
font-size: 0.3rem;
line-height: 0.3rem;
height: 0.3rem;
padding: 0.3rem 0;
border: none;
width: 3rem;
background: none;
border: none;
outline: none;
margin-left: 0.18rem;
color: #818181;
}
.validation_btn{
width: 1.5rem;
height: 0.48rem;
font-size: 0.26rem;
color: #ffffff;
border: none;
border-radius: 0.05rem;
background: #30a5dd;
margin-top: 0.18rem;
}
.header_select{
width: 100%;
height: 0.88rem;
background: #ffffff;
color: #555;
font-size: 0.2rem;
text-align: center;
line-height: 0.88rem;
border-bottom: 1px solid #30a5dd;
}
.select_left{
font-size: 0.58rem;
}
.select-area{
position: relative;
overflow: hidden;
padding: 0.3rem 0;
}
.select-value{
display: inline-block;
color: #818181;
font-size: 0.3rem;
line-height: 0.3rem;
margin-left: 0.3rem;
}
.select_list{
position: relative;
}
.log_triangle{
position: absolute;
right: 0.12rem;
top: 0;
margin-top: 0.4rem !important;
width: 0.24rem;
height: 0.12rem;
}
.select_choose{
position: fixed;
top: 0;
left: 0;
z-index: 100;
width: 100%;
background: #f4f4f4;
height: 100%;
display: none;
}
.select_choose label {
position: relative;
display: block;
border-bottom: 1px solid #c6c6c6;
margin: 0;
padding: 0.3rem 0.24rem;
}
.post_name{
display: inline-block;
font-size: 14px;
line-height: 14px;
color: #818181;
}
.post_bg{
background: #e5e5e5;
color: #30a5dd;
}
.post_bg .post_name{
color: #30a5dd;
}
/*单选框*/
.icheck-info{
font-size: 0.28rem;
line-height: 0.28rem;
position: relative;
}
.checkbox label{
min-height: 0;
}
[class*="icheck-"] {
padding-left: 0px;
}
[class*="icheck-"] > label {
padding-left: 0.3rem !important;
display: inline-block;
position: relative;
vertical-align: top;
margin-bottom: 0;
font-weight: normal;
cursor: pointer;
}
[class*="icheck-"] > input {
position: absolute !important;
opacity: 0;
margin: 0;
}
[class*="icheck-"] > input + label::before,
[class*="icheck-"] > input + input[type="hidden"] + label::before {
content: "";
display: inline-block;
position: absolute;
width: 0.24rem;
height: 0.24rem;
border: 1px solid #D3CFC8;
border-radius: 0px;
margin-left: -0.3rem;
top: -0.01rem;
}
[class*="icheck-"] > input:checked + label::after,
[class*="icheck-"] > input:checked + input[type="hidden"] + label::after {
content: "";
display: inline-block;
position: absolute;
top: -0.08rem;
left: -0.01rem;
width: 0.1rem;
height: 0.2rem;
border: solid 2px #fff;
border-left: none;
border-top: none;
transform: translate(0.08rem, 0.05rem) rotate(45deg);
-ms-transform: translate(0.08rem, 0.05rem) rotate(45deg);
}
.icheck-info > input:not(:checked):not(:disabled):hover + label::before,
.icheck-info > input:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #30a5dd;
}
.icheck-info > input:checked + label::before,
.icheck-info > input:checked + input[type="hidden"] + label::before {
background-color: #30a5dd;
border-color: #30a5dd;
}
@media only screen and (max-width: 750px) {
.login_bg{
background: url(../img/log_ph.jpg) no-repeat;
background-size: cover;
}
.warp{
margin-top: 44px;
}
.log_ip{
display: none;
}
.log_ph{
position: fixed;
top: 0;
left: 0;
z-index: -1;
}
.post_name{
line-height: 16px;
}
.radio label .outer{
width: 16px;
height: 16px;
}
}
@media only screen and (min-width: 750px) {
.login_bg{
background: url(../img/log_ip.jpg) no-repeat;
background-size: cover;
}
.radio label input:checked + .outer .inner{
margin: 6px;
}
.warp{
margin-top: 44px;
}
[class*="icheck-"] > input + label::before,
[class*="icheck-"] > input + input[type="hidden"] + label::before {
top: 0.04rem;
}
}
/*阅读条款*/
.wap_q span{
font-weight: normal;
font-size: 0.24rem;
}
.wap_q input{
position: relative;
top: 2px;
margin-right: 10px;
}
.wap_q a{
color: #30a5dd;
font-size: 0.24rem;
}
/*服务条款*/
.terms{
padding: 0 0.4rem;
color: #3E3E3E;
}
.terms_tit{
font-size: 0.44rem;
line-height: 0.44rem;
margin: 0.4rem 0;
}
.terms_txt{
font-size: 0.32rem;
line-height: 0.32rem;
}
.terms_remind{
text-indent: 0.64rem;
}
.terms_list{
margin: 0.4rem 0;
color: #515151;
font-size: 0.3rem;
}
.terms_rules{
font-size: 0.32rem;
}
/*绑定账号*/
.gr_date {
margin: 0.4rem auto 0;
text-align: center;
}
.gr_date img {
width: 1.8rem;
height: 1.8rem;
margin: 0 auto 0.2rem;
border-radius: 50%;
}
.gr_date p{
font-size: 0.36rem;
margin-bottom: 0.3rem;
}
.pe_list {
padding: 0 0.24rem;
margin-bottom: 30px;
}
.pe_list .swiper-wrapper{
height: auto !important;
}
.tab {
border-bottom: 1px solid #c2c2c2;
background: #FFFFFF;
}
.tab li {
width: 50%;
font-size: 0.36rem;
line-height: 0.36rem;
text-align: center;
}
.tab li a {
display: inline-block;
padding: 0.4rem 0;
position: relative;
top: 1px;
}
.line {
position: absolute;
width: 0;
height: 2px;
background-color: #30a5dd;
bottom: 0;
left: 0;
}
.tab_ul{
padding: 0 0.24rem;
}
.other_list{
text-align: center;
margin-top: 0.4rem;
}
.other_wx{
width: 0.85rem;
height: 0.7rem;
}
@media only screen and (min-width: 1024px) {
[class*="icheck-"] > input + label::before{
top: 0.02rem;
}
} | public/css/log_in.css | .center_log{
font-size: 0.38rem;
line-height: 0.88rem;
margin: 0 auto;
}
.content{
background: rgba(255,255,255,.9);
}
.login_bg{
height: 100%;
background: url(../img/log_ph.jpg) no-repeat;
background-size: cover;
}
/*登陆*/
.wrap{
margin: 0 auto;
width: 5.8rem;
}
.log_wrap{
padding-top: 0.3rem;
}
.log_ipt{
margin-top: 0.2rem;
}
.input-container{
position: relative;
width: 100%;
line-height: 0.26rem;
border-bottom: 1px solid #c2c2c2;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.input-container img{
margin-top: 0.3rem;
}
.txt-input{
font-size: 0.3rem;
height: 0.3rem;
padding: 0.3rem 0;
border: none;
width: 5.1rem;
background: none;
border: none;
outline: none;
margin-left: 0.3rem;
color: #818181;
}
.phone{
width: 0.21rem;
height: 0.30rem;
}
.lock{
width: 0.26rem;
height: 0.30rem;
}
.label-checkbox {
position: absolute;
right: 0;
top: 0;
overflow: hidden;
z-index: 99;
}
.eye_hide,.eye_show{
height: 0.3rem;
width: 0.48rem;
}
.eye_show{
display: none;
}
.code_hide{
display: none;
}
.code_show{
display: block;
}
.button{
margin-top: 1rem;
width: 100%;
overflow: hidden;
}
.reg_button{
margin-top: 0.6rem;
width: 100%;
overflow: hidden;
}
.btn-register{
font-size: 0.32rem;
width: 100%;
line-height: 0.8rem;
background-color: #30a5dd;
color: #FFFFFF;
border-radius: 0.05rem;
border: 0;
}
.wap_q{
margin-top: 0.3rem;
}
.wap_q img{
width: 0.28rem;
height: 0.28rem;
margin-right: 0.1rem;
}
.wap_q_l{
float: left;
height:0.28rem;
line-height: 0.28rem;
}
.wap_q .wap_q_l a{
font-size: 0.28rem;
line-height: 0.28rem;
flex: 1;
display: block;
/*padding:5px;*/
color: #818181;
}
.wap_q_r{
float: right;
}
.wap_q .wap_q_r a{
font-size: 0.28rem;
line-height: 0.28rem;
flex: 1;
color: #818181;
}
.other_loge{
margin-top: 0.8rem;
text-align: center;
}
.other_title{
display: block; /*设置为块级元素会独占一行形成上下居中的效果*/
font-size: 0.32rem;
position: relative; /*定位横线(当横线的父元素)*/
}
.other_title:before, .other_title:after {
content: ''; /*CSS伪类用法*/
position: absolute; /*定位背景横线的位置*/
top: 52%;
background: #cccccc; /*宽和高做出来的背景横线*/
width: 1.6rem;
height: 1px;
}
.other_title:before{
left: 0%; /*调整背景横线的左右距离*/
}
.other_title:after {
right: 0%;
}
/*注册*/
.validation{
width: 0.35rem;
height: 0.3rem;
}
.username{
width: 0.3rem;
height: 0.3rem;
margin-top: 0.3rem;
}
.log_post{
width: 0.26rem;
height: 0.3rem;
}
.txt-validation{
font-size: 0.3rem;
line-height: 0.3rem;
height: 0.3rem;
padding: 0.3rem 0;
border: none;
width: 3rem;
background: none;
border: none;
outline: none;
margin-left: 0.18rem;
color: #818181;
}
.validation_btn{
width: 1.5rem;
height: 0.48rem;
font-size: 0.26rem;
color: #ffffff;
border: none;
border-radius: 0.05rem;
background: #30a5dd;
margin-top: 0.18rem;
}
.header_select{
width: 100%;
height: 0.88rem;
background: #ffffff;
color: #555;
font-size: 0.2rem;
text-align: center;
line-height: 0.88rem;
border-bottom: 1px solid #30a5dd;
}
.select_left{
font-size: 0.58rem;
}
.select-area{
position: relative;
overflow: hidden;
padding: 0.3rem 0;
}
.select-value{
display: inline-block;
color: #818181;
font-size: 0.3rem;
line-height: 0.3rem;
margin-left: 0.3rem;
}
.select_list{
position: relative;
}
.log_triangle{
position: absolute;
right: 0.12rem;
top: 0;
margin-top: 0.4rem !important;
width: 0.24rem;
height: 0.12rem;
}
.select_choose{
position: fixed;
top: 0;
left: 0;
z-index: 100;
width: 100%;
background: #f4f4f4;
height: 100%;
display: none;
}
.select_choose label {
position: relative;
display: block;
border-bottom: 1px solid #c6c6c6;
margin: 0;
padding: 0.3rem 0.24rem;
}
.post_name{
display: inline-block;
font-size: 14px;
line-height: 14px;
color: #818181;
}
.post_bg{
background: #e5e5e5;
color: #30a5dd;
}
.post_bg .post_name{
color: #30a5dd;
}
/*单选框*/
.icheck-info{
font-size: 0.28rem;
line-height: 0.28rem;
position: relative;
}
.checkbox label{
min-height: 0;
}
[class*="icheck-"] {
padding-left: 0px;
}
[class*="icheck-"] > label {
padding-left: 0.3rem !important;
display: inline-block;
position: relative;
vertical-align: top;
margin-bottom: 0;
font-weight: normal;
cursor: pointer;
}
[class*="icheck-"] > input {
position: absolute !important;
opacity: 0;
margin: 0;
}
[class*="icheck-"] > input + label::before,
[class*="icheck-"] > input + input[type="hidden"] + label::before {
content: "";
display: inline-block;
position: absolute;
width: 0.24rem;
height: 0.24rem;
border: 1px solid #D3CFC8;
border-radius: 0px;
margin-left: -0.3rem;
top: -0.01rem;
}
[class*="icheck-"] > input:checked + label::after,
[class*="icheck-"] > input:checked + input[type="hidden"] + label::after {
content: "";
display: inline-block;
position: absolute;
top: -0.08rem;
left: -0.01rem;
width: 0.1rem;
height: 0.2rem;
border: solid 2px #fff;
border-left: none;
border-top: none;
transform: translate(0.08rem, 0.05rem) rotate(45deg);
-ms-transform: translate(0.08rem, 0.05rem) rotate(45deg);
}
.icheck-info > input:not(:checked):not(:disabled):hover + label::before,
.icheck-info > input:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #30a5dd;
}
.icheck-info > input:checked + label::before,
.icheck-info > input:checked + input[type="hidden"] + label::before {
background-color: #30a5dd;
border-color: #30a5dd;
}
@media only screen and (max-width: 750px) {
.login_bg{
background: url(../img/log_ph.jpg) no-repeat;
background-size: cover;
}
.warp{
margin-top: 44px;
}
.log_ip{
display: none;
}
.log_ph{
position: fixed;
top: 0;
left: 0;
z-index: -1;
}
.post_name{
line-height: 16px;
}
.radio label .outer{
width: 16px;
height: 16px;
}
}
@media only screen and (min-width: 750px) {
.login_bg{
background: url(../img/log_ip.jpg) no-repeat;
background-size: cover;
}
.radio label input:checked + .outer .inner{
margin: 6px;
}
.warp{
margin-top: 44px;
}
[class*="icheck-"] > input + label::before,
[class*="icheck-"] > input + input[type="hidden"] + label::before {
top: 0.04rem;
}
}
/*阅读条款*/
.wap_q span{
font-weight: normal;
font-size: 0.24rem;
}
.wap_q input{
position: relative;
top: 2px;
margin-right: 10px;
}
.wap_q a{
color: #30a5dd;
font-size: 0.24rem;
}
/*服务条款*/
.terms{
padding: 0 0.4rem;
color: #3E3E3E;
}
.terms_tit{
font-size: 0.44rem;
line-height: 0.44rem;
margin: 0.4rem 0;
}
.terms_txt{
font-size: 0.32rem;
line-height: 0.32rem;
}
.terms_remind{
text-indent: 0.64rem;
}
.terms_list{
margin: 0.4rem 0;
color: #515151;
font-size: 0.3rem;
}
.terms_rules{
font-size: 0.32rem;
}
/*绑定账号*/
.gr_date {
margin: 0.4rem auto 0;
text-align: center;
}
.gr_date img {
width: 1.8rem;
height: 1.8rem;
margin: 0 auto 0.2rem;
border-radius: 50%;
}
.gr_date p{
font-size: 0.36rem;
margin-bottom: 0.3rem;
}
.pe_list {
padding: 0 0.24rem;
margin-bottom: 30px;
}
.pe_list .swiper-wrapper{
height: auto !important;
}
.tab {
border-bottom: 1px solid #c2c2c2;
background: #FFFFFF;
}
.tab li {
width: 50%;
font-size: 0.36rem;
line-height: 0.36rem;
text-align: center;
}
.tab li a {
display: inline-block;
padding: 0.4rem 0;
position: relative;
top: 1px;
}
.line {
position: absolute;
width: 0;
height: 2px;
background-color: #30a5dd;
bottom: 0;
left: 0;
}
.tab_ul{
padding: 0 0.24rem;
}
.other_list{
text-align: center;
margin-top: 0.4rem;
}
.other_wx{
width: 0.85rem;
height: 0.7rem;
}
@media only screen and (min-width: 1024px) {
[class*="icheck-"] > input + label::before{
top: 0.02rem;
}
} | 0.315736 | 0.055618 |
.background_glassyLinen4,
.hover_background_glassyLinen4:hover,
.active_background_glassyLinen4:active:hover {
background: #db934c;
background-image: -moz-linear-gradient(top, rgb(214, 133, 51) 0%, rgb(197, 118, 39) 50%, rgb(172, 103, 34) 55%, rgb(219, 147, 76) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(214, 133, 51)), color-stop(50%, rgb(197, 118, 39)), color-stop(55%, rgb(172, 103, 34)), color-stop(100%, rgb(219, 147, 76)));
background-image: -webkit-linear-gradient(top, rgb(214, 133, 51) 0%, rgb(197, 118, 39) 50%, rgb(172, 103, 34) 55%, rgb(219, 147, 76) 100%);
background-image: -o-linear-gradient(top, rgb(214, 133, 51) 0%, rgb(197, 118, 39) 50%, rgb(172, 103, 34) 55%, rgb(219, 147, 76) 100%);
background-image: -ms-linear-gradient(top, rgb(214, 133, 51) 0%, rgb(197, 118, 39) 50%, rgb(172, 103, 34) 55%, rgb(219, 147, 76) 100%);
background-image: linear-gradient(to bottom, rgb(214, 133, 51) 0%, rgb(197, 118, 39) 50%, rgb(172, 103, 34) 55%, rgb(219, 147, 76) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d68533', endColorstr='#db934c',GradientType=0 );
}
.background_glassyLinen4h,
.hover_background_glassyLinen4h:hover,
.active_background_glassyLinen4h:active:hover {
background: #db934c;
background-image: -moz-linear-gradient(top, rgb(223, 159, 95) 0%, rgb(217, 141, 66) 50%, rgb(206, 124, 41) 55%, rgb(229, 177, 125) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(223, 159, 95)), color-stop(50%, rgb(217, 141, 66)), color-stop(55%, rgb(206, 124, 41)), color-stop(100%, rgb(229, 177, 125)));
background-image: -webkit-linear-gradient(top, rgb(223, 159, 95) 0%, rgb(217, 141, 66) 50%, rgb(206, 124, 41) 55%, rgb(229, 177, 125) 100%);
background-image: -o-linear-gradient(top, rgb(223, 159, 95) 0%, rgb(217, 141, 66) 50%, rgb(206, 124, 41) 55%, rgb(229, 177, 125) 100%);
background-image: -ms-linear-gradient(top, rgb(223, 159, 95) 0%, rgb(217, 141, 66) 50%, rgb(206, 124, 41) 55%, rgb(229, 177, 125) 100%);
background-image: linear-gradient(to bottom, rgb(223, 159, 95) 0%, rgb(217, 141, 66) 50%, rgb(206, 124, 41) 55%, rgb(229, 177, 125) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#df9f5f', endColorstr='#e5b17d',GradientType=0 );
}
.background_glassyLinen4a,
.hover_background_glassyLinen4a:hover,
.active_background_glassyLinen4a:active:hover {
background: #db934c;
background-image: -moz-linear-gradient(top, rgb(229, 177, 125) 0%, rgb(206, 124, 41) 50%, rgb(217, 141, 66) 55%, rgb(223, 159, 95) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(229, 177, 125)), color-stop(50%, rgb(206, 124, 41)), color-stop(55%, rgb(217, 141, 66)), color-stop(100%, rgb(223, 159, 95)));
background-image: -webkit-linear-gradient(top, rgb(229, 177, 125) 0%, rgb(206, 124, 41) 50%, rgb(217, 141, 66) 55%, rgb(223, 159, 95) 100%);
background-image: -o-linear-gradient(top, rgb(229, 177, 125) 0%, rgb(206, 124, 41) 50%, rgb(217, 141, 66) 55%, rgb(223, 159, 95) 100%);
background-image: -ms-linear-gradient(top, rgb(229, 177, 125) 0%, rgb(206, 124, 41) 50%, rgb(217, 141, 66) 55%, rgb(223, 159, 95) 100%);
background-image: linear-gradient(to bottom, rgb(229, 177, 125) 0%, rgb(206, 124, 41) 50%, rgb(217, 141, 66) 55%, rgb(223, 159, 95) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5b17d', endColorstr='#df9f5f',GradientType=0 );
}
.background_glassyLinen4s,
.hover_background_glassyLinen4s:hover,
.active_background_glassyLinen4s:active:hover {
background: #db934c;
background-image: -moz-linear-gradient(top, rgb(236, 199, 162) 0%, rgb(229, 177, 125) 50%, rgb(222, 155, 88) 55%, rgb(244, 221, 198) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(236, 199, 162)), color-stop(50%, rgb(229, 177, 125)), color-stop(55%, rgb(222, 155, 88)), color-stop(100%, rgb(244, 221, 198)));
background-image: -webkit-linear-gradient(top, rgb(236, 199, 162) 0%, rgb(229, 177, 125) 50%, rgb(222, 155, 88) 55%, rgb(244, 221, 198) 100%);
background-image: -o-linear-gradient(top, rgb(236, 199, 162) 0%, rgb(229, 177, 125) 50%, rgb(222, 155, 88) 55%, rgb(244, 221, 198) 100%);
background-image: -ms-linear-gradient(top, rgb(236, 199, 162) 0%, rgb(229, 177, 125) 50%, rgb(222, 155, 88) 55%, rgb(244, 221, 198) 100%);
background-image: linear-gradient(to bottom, rgb(236, 199, 162) 0%, rgb(229, 177, 125) 50%, rgb(222, 155, 88) 55%, rgb(244, 221, 198) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ecc7a2', endColorstr='#f4ddc6',GradientType=0 );
}
.background_color_glassyLinen4,
.hover_background_color_glassyLinen4:hover,
.active_background_color_glassyLinen4:active:hover {
background-color:#db934c;
}
.background_first_color_glassyLinen4,
.hover_background_first_color_glassyLinen4:hover,
.active_background_first_color_glassyLinen4:active:hover {
background-color:#d68533;
}
.background_last_color_glassyLinen4,
.hover_background_last_color_glassyLinen4:hover,
.active_background_color_last_glassyLinen4:active:hover {
background-color:#db934c;
}
/* ------------------------------ color settings -------------------------------*/
.color_glassyLinen4,
.hover_color_glassyLinen4:hover,
.active_color_glassyLinen4:active:hover {
color: #282828;
}
.color_glassyLinen4h,
.hover_color_glassyLinen4h:hover,
.active_color_glassyLinen4h:active:hover {
color: #282828;
}
.color_glassyLinen4a,
.hover_color_glassyLinen4a:hover,
.active_color_glassyLinen4a:active:hover {
color: #ff0;
}
.color_glassyLinen4s,
.hover_color_glassyLinen4s:hover,
.active_color_glassyLinen4s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_glassyLinen4,
.hover_border_glassyLinen4:hover,
.active_border_glassyLinen4:active:hover {
border-color: #b16a23 #93581d #93581d #b16a23;
}
.border_glassyLinen4h,
.hover_border_glassyLinen4h:hover,
.active_border_glassyLinen4h:active:hover {
border-color: #b16a23 #93581d #93581d #b16a23;
}
.border_glassyLinen4a,
.hover_border_glassyLinen4a:hover,
.active_border_glassyLinen4a:active:hover {
border-color: #8a531c #8a531c #8a531c #8a531c;
}
.border_glassyLinen4s,
.hover_border_glassyLinen4s:hover,
.active_border_glassyLinen4s:active:hover {
border-color: #8a531c #8a531c #8a531c #8a531c;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_glassyLinen4,
.hover_shadow_expand_glassyLinen4:hover,
.active_shadow_expand_glassyLinen4:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(219, 147, 76, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(219, 147, 76, .39);
box-shadow: 0em 0em 1em 0.25em rgba(219, 147, 76, .39);
}
.shadow_expand_glassyLinen4h,
.hover_shadow_expand_glassyLinen4h:hover,
.active_shadow_expand_glassyLinen4h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(229, 177, 125, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(229, 177, 125, .50);
box-shadow: 0em 0em 1em 0.25em rgba(229, 177, 125, .50);
}
.shadow_expand_glassyLinen4a,
.hover_shadow_expand_glassyLinen4a:hover,
.active_shadow_expand_glassyLinen4a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(223, 159, 95, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(223, 159, 95, .63);
box-shadow: 0em 0em 1em 0.25em rgba(223, 159, 95, .63);
}
.shadow_expand_glassyLinen4s,
.hover_shadow_expand_glassyLinen4s:hover,
.active_shadow_expand_glassyLinen4s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(223, 159, 95, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(223, 159, 95, .78);
box-shadow: 0em 0em 1em 0.25em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_glassyLinen4,
.hover_shadow_left_glassyLinen4:hover,
.active_shadow_left_glassyLinen4:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(219, 147, 76, .39);
box-shadow: -0.5em -0.5em 1em rgba(219, 147, 76, .39);
}
.shadow_left_glassyLinen4h,
.hover_shadow_left_glassyLinen4h:hover,
.active_shadow_left_glassyLinen4h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(229, 177, 125, .50);
box-shadow: -0.5em -0.5em 1em rgba(229, 177, 125, .50);
}
.shadow_left_glassyLinen4a,
.hover_shadow_left_glassyLinen4a:hover,
.active_shadow_left_glassyLinen4a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .63);
box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .63);
}
.shadow_left_glassyLinen4s,
.hover_shadow_left_glassyLinen4s:hover,
.active_shadow_left_glassyLinen4s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .78);
box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_glassyLinen4,
.hover_shadow_right_glassyLinen4:hover,
.active_shadow_right_glassyLinen4:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(219, 147, 76, .39);
box-shadow: 0.5em 0em 1em rgba(219, 147, 76, .39);
}
.shadow_right_glassyLinen4h,
.hover_shadow_right_glassyLinen4h:hover,
.active_shadow_right_glassyLinen4h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(229, 177, 125, .50);
box-shadow: 0.5em 0em 1em rgba(229, 177, 125, .50);
}
.shadow_right_glassyLinen4a,
.hover_shadow_right_glassyLinen4a:hover,
.active_shadow_right_glassyLinen4a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(223, 159, 95, .63);
box-shadow: 0.5em 0em 1em rgba(223, 159, 95, .63);
}
.shadow_right_glassyLinen4s,
.hover_shadow_right_glassyLinen4s:hover,
.active_shadow_right_glassyLinen4s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(223, 159, 95, .78);
box-shadow: 0.5em 0em 1em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_glassyLinen4,
.hover_shadow_top_glassyLinen4:hover,
.active_shadow_top_glassyLinen4:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(219, 147, 76, .39);
box-shadow: 0em -0.5em 1em rgba(219, 147, 76, .39);
}
.shadow_top_glassyLinen4h,
.hover_shadow_top_glassyLinen4h:hover,
.active_shadow_top_glassyLinen4h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(229, 177, 125, .50);
box-shadow: 0em -0.5em 1em rgba(229, 177, 125, .50);
}
.shadow_top_glassyLinen4a,
.hover_shadow_top_glassyLinen4a:hover,
.active_shadow_top_glassyLinen4a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(223, 159, 95, .63);
box-shadow: 0em -0.5em 1em rgba(223, 159, 95, .63);
}
.shadow_top_glassyLinen4s,
.hover_shadow_top_glassyLinen4s:hover,
.active_shadow_top_glassyLinen4s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(223, 159, 95, .78);
box-shadow: 0em -0.5em 1em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_glassyLinen4,
.hover_shadow_bottom_glassyLinen4:hover,
.active_shadow_bottom_glassyLinen4:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(219, 147, 76, .39);
box-shadow: 0em 0.5em 1em rgba(219, 147, 76, .39);
}
.shadow_bottom_glassyLinen4h,
.hover_shadow_bottom_glassyLinen4h:hover,
.active_shadow_bottom_glassyLinen4h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(229, 177, 125, .50);
box-shadow: 0em 0.5em 1em rgba(229, 177, 125, .50);
}
.shadow_bottom_glassyLinen4a,
.hover_shadow_bottom_glassyLinen4a:hover,
.active_shadow_bottom_glassyLinen4a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(223, 159, 95, .63);
box-shadow: 0em 0.5em 1em rgba(223, 159, 95, .63);
}
.shadow_bottom_glassyLinen4s,
.hover_shadow_bottom_glassyLinen4s:hover,
.active_shadow_bottom_glassyLinen4s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(223, 159, 95, .78);
box-shadow: 0em 0.5em 1em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_glassyLinen4,
.hover_shadow_top_left_glassyLinen4:hover,
.active_shadow_top_left_glassyLinen4:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(219, 147, 76, .39);
box-shadow: -0.5em -0.5em 1em rgba(219, 147, 76, .39);
}
.shadow_top_left_glassyLinen4h,
.hover_shadow_top_left_glassyLinen4h:hover,
.active_shadow_top_left_glassyLinen4h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(229, 177, 125, .50);
box-shadow: -0.5em -0.5em 1em rgba(229, 177, 125, .50);
}
.shadow_top_left_glassyLinen4a,
.hover_shadow_top_left_glassyLinen4a:hover,
.active_shadow_top_left_glassyLinen4a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .63);
box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .63);
}
.shadow_top_left_glassyLinen4s,
.hover_shadow_top_left_glassyLinen4s:hover,
.active_shadow_top_left_glassyLinen4s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .78);
box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_glassyLinen4,
.hover_shadow_top_right_glassyLinen4:hover,
.active_shadow_top_right_glassyLinen4:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(219, 147, 76, .39);
box-shadow: 0.5em -0.5em 1em rgba(219, 147, 76, .39);
}
.shadow_top_right_glassyLinen4h,
.hover_shadow_top_right_glassyLinen4h:hover,
.active_shadow_top_right_glassyLinen4h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(229, 177, 125, .50);
box-shadow: 0.5em -0.5em 1em rgba(229, 177, 125, .50);
}
.shadow_top_right_glassyLinen4a,
.hover_shadow_top_right_glassyLinen4a:hover,
.active_shadow_top_right_glassyLinen4a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(223, 159, 95, .63);
box-shadow: 0.5em -0.5em 1em rgba(223, 159, 95, .63);
}
.shadow_top_right_glassyLinen4s,
.hover_shadow_top_right_glassyLinen4s:hover,
.active_shadow_top_right_glassyLinen4s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(223, 159, 95, .78);
box-shadow: 0.5em -0.5em 1em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_glassyLinen4,
.hover_shadow_bottom_left_glassyLinen4:hover,
.active_shadow_bottom_left_glassyLinen4:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(219, 147, 76, .39);
box-shadow: -0.5em 0.5em 1em rgba(219, 147, 76, .39);
}
.shadow_bottom_left_glassyLinen4h,
.hover_shadow_bottom_left_glassyLinen4h:hover,
.active_shadow_bottom_left_glassyLinen4h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(229, 177, 125, .50);
box-shadow: -0.5em 0.5em 1em rgba(229, 177, 125, .50);
}
.shadow_bottom_left_glassyLinen4a,
.hover_shadow_bottom_left_glassyLinen4a:hover,
.active_shadow_bottom_left_glassyLinen4a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(223, 159, 95, .63);
box-shadow: -0.5em 0.5em 1em rgba(223, 159, 95, .63);
}
.shadow_bottom_left_glassyLinen4s,
.hover_shadow_bottom_left_glassyLinen4s:hover,
.active_shadow_bottom_left_glassyLinen4s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(223, 159, 95, .78);
box-shadow: -0.5em 0.5em 1em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_glassyLinen4,
.hover_shadow_bottom_right_glassyLinen4:hover,
.active_shadow_bottom_right_glassyLinen4:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(219, 147, 76, .39);
box-shadow: 0.5em 0.5em 1em rgba(219, 147, 76, .39);
}
.shadow_bottom_right_glassyLinen4h,
.hover_shadow_bottom_right_glassyLinen4h:hover,
.active_shadow_bottom_right_glassyLinen4h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(229, 177, 125, .50);
box-shadow: 0.5em 0.5em 1em rgba(229, 177, 125, .50);
}
.shadow_bottom_right_glassyLinen4a,
.hover_shadow_bottom_right_glassyLinen4a:hover,
.active_shadow_bottom_right_glassyLinen4a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(223, 159, 95, .63);
box-shadow: 0.5em 0.5em 1em rgba(223, 159, 95, .63);
}
.shadow_bottom_right_glassyLinen4s,
.hover_shadow_bottom_right_glassyLinen4s:hover,
.active_shadow_bottom_right_glassyLinen4s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(223, 159, 95, .78);
box-shadow: 0.5em 0.5em 1em rgba(223, 159, 95, .78);
} | widgets/common/assets/gradients/glassy/glassyLinen/glassyLinen4.css | .background_glassyLinen4,
.hover_background_glassyLinen4:hover,
.active_background_glassyLinen4:active:hover {
background: #db934c;
background-image: -moz-linear-gradient(top, rgb(214, 133, 51) 0%, rgb(197, 118, 39) 50%, rgb(172, 103, 34) 55%, rgb(219, 147, 76) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(214, 133, 51)), color-stop(50%, rgb(197, 118, 39)), color-stop(55%, rgb(172, 103, 34)), color-stop(100%, rgb(219, 147, 76)));
background-image: -webkit-linear-gradient(top, rgb(214, 133, 51) 0%, rgb(197, 118, 39) 50%, rgb(172, 103, 34) 55%, rgb(219, 147, 76) 100%);
background-image: -o-linear-gradient(top, rgb(214, 133, 51) 0%, rgb(197, 118, 39) 50%, rgb(172, 103, 34) 55%, rgb(219, 147, 76) 100%);
background-image: -ms-linear-gradient(top, rgb(214, 133, 51) 0%, rgb(197, 118, 39) 50%, rgb(172, 103, 34) 55%, rgb(219, 147, 76) 100%);
background-image: linear-gradient(to bottom, rgb(214, 133, 51) 0%, rgb(197, 118, 39) 50%, rgb(172, 103, 34) 55%, rgb(219, 147, 76) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d68533', endColorstr='#db934c',GradientType=0 );
}
.background_glassyLinen4h,
.hover_background_glassyLinen4h:hover,
.active_background_glassyLinen4h:active:hover {
background: #db934c;
background-image: -moz-linear-gradient(top, rgb(223, 159, 95) 0%, rgb(217, 141, 66) 50%, rgb(206, 124, 41) 55%, rgb(229, 177, 125) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(223, 159, 95)), color-stop(50%, rgb(217, 141, 66)), color-stop(55%, rgb(206, 124, 41)), color-stop(100%, rgb(229, 177, 125)));
background-image: -webkit-linear-gradient(top, rgb(223, 159, 95) 0%, rgb(217, 141, 66) 50%, rgb(206, 124, 41) 55%, rgb(229, 177, 125) 100%);
background-image: -o-linear-gradient(top, rgb(223, 159, 95) 0%, rgb(217, 141, 66) 50%, rgb(206, 124, 41) 55%, rgb(229, 177, 125) 100%);
background-image: -ms-linear-gradient(top, rgb(223, 159, 95) 0%, rgb(217, 141, 66) 50%, rgb(206, 124, 41) 55%, rgb(229, 177, 125) 100%);
background-image: linear-gradient(to bottom, rgb(223, 159, 95) 0%, rgb(217, 141, 66) 50%, rgb(206, 124, 41) 55%, rgb(229, 177, 125) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#df9f5f', endColorstr='#e5b17d',GradientType=0 );
}
.background_glassyLinen4a,
.hover_background_glassyLinen4a:hover,
.active_background_glassyLinen4a:active:hover {
background: #db934c;
background-image: -moz-linear-gradient(top, rgb(229, 177, 125) 0%, rgb(206, 124, 41) 50%, rgb(217, 141, 66) 55%, rgb(223, 159, 95) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(229, 177, 125)), color-stop(50%, rgb(206, 124, 41)), color-stop(55%, rgb(217, 141, 66)), color-stop(100%, rgb(223, 159, 95)));
background-image: -webkit-linear-gradient(top, rgb(229, 177, 125) 0%, rgb(206, 124, 41) 50%, rgb(217, 141, 66) 55%, rgb(223, 159, 95) 100%);
background-image: -o-linear-gradient(top, rgb(229, 177, 125) 0%, rgb(206, 124, 41) 50%, rgb(217, 141, 66) 55%, rgb(223, 159, 95) 100%);
background-image: -ms-linear-gradient(top, rgb(229, 177, 125) 0%, rgb(206, 124, 41) 50%, rgb(217, 141, 66) 55%, rgb(223, 159, 95) 100%);
background-image: linear-gradient(to bottom, rgb(229, 177, 125) 0%, rgb(206, 124, 41) 50%, rgb(217, 141, 66) 55%, rgb(223, 159, 95) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5b17d', endColorstr='#df9f5f',GradientType=0 );
}
.background_glassyLinen4s,
.hover_background_glassyLinen4s:hover,
.active_background_glassyLinen4s:active:hover {
background: #db934c;
background-image: -moz-linear-gradient(top, rgb(236, 199, 162) 0%, rgb(229, 177, 125) 50%, rgb(222, 155, 88) 55%, rgb(244, 221, 198) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(236, 199, 162)), color-stop(50%, rgb(229, 177, 125)), color-stop(55%, rgb(222, 155, 88)), color-stop(100%, rgb(244, 221, 198)));
background-image: -webkit-linear-gradient(top, rgb(236, 199, 162) 0%, rgb(229, 177, 125) 50%, rgb(222, 155, 88) 55%, rgb(244, 221, 198) 100%);
background-image: -o-linear-gradient(top, rgb(236, 199, 162) 0%, rgb(229, 177, 125) 50%, rgb(222, 155, 88) 55%, rgb(244, 221, 198) 100%);
background-image: -ms-linear-gradient(top, rgb(236, 199, 162) 0%, rgb(229, 177, 125) 50%, rgb(222, 155, 88) 55%, rgb(244, 221, 198) 100%);
background-image: linear-gradient(to bottom, rgb(236, 199, 162) 0%, rgb(229, 177, 125) 50%, rgb(222, 155, 88) 55%, rgb(244, 221, 198) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ecc7a2', endColorstr='#f4ddc6',GradientType=0 );
}
.background_color_glassyLinen4,
.hover_background_color_glassyLinen4:hover,
.active_background_color_glassyLinen4:active:hover {
background-color:#db934c;
}
.background_first_color_glassyLinen4,
.hover_background_first_color_glassyLinen4:hover,
.active_background_first_color_glassyLinen4:active:hover {
background-color:#d68533;
}
.background_last_color_glassyLinen4,
.hover_background_last_color_glassyLinen4:hover,
.active_background_color_last_glassyLinen4:active:hover {
background-color:#db934c;
}
/* ------------------------------ color settings -------------------------------*/
.color_glassyLinen4,
.hover_color_glassyLinen4:hover,
.active_color_glassyLinen4:active:hover {
color: #282828;
}
.color_glassyLinen4h,
.hover_color_glassyLinen4h:hover,
.active_color_glassyLinen4h:active:hover {
color: #282828;
}
.color_glassyLinen4a,
.hover_color_glassyLinen4a:hover,
.active_color_glassyLinen4a:active:hover {
color: #ff0;
}
.color_glassyLinen4s,
.hover_color_glassyLinen4s:hover,
.active_color_glassyLinen4s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_glassyLinen4,
.hover_border_glassyLinen4:hover,
.active_border_glassyLinen4:active:hover {
border-color: #b16a23 #93581d #93581d #b16a23;
}
.border_glassyLinen4h,
.hover_border_glassyLinen4h:hover,
.active_border_glassyLinen4h:active:hover {
border-color: #b16a23 #93581d #93581d #b16a23;
}
.border_glassyLinen4a,
.hover_border_glassyLinen4a:hover,
.active_border_glassyLinen4a:active:hover {
border-color: #8a531c #8a531c #8a531c #8a531c;
}
.border_glassyLinen4s,
.hover_border_glassyLinen4s:hover,
.active_border_glassyLinen4s:active:hover {
border-color: #8a531c #8a531c #8a531c #8a531c;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_glassyLinen4,
.hover_shadow_expand_glassyLinen4:hover,
.active_shadow_expand_glassyLinen4:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(219, 147, 76, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(219, 147, 76, .39);
box-shadow: 0em 0em 1em 0.25em rgba(219, 147, 76, .39);
}
.shadow_expand_glassyLinen4h,
.hover_shadow_expand_glassyLinen4h:hover,
.active_shadow_expand_glassyLinen4h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(229, 177, 125, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(229, 177, 125, .50);
box-shadow: 0em 0em 1em 0.25em rgba(229, 177, 125, .50);
}
.shadow_expand_glassyLinen4a,
.hover_shadow_expand_glassyLinen4a:hover,
.active_shadow_expand_glassyLinen4a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(223, 159, 95, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(223, 159, 95, .63);
box-shadow: 0em 0em 1em 0.25em rgba(223, 159, 95, .63);
}
.shadow_expand_glassyLinen4s,
.hover_shadow_expand_glassyLinen4s:hover,
.active_shadow_expand_glassyLinen4s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(223, 159, 95, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(223, 159, 95, .78);
box-shadow: 0em 0em 1em 0.25em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_glassyLinen4,
.hover_shadow_left_glassyLinen4:hover,
.active_shadow_left_glassyLinen4:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(219, 147, 76, .39);
box-shadow: -0.5em -0.5em 1em rgba(219, 147, 76, .39);
}
.shadow_left_glassyLinen4h,
.hover_shadow_left_glassyLinen4h:hover,
.active_shadow_left_glassyLinen4h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(229, 177, 125, .50);
box-shadow: -0.5em -0.5em 1em rgba(229, 177, 125, .50);
}
.shadow_left_glassyLinen4a,
.hover_shadow_left_glassyLinen4a:hover,
.active_shadow_left_glassyLinen4a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .63);
box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .63);
}
.shadow_left_glassyLinen4s,
.hover_shadow_left_glassyLinen4s:hover,
.active_shadow_left_glassyLinen4s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .78);
box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_glassyLinen4,
.hover_shadow_right_glassyLinen4:hover,
.active_shadow_right_glassyLinen4:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(219, 147, 76, .39);
box-shadow: 0.5em 0em 1em rgba(219, 147, 76, .39);
}
.shadow_right_glassyLinen4h,
.hover_shadow_right_glassyLinen4h:hover,
.active_shadow_right_glassyLinen4h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(229, 177, 125, .50);
box-shadow: 0.5em 0em 1em rgba(229, 177, 125, .50);
}
.shadow_right_glassyLinen4a,
.hover_shadow_right_glassyLinen4a:hover,
.active_shadow_right_glassyLinen4a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(223, 159, 95, .63);
box-shadow: 0.5em 0em 1em rgba(223, 159, 95, .63);
}
.shadow_right_glassyLinen4s,
.hover_shadow_right_glassyLinen4s:hover,
.active_shadow_right_glassyLinen4s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(223, 159, 95, .78);
box-shadow: 0.5em 0em 1em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_glassyLinen4,
.hover_shadow_top_glassyLinen4:hover,
.active_shadow_top_glassyLinen4:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(219, 147, 76, .39);
box-shadow: 0em -0.5em 1em rgba(219, 147, 76, .39);
}
.shadow_top_glassyLinen4h,
.hover_shadow_top_glassyLinen4h:hover,
.active_shadow_top_glassyLinen4h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(229, 177, 125, .50);
box-shadow: 0em -0.5em 1em rgba(229, 177, 125, .50);
}
.shadow_top_glassyLinen4a,
.hover_shadow_top_glassyLinen4a:hover,
.active_shadow_top_glassyLinen4a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(223, 159, 95, .63);
box-shadow: 0em -0.5em 1em rgba(223, 159, 95, .63);
}
.shadow_top_glassyLinen4s,
.hover_shadow_top_glassyLinen4s:hover,
.active_shadow_top_glassyLinen4s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(223, 159, 95, .78);
box-shadow: 0em -0.5em 1em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_glassyLinen4,
.hover_shadow_bottom_glassyLinen4:hover,
.active_shadow_bottom_glassyLinen4:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(219, 147, 76, .39);
box-shadow: 0em 0.5em 1em rgba(219, 147, 76, .39);
}
.shadow_bottom_glassyLinen4h,
.hover_shadow_bottom_glassyLinen4h:hover,
.active_shadow_bottom_glassyLinen4h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(229, 177, 125, .50);
box-shadow: 0em 0.5em 1em rgba(229, 177, 125, .50);
}
.shadow_bottom_glassyLinen4a,
.hover_shadow_bottom_glassyLinen4a:hover,
.active_shadow_bottom_glassyLinen4a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(223, 159, 95, .63);
box-shadow: 0em 0.5em 1em rgba(223, 159, 95, .63);
}
.shadow_bottom_glassyLinen4s,
.hover_shadow_bottom_glassyLinen4s:hover,
.active_shadow_bottom_glassyLinen4s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(223, 159, 95, .78);
box-shadow: 0em 0.5em 1em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_glassyLinen4,
.hover_shadow_top_left_glassyLinen4:hover,
.active_shadow_top_left_glassyLinen4:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(219, 147, 76, .39);
box-shadow: -0.5em -0.5em 1em rgba(219, 147, 76, .39);
}
.shadow_top_left_glassyLinen4h,
.hover_shadow_top_left_glassyLinen4h:hover,
.active_shadow_top_left_glassyLinen4h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(229, 177, 125, .50);
box-shadow: -0.5em -0.5em 1em rgba(229, 177, 125, .50);
}
.shadow_top_left_glassyLinen4a,
.hover_shadow_top_left_glassyLinen4a:hover,
.active_shadow_top_left_glassyLinen4a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .63);
box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .63);
}
.shadow_top_left_glassyLinen4s,
.hover_shadow_top_left_glassyLinen4s:hover,
.active_shadow_top_left_glassyLinen4s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .78);
box-shadow: -0.5em -0.5em 1em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_glassyLinen4,
.hover_shadow_top_right_glassyLinen4:hover,
.active_shadow_top_right_glassyLinen4:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(219, 147, 76, .39);
box-shadow: 0.5em -0.5em 1em rgba(219, 147, 76, .39);
}
.shadow_top_right_glassyLinen4h,
.hover_shadow_top_right_glassyLinen4h:hover,
.active_shadow_top_right_glassyLinen4h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(229, 177, 125, .50);
box-shadow: 0.5em -0.5em 1em rgba(229, 177, 125, .50);
}
.shadow_top_right_glassyLinen4a,
.hover_shadow_top_right_glassyLinen4a:hover,
.active_shadow_top_right_glassyLinen4a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(223, 159, 95, .63);
box-shadow: 0.5em -0.5em 1em rgba(223, 159, 95, .63);
}
.shadow_top_right_glassyLinen4s,
.hover_shadow_top_right_glassyLinen4s:hover,
.active_shadow_top_right_glassyLinen4s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(223, 159, 95, .78);
box-shadow: 0.5em -0.5em 1em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_glassyLinen4,
.hover_shadow_bottom_left_glassyLinen4:hover,
.active_shadow_bottom_left_glassyLinen4:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(219, 147, 76, .39);
box-shadow: -0.5em 0.5em 1em rgba(219, 147, 76, .39);
}
.shadow_bottom_left_glassyLinen4h,
.hover_shadow_bottom_left_glassyLinen4h:hover,
.active_shadow_bottom_left_glassyLinen4h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(229, 177, 125, .50);
box-shadow: -0.5em 0.5em 1em rgba(229, 177, 125, .50);
}
.shadow_bottom_left_glassyLinen4a,
.hover_shadow_bottom_left_glassyLinen4a:hover,
.active_shadow_bottom_left_glassyLinen4a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(223, 159, 95, .63);
box-shadow: -0.5em 0.5em 1em rgba(223, 159, 95, .63);
}
.shadow_bottom_left_glassyLinen4s,
.hover_shadow_bottom_left_glassyLinen4s:hover,
.active_shadow_bottom_left_glassyLinen4s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(223, 159, 95, .78);
box-shadow: -0.5em 0.5em 1em rgba(223, 159, 95, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_glassyLinen4,
.hover_shadow_bottom_right_glassyLinen4:hover,
.active_shadow_bottom_right_glassyLinen4:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(219, 147, 76, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(219, 147, 76, .39);
box-shadow: 0.5em 0.5em 1em rgba(219, 147, 76, .39);
}
.shadow_bottom_right_glassyLinen4h,
.hover_shadow_bottom_right_glassyLinen4h:hover,
.active_shadow_bottom_right_glassyLinen4h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(229, 177, 125, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(229, 177, 125, .50);
box-shadow: 0.5em 0.5em 1em rgba(229, 177, 125, .50);
}
.shadow_bottom_right_glassyLinen4a,
.hover_shadow_bottom_right_glassyLinen4a:hover,
.active_shadow_bottom_right_glassyLinen4a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(223, 159, 95, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(223, 159, 95, .63);
box-shadow: 0.5em 0.5em 1em rgba(223, 159, 95, .63);
}
.shadow_bottom_right_glassyLinen4s,
.hover_shadow_bottom_right_glassyLinen4s:hover,
.active_shadow_bottom_right_glassyLinen4s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(223, 159, 95, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(223, 159, 95, .78);
box-shadow: 0.5em 0.5em 1em rgba(223, 159, 95, .78);
} | 0.509032 | 0.108756 |
@charset "UTF-8";
#main_reg .pathHome {
width: 1200px;
float: left;
color: #959595;
line-height: 40px;
}
#main_reg .pathHome a {
color: #959595;
}
#main_reg .reg_bottom {
padding-bottom: 25px;
}
#main_reg .reg_bottom .register {
float: left;
width: 460px;
border: 1px solid #ddd;
margin-bottom: 50px;
height: auto !important;
min-height: 388px;
}
#main_reg .reg_bottom .register .tit {
position: relative;
padding: 35px !important;
}
#main_reg .reg_bottom .register .tit p.ico01 {
float: left;
background: url("../images/regicon.png") no-repeat;
background-position: 0 0;
font: 400 18px/30px "Microsoft YaHei";
padding-left: 40px;
margin: 0 35px 35px 0;
}
#main_reg .reg_bottom .register .register_box {
padding: 0 30px;
float: left;
width: 400px;
}
#main_reg .reg_bottom .register .register_box dl {
/*手机号\验证、密码公共*/
float: left;
width: 398px;
border: 1px solid #ddd;
margin-bottom: 30px;
padding: 7px 0;
position: relative;
}
#main_reg .reg_bottom .register .register_box dl.yanzhengma {
border: 0px;
}
#main_reg .reg_bottom .register .register_box dl .yes {
background-position: 0 -102px;
}
#main_reg .reg_bottom .register .register_box dl .no {
background-position: 0 -137px;
}
#main_reg .reg_bottom .register .register_box dl i {
position: absolute;
top: 8px;
right: 10px;
width: 25px;
height: 25px;
background: url("../images/regicon.png") no-repeat;
}
#main_reg .reg_bottom .register .register_box dl p {
/*中文框*/
float: left;
width: 100px;
text-align: center;
border-right: 1px solid #ddd;
font: 400 14px/28px "Microsoft YaHei";
margin-right: 10px;
display: inline;
}
#main_reg .reg_bottom .register .register_box dl input {
/*输入框*/
font: 400 14px/28px "Microsoft YaHei";
width: 240px;
height: 28px;
color: #999;
}
#main_reg .reg_bottom .register .register_box dl dt {
float: left;
width: 258px;
border: 1px solid #ddd;
padding: 7px 0;
}
#main_reg .reg_bottom .register .register_box dl dt input {
font: 400 14px/28px "Microsoft YaHei";
width: 135px;
height: 28px;
border: 0;
}
#main_reg .reg_bottom .register .register_box dl dd {
float: right;
width: 130px;
}
#main_reg .reg_bottom .register .register_box dl dd .changeCode {
border: 1px solid #8ab700;
color: #8ab700;
display: block;
font: 400 14px/42px "Microsoft YaHei";
text-align: center;
width: auto;
height: 42px;
}
#main_reg .reg_bottom .register .register_box .tips {
/*错误提示信息*/
display: none;
position: absolute;
top: -30px;
left: 0;
line-height: 30px;
color: #ff6900;
}
#main_reg .reg_bottom .register .register_box .tips a {
color: #666;
margin-left: 5px;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng {
float: left;
width: 400px;
margin-bottom: 30px;
margin-top: -15px;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng p {
float: left;
width: 88px;
text-align: center;
border: 1px solid #ddd;
font: 400 14px/42px "Microsoft YaHei";
display: inline;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng .slide {
/*拖拽框*/
float: right;
position: relative;
height: 44px;
width: 300px;
background-color: #dcdcdc;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng .slide .chizi {
float: left;
width: 300px;
height: 44px;
margin: 0 auto;
background: #dcdcdc;
text-align: center;
line-height: 30px;
position: relative;
overflow: hidden;
font: 400 14px/44px "Microsoft YaHei";
color: #fff;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng .slide .chizi .fugai {
width: 298px;
height: 44px;
background: #8ab800;
position: absolute;
left: -246px;
top: 0;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng .slide .chizi .fugai .pullStop {
display: block;
width: 50px;
height: 40px;
border: 1px solid #8ab800;
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
background: url("../images/regicon.png") no-repeat 13px -94px #fff;
position: absolute;
right: 0;
top: 0;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng .slide .chizi .fugai .pullStop:hover {
opacity: 0.8;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng .slide .chizi .pullX {
display: block;
width: 50px;
height: 40px;
border: 1px solid #8ab800;
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
background: url("../images/regicon.png") no-repeat 12px -567px #fff;
position: absolute;
right: 0px;
top: 0;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng .slide .chizi .pullX:hover {
opacity: 0.8;
}
#main_reg .reg_bottom .register .register_box .yanzhengma {
/*验证码*/
width: 400px;
}
#main_reg .reg_bottom .register .register_box .choose {
float: left;
font: 400 14px/20px "Microsoft YaHei";
width: 100%;
margin-bottom: 20px;
position: relative;
}
#main_reg .reg_bottom .register .register_box .choose input {
float: left;
margin: 4px 8px 0 0;
}
#main_reg .reg_bottom .register .register_box .choose a {
color: #8ab700;
margin-left: 5px;
}
#main_reg .reg_bottom .register .register_box .btn a {
float: left;
width: 100%;
text-align: center;
font: 400 24px/58px "Microsoft YaHei";
color: #fff;
background-color: #ff6900;
}
#main_reg .reg_bottom .register .register_box .btn .no {
/*默认选项没选中时的btn样式*/
background-color: #bbb;
}
#main_reg .reg_bottom .register .register_box .yizhuce {
float: left;
width: 100%;
text-align: right;
font: 400 14px/35px "Microsoft YaHei";
padding-bottom: 25px;
}
#main_reg .reg_bottom .register .register_box .yizhuce a {
color: #8ab700;
margin-left: 5px;
}
#main_reg .reg_bottom .register .other {
/*其他登录方式*/
padding: 0 30px;
float: left;
width: 400px;
border-top: 5px solid #f4f4f4;
padding-bottom: 10px;
}
#main_reg .reg_bottom .register .other .text {
font: 400 14px/50px "Microsoft YaHei";
}
#main_reg .reg_bottom .register .other li em {
margin: 0 10px 10px 0;
padding: 0;
float: left;
}
#main_reg .reg_bottom .register .other li em a {
font: 400 12px/30px "宋体";
color: #666;
padding: 0 6px 0 32px;
display: block;
height: 30px;
border: 1px solid #eaeaea;
white-space: nowrap;
width: auto;
background: url("../images/regicon.png") no-repeat #fbfbfb;
}
#main_reg .reg_bottom .register .other li em a.ico01 {
background-position: 6px -197px;
}
#main_reg .reg_bottom .register .other li em a.ico02 {
background-position: 6px -227px;
}
#main_reg .reg_bottom .register .other li em a.ico03 {
background-position: 6px -257px;
}
#main_reg .reg_bottom .register .other li em a.ico04 {
background-position: 6px -537px;
}
#main_reg .reg_bottom .register .other li em a.ico05 {
background-position: 6px -757px;
}
#main_reg .reg_bottom .register .other li em a.ico06 {
background-position: 6px -807px;
}
/*# sourceMappingURL=register.css.map */ | src/css/register.css | @charset "UTF-8";
#main_reg .pathHome {
width: 1200px;
float: left;
color: #959595;
line-height: 40px;
}
#main_reg .pathHome a {
color: #959595;
}
#main_reg .reg_bottom {
padding-bottom: 25px;
}
#main_reg .reg_bottom .register {
float: left;
width: 460px;
border: 1px solid #ddd;
margin-bottom: 50px;
height: auto !important;
min-height: 388px;
}
#main_reg .reg_bottom .register .tit {
position: relative;
padding: 35px !important;
}
#main_reg .reg_bottom .register .tit p.ico01 {
float: left;
background: url("../images/regicon.png") no-repeat;
background-position: 0 0;
font: 400 18px/30px "Microsoft YaHei";
padding-left: 40px;
margin: 0 35px 35px 0;
}
#main_reg .reg_bottom .register .register_box {
padding: 0 30px;
float: left;
width: 400px;
}
#main_reg .reg_bottom .register .register_box dl {
/*手机号\验证、密码公共*/
float: left;
width: 398px;
border: 1px solid #ddd;
margin-bottom: 30px;
padding: 7px 0;
position: relative;
}
#main_reg .reg_bottom .register .register_box dl.yanzhengma {
border: 0px;
}
#main_reg .reg_bottom .register .register_box dl .yes {
background-position: 0 -102px;
}
#main_reg .reg_bottom .register .register_box dl .no {
background-position: 0 -137px;
}
#main_reg .reg_bottom .register .register_box dl i {
position: absolute;
top: 8px;
right: 10px;
width: 25px;
height: 25px;
background: url("../images/regicon.png") no-repeat;
}
#main_reg .reg_bottom .register .register_box dl p {
/*中文框*/
float: left;
width: 100px;
text-align: center;
border-right: 1px solid #ddd;
font: 400 14px/28px "Microsoft YaHei";
margin-right: 10px;
display: inline;
}
#main_reg .reg_bottom .register .register_box dl input {
/*输入框*/
font: 400 14px/28px "Microsoft YaHei";
width: 240px;
height: 28px;
color: #999;
}
#main_reg .reg_bottom .register .register_box dl dt {
float: left;
width: 258px;
border: 1px solid #ddd;
padding: 7px 0;
}
#main_reg .reg_bottom .register .register_box dl dt input {
font: 400 14px/28px "Microsoft YaHei";
width: 135px;
height: 28px;
border: 0;
}
#main_reg .reg_bottom .register .register_box dl dd {
float: right;
width: 130px;
}
#main_reg .reg_bottom .register .register_box dl dd .changeCode {
border: 1px solid #8ab700;
color: #8ab700;
display: block;
font: 400 14px/42px "Microsoft YaHei";
text-align: center;
width: auto;
height: 42px;
}
#main_reg .reg_bottom .register .register_box .tips {
/*错误提示信息*/
display: none;
position: absolute;
top: -30px;
left: 0;
line-height: 30px;
color: #ff6900;
}
#main_reg .reg_bottom .register .register_box .tips a {
color: #666;
margin-left: 5px;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng {
float: left;
width: 400px;
margin-bottom: 30px;
margin-top: -15px;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng p {
float: left;
width: 88px;
text-align: center;
border: 1px solid #ddd;
font: 400 14px/42px "Microsoft YaHei";
display: inline;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng .slide {
/*拖拽框*/
float: right;
position: relative;
height: 44px;
width: 300px;
background-color: #dcdcdc;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng .slide .chizi {
float: left;
width: 300px;
height: 44px;
margin: 0 auto;
background: #dcdcdc;
text-align: center;
line-height: 30px;
position: relative;
overflow: hidden;
font: 400 14px/44px "Microsoft YaHei";
color: #fff;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng .slide .chizi .fugai {
width: 298px;
height: 44px;
background: #8ab800;
position: absolute;
left: -246px;
top: 0;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng .slide .chizi .fugai .pullStop {
display: block;
width: 50px;
height: 40px;
border: 1px solid #8ab800;
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
background: url("../images/regicon.png") no-repeat 13px -94px #fff;
position: absolute;
right: 0;
top: 0;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng .slide .chizi .fugai .pullStop:hover {
opacity: 0.8;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng .slide .chizi .pullX {
display: block;
width: 50px;
height: 40px;
border: 1px solid #8ab800;
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
background: url("../images/regicon.png") no-repeat 12px -567px #fff;
position: absolute;
right: 0px;
top: 0;
}
#main_reg .reg_bottom .register .register_box .dragyanzheng .slide .chizi .pullX:hover {
opacity: 0.8;
}
#main_reg .reg_bottom .register .register_box .yanzhengma {
/*验证码*/
width: 400px;
}
#main_reg .reg_bottom .register .register_box .choose {
float: left;
font: 400 14px/20px "Microsoft YaHei";
width: 100%;
margin-bottom: 20px;
position: relative;
}
#main_reg .reg_bottom .register .register_box .choose input {
float: left;
margin: 4px 8px 0 0;
}
#main_reg .reg_bottom .register .register_box .choose a {
color: #8ab700;
margin-left: 5px;
}
#main_reg .reg_bottom .register .register_box .btn a {
float: left;
width: 100%;
text-align: center;
font: 400 24px/58px "Microsoft YaHei";
color: #fff;
background-color: #ff6900;
}
#main_reg .reg_bottom .register .register_box .btn .no {
/*默认选项没选中时的btn样式*/
background-color: #bbb;
}
#main_reg .reg_bottom .register .register_box .yizhuce {
float: left;
width: 100%;
text-align: right;
font: 400 14px/35px "Microsoft YaHei";
padding-bottom: 25px;
}
#main_reg .reg_bottom .register .register_box .yizhuce a {
color: #8ab700;
margin-left: 5px;
}
#main_reg .reg_bottom .register .other {
/*其他登录方式*/
padding: 0 30px;
float: left;
width: 400px;
border-top: 5px solid #f4f4f4;
padding-bottom: 10px;
}
#main_reg .reg_bottom .register .other .text {
font: 400 14px/50px "Microsoft YaHei";
}
#main_reg .reg_bottom .register .other li em {
margin: 0 10px 10px 0;
padding: 0;
float: left;
}
#main_reg .reg_bottom .register .other li em a {
font: 400 12px/30px "宋体";
color: #666;
padding: 0 6px 0 32px;
display: block;
height: 30px;
border: 1px solid #eaeaea;
white-space: nowrap;
width: auto;
background: url("../images/regicon.png") no-repeat #fbfbfb;
}
#main_reg .reg_bottom .register .other li em a.ico01 {
background-position: 6px -197px;
}
#main_reg .reg_bottom .register .other li em a.ico02 {
background-position: 6px -227px;
}
#main_reg .reg_bottom .register .other li em a.ico03 {
background-position: 6px -257px;
}
#main_reg .reg_bottom .register .other li em a.ico04 {
background-position: 6px -537px;
}
#main_reg .reg_bottom .register .other li em a.ico05 {
background-position: 6px -757px;
}
#main_reg .reg_bottom .register .other li em a.ico06 {
background-position: 6px -807px;
}
/*# sourceMappingURL=register.css.map */ | 0.254231 | 0.047162 |
.content-area {
color: var(--black);
h1:not(.section-heading),
h2:not(.section-heading),
h3:not(.section-heading),
h4:not(.section-heading),
blockquote {
color: var(--darkgrey);
max-width: 35ch;
}
li,
p {
max-width: 60ch;
}
}
.content-area-flush {
> *:first-child {
margin-top: 0;
}
}
.box {
margin: 0 calc(-1 * var(--side-margin));
border-radius: 0.74rem;
background: var(--white);
padding: 0.3rem var(--side-margin);
border-top: 1px solid var(--lessdarkoffwhite);
border-bottom: 1px solid var(--lessdarkoffwhite);
@media (min-width: 720px) {
box-shadow: var(--lg-hueless-shadow);
border: 1px solid var(--lessdarkoffwhite);
margin: 0;
padding: 0.3rem 1.5rem;
}
}
:root {
/* Hide squiggle by default. Page's CSS can overwrite this value */
--squiggle-display: none;
}
.squiggles {
position: relative;
display: var(--squiggle-display);
flex-grow: 1;
@media (min-width: 1020px) {
background: var(--squiggle-url) no-repeat center center;
background-size: contain;
&:before {
content: '';
display: block;
padding-top: 50%;
width: 100%;
float: left;
}
}
@media (prefers-color-scheme: dark) {
filter: contrast(0.7);
}
}
.heading {
margin-top: 0.6rem;
@media (min-width: 1020px) {
margin-top: 0;
display: grid;
grid-template-columns: 40% 1fr;
grid-column-gap: 4rem;
align-items: center;
}
}
.category {
@media (min-width: 1020px) {
display: grid;
grid-template-columns: 40% 1fr;
grid-column-gap: 4rem;
margin-bottom: 6rem;
}
}
.category-meta {
& > blockquote {
border-left: 0.25rem solid var(--blue);
margin: 0;
padding-left: 1rem;
font-weight: 500;
}
}
.category-heading {
color: var(--darkgrey);
grid-column: 1 / span 2;
}
.aside-content {
& > :first-child {
margin-top: 0;
}
}
.section-heading {
font: normal 1.76rem 'Google Sans', roboto, sans-serif;
line-height: 2rem;
color: var(--black);
font-weight: 500;
margin-top: 0;
margin-bottom: 1.14rem;
@media (min-width: 1440px) {
font-size: 1.8rem;
}
@media (min-width: 1700px) {
font-size: 2.28rem;
line-height: 2.28rem;
}
}
.section .divider {
border: none;
border-top: 1px solid var(--darkoffwhite);
margin: 2rem 0;
} | src/_includes/content.css | .content-area {
color: var(--black);
h1:not(.section-heading),
h2:not(.section-heading),
h3:not(.section-heading),
h4:not(.section-heading),
blockquote {
color: var(--darkgrey);
max-width: 35ch;
}
li,
p {
max-width: 60ch;
}
}
.content-area-flush {
> *:first-child {
margin-top: 0;
}
}
.box {
margin: 0 calc(-1 * var(--side-margin));
border-radius: 0.74rem;
background: var(--white);
padding: 0.3rem var(--side-margin);
border-top: 1px solid var(--lessdarkoffwhite);
border-bottom: 1px solid var(--lessdarkoffwhite);
@media (min-width: 720px) {
box-shadow: var(--lg-hueless-shadow);
border: 1px solid var(--lessdarkoffwhite);
margin: 0;
padding: 0.3rem 1.5rem;
}
}
:root {
/* Hide squiggle by default. Page's CSS can overwrite this value */
--squiggle-display: none;
}
.squiggles {
position: relative;
display: var(--squiggle-display);
flex-grow: 1;
@media (min-width: 1020px) {
background: var(--squiggle-url) no-repeat center center;
background-size: contain;
&:before {
content: '';
display: block;
padding-top: 50%;
width: 100%;
float: left;
}
}
@media (prefers-color-scheme: dark) {
filter: contrast(0.7);
}
}
.heading {
margin-top: 0.6rem;
@media (min-width: 1020px) {
margin-top: 0;
display: grid;
grid-template-columns: 40% 1fr;
grid-column-gap: 4rem;
align-items: center;
}
}
.category {
@media (min-width: 1020px) {
display: grid;
grid-template-columns: 40% 1fr;
grid-column-gap: 4rem;
margin-bottom: 6rem;
}
}
.category-meta {
& > blockquote {
border-left: 0.25rem solid var(--blue);
margin: 0;
padding-left: 1rem;
font-weight: 500;
}
}
.category-heading {
color: var(--darkgrey);
grid-column: 1 / span 2;
}
.aside-content {
& > :first-child {
margin-top: 0;
}
}
.section-heading {
font: normal 1.76rem 'Google Sans', roboto, sans-serif;
line-height: 2rem;
color: var(--black);
font-weight: 500;
margin-top: 0;
margin-bottom: 1.14rem;
@media (min-width: 1440px) {
font-size: 1.8rem;
}
@media (min-width: 1700px) {
font-size: 2.28rem;
line-height: 2.28rem;
}
}
.section .divider {
border: none;
border-top: 1px solid var(--darkoffwhite);
margin: 2rem 0;
} | 0.562537 | 0.17252 |
.checkbox label .toggle,.checkbox-inline .toggle{margin-left:-20px;margin-right:5px}
.toggle{position:relative;overflow:hidden; border-radius: 999px; }
.toggle input[type=checkbox]{display:none}
.toggle-group{position:absolute;width:200%;top:0;bottom:0;left:0;transition:left .35s;-webkit-transition:left .35s;-moz-user-select:none;-webkit-user-select:none; }
.toggle.off .toggle-group{left:-100%}
.toggle-on{position:absolute;top:0;bottom:0;left:0;right:50%;margin:0;border:0;border-radius:0}
.toggle-off{position:absolute;top:0;bottom:0;left:50%;right:0;margin:0;border:0;border-radius:0;}
.toggle-handle{position:relative;margin:0 auto;padding-top:0;padding-bottom:0;height:100%;width:50px;border-width:0 1px; border-radius: 999px; border: 1px solid #ccc;
background: rgb(255,255,255); /* Old browsers */
background: -moz-linear-gradient(top, rgba(255,255,255,1) 10%, rgba(239,239,239,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(10%,rgba(255,255,255,1)), color-stop(100%,rgba(239,239,239,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 10%,rgba(239,239,239,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255,255,255,1) 10%,rgba(239,239,239,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255,255,255,1) 10%,rgba(239,239,239,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(255,255,255,1) 10%,rgba(239,239,239,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efefef',GradientType=0 ); /* IE6-9 */
}
.toggle.btn{min-width:59px;min-height:34px;}
.toggle-on.btn{padding-right:24px;}
.toggle-off.btn{padding-left:24px}
.toggle.btn-lg{min-width:79px;min-height:45px}
.toggle-on.btn-lg{padding-right:31px;}
.toggle-off.btn-lg{padding-left:31px;}
.toggle-handle.btn-lg{width:40px;}
.toggle.btn-sm{min-width:50px;min-height:30px}
.toggle-on.btn-sm{padding-right:20px}
.toggle-off.btn-sm{padding-left:20px}
.toggle.btn-xs{min-width:35px;min-height:22px}
.toggle-on.btn-xs{padding-right:12px}
.toggle-off.btn-xs{padding-left:12px} | frontend/static/lib/kode/css/plugin/bootstrap-toggle/bootstrap-toggle.min.css | .checkbox label .toggle,.checkbox-inline .toggle{margin-left:-20px;margin-right:5px}
.toggle{position:relative;overflow:hidden; border-radius: 999px; }
.toggle input[type=checkbox]{display:none}
.toggle-group{position:absolute;width:200%;top:0;bottom:0;left:0;transition:left .35s;-webkit-transition:left .35s;-moz-user-select:none;-webkit-user-select:none; }
.toggle.off .toggle-group{left:-100%}
.toggle-on{position:absolute;top:0;bottom:0;left:0;right:50%;margin:0;border:0;border-radius:0}
.toggle-off{position:absolute;top:0;bottom:0;left:50%;right:0;margin:0;border:0;border-radius:0;}
.toggle-handle{position:relative;margin:0 auto;padding-top:0;padding-bottom:0;height:100%;width:50px;border-width:0 1px; border-radius: 999px; border: 1px solid #ccc;
background: rgb(255,255,255); /* Old browsers */
background: -moz-linear-gradient(top, rgba(255,255,255,1) 10%, rgba(239,239,239,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(10%,rgba(255,255,255,1)), color-stop(100%,rgba(239,239,239,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 10%,rgba(239,239,239,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255,255,255,1) 10%,rgba(239,239,239,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255,255,255,1) 10%,rgba(239,239,239,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(255,255,255,1) 10%,rgba(239,239,239,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efefef',GradientType=0 ); /* IE6-9 */
}
.toggle.btn{min-width:59px;min-height:34px;}
.toggle-on.btn{padding-right:24px;}
.toggle-off.btn{padding-left:24px}
.toggle.btn-lg{min-width:79px;min-height:45px}
.toggle-on.btn-lg{padding-right:31px;}
.toggle-off.btn-lg{padding-left:31px;}
.toggle-handle.btn-lg{width:40px;}
.toggle.btn-sm{min-width:50px;min-height:30px}
.toggle-on.btn-sm{padding-right:20px}
.toggle-off.btn-sm{padding-left:20px}
.toggle.btn-xs{min-width:35px;min-height:22px}
.toggle-on.btn-xs{padding-right:12px}
.toggle-off.btn-xs{padding-left:12px} | 0.318909 | 0.062417 |
* {
margin: 0;
padding: 0;
transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}
body,
html {
font-family: Microsoft YaHei;
font-size: 14px;
line-height: 1.5;
overflow-x: hidden;
min-width: 1150px;
color: #fff;
background-color: #212121;
-webkit-font-smoothing: antialiased;
}
.intro {
position: relative;
}
.clear:after {
display: block;
visibility: hidden;
clear: both;
height: 0;
content: '';
}
.chatbox > .line {
display: none;
}
#startrack {
width: 100%;
height: 140%;
}
.background.fixed {
position: fixed;
top: -60%;
}
.background {
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
}
.background .cover {
position: absolute;
bottom: -42%;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(0deg, #202020 30%, rgba(32, 32, 32, 0));
}
@keyframes bg {
0% {
transform: rotate(0deg);
border-radius: 0;
}
50% {
transform: rotate(180deg);
border-radius: 0;
}
to {
transform: rotate(1turn);
border-radius: 0;
}
}
@-webkit-keyframes bg {
0% {
transform: rotate(0deg);
border-radius: 0;
}
50% {
transform: rotate(180deg);
border-radius: 0;
}
to {
transform: rotate(1turn);
border-radius: 0;
}
}
@-ms-keyframes bg {
0% {
transform: rotate(0deg);
border-radius: 0;
}
50% {
transform: rotate(180deg);
border-radius: 0;
}
to {
transform: rotate(1turn);
border-radius: 0;
}
}
@-moz-keyframes bg {
0% {
transform: rotate(0deg);
border-radius: 0;
}
50% {
transform: rotate(180deg);
border-radius: 0;
}
to {
transform: rotate(1turn);
border-radius: 0;
}
}
nav {
font-family: Roboto, Tahoma, Consolas, Microsoft YaHei;
position: fixed;
z-index: 2333;
bottom: 0;
left: 20px;
transition: all .3s ease-out;
transform: rotate(-90deg) translateZ(0);
transform-origin: 0 0;
vertical-align: middle;
}
nav a.clip {
width: 3px;
height: 3px;
border-radius: 100%;
background: #fff;
}
nav a {
font-size: 13px;
display: inline-block;
margin: 0 10px;
transition: all .3s;
vertical-align: middle;
text-decoration: none;
opacity: .4;
color: #fff;
}
nav a.time {
opacity: 1;
}
nav a.active,
nav a:hover {
text-decoration: underline;
opacity: 1;
}
.ch {
width: 100%;
padding: 80px 0;
-webkit-animation: fadedown 1s cubic-bezier(.19, 1, .22, 1);
-moz-animation: fadedown 1s cubic-bezier(.19, 1, .22, 1);
-ms-animation: fadedown 1s cubic-bezier(.19, 1, .22, 1);
animation: fadedown 1s cubic-bezier(.19, 1, .22, 1);
}
.ch h2.chtitle {
font-size: 26px;
padding-bottom: 30px;
letter-spacing: .2em;
color: hsla(0, 0%, 100%, .5);
}
.ch h2.chtitle span {
color: #fff;
}
.ch h2.chtitle:after {
display: block;
width: 10%;
height: 5px;
margin-top: 30px;
content: '';
background-color: hsla(0, 0%, 100%, .5);
}
@keyframes fadedown {
0% {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@-webkit-keyframes fadedown {
0% {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@-ms-keyframes fadedown {
0% {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@-moz-keyframes fadedown {
0% {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.container {
position: relative;
width: 1000px;
height: 100%;
margin: 0 auto;
padding: 20px 0;
}
.intro {
height: 100vh;
padding: 0;
color: #fff;
}
.intro .container {
-webkit-animation: fadedown 3.5s cubic-bezier(.19, 1, .22, 1);
-moz-animation: fadedown 3.5s cubic-bezier(.19, 1, .22, 1);
-ms-animation: fadedown 3.5s cubic-bezier(.19, 1, .22, 1);
animation: fadedown 3.5s cubic-bezier(.19, 1, .22, 1);
}
.hello {
position: absolute;
bottom: 20%;
left: 0;
}
.hello h1,
.hello h2 {
font-size: 22px;
font-weight: 400;
line-height: 1.5em;
letter-spacing: .2em;
}
.hello h1 {
font-size: 42px;
letter-spacing: .5em;
}
.hello h2 {
padding-top: .6em;
}
.hello .circle {
float: left;
margin-right: 10px;
letter-spacing: 0;
}
.hello .circle span {
display: inline-block;
width: 13px;
height: 13px;
margin-right: 5px;
border-radius: 100%;
background-color: #fff;
}
.hello .circle span:first-child {
background-color: #ff493f;
}
.hello .circle span:nth-child(2) {
background-color: #f7c900;
}
.hello .circle span:nth-child(3) {
background-color: #00ff37;
}
.about .introduct {
line-height: 2em;
}
.about .introduct img.avatar {
float: right;
width: 140px;
margin-right: 20px;
margin-left: 40px;
border-radius: 100%;
}
.about ul.skill {
margin-top: 50px;
}
.about ul.skill li {
float: left;
width: 45%;
margin-right: 5%;
padding: 10px 0;
list-style: none;
}
.about ul.skill li p {
font-size: 12px;
display: inline-block;
width: 26%;
margin-right: 3%;
}
.about ul.skill li .progress {
display: inline-block;
width: 70%;
height: 3px;
vertical-align: middle;
background-color: hsla(0, 0%, 100%, .2);
}
.about ul.skill li .progress span {
font-size: 12px;
position: relative;
top: -5px;
transition: all .3s;
letter-spacing: .5em;
opacity: 0;
color: hsla(0, 0%, 100%, .4);
}
.about ul.skill li:hover .progress span {
top: 0;
opacity: 1;
}
.about ul.skill li .progress div {
position: relative;
height: 3px;
background-color: #fff;
}
ul.skill li .progress div {
-webkit-animation: progressin 7s;
-moz-animation: progressin 7s;
-ms-animation: progressin 7s;
animation: progressin 7s;
}
@keyframes progressin {
0% {
width: 0;
}
}
@-webkit-keyframes progressin {
0% {
width: 0;
}
}
@-ms-keyframes progressin {
0% {
width: 0;
}
}
@-moz-keyframes progressin {
0% {
width: 0;
}
}
.about ul.skill li .progress div:after {
position: absolute;
top: -8px;
right: -4px;
display: inline-block;
width: 0;
height: 0;
content: '';
border-top: 3px solid #fff;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
}
.links a {
text-decoration: none;
color: #fff;
}
.find .links .item {
line-height: 80px;
position: relative;
float: left;
width: 17.6%;
height: 80px;
margin: 10px 1.2%;
padding: 5px 0;
transition: all .2s;
text-align: center;
opacity: .9;
}
.find .links .item:hover {
transform: translateY(-10px);
-webkit-animation: index-link-active 1s cubic-bezier(.315, .605, .375, .925) forwards;
opacity: 1;
}
.find .links .item .inner {
position: relative;
z-index: 5;
}
.find .links .item .bg {
position: absolute;
z-index: 0;
bottom: 0;
left: 0;
width: 100%;
height: 1.8%;
transition: all .15s;
}
.find .links .item:hover .bg {
width: 100%;
height: 100%;
border-radius: 5px;
box-shadow: 0 3px 20px rgba(0, 0, 0, .28);
}
.find .links .item i {
font-size: 20px;
}
.find .links .item span {
display: inline-block;
width: 100px;
}
.find .links .col-3 .item {
width: 30.93%;
margin: 10px 1.2%;
}
.gate .links .item {
float: left;
width: 22%;
height: 60px;
margin: 5px 0;
padding: 15px 1.5%;
transition: all .2s;
opacity: .85;
}
.gate .links .item.akarin {
opacity: .58;
}
.gate .links .item:hover {
transform: translateY(-5px);
-webkit-animation: index-link-active 1s cubic-bezier(.315, .605, .375, .925) forwards;
opacity: 1;
border-radius: 5px;
background-color: hsla(0, 0%, 100%, .25);
box-shadow: 0 3px 20px rgba(0, 0, 0, .28);
}
.gate .links .item .avatar {
line-height: 60px;
float: left;
overflow: hidden;
width: 60px;
height: 60px;
margin-right: 15px;
text-align: center;
border-radius: 100%;
background-color: #353535;
}
.gate .links .item .avatar i {
font-size: 24px;
}
.gate .links .item .avatar img {
max-width: 60px;
height: 60px;
border-radius: 100%;
}
.gate .links .item .inner {
padding: 6px;
}
.gate .links .item .inner h5 {
font-size: 17px;
font-weight: 400;
}
.gate .links .item .inner p {
font-size: 13px;
color: hsla(0, 0%, 100%, .6);
}
.footer {
text-align: center;
}
.footer a {
text-decoration: none;
color: inherit;
}
.footer a:hover {
text-decoration: underline;
}
.footer h3 {
font-size: 20px;
font-weight: 400;
margin: 6px 0;
letter-spacing: .8em;
}
.footer p {
font-size: 12px;
letter-spacing: 1em;
opacity: .3;
}
.footer p.c {
margin-top: 20px;
letter-spacing: .1em;
}
.chatbox .line {
margin: 40px 0;
}
.chatbox .line p {
margin: 10px 0;
}
.chatbox .question a {
font-size: 12px;
display: inline-block;
margin-right: 10px;
padding: 0 10px;
cursor: pointer;
transition: all .2s;
transform: translateY(0);
opacity: .8;
border-radius: 10px 10px 10px 0;
background-color: hsla(0, 0%, 100%, .3);
}
.chatbox .question a:hover {
transform: translateY(-2px);
-webkit-animation: index-link-active 1s cubic-bezier(.315, .605, .375, .925) forwards;
opacity: 1;
}
.chatbox .question.disable a {
opacity: .3;
}
.chatbox .question.disable a.selected {
opacity: .9;
}
.chatbox .question a.error {
animation: error .2s ease-in-out;
opacity: .3;
}
.chatbox .loading span {
display: inline-block;
width: 10px;
height: 10px;
margin-right: 5px;
animation: loading-point 1.4s ease-in-out infinite both;
border-radius: 100%;
background-color: #fff;
}
.chatbox .loading span:first-child {
animation-delay: .2s;
}
.chatbox .loading span:nth-child(2) {
animation-delay: .4s;
}
.chatbox .loading span:nth-child(3) {
animation-delay: .6s;
}
@keyframes loading-point {
0% {
opacity: .8;
}
50% {
opacity: .25;
}
to {
opacity: 1;
}
}
@keyframes error {
0% {
transform: translateX(0);
}
25% {
transform: translateX(-2px);
}
50% {
transform: translateX(0);
}
75% {
transform: translateX(2px);
}
to {
transform: translateX(0);
}
}
@keyframes index-link-active {
0% {
transform: perspective(1600px) rotateX(0) rotateY(0) translateZ(0);
}
16% {
transform: perspective(1600px) rotateX(10deg) rotateY(5deg) translateZ(32px);
}
to {
transform: perspective(1600px) rotateX(0) rotateY(0) translateZ(65px);
}
}
@media screen and (min-width: 1400px) {
.container {
width: 70%;
}
nav a {
font-size: 18px;
}
}
@media screen and (max-width: 700px) {
body,
html {
min-width: 0;
}
.container {
width: auto;
margin: 0 5%;
}
div.el span {
top: 75px;
left: 0;
display: block;
width: 60%;
margin: -40% auto 0;
}
nav {
font-size: 13px;
top: inherit;
bottom: 0;
left: 0;
overflow: auto;
width: 90%;
padding: 15px 5%;
transform: rotate(0deg) translateZ(0);
transform-origin: 0 100%;
white-space: nowrap;
background: -webkit-linear-gradient(180deg, transparent, rgba(0, 0, 0, .8));
background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .8));
}
.ch {
padding: 40px 0;
}
.hello {
bottom: 50%;
width: 90%;
padding: 5%;
text-align: center;
}
.hello .circle {
float: none;
margin-right: 0;
}
.hello h2 {
padding-top: 0;
}
.hello h1,
.hello h2 {
font-size: 14px;
font-weight: 400;
}
.hello .circle {
padding: 20px;
}
.hello .circle span {
width: 10px;
height: 10px;
margin: 0 5px;
}
.hello h1 {
font-size: 26px;
}
.about .introduct img.avatar {
float: none;
width: 100px;
margin-right: 0;
margin-left: 0;
}
.about .introduct,
.about .skill {
float: none;
width: auto;
}
.about .skill {
padding-top: 40px;
}
.about ul.skill li {
width: 100%;
}
.find .links .item,
.gate .links .item {
width: 46%;
height: auto;
margin: 10px 2%;
padding: 5px 0;
}
.find .links .item {
font-size: 13px;
line-height: 60px;
height: 60px;
}
.gate .links .item .avatar {
line-height: 40px;
width: 40px;
height: 40px;
}
.gate .links .item .avatar img {
max-width: 40px;
height: 40px;
}
.gate .links .item .inner {
padding: 0;
}
.gate .links .item .inner h5 {
font-size: 15px;
}
.gate .links .item .inner h5,
.gate .links .item .inner p {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.footer {
padding-bottom: 100px;
}
.footer h3,
.footer p {
letter-spacing: .2em;
}
} | css/www.huxinfeng.com.index.css | * {
margin: 0;
padding: 0;
transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}
body,
html {
font-family: Microsoft YaHei;
font-size: 14px;
line-height: 1.5;
overflow-x: hidden;
min-width: 1150px;
color: #fff;
background-color: #212121;
-webkit-font-smoothing: antialiased;
}
.intro {
position: relative;
}
.clear:after {
display: block;
visibility: hidden;
clear: both;
height: 0;
content: '';
}
.chatbox > .line {
display: none;
}
#startrack {
width: 100%;
height: 140%;
}
.background.fixed {
position: fixed;
top: -60%;
}
.background {
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
}
.background .cover {
position: absolute;
bottom: -42%;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(0deg, #202020 30%, rgba(32, 32, 32, 0));
}
@keyframes bg {
0% {
transform: rotate(0deg);
border-radius: 0;
}
50% {
transform: rotate(180deg);
border-radius: 0;
}
to {
transform: rotate(1turn);
border-radius: 0;
}
}
@-webkit-keyframes bg {
0% {
transform: rotate(0deg);
border-radius: 0;
}
50% {
transform: rotate(180deg);
border-radius: 0;
}
to {
transform: rotate(1turn);
border-radius: 0;
}
}
@-ms-keyframes bg {
0% {
transform: rotate(0deg);
border-radius: 0;
}
50% {
transform: rotate(180deg);
border-radius: 0;
}
to {
transform: rotate(1turn);
border-radius: 0;
}
}
@-moz-keyframes bg {
0% {
transform: rotate(0deg);
border-radius: 0;
}
50% {
transform: rotate(180deg);
border-radius: 0;
}
to {
transform: rotate(1turn);
border-radius: 0;
}
}
nav {
font-family: Roboto, Tahoma, Consolas, Microsoft YaHei;
position: fixed;
z-index: 2333;
bottom: 0;
left: 20px;
transition: all .3s ease-out;
transform: rotate(-90deg) translateZ(0);
transform-origin: 0 0;
vertical-align: middle;
}
nav a.clip {
width: 3px;
height: 3px;
border-radius: 100%;
background: #fff;
}
nav a {
font-size: 13px;
display: inline-block;
margin: 0 10px;
transition: all .3s;
vertical-align: middle;
text-decoration: none;
opacity: .4;
color: #fff;
}
nav a.time {
opacity: 1;
}
nav a.active,
nav a:hover {
text-decoration: underline;
opacity: 1;
}
.ch {
width: 100%;
padding: 80px 0;
-webkit-animation: fadedown 1s cubic-bezier(.19, 1, .22, 1);
-moz-animation: fadedown 1s cubic-bezier(.19, 1, .22, 1);
-ms-animation: fadedown 1s cubic-bezier(.19, 1, .22, 1);
animation: fadedown 1s cubic-bezier(.19, 1, .22, 1);
}
.ch h2.chtitle {
font-size: 26px;
padding-bottom: 30px;
letter-spacing: .2em;
color: hsla(0, 0%, 100%, .5);
}
.ch h2.chtitle span {
color: #fff;
}
.ch h2.chtitle:after {
display: block;
width: 10%;
height: 5px;
margin-top: 30px;
content: '';
background-color: hsla(0, 0%, 100%, .5);
}
@keyframes fadedown {
0% {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@-webkit-keyframes fadedown {
0% {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@-ms-keyframes fadedown {
0% {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@-moz-keyframes fadedown {
0% {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.container {
position: relative;
width: 1000px;
height: 100%;
margin: 0 auto;
padding: 20px 0;
}
.intro {
height: 100vh;
padding: 0;
color: #fff;
}
.intro .container {
-webkit-animation: fadedown 3.5s cubic-bezier(.19, 1, .22, 1);
-moz-animation: fadedown 3.5s cubic-bezier(.19, 1, .22, 1);
-ms-animation: fadedown 3.5s cubic-bezier(.19, 1, .22, 1);
animation: fadedown 3.5s cubic-bezier(.19, 1, .22, 1);
}
.hello {
position: absolute;
bottom: 20%;
left: 0;
}
.hello h1,
.hello h2 {
font-size: 22px;
font-weight: 400;
line-height: 1.5em;
letter-spacing: .2em;
}
.hello h1 {
font-size: 42px;
letter-spacing: .5em;
}
.hello h2 {
padding-top: .6em;
}
.hello .circle {
float: left;
margin-right: 10px;
letter-spacing: 0;
}
.hello .circle span {
display: inline-block;
width: 13px;
height: 13px;
margin-right: 5px;
border-radius: 100%;
background-color: #fff;
}
.hello .circle span:first-child {
background-color: #ff493f;
}
.hello .circle span:nth-child(2) {
background-color: #f7c900;
}
.hello .circle span:nth-child(3) {
background-color: #00ff37;
}
.about .introduct {
line-height: 2em;
}
.about .introduct img.avatar {
float: right;
width: 140px;
margin-right: 20px;
margin-left: 40px;
border-radius: 100%;
}
.about ul.skill {
margin-top: 50px;
}
.about ul.skill li {
float: left;
width: 45%;
margin-right: 5%;
padding: 10px 0;
list-style: none;
}
.about ul.skill li p {
font-size: 12px;
display: inline-block;
width: 26%;
margin-right: 3%;
}
.about ul.skill li .progress {
display: inline-block;
width: 70%;
height: 3px;
vertical-align: middle;
background-color: hsla(0, 0%, 100%, .2);
}
.about ul.skill li .progress span {
font-size: 12px;
position: relative;
top: -5px;
transition: all .3s;
letter-spacing: .5em;
opacity: 0;
color: hsla(0, 0%, 100%, .4);
}
.about ul.skill li:hover .progress span {
top: 0;
opacity: 1;
}
.about ul.skill li .progress div {
position: relative;
height: 3px;
background-color: #fff;
}
ul.skill li .progress div {
-webkit-animation: progressin 7s;
-moz-animation: progressin 7s;
-ms-animation: progressin 7s;
animation: progressin 7s;
}
@keyframes progressin {
0% {
width: 0;
}
}
@-webkit-keyframes progressin {
0% {
width: 0;
}
}
@-ms-keyframes progressin {
0% {
width: 0;
}
}
@-moz-keyframes progressin {
0% {
width: 0;
}
}
.about ul.skill li .progress div:after {
position: absolute;
top: -8px;
right: -4px;
display: inline-block;
width: 0;
height: 0;
content: '';
border-top: 3px solid #fff;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
}
.links a {
text-decoration: none;
color: #fff;
}
.find .links .item {
line-height: 80px;
position: relative;
float: left;
width: 17.6%;
height: 80px;
margin: 10px 1.2%;
padding: 5px 0;
transition: all .2s;
text-align: center;
opacity: .9;
}
.find .links .item:hover {
transform: translateY(-10px);
-webkit-animation: index-link-active 1s cubic-bezier(.315, .605, .375, .925) forwards;
opacity: 1;
}
.find .links .item .inner {
position: relative;
z-index: 5;
}
.find .links .item .bg {
position: absolute;
z-index: 0;
bottom: 0;
left: 0;
width: 100%;
height: 1.8%;
transition: all .15s;
}
.find .links .item:hover .bg {
width: 100%;
height: 100%;
border-radius: 5px;
box-shadow: 0 3px 20px rgba(0, 0, 0, .28);
}
.find .links .item i {
font-size: 20px;
}
.find .links .item span {
display: inline-block;
width: 100px;
}
.find .links .col-3 .item {
width: 30.93%;
margin: 10px 1.2%;
}
.gate .links .item {
float: left;
width: 22%;
height: 60px;
margin: 5px 0;
padding: 15px 1.5%;
transition: all .2s;
opacity: .85;
}
.gate .links .item.akarin {
opacity: .58;
}
.gate .links .item:hover {
transform: translateY(-5px);
-webkit-animation: index-link-active 1s cubic-bezier(.315, .605, .375, .925) forwards;
opacity: 1;
border-radius: 5px;
background-color: hsla(0, 0%, 100%, .25);
box-shadow: 0 3px 20px rgba(0, 0, 0, .28);
}
.gate .links .item .avatar {
line-height: 60px;
float: left;
overflow: hidden;
width: 60px;
height: 60px;
margin-right: 15px;
text-align: center;
border-radius: 100%;
background-color: #353535;
}
.gate .links .item .avatar i {
font-size: 24px;
}
.gate .links .item .avatar img {
max-width: 60px;
height: 60px;
border-radius: 100%;
}
.gate .links .item .inner {
padding: 6px;
}
.gate .links .item .inner h5 {
font-size: 17px;
font-weight: 400;
}
.gate .links .item .inner p {
font-size: 13px;
color: hsla(0, 0%, 100%, .6);
}
.footer {
text-align: center;
}
.footer a {
text-decoration: none;
color: inherit;
}
.footer a:hover {
text-decoration: underline;
}
.footer h3 {
font-size: 20px;
font-weight: 400;
margin: 6px 0;
letter-spacing: .8em;
}
.footer p {
font-size: 12px;
letter-spacing: 1em;
opacity: .3;
}
.footer p.c {
margin-top: 20px;
letter-spacing: .1em;
}
.chatbox .line {
margin: 40px 0;
}
.chatbox .line p {
margin: 10px 0;
}
.chatbox .question a {
font-size: 12px;
display: inline-block;
margin-right: 10px;
padding: 0 10px;
cursor: pointer;
transition: all .2s;
transform: translateY(0);
opacity: .8;
border-radius: 10px 10px 10px 0;
background-color: hsla(0, 0%, 100%, .3);
}
.chatbox .question a:hover {
transform: translateY(-2px);
-webkit-animation: index-link-active 1s cubic-bezier(.315, .605, .375, .925) forwards;
opacity: 1;
}
.chatbox .question.disable a {
opacity: .3;
}
.chatbox .question.disable a.selected {
opacity: .9;
}
.chatbox .question a.error {
animation: error .2s ease-in-out;
opacity: .3;
}
.chatbox .loading span {
display: inline-block;
width: 10px;
height: 10px;
margin-right: 5px;
animation: loading-point 1.4s ease-in-out infinite both;
border-radius: 100%;
background-color: #fff;
}
.chatbox .loading span:first-child {
animation-delay: .2s;
}
.chatbox .loading span:nth-child(2) {
animation-delay: .4s;
}
.chatbox .loading span:nth-child(3) {
animation-delay: .6s;
}
@keyframes loading-point {
0% {
opacity: .8;
}
50% {
opacity: .25;
}
to {
opacity: 1;
}
}
@keyframes error {
0% {
transform: translateX(0);
}
25% {
transform: translateX(-2px);
}
50% {
transform: translateX(0);
}
75% {
transform: translateX(2px);
}
to {
transform: translateX(0);
}
}
@keyframes index-link-active {
0% {
transform: perspective(1600px) rotateX(0) rotateY(0) translateZ(0);
}
16% {
transform: perspective(1600px) rotateX(10deg) rotateY(5deg) translateZ(32px);
}
to {
transform: perspective(1600px) rotateX(0) rotateY(0) translateZ(65px);
}
}
@media screen and (min-width: 1400px) {
.container {
width: 70%;
}
nav a {
font-size: 18px;
}
}
@media screen and (max-width: 700px) {
body,
html {
min-width: 0;
}
.container {
width: auto;
margin: 0 5%;
}
div.el span {
top: 75px;
left: 0;
display: block;
width: 60%;
margin: -40% auto 0;
}
nav {
font-size: 13px;
top: inherit;
bottom: 0;
left: 0;
overflow: auto;
width: 90%;
padding: 15px 5%;
transform: rotate(0deg) translateZ(0);
transform-origin: 0 100%;
white-space: nowrap;
background: -webkit-linear-gradient(180deg, transparent, rgba(0, 0, 0, .8));
background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .8));
}
.ch {
padding: 40px 0;
}
.hello {
bottom: 50%;
width: 90%;
padding: 5%;
text-align: center;
}
.hello .circle {
float: none;
margin-right: 0;
}
.hello h2 {
padding-top: 0;
}
.hello h1,
.hello h2 {
font-size: 14px;
font-weight: 400;
}
.hello .circle {
padding: 20px;
}
.hello .circle span {
width: 10px;
height: 10px;
margin: 0 5px;
}
.hello h1 {
font-size: 26px;
}
.about .introduct img.avatar {
float: none;
width: 100px;
margin-right: 0;
margin-left: 0;
}
.about .introduct,
.about .skill {
float: none;
width: auto;
}
.about .skill {
padding-top: 40px;
}
.about ul.skill li {
width: 100%;
}
.find .links .item,
.gate .links .item {
width: 46%;
height: auto;
margin: 10px 2%;
padding: 5px 0;
}
.find .links .item {
font-size: 13px;
line-height: 60px;
height: 60px;
}
.gate .links .item .avatar {
line-height: 40px;
width: 40px;
height: 40px;
}
.gate .links .item .avatar img {
max-width: 40px;
height: 40px;
}
.gate .links .item .inner {
padding: 0;
}
.gate .links .item .inner h5 {
font-size: 15px;
}
.gate .links .item .inner h5,
.gate .links .item .inner p {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.footer {
padding-bottom: 100px;
}
.footer h3,
.footer p {
letter-spacing: .2em;
}
} | 0.400163 | 0.110519 |
body {
direction: rtl;
}
img {
max-width: 100%;
vertical-align: middle;
}
.img-full-wrapper {
width: 100%;
height: 100%;
}
header {
background-color: #000000;
color: #FFF;
}
header .navbar-default {
background-color: #000000;
border-color: #000000;
}
header .navbar-default .navbar-toggle:hover,
header .navbar-default .navbar-toggle:focus {
background-color: #000000;
}
header .navbar-toggle {
margin-right: 0px;
}
header .navbar-default .navbar-collapse,
header .navbar-default .navbar-form {
border-color: #000000;
}
header .navbar-default .navbar-toggle {
border-color: #000000;
}
header .navbar-default .navbar-toggle .icon-bar {
background-color: #fff;
}
header .top {
height: 20px;
}
header .nav > li > a:hover,
header .nav > li > a:focus {
background-color: #333;
}
header .navbar-brand.logo {
padding: 5px 8px 0 8px;
max-height: 42px;
}
@media (min-width: 768px) {
header .navbar-brand.logo {
margin-top: 10px;
}
}
header .navbar-form {
padding: 7px 8px 0 8px;
}
header img {
height: 100%;
width: 100%;
}
header .nav-layer-tow {
background-color: #191919;
padding: 0;
font-size: 14px;
margin: -15px;
min-height: 40px;
border: 0;
}
header .nav-layer-tow .navbar-nav > li > a {
padding-top: 8px;
padding-bottom: 8px;
color: #FFF;
}
.logo-slider {
position: relative;
height: 100px;
background-color: #FFF;
}
@media (min-width: 768px) {
.logo-slider .logo-slider-left-handler {
position: absolute;
width: 20px;
left: 4%;
top: 20%;
display: block;
font-size: 25px;
}
.logo-slider .logo-slider-right-handler {
position: absolute;
width: 20px;
right: 4%;
top: 20%;
display: block;
font-size: 25px;
}
}
.blog-middle-icons-box {
padding: 35px 0;
color: #000;
}
.blog-middle-icons-box .headline {
font-size: 21px;
font-weight: 700;
margin-top: 0;
margin-bottom: 5px;
}
.blog-middle-icons-box .upsell-text p {
font-size: 15px;
line-height: 1.2em;
padding: 0 10%;
color: #373737;
}
.blog-middle-icons-box button.btn-warning {
margin-top: 70px;
}
footer a:hover {
text-decoration: none;
color: #f45307;
}
.footer-top {
background-color: #233E4B;
color: #fff;
font-size: 16px;
min-height: 120px;
padding: 30px;
margin-top: 35px;
}
.footer-top .col-lg-2:nth-child(4) {
border: 1px solid #f0f0f0;
border-top-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: #f0f0f0;
border-bottom-color: #f0f0f0;
border-left-color: #f0f0f0;
border-top: none;
border-bottom: none;
height: 120px;
}
.footer-top .col-lg-2 {
border: 1px solid #f0f0f0;
border-top-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: #f0f0f0;
border-bottom-color: #f0f0f0;
border-left-color: #f0f0f0;
border-top: none;
border-bottom: none;
height: 120px;
border-left: none;
}
.footer-center {
background: #475155;
padding: 20px 0;
border-bottom: 1px solid #fff;
}
.g-map-aria {
height: 250px;
margin-top: 25px;
padding: 5px;
}
.footer-center .footer-link h3 {
font-size: medium;
font-weight: 100;
border-bottom: 1px solid #ff6a00;
color: #fff;
display: inline-block;
padding-bottom: 5px;
margin-bottom: 5px;
clear: left;
}
.footer-center .footer-link a {
color: #fff;
display: block;
}
.footer-center .footer-blog ul li {
list-style: circle;
}
.footer-center .footer-blog a {
color: #fff;
display: block;
}
.footer-center a:hover {
text-decoration: none;
color: #f45307;
}
.footer-center .footer-blog h2 {
font-size: large;
font-weight: 100;
border-bottom: 2px dashed #ccc;
color: #ccc;
display: inline-block;
padding-bottom: 5px;
margin-bottom: 5px;
clear: left;
}
.footer-blog h2 a {
color: #ccc;
}
.footer-btm a {
color: #fff;
}
.footer-btm {
background: #475155;
padding: 20px 0;
}
.footer-btm .copyright {
color: #84909c;
padding: 15px;
}
.social-media a {
float: left;
margin-right: 5px;
margin-bottom: 3px;
width: 35px;
height: 35px;
border: 1px solid #fff;
color: #fff;
border-radius: 50%;
line-height: 35px;
text-align: center;
font-size: medium;
}
.social-media a:hover {
background: #fff;
color: #475155 !important;
}
.footer-btm .link a {
color: #fff;
padding: 5px 15px;
}
.footer-btm .link a:hover {
text-decoration: none;
color: #f45307;
}
@media (max-width: 768px) {
.footer-top .col-lg-2 {
border: none;
}
.footer-top .col-lg-2:nth-child(4) {
border: none;
}
.g-map-aria {
margin-top: 0;
}
}
.blog-category-box {
background-color: #FFF;
padding: 10px 0px;
}
.blog-category-box .article-category-title {
margin-top: 65px;
margin-bottom: 25px;
color: #000;
text-align: center;
}
.blog-category-box .article-category-item:hover {
opacity: .75;
-webkit-box-shadow: 0px 0px 5px 0px #8f8f8f;
box-shadow: 0px 0px 5px 0px #8f8f8f;
}
.blog-category-box .article-category-item:hover .category-count {
opacity: 1;
}
.blog-category-box .article-category-item:hover img {
-webkit-transform: scale(1.2);
transform: scale(1.2);
-webkit-transition-duration: 500ms;
transition-duration: 500ms;
}
.blog-category-box .article-category-item {
margin: 10px 0;
height: 220px;
cursor: pointer;
overflow: hidden;
background-color: #fefdff;
border-radius: 5px 5px 0 0;
-webkit-box-shadow: 0px 0px 2px 0px #8a8a8a;
box-shadow: 0px 0px 2px 0px #8a8a8a;
}
.blog-category-box .article-category-item a {
text-decoration: none;
color: #636b6f;
}
.blog-category-box .article-category-item .category-count {
opacity: .4;
position: absolute;
bottom: 14px;
right: 23px;
color: #000;
font-size: 13px;
}
.blog-category-box .article-category-item .category-count i {
font-size: 18px;
padding: 5px;
}
.blog-category-box .article-category-item h3 {
margin: 5px 0;
}
.blog-category-box .article-category-item .article-thumnail {
max-height: 144.56px;
overflow: hidden;
}
.blog-category-box .article-category-item img {
width: 100%;
border-radius: 5px 5px 0 0;
position: static;
top: 0;
bottom: 0;
left: 0;
right: 0;
max-height: 200px;
}
.article-list-box {
background-color: #FFF;
padding: 10px 0px;
}
.article-list-box .article-list-title {
text-align: center;
}
.article-list-box a {
text-decoration: none;
color: #636b6f;
}
.article-list-box .article-item {
margin: 15px 0;
height: 315px;
cursor: pointer;
overflow: hidden;
background-color: #fefdff;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: 1px 2px 5px #ccc;
box-shadow: 1px 2px 5px #ccc;
}
.article-list-box .article-item .article-thumnail {
border-bottom: 8px solid green;
z-index: 9999;
overflow: hidden;
}
.article-list-box .article-item .article-thumnail img {
max-height: 200px;
width: 100%;
}
.article-list-box .article-item .article-detail {
margin: 15px 5px;
}
.article-list-box .article-item .article-detail .article-writer {
right: 20px;
position: absolute;
bottom: 15px;
}
.article-list-box .article-item .article-detail .article-writer i {
padding: 0 4px;
}
.article-list-box .article-item .article-detail .article-title {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
height: 39px;
line-height: 18px;
}
.article-list-box .article-item .article-detail .article-title h3 {
font-size: 18px;
margin: 5px 5px;
color: #000000;
white-space: nowrap;
}
.article-list-box .article-item .article-detail .article-date {
left: 20px;
position: absolute;
bottom: 15px;
}
.article-list-box .article-item .article-detail .article-date i {
padding: 0 4px;
}
.article-list-box .article-item:hover {
opacity: .75;
}
.article-list-box .article-item:hover .category-count {
opacity: 1;
}
.article-list-box .article-item:hover img {
-webkit-transform: scale(1.2);
transform: scale(1.2);
-webkit-transition-duration: 500ms;
transition-duration: 500ms;
}
.article-list-box .nav-pills > li.active > a,
.article-list-box .nav-pills > li.active > a:hover,
.article-list-box .nav-pills > li.active > a:focus {
border-bottom: 1px solid #008cc9;
border-radius: 0;
color: #216a94;
background-color: transparent;
}
.article-list-box .nav > li > a:hover,
.article-list-box .nav > li > a:focus {
text-decoration: none;
background-color: transparent;
border-bottom: 1px solid #359ac9;
border-radius: 0;
}
.article-category-page-header {
height: 205px;
margin: 0;
position: relative;
padding: 0;
}
.article-category-page-header h1 {
color: #FFF;
}
.article-category-page-header p {
color: #FFF;
font-size: 14px;
}
.article-category-page-header .back-img {
position: absolute;
z-index: -9999;
height: 100%;
}
.article-category-page-header .back-img img {
width: 100%;
height: 100%;
}
.article-search-filter {
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: 1px 2px 5px #ccc;
box-shadow: 1px 2px 5px #ccc;
}
.article-search-filter .filter-item {
border-bottom: 1px solid #eee;
}
.article-search-filter .filter-item h5 {
color: #000;
padding: 8px;
}
.article-search-filter .top {
background: #F7F7F7;
}
.article-search-filter .top h2 {
padding: 12px;
font-size: 22px;
}
.article-search-filter .filter-list {
list-style: none;
width: 100%;
margin: 0;
padding: 5px 0;
}
.article-search-filter .filter-list li {
height: 32px;
}
.article-search-filter .filter-list li button {
border: none;
background-color: transparent;
text-align: right;
width: 100%;
}
.article-search-filter .filter-list li button .iteam-text {
float: right;
padding: 5px;
}
.article-search-filter .filter-list li button .count {
float: left;
padding: 5px;
}
.article-search-filter .filter-list li:hover {
background-color: #eee;
}
.justify-content-center {
text-align: center;
}
.article-detail {
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: 1px 2px 5px #ccc;
box-shadow: 1px 2px 5px #ccc;
margin: 15px 0px;
background-color: #FFF;
}
.article-detail ul {
list-style: none;
margin: 0;
padding: 5px 0;
}
.article-detail ul li:last-child {
border-bottom: none;
}
.article-detail ul li {
height: 39px;
border-bottom: 1px solid #c5c5c5;
margin: 1px 14px;
padding: 10px 5px;
font-size: 20px;
}
.article-detail ul li span {
color: #353535;
}
.article-detail ul li .a-detail-value {
font-size: 13px;
font-weight: bold;
}
.article-content {
padding: 15px;
margin: 15px 0px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-moz-box-shadow: 1px 2px 5px #ccc;
-webkit-box-shadow: 1px 2px 5px #ccc;
background: #FFF;
}
.article-summary {
padding: 15px;
margin: 15px 0px;
background-color: #fff;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-moz-box-shadow: 1px 2px 5px #ccc;
-webkit-box-shadow: 1px 2px 5px #ccc;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #000;
background-color: #999;
}
.modal label {
color: #000;
}
.btn-link {
color: #fff !important;
} | public/css/blog.css | body {
direction: rtl;
}
img {
max-width: 100%;
vertical-align: middle;
}
.img-full-wrapper {
width: 100%;
height: 100%;
}
header {
background-color: #000000;
color: #FFF;
}
header .navbar-default {
background-color: #000000;
border-color: #000000;
}
header .navbar-default .navbar-toggle:hover,
header .navbar-default .navbar-toggle:focus {
background-color: #000000;
}
header .navbar-toggle {
margin-right: 0px;
}
header .navbar-default .navbar-collapse,
header .navbar-default .navbar-form {
border-color: #000000;
}
header .navbar-default .navbar-toggle {
border-color: #000000;
}
header .navbar-default .navbar-toggle .icon-bar {
background-color: #fff;
}
header .top {
height: 20px;
}
header .nav > li > a:hover,
header .nav > li > a:focus {
background-color: #333;
}
header .navbar-brand.logo {
padding: 5px 8px 0 8px;
max-height: 42px;
}
@media (min-width: 768px) {
header .navbar-brand.logo {
margin-top: 10px;
}
}
header .navbar-form {
padding: 7px 8px 0 8px;
}
header img {
height: 100%;
width: 100%;
}
header .nav-layer-tow {
background-color: #191919;
padding: 0;
font-size: 14px;
margin: -15px;
min-height: 40px;
border: 0;
}
header .nav-layer-tow .navbar-nav > li > a {
padding-top: 8px;
padding-bottom: 8px;
color: #FFF;
}
.logo-slider {
position: relative;
height: 100px;
background-color: #FFF;
}
@media (min-width: 768px) {
.logo-slider .logo-slider-left-handler {
position: absolute;
width: 20px;
left: 4%;
top: 20%;
display: block;
font-size: 25px;
}
.logo-slider .logo-slider-right-handler {
position: absolute;
width: 20px;
right: 4%;
top: 20%;
display: block;
font-size: 25px;
}
}
.blog-middle-icons-box {
padding: 35px 0;
color: #000;
}
.blog-middle-icons-box .headline {
font-size: 21px;
font-weight: 700;
margin-top: 0;
margin-bottom: 5px;
}
.blog-middle-icons-box .upsell-text p {
font-size: 15px;
line-height: 1.2em;
padding: 0 10%;
color: #373737;
}
.blog-middle-icons-box button.btn-warning {
margin-top: 70px;
}
footer a:hover {
text-decoration: none;
color: #f45307;
}
.footer-top {
background-color: #233E4B;
color: #fff;
font-size: 16px;
min-height: 120px;
padding: 30px;
margin-top: 35px;
}
.footer-top .col-lg-2:nth-child(4) {
border: 1px solid #f0f0f0;
border-top-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: #f0f0f0;
border-bottom-color: #f0f0f0;
border-left-color: #f0f0f0;
border-top: none;
border-bottom: none;
height: 120px;
}
.footer-top .col-lg-2 {
border: 1px solid #f0f0f0;
border-top-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: #f0f0f0;
border-bottom-color: #f0f0f0;
border-left-color: #f0f0f0;
border-top: none;
border-bottom: none;
height: 120px;
border-left: none;
}
.footer-center {
background: #475155;
padding: 20px 0;
border-bottom: 1px solid #fff;
}
.g-map-aria {
height: 250px;
margin-top: 25px;
padding: 5px;
}
.footer-center .footer-link h3 {
font-size: medium;
font-weight: 100;
border-bottom: 1px solid #ff6a00;
color: #fff;
display: inline-block;
padding-bottom: 5px;
margin-bottom: 5px;
clear: left;
}
.footer-center .footer-link a {
color: #fff;
display: block;
}
.footer-center .footer-blog ul li {
list-style: circle;
}
.footer-center .footer-blog a {
color: #fff;
display: block;
}
.footer-center a:hover {
text-decoration: none;
color: #f45307;
}
.footer-center .footer-blog h2 {
font-size: large;
font-weight: 100;
border-bottom: 2px dashed #ccc;
color: #ccc;
display: inline-block;
padding-bottom: 5px;
margin-bottom: 5px;
clear: left;
}
.footer-blog h2 a {
color: #ccc;
}
.footer-btm a {
color: #fff;
}
.footer-btm {
background: #475155;
padding: 20px 0;
}
.footer-btm .copyright {
color: #84909c;
padding: 15px;
}
.social-media a {
float: left;
margin-right: 5px;
margin-bottom: 3px;
width: 35px;
height: 35px;
border: 1px solid #fff;
color: #fff;
border-radius: 50%;
line-height: 35px;
text-align: center;
font-size: medium;
}
.social-media a:hover {
background: #fff;
color: #475155 !important;
}
.footer-btm .link a {
color: #fff;
padding: 5px 15px;
}
.footer-btm .link a:hover {
text-decoration: none;
color: #f45307;
}
@media (max-width: 768px) {
.footer-top .col-lg-2 {
border: none;
}
.footer-top .col-lg-2:nth-child(4) {
border: none;
}
.g-map-aria {
margin-top: 0;
}
}
.blog-category-box {
background-color: #FFF;
padding: 10px 0px;
}
.blog-category-box .article-category-title {
margin-top: 65px;
margin-bottom: 25px;
color: #000;
text-align: center;
}
.blog-category-box .article-category-item:hover {
opacity: .75;
-webkit-box-shadow: 0px 0px 5px 0px #8f8f8f;
box-shadow: 0px 0px 5px 0px #8f8f8f;
}
.blog-category-box .article-category-item:hover .category-count {
opacity: 1;
}
.blog-category-box .article-category-item:hover img {
-webkit-transform: scale(1.2);
transform: scale(1.2);
-webkit-transition-duration: 500ms;
transition-duration: 500ms;
}
.blog-category-box .article-category-item {
margin: 10px 0;
height: 220px;
cursor: pointer;
overflow: hidden;
background-color: #fefdff;
border-radius: 5px 5px 0 0;
-webkit-box-shadow: 0px 0px 2px 0px #8a8a8a;
box-shadow: 0px 0px 2px 0px #8a8a8a;
}
.blog-category-box .article-category-item a {
text-decoration: none;
color: #636b6f;
}
.blog-category-box .article-category-item .category-count {
opacity: .4;
position: absolute;
bottom: 14px;
right: 23px;
color: #000;
font-size: 13px;
}
.blog-category-box .article-category-item .category-count i {
font-size: 18px;
padding: 5px;
}
.blog-category-box .article-category-item h3 {
margin: 5px 0;
}
.blog-category-box .article-category-item .article-thumnail {
max-height: 144.56px;
overflow: hidden;
}
.blog-category-box .article-category-item img {
width: 100%;
border-radius: 5px 5px 0 0;
position: static;
top: 0;
bottom: 0;
left: 0;
right: 0;
max-height: 200px;
}
.article-list-box {
background-color: #FFF;
padding: 10px 0px;
}
.article-list-box .article-list-title {
text-align: center;
}
.article-list-box a {
text-decoration: none;
color: #636b6f;
}
.article-list-box .article-item {
margin: 15px 0;
height: 315px;
cursor: pointer;
overflow: hidden;
background-color: #fefdff;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: 1px 2px 5px #ccc;
box-shadow: 1px 2px 5px #ccc;
}
.article-list-box .article-item .article-thumnail {
border-bottom: 8px solid green;
z-index: 9999;
overflow: hidden;
}
.article-list-box .article-item .article-thumnail img {
max-height: 200px;
width: 100%;
}
.article-list-box .article-item .article-detail {
margin: 15px 5px;
}
.article-list-box .article-item .article-detail .article-writer {
right: 20px;
position: absolute;
bottom: 15px;
}
.article-list-box .article-item .article-detail .article-writer i {
padding: 0 4px;
}
.article-list-box .article-item .article-detail .article-title {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
height: 39px;
line-height: 18px;
}
.article-list-box .article-item .article-detail .article-title h3 {
font-size: 18px;
margin: 5px 5px;
color: #000000;
white-space: nowrap;
}
.article-list-box .article-item .article-detail .article-date {
left: 20px;
position: absolute;
bottom: 15px;
}
.article-list-box .article-item .article-detail .article-date i {
padding: 0 4px;
}
.article-list-box .article-item:hover {
opacity: .75;
}
.article-list-box .article-item:hover .category-count {
opacity: 1;
}
.article-list-box .article-item:hover img {
-webkit-transform: scale(1.2);
transform: scale(1.2);
-webkit-transition-duration: 500ms;
transition-duration: 500ms;
}
.article-list-box .nav-pills > li.active > a,
.article-list-box .nav-pills > li.active > a:hover,
.article-list-box .nav-pills > li.active > a:focus {
border-bottom: 1px solid #008cc9;
border-radius: 0;
color: #216a94;
background-color: transparent;
}
.article-list-box .nav > li > a:hover,
.article-list-box .nav > li > a:focus {
text-decoration: none;
background-color: transparent;
border-bottom: 1px solid #359ac9;
border-radius: 0;
}
.article-category-page-header {
height: 205px;
margin: 0;
position: relative;
padding: 0;
}
.article-category-page-header h1 {
color: #FFF;
}
.article-category-page-header p {
color: #FFF;
font-size: 14px;
}
.article-category-page-header .back-img {
position: absolute;
z-index: -9999;
height: 100%;
}
.article-category-page-header .back-img img {
width: 100%;
height: 100%;
}
.article-search-filter {
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: 1px 2px 5px #ccc;
box-shadow: 1px 2px 5px #ccc;
}
.article-search-filter .filter-item {
border-bottom: 1px solid #eee;
}
.article-search-filter .filter-item h5 {
color: #000;
padding: 8px;
}
.article-search-filter .top {
background: #F7F7F7;
}
.article-search-filter .top h2 {
padding: 12px;
font-size: 22px;
}
.article-search-filter .filter-list {
list-style: none;
width: 100%;
margin: 0;
padding: 5px 0;
}
.article-search-filter .filter-list li {
height: 32px;
}
.article-search-filter .filter-list li button {
border: none;
background-color: transparent;
text-align: right;
width: 100%;
}
.article-search-filter .filter-list li button .iteam-text {
float: right;
padding: 5px;
}
.article-search-filter .filter-list li button .count {
float: left;
padding: 5px;
}
.article-search-filter .filter-list li:hover {
background-color: #eee;
}
.justify-content-center {
text-align: center;
}
.article-detail {
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: 1px 2px 5px #ccc;
box-shadow: 1px 2px 5px #ccc;
margin: 15px 0px;
background-color: #FFF;
}
.article-detail ul {
list-style: none;
margin: 0;
padding: 5px 0;
}
.article-detail ul li:last-child {
border-bottom: none;
}
.article-detail ul li {
height: 39px;
border-bottom: 1px solid #c5c5c5;
margin: 1px 14px;
padding: 10px 5px;
font-size: 20px;
}
.article-detail ul li span {
color: #353535;
}
.article-detail ul li .a-detail-value {
font-size: 13px;
font-weight: bold;
}
.article-content {
padding: 15px;
margin: 15px 0px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-moz-box-shadow: 1px 2px 5px #ccc;
-webkit-box-shadow: 1px 2px 5px #ccc;
background: #FFF;
}
.article-summary {
padding: 15px;
margin: 15px 0px;
background-color: #fff;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-moz-box-shadow: 1px 2px 5px #ccc;
-webkit-box-shadow: 1px 2px 5px #ccc;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #000;
background-color: #999;
}
.modal label {
color: #000;
}
.btn-link {
color: #fff !important;
} | 0.511229 | 0.078678 |
.wrap .status,
.wrap .site-type {
position: absolute;
z-index: 1;
color: #fff;
padding: 0.5em 1em;
top: -0.5em;
text-transform: uppercase;
}
.wrap .status,
.wrap .site-type.premium {
background: #0073aa;
}
.wrap .status {
left: -0.5em;
}
.wrap .site-type.premium {
right: -0.5em;
}
.wrap .status.publish,
.wrap .site-type.free {
display: none;
}
.install-theme-info .site-type {
display: none;
}
.theme {
position: relative;
}
.wrap .astra-sites-preview .site-type.premium {
display: block;
display: none;
position: relative;
margin: 0.5em 0em 1em 0em;
top: 0;
left: 0;
text-align: center;
}
.theme-details-read-more.open {
margin: 0.5em 0 0 0;
}
.astra-sites-preview .theme-screenshot {
width: 100%;
}
.install-theme-info .site-type.premium {
display: none;
}
/**
* Required Plugins
*/
.required-plugins.loading {
text-align: center;
}
.required-plugins button {
float: right;
}
.required-plugins .plugin-card {
float: none;
width: 100%;
border: none;
margin: 0 0 0.8em 0;
display: flex;
justify-content: space-between;
align-items: center;
transition: background ease 0.8s;
}
.required-plugins .plugin-card.plugin-card-update-failed {
flex-wrap: wrap;
}
.required-plugins .spinner {
float: none;
margin: 0;
}
.expanded .wp-full-overlay-footer {
height: 111px;
}
.wp-full-overlay-footer .view-site,
.wp-full-overlay-footer .go-pro,
.wp-full-overlay-footer .astra-demo-import {
width: 100%;
text-align: center;
}
.wp-core-ui .wp-full-overlay-footer .button.button-hero,
.wp-core-ui .wp-full-overlay-footer .button-group.button-hero .button {
padding: 0 10px 1px;
}
.wp-full-overlay-footer .installing:before {
vertical-align: text-bottom;
}
.required-plugins-wrap h4 {
margin: 1em 0 0.5em 0;
padding: 0.5em 0;
transition: all ease 0.3s;
}
/**
* Read more link
*/
.wp-core-ui .theme-details-read-more:focus,
.wp-core-ui .theme-details-read-more:hover {
outline: none;
box-shadow: none;
}
.wp-core-ui .theme-details-read-more {
margin: 10px 0;
display: none;
text-decoration: none;
}
/**
* Go pro.
*/
.wp-core-ui .go-pro.button[disabled] {
background-color: #fcb92c !important;
color: white !important;
box-shadow: 1px 0 #eab23a !important;
text-shadow: 1px 0 #6b4e13 !important;
border-color: #e2a932 !important;
cursor: pointer;
}
.wp-core-ui .view-site .dashicons,
.wp-core-ui .go-pro .dashicons {
font-size: 1rem;
vertical-align: middle;
}
/**
* Errors
*/
.plugin-card-update-failed .notice {
margin-top: 1.5em;
}
.no-themes {
margin-top: 40px;
}
.no-themes p {
font-size: 15px;
}
.no-themes .left-margin {
margin-left: 30px;
}
/**
*
*/
.astra-sites-preview .wp-full-overlay-sidebar-content {
bottom: 100px;
}
.footer-import-button-wrap {
padding: 10px 20px;
}
.footer-import-button-wrap .button {
margin: 0;
}
.astra-sites-preview.expanded .wp-full-overlay-footer {
left: initial;
}
/**
* Menu Page
*/
.astra-sites-title {
float: left;
font-size: 23px;
font-weight: 400;
margin: 0 0 6px 0px;
padding: 0;
line-height: 29px;
}
#astra-sites-menu-page {
margin-top: 10px;
}
/**
* API Error
*/
.astra-api-error {
margin: 0 0 0.5em 0;
}
/**
* Grid
*/
.wp-filter .search-form {
margin-left: 1em;
}
.wp-filter .search-form input[type="search"] {
width: 200px;
font-size: 13px;
padding: 5px 10px;
}
.section-left {
display: inline-block;
}
.section-right {
float: right;
}
.filter-count {
min-width: 3em;
}
.astra-site-preview-on {
overflow: hidden;
}
.appearance_page_astra-sites .notice {
margin-left: 0;
width: auto;
float: none;
}
.filters-wrap {
display: inline-block;
}
.spinner-wrap {
text-align: center;
}
.spinner-wrap .spinner {
float: none;
}
.hide-me {
display: none !important;
}
#astra-sites-admin {
height: 100vh;
}
.install-theme-info > .notice {
margin: 5px 0 10px 0;
}
.astra-sites-suggestions:before {
border: 5px dashed #ccc;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0px;
}
.astra-sites-suggestions {
min-height: 280px;
border: none !important;
}
.astra-sites-suggestions a {
border: none;
outline: none;
}
.astra-sites-suggestions .inner {
border: 6px solid #24282e !important;
padding: 27% 10% 50% 10%;
text-align: center;
position: absolute;
left: 0;
right: 0;
top: 0;
background: #33383d;
bottom: 0;
color: #eee;
cursor: auto;
}
.astra-sites-suggestions .inner a {
color: #00b9eb;
}
.astra-sites-suggestions p {
font-size: 1rem;
margin: 0;
}
.astra-notice {
margin: 2em 2em 0em 0em;
}
.no-themes .description {
display: block;
}
/**
* Responsive Button UI
*/
.astra-sites-preview .wp-full-overlay-footer .devices button.active:before,
.astra-sites-preview .wp-full-overlay-footer .devices button:hover:before {
color: #0073aa;
}
.astra-sites-preview .wp-full-overlay-footer .devices button:before {
color: #c1c1c1;
}
.astra-sites-preview .wp-full-overlay-footer .devices button:hover {
background-color: transparent;
}
.astra-sites-preview .wp-full-overlay-footer .devices button {
border: none;
}
.astra-sites-preview .wp-full-overlay-footer .devices button:focus,
.astra-sites-preview .wp-full-overlay-footer .devices button.active:hover {
border-bottom-color: transparent;
background-color: transparent;
}
.not-click-able {
pointer-events: none !important;
}
body.page-builder-selected .select-page-builder,
body.loading-content .select-page-builder {
display: none;
}
.select-page-builder .up-arrow {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
display: inline-block;
font-size: 1.5em;
color: #797979;
vertical-align: middle;
margin-right: 10px;
-webkit-transition: all linear 0.6s;
-moz-transition: all linear 0.6s;
-ms-transition: all linear 0.6s;
transition: all linear 0.6s;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
animation-name: bounce;
-moz-animation-name: bounce;
}
.select-page-builder {
margin-left: 6em;
}
.select-page-builder img {
max-width: 100%;
}
.select-page-builder .note-wrap {
position: absolute;
padding: 40px 0;
margin-left: 170px;
right: 0;
left: 0;
}
.select-page-builder h3 {
margin: 0;
font-size: 2em;
}
.select-page-builder {
margin: -20px 0 0 -5px;
position: absolute;
}
.select-page-builder .note {
margin-left: 1.5em;
}
@keyframes bounce {
0%,
100%,
20%,
50%,
80% {
-webkit-transform: translateY(-0px) rotate(90deg);
-moz-transform: translateY(-0px) rotate(90deg);
-ms-transform: translateY(-0px) rotate(90deg);
transform: translateY(-0px) rotate(90deg);
}
40% {
-webkit-transform: translateY(-2px) rotate(90deg);
-moz-transform: translateY(-2px) rotate(90deg);
-ms-transform: translateY(-2px) rotate(90deg);
transform: translateY(-2px) rotate(90deg);
}
60% {
-webkit-transform: translateY(-1px) rotate(90deg);
-moz-transform: translateY(-1px) rotate(90deg);
-ms-transform: translateY(-1px) rotate(90deg);
transform: translateY(-1px) rotate(90deg);
}
}
/**
* Processing Animation
*/
.astra-demo-import.disabled {
pointer-events: none;
}
.astra-demo-import.button.updating-message:before,
.astra-demo-import.button.installing:before {
-webkit-animation: cssAnimation .72s ease infinite;
-moz-animation: cssAnimation .72s ease infinite;
-o-animation: cssAnimation .72s ease infinite;
-ms-animation: cssAnimation .72s ease infinite;
animation: cssAnimation .72s ease infinite;
}
@-webkit-keyframes cssAnimation {
from {
-webkit-transform: rotate(0);
-moz-transform: rotate(0);
-o-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
}
to {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-moz-keyframes cssAnimation {
from {
-webkit-transform: rotate(0);
-moz-transform: rotate(0);
-o-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
}
to {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-o-keyframes cssAnimation {
from {
-webkit-transform: rotate(0);
-moz-transform: rotate(0);
-o-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
}
to {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
}
#astra-sites-filters {
display: inline-block;
width: 100%;
}
.astra-site-down {
padding: 1em 2em;
margin-top: 1em;
} | public/landing/wp-content/plugins/astra-sites/inc/assets/css/admin.css | .wrap .status,
.wrap .site-type {
position: absolute;
z-index: 1;
color: #fff;
padding: 0.5em 1em;
top: -0.5em;
text-transform: uppercase;
}
.wrap .status,
.wrap .site-type.premium {
background: #0073aa;
}
.wrap .status {
left: -0.5em;
}
.wrap .site-type.premium {
right: -0.5em;
}
.wrap .status.publish,
.wrap .site-type.free {
display: none;
}
.install-theme-info .site-type {
display: none;
}
.theme {
position: relative;
}
.wrap .astra-sites-preview .site-type.premium {
display: block;
display: none;
position: relative;
margin: 0.5em 0em 1em 0em;
top: 0;
left: 0;
text-align: center;
}
.theme-details-read-more.open {
margin: 0.5em 0 0 0;
}
.astra-sites-preview .theme-screenshot {
width: 100%;
}
.install-theme-info .site-type.premium {
display: none;
}
/**
* Required Plugins
*/
.required-plugins.loading {
text-align: center;
}
.required-plugins button {
float: right;
}
.required-plugins .plugin-card {
float: none;
width: 100%;
border: none;
margin: 0 0 0.8em 0;
display: flex;
justify-content: space-between;
align-items: center;
transition: background ease 0.8s;
}
.required-plugins .plugin-card.plugin-card-update-failed {
flex-wrap: wrap;
}
.required-plugins .spinner {
float: none;
margin: 0;
}
.expanded .wp-full-overlay-footer {
height: 111px;
}
.wp-full-overlay-footer .view-site,
.wp-full-overlay-footer .go-pro,
.wp-full-overlay-footer .astra-demo-import {
width: 100%;
text-align: center;
}
.wp-core-ui .wp-full-overlay-footer .button.button-hero,
.wp-core-ui .wp-full-overlay-footer .button-group.button-hero .button {
padding: 0 10px 1px;
}
.wp-full-overlay-footer .installing:before {
vertical-align: text-bottom;
}
.required-plugins-wrap h4 {
margin: 1em 0 0.5em 0;
padding: 0.5em 0;
transition: all ease 0.3s;
}
/**
* Read more link
*/
.wp-core-ui .theme-details-read-more:focus,
.wp-core-ui .theme-details-read-more:hover {
outline: none;
box-shadow: none;
}
.wp-core-ui .theme-details-read-more {
margin: 10px 0;
display: none;
text-decoration: none;
}
/**
* Go pro.
*/
.wp-core-ui .go-pro.button[disabled] {
background-color: #fcb92c !important;
color: white !important;
box-shadow: 1px 0 #eab23a !important;
text-shadow: 1px 0 #6b4e13 !important;
border-color: #e2a932 !important;
cursor: pointer;
}
.wp-core-ui .view-site .dashicons,
.wp-core-ui .go-pro .dashicons {
font-size: 1rem;
vertical-align: middle;
}
/**
* Errors
*/
.plugin-card-update-failed .notice {
margin-top: 1.5em;
}
.no-themes {
margin-top: 40px;
}
.no-themes p {
font-size: 15px;
}
.no-themes .left-margin {
margin-left: 30px;
}
/**
*
*/
.astra-sites-preview .wp-full-overlay-sidebar-content {
bottom: 100px;
}
.footer-import-button-wrap {
padding: 10px 20px;
}
.footer-import-button-wrap .button {
margin: 0;
}
.astra-sites-preview.expanded .wp-full-overlay-footer {
left: initial;
}
/**
* Menu Page
*/
.astra-sites-title {
float: left;
font-size: 23px;
font-weight: 400;
margin: 0 0 6px 0px;
padding: 0;
line-height: 29px;
}
#astra-sites-menu-page {
margin-top: 10px;
}
/**
* API Error
*/
.astra-api-error {
margin: 0 0 0.5em 0;
}
/**
* Grid
*/
.wp-filter .search-form {
margin-left: 1em;
}
.wp-filter .search-form input[type="search"] {
width: 200px;
font-size: 13px;
padding: 5px 10px;
}
.section-left {
display: inline-block;
}
.section-right {
float: right;
}
.filter-count {
min-width: 3em;
}
.astra-site-preview-on {
overflow: hidden;
}
.appearance_page_astra-sites .notice {
margin-left: 0;
width: auto;
float: none;
}
.filters-wrap {
display: inline-block;
}
.spinner-wrap {
text-align: center;
}
.spinner-wrap .spinner {
float: none;
}
.hide-me {
display: none !important;
}
#astra-sites-admin {
height: 100vh;
}
.install-theme-info > .notice {
margin: 5px 0 10px 0;
}
.astra-sites-suggestions:before {
border: 5px dashed #ccc;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0px;
}
.astra-sites-suggestions {
min-height: 280px;
border: none !important;
}
.astra-sites-suggestions a {
border: none;
outline: none;
}
.astra-sites-suggestions .inner {
border: 6px solid #24282e !important;
padding: 27% 10% 50% 10%;
text-align: center;
position: absolute;
left: 0;
right: 0;
top: 0;
background: #33383d;
bottom: 0;
color: #eee;
cursor: auto;
}
.astra-sites-suggestions .inner a {
color: #00b9eb;
}
.astra-sites-suggestions p {
font-size: 1rem;
margin: 0;
}
.astra-notice {
margin: 2em 2em 0em 0em;
}
.no-themes .description {
display: block;
}
/**
* Responsive Button UI
*/
.astra-sites-preview .wp-full-overlay-footer .devices button.active:before,
.astra-sites-preview .wp-full-overlay-footer .devices button:hover:before {
color: #0073aa;
}
.astra-sites-preview .wp-full-overlay-footer .devices button:before {
color: #c1c1c1;
}
.astra-sites-preview .wp-full-overlay-footer .devices button:hover {
background-color: transparent;
}
.astra-sites-preview .wp-full-overlay-footer .devices button {
border: none;
}
.astra-sites-preview .wp-full-overlay-footer .devices button:focus,
.astra-sites-preview .wp-full-overlay-footer .devices button.active:hover {
border-bottom-color: transparent;
background-color: transparent;
}
.not-click-able {
pointer-events: none !important;
}
body.page-builder-selected .select-page-builder,
body.loading-content .select-page-builder {
display: none;
}
.select-page-builder .up-arrow {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
display: inline-block;
font-size: 1.5em;
color: #797979;
vertical-align: middle;
margin-right: 10px;
-webkit-transition: all linear 0.6s;
-moz-transition: all linear 0.6s;
-ms-transition: all linear 0.6s;
transition: all linear 0.6s;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
animation-name: bounce;
-moz-animation-name: bounce;
}
.select-page-builder {
margin-left: 6em;
}
.select-page-builder img {
max-width: 100%;
}
.select-page-builder .note-wrap {
position: absolute;
padding: 40px 0;
margin-left: 170px;
right: 0;
left: 0;
}
.select-page-builder h3 {
margin: 0;
font-size: 2em;
}
.select-page-builder {
margin: -20px 0 0 -5px;
position: absolute;
}
.select-page-builder .note {
margin-left: 1.5em;
}
@keyframes bounce {
0%,
100%,
20%,
50%,
80% {
-webkit-transform: translateY(-0px) rotate(90deg);
-moz-transform: translateY(-0px) rotate(90deg);
-ms-transform: translateY(-0px) rotate(90deg);
transform: translateY(-0px) rotate(90deg);
}
40% {
-webkit-transform: translateY(-2px) rotate(90deg);
-moz-transform: translateY(-2px) rotate(90deg);
-ms-transform: translateY(-2px) rotate(90deg);
transform: translateY(-2px) rotate(90deg);
}
60% {
-webkit-transform: translateY(-1px) rotate(90deg);
-moz-transform: translateY(-1px) rotate(90deg);
-ms-transform: translateY(-1px) rotate(90deg);
transform: translateY(-1px) rotate(90deg);
}
}
/**
* Processing Animation
*/
.astra-demo-import.disabled {
pointer-events: none;
}
.astra-demo-import.button.updating-message:before,
.astra-demo-import.button.installing:before {
-webkit-animation: cssAnimation .72s ease infinite;
-moz-animation: cssAnimation .72s ease infinite;
-o-animation: cssAnimation .72s ease infinite;
-ms-animation: cssAnimation .72s ease infinite;
animation: cssAnimation .72s ease infinite;
}
@-webkit-keyframes cssAnimation {
from {
-webkit-transform: rotate(0);
-moz-transform: rotate(0);
-o-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
}
to {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-moz-keyframes cssAnimation {
from {
-webkit-transform: rotate(0);
-moz-transform: rotate(0);
-o-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
}
to {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-o-keyframes cssAnimation {
from {
-webkit-transform: rotate(0);
-moz-transform: rotate(0);
-o-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
}
to {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
}
#astra-sites-filters {
display: inline-block;
width: 100%;
}
.astra-site-down {
padding: 1em 2em;
margin-top: 1em;
} | 0.554712 | 0.072571 |
@charset 'utf-8';
body{
background:url('../images/2.jpg') no-repeat
}
.ferriswheel-box{
position:relative;width:1090px;height:1090px;margin:0 auto}
.ferriswheel{
position:relative;
width:768px;
height:768px;
margin:0 auto;
background:url('../images/fsw.png') no-repeat;
z-index:8;
-webkit-animation:rotate 8s linear 0s infinite normal;
-moz-animation:rotate 8s linear 0s infinite normal;
-ms-animation:rotate 8s linear 0s infinite normal;
-o-animation:rotate 8s linear 0s infinite normal;
animation:rotate 8s linear 0s infinite normal
}
@-webkit-keyframes rotate{
0%{-webkit-transform:rotate(0deg) scale(1)}
100%{-webkit-transform:rotate(360deg) scale(1)}
}
@-moz-keyframes rotate{
0%{-moz-transform:rotate(0deg) scale(1)}
100%{-moz-transform:rotate(360deg) scale(1)}
}
@-ms-keyframes rotate{
0%{-ms-transform:rotate(0deg) scale(1)}
100%{-ms-transform:rotate(360deg) scale(1)}
}
@-o-keyframes rotate{
0%{-o-transform:rotate(0deg) scale(1)}
100%{-o-transform:rotate(360deg) scale(1)}
}
@keyframes rotate{
0%{transform:rotate(0deg) scale(1)}
100%{transform:rotate(360deg) scale(1)}
}
.ferriswheel img{
position:absolute;
display:block;
width:130px;
height:170px;
-webkit-animation:rotatechild 8s linear 0s infinite normal;
-webkit-transform-origin:50% 0;
-moz-animation:rotatechild 8s linear 0s infinite normal;
-moz-transform-origin:50% 0;
-ms-animation:rotatechild 8s linear 0s infinite normal;
-ms-transform-origin:50% 0;
-o-animation:rotatechild 8s linear 0s infinite normal;
-o-transform-origin:50% 0;
animation:rotatechild 8s linear 0s infinite normal;
transform-origin:50% 0
}
@-webkit-keyframes rotatechild{
0%{-webkit-transform:rotate(0deg)}
100%{-webkit-transform:rotate(-360deg)}
}
@-moz-keyframes rotatechild{
0%{-moz-transform:rotate(0deg)}
100%{-moz-transform:rotate(-360deg)}
}
@-ms-keyframes rotatechild{0%{
-ms-transform:rotate(0deg)}
100%{-ms-transform:rotate(-360deg)}
}
@-o-keyframes rotatechild{
0%{-o-transform:rotate(0deg)}
100%{-o-transform:rotate(-360deg)}
}
@keyframes rotatechild{
0%{transform:rotate(0deg)}
100%{transform:rotate(-360deg)}
}
.ferriswheelpicfour{
top:28px;
left:320px
}
.ferriswheelpicseven{
top:130px;
left:575px
}
.ferriswheelpictwo{
top:380px;
left:672px
}
.ferriswheelpicsix{
top:633px;
left:577px
}
.ferriswheelpicone{
top:740px;
left:326px
}
.ferriswheelpicfive{
top:638px;
left:74px
}
.ferriswheelpicthree{
top:386px;
left:-34px
}
.ferriswheelpiceight{
top:130px;
left:70px
}
.bracket{
position:absolute;
display:block;
top:382px;
left:350px;
width:358px;
height:529px;
background:url('../images/bracket.png');
z-index:9
}
.bracketsmall{
position:absolute;
display:block;
top:407px;
left:410px;
width:247px;
height:505px;
background:url('../images/bracketsmall.png');
z-index:7
}
.ferriswheel-box dl{
position:absolute;
top:235px;
left:261px;
width:577px;
height:380px;
z-index:10
}
.ferriswheel-box dt{
float:left;
width:577px;
height:277px;
background:url('../images/big-title.png') no-repeat
}
.ferriswheel-box dd h1{
position:absolute;
top:215px;
left:82px;
width:413px;
height:139px;
background:url('../images/title.png') no-repeat;
z-index:2
}
.ferriswheel-box dd span{
position:absolute;
top:284px;
left:280px;
width:48px;
height:64px;
background:url('../images/arrow.png') no-repeat;
z-index:3
} | src/toys/Ferris-Wheel/css/css3-ferris-wheel.css | @charset 'utf-8';
body{
background:url('../images/2.jpg') no-repeat
}
.ferriswheel-box{
position:relative;width:1090px;height:1090px;margin:0 auto}
.ferriswheel{
position:relative;
width:768px;
height:768px;
margin:0 auto;
background:url('../images/fsw.png') no-repeat;
z-index:8;
-webkit-animation:rotate 8s linear 0s infinite normal;
-moz-animation:rotate 8s linear 0s infinite normal;
-ms-animation:rotate 8s linear 0s infinite normal;
-o-animation:rotate 8s linear 0s infinite normal;
animation:rotate 8s linear 0s infinite normal
}
@-webkit-keyframes rotate{
0%{-webkit-transform:rotate(0deg) scale(1)}
100%{-webkit-transform:rotate(360deg) scale(1)}
}
@-moz-keyframes rotate{
0%{-moz-transform:rotate(0deg) scale(1)}
100%{-moz-transform:rotate(360deg) scale(1)}
}
@-ms-keyframes rotate{
0%{-ms-transform:rotate(0deg) scale(1)}
100%{-ms-transform:rotate(360deg) scale(1)}
}
@-o-keyframes rotate{
0%{-o-transform:rotate(0deg) scale(1)}
100%{-o-transform:rotate(360deg) scale(1)}
}
@keyframes rotate{
0%{transform:rotate(0deg) scale(1)}
100%{transform:rotate(360deg) scale(1)}
}
.ferriswheel img{
position:absolute;
display:block;
width:130px;
height:170px;
-webkit-animation:rotatechild 8s linear 0s infinite normal;
-webkit-transform-origin:50% 0;
-moz-animation:rotatechild 8s linear 0s infinite normal;
-moz-transform-origin:50% 0;
-ms-animation:rotatechild 8s linear 0s infinite normal;
-ms-transform-origin:50% 0;
-o-animation:rotatechild 8s linear 0s infinite normal;
-o-transform-origin:50% 0;
animation:rotatechild 8s linear 0s infinite normal;
transform-origin:50% 0
}
@-webkit-keyframes rotatechild{
0%{-webkit-transform:rotate(0deg)}
100%{-webkit-transform:rotate(-360deg)}
}
@-moz-keyframes rotatechild{
0%{-moz-transform:rotate(0deg)}
100%{-moz-transform:rotate(-360deg)}
}
@-ms-keyframes rotatechild{0%{
-ms-transform:rotate(0deg)}
100%{-ms-transform:rotate(-360deg)}
}
@-o-keyframes rotatechild{
0%{-o-transform:rotate(0deg)}
100%{-o-transform:rotate(-360deg)}
}
@keyframes rotatechild{
0%{transform:rotate(0deg)}
100%{transform:rotate(-360deg)}
}
.ferriswheelpicfour{
top:28px;
left:320px
}
.ferriswheelpicseven{
top:130px;
left:575px
}
.ferriswheelpictwo{
top:380px;
left:672px
}
.ferriswheelpicsix{
top:633px;
left:577px
}
.ferriswheelpicone{
top:740px;
left:326px
}
.ferriswheelpicfive{
top:638px;
left:74px
}
.ferriswheelpicthree{
top:386px;
left:-34px
}
.ferriswheelpiceight{
top:130px;
left:70px
}
.bracket{
position:absolute;
display:block;
top:382px;
left:350px;
width:358px;
height:529px;
background:url('../images/bracket.png');
z-index:9
}
.bracketsmall{
position:absolute;
display:block;
top:407px;
left:410px;
width:247px;
height:505px;
background:url('../images/bracketsmall.png');
z-index:7
}
.ferriswheel-box dl{
position:absolute;
top:235px;
left:261px;
width:577px;
height:380px;
z-index:10
}
.ferriswheel-box dt{
float:left;
width:577px;
height:277px;
background:url('../images/big-title.png') no-repeat
}
.ferriswheel-box dd h1{
position:absolute;
top:215px;
left:82px;
width:413px;
height:139px;
background:url('../images/title.png') no-repeat;
z-index:2
}
.ferriswheel-box dd span{
position:absolute;
top:284px;
left:280px;
width:48px;
height:64px;
background:url('../images/arrow.png') no-repeat;
z-index:3
} | 0.25618 | 0.09739 |
body.elfinder {
margin: 0;
}
body.elfinder #elfinder.ui-widget-content {
border: none;
}
/* input textarea */
.elfinder input,
.elfinder textarea {
color: #000;
background-color: #FFF;
}
/* dialogs */
.std42-dialog, .std42-dialog .ui-widget-content {
background-color: #ededed;
background-image: none;
background-clip: content-box;
}
/* navbar */
.elfinder .elfinder-navbar {
background: #dde4eb;
}
.elfinder-navbar .ui-state-hover {
color: #000;
background-color: #edf1f4;
border-color: #bdcbd8;
}
.elfinder-navbar-root.ui-state-active.ui-state-hover {
color: white;
background: #3875d7 !important;
}
.elfinder-navbar .ui-state-active {
background: #3875d7;
border-color: #3875d7;
color: #fff;
}
.elfinder-navbar .elfinder-droppable-active {
background: #A7C6E5 !important;
}
/* disabled elfinder */
.elfinder-disabled .elfinder-navbar .ui-state-active {
background: #dadada;
border-color: #aaa;
color: #fff;
}
/* current directory */
/* selected file in "icons" view */
.elfinder-cwd-view-icons .elfinder-cwd-file .ui-state-hover {
background: #ccc;
}
/* list view*/
.elfinder-cwd table thead td.ui-state-hover {
background: #ddd;
}
.elfinder-cwd table tr:nth-child(odd) {
background-color: #edf3fe;
}
.elfinder-cwd table tr {
border: 1px solid transparent;
border-top: 1px solid #fff;
}
.elfinder-cwd .elfinder-droppable-active td {
background: #A7C6E5 !important;
}
/* common selected background/color */
.elfinder-cwd-view-icons .elfinder-cwd-file .elfinder-cwd-filename.ui-state-hover,
.elfinder-cwd table td.ui-state-hover,
.elfinder-button-menu .ui-state-hover {
background: #3875d7;
color: #fff;
}
/* disabled elfinder */
.elfinder-disabled .elfinder-cwd-view-icons .elfinder-cwd-file .elfinder-cwd-filename.ui-state-hover,
.elfinder-disabled .elfinder-cwd table td.ui-state-hover {
background: #dadada;
}
/* statusbar */
.elfinder .elfinder-statusbar {
color: #555;
}
.elfinder .elfinder-statusbar a {
text-decoration: none;
color: #555;
}
.std42-dialog .elfinder-help, .std42-dialog .elfinder-help .ui-widget-content {
background: #fff;
}
/* contextmenu */
.elfinder-contextmenu .ui-state-hover {
background: #3875d7;
color: #fff;
}
.elfinder-contextmenu .ui-state-hover .elfinder-contextmenu-arrow {
background-image: url('../img/arrows-active.png');
}
/* jquery-ui overwrites */
.ui-widget-header {
background: #cccccc;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
border-bottom-right-radius: 0;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
border-bottom-left-radius: 0;
}
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
border-top-right-radius: 0;
}
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
border-top-left-radius: 0;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
background: #dadada;
}
.elfinder-navbar-root .ui-state-hover {
background: #3875d7 !important;
} | public/vendor/backpack/elfinder/elfinder.backpack.theme.css | body.elfinder {
margin: 0;
}
body.elfinder #elfinder.ui-widget-content {
border: none;
}
/* input textarea */
.elfinder input,
.elfinder textarea {
color: #000;
background-color: #FFF;
}
/* dialogs */
.std42-dialog, .std42-dialog .ui-widget-content {
background-color: #ededed;
background-image: none;
background-clip: content-box;
}
/* navbar */
.elfinder .elfinder-navbar {
background: #dde4eb;
}
.elfinder-navbar .ui-state-hover {
color: #000;
background-color: #edf1f4;
border-color: #bdcbd8;
}
.elfinder-navbar-root.ui-state-active.ui-state-hover {
color: white;
background: #3875d7 !important;
}
.elfinder-navbar .ui-state-active {
background: #3875d7;
border-color: #3875d7;
color: #fff;
}
.elfinder-navbar .elfinder-droppable-active {
background: #A7C6E5 !important;
}
/* disabled elfinder */
.elfinder-disabled .elfinder-navbar .ui-state-active {
background: #dadada;
border-color: #aaa;
color: #fff;
}
/* current directory */
/* selected file in "icons" view */
.elfinder-cwd-view-icons .elfinder-cwd-file .ui-state-hover {
background: #ccc;
}
/* list view*/
.elfinder-cwd table thead td.ui-state-hover {
background: #ddd;
}
.elfinder-cwd table tr:nth-child(odd) {
background-color: #edf3fe;
}
.elfinder-cwd table tr {
border: 1px solid transparent;
border-top: 1px solid #fff;
}
.elfinder-cwd .elfinder-droppable-active td {
background: #A7C6E5 !important;
}
/* common selected background/color */
.elfinder-cwd-view-icons .elfinder-cwd-file .elfinder-cwd-filename.ui-state-hover,
.elfinder-cwd table td.ui-state-hover,
.elfinder-button-menu .ui-state-hover {
background: #3875d7;
color: #fff;
}
/* disabled elfinder */
.elfinder-disabled .elfinder-cwd-view-icons .elfinder-cwd-file .elfinder-cwd-filename.ui-state-hover,
.elfinder-disabled .elfinder-cwd table td.ui-state-hover {
background: #dadada;
}
/* statusbar */
.elfinder .elfinder-statusbar {
color: #555;
}
.elfinder .elfinder-statusbar a {
text-decoration: none;
color: #555;
}
.std42-dialog .elfinder-help, .std42-dialog .elfinder-help .ui-widget-content {
background: #fff;
}
/* contextmenu */
.elfinder-contextmenu .ui-state-hover {
background: #3875d7;
color: #fff;
}
.elfinder-contextmenu .ui-state-hover .elfinder-contextmenu-arrow {
background-image: url('../img/arrows-active.png');
}
/* jquery-ui overwrites */
.ui-widget-header {
background: #cccccc;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
border-bottom-right-radius: 0;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
border-bottom-left-radius: 0;
}
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
border-top-right-radius: 0;
}
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
border-top-left-radius: 0;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
background: #dadada;
}
.elfinder-navbar-root .ui-state-hover {
background: #3875d7 !important;
} | 0.368974 | 0.063251 |
@charset "utf-8";
/* CSS Document */
body {
margin: 0;
padding: 0;
font-size: 12px;
font-family: "Microsoft YaHei";
line-height: 25px;
color: #555555;
}
div, table {
margin: 0 auto;
}
a {
color: #555555;
text-decoration: none;
cursor: pointer;
}
a:hover {
color: #ff4e00;
text-decoration: none;
cursor: pointer;
}
img {
border: 0;
}
ul, li, dl, dt, dd {
list-style: none;
margin: 0;
padding: 0;
}
input, io, select, checkbox {
vertical-align: middle;
}
h1, h2, h3, h4, h5, h6 {
padding: 0;
margin: 0 auto;
}
.fl {
float: left;
}
.fr {
float: right;
}
form {
margin: 0;
padding: 0;
}
.none {
display: none;
}
/*html{
-webkit-filter:grayscale(100%); filter:grayscale(100%);
}
html { overflow-y:scroll; filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); -webkit-filter: grayscale(100%);}*/
/*html{
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
}*/
/*---------------header---------------*/
.soubg {
width: 100%;
min-width: 1200px;
height: 35px;
background-color: #f6f6f6;
font-family: "宋体";
}
.sou {
width: 1200px;
height: 35px;
line-height: 35px;
}
.s_city_b {
width: 150px;
height: 35px;
float: left;
}
.s_city {
height: 35px;
background: url(../images/t_arrow.gif) no-repeat right center;
float: left;
padding-right: 15px;
cursor: pointer;
position: relative;
}
.s_city:hover .s_city_bg {
display: block;
}
.s_city_bg {
width: 254px;
overflow: hidden;
position: absolute;
left: -50px;
top: 29px;
z-index: 900;
display: none;
}
.s_city_t {
width: 9px;
height: 7px;
line-height: 7px;
overflow: hidden;
background: url(../images/c_t.gif) no-repeat center top;
position: absolute;
left: 55px;
top: 0;
}
.s_city_c {
width: 252px;
height: 460px;
overflow: hidden;
background-color: #FFF;
font-family: "Microsoft YaHei";
margin-top: 6px;
border: 1px solid #cdcdcd;
}
.s_city_c h2 {
width: 230px;
height: 29px;
line-height: 29px;
overflow: hidden;
font-size: 14px;
font-weight: normal;
text-align: left;
margin-top: 5px;
border-bottom: 1px dotted #666666;
}
table.c_tab tr th {
line-height: 26px;
font-weight: normal;
color: #000;
width: 20px;
text-transform: uppercase;
}
.c_h span {
line-height: 26px;
float: left;
display: inline;
padding: 0 3px;
margin-right: 3px;
cursor: pointer;
}
.c_h span:hover {
color: #ff4e00;
}
.c_h span.c_check {
color: #FFF;
background-color: #ff4e00;
}
/*.s_log{
width:220px; height:35px; overflow:hidden; float:left;
}*/
.ss {
width: 225px;
height: 35px;
float: left;
}
.ss_list {
height: 35px;
background: url(../images/t_arrow.gif) no-repeat right center;
float: left;
display: inline;
margin-left: 10px;
padding-right: 15px;
cursor: pointer;
position: relative;
}
.ss_list:hover .ss_list_bg {
display: block;
}
.ss_list_bg {
width: 116px;
overflow: hidden;
position: absolute;
left: 50%;
top: 29px;
margin-left: -58px;
z-index: 900;
display: none;
}
.ss_list_t {
height: 7px;
line-height: 7px;
overflow: hidden;
background: url(../images/c_t.gif) no-repeat center top;
position: absolute;
left: 0;
top: 0;
}
.ss_list_c {
overflow: hidden;
background-color: #FFF;
font-family: "Microsoft YaHei";
margin-top: 6px;
padding: 10px 0;
border: 1px solid #cdcdcd;
}
.ss_list_c ul li {
height: 25px;
line-height: 25px;
overflow: hidden;
text-align: center;
}
.s_sh {
width: 55px;
height: 35px;
overflow: hidden;
float: left;
}
.s_sh a {
width: 20px;
height: 35px;
line-height: 35px;
overflow: hidden;
float: left;
display: inline;
margin: 0 3px;
text-indent: -9999em;
}
.s_sh a.sh1 {
background: url(../images/sh1.png) no-repeat center 8px;
}
.s_sh a.sh2 {
background: url(../images/sh2.png) no-repeat center center;
}
.top {
width: 1200px;
height: 140px;
}
.logo {
width: 207px;
height: 55px;
overflow: hidden;
float: left;
display: inline;
margin-top: 40px;
}
.search {
width: 520px;
height: 65px;
overflow: hidden;
float: left;
display: inline;
margin-left: 134px;
margin-top: 50px;
}
.s_ipt {
width: 408px;
height: 36px;
line-height: 36px \9;
overflow: hidden;
color: #555555;
font-size: 14px;
font-family: "Microsoft YaHei";
float: left;
padding: 0 10px;
border: 2px solid #ff4e00;
border-right: 0;
}
.s_btn {
width: 90px;
height: 40px;
line-height: 40px \9;
background-color: #ff4e00;
color: #FFF;
font-size: 16px;
font-family: "Microsoft YaHei";
text-align: center;
float: left;
border: 0;
cursor: pointer;
}
.search a {
margin-right: 12px;
display: inline-block;
}
.i_car {
width: 141px;
height: 38px;
line-height: 38px;
background: url(../images/car.png) no-repeat 10px center;
background-color: #f6f6f6;
float: right;
margin-top: 50px;
border: 1px solid #d9d9d9;
position: relative;
}
.car_t {
width: 95px;
height: 38px;
overflow: hidden;
background: url(../images/d_arrow.png) no-repeat right center;
font-size: 14px;
margin-left: 38px;
cursor: pointer;
}
.car_t span {
color: #ff4e00;
}
.i_car:hover .car_bg {
display: block;
}
.car_bg {
width: 283px;
overflow: hidden;
background-color: #FFF;
border: 1px solid #d9d9d9;
position: absolute;
right: -1px;
top: 38px;
z-index: 900;
display: none;
}
.un_login {
overflow: hidden;
text-align: center;
margin: 15px auto;
}
ul.cars {
overflow: hidden;
}
ul.cars li {
height: 70px;
overflow: hidden;
margin-top: 10px;
border-bottom: 1px solid #e2e2e2;
}
ul.cars li .img {
width: 58px;
height: 58px;
overflow: hidden;
float: left;
display: inline;
margin-left: 15px;
border: 1px solid #e2e2e2;
}
ul.cars li .name {
width: 180px;
height: 40px;
line-height: 20px;
overflow: hidden;
color: #888888;
font-family: "宋体";
float: left;
display: inline;
margin-left: 8px;
}
ul.cars li .name a {
color: #888888;
}
ul.cars li .name a:hover {
color: #ff4e00;
}
ul.cars li .price {
width: 180px;
height: 20px;
line-height: 20px;
overflow: hidden;
color: #888888;
font-size: 14px;
float: left;
display: inline;
margin-left: 8px;
}
.price_sum {
width: 255px;
height: 30px;
line-height: 30px;
overflow: hidden;
font-size: 14px;
text-align: right;
margin-top: 10px;
}
.price_sum span {
color: #ff4e00;
font-size: 20px;
font-weight: bold;
}
.price_a {
width: 120px;
height: 35px;
line-height: 35px;
overflow: hidden;
background: url(../images/a_link.gif) repeat-x center top;
color: #FFF;
font-size: 14px;
text-align: center;
margin-right: 13px;
margin-top: 5px;
margin-bottom: 20px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.price_a a {
color: #FFF;
}
.menu_bg {
width: 100%;
min-width: 1200px;
height: 43px;
border-bottom: 2px solid #ff4e00;
}
.menu {
width: 1200px;
height: 43px;
line-height: 43px;
color: #3e3e3e;
font-size: 16px;
position: relative;
z-index: 800;
}
ul.menu_r {
width: 720px;
height: 40px;
overflow: hidden;
float: left;
display: inline;
margin-left: 211px;
}
ul.menu_r li {
width: 70px;
height: 40px;
line-height: 40px;
overflow: hidden;
text-align: center;
float: left;
display: inline;
margin-right: 10px;
}
ul.menu_r li a {
width: 70px;
height: 40px;
overflow: hidden;
float: left;
color: #3e3e3e;
}
ul.menu_r li a:hover, ul.menu_r li a.now {
color: #ff4e00;
}
.m_ad {
width: 260px;
height: 43px;
line-height: 40px;
overflow: hidden;
color: #ff3600;
font-size: 20px;
font-weight: bold;
text-align: right;
float: right;
}
.nav {
width: 211px;
height: 45px;
background-color: #ff3200;
position: absolute;
left: 0px;
top: 0;
}
.nav_t {
width: 211px;
height: 43px;
line-height: 43px;
overflow: hidden;
color: #FFF;
font-size: 16px;
text-indent: 35px;
}
.leftNav {
width: 211px;
height: 412px;
background-color: #ff4e00;
position: absolute;
left: 0;
top: 44px;
}
.none {
display: none;
}
.leftNav ul li {
height: 40px;
line-height: 40px;
background: url(../images/n_arrow.gif) no-repeat 195px center;
color: #FFF;
font-size: 14px;
margin-left: 1px;
cursor: pointer;
position: relative;
}
.leftNav ul li .n_img {
width: 20px;
height: 21px;
overflow: hidden;
text-align: center;
float: left;
display: inline;
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
}
.leftNav ul li .n_img span {
height: 100%;
vertical-align: middle;
display: inline-block;
}
.leftNav ul li .n_img img {
vertical-align: middle;
}
/*.leftNav ul li a{ color:#6e6e6e; }
.leftNav ul li a:hover{ color:#e02d02; }*/
.leftNav ul li ul {
width: 220px;
min-height: 70px;
overflow: hidden;
background: url(../images/nav_bg.png) repeat center top;
position: absolute;
left: 196px;
top: 0px;
border: 1px solid #d4d2d2;
border-left: 0px;
z-index: 900;
display: none;
}
.leftNav ul li ul li {
width: 195px;
height: auto;
line-height: 25px;
overflow: hidden;
font-size: 12px;
font-weight: normal;
background: none;
margin: 10px auto;
padding: 0px 0px 5px 0px;
border-bottom: 1px dashed #d1d0d1;
}
.leftNav ul li ul li a {
color: #989797;
margin: 0px 10px;
}
.leftNav ul li ul li a:hover {
color: #e02d02;
}
.leftNav ul li ul li .n_t {
width: 50px;
height: 20px;
line-height: 20px;
overflow: hidden;
text-align: center;
font-weight: bold;
float: left;
}
.leftNav ul li ul li .n_c {
width: 142px;
overflow: hidden;
float: left;
}
.leftNav ul li ul li .n_c a {
width: 60px;
height: 20px;
line-height: 20px;
overflow: hidden;
float: left;
display: inline-block;
margin: 0px 0px 0px 10px;
}
.leftNav ul li .fj {
width: 210px;
height: 40px;
line-height: 40px;
display: block;
overflow: hidden;
position: absolute;
left: 0;
top: 0;
z-index: 901;
}
.leftNav ul li .fj.nuw {
width: 211px;
text-decoration: none;
height: 40px;
line-height: 40px;
background-color: #FFF;
color: #ff4e00;
z-index: 800px;
}
.leftNav .zj {
width: 989px;
height: 411px;
overflow: hidden;
background-color: #FFF;
position: absolute;
left: 210px;
top: 0;
display: none;
}
.leftNav .zj .zj_l {
width: 685px;
height: 385px;
overflow: hidden;
float: left;
display: inline;
margin-left: 20px;
margin-top: 15px;
}
.leftNav .zj .zj_l_c {
width: 280px;
height: 108px;
line-height: 25px;
overflow: hidden;
color: #dbdbdb;
float: left;
display: inline;
margin-right: 50px;
margin-bottom: 25px;
}
.leftNav .zj .zj_l_c h2 {
height: 25px;
line-height: 25px;
color: #3e3e3e;
font-size: 14px;
font-weight: bold;
margin-bottom: 5px;
margin-left: 10px;
}
.leftNav .zj .zj_l_c a {
line-height: 22px;
font-size: 12px;
font-family: "宋体";
padding: 0 10px;
margin: 0;
}
.leftNav .zj .zj_r {
width: 236px;
height: 402px;
overflow: hidden;
float: right;
display: inline;
margin-right: 10px;
margin-top: 5px;
}
.leftNav .zj .zj_r img {
width: 236px;
height: 200px;
display: block;
margin-bottom: 1px;
}
/*---------------首页---------------*/
.i_bg {
width: 100%;
min-width: 1200px;
overflow: hidden;
}
.bg_color {
background-color: #f6f6f6;
}
.content {
width: 1200px;
overflow: hidden;
}
.mar_5 {
margin-top: 5px;
}
.mar_10 {
margin-top: 10px;
}
.mar_15 {
margin-top: 15px;
}
.mar_20 {
margin-top: 20px;
}
.i_ban_bg {
width: 1200px;
height: 401px;
margin-top: 10px;
}
.banner {
width: 740px;
height: 401px;
overflow: hidden;
float: left;
display: inline;
margin-left: 223px;
}
.banner .top_slide_wrap {
width: 740px;
height: 401px;
overflow: hidden;
position: relative;
z-index: 1;
}
.banner .slide_box {
height: 401px;
overflow: hidden;
}
.banner .slide_box li {
height: 401px;
position: relative;
}
.banner .slide_box li a {
width: 740px;
height: 401px;
display: block;
}
.banner .slide_box img {
text-align: center;
height: 420px;
}
.banner .slide_info {
width: 740px;
margin: -530px auto 0;
}
.banner .slide_info_card {
width: 420px;
height: 0;
margin-top: 171px;
color: #fff;
position: relative;
}
.banner .slide_info_card a {
color: #fff;
text-decoration: none
}
.banner .slide_info_card .slide_info_card_bg {
width: 420px;
height: 200px;
background: #0071c6;
position: absolute;
top: 0;
left: 0;
z-index: 1;
opacity: .8;
*filter: alpha(opacity=80)
}
.banner .slide_info_card .slide_info_card_text {
width: 340px;
height: 140px;
padding: 30px 40px;
position: absolute;
top: 0;
left: 0;
z-index: 2
}
.banner .slide_info_card h2 {
font-size: 40px;
padding-bottom: 8px
}
.banner .slide_info_card p {
font-size: 15px;
line-height: 26px
}
.banner .slide_info_card p strong {
font-size: 12px;
height: 25px;
display: inline-block;
padding: 0 10px;
background: #095b99;
border-radius: 5px;
color: #fff;
margin-top: 8px
}
/* op_btns */
.banner .op_btns {
width: 740px;
margin-top: -730px;
position: relative;
z-index: 3;
}
.banner .op_btns .op_btn {
display: block;
width: 32px;
height: 60px;
cursor: pointer;
overflow: hidden;
position: absolute;
margin-top: 80px;
}
.banner .op_btns .op_prev {
background: url(../images/b_left.png) no-repeat center top;
left: 0;
top: 420px;
}
.banner .op_btns .op_next {
background: url(../images/b_right.png) no-repeat center top;
right: 0;
top: 420px;
}
.banner .op_btns .op_prev span, .banner .op_btns .op_next span {
display: block;
width: 32px;
height: 60px;
margin: 8px 0 0 17px;
cursor: pointer;
}
.banner .op_btns .op_prev span {
background-position: 0 0;
}
.banner .op_btns .op_next span {
background-position: -73px 0;
margin-left: 20px;
}
/* bx-controls */
.banner .bx-wrapper .bx-controls {
margin-top: -44px;
}
.banner .bx-wrapper .bx-controls .bx-pager {
clear: both;
text-align: center;
position: relative;
overflow: hidden;
}
.banner .bx-wrapper .bx-controls .bx-pager a {
width: 15px;
height: 15px;
line-height: 15px;
display: inline-block;
overflow: hidden;
margin: 15px 5px;
background: url(../images/b.png) no-repeat center top;
}
.banner .bx-wrapper .bx-controls .bx-pager a:hover, .banner .bx-wrapper .bx-controls .bx-pager a.active {
background: url(../images/b_h.png) no-repeat center top;
}
/*.ban_bg{
width:850px; height:430px; overflow:hidden; background-color:#FFF; float:left; -webkit-box-shadow:0 0 5px #e0e0e0; -moz-box-shadow:0 0 5px #e0e0e0; box-shadow:0 0 5px #e0e0e0;
}
.banner{
width:850px; height:430px; overflow:hidden; position:relative;
}
.banner .a_bigImg{ position:absolute; left:0px; top:0px; display:none; width:850px; height:430px; overflow:hidden; }
.banner .a_bigImg .name{
width:850px; height:80px; line-height:80px; overflow:hidden; background:url(../images/b_name.png) repeat-x center top; color:#333333; font-size:20px; text-align:center; position:absolute; left:0; bottom:40px;
}
.banner .ul_change_a2{ position:absolute; left:10px; bottom:15px; overflow:hidden; text-align:center; }
.banner .ul_change_a2 li{
width:10px; height:10px; line-height:10px; overflow:hidden; float:left; display:inline-block; margin:0px 4px; cursor:pointer;
}
.banner .ul_change_a2 span{
width:10px; height:10px; line-height:10px; overflow:hidden; float:left; text-align:center; background:url(../images/b.png) no-repeat center top;
}
.banner .ul_change_a2 span.on { background:url(../images/b_h.png) no-repeat center top; }*/
.inews {
width: 225px;
height: 399px;
background-color: #FFF;
float: right;
border: 1px solid #d9d9d9;
}
.news_t {
height: 39px;
line-height: 39px;
overflow: hidden;
color: #3e3e3e;
font-size: 16px;
padding: 0 10px;
border-bottom: 1px dotted #d9d9d9;
}
.news_t span {
font-size: 12px;
color: #888888;
}
.inews a {
color: #888888;
}
.inews a:hover {
color: #ff4e00;
}
.inews ul {
height: 150px;
overflow: hidden;
margin: 10px 10px 20px 10px;
}
.inews ul li {
height: 30px;
line-height: 30px;
overflow: hidden;
color: #888888;
}
.inews ul li span {
color: #3e3e3e;
margin-right: 10px;
}
.charge_t {
height: 39px;
line-height: 39px;
color: #3e3e3e;
font-size: 16px;
padding: 0 10px;
margin-top: 10px;
border-top: 1px solid #d9d9d9;
border-bottom: 1px dotted #d9d9d9;
position: relative;
}
.ch_t_icon {
width: 11px;
height: 7px;
line-height: 7px;
overflow: hidden;
background: url(../images/d_a.gif) no-repeat center top;
position: absolute;
left: 28px;
top: 39px;
}
.c_ipt {
width: 96px;
height: 23px;
line-height: 23px \9;
background-color: #FFF;
color: #555555;
font-size: 12px;
font-family: "Microsoft YaHei";
font-size: 15px;
padding: 0 10px;
border: 1px solid #d9d9d9;
}
.jslct {
width: 116px;
height: 23px;
line-height: 23px;
display: inline-block;
*display: inline;
zoom: 1;
color: #555555;
font-size: 12px;
font-family: "Microsoft YaHei";
position: relative;
z-index: 0;
vertical-align: middle;
cursor: default;
background: url(../images/d_arrow.png) no-repeat 97px center;
float: left;
border: 1px solid #d9d9d9;
}
.jslct_hover {
border: 1px solid #d9d9d9;
}
.jslct div.jslct_t {
padding: 0 45px 0 5px;
line-height: 23px;
height: 23px;
position: relative;
z-index: 2;
*display: block !important;
*display: inline;
zoom: 1;
}
.jslct em {
font-style: normal;
margin: 0;
padding: 0;
line-height: 23px;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.jslct dl, .jslct dl dd {
padding: 0;
margin: 0;
list-style: none
}
.jslct dl {
background: #fff;
position: absolute;
top: 23px;
left: -1px;
border: 1px solid #d9d9d9;
cursor: default;
line-height: 22px;
padding: 4px 4px 4px 4px;
z-index: 1;
display: none;
}
.jslct_hover dl {
border: 1px solid #d9d9d9 !important
}
.jslct dl dd {
padding: 0px 4px 2px 4px;
*padding: 2px 4px 0 4px;
border-top: 1px dotted #ccc !important;
border-top: 1px dotted #d9d9d9;
white-space: nowrap;
background: #fff;
cursor: pointer;
*border-left: 1px solid #fff;
}
.jslct dl dd.hover {
background: #666;
color: #fff;
}
.jslct .jslcted {
background: #efefef;
}
.jslct dl dd.noborder {
border: none !important
}
.c_btn {
width: 80px;
height: 26px;
line-height: 26px \9;
background-color: #ff4e00;
color: #FFF;
font-size: 12px;
font-family: "Microsoft YaHei";
text-align: center;
float: left;
border: 0;
cursor: pointer;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
/*----------首页(热门商品)-----------*/
.h_l_img {
width: 211px;
height: 230px;
overflow: hidden;
background-color: #d8eefc;
float: left;
position: relative;
}
.h_l_img .img {
width: 188px;
height: 188px;
margin-top: 8px;
}
.h_l_img .img img {
/*-moz-transform:scale(1,1); -webkit-transform:scale(1,1); -o-transform:scale(1,1); -ms-transform:scale(1,1); transform:scale(1,1);
-moz-transition-duration:600ms; -webkit-transition-duration:600ms; -o-transition-duration:600ms; -ms-transition-duration:600ms; transition-duration: 600ms;
-moz-transition-property:all; -webkit-transition-property:all; -o-transition-property:all; -ms-transition-property:all; transition-property:all;
-moz-transition-timing-function:ease-out; -webkit-transition-timing-function: ease-out; -o-transition-timing-function:ease-out; -ms-transition-timing-function:ease-out; transition-timing-function:ease-out;*/
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transform: all .5s;
-ms-transform: all .5s;
transition: all .5s;
}
.h_l_img:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.h_l_img .pri_bg {
width: 100px;
height: 20px;
line-height: 20px;
color: #ff4e00;
overflow: hidden;
position: absolute;
left: 50%;
margin-left: -50px;
bottom: 5px;
}
.h_l_img .price {
height: 20px;
line-height: 20px;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 14px;
text-align: center;
float: left;
padding: 0 5px;
margin-right: 5px;
}
.hot_pro {
width: 975px;
height: 228px;
overflow: hidden;
background-color: #FFF;
float: right;
border: 1px solid #eaeaea;
}
.hot_pro #featureContainer {
width: 975px;
height: 228px;
overflow: hidden;
}
.hot_pro #feature {
width: 975px;
height: 228px;
overflow: hidden;
position: relative;
}
.hot_pro #feature .button {
width: 975px;
position: absolute;
left: 0px;
top: 0px;
}
.hot_pro #feature .h_prev {
width: 32px;
height: 60px;
overflow: hidden;
background: url(../images/b_left.png) no-repeat center top;
display: block;
text-indent: -9999px;
float: left;
position: absolute;
left: 0px;
top: 84px;
}
.hot_pro #feature .h_next {
width: 32px;
height: 60px;
overflow: hidden;
background: url(../images/b_right.png) no-repeat center top;
display: block;
text-indent: -9999px;
float: left;
position: absolute;
right: 0px;
top: 84px;
}
.hot_pro .featureUL {
width: 2800px;
height: 375px;
overflow: hidden;
float: left;
position: relative;
}
.hot_pro .featureBox {
width: 243px;
height: 228px;
overflow: hidden;
background: url(../images/line.gif) no-repeat right 122px;
float: left;
border-right: 1px solid #eaeaea;
position: relative;
}
.hot_pro #botton-scroll {
width: 975px;
height: 228px;
overflow: hidden;
float: left;
z-index: 0;
}
.hot_pro #block {
width: 975px;
height: 228px;
overflow: hidden;
position: relative;
z-index: 0;
}
.hot_pro #block .box {
width: 243px;
height: 228px;
overflow: hidden;
margin: 0 auto;
position: relative;
}
.hot_pro #block .box .h_icon {
width: 50px;
height: 50px;
overflow: hidden;
position: absolute;
left: 10px;
top: 10px;
z-index: 100;
}
.hot_pro #block .box .imgbg {
width: 160px;
height: 136px;
margin-top: 5px;
}
.hot_pro #block .box .imgbg img {
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transform: all .5s;
-ms-transform: all .5s;
transition: all .5s;
}
.hot_pro #block .box .imgbg:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.hot_pro #block .box .name {
height: 40px;
line-height: 20px;
overflow: hidden;
color: #888888;
font-size: 12px;
text-align: center;
margin-top: 10px;
}
.hot_pro #block .box .name h2 {
height: 20px;
line-height: 20px;
overflow: hidden;
color: #555555;
font-size: 16px;
text-align: center;
}
.hot_pro #block .box .name h2 a {
color: #555555;
}
.hot_pro #block .box .name h2 a:hover {
color: #555555;
text-decoration: underline;
}
.hot_pro #block .box .name a {
color: #888888;
}
.hot_pro #block .box .name a:hover {
color: #888888;
text-decoration: underline;
}
.hot_pro #block .box .price {
height: 30px;
line-height: 30px;
overflow: hidden;
color: #999999;
text-align: center;
text-transform: uppercase;
}
.hot_pro #block .box .price font {
color: #ff4e00;
font-size: 14px;
}
.hot_pro #block .box .price span {
font-size: 20px;
}
/*----------首页(限时特卖)-----------*/
.i_t {
width: 1190px;
height: 39px;
line-height: 39px;
overflow: hidden;
color: #ff4e00;
font-size: 18px;
padding: 0 5px;
border-bottom: 2px solid #ff4e00;
}
.i_mores {
font-size: 12px;
color: #555555;
}
.i_mores a {
color: #555555;
}
.i_mores a:hover {
color: #ff4e00;
}
.i_sell {
width: 211px;
height: 357px;
overflow: hidden;
float: left;
}
.i_sell #imgPlay {
width: 211px;
height: 357px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.i_sell #imgPlay .imgs img {
width: 211px;
}
.i_sell #imgPlay .imgs li {
position: relative;
float: left;
width: 211px;
height: 357px;
}
.i_sell #imgPlay .imgs {
width: 5760px;
}
.i_sell #imgPlay .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.i_sell #imgPlay .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.i_sell #imgPlay .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.i_sell #imgPlay .previ {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 158px;
}
.i_sell #imgPlay .nexti {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 158px;
}
.sell_right {
width: 975px;
height: 356px;
overflow: hidden;
background-color: #FFF;
float: right;
border: 1px solid #eaeaea;
position: relative;
}
.sell_right img {
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transform: all .5s;
-ms-transform: all .5s;
transition: all .5s;
}
.sell_1 {
width: 244px;
height: 177px;
overflow: hidden;
border-bottom: 1px solid #eaeaea;
position: absolute;
left: 0;
top: 0;
}
.sell_1:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.s_img {
width: 185px;
height: 155px;
overflow: hidden;
margin-top: 6px;
}
.s_price {
width: 100%;
height: 30px;
line-height: 30px;
overflow: hidden;
color: #ff4e00;
font-size: 14px;
text-indent: 10px;
position: absolute;
left: 0;
top: 10px;
}
.s_price span {
font-size: 20px;
}
.s_name {
width: 100%;
height: 60px;
overflow: hidden;
background: url(../images/name.png) repeat-x center top;
text-align: center;
position: absolute;
left: 0;
bottom: 0;
}
.s_name h2 {
height: 25px;
line-height: 25px;
overflow: hidden;
font-size: 16px;
margin-top: 5px;
}
.s_name span {
color: #ff4e00;
font-size: 14px;
}
.sell_2 {
width: 244px;
height: 178px;
overflow: hidden;
position: absolute;
left: 0;
top: 178px;
}
.sell_2:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.sell_b1 {
width: 242px;
height: 356px;
overflow: hidden;
border-left: 1px solid #eaeaea;
border-right: 1px solid #eaeaea;
position: absolute;
left: 244px;
top: 0;
}
.sell_b1:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.sb_img {
width: 242px;
height: 356px;
overflow: hidden;
}
.sell_3 {
width: 244px;
height: 178px;
overflow: hidden;
border-bottom: 1px solid #eaeaea;
position: absolute;
left: 488px;
top: 0;
}
.sell_3:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.sell_4 {
width: 244px;
height: 178px;
overflow: hidden;
position: absolute;
left: 488px;
top: 178px;
}
.sell_4:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.sell_b2 {
width: 242px;
height: 356px;
overflow: hidden;
border-right: 1px solid #eaeaea;
position: absolute;
right: 0;
top: 0;
}
.sell_b2:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
/*---------------首页(进口 生鲜)---------------*/
.floor_num {
width: 33px;
height: 34px;
line-height: 40px;
overflow: hidden;
background: url(../images/floor.png) no-repeat center top;
color: #FFF;
font-size: 14px;
text-transform: uppercase;
text-indent: 6px;
float: left;
display: inline;
margin-right: 15px;
}
.fresh_left {
width: 211px;
height: 441px;
overflow: hidden;
background-color: #a6e5be;
float: left;
}
.fre_ban {
width: 211px;
height: 286px;
overflow: hidden;
}
.fre_ban #imgPlay1 {
width: 211px;
height: 286px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.fre_ban #imgPlay .imgs img {
width: 211px;
}
.fre_ban #imgPlay1 .imgs li {
position: relative;
float: left;
width: 211px;
height: 286px;
}
.fre_ban #imgPlay1 .imgs {
width: 5760px;
}
.fre_ban #imgPlay1 .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.fre_ban #imgPlay1 .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.fre_ban #imgPlay1 .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.fre_ban .prevf {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 123px;
}
.fre_ban .nextf {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 123px;
}
.fresh_txt {
width: 211px;
height: 155px;
background: url(../images/s_txt.png) no-repeat center top;
padding-top: 1px;
}
.fresh_txt_c {
height: 120px;
line-height: 30px;
overflow: hidden;
margin-top: 10px;
}
.fresh_txt_c a {
display: inline-block;
margin-left: 20px;
margin-right: 12px;
}
.fresh_mid {
width: 729px;
height: 441px;
overflow: hidden;
background-color: #FFF;
float: left;
}
.fresh_mid ul li {
width: 242px;
height: 220px;
overflow: hidden;
float: left;
border-left: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea;
}
.fresh_mid ul li .name {
height: 20px;
line-height: 20px;
overflow: hidden;
font-size: 14px;
text-indent: 50px;
margin-top: 12px;
}
.fresh_mid ul li .price {
height: 20px;
line-height: 20px;
overflow: hidden;
color: #999999;
text-indent: 50px;
text-transform: uppercase;
}
.fresh_mid ul li .price font {
color: #ff4e00;
font-size: 14px;
}
.fresh_mid ul li .price span {
font-size: 18px;
}
.fresh_mid ul li .img {
width: 188px;
height: 155px;
overflow: hidden;
margin-top: 5px;
}
.fresh_mid ul li .img img {
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transform: all .5s;
-ms-transform: all .5s;
transition: all .5s;
}
.fresh_mid ul li:hover .img img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.fresh_right {
width: 260px;
height: 441px;
overflow: hidden;
background-color: #FFF;
float: right;
}
.fresh_right ul li {
width: 260px;
height: 220px;
overflow: hidden;
border-bottom: 1px solid #eaeaea;
}
/*---------------首页(食品饮料)---------------*/
.food_left {
width: 211px;
height: 441px;
overflow: hidden;
background-color: #f3e89b;
float: left;
}
.food_ban {
width: 211px;
height: 286px;
overflow: hidden;
}
.food_ban #imgPlay2 {
width: 211px;
height: 286px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.food_ban #imgPlay2 .imgs img {
width: 211px;
}
.food_ban #imgPlay2 .imgs li {
position: relative;
float: left;
width: 211px;
height: 286px;
}
.food_ban #imgPlay2 .imgs {
width: 5760px;
}
.food_ban #imgPlay2 .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.food_ban #imgPlay2 .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.food_ban #imgPlay2 .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.food_ban .prev_f {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 123px;
}
.food_ban .next_f {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 123px;
}
/*---------------首页(个人美妆)---------------*/
.make_left {
width: 211px;
height: 441px;
overflow: hidden;
background-color: #fabeb8;
float: left;
}
.make_ban {
width: 211px;
height: 286px;
overflow: hidden;
}
.make_ban #imgPlay3 {
width: 211px;
height: 286px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.make_ban #imgPlay3 .imgs img {
width: 211px;
}
.make_ban #imgPlay3 .imgs li {
position: relative;
float: left;
width: 211px;
height: 286px;
}
.make_ban #imgPlay3 .imgs {
width: 5760px;
}
.make_ban #imgPlay3 .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.make_ban #imgPlay3 .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.make_ban #imgPlay3 .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.make_ban .prev_m {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 123px;
}
.make_ban .next_m {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 123px;
}
/*---------------首页(母婴玩具)---------------*/
.baby_left {
width: 211px;
height: 441px;
overflow: hidden;
background-color: #f4bdd5;
float: left;
}
.baby_ban {
width: 211px;
height: 286px;
overflow: hidden;
}
.baby_ban #imgPlay4 {
width: 211px;
height: 286px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.baby_ban #imgPlay4 .imgs img {
width: 211px;
}
.baby_ban #imgPlay4 .imgs li {
position: relative;
float: left;
width: 211px;
height: 286px;
}
.baby_ban #imgPlay4 .imgs {
width: 5760px;
}
.baby_ban #imgPlay4 .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.baby_ban #imgPlay4 .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.baby_ban #imgPlay4 .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.baby_ban .prev_b {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 123px;
}
.baby_ban .next_b {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 123px;
}
/*---------------首页(家居生活)---------------*/
.home_left {
width: 211px;
height: 441px;
overflow: hidden;
background-color: #bad4f4;
float: left;
}
.home_ban {
width: 211px;
height: 286px;
overflow: hidden;
}
.home_ban #imgPlay5 {
width: 211px;
height: 286px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.home_ban #imgPlay5 .imgs img {
width: 211px;
}
.home_ban #imgPlay5 .imgs li {
position: relative;
float: left;
width: 211px;
height: 286px;
}
.home_ban #imgPlay5 .imgs {
width: 5760px;
}
.home_ban #imgPlay5 .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.home_ban #imgPlay5 .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.home_ban #imgPlay5 .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.home_ban .prev_h {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 123px;
}
.home_ban .next_h {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 123px;
}
/*---------------首页(数码家电)---------------*/
.tel_left {
width: 211px;
height: 441px;
overflow: hidden;
background-color: #b2e7ef;
float: left;
}
.tel_ban {
width: 211px;
height: 286px;
overflow: hidden;
}
.tel_ban #imgPlay6 {
width: 211px;
height: 286px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.tel_ban #imgPlay6 .imgs img {
width: 211px;
}
.tel_ban #imgPlay6 .imgs li {
position: relative;
float: left;
width: 211px;
height: 286px;
}
.tel_ban #imgPlay6 .imgs {
width: 5760px;
}
.tel_ban #imgPlay6 .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.tel_ban #imgPlay6 .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.tel_ban #imgPlay6 .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.tel_ban .prev_t {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 123px;
}
.tel_ban .next_t {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 123px;
}
/*---------------首页(猜你喜欢)---------------*/
.like {
width: 1198px;
height: 228px;
overflow: hidden;
background-color: #FFF;
border: 1px solid #eaeaea;
border-top: 0;
}
.like #featureContainer1 {
width: 1198px;
height: 228px;
overflow: hidden;
}
.like #feature1 {
width: 1198px;
height: 228px;
overflow: hidden;
position: relative;
}
.like #feature1 .button {
width: 1198px;
position: absolute;
left: 0px;
top: 0px;
}
.like #feature1 .l_prev {
width: 32px;
height: 60px;
overflow: hidden;
background: url(../images/b_left.png) no-repeat center top;
display: block;
text-indent: -9999px;
float: left;
position: absolute;
left: 0px;
top: 84px;
}
.like #feature1 .l_next {
width: 32px;
height: 60px;
overflow: hidden;
background: url(../images/b_right.png) no-repeat center top;
display: block;
text-indent: -9999px;
float: left;
position: absolute;
right: 0px;
top: 84px;
}
.like .featureUL {
width: 2800px;
height: 375px;
overflow: hidden;
float: left;
position: relative;
}
.like .featureBox {
width: 238px;
height: 228px;
overflow: hidden;
background: url(../images/line.gif) no-repeat right 122px;
float: left;
border-left: 1px solid #eaeaea;
border-right: 1px solid #eaeaea;
position: relative;
}
.like #botton-scroll {
width: 1198px;
height: 228px;
overflow: hidden;
float: left;
z-index: 0;
}
.like #block1 {
width: 1198px;
height: 228px;
overflow: hidden;
position: relative;
z-index: 0;
}
.like #block1 .box {
width: 238px;
height: 228px;
overflow: hidden;
margin: 0 auto;
position: relative;
}
.like #block1 .box .h_icon {
width: 50px;
height: 50px;
overflow: hidden;
position: absolute;
left: 10px;
top: 10px;
z-index: 100;
}
.like #block1 .box .imgbg {
width: 160px;
height: 136px;
margin-top: 5px;
}
.like #block1 .box .imgbg img {
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transform: all .5s;
-ms-transform: all .5s;
transition: all .5s;
}
.like #block1 .box .imgbg:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.like #block1 .box .name {
height: 40px;
line-height: 20px;
overflow: hidden;
color: #888888;
font-size: 12px;
text-align: center;
margin-top: 10px;
}
.like #block1 .box .name h2 {
height: 20px;
line-height: 20px;
overflow: hidden;
color: #555555;
font-size: 16px;
text-align: center;
}
.like #block1 .box .name h2 a {
color: #555555;
}
.like #block1 .box .name h2 a:hover {
color: #555555;
text-decoration: underline;
}
.like #block1 .box .name a {
color: #888888;
}
.like #block1 .box .name a:hover {
color: #888888;
text-decoration: underline;
}
.like #block1 .box .price {
height: 30px;
line-height: 30px;
overflow: hidden;
color: #999999;
text-align: center;
text-transform: uppercase;
}
.like #block1 .box .price font {
color: #ff4e00;
font-size: 14px;
}
.like #block1 .box .price span {
font-size: 20px;
}
/*---------------登录、注册---------------*/
.log_bg {
width: 100%;
min-width: 1200px;
height: 840px;
overflow: hidden;
background-color: #fff4ef;
}
.login {
width: 1200px;
overflow: hidden;
margin-top: 45px;
}
.log_img {
width: 611px;
height: 425px;
overflow: hidden;
float: left;
margin-top: 40px;
}
.log_c {
width: 455px;
height: 330px;
overflow: hidden;
background-color: #FFF;
float: right;
display: inline;
margin-top: 40px;
margin-right: 10px;
margin-bottom: 10px;
-webkit-box-shadow: 0 0 5px #e0e0e0;
-moz-box-shadow: 0 0 5px #e0e0e0;
box-shadow: 0 0 5px #e0e0e0;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.l_user {
width: 267px;
height: 38px;
line-height: 38px \9;
overflow: hidden;
background: url(../images/i_u.png) no-repeat 285px center;
background-color: #FFF;
color: #888888;
font-size: 14px;
font-family: "Microsoft YaHei";
padding: 0 40px 0 10px;
border: 1px solid #cccccc;
}
.l_pwd {
width: 267px;
height: 38px;
line-height: 38px \9;
overflow: hidden;
background: url(../images/i_pwd.png) no-repeat 285px center;
background-color: #FFF;
color: #888888;
font-size: 14px;
font-family: "Microsoft YaHei";
padding: 0 40px 0 10px;
border: 1px solid #cccccc;
}
.l_email {
width: 267px;
height: 38px;
line-height: 38px \9;
overflow: hidden;
background: url(../images/i_email.png) no-repeat 285px center;
background-color: #FFF;
color: #888888;
font-size: 14px;
font-family: "Microsoft YaHei";
padding: 0 40px 0 10px;
border: 1px solid #cccccc;
}
.l_tel {
width: 267px;
height: 38px;
line-height: 38px \9;
overflow: hidden;
background: url(../images/i_tel.png) no-repeat 285px center;
background-color: #FFF;
color: #888888;
font-size: 14px;
font-family: "Microsoft YaHei";
padding: 0 40px 0 10px;
border: 1px solid #cccccc;
}
.l_mem {
width: 267px;
height: 38px;
line-height: 38px \9;
overflow: hidden;
background: url(../images/i_mem.png) no-repeat 285px center;
background-color: #FFF;
color: #888888;
font-size: 14px;
font-family: "Microsoft YaHei";
padding: 0 40px 0 10px;
border: 1px solid #cccccc;
}
.l_num {
width: 267px;
height: 38px;
line-height: 38px \9;
overflow: hidden;
background: url(../images/i_num.png) no-repeat 285px center;
background-color: #FFF;
color: #888888;
font-size: 14px;
font-family: "Microsoft YaHei";
padding: 0 40px 0 10px;
border: 1px solid #cccccc;
}
.l_ipt {
width: 127px;
height: 38px;
line-height: 38px \9;
overflow: hidden;
background-color: #FFF;
color: #888888;
font-size: 14px;
font-family: "Microsoft YaHei";
padding: 0 10px;
border: 1px solid #cccccc;
}
.log_btn {
width: 318px;
height: 42px;
line-height: 42px \9;
overflow: hidden;
background: url(../images/btn_log.gif) repeat-x center top;
color: #FFF;
font-size: 16px;
font-family: "Microsoft YaHei";
text-align: center;
padding: 0;
border: 0;
cursor: pointer;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.regist {
width: 1200px;
overflow: hidden;
}
.reg_c {
width: 475px;
height: 600px;
overflow: hidden;
background-color: #FFF;
float: right;
display: inline;
margin-top: 0;
margin-right: 10px;
margin-bottom: 10px;
-webkit-box-shadow: 0 0 5px #e0e0e0;
-moz-box-shadow: 0 0 5px #e0e0e0;
box-shadow: 0 0 5px #e0e0e0;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
/*---------------分类页面---------------*/
ul.cate {
width: 105%;
overflow: hidden;
}
ul.cate li {
width: 295px;
height: 220px;
overflow: hidden;
float: left;
display: inline;
margin-right: 6px;
}
.cate_nav {
width: 209px;
height: 409px;
overflow: hidden;
background-color: #f6f6f6;
float: left;
border: 1px solid #eaeaea;
}
.cate_nav dl {
width: 189px;
overflow: hidden;
margin: 10px auto 0 auto;
padding-bottom: 10px;
border-bottom: 1px dotted #999999;
}
.cate_nav dl dt {
height: 22px;
height: 22px;
overflow: hidden;
color: #3e3e3e;
font-size: 14px;
clear: both;
margin-left: 12px;
}
.cate_nav dl dt a {
color: #3e3e3e;
}
.cate_nav dl dt a:hover {
color: #ff4e00;
}
.cate_nav dl dd {
height: 20px;
height: 20px;
overflow: hidden;
color: #888888;
font-family: "宋体";
float: left;
display: inline;
margin-left: 12px;
}
.cate_nav dl dd a {
color: #888888;
}
.cate_nav dl dd a:hover {
color: #555555;
text-decoration: underline;
}
.nban {
width: 977px;
height: 401px;
overflow: hidden;
float: right;
margin-top: 9px;
}
.nban .top_slide_wrap {
width: 977px;
height: 401px;
overflow: hidden;
position: relative;
z-index: 1;
}
.nban .slide_box {
height: 401px;
overflow: hidden;
}
.nban .slide_box li {
height: 401px;
position: relative;
}
.nban .slide_box li a {
width: 977px;
height: 401px;
display: block;
}
.nban .slide_box img {
text-align: center;
height: 420px;
}
.nban .slide_info {
width: 977px;
margin: -530px auto 0;
}
.nban .slide_info_card {
width: 420px;
height: 0;
margin-top: 171px;
color: #fff;
position: relative;
}
.nban .slide_info_card a {
color: #fff;
text-decoration: none
}
.nban .slide_info_card .slide_info_card_bg {
width: 420px;
height: 200px;
background: #0071c6;
position: absolute;
top: 0;
left: 0;
z-index: 1;
opacity: .8;
*filter: alpha(opacity=80)
}
.nban .slide_info_card .slide_info_card_text {
width: 340px;
height: 140px;
padding: 30px 40px;
position: absolute;
top: 0;
left: 0;
z-index: 2
}
.nban .slide_info_card h2 {
font-size: 40px;
padding-bottom: 8px
}
.nban .slide_info_card p {
font-size: 15px;
line-height: 26px
}
.nban .slide_info_card p strong {
font-size: 12px;
height: 25px;
display: inline-block;
padding: 0 10px;
background: #095b99;
border-radius: 5px;
color: #fff;
margin-top: 8px
}
/* op_btns */
.nban .op_btns {
width: 977px;
margin-top: -730px;
position: relative;
z-index: 3;
}
.nban .op_btns .op_btn {
display: block;
width: 32px;
height: 60px;
cursor: pointer;
overflow: hidden;
position: absolute;
margin-top: 80px;
}
.nban .op_btns .op_prev {
background: url(../images/b_left.png) no-repeat center top;
left: 0;
top: 420px;
}
.nban .op_btns .op_next {
background: url(../images/b_right.png) no-repeat center top;
right: 0;
top: 420px;
}
.nban .op_btns .op_prev span, .nban .op_btns .op_next span {
display: block;
width: 32px;
height: 60px;
margin: 8px 0 0 17px;
cursor: pointer;
}
.nban .op_btns .op_prev span {
background-position: 0 0;
}
.nban .op_btns .op_next span {
background-position: -73px 0;
margin-left: 20px;
}
/* bx-controls */
.nban .bx-wrapper .bx-controls {
margin-top: -44px;
}
.nban .bx-wrapper .bx-controls .bx-pager {
clear: both;
text-align: center;
position: relative;
overflow: hidden;
}
.nban .bx-wrapper .bx-controls .bx-pager a {
width: 15px;
height: 15px;
line-height: 15px;
display: inline-block;
overflow: hidden;
margin: 15px 5px;
background: url(../images/b.png) no-repeat center top;
}
.nban .bx-wrapper .bx-controls .bx-pager a:hover, .nban .bx-wrapper .bx-controls .bx-pager a.active {
background: url(../images/b_h.png) no-repeat center top;
}
.t_color {
color: #3e3e3e;
}
.milk_ban {
width: 228px;
height: 418px;
overflow: hidden;
float: left;
}
.milk_ban #imgPlaym {
width: 228px;
height: 418px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.milk_ban #imgPlaym .imgs img {
width: 228px;
}
.milk_ban #imgPlaym .imgs li {
position: relative;
float: left;
width: 228px;
height: 418px;
}
.milk_ban #imgPlaym .imgs {
width: 5760px;
}
.milk_ban #imgPlaym .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.milk_ban #imgPlaym .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.milk_ban #imgPlaym .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.milk_ban #imgPlaym .prevm {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 190px;
}
.milk_ban #imgPlaym .nextm {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 190px;
}
.milk_right {
width: 972px;
height: 418px;
overflow: hidden;
background-color: #FFF;
float: right;
}
.milk_right ul li {
width: 242px;
height: 208px;
overflow: hidden;
float: left;
border-right: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea;
}
.milk_right ul li .img {
width: 188px;
height: 155px;
overflow: hidden;
}
.milk_right ul li .img img {
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transform: all .5s;
-ms-transform: all .5s;
transition: all .5s;
}
.milk_right ul li:hover .img img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.milk_right ul li .name {
height: 20px;
line-height: 20px;
overflow: hidden;
font-size: 14px;
text-align: center;
margin-top: 3px;
}
.milk_right ul li .price {
height: 20px;
line-height: 20px;
overflow: hidden;
color: #999999;
text-align: center;
text-transform: uppercase;
}
.milk_right ul li .price font {
color: #ff4e00;
font-size: 14px;
}
.milk_right ul li .price span {
font-size: 18px;
}
.paper_ban {
width: 228px;
height: 418px;
overflow: hidden;
float: left;
}
.paper_ban #imgPlaypa {
width: 228px;
height: 418px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.paper_ban #imgPlaypa .imgs img {
width: 228px;
}
.paper_ban #imgPlaypa .imgs li {
position: relative;
float: left;
width: 228px;
height: 418px;
}
.paper_ban #imgPlaypa .imgs {
width: 5760px;
}
.paper_ban #imgPlaypa .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.paper_ban #imgPlaypa .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.paper_ban #imgPlaypa .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.paper_ban #imgPlaypa .prevpa {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 190px;
}
.paper_ban #imgPlaypa .nextpa {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 190px;
}
.bb_ban {
width: 228px;
height: 418px;
overflow: hidden;
float: left;
}
.bb_ban #imgPlayba {
width: 228px;
height: 418px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.bb_ban #imgPlayba .imgs img {
width: 228px;
}
.bb_ban #imgPlayba .imgs li {
position: relative;
float: left;
width: 228px;
height: 418px;
}
.bb_ban #imgPlayba .imgs {
width: 5760px;
}
.bb_ban #imgPlayba .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.bb_ban #imgPlayba .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.bb_ban #imgPlayba .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.bb_ban #imgPlayba .prevba {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 190px;
}
.bb_ban #imgPlayba .nextba {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 190px;
}
/*---------------分类列表---------------*/
.postion {
width: 1200px;
height: 40px;
line-height: 40px;
overflow: hidden;
font-family: "宋体";
}
.n_ch {
height: 23px;
line-height: 23px;
overflow: hidden;
float: left;
display: inline;
margin-left: 10px;
margin-top: 7px;
padding: 0 10px;
border: 1px dashed #ff4e00;
}
.n_ch font {
color: #ff3200;
}
.n_ch a {
width: 10px;
height: 9px;
overflow: hidden;
float: right;
margin-top: 7px;
margin-left: 5px;
}
table.choice {
border-collapse: collapse;
border: 2px solid #cccccc;
}
table.choice tr td {
border-bottom: 1px solid #cccccc;
padding: 10px;
}
table.choice tr td.td_a {
color: #888888;
}
table.choice tr td.td_a a {
display: inline-block;
margin: 0 11px;
color: #888888;
}
table.choice tr td.td_a a:hover, table.choice tr td.td_a a.now {
color: #ff4e00;
}
.l_history {
width: 209px;
overflow: hidden;
float: left;
border: 1px solid #eaeaea;
}
.his_t {
height: 38px;
line-height: 38px;
overflow: hidden;
background: url(../images/h_t.gif) no-repeat 10px center;
color: #ff4e00;
font-size: 16px;
padding-left: 22px;
padding-right: 10px;
border-bottom: 1px solid #eaeaea;
}
.his_t a {
color: #888888;
font-size: 14px;
}
.l_history ul li {
height: 240px;
overflow: hidden;
border-bottom: 1px solid #eaeaea;
}
.l_history ul li .img {
width: 185px;
height: 162px;
overflow: hidden;
margin-top: 10px;
}
/*.l_history ul li .img img{
-webkit-transition:all .5s; -moz-transition:all .5s; -o-transform:all .5s; -ms-transform:all .5s; transition:all .5s;
}
.l_history ul li:hover .img img{
-moz-transform:scale(1.1,1.1); -webkit-transform:scale(1.1,1.1); -o-transform:scale(1.1,1.1); -ms-transform:scale(1.1,1.1); transform:scale(1.1,1.1);
}*/
.l_history ul li .name {
height: 25px;
line-height: 25px;
overflow: hidden;
font-size: 14px;
text-align: center;
margin-top: 5px;
}
.l_history ul li .price {
height: 25px;
line-height: 25px;
overflow: hidden;
color: #999999;
text-align: center;
text-transform: uppercase;
}
.l_history ul li .price font {
color: #ff4e00;
font-size: 14px;
}
.l_history ul li .price span {
font-size: 18px;
}
.l_list {
width: 972px;
overflow: hidden;
float: right;
padding-bottom: 30px;
}
.list_t {
height: 39px;
line-height: 39px;
overflow: hidden;
font-family: "宋体";
border-bottom: 1px solid #eaeaea;
}
.list_or a {
width: 68px;
height: 23px;
line-height: 23px;
overflow: hidden;
color: #555555;
text-indent: 12px;
float: left;
display: inline;
margin-right: -1px;
margin-top: 6px;
border: 1px solid #cccccc;
}
.list_or a:hover, .list_or a.now {
color: #FFF;
background-color: #ff4e00;
}
.list_or .i_up {
width: 15px;
height: 8px;
line-height: 8px;
overflow: hidden;
background: url(../images/i_up.gif) no-repeat center top;
text-indent: -9999em;
float: right;
margin-top: 6px;
margin-right: 8px;
}
.list_or .i_down {
width: 15px;
height: 8px;
line-height: 8px;
overflow: hidden;
background: url(../images/i_down.gif) no-repeat center top;
text-indent: -9999em;
float: right;
margin-top: 0px;
margin-right: 8px;
}
.list_c {
overflow: hidden;
margin: 20px auto;
}
.list_c ul {
overflow: hidden;
}
ul.cate_list {
padding: 5px 0;
}
ul.cate_list li {
width: 232px;
height: 316px;
overflow: hidden;
float: left;
display: inline;
margin: 0 5px;
}
ul.cate_list li:hover {
background-color: #FFF;
-webkit-box-shadow: 0 0 5px #e0e0e0;
-moz-box-shadow: 0 0 5px #e0e0e0;
box-shadow: 0 0 5px #e0e0e0;
}
ul.cate_list li .img {
width: 208px;
height: 185px;
overflow: hidden;
margin-top: 5px;
}
ul.cate_list li .price {
width: 208px;
height: 25px;
line-height: 25px;
overflow: hidden;
color: #999999;
text-transform: uppercase;
margin-top: 10px;
}
ul.cate_list li .price font {
color: #ff4e00;
font-size: 14px;
}
ul.cate_list li .price span {
font-size: 18px;
}
ul.cate_list li .name {
width: 208px;
height: 25px;
line-height: 25px;
overflow: hidden;
font-size: 14px;
}
ul.cate_list li .carbg {
width: 209px;
height: 30px;
overflow: hidden;
font-family: "宋体";
margin-top: 15px;
}
ul.cate_list li .carbg a.ss {
width: 68px;
height: 28px;
line-height: 28px;
overflow: hidden;
background: url(../images/heart.png) no-repeat 10px center;
color: #888888;
text-indent: 33px;
float: left;
display: inline;
margin-right: -1px;
border: 1px solid #cccccc;
}
ul.cate_list li .carbg a.ss:hover {
color: #888888;
background: url(../images/heart_h.png) no-repeat 10px center;
}
ul.cate_list li:hover .carbg a.ss {
color: #888888;
background: url(../images/heart_h.png) no-repeat 10px center;
}
ul.cate_list li .carbg a.j_car {
width: 138px;
height: 28px;
line-height: 28px;
overflow: hidden;
background: url(../images/cars.png) no-repeat 24px center;
color: #ff4e00;
text-indent: 47px;
float: left;
display: inline;
margin-right: -1px;
border: 1px solid #cccccc;
}
ul.cate_list li .carbg a.j_car:hover {
color: #FFF;
background: url(../images/cars_h.png) no-repeat 24px center;
background-color: #ff4e00;
border: 1px solid #ff4e00;
}
ul.cate_list li:hover .carbg a.j_car {
color: #FFF;
background: url(../images/cars_h.png) no-repeat 24px center;
background-color: #ff4e00;
border: 1px solid #ff4e00;
}
.pages {
overflow: hidden;
color: #888888;
padding: 20px 10px;
text-align: right;
font-size: 16px;
font-family: "宋体";
margin-top: 20px;
}
.pages a {
height: 36px;
line-height: 36px;
overflow: hidden;
color: #666666;
font-size: 16px;
text-align: center;
display: inline-block;
padding: 0 12px;
margin: 0 4px;
border: 1px solid #cccccc;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.pages a:hover, .pages a.cur {
color: #FFF;
background-color: #ff4e00;
border: 1px solid #ff4e00;
}
.pages a.p_pre:hover {
background-color: #eaeaea;
color: #555555;
border: 1px solid #cccccc;
}
/*---------------品牌分类---------------*/
.brand_t {
height: 40px;
line-height: 40px;
overflow: hidden;
background: url(../images/h_t.gif) no-repeat left center;
color: #ff4e00;
font-size: 16px;
padding-left: 14px;
}
ul.brand {
width: 105%;
overflow: hidden;
}
ul.brand li {
width: 228px;
height: 160px;
overflow: hidden;
float: left;
display: inline;
margin-right: 19px;
}
ul.brand li .img {
width: 226px;
height: 108px;
overflow: hidden;
border: 1px solid #eaeaea;
}
ul.brand li .name {
height: 30px;
line-height: 30px;
overflow: hidden;
color: #888888;
text-align: center;
font-size: 14px;
}
ul.brand li .name span {
color: #3e3e3e;
}
.brand_img {
width: 226px;
height: 108px;
overflow: hidden;
margin: 10px;
border-right: 1px solid #eaeaea;
}
.td_b a {
margin-right: 25px;
}
.td_b a.now {
color: #ff4e00;
}
/*---------------商品详情---------------*/
.fav_t {
height: 28px;
line-height: 28px;
overflow: hidden;
background-color: #f6f6f6;
font-size: 14px;
padding-left: 10px;
border-bottom: 1px solid #eaeaea;
}
.pro_des {
width: 520px;
height: 490px;
overflow: hidden;
float: left;
display: inline;
margin-left: 30px;
}
.des_name {
height: 50px;
line-height: 25px;
overflow: hidden;
color: #888888;
font-size: 14px;
}
.des_name p {
color: #3e3e3e;
font-size: 18px;
font-weight: bold;
margin: 0;
padding: 0;
}
.des_price {
height: 64px;
line-height: 32px;
overflow: hidden;
font-family: "宋体";
margin-top: 25px;
margin-bottom: 20px;
}
.des_price b {
color: #ff3200;
font-size: 18px;
font-family: "Microsoft YaHei";
}
.des_price span {
font-size: 14px;
font-family: "Microsoft YaHei";
}
.des_choice {
line-height: 40px;
overflow: hidden;
color: #888888;
font-family: "宋体";
}
.des_choice ul li {
height: 28px;
line-height: 28px;
overflow: hidden;
font-size: 14px;
text-align: center;
font-family: "Microsoft YaHei";
float: left;
display: inline;
margin-right: 10px;
margin-top: 4px;
margin-bottom: 2px;
padding: 0 15px;
border: 1px solid #cccccc;
cursor: pointer;
position: relative;
}
.des_choice ul li:hover {
height: 26px;
line-height: 26px;
padding: 0 14px;
overflow: hidden;
border: 2px solid #ff4e00;
}
.des_choice ul li .ch_img {
width: 18px;
height: 18px;
overflow: hidden;
background: url(../images/ch.png) no-repeat center top;
position: absolute;
right: 0;
bottom: 0;
display: none;
}
.des_choice ul li.checked {
height: 26px;
line-height: 26px;
padding: 0 14px;
overflow: hidden;
border: 2px solid #ff4e00;
}
.des_choice ul li.checked .ch_img {
display: block;
}
.des_share {
height: 60px;
overflow: hidden;
margin-top: 25px;
}
.des_share .d_sh {
width: 68px;
height: 27px;
line-height: 27px;
background: url(../images/sh.png) no-repeat 12px 5px;
text-indent: 32px;
font-family: "宋体";
float: left;
border: 1px solid #FFF;
cursor: pointer;
position: relative;
}
.des_share .d_sh .d_sh_bg {
width: 176px;
height: 28px;
overflow: hidden;
border: 1px solid #eaeaea;
position: absolute;
left: 0;
top: 27px;
display: none;
}
.des_share .d_sh .d_sh_bg a {
overflow: hidden;
text-indent: 0;
float: left;
margin-left: 10px;
margin-top: 6px;
}
.des_share .d_sh:hover {
border: 1px solid #eaeaea;
}
.des_share .d_sh:hover .d_sh_bg {
display: block;
}
.des_share .d_care {
height: 27px;
line-height: 27px;
overflow: hidden;
background: url(../images/care.png) no-repeat left center;
float: left;
display: inline;
margin-left: 50px;
padding-left: 22px;
}
.des_join {
height: 45px;
overflow: hidden;
margin-top: 20px;
}
.j_nums {
width: 78px;
height: 43px;
overflow: hidden;
float: left;
display: inline;
margin-right: 10px;
border: 1px solid #cccccc;
}
.n_ipt {
width: 56px;
height: 43px;
line-height: 43px \9;
background: none;
color: #555555;
font-size: 18px;
text-align: center;
font-family: "Microsoft YaHei";
float: left;
padding: 0;
border: 0;
}
.n_btn_1 {
width: 21px;
height: 21px;
overflow: hidden;
background: url(../images/jia.gif) no-repeat center top;
float: right;
border: 0;
border-left: 1px solid #cccccc;
border-bottom: 1px solid #cccccc;
cursor: pointer;
}
.n_btn_2 {
width: 21px;
height: 21px;
overflow: hidden;
background: url(../images/jian.gif) no-repeat center top;
float: right;
border: 0;
border-left: 1px solid #cccccc;
cursor: pointer;
}
.s_brand {
width: 188px;
height: 188px;
overflow: hidden;
float: right;
border: 1px solid #eaeaea;
}
.s_brand_img {
width: 188px;
height: 132px;
overflow: hidden;
border-bottom: 1px solid #eaeaea;
}
.s_brand_c {
height: 55px;
line-height: 55px;
overflow: hidden;
background-color: #f6f6f6;
font-size: 16px;
text-align: center;
}
.des_border {
overflow: hidden;
margin-bottom: 10px;
border: 1px solid #eaeaea;
}
.des_tit {
height: 28px;
background-color: #f6f6f6;
border-bottom: 1px solid #eaeaea;
position: relative;
}
.des_tit ul {
width: 100%;
height: 29px;
position: absolute;
left: 0;
top: 0;
}
.des_tit ul li {
width: 110px;
height: 29px;
line-height: 27px;
overflow: hidden;
font-size: 14px;
text-align: center;
float: left;
}
.des_tit ul li.current {
width: 109px;
height: 27px;
overflow: hidden;
background-color: #FFF;
border-right: 1px solid #FFF;
border-top: 2px solid #ff4e00;
}
.des_t {
height: 38px;
line-height: 38px;
overflow: hidden;
background-color: #f6f6f6;
color: #ff4e00;
font-size: 14px;
text-indent: 25px;
border-bottom: 1px solid #eaeaea;
border-top: 2px solid #ff4e00;
}
.team_list {
width: 160px;
height: 195px;
overflow: hidden;
float: left;
display: inline;
margin: 25px 30px;
}
.team_list .img {
width: 160px;
height: 140px;
overflow: hidden;
}
.team_list .name {
width: 160px;
height: 25px;
line-height: 25px;
overflow: hidden;
}
.team_list .price {
height: 25px;
line-height: 25px;
overflow: hidden;
color: #999999;
text-align: center;
text-transform: uppercase;
position: relative;
}
.team_list .price font {
color: #ff4e00;
font-size: 14px;
}
.team_list .price span {
font-size: 16px;
}
.team_list .price .checkbox {
width: 25px;
height: 20px;
overflow: hidden;
text-align: left;
position: absolute;
left: 0;
top: 4px;
}
.team_icon {
width: 25px;
height: 25px;
overflow: hidden;
float: left;
display: inline;
margin: 90px 0;
}
.team_sum {
width: 145px;
height: 125px;
overflow: hidden;
color: #ff4e00;
float: left;
display: inline;
margin-left: 20px;
margin-top: 50px;
}
.team_sum span {
font-size: 18px;
}
.sum_ipt {
width: 58px;
height: 23px;
line-height: 23px \9;
background: none;
color: #555555;
font-size: 16px;
text-align: center;
font-family: "Microsoft YaHei";
padding: 0;
margin: 5px auto 10px auto;
border: 1px solid #eaeaea;
}
.des_con {
overflow: hidden;
margin: 25px;
}
table.jud_tab {
height: 128px;
overflow: hidden;
margin: 25px 20px 0 20px;
border-collapse: collapse;
border: 1px solid #eaeaea;
}
.jud_per {
color: #ff4e00;
font-size: 14px;
text-align: center;
}
.jud_per p {
margin: 0;
padding: 0;
font-size: 34px;
line-height: 36px;
}
.jud_bg {
background: url(../images/s_line.gif) no-repeat left center;
padding: 0 30px;
font-family: "宋体";
line-height: 22px;
}
table.jud_list tr td {
border-collapse: collapse;
border-bottom: 1px solid #eaeaea;
padding: 20px;
font-family: "宋体";
line-height: 22px;
}
/*begin mask layer begin*/
.black_overlay {
width: 100%;
height: 100%;
background: url(../images/box_bg.png) repeat center top;
display: none;
position: fixed;
top: 0%;
left: 0%;
z-index: 900;
}
.white_content {
width: 540px;
height: auto !important;
min-height: 100px;
height: 100px;
background: url(../images/box.png) repeat center top;
display: none;
position: fixed;
top: 30%;
left: 50%;
margin-left: -270px;
z-index: 901;
}
.white_d {
width: 520px;
overflow: hidden;
background-color: #FFF;
margin: 10px;
padding-bottom: 50px;
}
.notice_t {
width: 500px;
height: 30px;
line-height: 30px;
overflow: hidden;
font-size: 16px;
font-family: "Microsoft YaHei";
margin: 1px auto;
}
.notice_c {
width: 480px;
overflow: hidden;
margin-top: 10px;
}
.b_sure {
width: 120px;
height: 40px;
line-height: 40px;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 14px;
font-family: "Microsoft YaHei";
text-align: center;
float: left;
display: inline;
margin-right: 10px;
border: 0;
}
.b_sure:hover {
color: #FFF;
}
.b_buy {
width: 118px;
height: 38px;
line-height: 38px;
overflow: hidden;
background-color: #f6f6f6;
color: #ff4e00;
font-size: 14px;
font-family: "Microsoft YaHei";
text-align: center;
float: left;
display: inline;
margin-right: 10px;
border: 1px solid #eaeaea;
}
.b_buy:hover {
color: #ff4e00;
}
/*end mask layer end*/
/*---------------限时特卖---------------*/
.n_ban {
width: 100%;
max-width: 1920px;
min-width: 1200px;
height: 290px;
overflow: hidden;
}
.n_ban .top_slide_wrap {
width: 100%;
max-width: 1920px;
min-width: 1200px;
height: 290px;
overflow: hidden;
position: relative;
z-index: 1;
}
.n_ban .slide_box {
height: 290px;
overflow: hidden;
}
.n_ban .slide_box li {
height: 290px;
position: relative;
}
.n_ban .slide_box li a {
width: 100%;
max-width: 1920px;
min-width: 1200px;
height: 290px;
overflow: hidden;
text-indent: -9999em;
display: block;
}
/*.n_ban .slide_box img{ text-align:center; height:420px; }*/
.n_ban .slide_info {
width: 1200px;
margin: -530px auto 0;
}
.n_ban .slide_info_card {
width: 420px;
height: 0;
margin-top: 171px;
color: #fff;
position: relative;
}
.n_ban .slide_info_card a {
color: #fff;
text-decoration: none
}
.n_ban .slide_info_card .slide_info_card_bg {
width: 420px;
height: 200px;
background: #0071c6;
position: absolute;
top: 0;
left: 0;
z-index: 1;
opacity: .8;
*filter: alpha(opacity=80)
}
.n_ban .slide_info_card .slide_info_card_text {
width: 340px;
height: 140px;
padding: 30px 40px;
position: absolute;
top: 0;
left: 0;
z-index: 2
}
.n_ban .slide_info_card h2 {
font-size: 40px;
padding-bottom: 8px
}
.n_ban .slide_info_card p {
font-size: 15px;
line-height: 26px
}
.n_ban .slide_info_card p strong {
font-size: 12px;
height: 25px;
display: inline-block;
padding: 0 10px;
background: #095b99;
border-radius: 5px;
color: #fff;
margin-top: 8px
}
/* op_btns */
.n_ban .op_btns {
width: 1200px;
margin-top: -680px;
position: relative;
z-index: 3;
}
.n_ban .op_btns .op_btn {
display: block;
width: 32px;
height: 60px;
cursor: pointer;
overflow: hidden;
position: absolute;
margin-top: 80px;
}
.n_ban .op_btns .op_prev {
background: url(../images/b_left.png) no-repeat center top;
left: 0;
top: 420px;
}
.n_ban .op_btns .op_next {
background: url(../images/b_right.png) no-repeat center top;
right: 0;
top: 420px;
}
.n_ban .op_btns .op_prev span, .n_ban .op_btns .op_next span {
display: block;
width: 32px;
height: 60px;
margin: 8px 0 0 17px;
cursor: pointer;
}
.n_ban .op_btns .op_prev span {
background-position: 0 0;
}
.n_ban .op_btns .op_next span {
background-position: -73px 0;
margin-left: 20px;
}
/* bx-controls */
.n_ban .bx-wrapper .bx-controls {
margin-top: -44px;
}
.n_ban .bx-wrapper .bx-controls .bx-pager {
clear: both;
text-align: center;
position: relative;
overflow: hidden;
}
.n_ban .bx-wrapper .bx-controls .bx-pager a {
width: 15px;
height: 15px;
line-height: 15px;
display: inline-block;
overflow: hidden;
margin: 15px 5px;
background: url(../images/b.png) no-repeat center top;
}
.n_ban .bx-wrapper .bx-controls .bx-pager a:hover, .n_ban .bx-wrapper .bx-controls .bx-pager a.active {
background: url(../images/b_h.png) no-repeat center top;
}
.s_left {
width: 840px;
overflow: hidden;
float: left;
}
ul.sell_brand {
overflow: hidden;
}
ul.sell_brand li {
height: 190px;
overflow: hidden;
margin-bottom: 10px;
}
ul.sell_brand li .con {
width: 307px;
height: 188px;
overflow: hidden;
font-size: 14px;
text-align: center;
float: left;
border: 1px solid #eaeaea;
border-right: 0;
}
ul.sell_brand li .con .simg {
width: 220px;
height: 100px;
overflow: hidden;
margin-top: 10px;
}
ul.sell_brand li .con .ch_bg {
width: 220px;
height: 35px;
overflow: hidden;
margin-top: 10px;
margin-bottom: 5px;
}
ul.sell_brand li .con .ch_bg .ch_txt {
width: 158px;
height: 33px;
line-height: 33px;
overflow: hidden;
color: #ff4e00;
font-size: 14px;
text-align: center;
float: left;
border: 1px solid #e2e2e2;
}
ul.sell_brand li .con .ch_bg .ch_a {
width: 60px;
height: 35px;
line-height: 35px;
overflow: hidden;
background-color: #e2e2e2;
color: #555555;
font-size: 14px;
text-align: center;
float: left;
}
ul.sell_brand li .con .ch_bg .ch_a:hover {
color: #FFF;
background-color: #ff4e00;
}
ul.sell_brand li .img {
width: 530px;
height: 190px;
overflow: hidden;
float: right;
}
ul.p_sell {
width: 105%;
overflow: hidden;
}
ul.p_sell li {
width: 406px;
height: 168px;
overflow: hidden;
float: left;
display: inline;
margin-right: 23px;
margin-bottom: 10px;
border: 1px solid #eaeaea;
}
ul.p_sell li .img {
width: 160px;
height: 140px;
overflow: hidden;
float: left;
display: inline;
margin-left: 15px;
margin-top: 14px;
}
ul.p_sell li .name {
width: 208px;
height: 30px;
line-height: 30px;
overflow: hidden;
font-size: 16px;
font-weight: bold;
float: left;
display: inline;
margin-left: 10px;
margin-top: 14px;
}
ul.p_sell li .price {
width: 208px;
height: 42px;
line-height: 21px;
overflow: hidden;
float: left;
display: inline;
margin-left: 10px;
}
ul.p_sell li .ch_bg {
width: 170px;
height: 35px;
overflow: hidden;
float: left;
display: inline;
margin-left: 10px;
margin-top: 5px;
}
ul.p_sell li .ch_bg .ch_txt {
width: 108px;
height: 33px;
line-height: 33px;
overflow: hidden;
color: #ff4e00;
font-size: 14px;
text-align: center;
float: left;
border: 1px solid #e2e2e2;
}
ul.p_sell li .ch_bg .ch_txt font {
font-size: 18px;
}
ul.p_sell li .ch_bg .ch_a {
width: 60px;
height: 35px;
line-height: 35px;
overflow: hidden;
background-color: #e2e2e2;
color: #555555;
font-size: 14px;
text-align: center;
float: left;
}
ul.p_sell li .ch_bg .ch_a:hover {
color: #FFF;
background-color: #ff4e00;
}
ul.p_sell li .times {
width: 208px;
height: 25px;
overflow: hidden;
float: left;
display: inline;
margin-left: 10px;
margin-top: 5px;
}
.s_right {
width: 323px;
overflow: hidden;
float: right;
}
.sell_ban {
width: 300px;
height: 352px;
overflow: hidden;
padding: 10px;
margin-top: 40px;
border: 1px solid #eaeaea;
}
.sell_ban #imgPlays {
width: 300px;
height: 352px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.sell_ban #imgPlays .imgs img {
width: 300px;
}
.sell_ban #imgPlays .imgs li {
position: relative;
float: left;
width: 300px;
height: 352px;
}
.sell_ban #imgPlays .imgs {
width: 5760px;
}
.sell_ban #imgPlays .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.sell_ban #imgPlays .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.sell_ban #imgPlays .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.sell_ban #imgPlays .prev_s {
width: 32px;
height: 60px;
overflow: hidden;
background: url(../images/b_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 145px;
}
.sell_ban #imgPlays .next_s {
width: 32px;
height: 60px;
overflow: hidden;
background: url(../images/b_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 145px;
}
.sell_hot {
height: 403px;
overflow: hidden;
margin: 20px auto;
border: 1px solid #eaeaea;
}
.s_hot_t {
height: 43px;
line-height: 43px;
overflow: hidden;
background-color: #f6f6f6;
color: #3e3e3e;
font-size: 16px;
padding: 0 10px;
border-bottom: 1px solid #eaeaea;
}
.h_more {
height: 43px;
overflow: hidden;
background: url(../images/mores.png) no-repeat right center;
font-size: 12px;
padding-right: 22px;
}
.sell_hot ul {
width: 105%;
overflow: hidden;
}
.sell_hot ul li {
width: 160px;
height: 59px;
overflow: hidden;
float: left;
border-right: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea;
}
.sell_tel {
overflow: hidden;
background-color: #f6f6f6;
color: #888888;
line-height: 22px;
margin-bottom: 10px;
border: 1px solid #eaeaea;
}
.lim_time {
overflow: hidden;
margin-bottom: 10px;
border: 1px solid #eaeaea;
}
.lim_sh_bg {
overflow: hidden;
margin: 5px 10px;
}
.lim_sh {
height: 30px;
line-height: 30px;
background: url(../images/sh.png) no-repeat left 8px;
text-indent: 20px;
font-family: "宋体";
float: left;
display: inline;
margin-right: 30px;
}
.lim_sh_bg a {
float: left;
display: inline;
margin-right: 6px;
margin-top: 7px;
}
.lim_name {
width: 275px;
height: 45px;
line-height: 45px;
overflow: hidden;
color: #3e3e3e;
font-size: 20px;
margin-top: 20px;
}
.lim_price {
width: 238px;
height: 40px;
overflow: hidden;
margin-left: 0;
margin-top: 20px;
}
.lim_price .ch_txt {
width: 158px;
height: 38px;
line-height: 38px;
overflow: hidden;
color: #ff4e00;
font-size: 22px;
text-align: center;
float: left;
border-top: 1px solid #e2e2e2;
border-bottom: 1px solid #e2e2e2;
}
.lim_price .ch_a {
width: 80px;
height: 40px;
line-height: 40px;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 14px;
text-align: center;
float: left;
}
.lim_c {
width: 275px;
overflow: hidden;
font-family: "宋体";
color: #888888;
margin-top: 15px;
padding-bottom: 15px;
border-bottom: 1px dotted #eaeaea;
}
.lim_ipt {
width: 68px;
height: 28px;
line-height: 28px \9;
background: none;
color: #555555;
font-size: 14px;
text-align: center;
font-family: "Microsoft YaHei";
float: left;
padding: 0;
border: 1px solid #cccccc;
}
.lim_clock {
width: 250px;
overflow: hidden;
background: url(../images/clock.png) no-repeat left 2px;
padding-left: 25px;
margin-top: 15px;
}
.lim_clock span {
font-size: 18px;
line-height: 30px;
}
.r_history {
overflow: hidden;
border: 1px solid #eaeaea;
}
.r_his_t {
height: 38px;
line-height: 38px;
overflow: hidden;
background-color: #f6f6f6;
font-size: 16px;
text-align: center;
border-bottom: 1px solid #eaeaea;
}
.r_his_t a {
color: #888888;
font-size: 14px;
}
.r_history ul li {
height: 240px;
overflow: hidden;
border-bottom: 1px solid #eaeaea;
}
.r_history ul li .img {
width: 185px;
height: 162px;
overflow: hidden;
margin-top: 10px;
}
.r_history ul li .name {
height: 25px;
line-height: 25px;
overflow: hidden;
font-size: 14px;
text-align: center;
margin-top: 5px;
}
.r_history ul li .price {
height: 25px;
line-height: 25px;
overflow: hidden;
color: #999999;
text-align: center;
text-transform: uppercase;
}
.r_history ul li .price font {
color: #ff4e00;
font-size: 14px;
}
.r_history ul li .price span {
font-size: 18px;
}
/*---------------用户中心---------------*/
.m_top_bg {
width: 100%;
height: 140px;
background-color: #ff4e00;
}
.m_logo {
width: 150px;
height: 58px;
overflow: hidden;
float: left;
margin-top: 38px;
}
.m_search {
width: 392px;
height: 40px;
overflow: hidden;
background-color: #FFF;
float: left;
display: inline;
margin-left: 450px;
margin-top: 49px;
}
.m_ipt {
width: 295px;
height: 40px;
line-height: 40px \9;
overflow: hidden;
color: #555555;
font-size: 14px;
font-family: "Microsoft YaHei";
float: left;
padding: 0 10px;
border: 0;
}
.m_btn {
width: 70px;
height: 40px;
line-height: 40px \9;
background-color: #f6f6f6;
color: #555555;
font-size: 14px;
font-family: "Microsoft YaHei";
text-align: center;
float: right;
border: 0;
cursor: pointer;
}
.m_content {
width: 1210px;
overflow: hidden;
margin-top: 20px;
}
.m_left {
width: 211px;
overflow: hidden;
padding: 5px;
float: left;
}
.left_n {
height: 35px;
line-height: 35px;
overflow: hidden;
background: url(../images/m_t.png) no-repeat 31px center;
background-color: #ff4e00;
color: #FFF;
font-size: 14px;
text-indent: 68px;
margin-bottom: 10px;
}
.left_m {
overflow: hidden;
background-color: #FFF;
padding-bottom: 20px;
margin-bottom: 10px;
-webkit-box-shadow: 0 0 5px #e0e0e0;
-moz-box-shadow: 0 0 5px #e0e0e0;
box-shadow: 0 0 5px #e0e0e0;
}
.left_m_t {
height: 35px;
line-height: 35px;
overflow: hidden;
color: #3e3e3e;
font-size: 14px;
text-indent: 68px;
margin-bottom: 10px;
border-bottom: 1px solid #e2e2e2;
}
.t_bg1 {
background: url(../images/m_i_1.png) no-repeat 31px center;
}
.t_bg2 {
background: url(../images/m_i_2.png) no-repeat 31px center;
}
.t_bg3 {
background: url(../images/m_i_3.png) no-repeat 31px center;
}
.t_bg4 {
background: url(../images/m_i_4.png) no-repeat 31px center;
}
.left_m ul li {
height: 28px;
line-height: 28px;
overflow: hidden;
color: #3e3e3e;
text-indent: 68px;
}
.left_m ul li a {
color: #3e3e3e;
}
.left_m ul li a:hover, .left_m ul li a.now {
color: #ff4e00;
}
.m_right {
width: 970px;
height: auto !important;
min-height: 737px;
height: 737px;
background-color: #FFF;
float: right;
display: inline;
margin: 5px;
padding-bottom: 50px;
-webkit-box-shadow: 0 0 5px #e0e0e0;
-moz-box-shadow: 0 0 5px #e0e0e0;
box-shadow: 0 0 5px #e0e0e0;
}
.m_des {
overflow: hidden;
margin-top: 45px;
padding-bottom: 30px;
margin-bottom: 20px;
border-bottom: 1px dotted #b6b6b6;
}
.m_user {
height: 20px;
line-height: 20px;
overflow: hidden;
color: #3e3e3e;
font-size: 14px;
font-weight: bold;
}
.m_notice {
height: 35px;
line-height: 35px;
overflow: hidden;
background: url(../images/n_not.png) no-repeat left center;
padding-left: 32px;
}
.mem_t {
width: 870px;
height: 50px;
line-height: 50px;
overflow: hidden;
color: #333333;
font-size: 16px;
}
.mem_tit {
width: 930px;
height: 50px;
line-height: 50px;
overflow: hidden;
color: #333333;
font-size: 16px;
}
table.mon_tab {
background-color: #f6f6f6;
}
table.mon_tab tr td {
border-collapse: collapse;
border-bottom: 1px solid #FFF;
padding: 5px 25px;
}
table.mon_tab tr td span {
font-weight: bold;
font-family: "宋体";
color: #ff4e00;
}
table.acc_tab {
background-color: #f6f6f6;
font-family: "宋体";
}
table.acc_tab tr td {
border-collapse: collapse;
border-bottom: 1px dotted #b6b6b6;
padding: 7px 25px;
}
table.acc_tab tr td.td_l {
background-color: #f7ece8;
width: 110px;
font-family: "Microsoft YaHei";
}
table.acc_tab tr td.b_none {
border-bottom: 0;
}
table.order_tab {
border-collapse: collapse;
border: 1px solid #eaeaea;
}
table.order_tab tr td {
border-collapse: collapse;
border: 1px solid #eaeaea;
padding: 5px 10px;
}
.order_tab .jslct {
width: 188px;
height: 23px;
line-height: 23px;
display: inline-block;
*display: inline;
zoom: 1;
color: #555555;
font-size: 12px;
font-family: "Microsoft YaHei";
position: relative;
z-index: 0;
vertical-align: middle;
cursor: default;
background: url(../images/d_arrow.png) no-repeat 170px center;
background-color: #f6f6f6;
float: left;
border: 1px solid #d9d9d9;
}
.order_tab .jslct_hover {
border: 1px solid #d9d9d9;
}
.order_tab .jslct div.jslct_t {
padding: 0 25px 0 5px;
line-height: 23px;
height: 23px;
position: relative;
z-index: 2;
*display: block !important;
*display: inline;
zoom: 1;
}
.order_tab .jslct em {
font-style: normal;
margin: 0;
padding: 0;
line-height: 23px;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.order_tab .jslct dl, .order_tab .jslct dl dd {
padding: 0;
margin: 0;
list-style: none
}
.order_tab .jslct dl {
background: #f6f6f6;
position: absolute;
top: 23px;
left: -1px;
border: 1px solid #d9d9d9;
cursor: default;
line-height: 22px;
padding: 4px 4px 4px 4px;
z-index: 1;
display: none;
width: 180px;
}
.order_tab .jslct_hover dl {
border: 1px solid #d9d9d9 !important
}
.order_tab .jslct dl dd {
padding: 0px 4px 2px 4px;
*padding: 2px 4px 0 4px;
border-top: 1px dotted #ccc !important;
border-top: 1px dotted #d9d9d9;
white-space: nowrap;
background: #f6f6f6;
cursor: pointer;
*border-left: 1px solid #fff;
}
.order_tab .jslct dl dd.hover {
background: #666;
color: #fff;
}
.order_tab .jslct .jslcted {
background: #efefef;
}
.order_tab .jslct dl dd.noborder {
border: none !important
}
.btn_u {
width: 90px;
height: 25px;
line-height: 25px;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 12px;
font-family: "宋体";
text-align: center;
margin-left: 10px;
border: 0;
cursor: pointer;
}
.btn_u a {
color: #FFF;
}
.address {
width: 910px;
overflow: hidden;
margin-bottom: 30px;
padding: 10px;
border: 1px solid #eaeaea;
position: relative;
}
.a_close {
width: 16px;
height: 16px;
overflow: hidden;
position: absolute;
right: 25px;
top: 15px;
}
table.add_t tr td {
padding: 5px 10px;
}
table.add_tab {
border-collapse: collapse;
border: 1px solid #eaeaea;
}
table.add_tab tr td {
border-collapse: collapse;
border: 1px solid #eaeaea;
padding: 8px 10px;
}
.add_tab .jslct {
width: 108px;
height: 23px;
line-height: 23px;
display: inline-block;
*display: inline;
zoom: 1;
color: #555555;
font-size: 12px;
font-family: "宋体";
position: relative;
z-index: 0;
vertical-align: middle;
cursor: default;
background: url(../images/d_arrow.png) no-repeat 88px center;
background-color: #f6f6f6;
float: left;
border: 1px solid #d9d9d9;
margin-right: 10px;
}
.add_tab .jslct_hover {
border: 1px solid #d9d9d9;
}
.add_tab .jslct div.jslct_t {
padding: 0 25px 0 5px;
line-height: 23px;
height: 23px;
position: relative;
z-index: 2;
*display: block !important;
*display: inline;
zoom: 1;
}
.add_tab .jslct em {
font-style: normal;
margin: 0;
padding: 0;
line-height: 23px;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.add_tab .jslct dl, .add_tab .jslct dl dd {
padding: 0;
margin: 0;
list-style: none
}
.add_tab .jslct dl {
background: #f6f6f6;
position: absolute;
top: 23px;
left: -1px;
border: 1px solid #d9d9d9;
cursor: default;
line-height: 22px;
padding: 4px 4px 4px 4px;
z-index: 1;
display: none;
width: 100px;
}
.add_tab .jslct_hover dl {
border: 1px solid #d9d9d9 !important
}
.add_tab .jslct dl dd {
padding: 0px 4px 2px 4px;
*padding: 2px 4px 0 4px;
border-top: 1px dotted #ccc !important;
border-top: 1px dotted #d9d9d9;
white-space: nowrap;
background: #f6f6f6;
cursor: pointer;
*border-left: 1px solid #fff;
}
.add_tab .jslct dl dd.hover {
background: #666;
color: #fff;
}
.add_tab .jslct .jslcted {
background: #efefef;
}
.add_tab .jslct dl dd.noborder {
border: none !important
}
.add_ipt {
width: 176px;
height: 23px;
line-height: 23px \9;
overflow: hidden;
background-color: #f6f6f6;
color: #555555;
font-size: 12px;
font-family: "宋体";
padding: 0 10px;
border: 1px solid #d9d9d9;
}
a.add_b {
width: 90px;
height: 25px;
line-height: 25px;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 12px;
font-family: "宋体";
text-align: center;
margin-left: 10px;
border: 0;
cursor: pointer;
float: right;
margin-right: 20px;
}
.sm_img {
width: 48px;
height: 48px;
overflow: hidden;
float: left;
display: inline;
margin-right: 10px;
border: 1px solid #eaeaea;
}
.add_txt {
width: 690px;
height: 70px;
line-height: 22px \9;
overflow: hidden;
background-color: #f6f6f6;
color: #555555;
font-size: 12px;
font-family: "宋体";
padding: 10px;
border: 1px solid #d9d9d9;
}
.r_rad {
float: left;
padding-top: 1px;
margin-right: 2px;
}
.r_txt {
float: left;
line-height: 22px;
margin-right: 15px;
}
.btn_tj {
width: auto;
height: 25px;
line-height: 25px \9;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 12px;
font-family: "宋体";
text-align: center;
padding: 0 18px;
border: 0;
cursor: pointer;
}
.code_ipt {
width: 475px;
height: 23px;
line-height: 23px \9;
overflow: hidden;
color: #555555;
font-size: 12px;
font-family: "Microsoft YaHei";
padding: 0 10px;
border: 1px solid #eaeaea;
}
table.ma_tab {
border-collapse: collapse;
border: 1px solid #eaeaea;
}
table.ma_tab tr td {
border-collapse: collapse;
border: 1px solid #eaeaea;
padding: 5px 10px;
line-height: 20px;
}
.ma_a a {
color: #ff4e00;
margin: 0 10px;
}
.m_num {
height: 20px;
line-height: 20px;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 12px;
text-align: center;
margin-left: 20px;
padding: 0 20px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
}
.m_num a {
color: #FFF;
}
ul.members {
overflow: hidden;
}
ul.members li {
width: 238px;
height: 88px;
overflow: hidden;
float: left;
display: inline;
margin: 20px 40px;
border: 1px solid #e2e2e2;
}
ul.members li .nums {
width: 73px;
height: 38px;
overflow: hidden;
background: url(../images/peo.png) no-repeat center 20px;
background-color: #f6f6f6;
text-align: center;
float: left;
padding-top: 50px;
border-right: 1px solid #e2e2e2;
}
ul.members li .m_type {
width: 164px;
height: 88px;
line-height: 88px;
overflow: hidden;
color: #ff4e00;
font-size: 18px;
text-align: center;
float: left;
}
ul.members li .m_type a {
color: #ff4e00;
}
ul.members li:hover {
border: 1px solid #ff4e00;
}
ul.members li:hover .nums {
background: url(../images/peo_h.png) no-repeat center 20px;
background-color: #ff4e00;
color: #FFF;
border-right: 1px solid #ff4e00;
}
table.mem_tab {
border-collapse: collapse;
border: 1px solid #e2e2e2;
}
table.mem_tab tr td {
border-collapse: collapse;
border-right: 1px solid #e2e2e2;
border-bottom: 1px dotted #b6b6b6;
padding: 10px;
line-height: 20px;
}
.th_bg {
overflow: hidden;
background: url(../images/peo_h.png) no-repeat 15px center;
background-color: #ff4e00;
text-align: left;
color: #FFF;
font-size: 14px;
text-indent: 52px;
border-bottom: 0;
border-right: 0;
}
.td_bg {
background-color: #f7ece8;
}
.th_bg1 {
overflow: hidden;
background-color: #ff4e00;
text-align: left;
color: #FFF;
font-size: 14px;
text-indent: 42px;
border-bottom: 0;
border-right: 0;
}
table.co_tab {
border-collapse: collapse;
border: 1px solid #eaeaea;
}
table.co_tab tr td {
border-collapse: collapse;
border: 1px solid #eaeaea;
padding: 12px 50px;
line-height: 20px;
}
.tx {
width: 90px;
height: 30px;
line-height: 30px;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 14px;
text-align: center;
float: right;
display: inline-block;
}
.tx a {
color: #FFF;
}
.tx_l {
background-color: #f6f6f6;
text-indent: 40px;
}
.tx_ipt {
width: 400px;
height: 25px;
line-height: 25px \9;
overflow: hidden;
color: #555555;
font-size: 12px;
font-family: "宋体";
margin-left: 15px;
padding: 0;
border: 0;
}
.tx_txt {
width: 710px;
height: 130px;
line-height: 20px;
overflow: hidden;
color: #555555;
font-size: 12px;
font-family: "宋体";
margin-left: 15px;
margin-bottom: 10px;
padding: 0;
border: 0;
}
/*---------------购物车---------------*/
table.car_tab {
border-collapse: collapse;
border: 1px solid #eaeaea;
font-family: "宋体";
}
table.car_tab tr td {
border-collapse: collapse;
line-height: 22px;
border: 0;
border-bottom: 1px solid #eaeaea;
padding: 15px 20px;
}
table.car_tab tr td.car_th {
background-color: #f6f6f6;
font-size: 14px;
border-right: 1px solid #eaeaea;
padding: 8px 20px;
font-family: "Microsoft YaHei";
text-align: center;
}
.car_tr {
background-color: #f6f6f6;
}
.c_s_img {
width: 73px;
height: 73px;
overflow: hidden;
float: left;
display: inline;
margin-right: 10px;
border: 1px solid #eaeaea;
}
.c_num {
width: 84px;
height: 21px;
overflow: hidden;
border: 1px solid #cccccc;
}
.car_ipt {
width: 42px;
height: 21px;
line-height: 21px \9;
background-color: #FFF;
color: #555555;
font-size: 14px;
text-align: center;
font-family: "Microsoft YaHei";
float: left;
padding: 0;
border: 0;
}
.car_btn_1 {
width: 21px;
height: 21px;
overflow: hidden;
background: url(../images/jian.gif) no-repeat center top;
float: left;
border: 0;
border-right: 1px solid #cccccc;
cursor: pointer;
}
.car_btn_2 {
width: 21px;
height: 21px;
overflow: hidden;
background: url(../images/jia.gif) no-repeat center top;
float: left;
border: 0;
border-left: 1px solid #cccccc;
cursor: pointer;
}
.car_btn_bg {
background-color: #f0f0f0;
}
.two_bg {
overflow: hidden;
padding-bottom: 50px;
margin-bottom: 50px;
border: 1px solid #eaeaea;
}
.two_t {
width: 1110px;
height: 35px;
line-height: 35px;
overflow: hidden;
color: #3e3e3e;
font-size: 16px;
margin-top: 15px;
}
.two_t span {
font-size: 12px;
font-family: "宋体";
color: #ff4e00;
}
.two_t span a {
color: #ff4e00;
}
table.peo_tab {
border-collapse: collapse;
border: 1px solid #eaeaea;
font-family: "宋体";
font-size: 14px;
}
table.peo_tab tr td {
border-collapse: collapse;
border: 1px solid #eaeaea;
padding: 10px 20px;
}
table.peo_tab tr td.p_td {
background-color: #f6f6f6;
font-size: 14px;
font-family: "Microsoft YaHei";
text-align: right;
padding-right: 40px;
padding-left: 0;
}
ul.pay {
width: 1110px;
overflow: hidden;
margin: 0 auto;
}
ul.pay li {
height: 38px;
line-height: 38px;
overflow: hidden;
font-size: 14px;
text-align: center;
font-family: "Microsoft YaHei";
float: left;
display: inline;
margin-right: 10px;
margin-top: 4px;
margin-bottom: 2px;
padding: 0 25px;
border: 1px solid #cccccc;
cursor: pointer;
position: relative;
}
ul.pay li:hover {
height: 36px;
line-height: 36px;
padding: 0 24px;
overflow: hidden;
border: 2px solid #ff4e00;
}
ul.pay li .ch_img {
width: 18px;
height: 18px;
overflow: hidden;
background: url(../images/ch.png) no-repeat center top;
position: absolute;
right: 0;
bottom: 0;
display: none;
}
ul.pay li.checked {
height: 36px;
line-height: 36px;
padding: 0 24px;
overflow: hidden;
border: 2px solid #ff4e00;
}
ul.pay li.checked .ch_img {
display: block;
}
.warning {
overflow: hidden;
padding: 20px 0 50px 0;
margin-bottom: 50px;
border: 1px solid #ff4e00;
}
.backs {
width: 118px;
height: 28px;
line-height: 28px;
overflow: hidden;
font-size: 14px;
color: #555555;
font-weight: bold;
text-align: center;
margin-top: 15px;
border: 1px solid #cccccc;
}
.backs a {
color: #555555;
}
/*---------------Footer---------------*/
.b_btm_bg {
width: 100%;
min-width: 1200px;
height: 122px;
overflow: hidden;
margin-top: 30px;
}
.b_btm_c {
background-color: #FFF;
}
.b_btm {
width: 1200px;
height: 122px;
overflow: hidden;
}
.b_btm table {
color: #888888;
font-size: 14px;
}
.b_btm table h2 {
color: #3e3e3e;
font-size: 16px;
font-weight: normal;
}
.b_nav {
width: 1200px;
overflow: hidden;
margin: 20px auto;
}
.b_nav dl {
width: 125px;
height: 165px;
overflow: hidden;
float: left;
display: inline;
margin-right: 50px;
}
.b_nav dl dt {
height: 30px;
line-height: 30px;
overflow: hidden;
color: #3e3e3e;
font-size: 16px;
margin-bottom: 10px;
}
.b_nav dl dt a {
color: #3e3e3e;
}
.b_nav dl dt a:hover {
color: #3e3e3e;
text-decoration: underline;
}
.b_nav dl dd {
height: 24px;
line-height: 24px;
overflow: hidden;
color: #888888;
}
.b_nav dl dd a {
color: #888888;
}
.b_nav dl dd a:hover {
color: #ff4e00;
}
.b_er {
width: 120px;
height: 160px;
overflow: hidden;
text-align: center;
float: right;
display: inline;
margin-right: 22px;
margin-top: 5px;
}
.b_er_c {
width: 118px;
height: 118px;
overflow: hidden;
margin-bottom: 10px;
border: 1px solid #e9e9e9;
}
.b_tel_bg {
width: 133px;
height: 140px;
overflow: hidden;
color: #888888;
float: right;
margin-top: 5px;
}
.b_tel_bg a.b_sh1 {
width: 100%;
height: 35px;
line-height: 35px;
overflow: hidden;
background: url(../images/b_sh_1.png) no-repeat left center;
color: #888888;
font-size: 14px;
text-indent: 32px;
display: inline-block;
}
.b_tel_bg a.b_sh1:hover {
color: #ff4e00;
}
.b_tel_bg a.b_sh2 {
width: 100%;
height: 35px;
line-height: 35px;
overflow: hidden;
background: url(../images/b_sh_2.png) no-repeat left center;
color: #888888;
font-size: 14px;
text-indent: 32px;
display: inline-block;
}
.b_tel_bg a.b_sh2:hover {
color: #ff4e00;
}
.b_tel_bg p {
margin-top: 10px;
}
.b_tel_bg p span {
color: #ff4e00;
font-size: 18px;
}
.btmbg {
width: 100%;
min-width: 1200px;
overflow: hidden;
padding: 30px 0 40px 0;
border-top: 1px solid #eaeaea;
}
.btm {
width: 1200px;
overflow: hidden;
color: #999999;
font-family: "宋体";
text-align: center;
}
.btm a {
color: #999999;
}
.btm a:hover {
color: #999999;
text-decoration: underline;
}
.btm img {
display: inline-block;
margin: 15px 5px 5px 5px;
border: 1px solid #d9d9d9;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
} | src/main/webapp/statics/css/style.css | @charset "utf-8";
/* CSS Document */
body {
margin: 0;
padding: 0;
font-size: 12px;
font-family: "Microsoft YaHei";
line-height: 25px;
color: #555555;
}
div, table {
margin: 0 auto;
}
a {
color: #555555;
text-decoration: none;
cursor: pointer;
}
a:hover {
color: #ff4e00;
text-decoration: none;
cursor: pointer;
}
img {
border: 0;
}
ul, li, dl, dt, dd {
list-style: none;
margin: 0;
padding: 0;
}
input, io, select, checkbox {
vertical-align: middle;
}
h1, h2, h3, h4, h5, h6 {
padding: 0;
margin: 0 auto;
}
.fl {
float: left;
}
.fr {
float: right;
}
form {
margin: 0;
padding: 0;
}
.none {
display: none;
}
/*html{
-webkit-filter:grayscale(100%); filter:grayscale(100%);
}
html { overflow-y:scroll; filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); -webkit-filter: grayscale(100%);}*/
/*html{
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
}*/
/*---------------header---------------*/
.soubg {
width: 100%;
min-width: 1200px;
height: 35px;
background-color: #f6f6f6;
font-family: "宋体";
}
.sou {
width: 1200px;
height: 35px;
line-height: 35px;
}
.s_city_b {
width: 150px;
height: 35px;
float: left;
}
.s_city {
height: 35px;
background: url(../images/t_arrow.gif) no-repeat right center;
float: left;
padding-right: 15px;
cursor: pointer;
position: relative;
}
.s_city:hover .s_city_bg {
display: block;
}
.s_city_bg {
width: 254px;
overflow: hidden;
position: absolute;
left: -50px;
top: 29px;
z-index: 900;
display: none;
}
.s_city_t {
width: 9px;
height: 7px;
line-height: 7px;
overflow: hidden;
background: url(../images/c_t.gif) no-repeat center top;
position: absolute;
left: 55px;
top: 0;
}
.s_city_c {
width: 252px;
height: 460px;
overflow: hidden;
background-color: #FFF;
font-family: "Microsoft YaHei";
margin-top: 6px;
border: 1px solid #cdcdcd;
}
.s_city_c h2 {
width: 230px;
height: 29px;
line-height: 29px;
overflow: hidden;
font-size: 14px;
font-weight: normal;
text-align: left;
margin-top: 5px;
border-bottom: 1px dotted #666666;
}
table.c_tab tr th {
line-height: 26px;
font-weight: normal;
color: #000;
width: 20px;
text-transform: uppercase;
}
.c_h span {
line-height: 26px;
float: left;
display: inline;
padding: 0 3px;
margin-right: 3px;
cursor: pointer;
}
.c_h span:hover {
color: #ff4e00;
}
.c_h span.c_check {
color: #FFF;
background-color: #ff4e00;
}
/*.s_log{
width:220px; height:35px; overflow:hidden; float:left;
}*/
.ss {
width: 225px;
height: 35px;
float: left;
}
.ss_list {
height: 35px;
background: url(../images/t_arrow.gif) no-repeat right center;
float: left;
display: inline;
margin-left: 10px;
padding-right: 15px;
cursor: pointer;
position: relative;
}
.ss_list:hover .ss_list_bg {
display: block;
}
.ss_list_bg {
width: 116px;
overflow: hidden;
position: absolute;
left: 50%;
top: 29px;
margin-left: -58px;
z-index: 900;
display: none;
}
.ss_list_t {
height: 7px;
line-height: 7px;
overflow: hidden;
background: url(../images/c_t.gif) no-repeat center top;
position: absolute;
left: 0;
top: 0;
}
.ss_list_c {
overflow: hidden;
background-color: #FFF;
font-family: "Microsoft YaHei";
margin-top: 6px;
padding: 10px 0;
border: 1px solid #cdcdcd;
}
.ss_list_c ul li {
height: 25px;
line-height: 25px;
overflow: hidden;
text-align: center;
}
.s_sh {
width: 55px;
height: 35px;
overflow: hidden;
float: left;
}
.s_sh a {
width: 20px;
height: 35px;
line-height: 35px;
overflow: hidden;
float: left;
display: inline;
margin: 0 3px;
text-indent: -9999em;
}
.s_sh a.sh1 {
background: url(../images/sh1.png) no-repeat center 8px;
}
.s_sh a.sh2 {
background: url(../images/sh2.png) no-repeat center center;
}
.top {
width: 1200px;
height: 140px;
}
.logo {
width: 207px;
height: 55px;
overflow: hidden;
float: left;
display: inline;
margin-top: 40px;
}
.search {
width: 520px;
height: 65px;
overflow: hidden;
float: left;
display: inline;
margin-left: 134px;
margin-top: 50px;
}
.s_ipt {
width: 408px;
height: 36px;
line-height: 36px \9;
overflow: hidden;
color: #555555;
font-size: 14px;
font-family: "Microsoft YaHei";
float: left;
padding: 0 10px;
border: 2px solid #ff4e00;
border-right: 0;
}
.s_btn {
width: 90px;
height: 40px;
line-height: 40px \9;
background-color: #ff4e00;
color: #FFF;
font-size: 16px;
font-family: "Microsoft YaHei";
text-align: center;
float: left;
border: 0;
cursor: pointer;
}
.search a {
margin-right: 12px;
display: inline-block;
}
.i_car {
width: 141px;
height: 38px;
line-height: 38px;
background: url(../images/car.png) no-repeat 10px center;
background-color: #f6f6f6;
float: right;
margin-top: 50px;
border: 1px solid #d9d9d9;
position: relative;
}
.car_t {
width: 95px;
height: 38px;
overflow: hidden;
background: url(../images/d_arrow.png) no-repeat right center;
font-size: 14px;
margin-left: 38px;
cursor: pointer;
}
.car_t span {
color: #ff4e00;
}
.i_car:hover .car_bg {
display: block;
}
.car_bg {
width: 283px;
overflow: hidden;
background-color: #FFF;
border: 1px solid #d9d9d9;
position: absolute;
right: -1px;
top: 38px;
z-index: 900;
display: none;
}
.un_login {
overflow: hidden;
text-align: center;
margin: 15px auto;
}
ul.cars {
overflow: hidden;
}
ul.cars li {
height: 70px;
overflow: hidden;
margin-top: 10px;
border-bottom: 1px solid #e2e2e2;
}
ul.cars li .img {
width: 58px;
height: 58px;
overflow: hidden;
float: left;
display: inline;
margin-left: 15px;
border: 1px solid #e2e2e2;
}
ul.cars li .name {
width: 180px;
height: 40px;
line-height: 20px;
overflow: hidden;
color: #888888;
font-family: "宋体";
float: left;
display: inline;
margin-left: 8px;
}
ul.cars li .name a {
color: #888888;
}
ul.cars li .name a:hover {
color: #ff4e00;
}
ul.cars li .price {
width: 180px;
height: 20px;
line-height: 20px;
overflow: hidden;
color: #888888;
font-size: 14px;
float: left;
display: inline;
margin-left: 8px;
}
.price_sum {
width: 255px;
height: 30px;
line-height: 30px;
overflow: hidden;
font-size: 14px;
text-align: right;
margin-top: 10px;
}
.price_sum span {
color: #ff4e00;
font-size: 20px;
font-weight: bold;
}
.price_a {
width: 120px;
height: 35px;
line-height: 35px;
overflow: hidden;
background: url(../images/a_link.gif) repeat-x center top;
color: #FFF;
font-size: 14px;
text-align: center;
margin-right: 13px;
margin-top: 5px;
margin-bottom: 20px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.price_a a {
color: #FFF;
}
.menu_bg {
width: 100%;
min-width: 1200px;
height: 43px;
border-bottom: 2px solid #ff4e00;
}
.menu {
width: 1200px;
height: 43px;
line-height: 43px;
color: #3e3e3e;
font-size: 16px;
position: relative;
z-index: 800;
}
ul.menu_r {
width: 720px;
height: 40px;
overflow: hidden;
float: left;
display: inline;
margin-left: 211px;
}
ul.menu_r li {
width: 70px;
height: 40px;
line-height: 40px;
overflow: hidden;
text-align: center;
float: left;
display: inline;
margin-right: 10px;
}
ul.menu_r li a {
width: 70px;
height: 40px;
overflow: hidden;
float: left;
color: #3e3e3e;
}
ul.menu_r li a:hover, ul.menu_r li a.now {
color: #ff4e00;
}
.m_ad {
width: 260px;
height: 43px;
line-height: 40px;
overflow: hidden;
color: #ff3600;
font-size: 20px;
font-weight: bold;
text-align: right;
float: right;
}
.nav {
width: 211px;
height: 45px;
background-color: #ff3200;
position: absolute;
left: 0px;
top: 0;
}
.nav_t {
width: 211px;
height: 43px;
line-height: 43px;
overflow: hidden;
color: #FFF;
font-size: 16px;
text-indent: 35px;
}
.leftNav {
width: 211px;
height: 412px;
background-color: #ff4e00;
position: absolute;
left: 0;
top: 44px;
}
.none {
display: none;
}
.leftNav ul li {
height: 40px;
line-height: 40px;
background: url(../images/n_arrow.gif) no-repeat 195px center;
color: #FFF;
font-size: 14px;
margin-left: 1px;
cursor: pointer;
position: relative;
}
.leftNav ul li .n_img {
width: 20px;
height: 21px;
overflow: hidden;
text-align: center;
float: left;
display: inline;
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
}
.leftNav ul li .n_img span {
height: 100%;
vertical-align: middle;
display: inline-block;
}
.leftNav ul li .n_img img {
vertical-align: middle;
}
/*.leftNav ul li a{ color:#6e6e6e; }
.leftNav ul li a:hover{ color:#e02d02; }*/
.leftNav ul li ul {
width: 220px;
min-height: 70px;
overflow: hidden;
background: url(../images/nav_bg.png) repeat center top;
position: absolute;
left: 196px;
top: 0px;
border: 1px solid #d4d2d2;
border-left: 0px;
z-index: 900;
display: none;
}
.leftNav ul li ul li {
width: 195px;
height: auto;
line-height: 25px;
overflow: hidden;
font-size: 12px;
font-weight: normal;
background: none;
margin: 10px auto;
padding: 0px 0px 5px 0px;
border-bottom: 1px dashed #d1d0d1;
}
.leftNav ul li ul li a {
color: #989797;
margin: 0px 10px;
}
.leftNav ul li ul li a:hover {
color: #e02d02;
}
.leftNav ul li ul li .n_t {
width: 50px;
height: 20px;
line-height: 20px;
overflow: hidden;
text-align: center;
font-weight: bold;
float: left;
}
.leftNav ul li ul li .n_c {
width: 142px;
overflow: hidden;
float: left;
}
.leftNav ul li ul li .n_c a {
width: 60px;
height: 20px;
line-height: 20px;
overflow: hidden;
float: left;
display: inline-block;
margin: 0px 0px 0px 10px;
}
.leftNav ul li .fj {
width: 210px;
height: 40px;
line-height: 40px;
display: block;
overflow: hidden;
position: absolute;
left: 0;
top: 0;
z-index: 901;
}
.leftNav ul li .fj.nuw {
width: 211px;
text-decoration: none;
height: 40px;
line-height: 40px;
background-color: #FFF;
color: #ff4e00;
z-index: 800px;
}
.leftNav .zj {
width: 989px;
height: 411px;
overflow: hidden;
background-color: #FFF;
position: absolute;
left: 210px;
top: 0;
display: none;
}
.leftNav .zj .zj_l {
width: 685px;
height: 385px;
overflow: hidden;
float: left;
display: inline;
margin-left: 20px;
margin-top: 15px;
}
.leftNav .zj .zj_l_c {
width: 280px;
height: 108px;
line-height: 25px;
overflow: hidden;
color: #dbdbdb;
float: left;
display: inline;
margin-right: 50px;
margin-bottom: 25px;
}
.leftNav .zj .zj_l_c h2 {
height: 25px;
line-height: 25px;
color: #3e3e3e;
font-size: 14px;
font-weight: bold;
margin-bottom: 5px;
margin-left: 10px;
}
.leftNav .zj .zj_l_c a {
line-height: 22px;
font-size: 12px;
font-family: "宋体";
padding: 0 10px;
margin: 0;
}
.leftNav .zj .zj_r {
width: 236px;
height: 402px;
overflow: hidden;
float: right;
display: inline;
margin-right: 10px;
margin-top: 5px;
}
.leftNav .zj .zj_r img {
width: 236px;
height: 200px;
display: block;
margin-bottom: 1px;
}
/*---------------首页---------------*/
.i_bg {
width: 100%;
min-width: 1200px;
overflow: hidden;
}
.bg_color {
background-color: #f6f6f6;
}
.content {
width: 1200px;
overflow: hidden;
}
.mar_5 {
margin-top: 5px;
}
.mar_10 {
margin-top: 10px;
}
.mar_15 {
margin-top: 15px;
}
.mar_20 {
margin-top: 20px;
}
.i_ban_bg {
width: 1200px;
height: 401px;
margin-top: 10px;
}
.banner {
width: 740px;
height: 401px;
overflow: hidden;
float: left;
display: inline;
margin-left: 223px;
}
.banner .top_slide_wrap {
width: 740px;
height: 401px;
overflow: hidden;
position: relative;
z-index: 1;
}
.banner .slide_box {
height: 401px;
overflow: hidden;
}
.banner .slide_box li {
height: 401px;
position: relative;
}
.banner .slide_box li a {
width: 740px;
height: 401px;
display: block;
}
.banner .slide_box img {
text-align: center;
height: 420px;
}
.banner .slide_info {
width: 740px;
margin: -530px auto 0;
}
.banner .slide_info_card {
width: 420px;
height: 0;
margin-top: 171px;
color: #fff;
position: relative;
}
.banner .slide_info_card a {
color: #fff;
text-decoration: none
}
.banner .slide_info_card .slide_info_card_bg {
width: 420px;
height: 200px;
background: #0071c6;
position: absolute;
top: 0;
left: 0;
z-index: 1;
opacity: .8;
*filter: alpha(opacity=80)
}
.banner .slide_info_card .slide_info_card_text {
width: 340px;
height: 140px;
padding: 30px 40px;
position: absolute;
top: 0;
left: 0;
z-index: 2
}
.banner .slide_info_card h2 {
font-size: 40px;
padding-bottom: 8px
}
.banner .slide_info_card p {
font-size: 15px;
line-height: 26px
}
.banner .slide_info_card p strong {
font-size: 12px;
height: 25px;
display: inline-block;
padding: 0 10px;
background: #095b99;
border-radius: 5px;
color: #fff;
margin-top: 8px
}
/* op_btns */
.banner .op_btns {
width: 740px;
margin-top: -730px;
position: relative;
z-index: 3;
}
.banner .op_btns .op_btn {
display: block;
width: 32px;
height: 60px;
cursor: pointer;
overflow: hidden;
position: absolute;
margin-top: 80px;
}
.banner .op_btns .op_prev {
background: url(../images/b_left.png) no-repeat center top;
left: 0;
top: 420px;
}
.banner .op_btns .op_next {
background: url(../images/b_right.png) no-repeat center top;
right: 0;
top: 420px;
}
.banner .op_btns .op_prev span, .banner .op_btns .op_next span {
display: block;
width: 32px;
height: 60px;
margin: 8px 0 0 17px;
cursor: pointer;
}
.banner .op_btns .op_prev span {
background-position: 0 0;
}
.banner .op_btns .op_next span {
background-position: -73px 0;
margin-left: 20px;
}
/* bx-controls */
.banner .bx-wrapper .bx-controls {
margin-top: -44px;
}
.banner .bx-wrapper .bx-controls .bx-pager {
clear: both;
text-align: center;
position: relative;
overflow: hidden;
}
.banner .bx-wrapper .bx-controls .bx-pager a {
width: 15px;
height: 15px;
line-height: 15px;
display: inline-block;
overflow: hidden;
margin: 15px 5px;
background: url(../images/b.png) no-repeat center top;
}
.banner .bx-wrapper .bx-controls .bx-pager a:hover, .banner .bx-wrapper .bx-controls .bx-pager a.active {
background: url(../images/b_h.png) no-repeat center top;
}
/*.ban_bg{
width:850px; height:430px; overflow:hidden; background-color:#FFF; float:left; -webkit-box-shadow:0 0 5px #e0e0e0; -moz-box-shadow:0 0 5px #e0e0e0; box-shadow:0 0 5px #e0e0e0;
}
.banner{
width:850px; height:430px; overflow:hidden; position:relative;
}
.banner .a_bigImg{ position:absolute; left:0px; top:0px; display:none; width:850px; height:430px; overflow:hidden; }
.banner .a_bigImg .name{
width:850px; height:80px; line-height:80px; overflow:hidden; background:url(../images/b_name.png) repeat-x center top; color:#333333; font-size:20px; text-align:center; position:absolute; left:0; bottom:40px;
}
.banner .ul_change_a2{ position:absolute; left:10px; bottom:15px; overflow:hidden; text-align:center; }
.banner .ul_change_a2 li{
width:10px; height:10px; line-height:10px; overflow:hidden; float:left; display:inline-block; margin:0px 4px; cursor:pointer;
}
.banner .ul_change_a2 span{
width:10px; height:10px; line-height:10px; overflow:hidden; float:left; text-align:center; background:url(../images/b.png) no-repeat center top;
}
.banner .ul_change_a2 span.on { background:url(../images/b_h.png) no-repeat center top; }*/
.inews {
width: 225px;
height: 399px;
background-color: #FFF;
float: right;
border: 1px solid #d9d9d9;
}
.news_t {
height: 39px;
line-height: 39px;
overflow: hidden;
color: #3e3e3e;
font-size: 16px;
padding: 0 10px;
border-bottom: 1px dotted #d9d9d9;
}
.news_t span {
font-size: 12px;
color: #888888;
}
.inews a {
color: #888888;
}
.inews a:hover {
color: #ff4e00;
}
.inews ul {
height: 150px;
overflow: hidden;
margin: 10px 10px 20px 10px;
}
.inews ul li {
height: 30px;
line-height: 30px;
overflow: hidden;
color: #888888;
}
.inews ul li span {
color: #3e3e3e;
margin-right: 10px;
}
.charge_t {
height: 39px;
line-height: 39px;
color: #3e3e3e;
font-size: 16px;
padding: 0 10px;
margin-top: 10px;
border-top: 1px solid #d9d9d9;
border-bottom: 1px dotted #d9d9d9;
position: relative;
}
.ch_t_icon {
width: 11px;
height: 7px;
line-height: 7px;
overflow: hidden;
background: url(../images/d_a.gif) no-repeat center top;
position: absolute;
left: 28px;
top: 39px;
}
.c_ipt {
width: 96px;
height: 23px;
line-height: 23px \9;
background-color: #FFF;
color: #555555;
font-size: 12px;
font-family: "Microsoft YaHei";
font-size: 15px;
padding: 0 10px;
border: 1px solid #d9d9d9;
}
.jslct {
width: 116px;
height: 23px;
line-height: 23px;
display: inline-block;
*display: inline;
zoom: 1;
color: #555555;
font-size: 12px;
font-family: "Microsoft YaHei";
position: relative;
z-index: 0;
vertical-align: middle;
cursor: default;
background: url(../images/d_arrow.png) no-repeat 97px center;
float: left;
border: 1px solid #d9d9d9;
}
.jslct_hover {
border: 1px solid #d9d9d9;
}
.jslct div.jslct_t {
padding: 0 45px 0 5px;
line-height: 23px;
height: 23px;
position: relative;
z-index: 2;
*display: block !important;
*display: inline;
zoom: 1;
}
.jslct em {
font-style: normal;
margin: 0;
padding: 0;
line-height: 23px;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.jslct dl, .jslct dl dd {
padding: 0;
margin: 0;
list-style: none
}
.jslct dl {
background: #fff;
position: absolute;
top: 23px;
left: -1px;
border: 1px solid #d9d9d9;
cursor: default;
line-height: 22px;
padding: 4px 4px 4px 4px;
z-index: 1;
display: none;
}
.jslct_hover dl {
border: 1px solid #d9d9d9 !important
}
.jslct dl dd {
padding: 0px 4px 2px 4px;
*padding: 2px 4px 0 4px;
border-top: 1px dotted #ccc !important;
border-top: 1px dotted #d9d9d9;
white-space: nowrap;
background: #fff;
cursor: pointer;
*border-left: 1px solid #fff;
}
.jslct dl dd.hover {
background: #666;
color: #fff;
}
.jslct .jslcted {
background: #efefef;
}
.jslct dl dd.noborder {
border: none !important
}
.c_btn {
width: 80px;
height: 26px;
line-height: 26px \9;
background-color: #ff4e00;
color: #FFF;
font-size: 12px;
font-family: "Microsoft YaHei";
text-align: center;
float: left;
border: 0;
cursor: pointer;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
/*----------首页(热门商品)-----------*/
.h_l_img {
width: 211px;
height: 230px;
overflow: hidden;
background-color: #d8eefc;
float: left;
position: relative;
}
.h_l_img .img {
width: 188px;
height: 188px;
margin-top: 8px;
}
.h_l_img .img img {
/*-moz-transform:scale(1,1); -webkit-transform:scale(1,1); -o-transform:scale(1,1); -ms-transform:scale(1,1); transform:scale(1,1);
-moz-transition-duration:600ms; -webkit-transition-duration:600ms; -o-transition-duration:600ms; -ms-transition-duration:600ms; transition-duration: 600ms;
-moz-transition-property:all; -webkit-transition-property:all; -o-transition-property:all; -ms-transition-property:all; transition-property:all;
-moz-transition-timing-function:ease-out; -webkit-transition-timing-function: ease-out; -o-transition-timing-function:ease-out; -ms-transition-timing-function:ease-out; transition-timing-function:ease-out;*/
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transform: all .5s;
-ms-transform: all .5s;
transition: all .5s;
}
.h_l_img:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.h_l_img .pri_bg {
width: 100px;
height: 20px;
line-height: 20px;
color: #ff4e00;
overflow: hidden;
position: absolute;
left: 50%;
margin-left: -50px;
bottom: 5px;
}
.h_l_img .price {
height: 20px;
line-height: 20px;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 14px;
text-align: center;
float: left;
padding: 0 5px;
margin-right: 5px;
}
.hot_pro {
width: 975px;
height: 228px;
overflow: hidden;
background-color: #FFF;
float: right;
border: 1px solid #eaeaea;
}
.hot_pro #featureContainer {
width: 975px;
height: 228px;
overflow: hidden;
}
.hot_pro #feature {
width: 975px;
height: 228px;
overflow: hidden;
position: relative;
}
.hot_pro #feature .button {
width: 975px;
position: absolute;
left: 0px;
top: 0px;
}
.hot_pro #feature .h_prev {
width: 32px;
height: 60px;
overflow: hidden;
background: url(../images/b_left.png) no-repeat center top;
display: block;
text-indent: -9999px;
float: left;
position: absolute;
left: 0px;
top: 84px;
}
.hot_pro #feature .h_next {
width: 32px;
height: 60px;
overflow: hidden;
background: url(../images/b_right.png) no-repeat center top;
display: block;
text-indent: -9999px;
float: left;
position: absolute;
right: 0px;
top: 84px;
}
.hot_pro .featureUL {
width: 2800px;
height: 375px;
overflow: hidden;
float: left;
position: relative;
}
.hot_pro .featureBox {
width: 243px;
height: 228px;
overflow: hidden;
background: url(../images/line.gif) no-repeat right 122px;
float: left;
border-right: 1px solid #eaeaea;
position: relative;
}
.hot_pro #botton-scroll {
width: 975px;
height: 228px;
overflow: hidden;
float: left;
z-index: 0;
}
.hot_pro #block {
width: 975px;
height: 228px;
overflow: hidden;
position: relative;
z-index: 0;
}
.hot_pro #block .box {
width: 243px;
height: 228px;
overflow: hidden;
margin: 0 auto;
position: relative;
}
.hot_pro #block .box .h_icon {
width: 50px;
height: 50px;
overflow: hidden;
position: absolute;
left: 10px;
top: 10px;
z-index: 100;
}
.hot_pro #block .box .imgbg {
width: 160px;
height: 136px;
margin-top: 5px;
}
.hot_pro #block .box .imgbg img {
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transform: all .5s;
-ms-transform: all .5s;
transition: all .5s;
}
.hot_pro #block .box .imgbg:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.hot_pro #block .box .name {
height: 40px;
line-height: 20px;
overflow: hidden;
color: #888888;
font-size: 12px;
text-align: center;
margin-top: 10px;
}
.hot_pro #block .box .name h2 {
height: 20px;
line-height: 20px;
overflow: hidden;
color: #555555;
font-size: 16px;
text-align: center;
}
.hot_pro #block .box .name h2 a {
color: #555555;
}
.hot_pro #block .box .name h2 a:hover {
color: #555555;
text-decoration: underline;
}
.hot_pro #block .box .name a {
color: #888888;
}
.hot_pro #block .box .name a:hover {
color: #888888;
text-decoration: underline;
}
.hot_pro #block .box .price {
height: 30px;
line-height: 30px;
overflow: hidden;
color: #999999;
text-align: center;
text-transform: uppercase;
}
.hot_pro #block .box .price font {
color: #ff4e00;
font-size: 14px;
}
.hot_pro #block .box .price span {
font-size: 20px;
}
/*----------首页(限时特卖)-----------*/
.i_t {
width: 1190px;
height: 39px;
line-height: 39px;
overflow: hidden;
color: #ff4e00;
font-size: 18px;
padding: 0 5px;
border-bottom: 2px solid #ff4e00;
}
.i_mores {
font-size: 12px;
color: #555555;
}
.i_mores a {
color: #555555;
}
.i_mores a:hover {
color: #ff4e00;
}
.i_sell {
width: 211px;
height: 357px;
overflow: hidden;
float: left;
}
.i_sell #imgPlay {
width: 211px;
height: 357px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.i_sell #imgPlay .imgs img {
width: 211px;
}
.i_sell #imgPlay .imgs li {
position: relative;
float: left;
width: 211px;
height: 357px;
}
.i_sell #imgPlay .imgs {
width: 5760px;
}
.i_sell #imgPlay .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.i_sell #imgPlay .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.i_sell #imgPlay .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.i_sell #imgPlay .previ {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 158px;
}
.i_sell #imgPlay .nexti {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 158px;
}
.sell_right {
width: 975px;
height: 356px;
overflow: hidden;
background-color: #FFF;
float: right;
border: 1px solid #eaeaea;
position: relative;
}
.sell_right img {
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transform: all .5s;
-ms-transform: all .5s;
transition: all .5s;
}
.sell_1 {
width: 244px;
height: 177px;
overflow: hidden;
border-bottom: 1px solid #eaeaea;
position: absolute;
left: 0;
top: 0;
}
.sell_1:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.s_img {
width: 185px;
height: 155px;
overflow: hidden;
margin-top: 6px;
}
.s_price {
width: 100%;
height: 30px;
line-height: 30px;
overflow: hidden;
color: #ff4e00;
font-size: 14px;
text-indent: 10px;
position: absolute;
left: 0;
top: 10px;
}
.s_price span {
font-size: 20px;
}
.s_name {
width: 100%;
height: 60px;
overflow: hidden;
background: url(../images/name.png) repeat-x center top;
text-align: center;
position: absolute;
left: 0;
bottom: 0;
}
.s_name h2 {
height: 25px;
line-height: 25px;
overflow: hidden;
font-size: 16px;
margin-top: 5px;
}
.s_name span {
color: #ff4e00;
font-size: 14px;
}
.sell_2 {
width: 244px;
height: 178px;
overflow: hidden;
position: absolute;
left: 0;
top: 178px;
}
.sell_2:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.sell_b1 {
width: 242px;
height: 356px;
overflow: hidden;
border-left: 1px solid #eaeaea;
border-right: 1px solid #eaeaea;
position: absolute;
left: 244px;
top: 0;
}
.sell_b1:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.sb_img {
width: 242px;
height: 356px;
overflow: hidden;
}
.sell_3 {
width: 244px;
height: 178px;
overflow: hidden;
border-bottom: 1px solid #eaeaea;
position: absolute;
left: 488px;
top: 0;
}
.sell_3:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.sell_4 {
width: 244px;
height: 178px;
overflow: hidden;
position: absolute;
left: 488px;
top: 178px;
}
.sell_4:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.sell_b2 {
width: 242px;
height: 356px;
overflow: hidden;
border-right: 1px solid #eaeaea;
position: absolute;
right: 0;
top: 0;
}
.sell_b2:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
/*---------------首页(进口 生鲜)---------------*/
.floor_num {
width: 33px;
height: 34px;
line-height: 40px;
overflow: hidden;
background: url(../images/floor.png) no-repeat center top;
color: #FFF;
font-size: 14px;
text-transform: uppercase;
text-indent: 6px;
float: left;
display: inline;
margin-right: 15px;
}
.fresh_left {
width: 211px;
height: 441px;
overflow: hidden;
background-color: #a6e5be;
float: left;
}
.fre_ban {
width: 211px;
height: 286px;
overflow: hidden;
}
.fre_ban #imgPlay1 {
width: 211px;
height: 286px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.fre_ban #imgPlay .imgs img {
width: 211px;
}
.fre_ban #imgPlay1 .imgs li {
position: relative;
float: left;
width: 211px;
height: 286px;
}
.fre_ban #imgPlay1 .imgs {
width: 5760px;
}
.fre_ban #imgPlay1 .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.fre_ban #imgPlay1 .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.fre_ban #imgPlay1 .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.fre_ban .prevf {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 123px;
}
.fre_ban .nextf {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 123px;
}
.fresh_txt {
width: 211px;
height: 155px;
background: url(../images/s_txt.png) no-repeat center top;
padding-top: 1px;
}
.fresh_txt_c {
height: 120px;
line-height: 30px;
overflow: hidden;
margin-top: 10px;
}
.fresh_txt_c a {
display: inline-block;
margin-left: 20px;
margin-right: 12px;
}
.fresh_mid {
width: 729px;
height: 441px;
overflow: hidden;
background-color: #FFF;
float: left;
}
.fresh_mid ul li {
width: 242px;
height: 220px;
overflow: hidden;
float: left;
border-left: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea;
}
.fresh_mid ul li .name {
height: 20px;
line-height: 20px;
overflow: hidden;
font-size: 14px;
text-indent: 50px;
margin-top: 12px;
}
.fresh_mid ul li .price {
height: 20px;
line-height: 20px;
overflow: hidden;
color: #999999;
text-indent: 50px;
text-transform: uppercase;
}
.fresh_mid ul li .price font {
color: #ff4e00;
font-size: 14px;
}
.fresh_mid ul li .price span {
font-size: 18px;
}
.fresh_mid ul li .img {
width: 188px;
height: 155px;
overflow: hidden;
margin-top: 5px;
}
.fresh_mid ul li .img img {
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transform: all .5s;
-ms-transform: all .5s;
transition: all .5s;
}
.fresh_mid ul li:hover .img img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.fresh_right {
width: 260px;
height: 441px;
overflow: hidden;
background-color: #FFF;
float: right;
}
.fresh_right ul li {
width: 260px;
height: 220px;
overflow: hidden;
border-bottom: 1px solid #eaeaea;
}
/*---------------首页(食品饮料)---------------*/
.food_left {
width: 211px;
height: 441px;
overflow: hidden;
background-color: #f3e89b;
float: left;
}
.food_ban {
width: 211px;
height: 286px;
overflow: hidden;
}
.food_ban #imgPlay2 {
width: 211px;
height: 286px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.food_ban #imgPlay2 .imgs img {
width: 211px;
}
.food_ban #imgPlay2 .imgs li {
position: relative;
float: left;
width: 211px;
height: 286px;
}
.food_ban #imgPlay2 .imgs {
width: 5760px;
}
.food_ban #imgPlay2 .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.food_ban #imgPlay2 .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.food_ban #imgPlay2 .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.food_ban .prev_f {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 123px;
}
.food_ban .next_f {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 123px;
}
/*---------------首页(个人美妆)---------------*/
.make_left {
width: 211px;
height: 441px;
overflow: hidden;
background-color: #fabeb8;
float: left;
}
.make_ban {
width: 211px;
height: 286px;
overflow: hidden;
}
.make_ban #imgPlay3 {
width: 211px;
height: 286px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.make_ban #imgPlay3 .imgs img {
width: 211px;
}
.make_ban #imgPlay3 .imgs li {
position: relative;
float: left;
width: 211px;
height: 286px;
}
.make_ban #imgPlay3 .imgs {
width: 5760px;
}
.make_ban #imgPlay3 .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.make_ban #imgPlay3 .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.make_ban #imgPlay3 .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.make_ban .prev_m {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 123px;
}
.make_ban .next_m {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 123px;
}
/*---------------首页(母婴玩具)---------------*/
.baby_left {
width: 211px;
height: 441px;
overflow: hidden;
background-color: #f4bdd5;
float: left;
}
.baby_ban {
width: 211px;
height: 286px;
overflow: hidden;
}
.baby_ban #imgPlay4 {
width: 211px;
height: 286px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.baby_ban #imgPlay4 .imgs img {
width: 211px;
}
.baby_ban #imgPlay4 .imgs li {
position: relative;
float: left;
width: 211px;
height: 286px;
}
.baby_ban #imgPlay4 .imgs {
width: 5760px;
}
.baby_ban #imgPlay4 .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.baby_ban #imgPlay4 .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.baby_ban #imgPlay4 .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.baby_ban .prev_b {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 123px;
}
.baby_ban .next_b {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 123px;
}
/*---------------首页(家居生活)---------------*/
.home_left {
width: 211px;
height: 441px;
overflow: hidden;
background-color: #bad4f4;
float: left;
}
.home_ban {
width: 211px;
height: 286px;
overflow: hidden;
}
.home_ban #imgPlay5 {
width: 211px;
height: 286px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.home_ban #imgPlay5 .imgs img {
width: 211px;
}
.home_ban #imgPlay5 .imgs li {
position: relative;
float: left;
width: 211px;
height: 286px;
}
.home_ban #imgPlay5 .imgs {
width: 5760px;
}
.home_ban #imgPlay5 .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.home_ban #imgPlay5 .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.home_ban #imgPlay5 .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.home_ban .prev_h {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 123px;
}
.home_ban .next_h {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 123px;
}
/*---------------首页(数码家电)---------------*/
.tel_left {
width: 211px;
height: 441px;
overflow: hidden;
background-color: #b2e7ef;
float: left;
}
.tel_ban {
width: 211px;
height: 286px;
overflow: hidden;
}
.tel_ban #imgPlay6 {
width: 211px;
height: 286px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.tel_ban #imgPlay6 .imgs img {
width: 211px;
}
.tel_ban #imgPlay6 .imgs li {
position: relative;
float: left;
width: 211px;
height: 286px;
}
.tel_ban #imgPlay6 .imgs {
width: 5760px;
}
.tel_ban #imgPlay6 .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.tel_ban #imgPlay6 .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.tel_ban #imgPlay6 .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.tel_ban .prev_t {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 123px;
}
.tel_ban .next_t {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 123px;
}
/*---------------首页(猜你喜欢)---------------*/
.like {
width: 1198px;
height: 228px;
overflow: hidden;
background-color: #FFF;
border: 1px solid #eaeaea;
border-top: 0;
}
.like #featureContainer1 {
width: 1198px;
height: 228px;
overflow: hidden;
}
.like #feature1 {
width: 1198px;
height: 228px;
overflow: hidden;
position: relative;
}
.like #feature1 .button {
width: 1198px;
position: absolute;
left: 0px;
top: 0px;
}
.like #feature1 .l_prev {
width: 32px;
height: 60px;
overflow: hidden;
background: url(../images/b_left.png) no-repeat center top;
display: block;
text-indent: -9999px;
float: left;
position: absolute;
left: 0px;
top: 84px;
}
.like #feature1 .l_next {
width: 32px;
height: 60px;
overflow: hidden;
background: url(../images/b_right.png) no-repeat center top;
display: block;
text-indent: -9999px;
float: left;
position: absolute;
right: 0px;
top: 84px;
}
.like .featureUL {
width: 2800px;
height: 375px;
overflow: hidden;
float: left;
position: relative;
}
.like .featureBox {
width: 238px;
height: 228px;
overflow: hidden;
background: url(../images/line.gif) no-repeat right 122px;
float: left;
border-left: 1px solid #eaeaea;
border-right: 1px solid #eaeaea;
position: relative;
}
.like #botton-scroll {
width: 1198px;
height: 228px;
overflow: hidden;
float: left;
z-index: 0;
}
.like #block1 {
width: 1198px;
height: 228px;
overflow: hidden;
position: relative;
z-index: 0;
}
.like #block1 .box {
width: 238px;
height: 228px;
overflow: hidden;
margin: 0 auto;
position: relative;
}
.like #block1 .box .h_icon {
width: 50px;
height: 50px;
overflow: hidden;
position: absolute;
left: 10px;
top: 10px;
z-index: 100;
}
.like #block1 .box .imgbg {
width: 160px;
height: 136px;
margin-top: 5px;
}
.like #block1 .box .imgbg img {
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transform: all .5s;
-ms-transform: all .5s;
transition: all .5s;
}
.like #block1 .box .imgbg:hover img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.like #block1 .box .name {
height: 40px;
line-height: 20px;
overflow: hidden;
color: #888888;
font-size: 12px;
text-align: center;
margin-top: 10px;
}
.like #block1 .box .name h2 {
height: 20px;
line-height: 20px;
overflow: hidden;
color: #555555;
font-size: 16px;
text-align: center;
}
.like #block1 .box .name h2 a {
color: #555555;
}
.like #block1 .box .name h2 a:hover {
color: #555555;
text-decoration: underline;
}
.like #block1 .box .name a {
color: #888888;
}
.like #block1 .box .name a:hover {
color: #888888;
text-decoration: underline;
}
.like #block1 .box .price {
height: 30px;
line-height: 30px;
overflow: hidden;
color: #999999;
text-align: center;
text-transform: uppercase;
}
.like #block1 .box .price font {
color: #ff4e00;
font-size: 14px;
}
.like #block1 .box .price span {
font-size: 20px;
}
/*---------------登录、注册---------------*/
.log_bg {
width: 100%;
min-width: 1200px;
height: 840px;
overflow: hidden;
background-color: #fff4ef;
}
.login {
width: 1200px;
overflow: hidden;
margin-top: 45px;
}
.log_img {
width: 611px;
height: 425px;
overflow: hidden;
float: left;
margin-top: 40px;
}
.log_c {
width: 455px;
height: 330px;
overflow: hidden;
background-color: #FFF;
float: right;
display: inline;
margin-top: 40px;
margin-right: 10px;
margin-bottom: 10px;
-webkit-box-shadow: 0 0 5px #e0e0e0;
-moz-box-shadow: 0 0 5px #e0e0e0;
box-shadow: 0 0 5px #e0e0e0;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.l_user {
width: 267px;
height: 38px;
line-height: 38px \9;
overflow: hidden;
background: url(../images/i_u.png) no-repeat 285px center;
background-color: #FFF;
color: #888888;
font-size: 14px;
font-family: "Microsoft YaHei";
padding: 0 40px 0 10px;
border: 1px solid #cccccc;
}
.l_pwd {
width: 267px;
height: 38px;
line-height: 38px \9;
overflow: hidden;
background: url(../images/i_pwd.png) no-repeat 285px center;
background-color: #FFF;
color: #888888;
font-size: 14px;
font-family: "Microsoft YaHei";
padding: 0 40px 0 10px;
border: 1px solid #cccccc;
}
.l_email {
width: 267px;
height: 38px;
line-height: 38px \9;
overflow: hidden;
background: url(../images/i_email.png) no-repeat 285px center;
background-color: #FFF;
color: #888888;
font-size: 14px;
font-family: "Microsoft YaHei";
padding: 0 40px 0 10px;
border: 1px solid #cccccc;
}
.l_tel {
width: 267px;
height: 38px;
line-height: 38px \9;
overflow: hidden;
background: url(../images/i_tel.png) no-repeat 285px center;
background-color: #FFF;
color: #888888;
font-size: 14px;
font-family: "Microsoft YaHei";
padding: 0 40px 0 10px;
border: 1px solid #cccccc;
}
.l_mem {
width: 267px;
height: 38px;
line-height: 38px \9;
overflow: hidden;
background: url(../images/i_mem.png) no-repeat 285px center;
background-color: #FFF;
color: #888888;
font-size: 14px;
font-family: "Microsoft YaHei";
padding: 0 40px 0 10px;
border: 1px solid #cccccc;
}
.l_num {
width: 267px;
height: 38px;
line-height: 38px \9;
overflow: hidden;
background: url(../images/i_num.png) no-repeat 285px center;
background-color: #FFF;
color: #888888;
font-size: 14px;
font-family: "Microsoft YaHei";
padding: 0 40px 0 10px;
border: 1px solid #cccccc;
}
.l_ipt {
width: 127px;
height: 38px;
line-height: 38px \9;
overflow: hidden;
background-color: #FFF;
color: #888888;
font-size: 14px;
font-family: "Microsoft YaHei";
padding: 0 10px;
border: 1px solid #cccccc;
}
.log_btn {
width: 318px;
height: 42px;
line-height: 42px \9;
overflow: hidden;
background: url(../images/btn_log.gif) repeat-x center top;
color: #FFF;
font-size: 16px;
font-family: "Microsoft YaHei";
text-align: center;
padding: 0;
border: 0;
cursor: pointer;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.regist {
width: 1200px;
overflow: hidden;
}
.reg_c {
width: 475px;
height: 600px;
overflow: hidden;
background-color: #FFF;
float: right;
display: inline;
margin-top: 0;
margin-right: 10px;
margin-bottom: 10px;
-webkit-box-shadow: 0 0 5px #e0e0e0;
-moz-box-shadow: 0 0 5px #e0e0e0;
box-shadow: 0 0 5px #e0e0e0;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
/*---------------分类页面---------------*/
ul.cate {
width: 105%;
overflow: hidden;
}
ul.cate li {
width: 295px;
height: 220px;
overflow: hidden;
float: left;
display: inline;
margin-right: 6px;
}
.cate_nav {
width: 209px;
height: 409px;
overflow: hidden;
background-color: #f6f6f6;
float: left;
border: 1px solid #eaeaea;
}
.cate_nav dl {
width: 189px;
overflow: hidden;
margin: 10px auto 0 auto;
padding-bottom: 10px;
border-bottom: 1px dotted #999999;
}
.cate_nav dl dt {
height: 22px;
height: 22px;
overflow: hidden;
color: #3e3e3e;
font-size: 14px;
clear: both;
margin-left: 12px;
}
.cate_nav dl dt a {
color: #3e3e3e;
}
.cate_nav dl dt a:hover {
color: #ff4e00;
}
.cate_nav dl dd {
height: 20px;
height: 20px;
overflow: hidden;
color: #888888;
font-family: "宋体";
float: left;
display: inline;
margin-left: 12px;
}
.cate_nav dl dd a {
color: #888888;
}
.cate_nav dl dd a:hover {
color: #555555;
text-decoration: underline;
}
.nban {
width: 977px;
height: 401px;
overflow: hidden;
float: right;
margin-top: 9px;
}
.nban .top_slide_wrap {
width: 977px;
height: 401px;
overflow: hidden;
position: relative;
z-index: 1;
}
.nban .slide_box {
height: 401px;
overflow: hidden;
}
.nban .slide_box li {
height: 401px;
position: relative;
}
.nban .slide_box li a {
width: 977px;
height: 401px;
display: block;
}
.nban .slide_box img {
text-align: center;
height: 420px;
}
.nban .slide_info {
width: 977px;
margin: -530px auto 0;
}
.nban .slide_info_card {
width: 420px;
height: 0;
margin-top: 171px;
color: #fff;
position: relative;
}
.nban .slide_info_card a {
color: #fff;
text-decoration: none
}
.nban .slide_info_card .slide_info_card_bg {
width: 420px;
height: 200px;
background: #0071c6;
position: absolute;
top: 0;
left: 0;
z-index: 1;
opacity: .8;
*filter: alpha(opacity=80)
}
.nban .slide_info_card .slide_info_card_text {
width: 340px;
height: 140px;
padding: 30px 40px;
position: absolute;
top: 0;
left: 0;
z-index: 2
}
.nban .slide_info_card h2 {
font-size: 40px;
padding-bottom: 8px
}
.nban .slide_info_card p {
font-size: 15px;
line-height: 26px
}
.nban .slide_info_card p strong {
font-size: 12px;
height: 25px;
display: inline-block;
padding: 0 10px;
background: #095b99;
border-radius: 5px;
color: #fff;
margin-top: 8px
}
/* op_btns */
.nban .op_btns {
width: 977px;
margin-top: -730px;
position: relative;
z-index: 3;
}
.nban .op_btns .op_btn {
display: block;
width: 32px;
height: 60px;
cursor: pointer;
overflow: hidden;
position: absolute;
margin-top: 80px;
}
.nban .op_btns .op_prev {
background: url(../images/b_left.png) no-repeat center top;
left: 0;
top: 420px;
}
.nban .op_btns .op_next {
background: url(../images/b_right.png) no-repeat center top;
right: 0;
top: 420px;
}
.nban .op_btns .op_prev span, .nban .op_btns .op_next span {
display: block;
width: 32px;
height: 60px;
margin: 8px 0 0 17px;
cursor: pointer;
}
.nban .op_btns .op_prev span {
background-position: 0 0;
}
.nban .op_btns .op_next span {
background-position: -73px 0;
margin-left: 20px;
}
/* bx-controls */
.nban .bx-wrapper .bx-controls {
margin-top: -44px;
}
.nban .bx-wrapper .bx-controls .bx-pager {
clear: both;
text-align: center;
position: relative;
overflow: hidden;
}
.nban .bx-wrapper .bx-controls .bx-pager a {
width: 15px;
height: 15px;
line-height: 15px;
display: inline-block;
overflow: hidden;
margin: 15px 5px;
background: url(../images/b.png) no-repeat center top;
}
.nban .bx-wrapper .bx-controls .bx-pager a:hover, .nban .bx-wrapper .bx-controls .bx-pager a.active {
background: url(../images/b_h.png) no-repeat center top;
}
.t_color {
color: #3e3e3e;
}
.milk_ban {
width: 228px;
height: 418px;
overflow: hidden;
float: left;
}
.milk_ban #imgPlaym {
width: 228px;
height: 418px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.milk_ban #imgPlaym .imgs img {
width: 228px;
}
.milk_ban #imgPlaym .imgs li {
position: relative;
float: left;
width: 228px;
height: 418px;
}
.milk_ban #imgPlaym .imgs {
width: 5760px;
}
.milk_ban #imgPlaym .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.milk_ban #imgPlaym .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.milk_ban #imgPlaym .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.milk_ban #imgPlaym .prevm {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 190px;
}
.milk_ban #imgPlaym .nextm {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 190px;
}
.milk_right {
width: 972px;
height: 418px;
overflow: hidden;
background-color: #FFF;
float: right;
}
.milk_right ul li {
width: 242px;
height: 208px;
overflow: hidden;
float: left;
border-right: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea;
}
.milk_right ul li .img {
width: 188px;
height: 155px;
overflow: hidden;
}
.milk_right ul li .img img {
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transform: all .5s;
-ms-transform: all .5s;
transition: all .5s;
}
.milk_right ul li:hover .img img {
-moz-transform: scale(1.1, 1.1);
-webkit-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.milk_right ul li .name {
height: 20px;
line-height: 20px;
overflow: hidden;
font-size: 14px;
text-align: center;
margin-top: 3px;
}
.milk_right ul li .price {
height: 20px;
line-height: 20px;
overflow: hidden;
color: #999999;
text-align: center;
text-transform: uppercase;
}
.milk_right ul li .price font {
color: #ff4e00;
font-size: 14px;
}
.milk_right ul li .price span {
font-size: 18px;
}
.paper_ban {
width: 228px;
height: 418px;
overflow: hidden;
float: left;
}
.paper_ban #imgPlaypa {
width: 228px;
height: 418px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.paper_ban #imgPlaypa .imgs img {
width: 228px;
}
.paper_ban #imgPlaypa .imgs li {
position: relative;
float: left;
width: 228px;
height: 418px;
}
.paper_ban #imgPlaypa .imgs {
width: 5760px;
}
.paper_ban #imgPlaypa .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.paper_ban #imgPlaypa .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.paper_ban #imgPlaypa .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.paper_ban #imgPlaypa .prevpa {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 190px;
}
.paper_ban #imgPlaypa .nextpa {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 190px;
}
.bb_ban {
width: 228px;
height: 418px;
overflow: hidden;
float: left;
}
.bb_ban #imgPlayba {
width: 228px;
height: 418px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.bb_ban #imgPlayba .imgs img {
width: 228px;
}
.bb_ban #imgPlayba .imgs li {
position: relative;
float: left;
width: 228px;
height: 418px;
}
.bb_ban #imgPlayba .imgs {
width: 5760px;
}
.bb_ban #imgPlayba .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.bb_ban #imgPlayba .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.bb_ban #imgPlayba .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.bb_ban #imgPlayba .prevba {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 190px;
}
.bb_ban #imgPlayba .nextba {
width: 20px;
height: 40px;
overflow: hidden;
background: url(../images/s_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 190px;
}
/*---------------分类列表---------------*/
.postion {
width: 1200px;
height: 40px;
line-height: 40px;
overflow: hidden;
font-family: "宋体";
}
.n_ch {
height: 23px;
line-height: 23px;
overflow: hidden;
float: left;
display: inline;
margin-left: 10px;
margin-top: 7px;
padding: 0 10px;
border: 1px dashed #ff4e00;
}
.n_ch font {
color: #ff3200;
}
.n_ch a {
width: 10px;
height: 9px;
overflow: hidden;
float: right;
margin-top: 7px;
margin-left: 5px;
}
table.choice {
border-collapse: collapse;
border: 2px solid #cccccc;
}
table.choice tr td {
border-bottom: 1px solid #cccccc;
padding: 10px;
}
table.choice tr td.td_a {
color: #888888;
}
table.choice tr td.td_a a {
display: inline-block;
margin: 0 11px;
color: #888888;
}
table.choice tr td.td_a a:hover, table.choice tr td.td_a a.now {
color: #ff4e00;
}
.l_history {
width: 209px;
overflow: hidden;
float: left;
border: 1px solid #eaeaea;
}
.his_t {
height: 38px;
line-height: 38px;
overflow: hidden;
background: url(../images/h_t.gif) no-repeat 10px center;
color: #ff4e00;
font-size: 16px;
padding-left: 22px;
padding-right: 10px;
border-bottom: 1px solid #eaeaea;
}
.his_t a {
color: #888888;
font-size: 14px;
}
.l_history ul li {
height: 240px;
overflow: hidden;
border-bottom: 1px solid #eaeaea;
}
.l_history ul li .img {
width: 185px;
height: 162px;
overflow: hidden;
margin-top: 10px;
}
/*.l_history ul li .img img{
-webkit-transition:all .5s; -moz-transition:all .5s; -o-transform:all .5s; -ms-transform:all .5s; transition:all .5s;
}
.l_history ul li:hover .img img{
-moz-transform:scale(1.1,1.1); -webkit-transform:scale(1.1,1.1); -o-transform:scale(1.1,1.1); -ms-transform:scale(1.1,1.1); transform:scale(1.1,1.1);
}*/
.l_history ul li .name {
height: 25px;
line-height: 25px;
overflow: hidden;
font-size: 14px;
text-align: center;
margin-top: 5px;
}
.l_history ul li .price {
height: 25px;
line-height: 25px;
overflow: hidden;
color: #999999;
text-align: center;
text-transform: uppercase;
}
.l_history ul li .price font {
color: #ff4e00;
font-size: 14px;
}
.l_history ul li .price span {
font-size: 18px;
}
.l_list {
width: 972px;
overflow: hidden;
float: right;
padding-bottom: 30px;
}
.list_t {
height: 39px;
line-height: 39px;
overflow: hidden;
font-family: "宋体";
border-bottom: 1px solid #eaeaea;
}
.list_or a {
width: 68px;
height: 23px;
line-height: 23px;
overflow: hidden;
color: #555555;
text-indent: 12px;
float: left;
display: inline;
margin-right: -1px;
margin-top: 6px;
border: 1px solid #cccccc;
}
.list_or a:hover, .list_or a.now {
color: #FFF;
background-color: #ff4e00;
}
.list_or .i_up {
width: 15px;
height: 8px;
line-height: 8px;
overflow: hidden;
background: url(../images/i_up.gif) no-repeat center top;
text-indent: -9999em;
float: right;
margin-top: 6px;
margin-right: 8px;
}
.list_or .i_down {
width: 15px;
height: 8px;
line-height: 8px;
overflow: hidden;
background: url(../images/i_down.gif) no-repeat center top;
text-indent: -9999em;
float: right;
margin-top: 0px;
margin-right: 8px;
}
.list_c {
overflow: hidden;
margin: 20px auto;
}
.list_c ul {
overflow: hidden;
}
ul.cate_list {
padding: 5px 0;
}
ul.cate_list li {
width: 232px;
height: 316px;
overflow: hidden;
float: left;
display: inline;
margin: 0 5px;
}
ul.cate_list li:hover {
background-color: #FFF;
-webkit-box-shadow: 0 0 5px #e0e0e0;
-moz-box-shadow: 0 0 5px #e0e0e0;
box-shadow: 0 0 5px #e0e0e0;
}
ul.cate_list li .img {
width: 208px;
height: 185px;
overflow: hidden;
margin-top: 5px;
}
ul.cate_list li .price {
width: 208px;
height: 25px;
line-height: 25px;
overflow: hidden;
color: #999999;
text-transform: uppercase;
margin-top: 10px;
}
ul.cate_list li .price font {
color: #ff4e00;
font-size: 14px;
}
ul.cate_list li .price span {
font-size: 18px;
}
ul.cate_list li .name {
width: 208px;
height: 25px;
line-height: 25px;
overflow: hidden;
font-size: 14px;
}
ul.cate_list li .carbg {
width: 209px;
height: 30px;
overflow: hidden;
font-family: "宋体";
margin-top: 15px;
}
ul.cate_list li .carbg a.ss {
width: 68px;
height: 28px;
line-height: 28px;
overflow: hidden;
background: url(../images/heart.png) no-repeat 10px center;
color: #888888;
text-indent: 33px;
float: left;
display: inline;
margin-right: -1px;
border: 1px solid #cccccc;
}
ul.cate_list li .carbg a.ss:hover {
color: #888888;
background: url(../images/heart_h.png) no-repeat 10px center;
}
ul.cate_list li:hover .carbg a.ss {
color: #888888;
background: url(../images/heart_h.png) no-repeat 10px center;
}
ul.cate_list li .carbg a.j_car {
width: 138px;
height: 28px;
line-height: 28px;
overflow: hidden;
background: url(../images/cars.png) no-repeat 24px center;
color: #ff4e00;
text-indent: 47px;
float: left;
display: inline;
margin-right: -1px;
border: 1px solid #cccccc;
}
ul.cate_list li .carbg a.j_car:hover {
color: #FFF;
background: url(../images/cars_h.png) no-repeat 24px center;
background-color: #ff4e00;
border: 1px solid #ff4e00;
}
ul.cate_list li:hover .carbg a.j_car {
color: #FFF;
background: url(../images/cars_h.png) no-repeat 24px center;
background-color: #ff4e00;
border: 1px solid #ff4e00;
}
.pages {
overflow: hidden;
color: #888888;
padding: 20px 10px;
text-align: right;
font-size: 16px;
font-family: "宋体";
margin-top: 20px;
}
.pages a {
height: 36px;
line-height: 36px;
overflow: hidden;
color: #666666;
font-size: 16px;
text-align: center;
display: inline-block;
padding: 0 12px;
margin: 0 4px;
border: 1px solid #cccccc;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.pages a:hover, .pages a.cur {
color: #FFF;
background-color: #ff4e00;
border: 1px solid #ff4e00;
}
.pages a.p_pre:hover {
background-color: #eaeaea;
color: #555555;
border: 1px solid #cccccc;
}
/*---------------品牌分类---------------*/
.brand_t {
height: 40px;
line-height: 40px;
overflow: hidden;
background: url(../images/h_t.gif) no-repeat left center;
color: #ff4e00;
font-size: 16px;
padding-left: 14px;
}
ul.brand {
width: 105%;
overflow: hidden;
}
ul.brand li {
width: 228px;
height: 160px;
overflow: hidden;
float: left;
display: inline;
margin-right: 19px;
}
ul.brand li .img {
width: 226px;
height: 108px;
overflow: hidden;
border: 1px solid #eaeaea;
}
ul.brand li .name {
height: 30px;
line-height: 30px;
overflow: hidden;
color: #888888;
text-align: center;
font-size: 14px;
}
ul.brand li .name span {
color: #3e3e3e;
}
.brand_img {
width: 226px;
height: 108px;
overflow: hidden;
margin: 10px;
border-right: 1px solid #eaeaea;
}
.td_b a {
margin-right: 25px;
}
.td_b a.now {
color: #ff4e00;
}
/*---------------商品详情---------------*/
.fav_t {
height: 28px;
line-height: 28px;
overflow: hidden;
background-color: #f6f6f6;
font-size: 14px;
padding-left: 10px;
border-bottom: 1px solid #eaeaea;
}
.pro_des {
width: 520px;
height: 490px;
overflow: hidden;
float: left;
display: inline;
margin-left: 30px;
}
.des_name {
height: 50px;
line-height: 25px;
overflow: hidden;
color: #888888;
font-size: 14px;
}
.des_name p {
color: #3e3e3e;
font-size: 18px;
font-weight: bold;
margin: 0;
padding: 0;
}
.des_price {
height: 64px;
line-height: 32px;
overflow: hidden;
font-family: "宋体";
margin-top: 25px;
margin-bottom: 20px;
}
.des_price b {
color: #ff3200;
font-size: 18px;
font-family: "Microsoft YaHei";
}
.des_price span {
font-size: 14px;
font-family: "Microsoft YaHei";
}
.des_choice {
line-height: 40px;
overflow: hidden;
color: #888888;
font-family: "宋体";
}
.des_choice ul li {
height: 28px;
line-height: 28px;
overflow: hidden;
font-size: 14px;
text-align: center;
font-family: "Microsoft YaHei";
float: left;
display: inline;
margin-right: 10px;
margin-top: 4px;
margin-bottom: 2px;
padding: 0 15px;
border: 1px solid #cccccc;
cursor: pointer;
position: relative;
}
.des_choice ul li:hover {
height: 26px;
line-height: 26px;
padding: 0 14px;
overflow: hidden;
border: 2px solid #ff4e00;
}
.des_choice ul li .ch_img {
width: 18px;
height: 18px;
overflow: hidden;
background: url(../images/ch.png) no-repeat center top;
position: absolute;
right: 0;
bottom: 0;
display: none;
}
.des_choice ul li.checked {
height: 26px;
line-height: 26px;
padding: 0 14px;
overflow: hidden;
border: 2px solid #ff4e00;
}
.des_choice ul li.checked .ch_img {
display: block;
}
.des_share {
height: 60px;
overflow: hidden;
margin-top: 25px;
}
.des_share .d_sh {
width: 68px;
height: 27px;
line-height: 27px;
background: url(../images/sh.png) no-repeat 12px 5px;
text-indent: 32px;
font-family: "宋体";
float: left;
border: 1px solid #FFF;
cursor: pointer;
position: relative;
}
.des_share .d_sh .d_sh_bg {
width: 176px;
height: 28px;
overflow: hidden;
border: 1px solid #eaeaea;
position: absolute;
left: 0;
top: 27px;
display: none;
}
.des_share .d_sh .d_sh_bg a {
overflow: hidden;
text-indent: 0;
float: left;
margin-left: 10px;
margin-top: 6px;
}
.des_share .d_sh:hover {
border: 1px solid #eaeaea;
}
.des_share .d_sh:hover .d_sh_bg {
display: block;
}
.des_share .d_care {
height: 27px;
line-height: 27px;
overflow: hidden;
background: url(../images/care.png) no-repeat left center;
float: left;
display: inline;
margin-left: 50px;
padding-left: 22px;
}
.des_join {
height: 45px;
overflow: hidden;
margin-top: 20px;
}
.j_nums {
width: 78px;
height: 43px;
overflow: hidden;
float: left;
display: inline;
margin-right: 10px;
border: 1px solid #cccccc;
}
.n_ipt {
width: 56px;
height: 43px;
line-height: 43px \9;
background: none;
color: #555555;
font-size: 18px;
text-align: center;
font-family: "Microsoft YaHei";
float: left;
padding: 0;
border: 0;
}
.n_btn_1 {
width: 21px;
height: 21px;
overflow: hidden;
background: url(../images/jia.gif) no-repeat center top;
float: right;
border: 0;
border-left: 1px solid #cccccc;
border-bottom: 1px solid #cccccc;
cursor: pointer;
}
.n_btn_2 {
width: 21px;
height: 21px;
overflow: hidden;
background: url(../images/jian.gif) no-repeat center top;
float: right;
border: 0;
border-left: 1px solid #cccccc;
cursor: pointer;
}
.s_brand {
width: 188px;
height: 188px;
overflow: hidden;
float: right;
border: 1px solid #eaeaea;
}
.s_brand_img {
width: 188px;
height: 132px;
overflow: hidden;
border-bottom: 1px solid #eaeaea;
}
.s_brand_c {
height: 55px;
line-height: 55px;
overflow: hidden;
background-color: #f6f6f6;
font-size: 16px;
text-align: center;
}
.des_border {
overflow: hidden;
margin-bottom: 10px;
border: 1px solid #eaeaea;
}
.des_tit {
height: 28px;
background-color: #f6f6f6;
border-bottom: 1px solid #eaeaea;
position: relative;
}
.des_tit ul {
width: 100%;
height: 29px;
position: absolute;
left: 0;
top: 0;
}
.des_tit ul li {
width: 110px;
height: 29px;
line-height: 27px;
overflow: hidden;
font-size: 14px;
text-align: center;
float: left;
}
.des_tit ul li.current {
width: 109px;
height: 27px;
overflow: hidden;
background-color: #FFF;
border-right: 1px solid #FFF;
border-top: 2px solid #ff4e00;
}
.des_t {
height: 38px;
line-height: 38px;
overflow: hidden;
background-color: #f6f6f6;
color: #ff4e00;
font-size: 14px;
text-indent: 25px;
border-bottom: 1px solid #eaeaea;
border-top: 2px solid #ff4e00;
}
.team_list {
width: 160px;
height: 195px;
overflow: hidden;
float: left;
display: inline;
margin: 25px 30px;
}
.team_list .img {
width: 160px;
height: 140px;
overflow: hidden;
}
.team_list .name {
width: 160px;
height: 25px;
line-height: 25px;
overflow: hidden;
}
.team_list .price {
height: 25px;
line-height: 25px;
overflow: hidden;
color: #999999;
text-align: center;
text-transform: uppercase;
position: relative;
}
.team_list .price font {
color: #ff4e00;
font-size: 14px;
}
.team_list .price span {
font-size: 16px;
}
.team_list .price .checkbox {
width: 25px;
height: 20px;
overflow: hidden;
text-align: left;
position: absolute;
left: 0;
top: 4px;
}
.team_icon {
width: 25px;
height: 25px;
overflow: hidden;
float: left;
display: inline;
margin: 90px 0;
}
.team_sum {
width: 145px;
height: 125px;
overflow: hidden;
color: #ff4e00;
float: left;
display: inline;
margin-left: 20px;
margin-top: 50px;
}
.team_sum span {
font-size: 18px;
}
.sum_ipt {
width: 58px;
height: 23px;
line-height: 23px \9;
background: none;
color: #555555;
font-size: 16px;
text-align: center;
font-family: "Microsoft YaHei";
padding: 0;
margin: 5px auto 10px auto;
border: 1px solid #eaeaea;
}
.des_con {
overflow: hidden;
margin: 25px;
}
table.jud_tab {
height: 128px;
overflow: hidden;
margin: 25px 20px 0 20px;
border-collapse: collapse;
border: 1px solid #eaeaea;
}
.jud_per {
color: #ff4e00;
font-size: 14px;
text-align: center;
}
.jud_per p {
margin: 0;
padding: 0;
font-size: 34px;
line-height: 36px;
}
.jud_bg {
background: url(../images/s_line.gif) no-repeat left center;
padding: 0 30px;
font-family: "宋体";
line-height: 22px;
}
table.jud_list tr td {
border-collapse: collapse;
border-bottom: 1px solid #eaeaea;
padding: 20px;
font-family: "宋体";
line-height: 22px;
}
/*begin mask layer begin*/
.black_overlay {
width: 100%;
height: 100%;
background: url(../images/box_bg.png) repeat center top;
display: none;
position: fixed;
top: 0%;
left: 0%;
z-index: 900;
}
.white_content {
width: 540px;
height: auto !important;
min-height: 100px;
height: 100px;
background: url(../images/box.png) repeat center top;
display: none;
position: fixed;
top: 30%;
left: 50%;
margin-left: -270px;
z-index: 901;
}
.white_d {
width: 520px;
overflow: hidden;
background-color: #FFF;
margin: 10px;
padding-bottom: 50px;
}
.notice_t {
width: 500px;
height: 30px;
line-height: 30px;
overflow: hidden;
font-size: 16px;
font-family: "Microsoft YaHei";
margin: 1px auto;
}
.notice_c {
width: 480px;
overflow: hidden;
margin-top: 10px;
}
.b_sure {
width: 120px;
height: 40px;
line-height: 40px;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 14px;
font-family: "Microsoft YaHei";
text-align: center;
float: left;
display: inline;
margin-right: 10px;
border: 0;
}
.b_sure:hover {
color: #FFF;
}
.b_buy {
width: 118px;
height: 38px;
line-height: 38px;
overflow: hidden;
background-color: #f6f6f6;
color: #ff4e00;
font-size: 14px;
font-family: "Microsoft YaHei";
text-align: center;
float: left;
display: inline;
margin-right: 10px;
border: 1px solid #eaeaea;
}
.b_buy:hover {
color: #ff4e00;
}
/*end mask layer end*/
/*---------------限时特卖---------------*/
.n_ban {
width: 100%;
max-width: 1920px;
min-width: 1200px;
height: 290px;
overflow: hidden;
}
.n_ban .top_slide_wrap {
width: 100%;
max-width: 1920px;
min-width: 1200px;
height: 290px;
overflow: hidden;
position: relative;
z-index: 1;
}
.n_ban .slide_box {
height: 290px;
overflow: hidden;
}
.n_ban .slide_box li {
height: 290px;
position: relative;
}
.n_ban .slide_box li a {
width: 100%;
max-width: 1920px;
min-width: 1200px;
height: 290px;
overflow: hidden;
text-indent: -9999em;
display: block;
}
/*.n_ban .slide_box img{ text-align:center; height:420px; }*/
.n_ban .slide_info {
width: 1200px;
margin: -530px auto 0;
}
.n_ban .slide_info_card {
width: 420px;
height: 0;
margin-top: 171px;
color: #fff;
position: relative;
}
.n_ban .slide_info_card a {
color: #fff;
text-decoration: none
}
.n_ban .slide_info_card .slide_info_card_bg {
width: 420px;
height: 200px;
background: #0071c6;
position: absolute;
top: 0;
left: 0;
z-index: 1;
opacity: .8;
*filter: alpha(opacity=80)
}
.n_ban .slide_info_card .slide_info_card_text {
width: 340px;
height: 140px;
padding: 30px 40px;
position: absolute;
top: 0;
left: 0;
z-index: 2
}
.n_ban .slide_info_card h2 {
font-size: 40px;
padding-bottom: 8px
}
.n_ban .slide_info_card p {
font-size: 15px;
line-height: 26px
}
.n_ban .slide_info_card p strong {
font-size: 12px;
height: 25px;
display: inline-block;
padding: 0 10px;
background: #095b99;
border-radius: 5px;
color: #fff;
margin-top: 8px
}
/* op_btns */
.n_ban .op_btns {
width: 1200px;
margin-top: -680px;
position: relative;
z-index: 3;
}
.n_ban .op_btns .op_btn {
display: block;
width: 32px;
height: 60px;
cursor: pointer;
overflow: hidden;
position: absolute;
margin-top: 80px;
}
.n_ban .op_btns .op_prev {
background: url(../images/b_left.png) no-repeat center top;
left: 0;
top: 420px;
}
.n_ban .op_btns .op_next {
background: url(../images/b_right.png) no-repeat center top;
right: 0;
top: 420px;
}
.n_ban .op_btns .op_prev span, .n_ban .op_btns .op_next span {
display: block;
width: 32px;
height: 60px;
margin: 8px 0 0 17px;
cursor: pointer;
}
.n_ban .op_btns .op_prev span {
background-position: 0 0;
}
.n_ban .op_btns .op_next span {
background-position: -73px 0;
margin-left: 20px;
}
/* bx-controls */
.n_ban .bx-wrapper .bx-controls {
margin-top: -44px;
}
.n_ban .bx-wrapper .bx-controls .bx-pager {
clear: both;
text-align: center;
position: relative;
overflow: hidden;
}
.n_ban .bx-wrapper .bx-controls .bx-pager a {
width: 15px;
height: 15px;
line-height: 15px;
display: inline-block;
overflow: hidden;
margin: 15px 5px;
background: url(../images/b.png) no-repeat center top;
}
.n_ban .bx-wrapper .bx-controls .bx-pager a:hover, .n_ban .bx-wrapper .bx-controls .bx-pager a.active {
background: url(../images/b_h.png) no-repeat center top;
}
.s_left {
width: 840px;
overflow: hidden;
float: left;
}
ul.sell_brand {
overflow: hidden;
}
ul.sell_brand li {
height: 190px;
overflow: hidden;
margin-bottom: 10px;
}
ul.sell_brand li .con {
width: 307px;
height: 188px;
overflow: hidden;
font-size: 14px;
text-align: center;
float: left;
border: 1px solid #eaeaea;
border-right: 0;
}
ul.sell_brand li .con .simg {
width: 220px;
height: 100px;
overflow: hidden;
margin-top: 10px;
}
ul.sell_brand li .con .ch_bg {
width: 220px;
height: 35px;
overflow: hidden;
margin-top: 10px;
margin-bottom: 5px;
}
ul.sell_brand li .con .ch_bg .ch_txt {
width: 158px;
height: 33px;
line-height: 33px;
overflow: hidden;
color: #ff4e00;
font-size: 14px;
text-align: center;
float: left;
border: 1px solid #e2e2e2;
}
ul.sell_brand li .con .ch_bg .ch_a {
width: 60px;
height: 35px;
line-height: 35px;
overflow: hidden;
background-color: #e2e2e2;
color: #555555;
font-size: 14px;
text-align: center;
float: left;
}
ul.sell_brand li .con .ch_bg .ch_a:hover {
color: #FFF;
background-color: #ff4e00;
}
ul.sell_brand li .img {
width: 530px;
height: 190px;
overflow: hidden;
float: right;
}
ul.p_sell {
width: 105%;
overflow: hidden;
}
ul.p_sell li {
width: 406px;
height: 168px;
overflow: hidden;
float: left;
display: inline;
margin-right: 23px;
margin-bottom: 10px;
border: 1px solid #eaeaea;
}
ul.p_sell li .img {
width: 160px;
height: 140px;
overflow: hidden;
float: left;
display: inline;
margin-left: 15px;
margin-top: 14px;
}
ul.p_sell li .name {
width: 208px;
height: 30px;
line-height: 30px;
overflow: hidden;
font-size: 16px;
font-weight: bold;
float: left;
display: inline;
margin-left: 10px;
margin-top: 14px;
}
ul.p_sell li .price {
width: 208px;
height: 42px;
line-height: 21px;
overflow: hidden;
float: left;
display: inline;
margin-left: 10px;
}
ul.p_sell li .ch_bg {
width: 170px;
height: 35px;
overflow: hidden;
float: left;
display: inline;
margin-left: 10px;
margin-top: 5px;
}
ul.p_sell li .ch_bg .ch_txt {
width: 108px;
height: 33px;
line-height: 33px;
overflow: hidden;
color: #ff4e00;
font-size: 14px;
text-align: center;
float: left;
border: 1px solid #e2e2e2;
}
ul.p_sell li .ch_bg .ch_txt font {
font-size: 18px;
}
ul.p_sell li .ch_bg .ch_a {
width: 60px;
height: 35px;
line-height: 35px;
overflow: hidden;
background-color: #e2e2e2;
color: #555555;
font-size: 14px;
text-align: center;
float: left;
}
ul.p_sell li .ch_bg .ch_a:hover {
color: #FFF;
background-color: #ff4e00;
}
ul.p_sell li .times {
width: 208px;
height: 25px;
overflow: hidden;
float: left;
display: inline;
margin-left: 10px;
margin-top: 5px;
}
.s_right {
width: 323px;
overflow: hidden;
float: right;
}
.sell_ban {
width: 300px;
height: 352px;
overflow: hidden;
padding: 10px;
margin-top: 40px;
border: 1px solid #eaeaea;
}
.sell_ban #imgPlays {
width: 300px;
height: 352px;
overflow: hidden;
margin: 0 auto;
zoom: 1;
position: relative;
}
.sell_ban #imgPlays .imgs img {
width: 300px;
}
.sell_ban #imgPlays .imgs li {
position: relative;
float: left;
width: 300px;
height: 352px;
}
.sell_ban #imgPlays .imgs {
width: 5760px;
}
.sell_ban #imgPlays .btn {
width: 112px;
height: 29px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
right: 12px;
bottom: 12px;
}
.sell_ban #imgPlays .btn a {
width: 46px;
height: 71px;
overflow: hidden;
display: block;
background: url(../images/b_left.png) no-repeat;
}
.sell_ban #imgPlays .btn a:hover {
background: url(../images/b_left.png) no-repeat;
}
.sell_ban #imgPlays .prev_s {
width: 32px;
height: 60px;
overflow: hidden;
background: url(../images/b_left.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
left: 0;
top: 145px;
}
.sell_ban #imgPlays .next_s {
width: 32px;
height: 60px;
overflow: hidden;
background: url(../images/b_right.png) no-repeat;
cursor: pointer;
text-indent: -9999px;
position: absolute;
right: 0;
top: 145px;
}
.sell_hot {
height: 403px;
overflow: hidden;
margin: 20px auto;
border: 1px solid #eaeaea;
}
.s_hot_t {
height: 43px;
line-height: 43px;
overflow: hidden;
background-color: #f6f6f6;
color: #3e3e3e;
font-size: 16px;
padding: 0 10px;
border-bottom: 1px solid #eaeaea;
}
.h_more {
height: 43px;
overflow: hidden;
background: url(../images/mores.png) no-repeat right center;
font-size: 12px;
padding-right: 22px;
}
.sell_hot ul {
width: 105%;
overflow: hidden;
}
.sell_hot ul li {
width: 160px;
height: 59px;
overflow: hidden;
float: left;
border-right: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea;
}
.sell_tel {
overflow: hidden;
background-color: #f6f6f6;
color: #888888;
line-height: 22px;
margin-bottom: 10px;
border: 1px solid #eaeaea;
}
.lim_time {
overflow: hidden;
margin-bottom: 10px;
border: 1px solid #eaeaea;
}
.lim_sh_bg {
overflow: hidden;
margin: 5px 10px;
}
.lim_sh {
height: 30px;
line-height: 30px;
background: url(../images/sh.png) no-repeat left 8px;
text-indent: 20px;
font-family: "宋体";
float: left;
display: inline;
margin-right: 30px;
}
.lim_sh_bg a {
float: left;
display: inline;
margin-right: 6px;
margin-top: 7px;
}
.lim_name {
width: 275px;
height: 45px;
line-height: 45px;
overflow: hidden;
color: #3e3e3e;
font-size: 20px;
margin-top: 20px;
}
.lim_price {
width: 238px;
height: 40px;
overflow: hidden;
margin-left: 0;
margin-top: 20px;
}
.lim_price .ch_txt {
width: 158px;
height: 38px;
line-height: 38px;
overflow: hidden;
color: #ff4e00;
font-size: 22px;
text-align: center;
float: left;
border-top: 1px solid #e2e2e2;
border-bottom: 1px solid #e2e2e2;
}
.lim_price .ch_a {
width: 80px;
height: 40px;
line-height: 40px;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 14px;
text-align: center;
float: left;
}
.lim_c {
width: 275px;
overflow: hidden;
font-family: "宋体";
color: #888888;
margin-top: 15px;
padding-bottom: 15px;
border-bottom: 1px dotted #eaeaea;
}
.lim_ipt {
width: 68px;
height: 28px;
line-height: 28px \9;
background: none;
color: #555555;
font-size: 14px;
text-align: center;
font-family: "Microsoft YaHei";
float: left;
padding: 0;
border: 1px solid #cccccc;
}
.lim_clock {
width: 250px;
overflow: hidden;
background: url(../images/clock.png) no-repeat left 2px;
padding-left: 25px;
margin-top: 15px;
}
.lim_clock span {
font-size: 18px;
line-height: 30px;
}
.r_history {
overflow: hidden;
border: 1px solid #eaeaea;
}
.r_his_t {
height: 38px;
line-height: 38px;
overflow: hidden;
background-color: #f6f6f6;
font-size: 16px;
text-align: center;
border-bottom: 1px solid #eaeaea;
}
.r_his_t a {
color: #888888;
font-size: 14px;
}
.r_history ul li {
height: 240px;
overflow: hidden;
border-bottom: 1px solid #eaeaea;
}
.r_history ul li .img {
width: 185px;
height: 162px;
overflow: hidden;
margin-top: 10px;
}
.r_history ul li .name {
height: 25px;
line-height: 25px;
overflow: hidden;
font-size: 14px;
text-align: center;
margin-top: 5px;
}
.r_history ul li .price {
height: 25px;
line-height: 25px;
overflow: hidden;
color: #999999;
text-align: center;
text-transform: uppercase;
}
.r_history ul li .price font {
color: #ff4e00;
font-size: 14px;
}
.r_history ul li .price span {
font-size: 18px;
}
/*---------------用户中心---------------*/
.m_top_bg {
width: 100%;
height: 140px;
background-color: #ff4e00;
}
.m_logo {
width: 150px;
height: 58px;
overflow: hidden;
float: left;
margin-top: 38px;
}
.m_search {
width: 392px;
height: 40px;
overflow: hidden;
background-color: #FFF;
float: left;
display: inline;
margin-left: 450px;
margin-top: 49px;
}
.m_ipt {
width: 295px;
height: 40px;
line-height: 40px \9;
overflow: hidden;
color: #555555;
font-size: 14px;
font-family: "Microsoft YaHei";
float: left;
padding: 0 10px;
border: 0;
}
.m_btn {
width: 70px;
height: 40px;
line-height: 40px \9;
background-color: #f6f6f6;
color: #555555;
font-size: 14px;
font-family: "Microsoft YaHei";
text-align: center;
float: right;
border: 0;
cursor: pointer;
}
.m_content {
width: 1210px;
overflow: hidden;
margin-top: 20px;
}
.m_left {
width: 211px;
overflow: hidden;
padding: 5px;
float: left;
}
.left_n {
height: 35px;
line-height: 35px;
overflow: hidden;
background: url(../images/m_t.png) no-repeat 31px center;
background-color: #ff4e00;
color: #FFF;
font-size: 14px;
text-indent: 68px;
margin-bottom: 10px;
}
.left_m {
overflow: hidden;
background-color: #FFF;
padding-bottom: 20px;
margin-bottom: 10px;
-webkit-box-shadow: 0 0 5px #e0e0e0;
-moz-box-shadow: 0 0 5px #e0e0e0;
box-shadow: 0 0 5px #e0e0e0;
}
.left_m_t {
height: 35px;
line-height: 35px;
overflow: hidden;
color: #3e3e3e;
font-size: 14px;
text-indent: 68px;
margin-bottom: 10px;
border-bottom: 1px solid #e2e2e2;
}
.t_bg1 {
background: url(../images/m_i_1.png) no-repeat 31px center;
}
.t_bg2 {
background: url(../images/m_i_2.png) no-repeat 31px center;
}
.t_bg3 {
background: url(../images/m_i_3.png) no-repeat 31px center;
}
.t_bg4 {
background: url(../images/m_i_4.png) no-repeat 31px center;
}
.left_m ul li {
height: 28px;
line-height: 28px;
overflow: hidden;
color: #3e3e3e;
text-indent: 68px;
}
.left_m ul li a {
color: #3e3e3e;
}
.left_m ul li a:hover, .left_m ul li a.now {
color: #ff4e00;
}
.m_right {
width: 970px;
height: auto !important;
min-height: 737px;
height: 737px;
background-color: #FFF;
float: right;
display: inline;
margin: 5px;
padding-bottom: 50px;
-webkit-box-shadow: 0 0 5px #e0e0e0;
-moz-box-shadow: 0 0 5px #e0e0e0;
box-shadow: 0 0 5px #e0e0e0;
}
.m_des {
overflow: hidden;
margin-top: 45px;
padding-bottom: 30px;
margin-bottom: 20px;
border-bottom: 1px dotted #b6b6b6;
}
.m_user {
height: 20px;
line-height: 20px;
overflow: hidden;
color: #3e3e3e;
font-size: 14px;
font-weight: bold;
}
.m_notice {
height: 35px;
line-height: 35px;
overflow: hidden;
background: url(../images/n_not.png) no-repeat left center;
padding-left: 32px;
}
.mem_t {
width: 870px;
height: 50px;
line-height: 50px;
overflow: hidden;
color: #333333;
font-size: 16px;
}
.mem_tit {
width: 930px;
height: 50px;
line-height: 50px;
overflow: hidden;
color: #333333;
font-size: 16px;
}
table.mon_tab {
background-color: #f6f6f6;
}
table.mon_tab tr td {
border-collapse: collapse;
border-bottom: 1px solid #FFF;
padding: 5px 25px;
}
table.mon_tab tr td span {
font-weight: bold;
font-family: "宋体";
color: #ff4e00;
}
table.acc_tab {
background-color: #f6f6f6;
font-family: "宋体";
}
table.acc_tab tr td {
border-collapse: collapse;
border-bottom: 1px dotted #b6b6b6;
padding: 7px 25px;
}
table.acc_tab tr td.td_l {
background-color: #f7ece8;
width: 110px;
font-family: "Microsoft YaHei";
}
table.acc_tab tr td.b_none {
border-bottom: 0;
}
table.order_tab {
border-collapse: collapse;
border: 1px solid #eaeaea;
}
table.order_tab tr td {
border-collapse: collapse;
border: 1px solid #eaeaea;
padding: 5px 10px;
}
.order_tab .jslct {
width: 188px;
height: 23px;
line-height: 23px;
display: inline-block;
*display: inline;
zoom: 1;
color: #555555;
font-size: 12px;
font-family: "Microsoft YaHei";
position: relative;
z-index: 0;
vertical-align: middle;
cursor: default;
background: url(../images/d_arrow.png) no-repeat 170px center;
background-color: #f6f6f6;
float: left;
border: 1px solid #d9d9d9;
}
.order_tab .jslct_hover {
border: 1px solid #d9d9d9;
}
.order_tab .jslct div.jslct_t {
padding: 0 25px 0 5px;
line-height: 23px;
height: 23px;
position: relative;
z-index: 2;
*display: block !important;
*display: inline;
zoom: 1;
}
.order_tab .jslct em {
font-style: normal;
margin: 0;
padding: 0;
line-height: 23px;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.order_tab .jslct dl, .order_tab .jslct dl dd {
padding: 0;
margin: 0;
list-style: none
}
.order_tab .jslct dl {
background: #f6f6f6;
position: absolute;
top: 23px;
left: -1px;
border: 1px solid #d9d9d9;
cursor: default;
line-height: 22px;
padding: 4px 4px 4px 4px;
z-index: 1;
display: none;
width: 180px;
}
.order_tab .jslct_hover dl {
border: 1px solid #d9d9d9 !important
}
.order_tab .jslct dl dd {
padding: 0px 4px 2px 4px;
*padding: 2px 4px 0 4px;
border-top: 1px dotted #ccc !important;
border-top: 1px dotted #d9d9d9;
white-space: nowrap;
background: #f6f6f6;
cursor: pointer;
*border-left: 1px solid #fff;
}
.order_tab .jslct dl dd.hover {
background: #666;
color: #fff;
}
.order_tab .jslct .jslcted {
background: #efefef;
}
.order_tab .jslct dl dd.noborder {
border: none !important
}
.btn_u {
width: 90px;
height: 25px;
line-height: 25px;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 12px;
font-family: "宋体";
text-align: center;
margin-left: 10px;
border: 0;
cursor: pointer;
}
.btn_u a {
color: #FFF;
}
.address {
width: 910px;
overflow: hidden;
margin-bottom: 30px;
padding: 10px;
border: 1px solid #eaeaea;
position: relative;
}
.a_close {
width: 16px;
height: 16px;
overflow: hidden;
position: absolute;
right: 25px;
top: 15px;
}
table.add_t tr td {
padding: 5px 10px;
}
table.add_tab {
border-collapse: collapse;
border: 1px solid #eaeaea;
}
table.add_tab tr td {
border-collapse: collapse;
border: 1px solid #eaeaea;
padding: 8px 10px;
}
.add_tab .jslct {
width: 108px;
height: 23px;
line-height: 23px;
display: inline-block;
*display: inline;
zoom: 1;
color: #555555;
font-size: 12px;
font-family: "宋体";
position: relative;
z-index: 0;
vertical-align: middle;
cursor: default;
background: url(../images/d_arrow.png) no-repeat 88px center;
background-color: #f6f6f6;
float: left;
border: 1px solid #d9d9d9;
margin-right: 10px;
}
.add_tab .jslct_hover {
border: 1px solid #d9d9d9;
}
.add_tab .jslct div.jslct_t {
padding: 0 25px 0 5px;
line-height: 23px;
height: 23px;
position: relative;
z-index: 2;
*display: block !important;
*display: inline;
zoom: 1;
}
.add_tab .jslct em {
font-style: normal;
margin: 0;
padding: 0;
line-height: 23px;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.add_tab .jslct dl, .add_tab .jslct dl dd {
padding: 0;
margin: 0;
list-style: none
}
.add_tab .jslct dl {
background: #f6f6f6;
position: absolute;
top: 23px;
left: -1px;
border: 1px solid #d9d9d9;
cursor: default;
line-height: 22px;
padding: 4px 4px 4px 4px;
z-index: 1;
display: none;
width: 100px;
}
.add_tab .jslct_hover dl {
border: 1px solid #d9d9d9 !important
}
.add_tab .jslct dl dd {
padding: 0px 4px 2px 4px;
*padding: 2px 4px 0 4px;
border-top: 1px dotted #ccc !important;
border-top: 1px dotted #d9d9d9;
white-space: nowrap;
background: #f6f6f6;
cursor: pointer;
*border-left: 1px solid #fff;
}
.add_tab .jslct dl dd.hover {
background: #666;
color: #fff;
}
.add_tab .jslct .jslcted {
background: #efefef;
}
.add_tab .jslct dl dd.noborder {
border: none !important
}
.add_ipt {
width: 176px;
height: 23px;
line-height: 23px \9;
overflow: hidden;
background-color: #f6f6f6;
color: #555555;
font-size: 12px;
font-family: "宋体";
padding: 0 10px;
border: 1px solid #d9d9d9;
}
a.add_b {
width: 90px;
height: 25px;
line-height: 25px;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 12px;
font-family: "宋体";
text-align: center;
margin-left: 10px;
border: 0;
cursor: pointer;
float: right;
margin-right: 20px;
}
.sm_img {
width: 48px;
height: 48px;
overflow: hidden;
float: left;
display: inline;
margin-right: 10px;
border: 1px solid #eaeaea;
}
.add_txt {
width: 690px;
height: 70px;
line-height: 22px \9;
overflow: hidden;
background-color: #f6f6f6;
color: #555555;
font-size: 12px;
font-family: "宋体";
padding: 10px;
border: 1px solid #d9d9d9;
}
.r_rad {
float: left;
padding-top: 1px;
margin-right: 2px;
}
.r_txt {
float: left;
line-height: 22px;
margin-right: 15px;
}
.btn_tj {
width: auto;
height: 25px;
line-height: 25px \9;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 12px;
font-family: "宋体";
text-align: center;
padding: 0 18px;
border: 0;
cursor: pointer;
}
.code_ipt {
width: 475px;
height: 23px;
line-height: 23px \9;
overflow: hidden;
color: #555555;
font-size: 12px;
font-family: "Microsoft YaHei";
padding: 0 10px;
border: 1px solid #eaeaea;
}
table.ma_tab {
border-collapse: collapse;
border: 1px solid #eaeaea;
}
table.ma_tab tr td {
border-collapse: collapse;
border: 1px solid #eaeaea;
padding: 5px 10px;
line-height: 20px;
}
.ma_a a {
color: #ff4e00;
margin: 0 10px;
}
.m_num {
height: 20px;
line-height: 20px;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 12px;
text-align: center;
margin-left: 20px;
padding: 0 20px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
}
.m_num a {
color: #FFF;
}
ul.members {
overflow: hidden;
}
ul.members li {
width: 238px;
height: 88px;
overflow: hidden;
float: left;
display: inline;
margin: 20px 40px;
border: 1px solid #e2e2e2;
}
ul.members li .nums {
width: 73px;
height: 38px;
overflow: hidden;
background: url(../images/peo.png) no-repeat center 20px;
background-color: #f6f6f6;
text-align: center;
float: left;
padding-top: 50px;
border-right: 1px solid #e2e2e2;
}
ul.members li .m_type {
width: 164px;
height: 88px;
line-height: 88px;
overflow: hidden;
color: #ff4e00;
font-size: 18px;
text-align: center;
float: left;
}
ul.members li .m_type a {
color: #ff4e00;
}
ul.members li:hover {
border: 1px solid #ff4e00;
}
ul.members li:hover .nums {
background: url(../images/peo_h.png) no-repeat center 20px;
background-color: #ff4e00;
color: #FFF;
border-right: 1px solid #ff4e00;
}
table.mem_tab {
border-collapse: collapse;
border: 1px solid #e2e2e2;
}
table.mem_tab tr td {
border-collapse: collapse;
border-right: 1px solid #e2e2e2;
border-bottom: 1px dotted #b6b6b6;
padding: 10px;
line-height: 20px;
}
.th_bg {
overflow: hidden;
background: url(../images/peo_h.png) no-repeat 15px center;
background-color: #ff4e00;
text-align: left;
color: #FFF;
font-size: 14px;
text-indent: 52px;
border-bottom: 0;
border-right: 0;
}
.td_bg {
background-color: #f7ece8;
}
.th_bg1 {
overflow: hidden;
background-color: #ff4e00;
text-align: left;
color: #FFF;
font-size: 14px;
text-indent: 42px;
border-bottom: 0;
border-right: 0;
}
table.co_tab {
border-collapse: collapse;
border: 1px solid #eaeaea;
}
table.co_tab tr td {
border-collapse: collapse;
border: 1px solid #eaeaea;
padding: 12px 50px;
line-height: 20px;
}
.tx {
width: 90px;
height: 30px;
line-height: 30px;
overflow: hidden;
background-color: #ff4e00;
color: #FFF;
font-size: 14px;
text-align: center;
float: right;
display: inline-block;
}
.tx a {
color: #FFF;
}
.tx_l {
background-color: #f6f6f6;
text-indent: 40px;
}
.tx_ipt {
width: 400px;
height: 25px;
line-height: 25px \9;
overflow: hidden;
color: #555555;
font-size: 12px;
font-family: "宋体";
margin-left: 15px;
padding: 0;
border: 0;
}
.tx_txt {
width: 710px;
height: 130px;
line-height: 20px;
overflow: hidden;
color: #555555;
font-size: 12px;
font-family: "宋体";
margin-left: 15px;
margin-bottom: 10px;
padding: 0;
border: 0;
}
/*---------------购物车---------------*/
table.car_tab {
border-collapse: collapse;
border: 1px solid #eaeaea;
font-family: "宋体";
}
table.car_tab tr td {
border-collapse: collapse;
line-height: 22px;
border: 0;
border-bottom: 1px solid #eaeaea;
padding: 15px 20px;
}
table.car_tab tr td.car_th {
background-color: #f6f6f6;
font-size: 14px;
border-right: 1px solid #eaeaea;
padding: 8px 20px;
font-family: "Microsoft YaHei";
text-align: center;
}
.car_tr {
background-color: #f6f6f6;
}
.c_s_img {
width: 73px;
height: 73px;
overflow: hidden;
float: left;
display: inline;
margin-right: 10px;
border: 1px solid #eaeaea;
}
.c_num {
width: 84px;
height: 21px;
overflow: hidden;
border: 1px solid #cccccc;
}
.car_ipt {
width: 42px;
height: 21px;
line-height: 21px \9;
background-color: #FFF;
color: #555555;
font-size: 14px;
text-align: center;
font-family: "Microsoft YaHei";
float: left;
padding: 0;
border: 0;
}
.car_btn_1 {
width: 21px;
height: 21px;
overflow: hidden;
background: url(../images/jian.gif) no-repeat center top;
float: left;
border: 0;
border-right: 1px solid #cccccc;
cursor: pointer;
}
.car_btn_2 {
width: 21px;
height: 21px;
overflow: hidden;
background: url(../images/jia.gif) no-repeat center top;
float: left;
border: 0;
border-left: 1px solid #cccccc;
cursor: pointer;
}
.car_btn_bg {
background-color: #f0f0f0;
}
.two_bg {
overflow: hidden;
padding-bottom: 50px;
margin-bottom: 50px;
border: 1px solid #eaeaea;
}
.two_t {
width: 1110px;
height: 35px;
line-height: 35px;
overflow: hidden;
color: #3e3e3e;
font-size: 16px;
margin-top: 15px;
}
.two_t span {
font-size: 12px;
font-family: "宋体";
color: #ff4e00;
}
.two_t span a {
color: #ff4e00;
}
table.peo_tab {
border-collapse: collapse;
border: 1px solid #eaeaea;
font-family: "宋体";
font-size: 14px;
}
table.peo_tab tr td {
border-collapse: collapse;
border: 1px solid #eaeaea;
padding: 10px 20px;
}
table.peo_tab tr td.p_td {
background-color: #f6f6f6;
font-size: 14px;
font-family: "Microsoft YaHei";
text-align: right;
padding-right: 40px;
padding-left: 0;
}
ul.pay {
width: 1110px;
overflow: hidden;
margin: 0 auto;
}
ul.pay li {
height: 38px;
line-height: 38px;
overflow: hidden;
font-size: 14px;
text-align: center;
font-family: "Microsoft YaHei";
float: left;
display: inline;
margin-right: 10px;
margin-top: 4px;
margin-bottom: 2px;
padding: 0 25px;
border: 1px solid #cccccc;
cursor: pointer;
position: relative;
}
ul.pay li:hover {
height: 36px;
line-height: 36px;
padding: 0 24px;
overflow: hidden;
border: 2px solid #ff4e00;
}
ul.pay li .ch_img {
width: 18px;
height: 18px;
overflow: hidden;
background: url(../images/ch.png) no-repeat center top;
position: absolute;
right: 0;
bottom: 0;
display: none;
}
ul.pay li.checked {
height: 36px;
line-height: 36px;
padding: 0 24px;
overflow: hidden;
border: 2px solid #ff4e00;
}
ul.pay li.checked .ch_img {
display: block;
}
.warning {
overflow: hidden;
padding: 20px 0 50px 0;
margin-bottom: 50px;
border: 1px solid #ff4e00;
}
.backs {
width: 118px;
height: 28px;
line-height: 28px;
overflow: hidden;
font-size: 14px;
color: #555555;
font-weight: bold;
text-align: center;
margin-top: 15px;
border: 1px solid #cccccc;
}
.backs a {
color: #555555;
}
/*---------------Footer---------------*/
.b_btm_bg {
width: 100%;
min-width: 1200px;
height: 122px;
overflow: hidden;
margin-top: 30px;
}
.b_btm_c {
background-color: #FFF;
}
.b_btm {
width: 1200px;
height: 122px;
overflow: hidden;
}
.b_btm table {
color: #888888;
font-size: 14px;
}
.b_btm table h2 {
color: #3e3e3e;
font-size: 16px;
font-weight: normal;
}
.b_nav {
width: 1200px;
overflow: hidden;
margin: 20px auto;
}
.b_nav dl {
width: 125px;
height: 165px;
overflow: hidden;
float: left;
display: inline;
margin-right: 50px;
}
.b_nav dl dt {
height: 30px;
line-height: 30px;
overflow: hidden;
color: #3e3e3e;
font-size: 16px;
margin-bottom: 10px;
}
.b_nav dl dt a {
color: #3e3e3e;
}
.b_nav dl dt a:hover {
color: #3e3e3e;
text-decoration: underline;
}
.b_nav dl dd {
height: 24px;
line-height: 24px;
overflow: hidden;
color: #888888;
}
.b_nav dl dd a {
color: #888888;
}
.b_nav dl dd a:hover {
color: #ff4e00;
}
.b_er {
width: 120px;
height: 160px;
overflow: hidden;
text-align: center;
float: right;
display: inline;
margin-right: 22px;
margin-top: 5px;
}
.b_er_c {
width: 118px;
height: 118px;
overflow: hidden;
margin-bottom: 10px;
border: 1px solid #e9e9e9;
}
.b_tel_bg {
width: 133px;
height: 140px;
overflow: hidden;
color: #888888;
float: right;
margin-top: 5px;
}
.b_tel_bg a.b_sh1 {
width: 100%;
height: 35px;
line-height: 35px;
overflow: hidden;
background: url(../images/b_sh_1.png) no-repeat left center;
color: #888888;
font-size: 14px;
text-indent: 32px;
display: inline-block;
}
.b_tel_bg a.b_sh1:hover {
color: #ff4e00;
}
.b_tel_bg a.b_sh2 {
width: 100%;
height: 35px;
line-height: 35px;
overflow: hidden;
background: url(../images/b_sh_2.png) no-repeat left center;
color: #888888;
font-size: 14px;
text-indent: 32px;
display: inline-block;
}
.b_tel_bg a.b_sh2:hover {
color: #ff4e00;
}
.b_tel_bg p {
margin-top: 10px;
}
.b_tel_bg p span {
color: #ff4e00;
font-size: 18px;
}
.btmbg {
width: 100%;
min-width: 1200px;
overflow: hidden;
padding: 30px 0 40px 0;
border-top: 1px solid #eaeaea;
}
.btm {
width: 1200px;
overflow: hidden;
color: #999999;
font-family: "宋体";
text-align: center;
}
.btm a {
color: #999999;
}
.btm a:hover {
color: #999999;
text-decoration: underline;
}
.btm img {
display: inline-block;
margin: 15px 5px 5px 5px;
border: 1px solid #d9d9d9;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
} | 0.415136 | 0.097734 |
@media (min-width: 992px) {
.header .mega-menu-list .mega-menu-title {
padding-left: 20px;
}
}
/*--------------------------------------------------
[Header Transparent]
----------------------------------------------------*/
/* Media Queries above 992px */
@media (min-width: 992px) {
.header-transparent .mega-menu-list .mega-menu-title {
padding-left: 20px;
}
}
/*--------------------------------------------------
[Header Fullscreen]
----------------------------------------------------*/
.header-fullscreen .header-fullscreen-nav-actions-right .nav-item-child {
color: #fff;
line-height: 20px;
padding: 7px 15px;
background: #00bcd4;
text-decoration: none;
}
.header-fullscreen .header-fullscreen-nav-actions-left {
padding: 32px 0;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger {
position: relative;
float: right;
display: inline-block;
width: 30px;
height: 30px;
text-align: center;
text-decoration: none;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon {
position: relative;
top: 3px;
width: 20px;
height: 1px;
display: inline-block;
background: #fff;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:before, .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:after {
position: absolute;
left: 0;
width: 20px;
height: 1px;
background: #fff;
content: " ";
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:before {
bottom: -6px;
-webkit-transform: rotate(0);
-moz-transform: rotate(0);
transform: rotate(0);
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:after {
top: -6px;
-webkit-transform: rotate(0);
-moz-transform: rotate(0);
transform: rotate(0);
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon {
background: #00bcd4;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon:before, .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon:after {
background: #00bcd4;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
/* Media Queries below 991px */
@media (max-width: 991px) {
/* Nav Trigger */
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon {
background: #34343c;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:before, .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:after {
background: #34343c;
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon {
background: #00bcd4;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon:before, .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon:after {
background: #00bcd4;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
}
/* Media Queries above 992px */
@media (min-width: 992px) {
.header-shrink .header-fullscreen .header-fullscreen-nav-actions-left {
padding: 25px 0;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-shrink .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger {
height: 30px;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-shrink .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon {
top: -1px;
background: #34343c;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-shrink .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:before, .header-shrink .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:after {
background: #34343c;
}
.header-shrink .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon {
background: #00bcd4;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-shrink .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon:before, .header-shrink .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon:after {
background: #00bcd4;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-shrink .header-fullscreen .header-fullscreen-nav-actions-right {
padding: 30px 0;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
}
/*--------------------------------------------------
[Theme Carousel Control v1]
----------------------------------------------------*/
.theme-carousel-control-v1.left .carousel-control-arrows-v1 {
right: -45px;
}
.theme-carousel-control-v1.right .carousel-control-arrows-v1 {
left: -45px;
}
/* Media Queries above 992px */
@media (min-width: 992px) {
.theme-ci-v1 {
margin-left: -50%;
}
}
/*--------------------------------------------------
[Bootstrap Components]
----------------------------------------------------*/
.list-inline,
.list-unstyled {
padding-right: 0;
}
/*--------------------------------------------------
[News v1]
----------------------------------------------------*/
.news-v1 .news-v1-quote:before {
content: "”";
}
/*--------------------------------------------------
[Newsletter v2]
----------------------------------------------------*/
.newsletter-v2 .newsletter-v2-title:before {
content: "”";
}
/*--------------------------------------------------
[Interactive Banner v1]
----------------------------------------------------*/
.i-banner-v1 .i-banner-v1-quote:before {
content: "”";
}
/*--------------------------------------------------
[Testimonials v3]
----------------------------------------------------*/
.testimonials-v3 .testimonials-v3-subtitle:before {
content: "”";
}
/*--------------------------------------------------
[Testimonials v7]
----------------------------------------------------*/
.testimonials-v7 .testimonials-v7-title:before {
content: "”";
}
/*------------------------------------------------------------------
[Footer]
------------------------------------------------------------------*/
.footer .footer-testimonials .footer-testimonials-quote:before {
content: "”";
margin-right: 1px;
}
.footer .footer-copyright-item-toggle-trigger .footer-toggle-trigger-style:after {
margin-left: 10px;
margin-right: 0;
}
/*------------------------------------------------------------------
[Image Comparison]
------------------------------------------------------------------*/
.image-comparison-container .image-comparison-handle:before {
content: "\f0da";
}
.image-comparison-container .image-comparison-handle:after {
content: "\f0d9";
}
/*--------------------------------------------------
[Tab v4]
----------------------------------------------------*/
.tab-v4 .nav-tabs.nav-tabs-left > li {
float: none;
}
/*--------------------------------------------------
[Theme Portfolio]
----------------------------------------------------*/
.theme-portfolio.theme-portfolio-nav-v2 .cbp-nav-controls .cbp-nav-next {
left: auto;
right: 0;
}
.theme-portfolio.theme-portfolio-nav-v2 .cbp-nav-controls .cbp-nav-prev {
left: 0;
right: auto;
}
/*------------------------------------------------------------------
[Login]
------------------------------------------------------------------*/
.login .login-form-forgot {
float: right;
}
/*------------------------------------------------------------------
[Paginations v1]
------------------------------------------------------------------*/
.paginations-v1-list > li.previous {
left: 0;
right: auto;
}
.paginations-v1-list > li.next {
left: auto;
right: 0;
}
/*------------------------------------------------------------------
[Tab v6]
------------------------------------------------------------------*/
.tab-v6 .nav-tabs.nav-tabs-right {
float: none;
}
/*------------------------------------------------------------------
[Tab v5]
------------------------------------------------------------------*/
.tab-v5 .nav-tabs.nav-tabs-left {
float: none;
} | static/assets/css-rtl/global-custom-rtl.css | @media (min-width: 992px) {
.header .mega-menu-list .mega-menu-title {
padding-left: 20px;
}
}
/*--------------------------------------------------
[Header Transparent]
----------------------------------------------------*/
/* Media Queries above 992px */
@media (min-width: 992px) {
.header-transparent .mega-menu-list .mega-menu-title {
padding-left: 20px;
}
}
/*--------------------------------------------------
[Header Fullscreen]
----------------------------------------------------*/
.header-fullscreen .header-fullscreen-nav-actions-right .nav-item-child {
color: #fff;
line-height: 20px;
padding: 7px 15px;
background: #00bcd4;
text-decoration: none;
}
.header-fullscreen .header-fullscreen-nav-actions-left {
padding: 32px 0;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger {
position: relative;
float: right;
display: inline-block;
width: 30px;
height: 30px;
text-align: center;
text-decoration: none;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon {
position: relative;
top: 3px;
width: 20px;
height: 1px;
display: inline-block;
background: #fff;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:before, .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:after {
position: absolute;
left: 0;
width: 20px;
height: 1px;
background: #fff;
content: " ";
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:before {
bottom: -6px;
-webkit-transform: rotate(0);
-moz-transform: rotate(0);
transform: rotate(0);
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:after {
top: -6px;
-webkit-transform: rotate(0);
-moz-transform: rotate(0);
transform: rotate(0);
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon {
background: #00bcd4;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon:before, .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon:after {
background: #00bcd4;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
/* Media Queries below 991px */
@media (max-width: 991px) {
/* Nav Trigger */
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon {
background: #34343c;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:before, .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:after {
background: #34343c;
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon {
background: #00bcd4;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon:before, .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon:after {
background: #00bcd4;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
}
/* Media Queries above 992px */
@media (min-width: 992px) {
.header-shrink .header-fullscreen .header-fullscreen-nav-actions-left {
padding: 25px 0;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-shrink .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger {
height: 30px;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-shrink .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon {
top: -1px;
background: #34343c;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-shrink .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:before, .header-shrink .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger .header-fullscreen-nav-trigger-icon:after {
background: #34343c;
}
.header-shrink .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon {
background: #00bcd4;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-shrink .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon:before, .header-shrink .header-fullscreen .header-fullscreen-nav-actions-left .header-fullscreen-nav-trigger:hover .header-fullscreen-nav-trigger-icon:after {
background: #00bcd4;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header-shrink .header-fullscreen .header-fullscreen-nav-actions-right {
padding: 30px 0;
transition-duration: 300ms;
transition-property: all;
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
}
/*--------------------------------------------------
[Theme Carousel Control v1]
----------------------------------------------------*/
.theme-carousel-control-v1.left .carousel-control-arrows-v1 {
right: -45px;
}
.theme-carousel-control-v1.right .carousel-control-arrows-v1 {
left: -45px;
}
/* Media Queries above 992px */
@media (min-width: 992px) {
.theme-ci-v1 {
margin-left: -50%;
}
}
/*--------------------------------------------------
[Bootstrap Components]
----------------------------------------------------*/
.list-inline,
.list-unstyled {
padding-right: 0;
}
/*--------------------------------------------------
[News v1]
----------------------------------------------------*/
.news-v1 .news-v1-quote:before {
content: "”";
}
/*--------------------------------------------------
[Newsletter v2]
----------------------------------------------------*/
.newsletter-v2 .newsletter-v2-title:before {
content: "”";
}
/*--------------------------------------------------
[Interactive Banner v1]
----------------------------------------------------*/
.i-banner-v1 .i-banner-v1-quote:before {
content: "”";
}
/*--------------------------------------------------
[Testimonials v3]
----------------------------------------------------*/
.testimonials-v3 .testimonials-v3-subtitle:before {
content: "”";
}
/*--------------------------------------------------
[Testimonials v7]
----------------------------------------------------*/
.testimonials-v7 .testimonials-v7-title:before {
content: "”";
}
/*------------------------------------------------------------------
[Footer]
------------------------------------------------------------------*/
.footer .footer-testimonials .footer-testimonials-quote:before {
content: "”";
margin-right: 1px;
}
.footer .footer-copyright-item-toggle-trigger .footer-toggle-trigger-style:after {
margin-left: 10px;
margin-right: 0;
}
/*------------------------------------------------------------------
[Image Comparison]
------------------------------------------------------------------*/
.image-comparison-container .image-comparison-handle:before {
content: "\f0da";
}
.image-comparison-container .image-comparison-handle:after {
content: "\f0d9";
}
/*--------------------------------------------------
[Tab v4]
----------------------------------------------------*/
.tab-v4 .nav-tabs.nav-tabs-left > li {
float: none;
}
/*--------------------------------------------------
[Theme Portfolio]
----------------------------------------------------*/
.theme-portfolio.theme-portfolio-nav-v2 .cbp-nav-controls .cbp-nav-next {
left: auto;
right: 0;
}
.theme-portfolio.theme-portfolio-nav-v2 .cbp-nav-controls .cbp-nav-prev {
left: 0;
right: auto;
}
/*------------------------------------------------------------------
[Login]
------------------------------------------------------------------*/
.login .login-form-forgot {
float: right;
}
/*------------------------------------------------------------------
[Paginations v1]
------------------------------------------------------------------*/
.paginations-v1-list > li.previous {
left: 0;
right: auto;
}
.paginations-v1-list > li.next {
left: auto;
right: 0;
}
/*------------------------------------------------------------------
[Tab v6]
------------------------------------------------------------------*/
.tab-v6 .nav-tabs.nav-tabs-right {
float: none;
}
/*------------------------------------------------------------------
[Tab v5]
------------------------------------------------------------------*/
.tab-v5 .nav-tabs.nav-tabs-left {
float: none;
} | 0.302185 | 0.036459 |
@media screen and (min-width: 1200px){
body, td, th, tr, a {
font-family:Century Gothic, Lucida Console, Arial, sans-serif;
font-size: 18px
}
p,li{
font-size: 18px;
}
.a-append{
font-size: 14px;
color:#75bfe7;
}
.p-center {
margin-top: 20px;
text-align: center;
margin-bottom: 20px;
}
.p-bold{
font-weight: bold;
}
.p-append{
font-size: 14px;
color:#8d9092;
}
.p-small{
font-size: 16px;
}
.p-gray{
font-size: 16px;
color:#8d9092;
margin-top: 10px;
margin-left: 50px;
margin-right: 50px;
margin-bottom: 10px;
}
table {
border: 0;
border-style: solid;
border-color: #8d9092;
border-width: 2px;
margin:auto;
border-spacing: 0;
border-collapse: collapse;
}
#main-table {
width: 500px
}
.sub-table {
margin-right: 200px;
}
name {
font-family:Century Gothic, Lucida Console, Arial, sans-serif;
font-size: 40px;
font-weight: bold;
color:#0098fd;
}
#my-image{
text-align: center;
border-radius: 50px;
width: 300px;
height: 400px;
}
#my-image2{
border-style:hidden;
}
heading {
font-family:Century Gothic, Lucida Console, Arial, sans-serif;
font-size: 26px;
}
.sidebar {
position: fixed;
top: 4%;
bottom: 4%;
left: 15%;
width: 30%;
background-color: #fff;
overflow-y: auto;
}
.content {
position: fixed;
top: 4%;
margin-right: 15%;
bottom: 4%;
left: 45%;
overflow-y: auto;
background-color: #fff;
}
.align-right {
float: right;
text-align: right;
}
.li-small{
font-size: 16px;
}
.emphasis {
color: #26da16fd;
}
* {box-sizing:border-box}
.mySlides {display:none}
/* 幻灯片容器 */
.slideshow-container {
max-width: 40%;
max-height: 40%;
position: relative;
margin: auto;
}
/* 下一张 & 上一张 按钮 */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
}
/* 定位 "下一张" 按钮靠右 */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}
/* 标题文本 */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}
/* 数字文本 (1/3 等) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* 标记符号 */
.dot {
cursor:pointer;
height: 13px;
width: 13px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .dot:hover {
background-color: #717171;
}
/* 淡出动画 */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
}
@media screen and (max-width: 1200px){
body, td, th, tr, a {
font-family:Century Gothic, Lucida Console, Arial, sans-serif;
font-size: 18px
}
p,li{
font-size: 18px;
}
.a-append{
font-size: 14px;
color:#75bfe7;
}
.p-center {
margin-top: 20px;
text-align: center;
margin-bottom: 20px;
}
.p-bold{
font-weight: bold;
}
.p-append{
font-size: 14px;
color:#8d9092;
}
.p-small{
font-size: 16px;
}
.p-gray{
font-size: 16px;
color:#8d9092;
margin-top: 10px;
margin-left: 50px;
margin-right: 50px;
margin-bottom: 10px;
}
name {
font-family:Century Gothic, Lucida Console, Arial, sans-serif;
font-size: 40px;
font-weight: bold;
color:#0098fd;
}
#my-image{
margin-top: 5%;
margin-left: 5%;
margin-right: 5%;
margin-bottom: 1%;
border-radius: 50%;
width: 90%;
height: 100%;
}
#my-image2{
max-width: 60%;
max-height: 40%;
}
heading {
font-family:Century Gothic, Lucida Console, Arial, sans-serif;
font-size: 26px;
}
.sidebar {
position:relative;
top: 1%;
bottom: 1%;
width: 100%;
background-color: #fff;
}
.content {
position:relative;
top: 1%;
bottom: 1%;
width: 100%;
background-color: #fff;
overflow-y: auto;
}
.align-right {
float: right;
text-align: right;
}
.li-small{
font-size: 16px;
}
.emphasis {
color: #26da16fd;
}
* {box-sizing:border-box}
.mySlides {display:none}
.slideshow-container {
max-width: 40%;
max-height: 40%;
position: relative;
margin: auto;
}
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
}
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}
.text {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
.dot {
cursor:pointer;
height: 13px;
width: 13px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .dot:hover {
background-color: #717171;
}
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
} | style.css | @media screen and (min-width: 1200px){
body, td, th, tr, a {
font-family:Century Gothic, Lucida Console, Arial, sans-serif;
font-size: 18px
}
p,li{
font-size: 18px;
}
.a-append{
font-size: 14px;
color:#75bfe7;
}
.p-center {
margin-top: 20px;
text-align: center;
margin-bottom: 20px;
}
.p-bold{
font-weight: bold;
}
.p-append{
font-size: 14px;
color:#8d9092;
}
.p-small{
font-size: 16px;
}
.p-gray{
font-size: 16px;
color:#8d9092;
margin-top: 10px;
margin-left: 50px;
margin-right: 50px;
margin-bottom: 10px;
}
table {
border: 0;
border-style: solid;
border-color: #8d9092;
border-width: 2px;
margin:auto;
border-spacing: 0;
border-collapse: collapse;
}
#main-table {
width: 500px
}
.sub-table {
margin-right: 200px;
}
name {
font-family:Century Gothic, Lucida Console, Arial, sans-serif;
font-size: 40px;
font-weight: bold;
color:#0098fd;
}
#my-image{
text-align: center;
border-radius: 50px;
width: 300px;
height: 400px;
}
#my-image2{
border-style:hidden;
}
heading {
font-family:Century Gothic, Lucida Console, Arial, sans-serif;
font-size: 26px;
}
.sidebar {
position: fixed;
top: 4%;
bottom: 4%;
left: 15%;
width: 30%;
background-color: #fff;
overflow-y: auto;
}
.content {
position: fixed;
top: 4%;
margin-right: 15%;
bottom: 4%;
left: 45%;
overflow-y: auto;
background-color: #fff;
}
.align-right {
float: right;
text-align: right;
}
.li-small{
font-size: 16px;
}
.emphasis {
color: #26da16fd;
}
* {box-sizing:border-box}
.mySlides {display:none}
/* 幻灯片容器 */
.slideshow-container {
max-width: 40%;
max-height: 40%;
position: relative;
margin: auto;
}
/* 下一张 & 上一张 按钮 */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
}
/* 定位 "下一张" 按钮靠右 */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}
/* 标题文本 */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}
/* 数字文本 (1/3 等) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* 标记符号 */
.dot {
cursor:pointer;
height: 13px;
width: 13px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .dot:hover {
background-color: #717171;
}
/* 淡出动画 */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
}
@media screen and (max-width: 1200px){
body, td, th, tr, a {
font-family:Century Gothic, Lucida Console, Arial, sans-serif;
font-size: 18px
}
p,li{
font-size: 18px;
}
.a-append{
font-size: 14px;
color:#75bfe7;
}
.p-center {
margin-top: 20px;
text-align: center;
margin-bottom: 20px;
}
.p-bold{
font-weight: bold;
}
.p-append{
font-size: 14px;
color:#8d9092;
}
.p-small{
font-size: 16px;
}
.p-gray{
font-size: 16px;
color:#8d9092;
margin-top: 10px;
margin-left: 50px;
margin-right: 50px;
margin-bottom: 10px;
}
name {
font-family:Century Gothic, Lucida Console, Arial, sans-serif;
font-size: 40px;
font-weight: bold;
color:#0098fd;
}
#my-image{
margin-top: 5%;
margin-left: 5%;
margin-right: 5%;
margin-bottom: 1%;
border-radius: 50%;
width: 90%;
height: 100%;
}
#my-image2{
max-width: 60%;
max-height: 40%;
}
heading {
font-family:Century Gothic, Lucida Console, Arial, sans-serif;
font-size: 26px;
}
.sidebar {
position:relative;
top: 1%;
bottom: 1%;
width: 100%;
background-color: #fff;
}
.content {
position:relative;
top: 1%;
bottom: 1%;
width: 100%;
background-color: #fff;
overflow-y: auto;
}
.align-right {
float: right;
text-align: right;
}
.li-small{
font-size: 16px;
}
.emphasis {
color: #26da16fd;
}
* {box-sizing:border-box}
.mySlides {display:none}
.slideshow-container {
max-width: 40%;
max-height: 40%;
position: relative;
margin: auto;
}
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
}
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}
.text {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
.dot {
cursor:pointer;
height: 13px;
width: 13px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .dot:hover {
background-color: #717171;
}
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
} | 0.186169 | 0.054752 |
* {
margin:0; padding: 0;
font:1em 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Sans-Serif;
}
/* ---------------------------------
- GENERIC GUFF (APPLIES SITE WIDE) -
--------------------------------- */
body {
font-size:0.625em;
_font-size:10px;
text-align:center;
background: url( images/bg_body.gif ) repeat-x top #eef;
}
h1, h2, h3, h4, h5, h6 {
font-size:1.7em;
font-weight:normal;
}
h2 {
clear: both;
}
a {
color:#333;
text-decoration:none;
border-bottom:1px dotted #99c;
}
a:hover {
border:none;
color:#68f;
}
a img {
border:none;
}
strong, b {
font-weight:bold;
}
em, i {
font-style:italic;
}
.skipnav {
position:absolute;
top:-999px; left:-999px;
}
.i_left {
float:left;
margin:0 8px 8px 0;
padding:4px;
border:1px solid #eef;
}
.i_right {
float:right;
margin:0 0 8px 8px;
padding:4px;
border:1px solid #eef;
}
table, tr, td, th {
margin:auto; padding:auto; border:auto;
}
td, th {
padding:8px;
vertical-align:top;
}
th {
font-weight:bold;
background:#eef;
}
td {
border:1px solid #dde;
}
.recentcommentsavatar td {
border:none;
}
code, pre {
font-family:monospace;
font-size:1.3em;
display:block;
padding:10px;
background:#eef;
}
.wp-smiley {
vertical-align:-30%;
}
/* ------
- FORMS -
------ */
input, textarea {
padding:2px;
border-width:1px;
}
input:focus, textarea:focus, .passwordPost label input:focus {
background:#ffc;
}
#sidebar input, #sidebar textarea {
width:110px;
}
.button, .passwordPost input {
background:#024;
border-color:#357 #002 #002 #357;
color:#fff;
padding:0; margin:0;
}
.passwordPost label input {
background:#fff;
border:1px solid #99c;
border-color:#99c #eef #eef #99c;
padding:2px;
}
input:hover, textarea:hover {
background:#ffc;
cursor:text;
}
.button:hover, .passwordPost input:hover {
background:#246;
cursor:pointer;
}
.passwordPost label input:hover {
background:#ffc;
cursor:text;
}
label:hover {
cursor:pointer;
color:#68f;
}
/* -------------
- PAGE LAYOUT -
------------- */
#wrapper {
width:730px;
margin:10px auto;
padding:0;
overflow:hidden;
background:url(images/bg_1.jpg) no-repeat #fff;
border:5px solid #dde;
text-align:left;
}
.hid_1 #header { background:url(images/bg_1.jpg) no-repeat #fff; }
.hid_2 #header { background:url(images/bg_2.jpg) no-repeat #fff; }
.hid_3 #header { background:url(images/bg_3.jpg) no-repeat #fff; }
.hid_4 #header { background:url(images/bg_4.jpg) no-repeat #fff; }
.hid_5 #header { background:url(images/bg_5.jpg) no-repeat #fff; }
.hid_6 #header { background:url(images/bg_6.jpg) no-repeat #fff; }
.hid_7 #header { background:url(images/bg_7.jpg) no-repeat #fff; }
.hid_8 #header { background:url(images/bg_8.jpg) no-repeat #fff; }
.hid_9 #header { background:url(images/bg_9.jpg) no-repeat #fff; }
/* -------
- HEADER -
------- */
#header {
display:block;
height:140px;
color:#fff;
position:relative;
margin:0px auto 0 auto;
text-align:right;
border-bottom:5px solid #fc0;
}
#header h1 {
font-size:2.2em;
margin:0; padding:45px 95px 0 0;
}
#header p {
padding:0 95px 0 0;
}
/* -----------
- NAVIGATION -
----------- */
ul#nav {
position:absolute;
bottom:0; left:0;
margin:0 0 0 16px;
list-style-type:none;
}
ul#nav li {
list-style-type:none;
float:left;
margin:0 0.5em 0 0;
}
ul#nav li a {
padding:10px 14px;
border:none;
text-transform:lowercase;
color:#fff;
background:#024;
border:1px solid #fff;
border-bottom:none;
border-color:#357 #002 #002 #357;
display:block;
white-space:nowrap;
_width:1em;
}
ul#nav li a:hover {
background:#246;
text-decoration:none;
}
ul#nav .current_page_item a,
ul#nav .current_page_item a:hover {
color:#335;
background:#fc0;
text-decoration:none;
border-color:#ff3 #da0 #da0 #ff3;
}
/* -------------
- MAIN CONTENT -
------------- */
#content {
width:460px;
float:left;
font-size:1.2em;
overflow:hidden;
border-left:12px solid #fff;
border-bottom:20px solid #fff
}
.sticky {
background: #f7f7f7;
padding: 0 10px 10px 10px;
}
.sticky h2 {
padding-top: 10px;
}
.leftAlign #content {
float:right;
border-right:12px solid #fff;
border-bottom:20px solid #fff
}
#content p, #content li {
color:#666;
}
#content p {
margin:12px 0;
line-height:1.5em;
}
#content h2 {
font-size:1.6em;
margin:24px 0 4px 0;
}
#content h2 em {
font-size:0.7em;
margin:0 0 0 1em;
color:#99c;
font-style:normal;
}
#content h2 a {
color:#333;
border:none;
}
#content h2 a:hover {
color:#68f;
}
#content h3 {
font-size:1.4em;
color:#aaa;
}
#content h4, #content h5, #content h6 {
font-size:1.2em;
}
#content h3 a {
color:#aaa;
}
#content ol, #content ul, #content dl {
padding:0 0 0 40px;
margin:12px 0;
}
#content dl.gallery-item {
padding: 0;
margin: 0;
}
#content dt {
font-weight:bold;
}
#content blockquote {
margin:20px;
padding:1px 10px 1px 70px;
background:#eef url( images/bg_blockquote.gif ) top left no-repeat;
}
#content .info {
color:#99c;
font-size:1em;
border-top:1px dotted #99c;
font-style:normal;
display:block;
padding:4px 0;
}
#content .info a {
color:#99c;
}
#content pre {
background:#eef;
padding:20px;
}
.widgets {
clear:both;
background:#eef;
padding:8px 4px !important;
list-style-type:none;
overflow:hidden;
border-left: 4px solid #fc0;
margin:0 0 4px 0 !important;
_height:1%;
border:none;
background:none;
margin:0 !important;
padding:4px 0 !important;
}
.widgets a {
color:#99c;
border:none;
}
.widgets .read {
padding-left:16px;
background: url( images/post_read.gif ) no-repeat left center;
}
.widgets .comments {
padding-left:16px;
background: url( images/post_comment.gif ) no-repeat left center;
}
.widgets a:hover {
color:#68f;
}
.widgets li {
float:left;
padding:2px 8px;
color:#eef;
border-right:1px dotted #99c;
}
#post_information {
clear:both;
margin:0 !important;
display:block;
padding:4px !important;
background:#eef;
overflow:hidden;
color:#99c;
border-bottom:4px solid #fff;
_height:1%;
}
#post_information a {
color:#99c;
}
#post_information li {
display:inline;
float:left;
padding:0 4px;
}
#comments {
clear:both;
background:#eef;
padding:15px;
}
#comments h2 {
margin:0;
}
#comments dl {
margin:0; padding:0;
}
#comments dt {
padding:8px 0 0 0;
font-size:1.2em;
border-top:1px dotted #99c;
color:#333;
}
#comments dt .avatar {
float: right;
padding: 2px;
border: 1px dotted #99c;
}
#comments dt.highlighted {
padding:8px;
background:#fc0;
border:4px solid #fff;
}
#comments dd.highlighted {
background:#fff;
padding:2px 8px;
}
#comments h3, #postComment h3 {
padding:0; margin:0 0 15px 0;
}
#comments dd.depth-2, #comments dt.depth-2 {
margin-left:16px;
}
#comments dd.depth-3, #comments dt.depth-3 {
margin-left:32px;
}
#comments dd.depth-4, #comments dt.depth-4 {
margin-left:48px;
}
#comments dd.depth-5, #comments dt.depth-5 {
margin-left:64px;
}
#comments dd.depth-6, #comments dt.depth-6 {
margin-left:72px;
}
#postComment {
background:#ddd;
padding:15px;
}
#postComment label {
width:120px;
display:block;
float:left;
clear:both;
margin:5px 0 0 0;
}
form#postComment p label, form#postComment p input { display: inline; clear: none; float: none;}
#postComment input, #postComment textarea {
margin:5px 0 0 0;
width:99%;
}
#postComment textarea {
height:160px;
}
#postComment .button {
padding:5px;
clear:both;
width:100px;
margin:10px 0 0 0;
}
/* --------
- SIDEBAR -
-------- */
#sidebar {
width:230px;
float:right;
color:#99f;
line-height:1.5em;
margin:0 0 16px 0;
overflow:hidden;
border-right:12px solid #fff;
}
.leftAlign #sidebar {
border-left:12px solid #fff;
border-right:none;
float:left;
}
#sidebar h2 {
clear:both;
padding:16px 0 4px 0;
font-size:1.4em;
}
#sidebar .col {
width:100px;
margin:0 10px 0 0;
float:left;
}
#sidebar a {
display:block;
padding:3px;
border:none;
color:#888;
}
#sidebar .top_rated a {
display:inline;
}
#sidebar .widget_twitter a {
display:inline;
padding:0;
}
#sidebar .recentcommentsavatar a {
padding:0;
display:inline;
}
#sidebar .textwidget a, #sidebar .widget_tag_cloud a, #sidebar .wp_widget_tag_cloud a {
display: inline;
}
#sidebar a:hover {
color:#68f;
}
#sidebar p {
font-size:1.2em;
margin:6px 0;
}
#sidebar ul {
list-style-type:none;
padding:0;
margin:0;
}
#sidebar li {
_border:1px solid #fff;
clear:both;
}
#sidebar ul ul {
margin:0 0 0 16px;
list-style-type:square;
}
#sidebar ul ul ul {
list-style-type:none;
}
#sidebar #blogroll {
list-style-type:none;
margin:0; padding:0;
}
#sidebar #blogroll li {
border-color:#fff;
margin:0 0 0 0;
}
#sidebar #blogroll ul li {
list-style-type:square;
border-bottom:1px dotted #ddd;
}
#sidebar #about, #sidebar .widget_text {
border:5px solid #eef;
padding:10px;
color:#666;
}
#sidebar #about h2, #sidebar .widget_text h2 {
color: #99f;
}
#sidebar .widget_text {
margin:10px 0;
}
#sidebar #about h2, #sidebar .widget_text h2 {
padding:0; margin:0;
}
#sidebar #about a {
display:inline;
color:#68f;
text-decoration:underline;
}
#sidebar form .button {
width:40px;
}
#sidebar #search {
border:none;
padding:15px;
background:#fc0;
margin:0 0 8px 0;
}
#sidebar #search p {
font-size:1em;
margin:0; padding:0;
}
#sidebar #subpages {
list-style-type:none;
margin:16px 0 0 0;
border:5px solid #eef;
}
#sidebar #subpages a {
border:none;
display:block;
font-size:1.2em;
padding:8px;
}
#sidebar #subpages h2 {
padding:8px; margin:0;
color:#666;
background:#fc0;
}
#search label {
color:#333;
margin:0 5px 0 0;
}
ul#feeds {
clear:both;
text-transform:uppercase;
list-style-type:none;
padding:8px;
background:#eef;
overflow:hidden;
border-top:16px solid #fff;
_height:1%;
margin:0;
}
#feeds li {
float:left;
border:none;
margin:0;
clear:none;
}
#feeds h3 {
font-size:1em;
padding:4px;
margin:3px;
}
#feeds a {
display:block;
padding:4px 4px 4px 24px;
margin:3px;
color:#99c;
background: url( images/bg_feed.gif ) 3px center no-repeat;
}
#feeds a:hover {
background-color:#fff;
}
/* -------
- FOOTER -
------- */
#footer {
display:block;
padding:1em 0 4em 8px;
border-top:5px solid #fc0;
color:#fff;
clear:both;
background:#024;
list-style-type:none;
_height:1%;
}
#footer li {
float:left;
padding:0 8px;
border-right:1px solid #cce;
}
#footer li a {
color:#fff;
border-color:#99c;
}
/* ---------------------
-- WordPress calendar --
--------------------- */
#wp-cal-container {
border:5px solid #eef;
margin:12px 0 0 0;
}
#wp-calendar {
width:220px;
text-align:center;
border-collapse: collapse;
}
#wp-calendar caption, #wp-calendar th {
background:#eef;
color:#666;
padding:4px;
}
#wp-calendar td {
padding:1px;
border:none;
}
#wp-calendar caption {
font-weight:bold;
background:#fc0;
}
#wp-calendar #today {
background:#fc0;
font-weight:bold;
color:#666;
}
#wp-calendar a {
padding: 0;
display: inline;
color:#666;
text-decoration:underline;
}
#pageNav {
overflow:hidden;
_height:1%;
margin:32px 0 0 0;
}
#pageNav a {
display:block;
font-size:1.1em;
width:8em;
float:left;
text-align:center;
padding:0.5em;
border:none;
background:#fc0;
margin:0 5px 0 0;
font-weight:bold;
text-decoration:underline;
}
#pageNav a:hover {
color:#333;
text-decoration:none;
}
img.centered, img.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
img.alignright {
padding: 4px;
margin: 0 0 2px 7px;
display: inline;
}
img.alignleft {
padding: 4px;
margin: 0 7px 2px 0;
display: inline;
}
.alignright {
float: right;
}
.alignleft {
float: left;
}
.aligncenter, div.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.wp-caption {
border: 1px solid #ddd;
text-align: center;
background-color: #f3f3f3;
padding-top: 4px;
margin: 10px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.wp-caption img {
margin: 0;
padding: 4px 0;
border: 0 none;
}
.wp-caption p.wp-caption-text {
font-size: 11px;
line-height: 17px;
padding: 0 4px 5px;
margin: 0;
}
#content dl.wp-caption {
margin: 0;
padding: 0;
} | tests/data/wpcom-themes/regulus/style.css | * {
margin:0; padding: 0;
font:1em 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Sans-Serif;
}
/* ---------------------------------
- GENERIC GUFF (APPLIES SITE WIDE) -
--------------------------------- */
body {
font-size:0.625em;
_font-size:10px;
text-align:center;
background: url( images/bg_body.gif ) repeat-x top #eef;
}
h1, h2, h3, h4, h5, h6 {
font-size:1.7em;
font-weight:normal;
}
h2 {
clear: both;
}
a {
color:#333;
text-decoration:none;
border-bottom:1px dotted #99c;
}
a:hover {
border:none;
color:#68f;
}
a img {
border:none;
}
strong, b {
font-weight:bold;
}
em, i {
font-style:italic;
}
.skipnav {
position:absolute;
top:-999px; left:-999px;
}
.i_left {
float:left;
margin:0 8px 8px 0;
padding:4px;
border:1px solid #eef;
}
.i_right {
float:right;
margin:0 0 8px 8px;
padding:4px;
border:1px solid #eef;
}
table, tr, td, th {
margin:auto; padding:auto; border:auto;
}
td, th {
padding:8px;
vertical-align:top;
}
th {
font-weight:bold;
background:#eef;
}
td {
border:1px solid #dde;
}
.recentcommentsavatar td {
border:none;
}
code, pre {
font-family:monospace;
font-size:1.3em;
display:block;
padding:10px;
background:#eef;
}
.wp-smiley {
vertical-align:-30%;
}
/* ------
- FORMS -
------ */
input, textarea {
padding:2px;
border-width:1px;
}
input:focus, textarea:focus, .passwordPost label input:focus {
background:#ffc;
}
#sidebar input, #sidebar textarea {
width:110px;
}
.button, .passwordPost input {
background:#024;
border-color:#357 #002 #002 #357;
color:#fff;
padding:0; margin:0;
}
.passwordPost label input {
background:#fff;
border:1px solid #99c;
border-color:#99c #eef #eef #99c;
padding:2px;
}
input:hover, textarea:hover {
background:#ffc;
cursor:text;
}
.button:hover, .passwordPost input:hover {
background:#246;
cursor:pointer;
}
.passwordPost label input:hover {
background:#ffc;
cursor:text;
}
label:hover {
cursor:pointer;
color:#68f;
}
/* -------------
- PAGE LAYOUT -
------------- */
#wrapper {
width:730px;
margin:10px auto;
padding:0;
overflow:hidden;
background:url(images/bg_1.jpg) no-repeat #fff;
border:5px solid #dde;
text-align:left;
}
.hid_1 #header { background:url(images/bg_1.jpg) no-repeat #fff; }
.hid_2 #header { background:url(images/bg_2.jpg) no-repeat #fff; }
.hid_3 #header { background:url(images/bg_3.jpg) no-repeat #fff; }
.hid_4 #header { background:url(images/bg_4.jpg) no-repeat #fff; }
.hid_5 #header { background:url(images/bg_5.jpg) no-repeat #fff; }
.hid_6 #header { background:url(images/bg_6.jpg) no-repeat #fff; }
.hid_7 #header { background:url(images/bg_7.jpg) no-repeat #fff; }
.hid_8 #header { background:url(images/bg_8.jpg) no-repeat #fff; }
.hid_9 #header { background:url(images/bg_9.jpg) no-repeat #fff; }
/* -------
- HEADER -
------- */
#header {
display:block;
height:140px;
color:#fff;
position:relative;
margin:0px auto 0 auto;
text-align:right;
border-bottom:5px solid #fc0;
}
#header h1 {
font-size:2.2em;
margin:0; padding:45px 95px 0 0;
}
#header p {
padding:0 95px 0 0;
}
/* -----------
- NAVIGATION -
----------- */
ul#nav {
position:absolute;
bottom:0; left:0;
margin:0 0 0 16px;
list-style-type:none;
}
ul#nav li {
list-style-type:none;
float:left;
margin:0 0.5em 0 0;
}
ul#nav li a {
padding:10px 14px;
border:none;
text-transform:lowercase;
color:#fff;
background:#024;
border:1px solid #fff;
border-bottom:none;
border-color:#357 #002 #002 #357;
display:block;
white-space:nowrap;
_width:1em;
}
ul#nav li a:hover {
background:#246;
text-decoration:none;
}
ul#nav .current_page_item a,
ul#nav .current_page_item a:hover {
color:#335;
background:#fc0;
text-decoration:none;
border-color:#ff3 #da0 #da0 #ff3;
}
/* -------------
- MAIN CONTENT -
------------- */
#content {
width:460px;
float:left;
font-size:1.2em;
overflow:hidden;
border-left:12px solid #fff;
border-bottom:20px solid #fff
}
.sticky {
background: #f7f7f7;
padding: 0 10px 10px 10px;
}
.sticky h2 {
padding-top: 10px;
}
.leftAlign #content {
float:right;
border-right:12px solid #fff;
border-bottom:20px solid #fff
}
#content p, #content li {
color:#666;
}
#content p {
margin:12px 0;
line-height:1.5em;
}
#content h2 {
font-size:1.6em;
margin:24px 0 4px 0;
}
#content h2 em {
font-size:0.7em;
margin:0 0 0 1em;
color:#99c;
font-style:normal;
}
#content h2 a {
color:#333;
border:none;
}
#content h2 a:hover {
color:#68f;
}
#content h3 {
font-size:1.4em;
color:#aaa;
}
#content h4, #content h5, #content h6 {
font-size:1.2em;
}
#content h3 a {
color:#aaa;
}
#content ol, #content ul, #content dl {
padding:0 0 0 40px;
margin:12px 0;
}
#content dl.gallery-item {
padding: 0;
margin: 0;
}
#content dt {
font-weight:bold;
}
#content blockquote {
margin:20px;
padding:1px 10px 1px 70px;
background:#eef url( images/bg_blockquote.gif ) top left no-repeat;
}
#content .info {
color:#99c;
font-size:1em;
border-top:1px dotted #99c;
font-style:normal;
display:block;
padding:4px 0;
}
#content .info a {
color:#99c;
}
#content pre {
background:#eef;
padding:20px;
}
.widgets {
clear:both;
background:#eef;
padding:8px 4px !important;
list-style-type:none;
overflow:hidden;
border-left: 4px solid #fc0;
margin:0 0 4px 0 !important;
_height:1%;
border:none;
background:none;
margin:0 !important;
padding:4px 0 !important;
}
.widgets a {
color:#99c;
border:none;
}
.widgets .read {
padding-left:16px;
background: url( images/post_read.gif ) no-repeat left center;
}
.widgets .comments {
padding-left:16px;
background: url( images/post_comment.gif ) no-repeat left center;
}
.widgets a:hover {
color:#68f;
}
.widgets li {
float:left;
padding:2px 8px;
color:#eef;
border-right:1px dotted #99c;
}
#post_information {
clear:both;
margin:0 !important;
display:block;
padding:4px !important;
background:#eef;
overflow:hidden;
color:#99c;
border-bottom:4px solid #fff;
_height:1%;
}
#post_information a {
color:#99c;
}
#post_information li {
display:inline;
float:left;
padding:0 4px;
}
#comments {
clear:both;
background:#eef;
padding:15px;
}
#comments h2 {
margin:0;
}
#comments dl {
margin:0; padding:0;
}
#comments dt {
padding:8px 0 0 0;
font-size:1.2em;
border-top:1px dotted #99c;
color:#333;
}
#comments dt .avatar {
float: right;
padding: 2px;
border: 1px dotted #99c;
}
#comments dt.highlighted {
padding:8px;
background:#fc0;
border:4px solid #fff;
}
#comments dd.highlighted {
background:#fff;
padding:2px 8px;
}
#comments h3, #postComment h3 {
padding:0; margin:0 0 15px 0;
}
#comments dd.depth-2, #comments dt.depth-2 {
margin-left:16px;
}
#comments dd.depth-3, #comments dt.depth-3 {
margin-left:32px;
}
#comments dd.depth-4, #comments dt.depth-4 {
margin-left:48px;
}
#comments dd.depth-5, #comments dt.depth-5 {
margin-left:64px;
}
#comments dd.depth-6, #comments dt.depth-6 {
margin-left:72px;
}
#postComment {
background:#ddd;
padding:15px;
}
#postComment label {
width:120px;
display:block;
float:left;
clear:both;
margin:5px 0 0 0;
}
form#postComment p label, form#postComment p input { display: inline; clear: none; float: none;}
#postComment input, #postComment textarea {
margin:5px 0 0 0;
width:99%;
}
#postComment textarea {
height:160px;
}
#postComment .button {
padding:5px;
clear:both;
width:100px;
margin:10px 0 0 0;
}
/* --------
- SIDEBAR -
-------- */
#sidebar {
width:230px;
float:right;
color:#99f;
line-height:1.5em;
margin:0 0 16px 0;
overflow:hidden;
border-right:12px solid #fff;
}
.leftAlign #sidebar {
border-left:12px solid #fff;
border-right:none;
float:left;
}
#sidebar h2 {
clear:both;
padding:16px 0 4px 0;
font-size:1.4em;
}
#sidebar .col {
width:100px;
margin:0 10px 0 0;
float:left;
}
#sidebar a {
display:block;
padding:3px;
border:none;
color:#888;
}
#sidebar .top_rated a {
display:inline;
}
#sidebar .widget_twitter a {
display:inline;
padding:0;
}
#sidebar .recentcommentsavatar a {
padding:0;
display:inline;
}
#sidebar .textwidget a, #sidebar .widget_tag_cloud a, #sidebar .wp_widget_tag_cloud a {
display: inline;
}
#sidebar a:hover {
color:#68f;
}
#sidebar p {
font-size:1.2em;
margin:6px 0;
}
#sidebar ul {
list-style-type:none;
padding:0;
margin:0;
}
#sidebar li {
_border:1px solid #fff;
clear:both;
}
#sidebar ul ul {
margin:0 0 0 16px;
list-style-type:square;
}
#sidebar ul ul ul {
list-style-type:none;
}
#sidebar #blogroll {
list-style-type:none;
margin:0; padding:0;
}
#sidebar #blogroll li {
border-color:#fff;
margin:0 0 0 0;
}
#sidebar #blogroll ul li {
list-style-type:square;
border-bottom:1px dotted #ddd;
}
#sidebar #about, #sidebar .widget_text {
border:5px solid #eef;
padding:10px;
color:#666;
}
#sidebar #about h2, #sidebar .widget_text h2 {
color: #99f;
}
#sidebar .widget_text {
margin:10px 0;
}
#sidebar #about h2, #sidebar .widget_text h2 {
padding:0; margin:0;
}
#sidebar #about a {
display:inline;
color:#68f;
text-decoration:underline;
}
#sidebar form .button {
width:40px;
}
#sidebar #search {
border:none;
padding:15px;
background:#fc0;
margin:0 0 8px 0;
}
#sidebar #search p {
font-size:1em;
margin:0; padding:0;
}
#sidebar #subpages {
list-style-type:none;
margin:16px 0 0 0;
border:5px solid #eef;
}
#sidebar #subpages a {
border:none;
display:block;
font-size:1.2em;
padding:8px;
}
#sidebar #subpages h2 {
padding:8px; margin:0;
color:#666;
background:#fc0;
}
#search label {
color:#333;
margin:0 5px 0 0;
}
ul#feeds {
clear:both;
text-transform:uppercase;
list-style-type:none;
padding:8px;
background:#eef;
overflow:hidden;
border-top:16px solid #fff;
_height:1%;
margin:0;
}
#feeds li {
float:left;
border:none;
margin:0;
clear:none;
}
#feeds h3 {
font-size:1em;
padding:4px;
margin:3px;
}
#feeds a {
display:block;
padding:4px 4px 4px 24px;
margin:3px;
color:#99c;
background: url( images/bg_feed.gif ) 3px center no-repeat;
}
#feeds a:hover {
background-color:#fff;
}
/* -------
- FOOTER -
------- */
#footer {
display:block;
padding:1em 0 4em 8px;
border-top:5px solid #fc0;
color:#fff;
clear:both;
background:#024;
list-style-type:none;
_height:1%;
}
#footer li {
float:left;
padding:0 8px;
border-right:1px solid #cce;
}
#footer li a {
color:#fff;
border-color:#99c;
}
/* ---------------------
-- WordPress calendar --
--------------------- */
#wp-cal-container {
border:5px solid #eef;
margin:12px 0 0 0;
}
#wp-calendar {
width:220px;
text-align:center;
border-collapse: collapse;
}
#wp-calendar caption, #wp-calendar th {
background:#eef;
color:#666;
padding:4px;
}
#wp-calendar td {
padding:1px;
border:none;
}
#wp-calendar caption {
font-weight:bold;
background:#fc0;
}
#wp-calendar #today {
background:#fc0;
font-weight:bold;
color:#666;
}
#wp-calendar a {
padding: 0;
display: inline;
color:#666;
text-decoration:underline;
}
#pageNav {
overflow:hidden;
_height:1%;
margin:32px 0 0 0;
}
#pageNav a {
display:block;
font-size:1.1em;
width:8em;
float:left;
text-align:center;
padding:0.5em;
border:none;
background:#fc0;
margin:0 5px 0 0;
font-weight:bold;
text-decoration:underline;
}
#pageNav a:hover {
color:#333;
text-decoration:none;
}
img.centered, img.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
img.alignright {
padding: 4px;
margin: 0 0 2px 7px;
display: inline;
}
img.alignleft {
padding: 4px;
margin: 0 7px 2px 0;
display: inline;
}
.alignright {
float: right;
}
.alignleft {
float: left;
}
.aligncenter, div.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.wp-caption {
border: 1px solid #ddd;
text-align: center;
background-color: #f3f3f3;
padding-top: 4px;
margin: 10px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.wp-caption img {
margin: 0;
padding: 4px 0;
border: 0 none;
}
.wp-caption p.wp-caption-text {
font-size: 11px;
line-height: 17px;
padding: 0 4px 5px;
margin: 0;
}
#content dl.wp-caption {
margin: 0;
padding: 0;
} | 0.214856 | 0.090897 |
html {
/*background-color: skyblue;*/
background: white;
}
html, body {
overflow: hidden;
}
* {
margin: 0px;
padding: 0px;
}
/*@media (max-width: 12000px) {
.navbar-header {
float: none;
}
.navbar-left,.navbar-right {
float: none !important;
}
.navbar-toggle {
display: block;
}
.navbar-collapse {
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.navbar-collapse.collapse {
display: none!important;
}
.navbar-nav {
float: none!important;
margin-top: 7.5px;
}
.navbar-nav>li {
float: none;
}
.navbar-nav>li>a {
padding-top: 10px;
padding-bottom: 10px;
}
.collapse.in{
display:block !important;
}
}*/
.footer {
display: none;
}
#ski-container {
margin-top:50px;
position: relative;
}
.panel-top a{
color: white;
padding: 5px;
text-decoration: none;
font-weight: bold;
font-size: 22px;
}
#skocznia {
width:4000px;
height: 1500px;
/*background-color: skyblue;*/
position: relative;
}
#container {
height: 100vh;
width: 100vw;
overflow-y: hidden;
overflow-x: hidden;
position: relative;
/*background-image: url('../images/bg1.jpg');*/
background-size: 100% 100% ;
background-repeat: no-repeat;
cursor: crosshair;
}
#skoczek {
width: 45px;
height: 45px;
background-color: transparent;
position: absolute;
top: 0px;
left: 0px;
pointer-events:none;
}
#skoczek img {
width: 60px;
height: 60px;
}
#cien_skoczka {
width: 40px;
height: 5px;
background-color: #eee;
position: absolute;
top: 0px;
left: 0px;
border-radius: 10px;
pointer-events:none;
}
#punkt-ladowania {
width: 5px;
height: 5px;
background-color: green;
position: absolute;
top: 0px;
left: 0px;
/*display: none;*/
}
#punkt-ladowania-rekord {
width: 5px;
height: 5px;
background-color: red;
position: absolute;
top: 0px;
left: 0px;
}
#punkt-ladowania-my-rekord {
width: 5px;
height: 5px;
background-color: orange;
position: absolute;
top: 0px;
left: 0px;
}
.best_mine {
font-size: 20px;
color: orange;
}
.best_distance {
font-size: 20px;
color: red;
}
.best_point {
position: absolute;
font-size: 12px;
margin-top: 10px;
}
#distance {
font-size: 20px;
}
#wind-panel {
position: absolute;
top: 50px;
right: 50px;
width: 100px;
height: 100px;
z-index:1000;
pointer-events:none;
/* overflow: hidden;
border:#eee;
background: white;*/
}
#wind_img {
position: fixed;
width: 100px;
pointer-events:none;
}
#wind_power {
color: red;
margin-top: 100px;
text-align: center;
pointer-events:none;
}
#crash_img {
position: absolute;
z-index: 1000;
top:0px;
left: 0px;
display: none;
}
/* ---------------------------------------------------------------------------- */
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Chrome/Safari/Opera */
-khtml-user-select: none; /* Konqueror */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
not supported by any browser */
}
.panel-top {
min-height: 20px;
background: #2b2b2b;
color: white;
border-bottom: black 3px solid;
margin-bottom: 0px;
} | assets/ski/scripts/ski_engine/main.css | html {
/*background-color: skyblue;*/
background: white;
}
html, body {
overflow: hidden;
}
* {
margin: 0px;
padding: 0px;
}
/*@media (max-width: 12000px) {
.navbar-header {
float: none;
}
.navbar-left,.navbar-right {
float: none !important;
}
.navbar-toggle {
display: block;
}
.navbar-collapse {
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.navbar-collapse.collapse {
display: none!important;
}
.navbar-nav {
float: none!important;
margin-top: 7.5px;
}
.navbar-nav>li {
float: none;
}
.navbar-nav>li>a {
padding-top: 10px;
padding-bottom: 10px;
}
.collapse.in{
display:block !important;
}
}*/
.footer {
display: none;
}
#ski-container {
margin-top:50px;
position: relative;
}
.panel-top a{
color: white;
padding: 5px;
text-decoration: none;
font-weight: bold;
font-size: 22px;
}
#skocznia {
width:4000px;
height: 1500px;
/*background-color: skyblue;*/
position: relative;
}
#container {
height: 100vh;
width: 100vw;
overflow-y: hidden;
overflow-x: hidden;
position: relative;
/*background-image: url('../images/bg1.jpg');*/
background-size: 100% 100% ;
background-repeat: no-repeat;
cursor: crosshair;
}
#skoczek {
width: 45px;
height: 45px;
background-color: transparent;
position: absolute;
top: 0px;
left: 0px;
pointer-events:none;
}
#skoczek img {
width: 60px;
height: 60px;
}
#cien_skoczka {
width: 40px;
height: 5px;
background-color: #eee;
position: absolute;
top: 0px;
left: 0px;
border-radius: 10px;
pointer-events:none;
}
#punkt-ladowania {
width: 5px;
height: 5px;
background-color: green;
position: absolute;
top: 0px;
left: 0px;
/*display: none;*/
}
#punkt-ladowania-rekord {
width: 5px;
height: 5px;
background-color: red;
position: absolute;
top: 0px;
left: 0px;
}
#punkt-ladowania-my-rekord {
width: 5px;
height: 5px;
background-color: orange;
position: absolute;
top: 0px;
left: 0px;
}
.best_mine {
font-size: 20px;
color: orange;
}
.best_distance {
font-size: 20px;
color: red;
}
.best_point {
position: absolute;
font-size: 12px;
margin-top: 10px;
}
#distance {
font-size: 20px;
}
#wind-panel {
position: absolute;
top: 50px;
right: 50px;
width: 100px;
height: 100px;
z-index:1000;
pointer-events:none;
/* overflow: hidden;
border:#eee;
background: white;*/
}
#wind_img {
position: fixed;
width: 100px;
pointer-events:none;
}
#wind_power {
color: red;
margin-top: 100px;
text-align: center;
pointer-events:none;
}
#crash_img {
position: absolute;
z-index: 1000;
top:0px;
left: 0px;
display: none;
}
/* ---------------------------------------------------------------------------- */
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Chrome/Safari/Opera */
-khtml-user-select: none; /* Konqueror */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
not supported by any browser */
}
.panel-top {
min-height: 20px;
background: #2b2b2b;
color: white;
border-bottom: black 3px solid;
margin-bottom: 0px;
} | 0.476092 | 0.067393 |
body {
@apply antialiased relative bg-gray-300 font-sans;
}
header {
@apply h-16;
p {
@apply py-4 text-gray-600 text-sm text-center font-semibold;
}
}
footer {
@apply h-10;
}
.container {
@apply max-w-5xl mx-auto px-6;
}
.wrapper {
@apply flex flex-col;
}
a {
@apply underline;
}
form {
@apply inline-flex items-center mt-8 mb-8 mx-auto;
input[type="text"] {
@apply h-10 border border-gray-500 border-l-0 rounded-r-md bg-white pl-2 text-base w-full;
}
input[type="text"]:focus {
@apply outline-none;
}
.icon {
@apply h-10 pl-4 py-2 bg-white border border-gray-500 border-r-0 rounded-l-md;
img {
@apply h-6 w-6;
}
}
}
.stats {
@apply align-middle mb-8 rounded-lg bg-white shadow-md grid grid-cols-3;
.stat {
@apply p-6 text-center;
h3 {
@apply block mt-2 text-lg leading-6 font-medium text-gray-500;
}
span {
@apply block text-5xl leading-none font-extrabold text-green-600;
}
}
}
table {
@apply min-w-full text-sm;
th {
@apply bg-transparent px-6 py-4 border-b border-gray-300 bg-green-700 text-base leading-4 font-medium uppercase tracking-wider text-right text-white;
a {
@apply no-underline text-white;
}
a:hover {
@apply underline;
}
}
th.left {
@apply text-left;
}
tbody {
@apply bg-white;
}
td {
@apply text-base px-6 py-4 whitespace-no-wrap leading-5 text-gray-900 border-b border-gray-300 font-medium text-gray-900 text-right;
}
td.left {
@apply text-left;
}
}
/*
* Loading Spinner
*
* Copied from:
* https://projects.lukehaas.me/css-loaders/
*/
.loader,
.loader:before,
.loader:after {
border-radius: 50%;
width: 2.5em;
height: 2.5em;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation: load7 1.8s infinite ease-in-out;
animation: load7 1.8s infinite ease-in-out;
}
.loader {
color: #38a169;
font-size: 10px;
margin: 20px auto;
position: relative;
text-indent: -9999em;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
.loader:before,
.loader:after {
content: '';
position: absolute;
top: 0;
}
.loader:before {
left: -3.5em;
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.loader:after {
left: 3.5em;
}
@-webkit-keyframes load7 {
0%,
80%,
100% {
box-shadow: 0 2.5em 0 -1.3em;
}
40% {
box-shadow: 0 2.5em 0 0;
}
}
@keyframes load7 {
0%,
80%,
100% {
box-shadow: 0 2.5em 0 -1.3em;
}
40% {
box-shadow: 0 2.5em 0 0;
}
} | assets/css/custom.css | body {
@apply antialiased relative bg-gray-300 font-sans;
}
header {
@apply h-16;
p {
@apply py-4 text-gray-600 text-sm text-center font-semibold;
}
}
footer {
@apply h-10;
}
.container {
@apply max-w-5xl mx-auto px-6;
}
.wrapper {
@apply flex flex-col;
}
a {
@apply underline;
}
form {
@apply inline-flex items-center mt-8 mb-8 mx-auto;
input[type="text"] {
@apply h-10 border border-gray-500 border-l-0 rounded-r-md bg-white pl-2 text-base w-full;
}
input[type="text"]:focus {
@apply outline-none;
}
.icon {
@apply h-10 pl-4 py-2 bg-white border border-gray-500 border-r-0 rounded-l-md;
img {
@apply h-6 w-6;
}
}
}
.stats {
@apply align-middle mb-8 rounded-lg bg-white shadow-md grid grid-cols-3;
.stat {
@apply p-6 text-center;
h3 {
@apply block mt-2 text-lg leading-6 font-medium text-gray-500;
}
span {
@apply block text-5xl leading-none font-extrabold text-green-600;
}
}
}
table {
@apply min-w-full text-sm;
th {
@apply bg-transparent px-6 py-4 border-b border-gray-300 bg-green-700 text-base leading-4 font-medium uppercase tracking-wider text-right text-white;
a {
@apply no-underline text-white;
}
a:hover {
@apply underline;
}
}
th.left {
@apply text-left;
}
tbody {
@apply bg-white;
}
td {
@apply text-base px-6 py-4 whitespace-no-wrap leading-5 text-gray-900 border-b border-gray-300 font-medium text-gray-900 text-right;
}
td.left {
@apply text-left;
}
}
/*
* Loading Spinner
*
* Copied from:
* https://projects.lukehaas.me/css-loaders/
*/
.loader,
.loader:before,
.loader:after {
border-radius: 50%;
width: 2.5em;
height: 2.5em;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation: load7 1.8s infinite ease-in-out;
animation: load7 1.8s infinite ease-in-out;
}
.loader {
color: #38a169;
font-size: 10px;
margin: 20px auto;
position: relative;
text-indent: -9999em;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
.loader:before,
.loader:after {
content: '';
position: absolute;
top: 0;
}
.loader:before {
left: -3.5em;
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.loader:after {
left: 3.5em;
}
@-webkit-keyframes load7 {
0%,
80%,
100% {
box-shadow: 0 2.5em 0 -1.3em;
}
40% {
box-shadow: 0 2.5em 0 0;
}
}
@keyframes load7 {
0%,
80%,
100% {
box-shadow: 0 2.5em 0 -1.3em;
}
40% {
box-shadow: 0 2.5em 0 0;
}
} | 0.577138 | 0.107391 |
.layout {
display: flex;
justify-content: center;
}
.title {
display: block;
position: fixed;
top: 8%;
left: 5%;
z-index: 10;
text-align: left;
font-size: calc(25pt);
color: black;
}
.description {
font-size: 10pt;
width: 60%;
}
.content {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: center;
justify-content: center;
min-height: 100vh;
width: calc(90vw - 50px);
margin: 20px 0;
}
.navbar {
position: fixed;
right: 0;
background-color: black;
padding-top: 35px;
color: white;
width: 50px;
min-height: 100%;
z-index: 10;
}
.rotation-wrapper-outer {
display: table;
}
.rotation-wrapper-inner {
width: 50px;
padding: 100% 0px;
}
.link-wrapper {
display: block;
transform-origin: top left;
transform: rotate(90deg) translate(0, -100%);
margin-left: 30%;
white-space: nowrap;
}
.link {
color: white;
text-decoration: none;
}
.link:hover {
color: #f3d024;
text-decoration: none;
}
.title-link {
color: black;
text-decoration: none;
}
.title-link:hover {
color: grey;
text-decoration: none;
}
img {
width: 55%;
}
.chart {
width: 100%;
}
@media screen and (max-width: 1200px) {
.chart {
display: none;
}
.navbar {
display: none;
}
}
@media screen and (min-width: 1201px) {
.screenInfo {
display: none;
}
}
.top-section {
align-items: flex-end;
display: flex;
flex-direction: row;
justify-content: space-evenly;
width: 85%;
margin: auto;
}
.top-section > div.votes-and-arrow {
width: 150px;
justify-self: stretch;
align-self: normal;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.top-section > div.votes-and-arrow .spacer {
flex-grow: 1;
}
.top-section > div.votes-and-arrow .arrow {
align-self: flex-end;
}
.mid-section {
align-items: center;
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
margin: 20px 0;
}
.bottom-section {
align-items: flex-start;
display: flex;
flex-direction: row;
justify-content: space-evenly;
width: 100%;
margin: 20px 0;
}
.government-arrow {
position: absolute;
left: 33%;
}
.arrow-position-1 {
position: absolute;
left: 14%;
}
.arrow-position-2 {
position: absolute;
right: 20%;
}
.arrow-disable {
display: none;
}
.show-info {
position: absolute;
width: calc(90vw - 150px);
bottom: 2vh;
display: flex;
justify-content: flex-end;
}
/* about project */
.about-project-content {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
width: calc(100% - 50px);
margin: 20px 0;
}
.about-project-content span {
width: 800px;
text-align: left;
}
.about-project-content p{
font-size:16px;
text-align: justify;
}
#git {
text-align: center;
position: fixed;
width: 50px;
bottom: 0;
margin-bottom: 20px;
}
/* about us */
.about-us-content{
align-items: center;
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
margin: 20px 0;
}
.profiles{
padding-top:120px;
}
.video-section{
padding-top:180px;
margin:auto;
} | web/src/components/Layout/Layout.css | .layout {
display: flex;
justify-content: center;
}
.title {
display: block;
position: fixed;
top: 8%;
left: 5%;
z-index: 10;
text-align: left;
font-size: calc(25pt);
color: black;
}
.description {
font-size: 10pt;
width: 60%;
}
.content {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: center;
justify-content: center;
min-height: 100vh;
width: calc(90vw - 50px);
margin: 20px 0;
}
.navbar {
position: fixed;
right: 0;
background-color: black;
padding-top: 35px;
color: white;
width: 50px;
min-height: 100%;
z-index: 10;
}
.rotation-wrapper-outer {
display: table;
}
.rotation-wrapper-inner {
width: 50px;
padding: 100% 0px;
}
.link-wrapper {
display: block;
transform-origin: top left;
transform: rotate(90deg) translate(0, -100%);
margin-left: 30%;
white-space: nowrap;
}
.link {
color: white;
text-decoration: none;
}
.link:hover {
color: #f3d024;
text-decoration: none;
}
.title-link {
color: black;
text-decoration: none;
}
.title-link:hover {
color: grey;
text-decoration: none;
}
img {
width: 55%;
}
.chart {
width: 100%;
}
@media screen and (max-width: 1200px) {
.chart {
display: none;
}
.navbar {
display: none;
}
}
@media screen and (min-width: 1201px) {
.screenInfo {
display: none;
}
}
.top-section {
align-items: flex-end;
display: flex;
flex-direction: row;
justify-content: space-evenly;
width: 85%;
margin: auto;
}
.top-section > div.votes-and-arrow {
width: 150px;
justify-self: stretch;
align-self: normal;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.top-section > div.votes-and-arrow .spacer {
flex-grow: 1;
}
.top-section > div.votes-and-arrow .arrow {
align-self: flex-end;
}
.mid-section {
align-items: center;
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
margin: 20px 0;
}
.bottom-section {
align-items: flex-start;
display: flex;
flex-direction: row;
justify-content: space-evenly;
width: 100%;
margin: 20px 0;
}
.government-arrow {
position: absolute;
left: 33%;
}
.arrow-position-1 {
position: absolute;
left: 14%;
}
.arrow-position-2 {
position: absolute;
right: 20%;
}
.arrow-disable {
display: none;
}
.show-info {
position: absolute;
width: calc(90vw - 150px);
bottom: 2vh;
display: flex;
justify-content: flex-end;
}
/* about project */
.about-project-content {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
width: calc(100% - 50px);
margin: 20px 0;
}
.about-project-content span {
width: 800px;
text-align: left;
}
.about-project-content p{
font-size:16px;
text-align: justify;
}
#git {
text-align: center;
position: fixed;
width: 50px;
bottom: 0;
margin-bottom: 20px;
}
/* about us */
.about-us-content{
align-items: center;
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
margin: 20px 0;
}
.profiles{
padding-top:120px;
}
.video-section{
padding-top:180px;
margin:auto;
} | 0.369201 | 0.093969 |
*{
margin: 0;
padding: 0;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
body{
background: #f6fafd;
}
nav{
padding: 1%;
min-height: 30px;
border-bottom: solid 1px #ccc;
box-shadow: 1px 0px 1px #999;
background: #ffffff
}
.inner{
width: 90%;
margin: auto;
}
.mobileNavButton{
display: none;
position: absolute;
z-index: 1;
right: 1rem;
top: 1rem;
height: 20px;
width: 28px;
cursor: pointer;
}
.burger {
position: absolute;
right: 0;
top: 0.4rem;
width: 28px;
height: 3px;
background: #02309B;
}
.burger::before {
content: '';
position: absolute;
top: -8px;
width: 20px;
height: 3px;
background: #02309B;
}
.burger::after {
content: '';
position: absolute;
top: 8px;
width: 20px;
height: 3px;
background: #02309B;
}
.open {
transform: rotate(720deg);
background: transparent;
}
.open::before {
transform: rotate(45deg) translate(4px, 8px);
width: 28px;
}
.open::after {
transform: rotate(-45deg) translate(3px, -7px);
width: 28px;
}
.mobile-nav{
display: none;
padding-top: 5%;
height: 90%;
width: 100%;
background: #d5edf3;
z-index: 1;
text-align: center;
}
.mobile-nav p{
padding: 2%;
font-size: 25px;
}
.mobile-nav a, .mobile-nav span{
text-decoration: none;
color: #02309B;
padding: 1%;
margin-bottom: 100px;
cursor: pointer;
box-shadow: 0px 15px 10px -15px #acc1c7;
}
nav h2{
color: #02309B;
font-family: "Arial Black", Gadget, sans-serif;
width: 20%;
float: left;
}
nav ul{
float: right;
width: 50%;
}
nav ul li{
float: right;
list-style: none;
/* display: inline-block; */
padding-left: 5%;
}
nav ul li a, nav ul li span{
text-decoration: none;
color: #02309B;
padding-bottom: 5px;
font-style: oblique;
font-size: 20px;
font-weight: 600;
cursor: pointer;
}
nav ul li a.active{
border-bottom: solid 1px #02B875;
box-shadow: 0px 1px #ccc;
}
.header{
width: 80%;
margin: auto;
min-height: 500px;
}
.header-img{
float: right;
padding-top: 2%;
}
.header-img img{
height: 450px;
}
.header-txt{
padding-top: 10%;
}
.header-txt h1{
color: #02309B;
font-size: 2em;
}
.header-txt p{
padding: 0.5% 0;
font-size: 1.5em;
color: #333;
}
.header-button{
width: 50%;
}
.header-button button{
background: #02B875;
border-color: #02B875;
width: 30%;
padding: 1%;
margin: 1%;
font-size: 1.2em;
color: #ffffff;
}
.bg-white{
background: white;
}
.down img{
display: block;
margin: auto;
}
.row{
min-height: 100px;
}
.row h1,
.form-container h1{
text-align: center;
font-style: italic;
padding-top: 30px;
color: #333;
}
.content{
width: 80%;
display: grid;
grid-template-columns: 33.4% 33.3% 33.3%;
margin: auto;
padding: 3% 0;
}
.item{
text-align: justify;
box-shadow: 0 0 2px #9cb2c4;
line-height: 1.6;
border-radius: 5px;
font-size: 18px;
margin: 5%;
padding: 5% 5%;
}
.item img{
display: block;
margin: 10% auto;
}
.item b{
display: block;
text-align: center;
padding: 2%;
color: #333;
font-size: 20px;
}
.item p{
padding: 2% 0;
font-size: 1em;
}
.none{
padding-top: 50%;
}
.info{
width: 80%;
margin: auto;
text-align: center;
padding: 4% 0;
font-size: 1.5em;
color: #333;
margin-bottom: 10%;
}
.foot {
position: fixed;
width: 100%;
bottom: 0;
}
footer{
background: #343a40;
color: #ECF0F1;
padding: 2% 0;
bottom: 0;
width: 100%;
}
footer p {
text-align: center;
}
.foot-body{
width: 80%;
margin: auto;
display: grid;
grid-template-columns: 35% 35% 30%;
}
.foot-note{
padding: 10% 5%;
}
footer p{
padding-top: 5px;
}
footer b{
color: #ccc;
}
footer ul li{
list-style: none;
padding-top: 5px;
}
footer input{
margin-top: 5px;
padding: 1%;
}
footer button{
display: block;
margin-top: 5px;
background: #02B875;
border-color: #02B875;
padding: 1%;
color: #ECF0F1;
}
footer h4{
padding-top: 20px;
text-align: center;
}
footer img{
padding-right: 5px;
}
/*signup page*/
.form-container{
width: 70%;
margin: auto;
margin-top: 5%;
margin-bottom: 10%;
padding: 2%;
background: #ffffff;
box-shadow: 0px 0px 1px #888888;
}
.form-container label{
display: block;
margin-top: 5%;
}
.form-body{
padding-top: 20px;
display: grid;
grid-template-columns: 50% 50%;
}
.form-field{
padding: 1%;
}
.form-container p, .create p{
color: #FF5733;
text-align: center;
margin-top: 5px;
}
#errormsg{
color: white;
}
.form-container input{
display: block;
border: 1px solid #ccc;
border-width: 0 0 1px 0;
margin-top: 1%;
padding: 2%;
width: 96%;
}
.form-container input:focus, .update input:focus {
outline: 1px solid #66CDAA;
box-shadow: none;
}
.form-container button{
display: block;
text-align: center;
background: #02B875;
color: #ffffff;
width: 40%;
font-size: 15px;
height: 40px;
margin: 5% auto;
border-color: #02B875;
border-radius: 3px;
}
.form-container button:hover{
background: #01a76a;
box-shadow: 0px 2px 2px #888888;
}
/*records page*/
.records h2, .profile h2{
width: 100%;
box-shadow: 2px 2px 2px #888888;
padding: 1% 0;
text-align: center;
background: #d5edf3;
text-shadow: 1px 1px #ffffff;
}
.records-body{
width: 80%;
margin: 1% auto 10% auto;
}
.filter{
display: block;
width: 100%;
}
.filter form{
margin-left: 70%
}
.filter select{
width: 96%;
height: 30px;
margin-right: 4%;
}
.records-main{
margin: 2% 0;
display: grid;
grid-template-columns: 25% 25% 25% 25%;
}
.main{
margin: 2% 0;
display: grid;
grid-template-columns: 50% 50%;
}
.main .comment{
height: 100px;
overflow-y: auto;
}
.first_cards{
background: transparent;
box-shadow: none;
}
.first_cards img{
display: block;
margin: auto;
width: 30%;
padding-top: 20%;
}
.cards{
background: #ffffff;
margin: 5%;
padding: 5%;
box-shadow: 1px 1px 3px #888888;
}
.cards h4{
text-align: center;
padding-bottom: 2%;
border-bottom: solid 1px #999;
text-transform: capitalize;
}
.cards h4 img{
height: 20px;
padding-right: 5px;
}
.draft{
text-transform: capitalize;
padding-right: 5px;
}
.cards p{
padding: 5% 0;
}
.cards i{
color: #2471A3;
}
.cards button{
width: 40%;
height: 30px;
padding: 1%;
margin-top: 2%;
background: #02B875;
border-color: #02B875;
color: #ffffff;
}
/*Details page*/
.detail{
width: 80%;
margin: 5% auto;
background: #ffffff;
min-height: 800px;
box-shadow: 0px 0px 10px #999;
position: relative;
}
.commentdets{
position: absolute;
width: 100%;
padding-bottom: 2%;
bottom: 0;
}
.norecord{
position: absolute;
top: 450px;
padding-left: 40%;
}
.commentdets #type, .commentdets #status{
text-transform: capitalize;
}
.commentdets p{
text-align: justify;
padding: 0 5% 2.5% 5%;
}
.commentdets #comment{
height: 200px;
overflow: hidden;
overflow-y: scroll
}
.images h3, .updateStatus h3{
padding: 1%;
}
.updateStatus{
padding: 0 1%;
}
.updateStatus button{
background: #02B875;
color: #ffffff;
border-color: #02B875;
padding: 1%;
width: 80px;
}
.updateStatus select{
height: 30px;
}
/*profile page*/
main{
min-height: 600px;
width: 80%;
margin-right:auto;
margin-left: auto;
margin-top: 3%;
margin-bottom: 10%;
padding: 1%;
background: #FBFCFC;
box-shadow: 0px 0px 10px #999;
}
#none{
text-align: center;
}
.status{
padding-top: 1%;
margin: 5% 0;
display: grid;
grid-template-columns: 25% 25% 25% 25%;
}
.status-cards{
text-align: center;
font-weight: bold;
background: #ffffff;
margin: 5%;
padding: 2%;
border: solid 1px #ccc;
box-shadow: 0px 0px 2px #888888;
}
.card-resolved{
border-left: 3px solid green;
}
.card-draft{
border-left: 3px solid rgb(83, 71, 252);
}
.card-rejected{
border-left: 3px solid red;
}
.card-investigation{
border-left: 3px solid orange;
}
.status-cards p{
padding: 2%;
}
.profile-header b{
width: 40%;
float: left;
padding: 1%;
font-size: 1.5em
}
.cards-body b, .flag h4{
font-size: 18px;
text-transform: capitalize;
color: #333;
padding-right: 5px;
font-style: oblique 15deg;
}
.profile h3{
text-align: center;
border-bottom: solid 1px #ccc;
padding-bottom: 3%;
margin-top: 7%;
margin-bottom: 5%;
}
.min-nav{
display: block;
margin-bottom: 7%;
}
.min-nav img{
height: 18px;
padding: 5px;
}
.min-nav ul li{
float: right;
padding: 1%;
list-style: none;
}
.min-nav ul li a, .min-nav ul li span{
text-decoration: none;
color: #333;
cursor: pointer;
}
.pmax-cards{
background: #ffffff;
margin: 2%;
padding: 2%;
box-shadow: 0px 0px 2px #888888;
border-radius: 5px;
}
.pmax-cards span, .cards-body span {
display: block;
margin-bottom: 1%;
}
.pmax-cards span button{
width: 80px;
color: #ffffff;
padding: 1%;
background: #02B875;
border-color: #02B875;
}
.pmax-cards span button:hover{
box-shadow: 0px 2px 2px #888888;
}
.card-body{
display: grid;
grid-template-columns: 50% 50%;
}
.flag{
padding: 2%;
}
.hide{
display: none;
}
.update label{
display: block;
margin: 10px auto;
}
.update button{
background: #ffffff;
border-color: #2471A3;
margin: 2% 0 2% 0;
color: #2471A3;
width: 80px;
height: 35px;
}
.fullname{
text-transform: capitalize;
}
.update li{
list-style: none;
}
.fullname{
text-transform: capitalize;
}
.update .location{
display: block;
margin: 10px 0;
width: 90%;
height: 30px;
border: 1px solid #ccc;
border-width: 0 0 1px 0;
padding: 2%;
}
.update .comment{
display: block;
margin: 10px 0;
width: 90%;
height: 40px;
overflow: hidden;
overflow-y: scroll;
border: 1px solid #ccc;
border-width: 0 0 1px 0;
padding: 2%;
}
.cards-footer{
margin-top: 2%
}
.view{
background: #02B875;
color: #ffffff;
border-color: #02B875;
width: 80px;
height: 35px;
}
.view:hover{
background: #01a76a;
box-shadow: 0px 2px 2px #888888;
}
.delete{
background: #ffffff;
border-color: #F08080;
margin: 2% 0 2% 0;
color: #B22222;
width: 80px;
height: 35px;
}
.edit{
background: #ffffff;
border-color: #2471A3;
margin: 2% 0 2% 0;
color: #2471A3;
width: 80px;
height: 35px;
}
.delete:hover, .edit:hover{
box-shadow: 0px 2px 2px #888888;
}
/*Create record page*/
.create{
width: 80%;
margin: auto
}
.create{
display: block;
margin-top: 5%;
}
.create form input{
width: 90%;
height: 25px;
display: block;
margin-bottom: 2%;
padding: 1%;
text-transform: capitalize;
}
.create select{
width: 100%;
height: 40px;
display: block;
margin-bottom: 2%;
padding: 1%;
text-transform: capitalize;
}
.create form label{
display: block;
padding: 1% 0;
}
.create textarea{
width: 90%;
min-height: 100px;
padding: 1%;
margin-bottom: 2%;
}
.create button{
display: block;
width: 100px;
background: #02B875;
border-color: #02B875;
color: #ffffff;
font-size: 15px;
padding: 1%;
margin: 5% auto;
}
.create button:hover{
background: #01a76a;
box-shadow: 0px 2px 2px #888888;
}
.cards-max{
margin: 2%;
}
.not_logged_in {
width: 85%;
margin: auto;
height: 400px;
padding-top: 100px;
font-size: 1.6em;
font-weight: 700;
font-style: italic;
text-align: center;
}
/*Admin page*/
.max-cards form{
width: 60%;
}
.pagenation{
padding-top: 2%;
width: 20%;
margin: auto
}
.pagenation button{
background: #F0FFFF;
border-color: #F0F8FF;
width: 50px;
height: 25px;
}
.pagenation button:hover{
background: #F0F8FF;
box-shadow: 0px 1px 1px #888888;
}
/*FAQ page*/
.faq{
width: 80%;
margin: auto;
margin-top: 5%;
margin-bottom: 10%;
}
.max-cards{
background: #ffffff;
margin: 2%;
padding: 2%;
box-shadow: 1px 1px 1px #888888;
}
.max-cards h4{
margin-bottom: 1%;
border-bottom: solid 1px #999;
text-transform: capitalize;
}
.max-cards p{
line-height: 20px;
padding: 10px 0;
}
@media only screen and (max-width: 768px) {
/* For mobile phones: */
[class*="inner"]{
padding-bottom: 4%;
}
[class*="mobile"] {
display: block;
float: right;
}
[class*="links"]{
display: none;
}
[class*="header"]{
display: grid;
height: 350px;
}
[class*="header-button"]{
display: none;
}
[class*="header-img"]{
display: none;
}
[class*="header-txt"]{
padding: 2%;
width: 80%;
margin: auto;
}
[class*="content"]{
grid-template-columns: 100%;
}
[class*="cards-body"]{
grid-template-columns: 100%;
}
[class*="card-body"]{
grid-template-columns: 100%;
}
[class*="item"]{
margin: 1%;
padding-bottom: 1%;
}
[class="mobile-nav"]{
display: block;
position: absolute;
}
[class*="min-nav"]{
display: none;
}
[class*="form-container"]{
margin-top: 10%;
width: 80%;
}
[class*="form-body"]{
grid-template-columns: 100%;
}
[class*="main"]{
grid-template-columns: 100%;
}
[class*="records-main"]{
grid-template-columns: 100%;
}
[class*="foot-body"]{
grid-template-columns: 100%;
}
[class*="status"]{
grid-template-columns: 100%;
}
[class*="updateStatus"]{
margin-top: 5%;
}
}
/*
** Toast solution from https://www.w3schools.com/howto/howto_js_snackbar.asp
*/
#snackbar {
visibility: hidden;
min-width: 250px;
margin-left: -125px;
background-color: #333;
color: #fff;
text-align: center;
border-radius: 2px;
padding: 16px;
position: fixed;
z-index: 1;
left: 50%;
bottom: 30px;
font-size: 17px;
}
#snackbar.show {
visibility: visible;
-webkit-animation: fadein 0.5s;
animation: fadein 0.5s;
}
@-webkit-keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
@keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
/*
** Modal style from https://www.w3schools.com/howto/howto_css_modals.asp
*/
/* The Modal (background) */
.adminmodal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.adminmodal-content {
background-color: #fefefe;
margin: 10% auto; /* 15% from the top and centered */
padding: 10px;
border: 1px solid #888;
width: 50%; /* Could be more or less, depending on screen size */
}
.adminmodal-content form{
margin: 2% auto
}
.input_field{
margin: 2% 0;
}
.input_field input{
display: block;
width: 96%;
padding: 5px;
margin: 10px 0
}
.adminmodal-content form input{
padding: 2%;
}
.adminmodal-content form button{
display: block;
margin: 5% auto;
height: 30px;
width: 100px;
background: #02B875;
border-color: #02B875;
color: #ffffff;
}
/* The Close Button */
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
/*
*lightbox style
*gallery modal style from https://www.w3schools.com/howto/howto_js_lightbox.asp
*/
.row > .column {
padding: 5px 8px;
}
.row:after {
content: "";
display: table;
clear: both;
}
.column {
float: left;
width: 40%;
height: 80%;
}
.column img{
width: 100%;
height: 150px;
}
/* The Modal (background) */
.modal {
display: none;
position: fixed;
z-index: 1;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: black;
}
/* Modal Content */
.modal-content {
position: relative;
background-color: #fefefe;
margin: auto;
padding: 0;
width: 90%;
max-width: 1200px;
}
/* The Close Button */
.close {
color: white;
position: absolute;
top: 10px;
right: 25px;
font-size: 35px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #999;
text-decoration: none;
cursor: pointer;
}
.mySlides {
display: none;
}
.cursor {
cursor: pointer;
}
/* Next & previous buttons */
.prev,
.next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -50px;
color: white;
font-weight: bold;
font-size: 20px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
-webkit-user-select: none;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
img {
margin-bottom: -4px;
}
.caption-container {
text-align: center;
background-color: black;
padding: 2px 16px;
color: white;
}
.demo {
opacity: 0.6;
}
.active,
.demo:hover {
opacity: 1;
}
img.hover-shadow {
transition: 0.3s;
}
.hover-shadow:hover {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
} | src/assets/css/main.css | *{
margin: 0;
padding: 0;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
body{
background: #f6fafd;
}
nav{
padding: 1%;
min-height: 30px;
border-bottom: solid 1px #ccc;
box-shadow: 1px 0px 1px #999;
background: #ffffff
}
.inner{
width: 90%;
margin: auto;
}
.mobileNavButton{
display: none;
position: absolute;
z-index: 1;
right: 1rem;
top: 1rem;
height: 20px;
width: 28px;
cursor: pointer;
}
.burger {
position: absolute;
right: 0;
top: 0.4rem;
width: 28px;
height: 3px;
background: #02309B;
}
.burger::before {
content: '';
position: absolute;
top: -8px;
width: 20px;
height: 3px;
background: #02309B;
}
.burger::after {
content: '';
position: absolute;
top: 8px;
width: 20px;
height: 3px;
background: #02309B;
}
.open {
transform: rotate(720deg);
background: transparent;
}
.open::before {
transform: rotate(45deg) translate(4px, 8px);
width: 28px;
}
.open::after {
transform: rotate(-45deg) translate(3px, -7px);
width: 28px;
}
.mobile-nav{
display: none;
padding-top: 5%;
height: 90%;
width: 100%;
background: #d5edf3;
z-index: 1;
text-align: center;
}
.mobile-nav p{
padding: 2%;
font-size: 25px;
}
.mobile-nav a, .mobile-nav span{
text-decoration: none;
color: #02309B;
padding: 1%;
margin-bottom: 100px;
cursor: pointer;
box-shadow: 0px 15px 10px -15px #acc1c7;
}
nav h2{
color: #02309B;
font-family: "Arial Black", Gadget, sans-serif;
width: 20%;
float: left;
}
nav ul{
float: right;
width: 50%;
}
nav ul li{
float: right;
list-style: none;
/* display: inline-block; */
padding-left: 5%;
}
nav ul li a, nav ul li span{
text-decoration: none;
color: #02309B;
padding-bottom: 5px;
font-style: oblique;
font-size: 20px;
font-weight: 600;
cursor: pointer;
}
nav ul li a.active{
border-bottom: solid 1px #02B875;
box-shadow: 0px 1px #ccc;
}
.header{
width: 80%;
margin: auto;
min-height: 500px;
}
.header-img{
float: right;
padding-top: 2%;
}
.header-img img{
height: 450px;
}
.header-txt{
padding-top: 10%;
}
.header-txt h1{
color: #02309B;
font-size: 2em;
}
.header-txt p{
padding: 0.5% 0;
font-size: 1.5em;
color: #333;
}
.header-button{
width: 50%;
}
.header-button button{
background: #02B875;
border-color: #02B875;
width: 30%;
padding: 1%;
margin: 1%;
font-size: 1.2em;
color: #ffffff;
}
.bg-white{
background: white;
}
.down img{
display: block;
margin: auto;
}
.row{
min-height: 100px;
}
.row h1,
.form-container h1{
text-align: center;
font-style: italic;
padding-top: 30px;
color: #333;
}
.content{
width: 80%;
display: grid;
grid-template-columns: 33.4% 33.3% 33.3%;
margin: auto;
padding: 3% 0;
}
.item{
text-align: justify;
box-shadow: 0 0 2px #9cb2c4;
line-height: 1.6;
border-radius: 5px;
font-size: 18px;
margin: 5%;
padding: 5% 5%;
}
.item img{
display: block;
margin: 10% auto;
}
.item b{
display: block;
text-align: center;
padding: 2%;
color: #333;
font-size: 20px;
}
.item p{
padding: 2% 0;
font-size: 1em;
}
.none{
padding-top: 50%;
}
.info{
width: 80%;
margin: auto;
text-align: center;
padding: 4% 0;
font-size: 1.5em;
color: #333;
margin-bottom: 10%;
}
.foot {
position: fixed;
width: 100%;
bottom: 0;
}
footer{
background: #343a40;
color: #ECF0F1;
padding: 2% 0;
bottom: 0;
width: 100%;
}
footer p {
text-align: center;
}
.foot-body{
width: 80%;
margin: auto;
display: grid;
grid-template-columns: 35% 35% 30%;
}
.foot-note{
padding: 10% 5%;
}
footer p{
padding-top: 5px;
}
footer b{
color: #ccc;
}
footer ul li{
list-style: none;
padding-top: 5px;
}
footer input{
margin-top: 5px;
padding: 1%;
}
footer button{
display: block;
margin-top: 5px;
background: #02B875;
border-color: #02B875;
padding: 1%;
color: #ECF0F1;
}
footer h4{
padding-top: 20px;
text-align: center;
}
footer img{
padding-right: 5px;
}
/*signup page*/
.form-container{
width: 70%;
margin: auto;
margin-top: 5%;
margin-bottom: 10%;
padding: 2%;
background: #ffffff;
box-shadow: 0px 0px 1px #888888;
}
.form-container label{
display: block;
margin-top: 5%;
}
.form-body{
padding-top: 20px;
display: grid;
grid-template-columns: 50% 50%;
}
.form-field{
padding: 1%;
}
.form-container p, .create p{
color: #FF5733;
text-align: center;
margin-top: 5px;
}
#errormsg{
color: white;
}
.form-container input{
display: block;
border: 1px solid #ccc;
border-width: 0 0 1px 0;
margin-top: 1%;
padding: 2%;
width: 96%;
}
.form-container input:focus, .update input:focus {
outline: 1px solid #66CDAA;
box-shadow: none;
}
.form-container button{
display: block;
text-align: center;
background: #02B875;
color: #ffffff;
width: 40%;
font-size: 15px;
height: 40px;
margin: 5% auto;
border-color: #02B875;
border-radius: 3px;
}
.form-container button:hover{
background: #01a76a;
box-shadow: 0px 2px 2px #888888;
}
/*records page*/
.records h2, .profile h2{
width: 100%;
box-shadow: 2px 2px 2px #888888;
padding: 1% 0;
text-align: center;
background: #d5edf3;
text-shadow: 1px 1px #ffffff;
}
.records-body{
width: 80%;
margin: 1% auto 10% auto;
}
.filter{
display: block;
width: 100%;
}
.filter form{
margin-left: 70%
}
.filter select{
width: 96%;
height: 30px;
margin-right: 4%;
}
.records-main{
margin: 2% 0;
display: grid;
grid-template-columns: 25% 25% 25% 25%;
}
.main{
margin: 2% 0;
display: grid;
grid-template-columns: 50% 50%;
}
.main .comment{
height: 100px;
overflow-y: auto;
}
.first_cards{
background: transparent;
box-shadow: none;
}
.first_cards img{
display: block;
margin: auto;
width: 30%;
padding-top: 20%;
}
.cards{
background: #ffffff;
margin: 5%;
padding: 5%;
box-shadow: 1px 1px 3px #888888;
}
.cards h4{
text-align: center;
padding-bottom: 2%;
border-bottom: solid 1px #999;
text-transform: capitalize;
}
.cards h4 img{
height: 20px;
padding-right: 5px;
}
.draft{
text-transform: capitalize;
padding-right: 5px;
}
.cards p{
padding: 5% 0;
}
.cards i{
color: #2471A3;
}
.cards button{
width: 40%;
height: 30px;
padding: 1%;
margin-top: 2%;
background: #02B875;
border-color: #02B875;
color: #ffffff;
}
/*Details page*/
.detail{
width: 80%;
margin: 5% auto;
background: #ffffff;
min-height: 800px;
box-shadow: 0px 0px 10px #999;
position: relative;
}
.commentdets{
position: absolute;
width: 100%;
padding-bottom: 2%;
bottom: 0;
}
.norecord{
position: absolute;
top: 450px;
padding-left: 40%;
}
.commentdets #type, .commentdets #status{
text-transform: capitalize;
}
.commentdets p{
text-align: justify;
padding: 0 5% 2.5% 5%;
}
.commentdets #comment{
height: 200px;
overflow: hidden;
overflow-y: scroll
}
.images h3, .updateStatus h3{
padding: 1%;
}
.updateStatus{
padding: 0 1%;
}
.updateStatus button{
background: #02B875;
color: #ffffff;
border-color: #02B875;
padding: 1%;
width: 80px;
}
.updateStatus select{
height: 30px;
}
/*profile page*/
main{
min-height: 600px;
width: 80%;
margin-right:auto;
margin-left: auto;
margin-top: 3%;
margin-bottom: 10%;
padding: 1%;
background: #FBFCFC;
box-shadow: 0px 0px 10px #999;
}
#none{
text-align: center;
}
.status{
padding-top: 1%;
margin: 5% 0;
display: grid;
grid-template-columns: 25% 25% 25% 25%;
}
.status-cards{
text-align: center;
font-weight: bold;
background: #ffffff;
margin: 5%;
padding: 2%;
border: solid 1px #ccc;
box-shadow: 0px 0px 2px #888888;
}
.card-resolved{
border-left: 3px solid green;
}
.card-draft{
border-left: 3px solid rgb(83, 71, 252);
}
.card-rejected{
border-left: 3px solid red;
}
.card-investigation{
border-left: 3px solid orange;
}
.status-cards p{
padding: 2%;
}
.profile-header b{
width: 40%;
float: left;
padding: 1%;
font-size: 1.5em
}
.cards-body b, .flag h4{
font-size: 18px;
text-transform: capitalize;
color: #333;
padding-right: 5px;
font-style: oblique 15deg;
}
.profile h3{
text-align: center;
border-bottom: solid 1px #ccc;
padding-bottom: 3%;
margin-top: 7%;
margin-bottom: 5%;
}
.min-nav{
display: block;
margin-bottom: 7%;
}
.min-nav img{
height: 18px;
padding: 5px;
}
.min-nav ul li{
float: right;
padding: 1%;
list-style: none;
}
.min-nav ul li a, .min-nav ul li span{
text-decoration: none;
color: #333;
cursor: pointer;
}
.pmax-cards{
background: #ffffff;
margin: 2%;
padding: 2%;
box-shadow: 0px 0px 2px #888888;
border-radius: 5px;
}
.pmax-cards span, .cards-body span {
display: block;
margin-bottom: 1%;
}
.pmax-cards span button{
width: 80px;
color: #ffffff;
padding: 1%;
background: #02B875;
border-color: #02B875;
}
.pmax-cards span button:hover{
box-shadow: 0px 2px 2px #888888;
}
.card-body{
display: grid;
grid-template-columns: 50% 50%;
}
.flag{
padding: 2%;
}
.hide{
display: none;
}
.update label{
display: block;
margin: 10px auto;
}
.update button{
background: #ffffff;
border-color: #2471A3;
margin: 2% 0 2% 0;
color: #2471A3;
width: 80px;
height: 35px;
}
.fullname{
text-transform: capitalize;
}
.update li{
list-style: none;
}
.fullname{
text-transform: capitalize;
}
.update .location{
display: block;
margin: 10px 0;
width: 90%;
height: 30px;
border: 1px solid #ccc;
border-width: 0 0 1px 0;
padding: 2%;
}
.update .comment{
display: block;
margin: 10px 0;
width: 90%;
height: 40px;
overflow: hidden;
overflow-y: scroll;
border: 1px solid #ccc;
border-width: 0 0 1px 0;
padding: 2%;
}
.cards-footer{
margin-top: 2%
}
.view{
background: #02B875;
color: #ffffff;
border-color: #02B875;
width: 80px;
height: 35px;
}
.view:hover{
background: #01a76a;
box-shadow: 0px 2px 2px #888888;
}
.delete{
background: #ffffff;
border-color: #F08080;
margin: 2% 0 2% 0;
color: #B22222;
width: 80px;
height: 35px;
}
.edit{
background: #ffffff;
border-color: #2471A3;
margin: 2% 0 2% 0;
color: #2471A3;
width: 80px;
height: 35px;
}
.delete:hover, .edit:hover{
box-shadow: 0px 2px 2px #888888;
}
/*Create record page*/
.create{
width: 80%;
margin: auto
}
.create{
display: block;
margin-top: 5%;
}
.create form input{
width: 90%;
height: 25px;
display: block;
margin-bottom: 2%;
padding: 1%;
text-transform: capitalize;
}
.create select{
width: 100%;
height: 40px;
display: block;
margin-bottom: 2%;
padding: 1%;
text-transform: capitalize;
}
.create form label{
display: block;
padding: 1% 0;
}
.create textarea{
width: 90%;
min-height: 100px;
padding: 1%;
margin-bottom: 2%;
}
.create button{
display: block;
width: 100px;
background: #02B875;
border-color: #02B875;
color: #ffffff;
font-size: 15px;
padding: 1%;
margin: 5% auto;
}
.create button:hover{
background: #01a76a;
box-shadow: 0px 2px 2px #888888;
}
.cards-max{
margin: 2%;
}
.not_logged_in {
width: 85%;
margin: auto;
height: 400px;
padding-top: 100px;
font-size: 1.6em;
font-weight: 700;
font-style: italic;
text-align: center;
}
/*Admin page*/
.max-cards form{
width: 60%;
}
.pagenation{
padding-top: 2%;
width: 20%;
margin: auto
}
.pagenation button{
background: #F0FFFF;
border-color: #F0F8FF;
width: 50px;
height: 25px;
}
.pagenation button:hover{
background: #F0F8FF;
box-shadow: 0px 1px 1px #888888;
}
/*FAQ page*/
.faq{
width: 80%;
margin: auto;
margin-top: 5%;
margin-bottom: 10%;
}
.max-cards{
background: #ffffff;
margin: 2%;
padding: 2%;
box-shadow: 1px 1px 1px #888888;
}
.max-cards h4{
margin-bottom: 1%;
border-bottom: solid 1px #999;
text-transform: capitalize;
}
.max-cards p{
line-height: 20px;
padding: 10px 0;
}
@media only screen and (max-width: 768px) {
/* For mobile phones: */
[class*="inner"]{
padding-bottom: 4%;
}
[class*="mobile"] {
display: block;
float: right;
}
[class*="links"]{
display: none;
}
[class*="header"]{
display: grid;
height: 350px;
}
[class*="header-button"]{
display: none;
}
[class*="header-img"]{
display: none;
}
[class*="header-txt"]{
padding: 2%;
width: 80%;
margin: auto;
}
[class*="content"]{
grid-template-columns: 100%;
}
[class*="cards-body"]{
grid-template-columns: 100%;
}
[class*="card-body"]{
grid-template-columns: 100%;
}
[class*="item"]{
margin: 1%;
padding-bottom: 1%;
}
[class="mobile-nav"]{
display: block;
position: absolute;
}
[class*="min-nav"]{
display: none;
}
[class*="form-container"]{
margin-top: 10%;
width: 80%;
}
[class*="form-body"]{
grid-template-columns: 100%;
}
[class*="main"]{
grid-template-columns: 100%;
}
[class*="records-main"]{
grid-template-columns: 100%;
}
[class*="foot-body"]{
grid-template-columns: 100%;
}
[class*="status"]{
grid-template-columns: 100%;
}
[class*="updateStatus"]{
margin-top: 5%;
}
}
/*
** Toast solution from https://www.w3schools.com/howto/howto_js_snackbar.asp
*/
#snackbar {
visibility: hidden;
min-width: 250px;
margin-left: -125px;
background-color: #333;
color: #fff;
text-align: center;
border-radius: 2px;
padding: 16px;
position: fixed;
z-index: 1;
left: 50%;
bottom: 30px;
font-size: 17px;
}
#snackbar.show {
visibility: visible;
-webkit-animation: fadein 0.5s;
animation: fadein 0.5s;
}
@-webkit-keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
@keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
/*
** Modal style from https://www.w3schools.com/howto/howto_css_modals.asp
*/
/* The Modal (background) */
.adminmodal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.adminmodal-content {
background-color: #fefefe;
margin: 10% auto; /* 15% from the top and centered */
padding: 10px;
border: 1px solid #888;
width: 50%; /* Could be more or less, depending on screen size */
}
.adminmodal-content form{
margin: 2% auto
}
.input_field{
margin: 2% 0;
}
.input_field input{
display: block;
width: 96%;
padding: 5px;
margin: 10px 0
}
.adminmodal-content form input{
padding: 2%;
}
.adminmodal-content form button{
display: block;
margin: 5% auto;
height: 30px;
width: 100px;
background: #02B875;
border-color: #02B875;
color: #ffffff;
}
/* The Close Button */
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
/*
*lightbox style
*gallery modal style from https://www.w3schools.com/howto/howto_js_lightbox.asp
*/
.row > .column {
padding: 5px 8px;
}
.row:after {
content: "";
display: table;
clear: both;
}
.column {
float: left;
width: 40%;
height: 80%;
}
.column img{
width: 100%;
height: 150px;
}
/* The Modal (background) */
.modal {
display: none;
position: fixed;
z-index: 1;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: black;
}
/* Modal Content */
.modal-content {
position: relative;
background-color: #fefefe;
margin: auto;
padding: 0;
width: 90%;
max-width: 1200px;
}
/* The Close Button */
.close {
color: white;
position: absolute;
top: 10px;
right: 25px;
font-size: 35px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #999;
text-decoration: none;
cursor: pointer;
}
.mySlides {
display: none;
}
.cursor {
cursor: pointer;
}
/* Next & previous buttons */
.prev,
.next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -50px;
color: white;
font-weight: bold;
font-size: 20px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
-webkit-user-select: none;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
img {
margin-bottom: -4px;
}
.caption-container {
text-align: center;
background-color: black;
padding: 2px 16px;
color: white;
}
.demo {
opacity: 0.6;
}
.active,
.demo:hover {
opacity: 1;
}
img.hover-shadow {
transition: 0.3s;
}
.hover-shadow:hover {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
} | 0.414425 | 0.143068 |
.SearchPage {
height: 100%;
background-color: rgb(229, 229, 229);
}
.search_head {
display: flex;
width: 100%;
height: auto;
left: 0px;
top: 27px;
background-color: #7e7a8f;
justify-content: space-between;
}
.search_my-account {
position: relative;
height: 68px;
font-family: Hind;
font-style: normal;
font-weight: bold;
font-size: 30px;
line-height: 62px;
letter-spacing: -0.2px;
color: #000000;
margin-top: 20px;
margin-left: 25px;
}
.search_search-button {
width: 390px;
height: 25px;
background: #ffffff;
border-radius: 35px;
border-style: none;
font-family: Hind;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 26px;
text-align: left;
color: #8a8a8a;
margin-top: 30px;
padding-left: 25px;
padding-bottom: 35px;
}
.search_search-button img {
margin-top: 5px;
margin-left: 265px;
}
.SearchPage h1 {
margin-left: 50px;
}
.search_degas {
width: 900px;
height: 35px;
text-align: left;
font-size: 24px;
font-weight: bold;
border: 0.5px solid gray;
padding: 10px;
margin-left: 50px;
}
.search_artsearch {
display: flex;
}
.search_resultslisting {
display: flex;
justify-content: space-around;
font-family: Hind;
font-style: normal;
font-weight: bold;
font-size: 19px;
line-height: 62px;
letter-spacing: -0.2px;
color: #8a8a8a;
margin-left: 15px;
}
.search_x {
margin-top: -35px;
position: relative;
left: 850px;
}
.search_box-mag {
padding-top: 15px;
padding-left: 15px;
border: 2px solid gray;
height: 39px;
width: 43px;
justify-items: center;
}
p {
color: black;
font-size: 27px;
}
.search_vl1 {
border-left: 1px solid gray;
height: 25px;
margin-top: 40px;
}
.search_vl2 {
border-left: 1px solid gray;
height: 25px;
margin-top: 40px;
}
.search_vl3 {
border-left: 1px solid gray;
height: 25px;
margin-top: 40px;
}
.search_container1 {
margin-left: 50px;
border: 1px solid gray;
border-spacing: 15px;
background-color: #ffffff;
width: 950px;
height: 200px;
padding-top: 45px;
padding-bottom: 25px;
padding-left: 35px;
list-style-type: none;
margin-bottom: 35px;
}
.search_description1 {
display: flex;
margin-left: 285px;
margin-top: -270px;
}
.search_list {
list-style-type: none;
line-height: 4.333em;
margin-right: 25px;
margin-bottom: 40px;
}
.search_artwork {
margin-top: -45px;
padding-top: 15px;
padding-bottom: 15px;
margin-right: 25px;
margin-left: 35px;
}
.search_description2 {
display: flex;
margin-left: 285px;
margin-top: -240px;
}
.search_description3 {
display: flex;
margin-left: 285px;
margin-top: -240px;
}
.search_description4 {
display: flex;
margin-left: 285px;
margin-top: -240px;
}
.search_See-more {
background: #e8840d;
border-radius: 50px;
color: white;
width: 145px;
height: 40px;
border-style: none;
margin-top: 15px;
margin-left: 35%;
margin-right: 35%;
} | src/main/SearchPage/SearchPage.css | .SearchPage {
height: 100%;
background-color: rgb(229, 229, 229);
}
.search_head {
display: flex;
width: 100%;
height: auto;
left: 0px;
top: 27px;
background-color: #7e7a8f;
justify-content: space-between;
}
.search_my-account {
position: relative;
height: 68px;
font-family: Hind;
font-style: normal;
font-weight: bold;
font-size: 30px;
line-height: 62px;
letter-spacing: -0.2px;
color: #000000;
margin-top: 20px;
margin-left: 25px;
}
.search_search-button {
width: 390px;
height: 25px;
background: #ffffff;
border-radius: 35px;
border-style: none;
font-family: Hind;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 26px;
text-align: left;
color: #8a8a8a;
margin-top: 30px;
padding-left: 25px;
padding-bottom: 35px;
}
.search_search-button img {
margin-top: 5px;
margin-left: 265px;
}
.SearchPage h1 {
margin-left: 50px;
}
.search_degas {
width: 900px;
height: 35px;
text-align: left;
font-size: 24px;
font-weight: bold;
border: 0.5px solid gray;
padding: 10px;
margin-left: 50px;
}
.search_artsearch {
display: flex;
}
.search_resultslisting {
display: flex;
justify-content: space-around;
font-family: Hind;
font-style: normal;
font-weight: bold;
font-size: 19px;
line-height: 62px;
letter-spacing: -0.2px;
color: #8a8a8a;
margin-left: 15px;
}
.search_x {
margin-top: -35px;
position: relative;
left: 850px;
}
.search_box-mag {
padding-top: 15px;
padding-left: 15px;
border: 2px solid gray;
height: 39px;
width: 43px;
justify-items: center;
}
p {
color: black;
font-size: 27px;
}
.search_vl1 {
border-left: 1px solid gray;
height: 25px;
margin-top: 40px;
}
.search_vl2 {
border-left: 1px solid gray;
height: 25px;
margin-top: 40px;
}
.search_vl3 {
border-left: 1px solid gray;
height: 25px;
margin-top: 40px;
}
.search_container1 {
margin-left: 50px;
border: 1px solid gray;
border-spacing: 15px;
background-color: #ffffff;
width: 950px;
height: 200px;
padding-top: 45px;
padding-bottom: 25px;
padding-left: 35px;
list-style-type: none;
margin-bottom: 35px;
}
.search_description1 {
display: flex;
margin-left: 285px;
margin-top: -270px;
}
.search_list {
list-style-type: none;
line-height: 4.333em;
margin-right: 25px;
margin-bottom: 40px;
}
.search_artwork {
margin-top: -45px;
padding-top: 15px;
padding-bottom: 15px;
margin-right: 25px;
margin-left: 35px;
}
.search_description2 {
display: flex;
margin-left: 285px;
margin-top: -240px;
}
.search_description3 {
display: flex;
margin-left: 285px;
margin-top: -240px;
}
.search_description4 {
display: flex;
margin-left: 285px;
margin-top: -240px;
}
.search_See-more {
background: #e8840d;
border-radius: 50px;
color: white;
width: 145px;
height: 40px;
border-style: none;
margin-top: 15px;
margin-left: 35%;
margin-right: 35%;
} | 0.533154 | 0.059921 |
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: #7f7fa7;
}
img {
vertical-align: middle;
}
.container {
position: relative;
}
.mySlides {
display: none;
}
.cursor {
cursor: pointer;
}
.prev,
.next {
cursor: pointer;
position: absolute;
top: 40%;
width: auto;
height: 10%;
padding: 16px;
margin-top: -50px;
color: white;
font-weight: bold;
font-size: 20px;
border-radius: 0 3px 3px 0;
user-select: none;
-webkit-user-select: none;
}
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
}
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
.caption-container {
text-align: center;
background-color: #222;
padding: 2px 16px;
color: white;
}
.row:after {
content: "";
display: table;
clear: both;
}
.column {
float: left;
width: 16.66%;
}
.demo {
opacity: 0.6;
}
.active,
.demo:hover {
opacity: 1;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #000099;
color: white;
}
.topnav a.active:hover {
background-color: #ddd;
color: black;
}
.topnav .icon {
display: none;
}
.cheese {
margin-left: 1%;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.cheese1-5 {
margin-left: 1%;
font-size: medium;
}
.cheese-pic {
size: 50, 50;
}
.cheese-h3 {
margin-left: 3%;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.cheese2 {
font-size: medium;
}
.cheese3 {
margin-left: 1%;
padding: 1%;
}
.column {
float: left;
width: 18.5%;
height: 5%;
padding: 5px;
}
.row::after {
content: "";
clear: both;
display: table;
}
@media screen and (max-width: 600px) {
.topnav a:not(:first-child) {
display: none;
}
.topnav a.icon {
float: right;
display: block;
}
}
@media screen and (max-width: 600px) {
.topnav.responsive {
position: relative;
}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
} | style.css | body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: #7f7fa7;
}
img {
vertical-align: middle;
}
.container {
position: relative;
}
.mySlides {
display: none;
}
.cursor {
cursor: pointer;
}
.prev,
.next {
cursor: pointer;
position: absolute;
top: 40%;
width: auto;
height: 10%;
padding: 16px;
margin-top: -50px;
color: white;
font-weight: bold;
font-size: 20px;
border-radius: 0 3px 3px 0;
user-select: none;
-webkit-user-select: none;
}
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
}
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
.caption-container {
text-align: center;
background-color: #222;
padding: 2px 16px;
color: white;
}
.row:after {
content: "";
display: table;
clear: both;
}
.column {
float: left;
width: 16.66%;
}
.demo {
opacity: 0.6;
}
.active,
.demo:hover {
opacity: 1;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #000099;
color: white;
}
.topnav a.active:hover {
background-color: #ddd;
color: black;
}
.topnav .icon {
display: none;
}
.cheese {
margin-left: 1%;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.cheese1-5 {
margin-left: 1%;
font-size: medium;
}
.cheese-pic {
size: 50, 50;
}
.cheese-h3 {
margin-left: 3%;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.cheese2 {
font-size: medium;
}
.cheese3 {
margin-left: 1%;
padding: 1%;
}
.column {
float: left;
width: 18.5%;
height: 5%;
padding: 5px;
}
.row::after {
content: "";
clear: both;
display: table;
}
@media screen and (max-width: 600px) {
.topnav a:not(:first-child) {
display: none;
}
.topnav a.icon {
float: right;
display: block;
}
}
@media screen and (max-width: 600px) {
.topnav.responsive {
position: relative;
}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
} | 0.571169 | 0.106133 |
#ib-container {
position: absolute;
background: #fff;
z-index: 1000;
padding: 10px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
height: 60%;
}
#ib-image {
display: block;
width: 100%;
height: 100%;
}
#ib-overlay {
position: fixed;
background: #000;
display: none;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 999;
}
#ib-container, #ib-overlay, #ib-next, #ib-prev {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
/* @end */
/* @group Title */
#ib-title-mask {
position: relative;
overflow: hidden;
padding-left: 10px;
margin: 0 -10px;
background: #fff;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
#ib-title {
position: relative;
display: block;
font: normal 12px/16px Arial, sans-serif;
text-align: left;
color: #606060;
padding: 10px 0px;
}
/* @group Gallery Title */
#ib-gallery-title {
color: #888;
font: normal 11px/16px Arial, sans-serif;
}
#ib-gallery-title.ib-hastitle { margin-top: 0px; }
/* @group Gallery List */
#ib-gallery-list strong, #ib-gallery-list a {
padding: 2px 3px;
margin-right: 2px;
color: #777;
cursor: default;
}
#ib-gallery-list a {
color: #ccc;
cursor: pointer;
text-decoration: none;
}
#ib-gallery-list a:hover { color: #777; }
/* @end */
/* @end */
/* @end */
/* @group Controls */
#ib-close, #ib-next div, #ib-prev div {
position: absolute;
width: 30px;
height: 30px;
background: url(../images/imagebox_sprite.png);
}
#ib-close {
visibility: hidden;
right: 0px;
top: 0px;
cursor: pointer;
z-index: 2;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
#ib-next, #ib-prev {
position: absolute;
display: none;
right: 0;
top: 0;
width: 40%;
height: 100%;
cursor: pointer;
z-index: 1;
-webkit-transition: opacity .2s linear;
-moz-transition: opacity .2s linear;
-o-transition: opacity .2s linear;
-ms-transition: opacity .2s linear;
transition: opacity .2s linear;
}
#ib-prev {
left: 0;
}
#ib-next:hover, #ib-prev:hover {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
#ib-next div, #ib-prev div {
right: 20px;
top: 50%;
margin-top: -15px;
background-position: -60px 0;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
#ib-prev div {
left: 20px;
background-position: -30px 0;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
/* @end */
/* @group Shadow */
.ib-shadow {
position: absolute;
z-index: -2;
}
/* @group Shadow Corners */
#ib-nw, #ib-ne, #ib-se, #ib-sw {
width: 20px;
height: 20px;
background: url(../images/imagebox_sprite.png);
}
#ib-nw {
left: -20px;
top: -20px;
background-position: -60px -30px;
}
#ib-ne {
right: -20px;
top: -20px;
background-position: -40px -30px;
}
#ib-se {
right: -20px;
bottom: -20px;
background-position: 0 -30px;
}
#ib-sw {
left: -20px;
bottom: -20px;
background-position: -20px -30px;
}
/* @end */
/* @group Shadow Sides */
#ib-n, #ib-s {
left: 0;
width: 100%;
height: 20px;
background: url(../images/shadow-v.png);
}
#ib-n {
top: -20px;
background-position: 0 -20px;
}
#ib-s { bottom: -20px; }
#ib-w, #ib-e {
top: 0;
width: 20px;
height: 100%;
background: url(../images/shadow-h.png);
}
#ib-w {
left: -20px;
background-position: -20px 0;
}
#ib-e { right: -20px; }
/* @end */
/* @end */
.ib-notrigger { cursor: default; }
/*
* Imagebox • JavaScript Application
* Version 2.0.0
* http://codecanyon.net/item/imagebox-image-viewing-script/89035
*
* Copyright (c) 2009-2012, <NAME>
*/ | DaiJiale-Front-End/FE_Templates/jquery-zhuanpan/css/imagebox.css |
#ib-container {
position: absolute;
background: #fff;
z-index: 1000;
padding: 10px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
height: 60%;
}
#ib-image {
display: block;
width: 100%;
height: 100%;
}
#ib-overlay {
position: fixed;
background: #000;
display: none;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 999;
}
#ib-container, #ib-overlay, #ib-next, #ib-prev {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
/* @end */
/* @group Title */
#ib-title-mask {
position: relative;
overflow: hidden;
padding-left: 10px;
margin: 0 -10px;
background: #fff;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
#ib-title {
position: relative;
display: block;
font: normal 12px/16px Arial, sans-serif;
text-align: left;
color: #606060;
padding: 10px 0px;
}
/* @group Gallery Title */
#ib-gallery-title {
color: #888;
font: normal 11px/16px Arial, sans-serif;
}
#ib-gallery-title.ib-hastitle { margin-top: 0px; }
/* @group Gallery List */
#ib-gallery-list strong, #ib-gallery-list a {
padding: 2px 3px;
margin-right: 2px;
color: #777;
cursor: default;
}
#ib-gallery-list a {
color: #ccc;
cursor: pointer;
text-decoration: none;
}
#ib-gallery-list a:hover { color: #777; }
/* @end */
/* @end */
/* @end */
/* @group Controls */
#ib-close, #ib-next div, #ib-prev div {
position: absolute;
width: 30px;
height: 30px;
background: url(../images/imagebox_sprite.png);
}
#ib-close {
visibility: hidden;
right: 0px;
top: 0px;
cursor: pointer;
z-index: 2;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
#ib-next, #ib-prev {
position: absolute;
display: none;
right: 0;
top: 0;
width: 40%;
height: 100%;
cursor: pointer;
z-index: 1;
-webkit-transition: opacity .2s linear;
-moz-transition: opacity .2s linear;
-o-transition: opacity .2s linear;
-ms-transition: opacity .2s linear;
transition: opacity .2s linear;
}
#ib-prev {
left: 0;
}
#ib-next:hover, #ib-prev:hover {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
#ib-next div, #ib-prev div {
right: 20px;
top: 50%;
margin-top: -15px;
background-position: -60px 0;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
#ib-prev div {
left: 20px;
background-position: -30px 0;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
/* @end */
/* @group Shadow */
.ib-shadow {
position: absolute;
z-index: -2;
}
/* @group Shadow Corners */
#ib-nw, #ib-ne, #ib-se, #ib-sw {
width: 20px;
height: 20px;
background: url(../images/imagebox_sprite.png);
}
#ib-nw {
left: -20px;
top: -20px;
background-position: -60px -30px;
}
#ib-ne {
right: -20px;
top: -20px;
background-position: -40px -30px;
}
#ib-se {
right: -20px;
bottom: -20px;
background-position: 0 -30px;
}
#ib-sw {
left: -20px;
bottom: -20px;
background-position: -20px -30px;
}
/* @end */
/* @group Shadow Sides */
#ib-n, #ib-s {
left: 0;
width: 100%;
height: 20px;
background: url(../images/shadow-v.png);
}
#ib-n {
top: -20px;
background-position: 0 -20px;
}
#ib-s { bottom: -20px; }
#ib-w, #ib-e {
top: 0;
width: 20px;
height: 100%;
background: url(../images/shadow-h.png);
}
#ib-w {
left: -20px;
background-position: -20px 0;
}
#ib-e { right: -20px; }
/* @end */
/* @end */
.ib-notrigger { cursor: default; }
/*
* Imagebox • JavaScript Application
* Version 2.0.0
* http://codecanyon.net/item/imagebox-image-viewing-script/89035
*
* Copyright (c) 2009-2012, <NAME>
*/ | 0.228587 | 0.078819 |
* {
box-sizing: border-box;
}
body{
background-color: lightblue;
}
.container {
text-align: center;
}
/** HEADER **/
header, panel-heading{
background-color: white;
text-align: center;
font-size: 2em;
font-family: Times New Roman,Century;
width: 100%;
padding-bottom: 10px;
}
/* END HEADER */
/** FOOTER **/
footer, panel-footer {
background-color: yellowgreen;
width: 100%;
font-family: Times New Roman,Century;
font-size: 2em;
text-align: center;
padding-bottom:20px;
}
/*footer .container {
background-color: silver;
width:auto;
}
*/
#Morteza{
margin-bottom: 10px;
}
footer .ig-account{
font-family: Times New Roman,Century;
font-size: 1em;
text-align: center;
}
#phone {
margin-top: 5px;
margin-bottom: 5px;
background-color: black;
color: white;
font: bold;
font-family: Times New Roman,Century;
font-size: 1.2em;
width: 100%;
text-align: center;
}
#phone a { /* Phone number */
text-align: center;
padding-bottom: 0;
font-family: Times New Roman,Century;
font-size: 2em;
}
#Copyright {
text-align: center;
background-color: black;
color: white;
padding-bottom: 10px;
font: bold;
font-family: Times New Roman,Century;
font-size: 1.2em;
width: 100%;
margin-left: 0;
margin-right: 0;
}
/* END FOOTER */
#logo-image {
background: url(images\logo.jpg) no-repeat;
height:150px;
width: 150px;
margin: 10px 15px 10px 0;
}
#homepage-pic{
box-sizing: border-box;
width: 100%;
}
/*detail-snippet*/
#detail{
color: blue;
text-align: center;
margin-left: 5px;
padding-left: 0px;
font-size: 2em;
font: bold;
border: burlywood;
width: 50%;
}
#detail-pic{
height: 20%;
width: 20%;
align-items: left;
margin-top: 10px;
padding-left: 5px;
padding-right: 5px;
}
@media (min-width: 992px) {
.col-lg-4 {
width: 33.33333333%;
}
.col-lg-3 {
width: 25%;
}
}
/*** In the tablet view (between 768px and 991px, inclusively). ***/
@media (min-width: 768px) and (max-width: 991px) {
.col-md-4 {
width: 33.33333333%;
}
}
/*** Mobile device
Mobile view should appear only if the width of the browser is equal to or less than 767px. ***/
@media (max-width: 767px) {
.col-sm-12 {
width: 100%;
}
.col-sm-6 {
width: 50%;
}
} | css/style.css | * {
box-sizing: border-box;
}
body{
background-color: lightblue;
}
.container {
text-align: center;
}
/** HEADER **/
header, panel-heading{
background-color: white;
text-align: center;
font-size: 2em;
font-family: Times New Roman,Century;
width: 100%;
padding-bottom: 10px;
}
/* END HEADER */
/** FOOTER **/
footer, panel-footer {
background-color: yellowgreen;
width: 100%;
font-family: Times New Roman,Century;
font-size: 2em;
text-align: center;
padding-bottom:20px;
}
/*footer .container {
background-color: silver;
width:auto;
}
*/
#Morteza{
margin-bottom: 10px;
}
footer .ig-account{
font-family: Times New Roman,Century;
font-size: 1em;
text-align: center;
}
#phone {
margin-top: 5px;
margin-bottom: 5px;
background-color: black;
color: white;
font: bold;
font-family: Times New Roman,Century;
font-size: 1.2em;
width: 100%;
text-align: center;
}
#phone a { /* Phone number */
text-align: center;
padding-bottom: 0;
font-family: Times New Roman,Century;
font-size: 2em;
}
#Copyright {
text-align: center;
background-color: black;
color: white;
padding-bottom: 10px;
font: bold;
font-family: Times New Roman,Century;
font-size: 1.2em;
width: 100%;
margin-left: 0;
margin-right: 0;
}
/* END FOOTER */
#logo-image {
background: url(images\logo.jpg) no-repeat;
height:150px;
width: 150px;
margin: 10px 15px 10px 0;
}
#homepage-pic{
box-sizing: border-box;
width: 100%;
}
/*detail-snippet*/
#detail{
color: blue;
text-align: center;
margin-left: 5px;
padding-left: 0px;
font-size: 2em;
font: bold;
border: burlywood;
width: 50%;
}
#detail-pic{
height: 20%;
width: 20%;
align-items: left;
margin-top: 10px;
padding-left: 5px;
padding-right: 5px;
}
@media (min-width: 992px) {
.col-lg-4 {
width: 33.33333333%;
}
.col-lg-3 {
width: 25%;
}
}
/*** In the tablet view (between 768px and 991px, inclusively). ***/
@media (min-width: 768px) and (max-width: 991px) {
.col-md-4 {
width: 33.33333333%;
}
}
/*** Mobile device
Mobile view should appear only if the width of the browser is equal to or less than 767px. ***/
@media (max-width: 767px) {
.col-sm-12 {
width: 100%;
}
.col-sm-6 {
width: 50%;
}
} | 0.442637 | 0.120516 |
body {
margin: 0;
padding: 0;
overflow-y: scroll;
overflow-x: hidden;
background-color: #fff100;
background-size: cover;
}
.headline {
width: 100%;
position: absolute;
text-align: center;
box-sizing: border-box;
padding: 0;
margin: 0;
}
.headline h1 {
font-size: 4.6em;
font-family: 'Oleo Script', cursive;
color: #fff;
height: 25px;
display: inline-block;
animation: mymove 1s;
transform: rotate(-10deg);
position: relative;
top: 0;
text-shadow: 2px 2px #999;
}
@-webkit-keyframes mymove
{
0% {top: 5em; transform: rotate(-10deg);}
90% {transform: rotate(-350deg); font-size: 6em;}
100% {transform: rotate(-360deg);}
}
@keyframes mymove
{
0% {top: 5em; transform: rotate(-10deg);}
90% {transform: rotate(-350deg); font-size: 6em;}
100% {transform: rotate(-360deg);}
}
.headline h2:after {
content: url(../image/lower-sun.png);
font-size: 0;
line-height: 0;
position: relative;
}
.headline h2{
font-size: 2.4em;
font-family: 'oleo Script', cursive;
color: #555;
padding-top: 0.5em;
transform: rotate(-10deg);
position: relative;
animation: anothermove 1s;
}
@-webkit-keyframes anothermove
{
0% {top: 10em; opacity: 0; transform: rotate(-10deg);}
50% {top: 0em; opacity: 0.5; transform: rotate(-10deg);}
100% {opacity: 1; transform: rotate(-10deg);}
}
@keyframes anothermove
{
0% {top: 10em; opacity: 0; transform: rotate(-10deg);}
50% {top: 0em; opacity: 0.5; transform: rotate(-10deg);}
100% {opacity: 1; transform: rotate(-10deg);}
}
.bubble {
width: 100%;
text-align: center;
box-sizing: border-box;
padding: 0 auto;
margin: 0 auto;
position: absolute;
top: 18em;
left: -11.9em;
opacity: 0;
-webkit-animation: swing 0.5s ease;
animation: swing 0.5s ease;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.bubble img {
width: 12em;
}
.text {
width: 100%;
text-align: center;
box-sizing: border-box;
font-size: 1.8em;
font-family: 'Oleo Script', cursive;
color: rgb(55, 55, 55);
letter-spacing: 0.06em;
position: absolute;
top: 8.5em;
left: -5.5em;
z-index: 3333333;
-webkit-animation: swing 0.7s ease;
animation: swing 0.7s ease;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
@-webkit-keyframes swing
{
50%
{
-webkit-transform: translateX(6px);
transform: translateX(6px);
}
100%
{
-webkit-transform: translateX(0px);
transform: translateX(0px);
}
}
@keyframes swing
{
50%
{
-webkit-transform: translateX(6px);
transform: translateX(6px);
}
100%
{
-webkit-transform: translateX(0px);
transform: translateX(0px);
}
}
#alter {
font-size: 1.4em;
padding-top: 1em;
}
#inner-text img {
width: 1.5em;
cursor: pointer;
}
.decor {
position: absolute;
width: 100%;
text-align: center;
box-sizing: border-box;
padding: 0 auto;
margin: 0 auto;
z-index: 222222222;
}
.bling,
.bling2,
.bling3,
.bling4 {
width: 100%;
text-align: center;
box-sizing: border-box;
padding: 0 auto;
margin: 0 auto;
z-index: 222222222;
position: absolute;
}
.bling {
top: 21.5em;
left: 5.5em;
-webkit-animation: swin 0.4s ease;
animation: swin 0.4s ease;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
@-webkit-keyframes swin
{
50%
{
-webkit-transform: translateY(-4px);
transform: translateY(-4px);
}
100%
{
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
}
@keyframes swin
{
50%
{
-webkit-transform: translateY(-4px);
transform: translateY(-4px);
}
100%
{
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
}
.bling img {
width: 5em;
}
.bling2 {
top: 21.8em;
right: 4.6em;
-webkit-animation: swi 0.4s ease;
animation: swi 0.4s ease;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
@-webkit-keyframes swi
{
50%
{
-webkit-transform: translateY(4px);
transform: translateY(4px);
}
100%
{
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
}
@keyframes swi
{
50%
{
-webkit-transform: translateY(4px);
transform: translateY(4px);
}
100%
{
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
}
.bling2 img {
width: 5.5em;
}
.bling3 {
top: 17.5em;
left: 1.5em;
-webkit-animation: swi 0.4s ease;
animation: swi 0.4s ease;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.bling3 img {
width: 4.5em;
}
.bling4 {
top: 19.8em;
right: 3.5em;
-webkit-animation: swin 0.4s ease;
animation: swin 0.4s ease;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.bling4 img {
width: 1.2em;
}
.main {
width: 100%;
padding-top: 14.8em;
}
.toast {
width: 100%;
text-align: center;
box-sizing: border-box;
padding: 0 auto;
margin: 0 auto;
position: relative;
top: 10em;
left: -0.5em;
z-index: 11;
}
.jump {
-webkit-animation: action 0.8s ease-in-out;
animation: action 0.8s ease-in-out;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
animation-delay: 0.6s;
}
@-webkit-keyframes action {
10%
{
-webkit-transform: translateY(1.2em);
transform: translateY(1.2em);
}
50%
{
-webkit-transform: translateY(-12em);
transform: translateY(-12em);
}
100%
{
-webkit-transform: translateY(0em);
transform: translateY(0em);
}
}
@keyframes action {
10%
{
-webkit-transform: translateY(1.2em);
transform: translateY(1.2em);
}
50%
{
-webkit-transform: translateY(-12em);
transform: translateY(-12em);
}
100%
{
-webkit-transform: translateY(0em);
transform: translateY(0em);
}
}
.toast img {
width: 11em;
}
.toaster {
width: 100%;
text-align: center;
box-sizing: border-box;
padding: 0 auto;
margin: 0 auto;
position: relative;
z-index: 111111;
}
.toaster img {
width: 14.5em;
}
.handle {
width: 100%;
text-align: center;
box-sizing: border-box;
padding: 0 auto;
margin: 0 auto;
position: relative;
top: -5.2em;
left: 5.3em;
z-index: 1111111;
transition: 0.1s ease-out;
float: left;
}
.slide{
top: -9.2em;
left: 5.8em;
}
.handle img {
width: 2.6em;
cursor: pointer;
}
#arrow {
position: absolute;
top: -0.5em;
animation: colorchange 0.8s infinite;
}
@keyframes colorchange {
50% {opacity: 0;}
100% {opacity: 1;}
}
@-webkit-keyframes colorchange {
50% {opacity: 0;}
100% {opacity: 1;}
}
/*Style for the pop-up screen*/
.mrtoast {
position: absolute;
top: 0;
z-index: 3333333;
width: 100%;
padding-top: 15em;
}
.toast2 {
text-align: center;
position: relative;
left: 9em;
}
.toast-img {
display: inline-block;
}
.mrtoast img {
width: 13.2em;
}
.choices{
display: inline-block;
position: relative;
top: 3.5em;
width: 15em;
margin-left: 2em;
}
.choices h2{
font-family: 'oleo Script', cursive;
font-size: 1.8em;
color: #ef4136;
padding-bottom: 1em;
padding-top: 1em;
border-radius: 15px 15px;
border-style: dotted;
border-color: #ef4136;
border-width: 2.5px;
}
.choices li{
font-family: 'raleway', sans-serif;
font-weight: bold;
font-size: 1em;
letter-spacing: 0.9px;
padding-top: 1em;
padding-bottom: 1em;
background: linear-gradient(36deg, rgba(255, 255, 255, 1) 22%, rgba(232, 232, 232, 1) 100%);
color: #555;
width: 100%;
cursor: pointer;
border-radius: 2px 2px;
border: 0.9px #eee solid;
margin: 0.6em auto;
}
#dressing-choices img{
width: 2.5em;
position: absolute;
animation: colorchange 0.8s infinite;
cursor: pointer;
}
/*---Adding toppings to Mr. Toast---*/
.toast3 {
text-align: center;
}
.topping-img {
text-align: center;
position: relative;
}
#tomato,
#banana,
#egg {
width: 9em;
position: relative;
}
#tomato {
left: 9em;
top: -1em;
}
#banana {
left: 1.5em;
top: -3.5em;
}
#egg {
left: -5em;
top: -2em;
}
#topping-choices {
position: relative;
top: -8.1em;
right: -15.8em;
}
#topping-choices p {
font-family: 'lato', sans-serif;
font-size: 0.9em;
line-height: 1.5em;
color: #fff;
padding: 0.8em;
animation: appear 1s;
opacity: 1;
}
@keyframes appear {
0% {opacity: 0;}
100% {opacity: 1;}
}
@-webkit-keyframes appear {
0% {opacity: 0;}
100% {opacity: 1;}
}
#topping-choices h3 {
font-family: 'oleo Script', cursive;
font-size: 1.4em;
color: #555;
cursor: pointer;
text-decoration: underline;
animation: swing 0.5s infinite;
} | css/style.css | body {
margin: 0;
padding: 0;
overflow-y: scroll;
overflow-x: hidden;
background-color: #fff100;
background-size: cover;
}
.headline {
width: 100%;
position: absolute;
text-align: center;
box-sizing: border-box;
padding: 0;
margin: 0;
}
.headline h1 {
font-size: 4.6em;
font-family: 'Oleo Script', cursive;
color: #fff;
height: 25px;
display: inline-block;
animation: mymove 1s;
transform: rotate(-10deg);
position: relative;
top: 0;
text-shadow: 2px 2px #999;
}
@-webkit-keyframes mymove
{
0% {top: 5em; transform: rotate(-10deg);}
90% {transform: rotate(-350deg); font-size: 6em;}
100% {transform: rotate(-360deg);}
}
@keyframes mymove
{
0% {top: 5em; transform: rotate(-10deg);}
90% {transform: rotate(-350deg); font-size: 6em;}
100% {transform: rotate(-360deg);}
}
.headline h2:after {
content: url(../image/lower-sun.png);
font-size: 0;
line-height: 0;
position: relative;
}
.headline h2{
font-size: 2.4em;
font-family: 'oleo Script', cursive;
color: #555;
padding-top: 0.5em;
transform: rotate(-10deg);
position: relative;
animation: anothermove 1s;
}
@-webkit-keyframes anothermove
{
0% {top: 10em; opacity: 0; transform: rotate(-10deg);}
50% {top: 0em; opacity: 0.5; transform: rotate(-10deg);}
100% {opacity: 1; transform: rotate(-10deg);}
}
@keyframes anothermove
{
0% {top: 10em; opacity: 0; transform: rotate(-10deg);}
50% {top: 0em; opacity: 0.5; transform: rotate(-10deg);}
100% {opacity: 1; transform: rotate(-10deg);}
}
.bubble {
width: 100%;
text-align: center;
box-sizing: border-box;
padding: 0 auto;
margin: 0 auto;
position: absolute;
top: 18em;
left: -11.9em;
opacity: 0;
-webkit-animation: swing 0.5s ease;
animation: swing 0.5s ease;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.bubble img {
width: 12em;
}
.text {
width: 100%;
text-align: center;
box-sizing: border-box;
font-size: 1.8em;
font-family: 'Oleo Script', cursive;
color: rgb(55, 55, 55);
letter-spacing: 0.06em;
position: absolute;
top: 8.5em;
left: -5.5em;
z-index: 3333333;
-webkit-animation: swing 0.7s ease;
animation: swing 0.7s ease;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
@-webkit-keyframes swing
{
50%
{
-webkit-transform: translateX(6px);
transform: translateX(6px);
}
100%
{
-webkit-transform: translateX(0px);
transform: translateX(0px);
}
}
@keyframes swing
{
50%
{
-webkit-transform: translateX(6px);
transform: translateX(6px);
}
100%
{
-webkit-transform: translateX(0px);
transform: translateX(0px);
}
}
#alter {
font-size: 1.4em;
padding-top: 1em;
}
#inner-text img {
width: 1.5em;
cursor: pointer;
}
.decor {
position: absolute;
width: 100%;
text-align: center;
box-sizing: border-box;
padding: 0 auto;
margin: 0 auto;
z-index: 222222222;
}
.bling,
.bling2,
.bling3,
.bling4 {
width: 100%;
text-align: center;
box-sizing: border-box;
padding: 0 auto;
margin: 0 auto;
z-index: 222222222;
position: absolute;
}
.bling {
top: 21.5em;
left: 5.5em;
-webkit-animation: swin 0.4s ease;
animation: swin 0.4s ease;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
@-webkit-keyframes swin
{
50%
{
-webkit-transform: translateY(-4px);
transform: translateY(-4px);
}
100%
{
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
}
@keyframes swin
{
50%
{
-webkit-transform: translateY(-4px);
transform: translateY(-4px);
}
100%
{
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
}
.bling img {
width: 5em;
}
.bling2 {
top: 21.8em;
right: 4.6em;
-webkit-animation: swi 0.4s ease;
animation: swi 0.4s ease;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
@-webkit-keyframes swi
{
50%
{
-webkit-transform: translateY(4px);
transform: translateY(4px);
}
100%
{
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
}
@keyframes swi
{
50%
{
-webkit-transform: translateY(4px);
transform: translateY(4px);
}
100%
{
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
}
.bling2 img {
width: 5.5em;
}
.bling3 {
top: 17.5em;
left: 1.5em;
-webkit-animation: swi 0.4s ease;
animation: swi 0.4s ease;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.bling3 img {
width: 4.5em;
}
.bling4 {
top: 19.8em;
right: 3.5em;
-webkit-animation: swin 0.4s ease;
animation: swin 0.4s ease;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.bling4 img {
width: 1.2em;
}
.main {
width: 100%;
padding-top: 14.8em;
}
.toast {
width: 100%;
text-align: center;
box-sizing: border-box;
padding: 0 auto;
margin: 0 auto;
position: relative;
top: 10em;
left: -0.5em;
z-index: 11;
}
.jump {
-webkit-animation: action 0.8s ease-in-out;
animation: action 0.8s ease-in-out;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
animation-delay: 0.6s;
}
@-webkit-keyframes action {
10%
{
-webkit-transform: translateY(1.2em);
transform: translateY(1.2em);
}
50%
{
-webkit-transform: translateY(-12em);
transform: translateY(-12em);
}
100%
{
-webkit-transform: translateY(0em);
transform: translateY(0em);
}
}
@keyframes action {
10%
{
-webkit-transform: translateY(1.2em);
transform: translateY(1.2em);
}
50%
{
-webkit-transform: translateY(-12em);
transform: translateY(-12em);
}
100%
{
-webkit-transform: translateY(0em);
transform: translateY(0em);
}
}
.toast img {
width: 11em;
}
.toaster {
width: 100%;
text-align: center;
box-sizing: border-box;
padding: 0 auto;
margin: 0 auto;
position: relative;
z-index: 111111;
}
.toaster img {
width: 14.5em;
}
.handle {
width: 100%;
text-align: center;
box-sizing: border-box;
padding: 0 auto;
margin: 0 auto;
position: relative;
top: -5.2em;
left: 5.3em;
z-index: 1111111;
transition: 0.1s ease-out;
float: left;
}
.slide{
top: -9.2em;
left: 5.8em;
}
.handle img {
width: 2.6em;
cursor: pointer;
}
#arrow {
position: absolute;
top: -0.5em;
animation: colorchange 0.8s infinite;
}
@keyframes colorchange {
50% {opacity: 0;}
100% {opacity: 1;}
}
@-webkit-keyframes colorchange {
50% {opacity: 0;}
100% {opacity: 1;}
}
/*Style for the pop-up screen*/
.mrtoast {
position: absolute;
top: 0;
z-index: 3333333;
width: 100%;
padding-top: 15em;
}
.toast2 {
text-align: center;
position: relative;
left: 9em;
}
.toast-img {
display: inline-block;
}
.mrtoast img {
width: 13.2em;
}
.choices{
display: inline-block;
position: relative;
top: 3.5em;
width: 15em;
margin-left: 2em;
}
.choices h2{
font-family: 'oleo Script', cursive;
font-size: 1.8em;
color: #ef4136;
padding-bottom: 1em;
padding-top: 1em;
border-radius: 15px 15px;
border-style: dotted;
border-color: #ef4136;
border-width: 2.5px;
}
.choices li{
font-family: 'raleway', sans-serif;
font-weight: bold;
font-size: 1em;
letter-spacing: 0.9px;
padding-top: 1em;
padding-bottom: 1em;
background: linear-gradient(36deg, rgba(255, 255, 255, 1) 22%, rgba(232, 232, 232, 1) 100%);
color: #555;
width: 100%;
cursor: pointer;
border-radius: 2px 2px;
border: 0.9px #eee solid;
margin: 0.6em auto;
}
#dressing-choices img{
width: 2.5em;
position: absolute;
animation: colorchange 0.8s infinite;
cursor: pointer;
}
/*---Adding toppings to Mr. Toast---*/
.toast3 {
text-align: center;
}
.topping-img {
text-align: center;
position: relative;
}
#tomato,
#banana,
#egg {
width: 9em;
position: relative;
}
#tomato {
left: 9em;
top: -1em;
}
#banana {
left: 1.5em;
top: -3.5em;
}
#egg {
left: -5em;
top: -2em;
}
#topping-choices {
position: relative;
top: -8.1em;
right: -15.8em;
}
#topping-choices p {
font-family: 'lato', sans-serif;
font-size: 0.9em;
line-height: 1.5em;
color: #fff;
padding: 0.8em;
animation: appear 1s;
opacity: 1;
}
@keyframes appear {
0% {opacity: 0;}
100% {opacity: 1;}
}
@-webkit-keyframes appear {
0% {opacity: 0;}
100% {opacity: 1;}
}
#topping-choices h3 {
font-family: 'oleo Script', cursive;
font-size: 1.4em;
color: #555;
cursor: pointer;
text-decoration: underline;
animation: swing 0.5s infinite;
} | 0.331228 | 0.069007 |
html,
body {
margin: 0;
font-size: 100%;
font-family: 'Raleway', sans-serif;
background: #fff;
}
body a {
text-decoration: none;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
a:hover {
text-decoration: none;
}
input[type="button"],
input[type="submit"] {
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
font-family: 'Raleway', sans-serif;
font-weight: 600;
}
p {
margin: 0;
}
ul {
margin: 0;
padding: 0;
}
label {
margin: 0;
}
/*--Banner stats here--*/
.w3-agile-dot {
background: url(../images/dott.png)repeat 0px 0px;
background-size: 2px;
-webkit-background-size: 2px;
-moz-background-size: 2px;
-o-background-size: 2px;
-ms-background-size: 2px;
padding: 0em 0 21.5em;
}
/*--header--*/
.header-main {
background: rgba(0, 0, 0, 0.55);
}
/*--header end here--*/
.banner {
background: url(../images/bann1.jpg)no-repeat center;
background-size: cover;
position: relative;
}
.banner1 {
background: url(../images/banner.jpg)no-repeat;
min-height: 41px;
background-size: cover;
}
/*-- Navbar --*/
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: transparent;
}
.navbar-default .navbar-brand {
font-size: 3em;
color: #FFF;
text-shadow: 3px 3px #000000;
text-decoration: none;
font-weight: bold;
}
.navbar {
margin-bottom: 0px;
}
.navbar-nav>li {
float: left;
margin-right: 23px;
}
.navbar-default .navbar-nav>li>a {
color: #FFFEFE;
letter-spacing: 2px;
text-transform: uppercase;
padding: 29px 13px;
font-weight: 400;
font-size: 13px;
}
.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover {
color: #fff;
background: none !important;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #FFF;
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
background-color: #303841;
border-color: #fff;
}
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
color: #e00231;
text-shadow: 1px 1px #000;
background-color: transparent;
}
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
color: #fff;
background-color: #EB4549;
}
a.active.scroll {
color: #e00231 !important;
text-shadow: 1px 1px #000;
}
.navbar-default {
border-color: #e7e7e7;
border: none !important;
background: none !important;
}
.navbar {
border-radius: 0 !important;
}
.navbar-brand {
float: left;
height: 50px;
padding: 15px 15px;
line-height: 45px;
}
/*-- nav-effect --*/
/* Effect 13: three circles */
.cl-effect-13 ul li a {
-webkit-transition: color 0.3s;
-moz-transition: color 0.3s;
transition: color 0.3s;
}
.cl-effect-13 ul li a::before {
position: absolute;
top: 50%;
left: 50%;
color: transparent;
content: '.';
text-shadow: 0 0 transparent;
font-size: 2em;
-webkit-transition: text-shadow 0.3s, color 0.3s;
-moz-transition: text-shadow 0.3s, color 0.3s;
transition: text-shadow 0.3s, color 0.3s;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
transform: translateX(-50%);
}
.cl-effect-13 ul li a:hover::before,
.cl-effect-13 ul li a:focus::before,
ul.nav.navbar-nav li.active a::before {
color: #fff;
text-shadow: 10px 0 #fff, -10px 0 #fff;
}
.navbar-default {
background: rgba(0, 0, 0, 0.72);
border: none;
border-radius: 0;
}
.navbar-nav,
.header-top {
padding-right: 7em;
}
.header-nav {
position: relative;
}
.cl-effect-13 ul li a:hover::before,
.cl-effect-13 ul li a:focus::before,
ul.nav.navbar-nav li a.active::before {
color: #fff;
text-shadow: 10px 0 #fff, -10px 0 #fff;
}
/*-- //nav-effect --*/
.navbar-header h1 a {
font-size: 1.4em;
color: #FFF;
text-shadow: 3px 3px #000000;
text-decoration: none;
font-weight: bold;
line-height: 75px;
}
.navbar-brand {
float: left;
padding: 0 !important;
line-height: 45px;
}
/*-- /Navbar --*/
.banner-bottom-text h3 {
font-size: 4em;
color: rgb(255, 255, 255);
letter-spacing: 1px;
font-weight: 100;
text-align: left;
text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.76);
text-transform: capitalize;
font-family: 'Raleway', sans-serif;
}
.banner-bottom {
padding-top: 19em;
}
/*--//Banner ends here--*/
/*-- clickable --*/
.thim-click-to-bottom {
position: absolute;
bottom: 5%;
left: 49.5%;
/* width: 40px; */
/* height: 40px; */
/* font-size: 40px; */
/* line-height: 40px; */
-webkit-animation: bounce 2s infinite ease-in-out;
z-index: 99;
}
.thim-click-to-bottom i {
color: #fff;
font-size: 18px;
text-align: center;
}
@-webkit-keyframes bounce {
0%,
20%,
60%,
100% {
-ms-transform: translateY(0);
}
0%,
20%,
60%,
100% {
-o-transform: translateY(0);
}
0%,
20%,
60%,
100% {
-moz-transform: translateY(0);
}
0%,
20%,
60%,
100% {
-webkit-transform: translateY(0);
}
40% {
-webkit-transform: translateY(-20px);
}
80% {
-webkit-transform: translateY(-10px);
}
}
/*-- //clickable --*/
/*-- search --*/
.w3-agile-sectn_search {
position: relative;
}
.cd-main-header {
/* Force Hardware Acceleration in WebKit */
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
will-change: transform;
}
.cd-main-header {
-webkit-transition: -webkit-transform 0.3s;
-moz-transition: -moz-transform 0.3s;
transition: transform 0.3s;
}
.cd-main-content.nav-is-visible,
.cd-main-header.nav-is-visible {
-webkit-transform: translateX(-260px);
-moz-transform: translateX(-260px);
-ms-transform: translateX(-260px);
-o-transform: translateX(-260px);
transform: translateX(-260px);
}
.nav-on-left .cd-main-content.nav-is-visible,
.nav-on-left .cd-main-header.nav-is-visible {
-webkit-transform: translateX(260px);
/*-- w3layouts --*/
-moz-transform: translateX(260px);
-ms-transform: translateX(260px);
-o-transform: translateX(260px);
transform: translateX(260px);
}
.cd-header-buttons {
position: absolute;
display: inline-block;
top: -59px;
right: 1px;
}
.cd-header-buttons li {
display: inline-block;
}
.cd-search-trigger,
.cd-nav-trigger {
position: relative;
display: block;
width: 44px;
height: 44px;
overflow: hidden;
white-space: nowrap;
color: transparent;
z-index: 3;
background: #e00231;
}
.cd-search-trigger::before,
.cd-search-trigger::after {
/* search icon */
content: '';
position: absolute;
-webkit-transition: opacity 0.3s;
-moz-transition: opacity 0.3s;
transition: opacity 0.3s;
/* Force Hardware Acceleration in WebKit */
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.cd-search-trigger::before {
top: 11px;
left: 11px;
width: 18px;
height: 18px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
/*-- agileits-w3layouts --*/
border: 3px solid #fff;
}
.cd-search-trigger::after {
/* handle */
height: 3px;
width: 8px;
background: #fff;
bottom: 14px;
right: 11px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.cd-search-trigger span {
/* container for the X icon */
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
}
.cd-search-trigger span::before,
.cd-search-trigger span::after {
/* close icon */
content: '';
position: absolute;
display: inline-block;
height: 3px;
width: 22px;
top: 50%;
margin-top: -2px;
left: 50%;
margin-left: -11px;
background: #fff;
opacity: 0;
/* Force Hardware Acceleration in WebKit */
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-moz-transition: opacity 0.3s, -moz-transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
}
.cd-search-trigger span::before {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.cd-search-trigger span::after {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.cd-search-trigger.search-is-visible::before,
.cd-search-trigger.search-is-visible::after {
/* hide search icon */
-moz-opacity: 0;
opacity: 0;
}
.cd-search-trigger.search-is-visible span::before,
.cd-search-trigger.search-is-visible span::after {
/* show close icon */
-moz-opacity: 1;
opacity: 1;
}
.cd-search-trigger.search-is-visible span::before {
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-ms-transform: rotate(135deg);
-o-transform: rotate(135deg);
transform: rotate(135deg);
}
.cd-search-trigger.search-is-visible span::after {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.cd-search {
position: absolute;
width: 100%;
top: 0em;
left: 0;
z-index: 3;
opacity: 0;
visibility: hidden;
-webkit-transition: opacity .3s 0s, visibility 0s .3s;
-moz-transition: opacity .3s 0s, visibility 0s .3s;
transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-search input {
border-radius: 0;
border: none;
background: rgba(0, 0, 0, 0.75);
width: 100%;
padding: 0 5%;
-webkit-box-shadow: inset 0 3px 0 #e00231, 0 3px 6px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset 0 3px 0 #f5b120, 0 3px 6px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.84), 0 3px 6px rgba(0, 0, 0, 0.05);
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
-o-appearance: none;
appearance: none;
font-size: 15px;
padding: 1em 2em;
color: #fff;
letter-spacing: 1.5px;
}
.cd-search input::-webkit-input-placeholder {
color: #fff !important;
}
.cd-search input::-moz-placeholder {
color: #fff !important;
}
.cd-search input:-moz-placeholder {
color: #fff !important;
}
.cd-search input:-ms-input-placeholder {
color: #fff !important;
}
.cd-search input:focus {
outline: none;
}
.cd-search.is-visible {
-moz-opacity: 1;
opacity: 1;
visibility: visible;
-webkit-transition: opacity .3s 0s, visibility 0s 0s;
-moz-transition: opacity .3s 0s, visibility 0s 0s;
transition: opacity .3s 0s, visibility 0s 0s;
}
/*-- //search --*/
/*--social icons--*/
.w3-agile1-sectn-social ul {
padding: 0;
margin: 0;
}
.w3-agile1-sectn-social ul li {
display: inline-block;
}
.w3-agile1-sectn-social ul li a {
color: #333;
text-align: center;
}
.w3-agile1-sectn-social ul li a i.fa.fa-facebook,
.w3-agile1-sectn-social ul li a i.fa.fa-twitter,
.w3-agile1-sectn-social ul li a i.fa.fa-google-plus {
height: 35px;
width: 35px;
/* background: #FFFFFF; */
line-height: 37px;
margin: 0px 10px 0 0;
color: #ffffff;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.w3-agile1-sectn-social ul li a i.fa.fa-facebook:hover {
background: #3b5998;
color: #FFFFFF;
}
.w3-agile1-sectn-social ul li a i.fa.fa-twitter:hover {
background: #1da1f2;
color: #FFFFFF;
}
.w3-agile1-sectn-social ul li a i.fa.fa-google-plus:hover {
background: #dd4b39;
color: #FFFFFF;
}
.w3-agile1-sectn-social {
float: left;
}
/*--//social icons--*/
/*--modal--*/
.modal-content img {
width: 100%;
}
.modal-content h4 {
color: #000;
text-align: center;
font-size: 26px;
margin-bottom: .5em;
text-transform: uppercase;
}
.modal-content h5 {
color: #e00231;
padding: 15px 0 7px;
font-size: 22px;
}
.modal-content p {
color: #636363;
font-size: 14px;
line-height: 25px;
padding-top: 10px;
}
.modal-header {
padding: 30px;
border: none;
}
.modal-header .close {
float: right;
}
/*--//modal--*/
/*-- //Banner-Slider --*/
/*-- main --*/
.banner-btm-w3layouts,
.about,
.gallery,
.events,
.services-agileits-w3layouts,
.contact-sectn,
.cir_w3-agile_info,
.newsletter,
.testimonials {
padding: 6.5em 0;
}
h3.w3layouts-heading {
color: #000;
font-size: 3.5em;
font-weight: lighter;
letter-spacing: 1px;
text-transform: capitalize;
margin-bottom: 0.8em;
background: url(../images/black.png)no-repeat 4px 2px;
background-size: 34px;
padding-left: 43px;
}
h3.w3layouts-heading span {
font-weight: 700;
}
h3.white-title {
color: #fff;
background: url(../images/gold.png)no-repeat 4px 2px;
background-size: 34px;
}
.title-img {
background: url(../images/services1.jpg)no-repeat center;
background-size: cover;
-webkit-background-size: cover;
-ms-background-size: cover;
-o-background-size: cover;
-moz-background-size: cover;
background-position: center;
}
.bold-title {
font-size: 6em;
color: #fff;
font-weight: 700;
line-height: 68px;
padding-top: 1em;
background: url(../images/gold.png)no-repeat 3px 61px;
background-size: 59px;
padding-left: 59px;
}
.white-img {
background: url(../images/team.jpg)no-repeat center;
background-size: cover;
-webkit-background-size: cover;
-ms-background-size: cover;
-o-background-size: cover;
-moz-background-size: cover;
background-position: center;
}
.black-title {
color: #000;
background: url(../images/black.png)no-repeat 3px 61px;
background-size: 59px;
}
h3.subheading-agileits-w3layouts-w3layouts {
color: #e00231;
font-size: 23px;
letter-spacing: 1px;
margin-bottom: 0.5em;
text-transform: capitalize;
}
/*-- //main --*/
/*-- about --*/
.view-tenth img {
-webkit-transform: scaleY(1);
-moz-transform: scaleY(1);
-o-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
-ms-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;
width: 100%;
}
.view-tenth .mask {
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.view-tenth img {
filter: alpha(opacity=1);
opacity: 1;
}
.view-tenth:hover .mask {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.view {
float: none;
overflow: hidden;
position: relative;
text-align: center;
padding: 0.5em 1em 1.3em 1em;
background: #efefef;
/* min-height: 230px; */
}
.ab1 {
background: #ff9847;
}
.ab2 {
background: #ff7aa7;
}
.ab3 {
background: #5fcdff;
}
.view .mask,
.view .content {
position: absolute;
overflow: hidden;
top: 0;
left: 0;
}
.view img {
display: block;
position: relative;
}
.w3-agile_text_box p {
width: 90%;
}
.content-pro-head p {
width: 100% !important;
}
.w3-agile_text_box h3,
.content-pro-head h3 {
line-height: 1.5em;
font-weight: 500;
font-size: 1.5em;
text-transform: capitalize;
letter-spacing: 2px;
color: #ffffff;
}
.content-pro-head h3 {
color: #031322;
}
.banner_bottom_right_grid {
padding-right: 0;
}
.banner_bottom_left h3 {
font-size: 2.5em;
color: #111;
font-weight: 300;
text-shadow: 2px 2px 2px rgba(154, 150, 150, 0.8);
-webkit-text-shadow: 2px 2px 2px rgba(154, 150, 150, 0.8);
-moz-text-shadow: 2px 2px 2px rgba(154, 150, 150, 0.8);
-o-text-shadow: 2px 2px 2px rgba(154, 150, 150, 0.8);
-ms-text-shadow: 2px 2px 2px rgba(154, 150, 150, 0.8);
}
.banner_bottom_left p i {
color: #1abc9c;
display: block;
margin: .5em 0 1em;
letter-spacing: 6px;
font-size: 0.9em;
}
.banner_bottom_left {
text-align: left;
margin-top: 1em;
}
.banner_bottom_left p {
line-height: 2em;
margin-bottom: 3em;
}
.more1 a,
.more2 a,
.more3 a {
text-align: center;
}
.more.more1 {
padding: 0;
margin-top: 1em;
}
.more.more1 a {
width: 25% !important;
margin: 0 !important;
}
.banner_bottom_right_grid span {
color: #fff;
font-size: 2em;
width: 70px;
height: 70px;
line-height: 40px;
background: #031322;
margin: .7em 0em 0.5em;
padding: 10px;
border: 5px solid #ffffff;
}
.banner_bottom_right .img_w3-agile {
position: relative;
border: 7px solid #1abc9c;
}
.banner_bottom_right .img_w3-agile img {
position: relative;
top: 25px;
left: 25px;
display: block;
width: 100%;
height: auto;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.view-tenth p.paragraph-w3l {
width: 90%;
}
p.paragraph-w3l {
line-height: 1.8em;
margin: 0 auto;
font-size: 15px;
letter-spacing: 1.2px;
color: #000;
}
/*--flexisel--*/
#flexiselDemo1 {
display: none;
}
.nbs-flexisel-container {
position: relative;
max-width: 100%;
}
.nbs-flexisel-ul {
position: relative;
width: 9999px;
margin: 0px;
padding: 0px;
list-style-type: none;
text-align: center;
}
.nbs-flexisel-inner {
overflow: hidden;
margin: 0px auto;
}
.nbs-flexisel-item {
float: left;
margin: 0;
padding: 0px;
/*cursor: pointer;*/
position: relative;
line-height: 0px;
}
.nbs-flexisel-item>img {
cursor: pointer;
position: relative;
}
li.nbs-flexisel-item img {
width: 100%;
}
/*---- Nav ---*/
.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
width: 32px;
height: 32px;
position: absolute;
cursor: pointer;
z-index: 100;
}
.nbs-flexisel-nav-left {
left: 0em;
top: 74% !important;
background: url(../images/left.png) no-repeat 0px 0px;
}
.nbs-flexisel-nav-right {
right: 0em;
top: 74% !important;
background: url(../images/right.png) no-repeat 0px 0px;
}
/*--//flexisel--*/
.flex-info {
background: #ff984f;
background: #444343;
padding: 1em;
}
.flex-info1 {
background: #ffef71;
background: #525252;
}
.flex-info2 {
background: #ff7aa7;
background: #636262;
}
.flex-info3 {
background: #5fcdff;
background: #777676;
}
.flex-info h4 {
color: #ffffff;
font-size: 2.4em;
}
.flex-info h4 span {
display: block;
color: #000;
font-size: 20px !important;
letter-spacing: 1px;
margin: 0.5em 0 0em !important;
text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.38);
}
.flex-info p {
color: #fff;
line-height: 1.8em;
font-size: .94em;
margin-top: 0.3em;
}
.content-pro-head {
margin-top: 0.5em;
}
.services-inner-agileits-w3layouts {
padding-top: 1em;
}
/*--//flexisel--*/
.button-w3-agile-sectn a {
text-decoration: none;
display: inline-block;
font-size: 15px;
letter-spacing: 2px;
padding: 0.6em 2em;
background: #e00231;
color: #fff;
margin-top: 1.2em;
}
.button-w3-agile-sectn a:hover {
text-decoration: none;
background: #031322;
color: #fff;
}
/*-- //about --*/
/*-- services --*/
.services-agileits-w3layouts {
position: relative;
}
.service-agileinfo-grids:nth-child(5),
.service-agileinfo-grids:nth-child(6),
.service-agileinfo-grids:nth-child(7) {
float: right;
padding-bottom: 0em !important;
}
.service-agileinfo-grids {
text-align: center;
padding: 0em 1.5em 3em;
}
.service-agileinfo-grids i {
color: #ffffff;
font-size: 28px;
width: 60px;
height: 53px;
line-height: 41px;
border: 6px solid rgba(255, 255, 255, 0.14);
background: #031322;
}
.service-agileinfo-grids:hover i {
border-color: transparent;
transition: all 0.7s ease-in-out;
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
-ms-transition: all 0.7s ease-in-out;
}
.service-agileinfo-grids:hover h4 {
background: rgba(0, 0, 0, 0.34);
color: #ffffff;
border-color: #031322;
transition: all 0.7s ease-in-out;
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
-ms-transition: all 0.7s ease-in-out;
}
.service-agileinfo-grids p {
margin: 1em 0 1em;
}
.service-agileinfo-grids h4 {
color: #000000;
font-size: 18px;
padding: 12px 0;
border-top: 2px solid #e00231;
}
.services-agileits-w3layouts-w3layouts img {
position: absolute;
width: 27em;
bottom: -0.1em;
left: 0em;
}
/*-- //services --*/
/*-- Events --*/
.events {
background: #eaeaea;
}
.thumbnail.events-wthree img {
margin: 0 auto;
width: inherit;
width: 100%;
}
.events-grids:nth-child(2),
.events-grids:nth-child(4) {
padding-top: 5em !important;
}
.thumbnail.events-wthree {
position: relative;
overflow: hidden;
}
.thumbnail {
padding: 0px;
border: none;
border-radius: 0;
margin-bottom: 0;
}
.thumbnail.events-wthree h4 a {
font-size: 1.15em;
font-weight: 600;
color: #ffffff;
margin: 0em 0 0.5em;
text-shadow: 2px 2px 2px #2b2b2b;
text-transform: capitalize;
letter-spacing: 2px;
text-decoration: none;
display: inline-block;
}
.thumbnail.events-wthree h4 a:hover {
color: #e00231;
}
.caption p {
font-size: 15px;
line-height: 30px;
letter-spacing: .6px;
color: #e8e8e8;
}
.caption p:nth-child(1) {
margin-bottom: 10px;
color: #fff;
}
.caption p span {
display: inline-block;
color: #e00231;
margin-right: 7px;
}
.thumbnail .caption {
padding: 0;
}
.event-bottom {
margin-top: 0.5em;
}
.social-icons.events-icons ul {
margin: 0;
}
.social-icons.events-icons {
position: absolute;
bottom: -123px;
margin: 0;
left: 0;
background: rgba(150, 150, 150, 0.64);
border-top: 5px solid #031322;
padding: 1em;
-webkit-transition: .5s all;
transition: .5s all;
-moz-transition: .5s all;
width: 100%;
text-align: center;
}
.thumbnail.events-wthree:hover div.social-icons.events-icons {
bottom: 0px;
}
.thumbnail.events-wthree:hover {
border-color: #fdbd10;
}
.event-bottom ul li {
margin-left: 5px;
margin-top: 5px;
display: inline-block;
}
.event-bottom ul li:nth-child(1),
.event-bottom ul li:nth-child(2) {
float: left;
margin-right: 20px;
}
.event-bottom ul li:nth-child(1) a,
.event-bottom ul li:nth-child(2) a {
margin-top: 12px;
font-size: 15px;
color: #000;
font-weight: 600;
display: inline-block;
}
.event-bottom ul li:nth-child(1) a span,
.event-bottom ul li:nth-child(2) a span {
color: #fff;
margin-right: 7px;
}
.event-bottom ul li:nth-child(3) a {
color: #fff;
background-color: #fff;
width: 37px;
height: 37px;
font-size: 15px;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
line-height: 36px;
font-size: 18px;
transition: all 0.5s ease-in-out;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
display: inline-block;
text-decoration: none;
}
.event-bottom ul li:nth-child(3) {
text-align: center;
float: right;
}
.event-bottom ul li:nth-child(3) a:hover {
background-color: #3b5998;
text-decoration: none;
transition: all 0.5s ease-in-out;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
display: inline-block;
text-decoration: none;
}
.event-bottom ul li:nth-child(3) span {
color: #000;
}
.event-bottom ul li:nth-child(3):hover span {
color: #fff;
}
.thumbnail.events-wthree:nth-child(1) {
margin-bottom: 1.5em;
}
/*-- //Events --*/
/*-- team --*/
.team {
background: #000;
}
.agileits-w3layouts-team-grids {
padding: 5em 0;
}
.team-info {
position: relative;
overflow: hidden;
}
.team-info img {
width: 100%;
}
.team-caption h4 {
margin: 0;
color: #000000;
font-size: 1.2em;
text-transform: capitalize;
line-height: 1.8em;
font-weight: 600;
letter-spacing: 1px;
}
.team-caption p {
color: #FFFFFF;
font-size: .9em;
margin: 0;
}
.team-caption ul {
padding: 0;
margin: 1em 0 0 0;
}
.team-caption ul li {
display: inline-block;
}
.team-caption ul li a {
color: #333;
text-align: center;
}
.team-caption ul li a i {
height: 34px;
width: 34px;
line-height: 30px;
border: solid 2px #FFF;
background: none;
color: #FFF;
border-radius: 50%;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.team-caption ul li a i.fa.fa-facebook:hover {
background: #3b5998;
}
.team-caption ul li a i.fa.fa-twitter:hover {
background: #55acee;
}
.team-caption ul li a i.fa.fa-rss:hover {
background: #f26522;
}
.team-caption {
background: #858686;
padding: 1em;
position: absolute;
left: 0;
bottom: 0;
text-align: center;
width: 100%;
-webkit-transition: .5s all;
transition: .5s all;
-moz-transition: .5s all;
}
.team-info:hover .team-caption {
background-color: transparent;
top: 50%;
transform: translate(0%, -50%);
-webkit-transform: translate(0%, -50%);
-moz-transform: translate(0%, -50%);
-ms-transform: translate(0%, -50%);
bottom: auto;
}
.team-info:hover .team-caption h4 {
color: #FFFFFF;
}
.team-info:before {
background-color: rgba(0, 0, 0, 0.66);
border: 3px solid #e00231;
bottom: 0;
content: "";
display: inline-block;
left: 0;
position: absolute;
right: 0;
top: 0;
opacity: 0;
-webkit-transition: all 0.5s ease 0s;
-moz-transition: all 0.5s ease 0s;
-o-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
}
.team-info:hover:before {
opacity: 1;
}
.agileits-w3layouts-team-grid:nth-child(2),
.agileits-w3layouts-team-grid:nth-child(4) {
margin-top: 2em;
}
/*-- //team --*/
/*-- gallery --*/
.gallery {
padding-bottom: 0 !important;
}
.gallery-grid {
margin-top: 0em;
padding: 0;
margin: 1px 1px;
width: 24.85%;
}
.wpf-demo-4 {
background-color: #e00231;
display: block;
overflow: hidden;
position: relative;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-ms-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
width: 100%;
height: 300px;
}
.wpf-demo-4 a.item-hover {
display: block;
}
.wpf-demo-4 img {
width: 100%;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-ms-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
-moz-transform: scale(1.08);
-o-transform: scale(1.08);
-ms-transform: scale(1.08);
-webkit-transform: scale(1.08);
transform: scale(1.08);
}
.wpf-demo-4:hover img {
height: 100%;
margin-left: -42px;
margin-top: -7px;
-webkit-transform: translateY(-10%) rotate(-42deg) scale(1.5);
-moz-transform: translateY(-10%) rotate(-42deg) scale(1.5);
-o-transform: translateY(-10%) rotate(-42deg) scale(1.5);
-moz-transform: translateY(-10%) rotate(-42deg) scale(1.5);
transform: translateY(-10%) rotate(-42deg) scale(1.5);
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
transition: all 0.5s;
width: 134%;
}
.wpf-demo-4:hover .view-caption {
text-align: right;
-webkit-transform: translateY(-111%);
-moz-transform: translateY(-111%);
-o-transform: translateY(-111%);
-moz-transform: translateY(-111%);
transform: translateY(-111%);
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
transition: all 0.5s;
bottom: -17px;
}
.wpf-demo-4 .view-caption {
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-ms-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
text-align: right;
position: absolute;
right: 0;
bottom: -35px;
}
.wpf-demo-4 .view-caption p {
color: #fff;
font-size: 1em;
padding-right: 7px;
}
/*-- jzBox-lightbox --*/
#jzBox {
top: 0;
left: 0;
z-index: 10000;
position: fixed;
background-color: rgba(30, 30, 30, 0.9);
margin: 0 !important;
text-align: center;
width: 100%;
height: 100%;
display: none;
color: #fff;
}
#jzBoxTargetImg {
margin: 6% 0 1% 0;
max-width: 96%;
max-height: 73%;
cursor: pointer;
}
#jzBoxCounter {
margin-bottom: 1%;
font-size: 12px;
}
#jzBox i:hover {
cursor: pointer;
color: #2aabd2;
}
#jzBoxBottom {
max-height: 22%;
}
#jzBoxNextBig,
#jzBoxPrevBig {
cursor: pointer;
top: 0;
left: 0;
width: 35%;
position: fixed;
z-index: 10001;
}
#jzBoxNextBig {
left: 65%;
}
.close {
float: none;
opacity: 1;
background: url(../images/close.png) no-repeat 0px 0px;
display: block;
width: 32px;
height: 32px;
margin: -1.6em auto 0;
}
.arrow-left {
background: url(../images/left.png) no-repeat 0px 0px;
display: inline-block;
width: 32px;
height: 32px;
margin: 0 auto;
margin-right: 4em;
}
.arrow-right {
background: url(../images/right.png) no-repeat 0px 0px;
display: inline-block;
width: 32px;
height: 32px;
margin: 0 auto;
}
.item-type-move .item-hover {
-webkit-transition: all 300ms ease-out;
-moz-transition: all 300ms ease-out;
-o-transition: all 300ms ease-out;
transition: all 300ms ease-out;
text-decoration: none;
background: #FF69B4;
display: block;
}
/*-- //jzBox-lightbox --*/
/*-- //gallery --*/
/*-- testimonials --*/
/* Carousel */
#quote-carousel {
padding: 0 10px 30px 10px;
/* Control buttons */
/* Previous button */
/* Next button */
/* Changes the position of the indicators */
/* Changes the color of the indicators */
}
#quote-carousel .carousel-control {
background: none;
color: #000;
font-size: 2.3em;
text-shadow: none;
margin-top: 30px;
}
#quote-carousel .carousel-control.left {
left: -60px;
}
#quote-carousel .carousel-control.right {
right: -60px;
}
#quote-carousel .carousel-indicators {
left: 17.5%;
/* left: 70%; */
top: auto;
bottom: 0px;
margin: 0;
/* margin-right: -19px; */
width: auto;
}
#quote-carousel .carousel-indicators li {
width: 50px;
height: 50px;
margin: 5px;
cursor: pointer;
border: 4px solid #000;
opacity: 0.4;
overflow: hidden;
transition: all 0.4s;
border-radius: 0px;
}
#quote-carousel .carousel-indicators .active {
background: #333333;
width: 128px;
height: 128px;
border-color: #000;
opacity: 1;
overflow: hidden;
}
.carousel-inner {
min-height: 300px;
}
.item blockquote {
border-left: none;
margin: 0;
padding: 0;
}
.item blockquote p:before {
content: "\f10d";
font-family: 'Fontawesome';
float: left;
margin-right: 10px;
font-size: 20px;
color: #cecece;
}
.carousel-inner h5 {
color: #e00231;
font-size: 1.3em;
letter-spacing: 1px;
margin-top: 0.6em;
font-weight: 700;
}
.carousel-inner>.item.next.left,
.carousel-inner>.item.prev.right,
.carousel-inner>.item.active {
text-align: left;
}
.carousel-control {
top: 1em;
}
/*-- //testimonials --*/
/*-- contact --*/
.contact-sectn {
background: url(../images/contact.jpg) no-repeat;
background-position: center;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
}
/*-- mail --*/
.w3-agile_mail_grid_right input[type="text"],
.w3-agile_mail_grid_right input[type="email"],
.w3-agile_mail_grid_right textarea {
outline: none;
padding: 10px;
font-size: 14px;
color: #fff;
background: rgba(255, 255, 255, 0.08);
width: 100%;
border-bottom: 2px solid #fff;
letter-spacing: 1px;
border: none;
border-bottom: 2px solid #fff;
box-sizing: border-box;
}
.w3-agile_mail_grid_right textarea {
min-height: 200px;
margin: 1em 0 2em;
resize: none;
}
.w3-agile_mail_grid_right input[type="submit"],
.w3-agile_mail_grid_right input[type="reset"] {
outline: none;
padding: 13px 0;
font-size: 12px;
color: #fff;
background: #e00231;
width: 49%;
border: none;
letter-spacing: 2px;
text-transform: uppercase;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
transition: 0.5s all;
}
.w3-agile_mail_grid_right input[type="reset"] {
float: right;
background: #fff;
color: #000;
}
.w3-agile_mail_grid_right input[type="submit"]:hover {
background: #fff;
color: #000;
}
.w3-agile_mail_grid_right input[type="reset"]:hover {
background: #e00231;
color: #fff;
}
.w3-agile_mail_grid_right input[type="text"]:nth-child(2),
.w3-agile_mail_grid_right input[type="email"] {
margin: 1em 0 0;
}
.contact_left_grid {
padding: 0;
width: 49%;
}
.contact_left_grid:nth-child(2) {
float: right;
}
.contact-icon {
padding: 0;
}
.contact-text-w3-agile {
padding: 0;
}
.contact-left-w3-agile-sectn span.fa {
font-size: 1.2em;
background: rgba(255, 255, 255, 0.25);
padding: 13px 15px;
color: #ffffff;
}
.contact-left-w3-agile-sectn h4,
.contact-left-w3-agile-sectn h5 {
text-align: left;
}
.contact-left-w3-agile-sectn h4 {
color: #e00231;
font-size: 1.2em;
margin-bottom: .5em;
text-shadow: 1px 1px 2px #000;
}
.contact-left-w3-agile-sectn p {
color: #fff;
font-size: 14px;
letter-spacing: 1px;
}
.contact-left-w3-agile-sectn p a {
color: #fff;
}
.contact-left-w3-agile-sectn p a:hover {
color: #E91E63;
}
.mail-w3ls {
padding: 2em 0;
}
.call {
padding-bottom: 2em;
}
.w3-agile_mail_grids h3,
.w3-agile_mail_grids h2 {
font-size: 1.7em;
color: #ffffff;
margin-bottom: 0.8em;
letter-spacing: 1px;
font-weight: 400;
text-shadow: 1px 1px 2px #000000;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
color: #fff !important;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
color: #fff !important;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
color: #fff !important;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
color: #fff !important;
}
/*-- //mail --*/
/*-- /contact --*/
.map iframe {
width: 100%;
border: none;
min-height: 350px;
}
.map {
padding: 1em 1em .7em;
border: 2px solid #525252;
}
/*--copy-right--*/
.copy {
text-align: center;
background: #000;
}
.copy p {
color: #fff;
font-size: 14px;
letter-spacing: 2px;
padding: 1.8em 0;
}
.copy p a {
color: #e00231;
text-decoration: none;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.copy p a:hover {
color: #fff;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
/*--//copy-right--*/
/*-- to-top --*/
#toTop {
display: none;
text-decoration: none;
position: fixed;
bottom: 20px;
right: 2%;
overflow: hidden;
z-index: 999;
width: 32px;
height: 32px;
border: none;
text-indent: 100%;
background: url(../images/arr.png) no-repeat 0px 0px;
}
#toTopHover {
width: 64px;
height: 64px;
display: block;
overflow: hidden;
float: right;
opacity: 0;
-moz-opacity: 0;
filter: alpha(opacity=0);
}
/*-- //to-top --*/
/*--responsive--*/
@media(max-width:1440px) {
.wpf-demo-4 {
height: 281px;
}
.services-agileits-w3layouts-w3layouts img {
width: 23em;
}
}
@media(max-width:1366px) {
.wpf-demo-4 {
height: 266px;
}
}
@media(max-width:1280px) {
.services-agileits-w3layouts-w3layouts img {
width: 21em;
}
.gallery-grid {
width: 24.4%;
}
.wpf-demo-4 {
height: 243px;
}
.w3-agile-dot {
padding: 0em 0 16.5em;
}
.banner-bottom {
padding-top: 12em;
}
}
@media(max-width:1080px) {
.navbar-nav,
.header-top {
padding-right: 3em;
}
.navbar-nav>li {
margin-right: 15px;
}
.banner-btm-w3layouts,
.about,
.gallery,
.events,
.services-agileits-w3layouts,
.contact-sectn,
.cir_w3-agile_info,
.newsletter,
.testimonials {
padding: 5em 0;
}
h3.w3layouts-heading {
font-size: 3em;
margin-bottom: 0.75em;
background: url(../images/black.png)no-repeat 4px 2px;
background-size: 29px;
padding-left: 35px;
}
.nbs-flexisel-nav-left {
top: 51% !important;
}
.nbs-flexisel-nav-right {
top: 51% !important;
}
.bold-title {
font-size: 5em;
line-height: 56px;
padding-top: 0.8em;
background: url(../images/gold.png)no-repeat 3px 44px;
background-size: 43px;
padding-left: 44px;
}
.services-agileits-w3layouts-w3layouts img {
width: 18em;
}
.events-grids {
width: 100%;
}
.events-grids:nth-child(1) {
width: 100%;
}
.events-wthree {
width: 49%;
}
.events-wthree:nth-child(1) {
float: left;
}
.events-wthree:nth-child(2) {
float: right;
}
.banner-bottom-text h3 {
font-size: 3.5em;
}
.events-grids:nth-child(2),
.events-grids:nth-child(4) {
padding-top: 0em !important;
}
.social-icons.events-icons {
bottom: -123px;
padding: 1em 2em;
}
.wpf-demo-4 {
height: 206px;
}
#quote-carousel .carousel-indicators .active {
width: 115px;
height: 115px;
}
.w3-agile_mail_grids h3,
.w3-agile_mail_grids h2 {
font-size: 1.4em;
letter-spacing: 1.5px;
}
.copy p {
font-size: 13px;
letter-spacing: 1.5px;
padding: 1.6em 0;
}
}
@media(max-width:1050px) {
.wpf-demo-4 {
height: 199px;
}
.wpf-demo-4 .view-caption p {
font-size: 0.9em;
}
#quote-carousel {
padding: 0 10px 55px 10px;
}
.carousel-control {
width: 3%;
}
#quote-carousel .carousel-control.right {
right: 1%;
}
#quote-carousel .carousel-control.left {
left: 1%;
}
.wpf-demo-4 {
height: 195px;
}
.w3-agile_mail_grid_right textarea {
margin: 1em 0 1.1em;
}
}
@media(max-width:991px) {
.navbar-header {
float: none;
text-align: center;
margin-top: 0.8em;
}
.navbar-nav>li {
margin-right: 20px;
}
.banner-bottom-text h3 {
font-size: 3em;
}
.w3-agile-dot {
padding: 0em 0 13.5em;
}
.banner_bottom_right_grid {
width: 50%;
float: left;
margin-bottom: 1em;
}
.nbs-flexisel-nav-left {
top: 59% !important;
}
.nbs-flexisel-nav-right {
top: 59% !important;
}
.content-pro-head {
margin-top: 1.5em;
}
.service-agileinfo-grids {
padding: 0em 1.5em 2em;
width: 50%;
float: left;
}
.services-agileits-w3layouts-w3layouts img {
width: 19em;
}
.thumbnail.events-wthree:nth-child(1) {
margin-bottom: 1em;
}
.thumbnail.events-wthree {
margin-bottom: 1em;
}
.events-grids:nth-child(3).thumbnail.events-wthree {
margin-bottom: 0px;
}
.agileits-w3layouts-team-grid {
width: 50%;
}
.gallery-grid {
margin-top: 0em;
padding: 0;
margin: 1px 1px;
width: 33%;
float: left;
}
.wpf-demo-4 {
height: 255px;
}
.service-agileinfo-grids:nth-child(5),
.service-agileinfo-grids:nth-child(6) {
padding-bottom: 2em !important;
}
.service-agileinfo-grids:nth-child(7) {
padding-bottom: 0em !important;
}
}
@media(max-width:900px) {
.wpf-demo-4 {
height: 230px;
}
.w3-agile_mail_grid_right textarea {
min-height: 130px;
}
.navbar-nav>li {
margin-right: 21.5px;
}
.wpf-demo-4 {
height: 205px;
}
}
@media(max-width:768px) {
.nbs-flexisel-nav-left {
top: 68% !important;
}
.nbs-flexisel-nav-right {
top: 68% !important;
}
.wpf-demo-4 {
height: 195px;
}
#quote-carousel .carousel-indicators li {
width: 45px;
height: 45px;
}
#quote-carousel .carousel-indicators .active {
width: 100px;
height: 100px;
}
}
@media(max-width:767px) {
.navbar-default .navbar-toggle {
border-color: #fff;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: transparent;
}
.navbar-toggle {
margin: 1.1em 3.5em 0 0;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border: none;
position: absolute;
width: 100%;
background: rgba(0, 0, 0, 0.91);
z-index: 999;
}
.navbar-nav>li>a {
margin-bottom: 5px;
}
.navbar-default .navbar-nav>li>a {
padding: 10px 14px 6px;
letter-spacing: 1.5px;
}
.navbar-nav {
margin: 0;
text-align: center;
padding-left: 0;
width: 100%;
padding: 1em 0;
}
.navbar-nav .open .dropdown-menu {
width: 100%;
text-align: center;
margin: 0 auto;
background-color: transparent;
border-radius: 0;
}
.navbar-default .navbar-nav .open .dropdown-menu>li>a {
color: #fff;
}
.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,
.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {
color: #f8b239;
}
.navbar-nav>li {
margin-right: 0;
float: none;
}
.navbar-header {
margin-top: 0em;
text-align: left;
}
.navbar-toggle {
margin: 1.31em 3.5em 0 0;
}
.bold-title {
font-size: 4.4em;
line-height: 49px;
padding-top: 0.8em;
background: url(../images/gold.png)no-repeat 3px 33px;
background-size: 41px;
padding-left: 44px;
}
#quote-carousel .carousel-control {
margin-top: 6em;
}
.contact_left_grid {
width: 100%;
}
.w3-agile_mail_grid_right input[type="email"] {
margin: 1em 0 1em;
}
}
@media(max-width:736px) {
.banner-btm-w3layouts,
.about,
.gallery,
.events,
.services-agileits-w3layouts,
.contact-sectn,
.cir_w3-agile_info,
.newsletter,
.testimonials {
padding: 4.5em 0;
}
.wpf-demo-4 {
height: 187px;
}
.carousel-inner {
min-height: 265px;
}
}
@media(max-width:667px) {
.banner-bottom-text h3 {
font-size: 2.6em;
}
.banner-bottom {
padding-top: 9em;
}
.flex-control-paging li a {
width: 22px;
}
.flex-control-paging li a.flex-active {
width: 35px;
}
.flex-control-nav {
bottom: -114%;
}
.w3-agile-dot {
padding: 0em 0 11em;
}
.social-icons.events-icons {
padding: 1em 0.5em;
}
.wpf-demo-4 {
height: 170px;
}
}
@media(max-width:640px) {
.events-wthree {
width: 100%;
}
.social-icons.events-icons {
bottom: -95px;
}
.wpf-demo-4 {
height: 162px;
}
.w3-agile_mail_grid_right input[type="text"],
.w3-agile_mail_grid_right input[type="email"],
.w3-agile_mail_grid_right textarea {
font-size: 13px;
}
}
@media(max-width:600px) {
.banner-bottom-text h3 {
font-size: 2.4em;
}
.banner_bottom_right_grid {
width: 70%;
float: none;
margin: 0em auto 1em;
padding: 0;
}
.social-icons.events-icons {
bottom: -130px;
}
.gallery-grid {
width: 49.65%;
}
.wpf-demo-4 {
height: 230px;
}
p.paragraph-w3l {
line-height: 2em;
font-size: 14px;
letter-spacing: 1px;
}
h3.w3layouts-heading {
font-size: 2.8em;
margin-bottom: 0.7em;
background: url(../images/black.png)no-repeat 4px 0px;
background-size: 28px;
}
}
@media(max-width:568px) {
.banner-bottom-text h3 {
font-size: 2.3em;
}
.banner-btm-w3layouts,
.about,
.gallery,
.events,
.services-agileits-w3layouts,
.contact-sectn,
.cir_w3-agile_info,
.newsletter,
.testimonials {
padding: 4em 0;
}
.w3-agile_text_box h3,
.content-pro-head h3 {
font-size: 1.3em;
letter-spacing: 1.5px;
}
.services-agileits-w3layouts-w3layouts img {
width: 17em;
}
.social-icons.events-icons {
bottom: -115px;
}
.gallery-grid {
width: 49.6%;
}
.wpf-demo-4 {
height: 215px;
}
}
@media(max-width:480px) {
.navbar-header h1 a {
font-size: 1.2em;
}
.banner-bottom-text h3 {
font-size: 1.8em;
}
.flex-control-nav {
bottom: -165%;
}
.banner_bottom_right_grid {
width: 90%;
}
.nbs-flexisel-nav-right {
top: 71% !important;
}
.nbs-flexisel-nav-left {
top: 71% !important;
}
.service-agileinfo-grids {
padding: 0em 1em 2em;
width: 100%;
float: none;
}
.services-agileits-w3layouts {
padding-bottom: 14em !important;
}
.social-icons.events-icons {
bottom: -118px;
}
.agileits-w3layouts-team-grid {
width: 100%;
}
.agileits-w3layouts-team-grid:nth-child(3) {
margin-top: 2em;
}
.gallery-grid {
width: 49.5%;
}
.wpf-demo-4 {
height: 182px;
}
h3.w3layouts-heading {
letter-spacing: 0.5px;
}
.carousel-inner {
min-height: 300px;
}
.w3-agile_mail_grids h3,
.w3-agile_mail_grids h2 {
font-size: 1.3em;
}
.contact-left-w3-agile-sectn h4 {
font-size: 1.03em;
}
.contact-left-w3-agile-sectn p {
font-size: 13.4px;
line-height: 25px;
letter-spacing: 1.2px;
}
.w3-agile_mail_grids h3,
.w3-agile_mail_grids h2 {
line-height: 28px;
}
.map iframe {
width: 100%;
border: none;
min-height: 250px;
}
.map {
padding: 0.7em .7em .3em;
}
.copy p {
padding: 1em 1em;
line-height: 28px;
}
.bold-title {
font-size: 3.7em;
line-height: 40px;
background: url(../images/gold.png)no-repeat 3px 28px;
background-size: 34px;
padding-left: 38px;
}
}
@media(max-width:440px) {
.banner-bottom-text h3 {
font-size: 1.95em;
line-height: 40px;
}
.flex-control-nav {
bottom: -70%;
}
.banner-bottom {
padding-top: 6em;
}
.w3-agile-dot {
padding: 0em 0 9em;
}
.wpf-demo-4 {
height: 166px;
}
#quote-carousel {
padding: 0 10px 90px 10px;
}
#quote-carousel .carousel-control {
margin-top: 7em;
}
.w3-agile_mail_grid_right input[type="submit"],
.w3-agile_mail_grid_right input[type="reset"] {
width: 100%;
}
.w3-agile_mail_grid_right input[type="reset"] {
margin-top: 1em;
}
h3.w3layouts-heading {
line-height: 1.2em;
}
}
@media(max-width:414px) {
#quote-carousel {
padding: 0 10px 115px 10px;
}
#quote-carousel .carousel-control {
margin-top: 8em;
}
.wpf-demo-4 {
height: 156px;
}
.banner_bottom_right_grid {
width: 100%;
}
}
@media(max-width:384px) {
.nbs-flexisel-nav-right {
top: 66% !important;
}
.nbs-flexisel-nav-left {
top: 66% !important;
}
.thumbnail.events-wthree h4 a {
font-size: 1em;
letter-spacing: 1.5px;
}
.gallery-grid {
width: 100%;
margin: 1px 0;
}
.wpf-demo-4 {
height: 280px;
}
#quote-carousel .carousel-indicators {
left: 12%;
}
#quote-carousel .carousel-control {
margin-top: 16.5em;
font-size: 1.3em;
}
.contact-icon {
float: none;
margin-bottom: 1em;
}
}
@media(max-width:320px) {
.navbar-toggle {
margin: 1.31em 3.1em 0 0;
}
.navbar-header h1 a {
font-size: .99em;
}
.banner-bottom {
padding-top: 4em;
}
.w3-agile-dot {
padding: 0em 0 7em;
}
h3.w3layouts-heading {
font-size: 2.7em;
}
.bold-title {
font-size: 3.2em;
line-height: 34px;
background: url(../images/gold.png)no-repeat 3px 23px;
background-size: 30px;
padding-left: 34px;
}
.events-grids {
padding: 0;
}
.caption p {
margin-bottom: 2px;
line-height: 24px;
font-size: 13px;
}
.wpf-demo-4 {
height: 240px;
}
#quote-carousel {
padding: 0 10px 115px 10px;
}
#quote-carousel .carousel-indicators {
left: 8%;
}
#quote-carousel .carousel-indicators li {
width: 40px;
height: 40px;
}
#quote-carousel .carousel-control {
margin-top: 20.5em;
}
}
/*--responsive--*/ | web/css/style.css | html,
body {
margin: 0;
font-size: 100%;
font-family: 'Raleway', sans-serif;
background: #fff;
}
body a {
text-decoration: none;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
a:hover {
text-decoration: none;
}
input[type="button"],
input[type="submit"] {
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
font-family: 'Raleway', sans-serif;
font-weight: 600;
}
p {
margin: 0;
}
ul {
margin: 0;
padding: 0;
}
label {
margin: 0;
}
/*--Banner stats here--*/
.w3-agile-dot {
background: url(../images/dott.png)repeat 0px 0px;
background-size: 2px;
-webkit-background-size: 2px;
-moz-background-size: 2px;
-o-background-size: 2px;
-ms-background-size: 2px;
padding: 0em 0 21.5em;
}
/*--header--*/
.header-main {
background: rgba(0, 0, 0, 0.55);
}
/*--header end here--*/
.banner {
background: url(../images/bann1.jpg)no-repeat center;
background-size: cover;
position: relative;
}
.banner1 {
background: url(../images/banner.jpg)no-repeat;
min-height: 41px;
background-size: cover;
}
/*-- Navbar --*/
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: transparent;
}
.navbar-default .navbar-brand {
font-size: 3em;
color: #FFF;
text-shadow: 3px 3px #000000;
text-decoration: none;
font-weight: bold;
}
.navbar {
margin-bottom: 0px;
}
.navbar-nav>li {
float: left;
margin-right: 23px;
}
.navbar-default .navbar-nav>li>a {
color: #FFFEFE;
letter-spacing: 2px;
text-transform: uppercase;
padding: 29px 13px;
font-weight: 400;
font-size: 13px;
}
.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover {
color: #fff;
background: none !important;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #FFF;
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
background-color: #303841;
border-color: #fff;
}
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
color: #e00231;
text-shadow: 1px 1px #000;
background-color: transparent;
}
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
color: #fff;
background-color: #EB4549;
}
a.active.scroll {
color: #e00231 !important;
text-shadow: 1px 1px #000;
}
.navbar-default {
border-color: #e7e7e7;
border: none !important;
background: none !important;
}
.navbar {
border-radius: 0 !important;
}
.navbar-brand {
float: left;
height: 50px;
padding: 15px 15px;
line-height: 45px;
}
/*-- nav-effect --*/
/* Effect 13: three circles */
.cl-effect-13 ul li a {
-webkit-transition: color 0.3s;
-moz-transition: color 0.3s;
transition: color 0.3s;
}
.cl-effect-13 ul li a::before {
position: absolute;
top: 50%;
left: 50%;
color: transparent;
content: '.';
text-shadow: 0 0 transparent;
font-size: 2em;
-webkit-transition: text-shadow 0.3s, color 0.3s;
-moz-transition: text-shadow 0.3s, color 0.3s;
transition: text-shadow 0.3s, color 0.3s;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
transform: translateX(-50%);
}
.cl-effect-13 ul li a:hover::before,
.cl-effect-13 ul li a:focus::before,
ul.nav.navbar-nav li.active a::before {
color: #fff;
text-shadow: 10px 0 #fff, -10px 0 #fff;
}
.navbar-default {
background: rgba(0, 0, 0, 0.72);
border: none;
border-radius: 0;
}
.navbar-nav,
.header-top {
padding-right: 7em;
}
.header-nav {
position: relative;
}
.cl-effect-13 ul li a:hover::before,
.cl-effect-13 ul li a:focus::before,
ul.nav.navbar-nav li a.active::before {
color: #fff;
text-shadow: 10px 0 #fff, -10px 0 #fff;
}
/*-- //nav-effect --*/
.navbar-header h1 a {
font-size: 1.4em;
color: #FFF;
text-shadow: 3px 3px #000000;
text-decoration: none;
font-weight: bold;
line-height: 75px;
}
.navbar-brand {
float: left;
padding: 0 !important;
line-height: 45px;
}
/*-- /Navbar --*/
.banner-bottom-text h3 {
font-size: 4em;
color: rgb(255, 255, 255);
letter-spacing: 1px;
font-weight: 100;
text-align: left;
text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.76);
text-transform: capitalize;
font-family: 'Raleway', sans-serif;
}
.banner-bottom {
padding-top: 19em;
}
/*--//Banner ends here--*/
/*-- clickable --*/
.thim-click-to-bottom {
position: absolute;
bottom: 5%;
left: 49.5%;
/* width: 40px; */
/* height: 40px; */
/* font-size: 40px; */
/* line-height: 40px; */
-webkit-animation: bounce 2s infinite ease-in-out;
z-index: 99;
}
.thim-click-to-bottom i {
color: #fff;
font-size: 18px;
text-align: center;
}
@-webkit-keyframes bounce {
0%,
20%,
60%,
100% {
-ms-transform: translateY(0);
}
0%,
20%,
60%,
100% {
-o-transform: translateY(0);
}
0%,
20%,
60%,
100% {
-moz-transform: translateY(0);
}
0%,
20%,
60%,
100% {
-webkit-transform: translateY(0);
}
40% {
-webkit-transform: translateY(-20px);
}
80% {
-webkit-transform: translateY(-10px);
}
}
/*-- //clickable --*/
/*-- search --*/
.w3-agile-sectn_search {
position: relative;
}
.cd-main-header {
/* Force Hardware Acceleration in WebKit */
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
will-change: transform;
}
.cd-main-header {
-webkit-transition: -webkit-transform 0.3s;
-moz-transition: -moz-transform 0.3s;
transition: transform 0.3s;
}
.cd-main-content.nav-is-visible,
.cd-main-header.nav-is-visible {
-webkit-transform: translateX(-260px);
-moz-transform: translateX(-260px);
-ms-transform: translateX(-260px);
-o-transform: translateX(-260px);
transform: translateX(-260px);
}
.nav-on-left .cd-main-content.nav-is-visible,
.nav-on-left .cd-main-header.nav-is-visible {
-webkit-transform: translateX(260px);
/*-- w3layouts --*/
-moz-transform: translateX(260px);
-ms-transform: translateX(260px);
-o-transform: translateX(260px);
transform: translateX(260px);
}
.cd-header-buttons {
position: absolute;
display: inline-block;
top: -59px;
right: 1px;
}
.cd-header-buttons li {
display: inline-block;
}
.cd-search-trigger,
.cd-nav-trigger {
position: relative;
display: block;
width: 44px;
height: 44px;
overflow: hidden;
white-space: nowrap;
color: transparent;
z-index: 3;
background: #e00231;
}
.cd-search-trigger::before,
.cd-search-trigger::after {
/* search icon */
content: '';
position: absolute;
-webkit-transition: opacity 0.3s;
-moz-transition: opacity 0.3s;
transition: opacity 0.3s;
/* Force Hardware Acceleration in WebKit */
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.cd-search-trigger::before {
top: 11px;
left: 11px;
width: 18px;
height: 18px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
/*-- agileits-w3layouts --*/
border: 3px solid #fff;
}
.cd-search-trigger::after {
/* handle */
height: 3px;
width: 8px;
background: #fff;
bottom: 14px;
right: 11px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.cd-search-trigger span {
/* container for the X icon */
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
}
.cd-search-trigger span::before,
.cd-search-trigger span::after {
/* close icon */
content: '';
position: absolute;
display: inline-block;
height: 3px;
width: 22px;
top: 50%;
margin-top: -2px;
left: 50%;
margin-left: -11px;
background: #fff;
opacity: 0;
/* Force Hardware Acceleration in WebKit */
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-moz-transition: opacity 0.3s, -moz-transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
}
.cd-search-trigger span::before {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.cd-search-trigger span::after {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.cd-search-trigger.search-is-visible::before,
.cd-search-trigger.search-is-visible::after {
/* hide search icon */
-moz-opacity: 0;
opacity: 0;
}
.cd-search-trigger.search-is-visible span::before,
.cd-search-trigger.search-is-visible span::after {
/* show close icon */
-moz-opacity: 1;
opacity: 1;
}
.cd-search-trigger.search-is-visible span::before {
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-ms-transform: rotate(135deg);
-o-transform: rotate(135deg);
transform: rotate(135deg);
}
.cd-search-trigger.search-is-visible span::after {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.cd-search {
position: absolute;
width: 100%;
top: 0em;
left: 0;
z-index: 3;
opacity: 0;
visibility: hidden;
-webkit-transition: opacity .3s 0s, visibility 0s .3s;
-moz-transition: opacity .3s 0s, visibility 0s .3s;
transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-search input {
border-radius: 0;
border: none;
background: rgba(0, 0, 0, 0.75);
width: 100%;
padding: 0 5%;
-webkit-box-shadow: inset 0 3px 0 #e00231, 0 3px 6px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset 0 3px 0 #f5b120, 0 3px 6px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.84), 0 3px 6px rgba(0, 0, 0, 0.05);
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
-o-appearance: none;
appearance: none;
font-size: 15px;
padding: 1em 2em;
color: #fff;
letter-spacing: 1.5px;
}
.cd-search input::-webkit-input-placeholder {
color: #fff !important;
}
.cd-search input::-moz-placeholder {
color: #fff !important;
}
.cd-search input:-moz-placeholder {
color: #fff !important;
}
.cd-search input:-ms-input-placeholder {
color: #fff !important;
}
.cd-search input:focus {
outline: none;
}
.cd-search.is-visible {
-moz-opacity: 1;
opacity: 1;
visibility: visible;
-webkit-transition: opacity .3s 0s, visibility 0s 0s;
-moz-transition: opacity .3s 0s, visibility 0s 0s;
transition: opacity .3s 0s, visibility 0s 0s;
}
/*-- //search --*/
/*--social icons--*/
.w3-agile1-sectn-social ul {
padding: 0;
margin: 0;
}
.w3-agile1-sectn-social ul li {
display: inline-block;
}
.w3-agile1-sectn-social ul li a {
color: #333;
text-align: center;
}
.w3-agile1-sectn-social ul li a i.fa.fa-facebook,
.w3-agile1-sectn-social ul li a i.fa.fa-twitter,
.w3-agile1-sectn-social ul li a i.fa.fa-google-plus {
height: 35px;
width: 35px;
/* background: #FFFFFF; */
line-height: 37px;
margin: 0px 10px 0 0;
color: #ffffff;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.w3-agile1-sectn-social ul li a i.fa.fa-facebook:hover {
background: #3b5998;
color: #FFFFFF;
}
.w3-agile1-sectn-social ul li a i.fa.fa-twitter:hover {
background: #1da1f2;
color: #FFFFFF;
}
.w3-agile1-sectn-social ul li a i.fa.fa-google-plus:hover {
background: #dd4b39;
color: #FFFFFF;
}
.w3-agile1-sectn-social {
float: left;
}
/*--//social icons--*/
/*--modal--*/
.modal-content img {
width: 100%;
}
.modal-content h4 {
color: #000;
text-align: center;
font-size: 26px;
margin-bottom: .5em;
text-transform: uppercase;
}
.modal-content h5 {
color: #e00231;
padding: 15px 0 7px;
font-size: 22px;
}
.modal-content p {
color: #636363;
font-size: 14px;
line-height: 25px;
padding-top: 10px;
}
.modal-header {
padding: 30px;
border: none;
}
.modal-header .close {
float: right;
}
/*--//modal--*/
/*-- //Banner-Slider --*/
/*-- main --*/
.banner-btm-w3layouts,
.about,
.gallery,
.events,
.services-agileits-w3layouts,
.contact-sectn,
.cir_w3-agile_info,
.newsletter,
.testimonials {
padding: 6.5em 0;
}
h3.w3layouts-heading {
color: #000;
font-size: 3.5em;
font-weight: lighter;
letter-spacing: 1px;
text-transform: capitalize;
margin-bottom: 0.8em;
background: url(../images/black.png)no-repeat 4px 2px;
background-size: 34px;
padding-left: 43px;
}
h3.w3layouts-heading span {
font-weight: 700;
}
h3.white-title {
color: #fff;
background: url(../images/gold.png)no-repeat 4px 2px;
background-size: 34px;
}
.title-img {
background: url(../images/services1.jpg)no-repeat center;
background-size: cover;
-webkit-background-size: cover;
-ms-background-size: cover;
-o-background-size: cover;
-moz-background-size: cover;
background-position: center;
}
.bold-title {
font-size: 6em;
color: #fff;
font-weight: 700;
line-height: 68px;
padding-top: 1em;
background: url(../images/gold.png)no-repeat 3px 61px;
background-size: 59px;
padding-left: 59px;
}
.white-img {
background: url(../images/team.jpg)no-repeat center;
background-size: cover;
-webkit-background-size: cover;
-ms-background-size: cover;
-o-background-size: cover;
-moz-background-size: cover;
background-position: center;
}
.black-title {
color: #000;
background: url(../images/black.png)no-repeat 3px 61px;
background-size: 59px;
}
h3.subheading-agileits-w3layouts-w3layouts {
color: #e00231;
font-size: 23px;
letter-spacing: 1px;
margin-bottom: 0.5em;
text-transform: capitalize;
}
/*-- //main --*/
/*-- about --*/
.view-tenth img {
-webkit-transform: scaleY(1);
-moz-transform: scaleY(1);
-o-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
-ms-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;
width: 100%;
}
.view-tenth .mask {
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.view-tenth img {
filter: alpha(opacity=1);
opacity: 1;
}
.view-tenth:hover .mask {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.view {
float: none;
overflow: hidden;
position: relative;
text-align: center;
padding: 0.5em 1em 1.3em 1em;
background: #efefef;
/* min-height: 230px; */
}
.ab1 {
background: #ff9847;
}
.ab2 {
background: #ff7aa7;
}
.ab3 {
background: #5fcdff;
}
.view .mask,
.view .content {
position: absolute;
overflow: hidden;
top: 0;
left: 0;
}
.view img {
display: block;
position: relative;
}
.w3-agile_text_box p {
width: 90%;
}
.content-pro-head p {
width: 100% !important;
}
.w3-agile_text_box h3,
.content-pro-head h3 {
line-height: 1.5em;
font-weight: 500;
font-size: 1.5em;
text-transform: capitalize;
letter-spacing: 2px;
color: #ffffff;
}
.content-pro-head h3 {
color: #031322;
}
.banner_bottom_right_grid {
padding-right: 0;
}
.banner_bottom_left h3 {
font-size: 2.5em;
color: #111;
font-weight: 300;
text-shadow: 2px 2px 2px rgba(154, 150, 150, 0.8);
-webkit-text-shadow: 2px 2px 2px rgba(154, 150, 150, 0.8);
-moz-text-shadow: 2px 2px 2px rgba(154, 150, 150, 0.8);
-o-text-shadow: 2px 2px 2px rgba(154, 150, 150, 0.8);
-ms-text-shadow: 2px 2px 2px rgba(154, 150, 150, 0.8);
}
.banner_bottom_left p i {
color: #1abc9c;
display: block;
margin: .5em 0 1em;
letter-spacing: 6px;
font-size: 0.9em;
}
.banner_bottom_left {
text-align: left;
margin-top: 1em;
}
.banner_bottom_left p {
line-height: 2em;
margin-bottom: 3em;
}
.more1 a,
.more2 a,
.more3 a {
text-align: center;
}
.more.more1 {
padding: 0;
margin-top: 1em;
}
.more.more1 a {
width: 25% !important;
margin: 0 !important;
}
.banner_bottom_right_grid span {
color: #fff;
font-size: 2em;
width: 70px;
height: 70px;
line-height: 40px;
background: #031322;
margin: .7em 0em 0.5em;
padding: 10px;
border: 5px solid #ffffff;
}
.banner_bottom_right .img_w3-agile {
position: relative;
border: 7px solid #1abc9c;
}
.banner_bottom_right .img_w3-agile img {
position: relative;
top: 25px;
left: 25px;
display: block;
width: 100%;
height: auto;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.view-tenth p.paragraph-w3l {
width: 90%;
}
p.paragraph-w3l {
line-height: 1.8em;
margin: 0 auto;
font-size: 15px;
letter-spacing: 1.2px;
color: #000;
}
/*--flexisel--*/
#flexiselDemo1 {
display: none;
}
.nbs-flexisel-container {
position: relative;
max-width: 100%;
}
.nbs-flexisel-ul {
position: relative;
width: 9999px;
margin: 0px;
padding: 0px;
list-style-type: none;
text-align: center;
}
.nbs-flexisel-inner {
overflow: hidden;
margin: 0px auto;
}
.nbs-flexisel-item {
float: left;
margin: 0;
padding: 0px;
/*cursor: pointer;*/
position: relative;
line-height: 0px;
}
.nbs-flexisel-item>img {
cursor: pointer;
position: relative;
}
li.nbs-flexisel-item img {
width: 100%;
}
/*---- Nav ---*/
.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
width: 32px;
height: 32px;
position: absolute;
cursor: pointer;
z-index: 100;
}
.nbs-flexisel-nav-left {
left: 0em;
top: 74% !important;
background: url(../images/left.png) no-repeat 0px 0px;
}
.nbs-flexisel-nav-right {
right: 0em;
top: 74% !important;
background: url(../images/right.png) no-repeat 0px 0px;
}
/*--//flexisel--*/
.flex-info {
background: #ff984f;
background: #444343;
padding: 1em;
}
.flex-info1 {
background: #ffef71;
background: #525252;
}
.flex-info2 {
background: #ff7aa7;
background: #636262;
}
.flex-info3 {
background: #5fcdff;
background: #777676;
}
.flex-info h4 {
color: #ffffff;
font-size: 2.4em;
}
.flex-info h4 span {
display: block;
color: #000;
font-size: 20px !important;
letter-spacing: 1px;
margin: 0.5em 0 0em !important;
text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.38);
}
.flex-info p {
color: #fff;
line-height: 1.8em;
font-size: .94em;
margin-top: 0.3em;
}
.content-pro-head {
margin-top: 0.5em;
}
.services-inner-agileits-w3layouts {
padding-top: 1em;
}
/*--//flexisel--*/
.button-w3-agile-sectn a {
text-decoration: none;
display: inline-block;
font-size: 15px;
letter-spacing: 2px;
padding: 0.6em 2em;
background: #e00231;
color: #fff;
margin-top: 1.2em;
}
.button-w3-agile-sectn a:hover {
text-decoration: none;
background: #031322;
color: #fff;
}
/*-- //about --*/
/*-- services --*/
.services-agileits-w3layouts {
position: relative;
}
.service-agileinfo-grids:nth-child(5),
.service-agileinfo-grids:nth-child(6),
.service-agileinfo-grids:nth-child(7) {
float: right;
padding-bottom: 0em !important;
}
.service-agileinfo-grids {
text-align: center;
padding: 0em 1.5em 3em;
}
.service-agileinfo-grids i {
color: #ffffff;
font-size: 28px;
width: 60px;
height: 53px;
line-height: 41px;
border: 6px solid rgba(255, 255, 255, 0.14);
background: #031322;
}
.service-agileinfo-grids:hover i {
border-color: transparent;
transition: all 0.7s ease-in-out;
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
-ms-transition: all 0.7s ease-in-out;
}
.service-agileinfo-grids:hover h4 {
background: rgba(0, 0, 0, 0.34);
color: #ffffff;
border-color: #031322;
transition: all 0.7s ease-in-out;
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
-ms-transition: all 0.7s ease-in-out;
}
.service-agileinfo-grids p {
margin: 1em 0 1em;
}
.service-agileinfo-grids h4 {
color: #000000;
font-size: 18px;
padding: 12px 0;
border-top: 2px solid #e00231;
}
.services-agileits-w3layouts-w3layouts img {
position: absolute;
width: 27em;
bottom: -0.1em;
left: 0em;
}
/*-- //services --*/
/*-- Events --*/
.events {
background: #eaeaea;
}
.thumbnail.events-wthree img {
margin: 0 auto;
width: inherit;
width: 100%;
}
.events-grids:nth-child(2),
.events-grids:nth-child(4) {
padding-top: 5em !important;
}
.thumbnail.events-wthree {
position: relative;
overflow: hidden;
}
.thumbnail {
padding: 0px;
border: none;
border-radius: 0;
margin-bottom: 0;
}
.thumbnail.events-wthree h4 a {
font-size: 1.15em;
font-weight: 600;
color: #ffffff;
margin: 0em 0 0.5em;
text-shadow: 2px 2px 2px #2b2b2b;
text-transform: capitalize;
letter-spacing: 2px;
text-decoration: none;
display: inline-block;
}
.thumbnail.events-wthree h4 a:hover {
color: #e00231;
}
.caption p {
font-size: 15px;
line-height: 30px;
letter-spacing: .6px;
color: #e8e8e8;
}
.caption p:nth-child(1) {
margin-bottom: 10px;
color: #fff;
}
.caption p span {
display: inline-block;
color: #e00231;
margin-right: 7px;
}
.thumbnail .caption {
padding: 0;
}
.event-bottom {
margin-top: 0.5em;
}
.social-icons.events-icons ul {
margin: 0;
}
.social-icons.events-icons {
position: absolute;
bottom: -123px;
margin: 0;
left: 0;
background: rgba(150, 150, 150, 0.64);
border-top: 5px solid #031322;
padding: 1em;
-webkit-transition: .5s all;
transition: .5s all;
-moz-transition: .5s all;
width: 100%;
text-align: center;
}
.thumbnail.events-wthree:hover div.social-icons.events-icons {
bottom: 0px;
}
.thumbnail.events-wthree:hover {
border-color: #fdbd10;
}
.event-bottom ul li {
margin-left: 5px;
margin-top: 5px;
display: inline-block;
}
.event-bottom ul li:nth-child(1),
.event-bottom ul li:nth-child(2) {
float: left;
margin-right: 20px;
}
.event-bottom ul li:nth-child(1) a,
.event-bottom ul li:nth-child(2) a {
margin-top: 12px;
font-size: 15px;
color: #000;
font-weight: 600;
display: inline-block;
}
.event-bottom ul li:nth-child(1) a span,
.event-bottom ul li:nth-child(2) a span {
color: #fff;
margin-right: 7px;
}
.event-bottom ul li:nth-child(3) a {
color: #fff;
background-color: #fff;
width: 37px;
height: 37px;
font-size: 15px;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
line-height: 36px;
font-size: 18px;
transition: all 0.5s ease-in-out;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
display: inline-block;
text-decoration: none;
}
.event-bottom ul li:nth-child(3) {
text-align: center;
float: right;
}
.event-bottom ul li:nth-child(3) a:hover {
background-color: #3b5998;
text-decoration: none;
transition: all 0.5s ease-in-out;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
display: inline-block;
text-decoration: none;
}
.event-bottom ul li:nth-child(3) span {
color: #000;
}
.event-bottom ul li:nth-child(3):hover span {
color: #fff;
}
.thumbnail.events-wthree:nth-child(1) {
margin-bottom: 1.5em;
}
/*-- //Events --*/
/*-- team --*/
.team {
background: #000;
}
.agileits-w3layouts-team-grids {
padding: 5em 0;
}
.team-info {
position: relative;
overflow: hidden;
}
.team-info img {
width: 100%;
}
.team-caption h4 {
margin: 0;
color: #000000;
font-size: 1.2em;
text-transform: capitalize;
line-height: 1.8em;
font-weight: 600;
letter-spacing: 1px;
}
.team-caption p {
color: #FFFFFF;
font-size: .9em;
margin: 0;
}
.team-caption ul {
padding: 0;
margin: 1em 0 0 0;
}
.team-caption ul li {
display: inline-block;
}
.team-caption ul li a {
color: #333;
text-align: center;
}
.team-caption ul li a i {
height: 34px;
width: 34px;
line-height: 30px;
border: solid 2px #FFF;
background: none;
color: #FFF;
border-radius: 50%;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.team-caption ul li a i.fa.fa-facebook:hover {
background: #3b5998;
}
.team-caption ul li a i.fa.fa-twitter:hover {
background: #55acee;
}
.team-caption ul li a i.fa.fa-rss:hover {
background: #f26522;
}
.team-caption {
background: #858686;
padding: 1em;
position: absolute;
left: 0;
bottom: 0;
text-align: center;
width: 100%;
-webkit-transition: .5s all;
transition: .5s all;
-moz-transition: .5s all;
}
.team-info:hover .team-caption {
background-color: transparent;
top: 50%;
transform: translate(0%, -50%);
-webkit-transform: translate(0%, -50%);
-moz-transform: translate(0%, -50%);
-ms-transform: translate(0%, -50%);
bottom: auto;
}
.team-info:hover .team-caption h4 {
color: #FFFFFF;
}
.team-info:before {
background-color: rgba(0, 0, 0, 0.66);
border: 3px solid #e00231;
bottom: 0;
content: "";
display: inline-block;
left: 0;
position: absolute;
right: 0;
top: 0;
opacity: 0;
-webkit-transition: all 0.5s ease 0s;
-moz-transition: all 0.5s ease 0s;
-o-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
}
.team-info:hover:before {
opacity: 1;
}
.agileits-w3layouts-team-grid:nth-child(2),
.agileits-w3layouts-team-grid:nth-child(4) {
margin-top: 2em;
}
/*-- //team --*/
/*-- gallery --*/
.gallery {
padding-bottom: 0 !important;
}
.gallery-grid {
margin-top: 0em;
padding: 0;
margin: 1px 1px;
width: 24.85%;
}
.wpf-demo-4 {
background-color: #e00231;
display: block;
overflow: hidden;
position: relative;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-ms-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
width: 100%;
height: 300px;
}
.wpf-demo-4 a.item-hover {
display: block;
}
.wpf-demo-4 img {
width: 100%;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-ms-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
-moz-transform: scale(1.08);
-o-transform: scale(1.08);
-ms-transform: scale(1.08);
-webkit-transform: scale(1.08);
transform: scale(1.08);
}
.wpf-demo-4:hover img {
height: 100%;
margin-left: -42px;
margin-top: -7px;
-webkit-transform: translateY(-10%) rotate(-42deg) scale(1.5);
-moz-transform: translateY(-10%) rotate(-42deg) scale(1.5);
-o-transform: translateY(-10%) rotate(-42deg) scale(1.5);
-moz-transform: translateY(-10%) rotate(-42deg) scale(1.5);
transform: translateY(-10%) rotate(-42deg) scale(1.5);
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
transition: all 0.5s;
width: 134%;
}
.wpf-demo-4:hover .view-caption {
text-align: right;
-webkit-transform: translateY(-111%);
-moz-transform: translateY(-111%);
-o-transform: translateY(-111%);
-moz-transform: translateY(-111%);
transform: translateY(-111%);
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
transition: all 0.5s;
bottom: -17px;
}
.wpf-demo-4 .view-caption {
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-ms-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
text-align: right;
position: absolute;
right: 0;
bottom: -35px;
}
.wpf-demo-4 .view-caption p {
color: #fff;
font-size: 1em;
padding-right: 7px;
}
/*-- jzBox-lightbox --*/
#jzBox {
top: 0;
left: 0;
z-index: 10000;
position: fixed;
background-color: rgba(30, 30, 30, 0.9);
margin: 0 !important;
text-align: center;
width: 100%;
height: 100%;
display: none;
color: #fff;
}
#jzBoxTargetImg {
margin: 6% 0 1% 0;
max-width: 96%;
max-height: 73%;
cursor: pointer;
}
#jzBoxCounter {
margin-bottom: 1%;
font-size: 12px;
}
#jzBox i:hover {
cursor: pointer;
color: #2aabd2;
}
#jzBoxBottom {
max-height: 22%;
}
#jzBoxNextBig,
#jzBoxPrevBig {
cursor: pointer;
top: 0;
left: 0;
width: 35%;
position: fixed;
z-index: 10001;
}
#jzBoxNextBig {
left: 65%;
}
.close {
float: none;
opacity: 1;
background: url(../images/close.png) no-repeat 0px 0px;
display: block;
width: 32px;
height: 32px;
margin: -1.6em auto 0;
}
.arrow-left {
background: url(../images/left.png) no-repeat 0px 0px;
display: inline-block;
width: 32px;
height: 32px;
margin: 0 auto;
margin-right: 4em;
}
.arrow-right {
background: url(../images/right.png) no-repeat 0px 0px;
display: inline-block;
width: 32px;
height: 32px;
margin: 0 auto;
}
.item-type-move .item-hover {
-webkit-transition: all 300ms ease-out;
-moz-transition: all 300ms ease-out;
-o-transition: all 300ms ease-out;
transition: all 300ms ease-out;
text-decoration: none;
background: #FF69B4;
display: block;
}
/*-- //jzBox-lightbox --*/
/*-- //gallery --*/
/*-- testimonials --*/
/* Carousel */
#quote-carousel {
padding: 0 10px 30px 10px;
/* Control buttons */
/* Previous button */
/* Next button */
/* Changes the position of the indicators */
/* Changes the color of the indicators */
}
#quote-carousel .carousel-control {
background: none;
color: #000;
font-size: 2.3em;
text-shadow: none;
margin-top: 30px;
}
#quote-carousel .carousel-control.left {
left: -60px;
}
#quote-carousel .carousel-control.right {
right: -60px;
}
#quote-carousel .carousel-indicators {
left: 17.5%;
/* left: 70%; */
top: auto;
bottom: 0px;
margin: 0;
/* margin-right: -19px; */
width: auto;
}
#quote-carousel .carousel-indicators li {
width: 50px;
height: 50px;
margin: 5px;
cursor: pointer;
border: 4px solid #000;
opacity: 0.4;
overflow: hidden;
transition: all 0.4s;
border-radius: 0px;
}
#quote-carousel .carousel-indicators .active {
background: #333333;
width: 128px;
height: 128px;
border-color: #000;
opacity: 1;
overflow: hidden;
}
.carousel-inner {
min-height: 300px;
}
.item blockquote {
border-left: none;
margin: 0;
padding: 0;
}
.item blockquote p:before {
content: "\f10d";
font-family: 'Fontawesome';
float: left;
margin-right: 10px;
font-size: 20px;
color: #cecece;
}
.carousel-inner h5 {
color: #e00231;
font-size: 1.3em;
letter-spacing: 1px;
margin-top: 0.6em;
font-weight: 700;
}
.carousel-inner>.item.next.left,
.carousel-inner>.item.prev.right,
.carousel-inner>.item.active {
text-align: left;
}
.carousel-control {
top: 1em;
}
/*-- //testimonials --*/
/*-- contact --*/
.contact-sectn {
background: url(../images/contact.jpg) no-repeat;
background-position: center;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
}
/*-- mail --*/
.w3-agile_mail_grid_right input[type="text"],
.w3-agile_mail_grid_right input[type="email"],
.w3-agile_mail_grid_right textarea {
outline: none;
padding: 10px;
font-size: 14px;
color: #fff;
background: rgba(255, 255, 255, 0.08);
width: 100%;
border-bottom: 2px solid #fff;
letter-spacing: 1px;
border: none;
border-bottom: 2px solid #fff;
box-sizing: border-box;
}
.w3-agile_mail_grid_right textarea {
min-height: 200px;
margin: 1em 0 2em;
resize: none;
}
.w3-agile_mail_grid_right input[type="submit"],
.w3-agile_mail_grid_right input[type="reset"] {
outline: none;
padding: 13px 0;
font-size: 12px;
color: #fff;
background: #e00231;
width: 49%;
border: none;
letter-spacing: 2px;
text-transform: uppercase;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
transition: 0.5s all;
}
.w3-agile_mail_grid_right input[type="reset"] {
float: right;
background: #fff;
color: #000;
}
.w3-agile_mail_grid_right input[type="submit"]:hover {
background: #fff;
color: #000;
}
.w3-agile_mail_grid_right input[type="reset"]:hover {
background: #e00231;
color: #fff;
}
.w3-agile_mail_grid_right input[type="text"]:nth-child(2),
.w3-agile_mail_grid_right input[type="email"] {
margin: 1em 0 0;
}
.contact_left_grid {
padding: 0;
width: 49%;
}
.contact_left_grid:nth-child(2) {
float: right;
}
.contact-icon {
padding: 0;
}
.contact-text-w3-agile {
padding: 0;
}
.contact-left-w3-agile-sectn span.fa {
font-size: 1.2em;
background: rgba(255, 255, 255, 0.25);
padding: 13px 15px;
color: #ffffff;
}
.contact-left-w3-agile-sectn h4,
.contact-left-w3-agile-sectn h5 {
text-align: left;
}
.contact-left-w3-agile-sectn h4 {
color: #e00231;
font-size: 1.2em;
margin-bottom: .5em;
text-shadow: 1px 1px 2px #000;
}
.contact-left-w3-agile-sectn p {
color: #fff;
font-size: 14px;
letter-spacing: 1px;
}
.contact-left-w3-agile-sectn p a {
color: #fff;
}
.contact-left-w3-agile-sectn p a:hover {
color: #E91E63;
}
.mail-w3ls {
padding: 2em 0;
}
.call {
padding-bottom: 2em;
}
.w3-agile_mail_grids h3,
.w3-agile_mail_grids h2 {
font-size: 1.7em;
color: #ffffff;
margin-bottom: 0.8em;
letter-spacing: 1px;
font-weight: 400;
text-shadow: 1px 1px 2px #000000;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
color: #fff !important;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
color: #fff !important;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
color: #fff !important;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
color: #fff !important;
}
/*-- //mail --*/
/*-- /contact --*/
.map iframe {
width: 100%;
border: none;
min-height: 350px;
}
.map {
padding: 1em 1em .7em;
border: 2px solid #525252;
}
/*--copy-right--*/
.copy {
text-align: center;
background: #000;
}
.copy p {
color: #fff;
font-size: 14px;
letter-spacing: 2px;
padding: 1.8em 0;
}
.copy p a {
color: #e00231;
text-decoration: none;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.copy p a:hover {
color: #fff;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
/*--//copy-right--*/
/*-- to-top --*/
#toTop {
display: none;
text-decoration: none;
position: fixed;
bottom: 20px;
right: 2%;
overflow: hidden;
z-index: 999;
width: 32px;
height: 32px;
border: none;
text-indent: 100%;
background: url(../images/arr.png) no-repeat 0px 0px;
}
#toTopHover {
width: 64px;
height: 64px;
display: block;
overflow: hidden;
float: right;
opacity: 0;
-moz-opacity: 0;
filter: alpha(opacity=0);
}
/*-- //to-top --*/
/*--responsive--*/
@media(max-width:1440px) {
.wpf-demo-4 {
height: 281px;
}
.services-agileits-w3layouts-w3layouts img {
width: 23em;
}
}
@media(max-width:1366px) {
.wpf-demo-4 {
height: 266px;
}
}
@media(max-width:1280px) {
.services-agileits-w3layouts-w3layouts img {
width: 21em;
}
.gallery-grid {
width: 24.4%;
}
.wpf-demo-4 {
height: 243px;
}
.w3-agile-dot {
padding: 0em 0 16.5em;
}
.banner-bottom {
padding-top: 12em;
}
}
@media(max-width:1080px) {
.navbar-nav,
.header-top {
padding-right: 3em;
}
.navbar-nav>li {
margin-right: 15px;
}
.banner-btm-w3layouts,
.about,
.gallery,
.events,
.services-agileits-w3layouts,
.contact-sectn,
.cir_w3-agile_info,
.newsletter,
.testimonials {
padding: 5em 0;
}
h3.w3layouts-heading {
font-size: 3em;
margin-bottom: 0.75em;
background: url(../images/black.png)no-repeat 4px 2px;
background-size: 29px;
padding-left: 35px;
}
.nbs-flexisel-nav-left {
top: 51% !important;
}
.nbs-flexisel-nav-right {
top: 51% !important;
}
.bold-title {
font-size: 5em;
line-height: 56px;
padding-top: 0.8em;
background: url(../images/gold.png)no-repeat 3px 44px;
background-size: 43px;
padding-left: 44px;
}
.services-agileits-w3layouts-w3layouts img {
width: 18em;
}
.events-grids {
width: 100%;
}
.events-grids:nth-child(1) {
width: 100%;
}
.events-wthree {
width: 49%;
}
.events-wthree:nth-child(1) {
float: left;
}
.events-wthree:nth-child(2) {
float: right;
}
.banner-bottom-text h3 {
font-size: 3.5em;
}
.events-grids:nth-child(2),
.events-grids:nth-child(4) {
padding-top: 0em !important;
}
.social-icons.events-icons {
bottom: -123px;
padding: 1em 2em;
}
.wpf-demo-4 {
height: 206px;
}
#quote-carousel .carousel-indicators .active {
width: 115px;
height: 115px;
}
.w3-agile_mail_grids h3,
.w3-agile_mail_grids h2 {
font-size: 1.4em;
letter-spacing: 1.5px;
}
.copy p {
font-size: 13px;
letter-spacing: 1.5px;
padding: 1.6em 0;
}
}
@media(max-width:1050px) {
.wpf-demo-4 {
height: 199px;
}
.wpf-demo-4 .view-caption p {
font-size: 0.9em;
}
#quote-carousel {
padding: 0 10px 55px 10px;
}
.carousel-control {
width: 3%;
}
#quote-carousel .carousel-control.right {
right: 1%;
}
#quote-carousel .carousel-control.left {
left: 1%;
}
.wpf-demo-4 {
height: 195px;
}
.w3-agile_mail_grid_right textarea {
margin: 1em 0 1.1em;
}
}
@media(max-width:991px) {
.navbar-header {
float: none;
text-align: center;
margin-top: 0.8em;
}
.navbar-nav>li {
margin-right: 20px;
}
.banner-bottom-text h3 {
font-size: 3em;
}
.w3-agile-dot {
padding: 0em 0 13.5em;
}
.banner_bottom_right_grid {
width: 50%;
float: left;
margin-bottom: 1em;
}
.nbs-flexisel-nav-left {
top: 59% !important;
}
.nbs-flexisel-nav-right {
top: 59% !important;
}
.content-pro-head {
margin-top: 1.5em;
}
.service-agileinfo-grids {
padding: 0em 1.5em 2em;
width: 50%;
float: left;
}
.services-agileits-w3layouts-w3layouts img {
width: 19em;
}
.thumbnail.events-wthree:nth-child(1) {
margin-bottom: 1em;
}
.thumbnail.events-wthree {
margin-bottom: 1em;
}
.events-grids:nth-child(3).thumbnail.events-wthree {
margin-bottom: 0px;
}
.agileits-w3layouts-team-grid {
width: 50%;
}
.gallery-grid {
margin-top: 0em;
padding: 0;
margin: 1px 1px;
width: 33%;
float: left;
}
.wpf-demo-4 {
height: 255px;
}
.service-agileinfo-grids:nth-child(5),
.service-agileinfo-grids:nth-child(6) {
padding-bottom: 2em !important;
}
.service-agileinfo-grids:nth-child(7) {
padding-bottom: 0em !important;
}
}
@media(max-width:900px) {
.wpf-demo-4 {
height: 230px;
}
.w3-agile_mail_grid_right textarea {
min-height: 130px;
}
.navbar-nav>li {
margin-right: 21.5px;
}
.wpf-demo-4 {
height: 205px;
}
}
@media(max-width:768px) {
.nbs-flexisel-nav-left {
top: 68% !important;
}
.nbs-flexisel-nav-right {
top: 68% !important;
}
.wpf-demo-4 {
height: 195px;
}
#quote-carousel .carousel-indicators li {
width: 45px;
height: 45px;
}
#quote-carousel .carousel-indicators .active {
width: 100px;
height: 100px;
}
}
@media(max-width:767px) {
.navbar-default .navbar-toggle {
border-color: #fff;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: transparent;
}
.navbar-toggle {
margin: 1.1em 3.5em 0 0;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border: none;
position: absolute;
width: 100%;
background: rgba(0, 0, 0, 0.91);
z-index: 999;
}
.navbar-nav>li>a {
margin-bottom: 5px;
}
.navbar-default .navbar-nav>li>a {
padding: 10px 14px 6px;
letter-spacing: 1.5px;
}
.navbar-nav {
margin: 0;
text-align: center;
padding-left: 0;
width: 100%;
padding: 1em 0;
}
.navbar-nav .open .dropdown-menu {
width: 100%;
text-align: center;
margin: 0 auto;
background-color: transparent;
border-radius: 0;
}
.navbar-default .navbar-nav .open .dropdown-menu>li>a {
color: #fff;
}
.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,
.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {
color: #f8b239;
}
.navbar-nav>li {
margin-right: 0;
float: none;
}
.navbar-header {
margin-top: 0em;
text-align: left;
}
.navbar-toggle {
margin: 1.31em 3.5em 0 0;
}
.bold-title {
font-size: 4.4em;
line-height: 49px;
padding-top: 0.8em;
background: url(../images/gold.png)no-repeat 3px 33px;
background-size: 41px;
padding-left: 44px;
}
#quote-carousel .carousel-control {
margin-top: 6em;
}
.contact_left_grid {
width: 100%;
}
.w3-agile_mail_grid_right input[type="email"] {
margin: 1em 0 1em;
}
}
@media(max-width:736px) {
.banner-btm-w3layouts,
.about,
.gallery,
.events,
.services-agileits-w3layouts,
.contact-sectn,
.cir_w3-agile_info,
.newsletter,
.testimonials {
padding: 4.5em 0;
}
.wpf-demo-4 {
height: 187px;
}
.carousel-inner {
min-height: 265px;
}
}
@media(max-width:667px) {
.banner-bottom-text h3 {
font-size: 2.6em;
}
.banner-bottom {
padding-top: 9em;
}
.flex-control-paging li a {
width: 22px;
}
.flex-control-paging li a.flex-active {
width: 35px;
}
.flex-control-nav {
bottom: -114%;
}
.w3-agile-dot {
padding: 0em 0 11em;
}
.social-icons.events-icons {
padding: 1em 0.5em;
}
.wpf-demo-4 {
height: 170px;
}
}
@media(max-width:640px) {
.events-wthree {
width: 100%;
}
.social-icons.events-icons {
bottom: -95px;
}
.wpf-demo-4 {
height: 162px;
}
.w3-agile_mail_grid_right input[type="text"],
.w3-agile_mail_grid_right input[type="email"],
.w3-agile_mail_grid_right textarea {
font-size: 13px;
}
}
@media(max-width:600px) {
.banner-bottom-text h3 {
font-size: 2.4em;
}
.banner_bottom_right_grid {
width: 70%;
float: none;
margin: 0em auto 1em;
padding: 0;
}
.social-icons.events-icons {
bottom: -130px;
}
.gallery-grid {
width: 49.65%;
}
.wpf-demo-4 {
height: 230px;
}
p.paragraph-w3l {
line-height: 2em;
font-size: 14px;
letter-spacing: 1px;
}
h3.w3layouts-heading {
font-size: 2.8em;
margin-bottom: 0.7em;
background: url(../images/black.png)no-repeat 4px 0px;
background-size: 28px;
}
}
@media(max-width:568px) {
.banner-bottom-text h3 {
font-size: 2.3em;
}
.banner-btm-w3layouts,
.about,
.gallery,
.events,
.services-agileits-w3layouts,
.contact-sectn,
.cir_w3-agile_info,
.newsletter,
.testimonials {
padding: 4em 0;
}
.w3-agile_text_box h3,
.content-pro-head h3 {
font-size: 1.3em;
letter-spacing: 1.5px;
}
.services-agileits-w3layouts-w3layouts img {
width: 17em;
}
.social-icons.events-icons {
bottom: -115px;
}
.gallery-grid {
width: 49.6%;
}
.wpf-demo-4 {
height: 215px;
}
}
@media(max-width:480px) {
.navbar-header h1 a {
font-size: 1.2em;
}
.banner-bottom-text h3 {
font-size: 1.8em;
}
.flex-control-nav {
bottom: -165%;
}
.banner_bottom_right_grid {
width: 90%;
}
.nbs-flexisel-nav-right {
top: 71% !important;
}
.nbs-flexisel-nav-left {
top: 71% !important;
}
.service-agileinfo-grids {
padding: 0em 1em 2em;
width: 100%;
float: none;
}
.services-agileits-w3layouts {
padding-bottom: 14em !important;
}
.social-icons.events-icons {
bottom: -118px;
}
.agileits-w3layouts-team-grid {
width: 100%;
}
.agileits-w3layouts-team-grid:nth-child(3) {
margin-top: 2em;
}
.gallery-grid {
width: 49.5%;
}
.wpf-demo-4 {
height: 182px;
}
h3.w3layouts-heading {
letter-spacing: 0.5px;
}
.carousel-inner {
min-height: 300px;
}
.w3-agile_mail_grids h3,
.w3-agile_mail_grids h2 {
font-size: 1.3em;
}
.contact-left-w3-agile-sectn h4 {
font-size: 1.03em;
}
.contact-left-w3-agile-sectn p {
font-size: 13.4px;
line-height: 25px;
letter-spacing: 1.2px;
}
.w3-agile_mail_grids h3,
.w3-agile_mail_grids h2 {
line-height: 28px;
}
.map iframe {
width: 100%;
border: none;
min-height: 250px;
}
.map {
padding: 0.7em .7em .3em;
}
.copy p {
padding: 1em 1em;
line-height: 28px;
}
.bold-title {
font-size: 3.7em;
line-height: 40px;
background: url(../images/gold.png)no-repeat 3px 28px;
background-size: 34px;
padding-left: 38px;
}
}
@media(max-width:440px) {
.banner-bottom-text h3 {
font-size: 1.95em;
line-height: 40px;
}
.flex-control-nav {
bottom: -70%;
}
.banner-bottom {
padding-top: 6em;
}
.w3-agile-dot {
padding: 0em 0 9em;
}
.wpf-demo-4 {
height: 166px;
}
#quote-carousel {
padding: 0 10px 90px 10px;
}
#quote-carousel .carousel-control {
margin-top: 7em;
}
.w3-agile_mail_grid_right input[type="submit"],
.w3-agile_mail_grid_right input[type="reset"] {
width: 100%;
}
.w3-agile_mail_grid_right input[type="reset"] {
margin-top: 1em;
}
h3.w3layouts-heading {
line-height: 1.2em;
}
}
@media(max-width:414px) {
#quote-carousel {
padding: 0 10px 115px 10px;
}
#quote-carousel .carousel-control {
margin-top: 8em;
}
.wpf-demo-4 {
height: 156px;
}
.banner_bottom_right_grid {
width: 100%;
}
}
@media(max-width:384px) {
.nbs-flexisel-nav-right {
top: 66% !important;
}
.nbs-flexisel-nav-left {
top: 66% !important;
}
.thumbnail.events-wthree h4 a {
font-size: 1em;
letter-spacing: 1.5px;
}
.gallery-grid {
width: 100%;
margin: 1px 0;
}
.wpf-demo-4 {
height: 280px;
}
#quote-carousel .carousel-indicators {
left: 12%;
}
#quote-carousel .carousel-control {
margin-top: 16.5em;
font-size: 1.3em;
}
.contact-icon {
float: none;
margin-bottom: 1em;
}
}
@media(max-width:320px) {
.navbar-toggle {
margin: 1.31em 3.1em 0 0;
}
.navbar-header h1 a {
font-size: .99em;
}
.banner-bottom {
padding-top: 4em;
}
.w3-agile-dot {
padding: 0em 0 7em;
}
h3.w3layouts-heading {
font-size: 2.7em;
}
.bold-title {
font-size: 3.2em;
line-height: 34px;
background: url(../images/gold.png)no-repeat 3px 23px;
background-size: 30px;
padding-left: 34px;
}
.events-grids {
padding: 0;
}
.caption p {
margin-bottom: 2px;
line-height: 24px;
font-size: 13px;
}
.wpf-demo-4 {
height: 240px;
}
#quote-carousel {
padding: 0 10px 115px 10px;
}
#quote-carousel .carousel-indicators {
left: 8%;
}
#quote-carousel .carousel-indicators li {
width: 40px;
height: 40px;
}
#quote-carousel .carousel-control {
margin-top: 20.5em;
}
}
/*--responsive--*/ | 0.371251 | 0.066782 |
@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800,900');
@charset "utf-8";
/**
*
* -----------------------------------------------------------------------------
*
* Template : Educavo - Education HTML Template
* Author : rs-theme
* Author URI : http://www.rstheme.com/
*
* -----------------------------------------------------------------------------
*
**//* TABLE OF CONTENT
---------------------------------------------------------
01. General CSS
02. Global Class CSS
03. Header Section CSS
04. Sticky Menu CSS
05. Banner Section CSS
06. Breadcrumbs Section CSS
07. About Section CSS
08. Services Section CSS
09. Subject Section CSS
10. Categories Section CSS
11. Popular Courses Section CSS
12. Course Single Section CSS
13. Accordion Section CSS
14. Why Choose US Section CSS
15. Team Section CSS
16. Team Single Section CSS
17. Testimonial Section CSS
18. Blog Section CSS
19. Latest Events Section CSS
20. Partner Section CSS
21. Gallery Section CSS
22. CTA Section CSS
23. Counter Section CSS
24. Newsletter Section CSS
25. Publication Section CSS
26. Facilities Section CSS
27. Faq Section CSS
28. Error Section CSS
29. Shop Section CSS
30. Single Shop Section CSS
31. Cart Section CSS
32. Header Cart Section CSS
33. Checkout Section CSS
34. Login Section CSS
35. Register Section CSS
36. Contact Section CSS
37. Footer Section CSS
38. Scroll Up CSS
39. Preloader CSS
--------------------------------------------------------*/
/* -----------------------------------
01. General CSS
-------------------------------------*/
html,
body {
font-size: 15px;
color: #505050;
font-family: 'Rubik', sans-serif;
vertical-align: baseline;
line-height: 26px;
font-weight: 400;
overflow-x: hidden;
}
img {
max-width: 100%;
height: auto;
}
p {
margin: 0 0 26px;
line-height: 1.8;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Nunito', sans-serif;
color: #111111;
margin: 0 0 26px;
line-height: 1.2;
}
h1 {
font-size: 70px;
font-weight: 700;
}
h2 {
font-size: 36px;
font-weight: 700;
}
h3 {
font-size: 26px;
font-weight: 700;
}
h4 {
font-size: 24px;
font-weight: 700;
}
h5 {
font-size: 18px;
font-weight: 700;
}
h6 {
font-size: 16px;
font-weight: 700;
}
.home-style2 h1,
.home-style2 h2,
.home-style2 h3,
.home-style2 h4,
.home-style2 h5,
.home-style2 h6 {
color: #112958;
}
.uppercase {
text-transform: uppercase !important;
}
.capitalize {
text-transform: capitalize !important;
}
.bold-text {
font-size: 20px;
font-weight: bold;
font-family: 'Nunito', sans-serif;
}
.extra-bold {
font-weight: 800 !important;
}
a {
color: #ffffff;
transition: all 0.3s ease;
text-decoration: none !important;
outline: none !important;
}
a:active,
a:hover {
text-decoration: none;
outline: 0 none;
color: #21a7d0;
}
ul {
list-style: outside none none;
margin: 0;
padding: 0;
}
.clear {
clear: both;
}
::-moz-selection {
background: #21a7d0;
text-shadow: none;
color: #ffffff;
}
::selection {
background: #21a7d0;
text-shadow: none;
color: #ffffff;
}
.border-none:last-child {
border-right: none !important;
}
.width-unset {
width: unset !important;
}
.white-bg {
background-color: #ffffff;
}
.primary-bg {
background: #21a7d0;
}
.secondary-bg {
background: #273c66;
}
.title-bg {
background: #111111;
}
.gray-bg {
background: #f3f8f9;
}
.gray-bg3 {
background: #e7f9fb;
}
.gray-bg2 {
background: #e7f6f9;
}
.event-bg {
background: #f9f8f8;
}
.event2-bg {
background: #F4F6F5;
}
.dark-red {
background: #1D0E15;
}
.bg-light-gray {
background: #f9f9f9;
}
.transparent-bg {
background: transparent;
}
.home5color {
color: #54647b !important;
}
.bg-fixed {
background-attachment: fixed;
background-repeat: no-repeat;
}
.bg1 {
background: url(assets/images/bg/bg1.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.bg2 {
background: url(assets/images/bg/bg2.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.bg3 {
background: url(assets/images/bg/bg3.png);
background-size: cover;
background-repeat: no-repeat;
background-position: top center;
}
.bg4 {
background: url(assets/images/bg/home6/bg.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.bg5 {
background: url(assets/images/bg/home7/bg.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
border-radius: 5px;
}
.bg6 {
background: url(assets/images/bg/home-8-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.bg7 {
background: url(assets/images/bg/home8-bg2.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.bg8 {
background: url(assets/images/bg/home12/dotted.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
padding: 50px 0 50px;
}
.bg9 {
background: url(assets/images/bg/home13/counter-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.bg10 {
background: url(assets/images/bg/home13/logo-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.bg11 {
background: url(assets/images/bg/home13/subscribe-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.bg12 {
background: url(assets/images/bg/home13/footer-bg.html);
background-size: cover;
background-repeat: no-repeat;
}
.course-shape-bg {
background: url(assets/images/bg/course-shape-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.bg-unset {
background: unset !important;
}
.rs-menu-toggle {
color: #21a7d0;
text-align: right;
}
button {
cursor: pointer;
}
.glyph-icon:before {
margin: 0;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
outline: none !important;
}
.pagenav-link ul {
border: 1px solid #f2f2f2;
border-radius: 3px;
display: inline-block;
padding: 0 3px;
}
.pagenav-link ul li {
display: inline-block;
padding: 0 18px;
margin: 14px 0;
border-right: 1px solid #E6E6E6;
color: #21a7d0;
font-size: 16px;
}
.pagenav-link ul li a {
color: #505050;
}
.pagenav-link ul li a i:before {
color: #505050;
font-size: 13px;
transition: all 0.3s ease;
}
.pagenav-link ul li a:hover {
color: #21a7d0;
}
.pagenav-link ul li a:hover i:before {
color: #21a7d0;
}
.pagenav-link ul li:last-child {
border-right: none;
}
.pagenav-link.orange-color ul li,
.pagenav-link.orange-color ul li a:hover,
.pagenav-link.orange-color ul li a:hover i:before {
color: #21a7d0;
}
.gridFilter button {
background: transparent;
border: 0;
font-size: 15px;
font-weight: 700;
outline: none;
color: #505050;
cursor: pointer;
}
.gridFilter button.active {
color: #21a7d0;
}
.gridFilter button + button {
margin-left: 20px;
}
.gridFilter.style2 button {
background: #f9f7f8;
border: none;
border-radius: 3px;
font-weight: 500;
font-size: 16px;
color: #101010;
padding: 10px 30px;
outline: none;
margin: 0 10px 20px;
}
.gridFilter.style2 button.active,
.gridFilter.style2 button:hover {
background: #fff;
color: #21a7d0;
box-shadow: 0 0 30px #eee;
}
blockquote {
margin: 35px 0;
padding: 40px;
color: #666;
position: relative;
background: #fff;
background-repeat: no-repeat;
background-position: center center;
background-size: 55px;
font-weight: 400;
font-style: italic;
text-align: left;
clear: both;
box-shadow: 0 0 150px #eee;
}
blockquote:before {
position: absolute;
content: "";
display: block;
left: 0;
top: 0;
height: 100%;
width: 10px;
background: #21a7d0;
}
blockquote p {
font-size: 16px;
margin: 0;
}
.check-square li {
position: relative;
padding-left: 35px;
line-height: 34px;
border: none;
color: #ffffff;
}
.check-square li:before {
position: absolute;
top: 2px;
left: 0;
z-index: 0;
content: "\f046";
font-family: fontawesome;
color: #21a7d0;
font-size: 20px;
}
/*-- Blog Button Css --*/
.blog-btn {
color: #111111;
display: inline-block;
position: relative;
font-size: 15px;
padding-right: 43px;
text-transform: capitalize;
font-weight: 600;
}
.blog-btn:after {
position: absolute;
content: "\f133";
right: 20px;
top: 50%;
font-size: 15px;
font-weight: 600;
color: #111111;
font-family: "Flaticon";
transform: translateY(-50%);
transition: all 0.3s ease;
}
.blog-btn:hover {
color: #21a7d0;
}
.blog-btn:hover:after {
right: 17px;
color: #21a7d0;
}
/* ------------------------------------
02. Global Class CSS
---------------------------------------*/
.y-middle {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}
.y-bottom {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: flex-end;
-webkit-align-items: flex-end;
align-items: flex-end;
}
.readon {
outline: none;
padding: 12px 40px;
border: 1px solid #21a7d0;
border-radius: 30px;
display: inline-block;
text-transform: uppercase;
font-size: 16px;
font-family: 'Rubik', sans-serif;
font-weight: 700;
color: #111111;
background: #f3f8f9;
}
.readon.banner-style {
color: #ffffff;
background: #21a7d0;
padding: 16px 58px;
}
.readon.banner-style:hover {
background: #1e95ba;
}
.readon.purple-btn {
color: #ffffff;
background: #625eaa;
border: none;
padding: 16px 40px;
}
.readon.purple-btn:hover {
background: #4e49a1;
}
.readon.green-btn {
color: #FFFFFF;
background: #0C8B51;
border-color: #02010100;
border-radius: 30px;
font-size: 14px;
padding: 10px 30px 10px 30px;
}
.readon.green-btn:hover {
opacity: 0.9;
background: #0C8B51;
}
.readon.green-banner {
font-size: 16px;
line-height: 38px;
font-weight: 700;
padding: 8px 30px;
border-radius: 4px;
background-color: #0c8b51;
border-color: transparent;
color: #ffffff;
}
.readon.green-banner:hover {
background: #08a355;
}
.readon.white-color {
color: #ffffff !important;
background: none !important;
border: 1px solid #ffffff;
padding: 16px 40px;
}
.readon.white-color:hover {
background: #ffffff !important;
color: #4e49a1 !important;
}
.readon.orange-btn {
color: #ffffff;
background: #21a7d0;
border-color: #21a7d0;
border-radius: 5px 5px 5px 5px;
outline: none;
padding: 12px 35px;
display: inline-block;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
}
.readon.orange-btn.main-home {
padding: 10px 20px 10px 20px !important;
}
.readon.orange-btn.main-home:hover {
color: #ffffff;
background: #171F32;
border-color: #171F32;
}
.readon.orange-btn:hover {
color: #ffffff;
background: #208cad;
border-color: #208cad;
}
.readon.orange-btn.transparent:hover {
color: #101010;
background: #ffffff;
border-color: #ffffff;
}
.readon.yellow-btn {
background: #F4BF00;
border-color: #F4BF00;
border-radius: 4px 4px 4px 4px;
}
.readon.yellow-btn:hover {
color: #ffffff;
background: #171F32;
border-color: #171F32;
}
.readon.yellow-btn.transparent3:hover {
color: #1c335f;
background: #ffffff;
border-color: #ffffff;
}
.readon.transparent2 {
background: #21a7d0;
color: #111111;
border: 1px solid #21a7d0;
}
.readon.transparent2:hover {
color: #111111;
background: transparent;
border: 1px solid #21a7d0;
}
.readon.register-btn {
padding: 10px 50px;
color: #ffffff;
background: #21a7d0;
border-color: #21a7d0;
font-weight: 500;
width: 100%;
border-radius: 5px;
}
.readon.register-btn:hover {
background: #21a7d0;
}
.readon.submit-btn {
border: 2px solid;
border-color: #273c66;
padding: 10px 50px;
line-height: normal;
font-size: 14px;
text-transform: uppercase;
font-weight: 500;
background: #273c66;
color: #ffffff;
border-radius: 5px;
margin-bottom: 12px;
width: 100%;
}
.readon.submit-btn:hover {
background: transparent;
color: #21a7d0;
}
.readon.submit-requset {
background-color: #0FCB75;
margin: 0px 0px 0px 0px;
padding: 13px 35px 13px 35px;
outline: none;
border: none;
padding: 12px 40px;
border-radius: 3px;
display: inline-block;
text-transform: capitalize;
font-size: 16px;
font-family: 'Rubik', sans-serif;
font-weight: 500;
color: #ffffff;
}
.readon.submit-requset:hover {
opacity: 0.9;
background-color: #0FCB75;
}
.readon.border-less {
border: none;
}
.readon.border-less:hover {
background: rgba(243, 248, 239, 0.8);
color: #111111;
}
.readon:hover {
background: #21a7d0;
color: #ffffff;
}
.readon2 {
outline: none;
border: none;
padding: 12px 40px;
border-radius: 3px;
display: inline-block;
text-transform: capitalize;
font-size: 16px;
font-family: 'Rubik', sans-serif;
font-weight: 500;
color: #ffffff;
background: #21a7d0;
position: relative;
overflow: hidden;
}
.readon2.banner-style {
padding: 16px 40px;
}
.readon2.mod {
text-transform: uppercase;
padding: 14px 31px;
}
.readon2.transparent {
background: transparent;
color: #21a7d0;
border: 1px solid #21a7d0;
}
.readon2.transparent:hover {
color: #ffffff;
background: #21a7d0;
}
.readon2.orange-transparent {
background: transparent;
color: #21a7d0;
border: 1px solid #21a7d0;
}
.readon2.orange-transparent:hover {
color: #ffffff;
background: #21a7d0;
}
.readon2.orange {
background: #21a7d0;
}
.readon2.orange:hover {
background: #21a7d0;
}
.readon2:hover {
background: #1e95ba;
color: #ffffff;
}
.readon2.gym-btn {
background: #21a7d0;
color: #ffffff;
border-radius: 4px;
font-weight: 500;
font-size: 16px;
text-transform: capitalize;
padding: 17px 28px;
}
.readon2.gym-btn:hover {
opacity: 0.80;
}
.readon2.gym-btn.get-now:hover {
background: #ffffff;
color: #21a7d0;
}
.readon2.cta-btn {
background: #21a7d0;
color: #ffffff;
border-radius: 3px 3px 3px 3px;
font-family: "Rubik", Sans-serif;
font-size: 16px;
font-weight: 500;
text-transform: capitalize;
padding: 12px 30px 12px 30px;
}
.readon2.cta-btn:hover {
color: #F0E3E3;
background: #21a7d0;
}
.readon2.cta-btn {
background: #21a7d0;
color: #ffffff;
border-radius: 3px 3px 3px 3px;
font-family: "Rubik", Sans-serif;
font-size: 16px;
font-weight: 500;
text-transform: capitalize;
padding: 12px 30px 12px 30px;
}
.readon2.cta-btn:hover {
color: #F0E3E3;
background: #21a7d0;
}
.readon2.apply {
padding: 10px 30px 10px 30px;
}
.readon2.apply:hover {
color: unset;
}
.readon3 {
outline: none;
padding: 12px 50px;
border-radius: 30px;
display: inline-block;
text-transform: uppercase;
font-size: 16px;
font-family: 'Rubik', sans-serif;
font-weight: 500;
color: #ffffff;
background: #21a7d0;
position: relative;
}
.readon3:after,
.readon3:before {
position: absolute;
content: '';
top: 50%;
transform: translateY(-50%);
width: 5px;
height: 5px;
border-radius: 50%;
background: #ffffff;
transition: all 0.3s ease;
}
.readon3:after {
right: 30px;
}
.readon3:before {
left: 30px;
}
.readon3.active {
background: #f3f8f9;
color: #21a7d0;
}
.readon3.active:after,
.readon3.active:before {
background: #21a7d0;
}
.readon3.active:hover {
color: #ffffff;
background: #21a7d0;
}
.readon3.active:hover:after,
.readon3.active:hover:before {
background: #ffffff;
}
.readon3.dark-hov:hover {
background: #111111;
color: #ffffff;
}
.readon3.dark-hov:hover:after,
.readon3.dark-hov:hover:before {
background: #ffffff;
}
.readon3:hover {
background: #f3f8f9;
color: #21a7d0;
}
.readon3:hover:after,
.readon3:hover:before {
background: #21a7d0;
}
.readon-arrow {
color: #111111;
padding-right: 22px;
position: relative;
font-weight: 500;
}
.readon-arrow:after {
position: absolute;
content: "\f136";
font-family: Flaticon;
font-style: normal;
top: 50%;
transform: translateY(-50%);
right: 5px;
color: #111111;
transition: all 0.3s ease;
font-weight: 600;
font-size: 14px;
}
.readon-arrow:hover {
color: #21a7d0;
}
.readon-arrow:hover:after {
right: 0;
color: #21a7d0;
}
.btn-shop {
outline: none;
font-weight: 400;
border: none;
text-transform: uppercase;
background: #21a7d0;
font-size: 15px;
padding: 8px 25px;
color: #ffffff;
border-radius: 5px;
transition: all 0.3s ease 0s;
}
.btn-shop:hover {
background: #273c66;
color: #ffffff;
}
.btn-shop.orange-color {
background: #21a7d0;
color: #ffffff;
}
.btn-shop.orange-color:hover {
background: #208cad;
}
/*Pagination*/
.pagination-area .pagination-part {
display: inline-block;
padding: 0 5px 0 10px;
height: 60px;
line-height: 60px;
box-shadow: 0px 8px 26px 0px rgba(0, 0, 0, 0.1);
}
.pagination-area .pagination-part li {
position: relative;
display: inline-block;
padding: 0 20px 0 15px;
text-align: center;
cursor: pointer;
}
.pagination-area .pagination-part li a {
display: inline-flex;
align-items: center;
color: #111111;
}
.pagination-area .pagination-part li a:hover {
color: #21a7d0;
}
.pagination-area .pagination-part li i {
margin-left: 10px;
}
.pagination-area .pagination-part li i:before {
font-size: 28px;
margin: 0;
line-height: 60px;
}
.pagination-area .pagination-part li:before {
content: '';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 5px;
height: 5px;
border-radius: 50%;
background: #d6fbff;
}
.pagination-area .pagination-part li:last-child:before {
display: none;
}
.pagination-area .pagination-part li:hover a,
.pagination-area .pagination-part li.active a {
color: #21a7d0;
}
.pagination-area.orange-color .pagination-part li a:hover {
color: #21a7d0;
}
.pagination-area.orange-color .pagination-part li:before {
background: #21a7d0;
}
.pagination-area.orange-color .pagination-part li:hover a,
.pagination-area.orange-color .pagination-part li.active a {
color: #21a7d0;
}
/*Video Icon*/
.media-icon {
position: relative;
display: inline-block;
z-index: 1;
}
.media-icon .popup-videos {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #ffffff;
background: #21a7d0;
width: 70px;
height: 70px;
border-radius: 100%;
text-align: center;
}
.media-icon .popup-videos:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 120px;
height: 120px;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
transition: all 0.3s ease;
z-index: -1;
}
.media-icon .popup-videos i {
margin-left: 5px;
}
.media-icon .popup-videos i:before {
font-size: 30px;
line-height: 70px;
}
.media-icon .popup-videos:hover:before {
background: #21a7d0;
}
.media-icon.orange-color .popup-videos {
color: #21a7d0;
background: #ffffff;
}
.media-icon.orange-color .popup-videos i:before {
font-size: 30px;
line-height: 70px;
}
.media-icon.orange-color .popup-videos:hover:before {
background: #ffffff;
}
.media-icon.orange-color2 .popup-videos {
color: #ffffff;
background: #21a7d0;
animation: circle-ripple 3s linear linear infinite;
-webkit-animation: circle-ripple 3s linear infinite;
}
.media-icon.orange-color2 .popup-videos:before {
display: none;
}
.media-icon.orange-color2 .popup-videos:hover:before {
background: #21a7d0;
}
.media-icon.yellow-color .popup-videos {
color: #273c66;
background: #f4bf00;
}
.media-icon.yellow-color .popup-videos:hover:before {
background: #1c335f;
}
.rs-video-home9 {
background: url(assets/images/video/video2.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
padding: 300px 0 300px;
}
.rs-video-home9 .media-icon {
display: block;
}
.rs-call-action {
position: relative;
}
.rs-call-action .spiners {
position: absolute;
bottom: 0;
}
.rs-call-action .spiners.one {
top: 12%;
}
.rs-call-action .spiners.two {
bottom: 18%;
right: 56%;
}
.rs-call-action .spiners.three {
top: 16%;
right: 39%;
}
.margin-remove {
margin: 0 !important;
}
.no-gutter {
margin-left: 0;
margin-right: 0;
}
.no-gutter [class*="col-"] {
padding-left: 0;
padding-right: 0;
}
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
margin: 0;
}
.container-fluid {
padding-left: 60px;
padding-right: 60px;
}
.display-table {
display: table;
height: 100%;
width: 100%;
}
.display-table-cell {
display: table-cell;
vertical-align: middle;
}
.relative {
position: relative;
}
.body-color {
color: #505050 !important;
}
.white-color {
color: #ffffff !important;
}
.title-color {
color: #111111 !important;
}
.title-color2 {
color: #112958 !important;
}
.secondary-color {
color: #273c66;
}
.primary-color {
color: #21a7d0 !important;
}
.orangeColor {
color: #21a7d0 !important;
}
.dark-parimary-bg {
background: #203154 !important;
}
ul.listing-style li {
position: relative;
padding-left: 30px;
line-height: 34px;
}
ul.listing-style li:before {
position: absolute;
top: 0;
left: 0;
z-index: 0;
content: "\f05d";
font-family: 'FontAwesome';
color: #21a7d0;
font-size: 20px;
}
ul.listing-style.modify li {
padding-left: 23px;
}
ul.listing-style.modify li:before {
font-size: 15px;
}
.rs-carousel.nav-style1 {
position: relative;
}
.rs-carousel.nav-style1 .owl-nav {
display: block;
}
.rs-carousel.nav-style1 .owl-nav .owl-next,
.rs-carousel.nav-style1 .owl-nav .owl-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
width: 42px;
height: 42px;
line-height: 42px;
border-radius: 50%;
background: #21a7d0;
text-align: center;
color: #ffffff;
transition: all 0.5s;
transition-delay: 0.70s;
opacity: 0;
visibility: hidden;
}
.rs-carousel.nav-style1 .owl-nav .owl-next i:before,
.rs-carousel.nav-style1 .owl-nav .owl-prev i:before {
content: "\f138";
font-family: Flaticon;
}
.rs-carousel.nav-style1 .owl-nav .owl-next {
right: 30px;
left: unset;
}
.rs-carousel.nav-style1 .owl-nav .owl-next i:before {
content: "\f137";
}
.rs-carousel.nav-style1:hover .owl-nav .owl-next,
.rs-carousel.nav-style1:hover .owl-nav .owl-prev {
left: -50px;
transition-delay: 0s;
visibility: visible;
opacity: 1;
}
.rs-carousel.nav-style1:hover .owl-nav .owl-next {
right: -50px;
left: unset;
}
.rs-carousel.nav-style2 {
position: relative;
}
.rs-carousel.nav-style2 .owl-nav {
display: block;
position: absolute;
top: -80px;
right: 0;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev,
.rs-carousel.nav-style2 .owl-nav .owl-next {
display: inline-block;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i,
.rs-carousel.nav-style2 .owl-nav .owl-next i {
transition: all 0.3s ease;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i:before,
.rs-carousel.nav-style2 .owl-nav .owl-next i:before {
font-family: Flaticon;
font-size: 22px;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev:hover i,
.rs-carousel.nav-style2 .owl-nav .owl-next:hover i {
color: #21a7d0;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i:before {
content: "\f134";
}
.rs-carousel.nav-style2 .owl-nav .owl-prev:after {
content: "/";
padding: 0 5px 0 5px;
position: relative;
top: -3px;
}
.rs-carousel.nav-style2 .owl-nav .owl-next i:before {
content: "\f133";
}
.rs-carousel.orange-color .owl-nav .owl-prev:hover i,
.rs-carousel.orange-color .owl-nav .owl-next:hover i {
color: #21a7d0;
}
.rs-carousel .owl-dots {
text-align: center;
margin: 40px auto 0;
line-height: 15px;
display: block;
}
.rs-carousel .owl-dots .owl-dot {
width: 30px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
border: 1px solid #21a7d0;
background: transparent;
opacity: 0.7;
cursor: pointer;
}
.rs-carousel .owl-dots .owl-dot:hover {
background: #21a7d0;
}
.rs-carousel .owl-dots .active {
background: #21a7d0;
opacity: 1;
}
.owl-carousel .owl-item img {
width: auto;
}
.sec-title .sub-title {
font-size: 18px;
line-height: 28px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 8px;
}
.sec-title .sub-title.primary {
color: #21a7d0;
}
.sec-title .sub-title.secondary {
color: #273c66;
}
.sec-title .sub-title.white {
color: #ffffff;
}
.sec-title .sub-title.dark {
color: #111111;
}
.sec-title .sub-title.orange {
color: #21a7d0;
}
.sec-title .desc.big {
font-size: 18px;
line-height: 30px;
}
.sec-title .midline {
font-size: 36px;
color: #111111;
}
.sec-title2 .sub-title {
font-size: 18px;
line-height: 28px;
font-weight: 400;
color: #21a7d0;
text-transform: uppercase;
margin-bottom: 10px;
}
.sec-title2 .sub-title.white-color {
color: #ffffff;
}
.sec-title2 .title {
font-size: 42px;
line-height: 52px;
font-weight: 800;
color: #031a3d;
}
.sec-title2 .title.white-color {
color: #ffffff;
}
.sec-title2 .title.purple-color {
color: #4e49a1 !important;
}
.sec-title3 .sub-title {
font-size: 16px;
line-height: 28px;
font-weight: 500;
color: #21a7d0;
text-transform: uppercase;
margin-bottom: 10px;
}
.sec-title3 .sub-title.yellow-color {
color: #f4bf00;
}
.sec-title3 .sub-title.green-color {
color: #0c8b51;
}
.sec-title3 .sub-title.no-big {
text-transform: capitalize;
color: #ffffff;
letter-spacing: 3px;
}
.sec-title3 .sub-title.big {
font-size: 18px !important;
color: #f4bf00 !important;
font-weight: 500;
}
.sec-title3 .title {
font-size: 36px;
line-height: 46px;
font-weight: 800;
color: #031a3d;
}
.sec-title3 .title.white-color {
color: #ffffff;
}
.sec-title3 .title.black-color {
color: #101010;
}
.sec-title3 .title.new-title {
color: #101010;
line-height: 1.2;
font-weight: 700;
}
.sec-title3 .title.title2 {
font-size: 42px;
line-height: 55px;
font-weight: 700;
color: #ffffff;
}
.sec-title3 .title.title3 {
font-size: 42px;
line-height: 55px;
font-weight: 800;
color: #ffffff;
}
.sec-title3 .desc {
font-size: 16px;
line-height: 26px;
color: #363636;
}
.sec-title3 .desc.white-color {
color: #ffffff;
}
.sec-title3 .new-desc {
font-size: 18px;
line-height: 31px;
color: #333333;
}
.sec-title4 .sub-title {
font-size: 16px;
line-height: 28px;
font-weight: 500;
color: #0c8b51;
text-transform: uppercase;
margin-bottom: 10px;
}
.sec-title4 .title {
font-size: 36px;
line-height: 46px;
font-weight: 700;
color: #101010;
position: relative;
padding: 0px 0px 20px 0px;
}
.sec-title4 .title:after {
content: "";
position: absolute;
border: 0;
width: 50px;
height: 4px;
z-index: 9;
left: 0;
right: 0;
margin: 0 auto;
bottom: 0;
background: #0c8b51;
}
.sec-title4 .desc {
font-size: 16px;
line-height: 26px;
color: #363636;
}
.sec-title5 .description {
color: #ffffff;
}
.sec-title5 .description.title-color {
color: #7A7A7A;
font-weight: 400;
}
.sec-title5 .description span a {
color: #21a7d0;
}
.sec-title5 .description span a i {
margin-left: 5px;
}
.sec-title5 .description span a i:before {
top: 2.5px;
position: relative;
}
.sec-title6 .title {
font-size: 36px;
line-height: 46px;
font-weight: 700;
color: #031a3d;
}
.sec-title6 .title.title2 {
font-weight: 800;
}
.left-top-shape {
position: absolute;
left: -55px;
top: 65px;
}
.right-top-shape {
position: absolute;
right: -115px;
top: 25px;
}
/* -----------------------
03. Header Section CSS
--------------------------*/
.full-width-header .rs-header {
z-index: 99;
}
.full-width-header .rs-header .topbar-area {
background: #273c66;
}
.full-width-header .rs-header .topbar-area .topbar-contact li {
display: inline-block;
line-height: 50px;
height: 50px;
margin-right: 17px;
padding-right: 20px;
color: #ffffff;
border-right: 1px solid #374A71;
}
.full-width-header .rs-header .topbar-area .topbar-contact li i {
margin-right: 2px;
}
.full-width-header .rs-header .topbar-area .topbar-contact li i.flaticon-email:before {
bottom: -1.5px;
position: relative;
}
.full-width-header .rs-header .topbar-area .topbar-contact li i:before {
font-size: 16px;
color: #ffffff;
}
.full-width-header .rs-header .topbar-area .topbar-contact li a {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area .topbar-contact li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area .topbar-contact li:last-child {
margin: 0;
border: none;
}
.full-width-header .rs-header .topbar-area .topbar-right li {
display: inline;
margin-right: 30px;
}
.full-width-header .rs-header .topbar-area .topbar-right li.login-register {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area .topbar-right li.login-register i {
margin-right: 10px;
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area .topbar-right li.login-register a {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area .topbar-right li.login-register a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area .topbar-right li a.apply-btn {
color: #ffffff;
background: #21a7d0;
padding: 12px 35px;
display: inline-block;
}
.full-width-header .rs-header .topbar-area .topbar-right li a.apply-btn:hover {
background: #2db4de;
}
.full-width-header .rs-header .topbar-area .topbar-right li:last-child {
margin: 0;
}
.full-width-header .rs-header .topbar-area.home8-topbar {
background: #f9f8f8 !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li {
color: #363636;
border-right: 1px solid #fff;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li i {
margin-right: 2px;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li i:before {
font-size: 16px;
color: #363636;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li a {
color: #363636;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li:last-child {
margin: 0;
border: none;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li.login-register {
color: #363636;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li.login-register i {
margin-right: 10px;
color: #363636;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li.login-register a {
color: #363636;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li.login-register a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li a.apply-btn {
background: #21a7d0;
text-transform: uppercase;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li a.apply-btn:hover {
color: #ffffff;
background: #208cad;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li:last-child {
margin: 0;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part {
background: transparent !important;
border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li {
color: #ffffff !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li i {
margin-right: 2px;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li i:before {
font-size: 16px;
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li a {
color: #ffffff !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li:last-child {
margin: 0;
border: none !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li.login-register {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li.login-register i {
margin-right: 10px;
color: #ffffff !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li.login-register a {
color: #ffffff !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li.login-register a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li a.apply-btn {
background: #21a7d0;
text-transform: uppercase;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li a.apply-btn:hover {
color: #ffffff;
background: #208cad;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li:last-child {
margin: 0;
}
.full-width-header .rs-header .topbar-area.home9-topbar {
background: #273c66 !important;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li {
color: #ffffff;
border-right: 1px solid #1b315e;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li i {
margin-right: 2px;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li i:before {
font-size: 16px;
color: #f4bf00;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li a {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li a:hover {
color: #f4bf00;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li:last-child {
margin: 0;
border: none;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li.login-register {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li.login-register i {
margin-right: 10px;
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li.login-register a {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li.login-register:hover i,
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li.login-register:hover a {
color: #f4bf00;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li a.apply-btn {
background: #f4bf00;
text-transform: uppercase;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li a.apply-btn:hover {
color: #ffffff;
background: #c19700;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li:last-child {
margin: 0;
}
.full-width-header .rs-header .topbar-area.home11-topbar {
background: #0c8b51 !important;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li {
color: #ffffff;
border-right: 1px solid #00822b;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li i {
margin-right: 4px;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li i:before {
font-size: 14px;
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li a {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li a:hover {
color: #d1d1d1;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li:last-child {
margin: 0;
border: none;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share .opening {
color: #ffffff;
display: inline-block;
border-right: 1px solid #00822b;
font-size: 14px;
line-height: 50px;
margin-right: 15px;
padding-right: 18px;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share .opening i {
margin-right: 5px;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share .opening i:before {
font-size: 15px;
font-weight: 600;
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share li {
display: inline-block;
margin-right: 14px;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share li a {
line-height: 30px;
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share li:last-child {
margin: 0;
border: none;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 {
background: #f9f7f8 !important;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .topbar-contact li {
color: #333333;
border-right: 1px solid #f0ecee;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .topbar-contact li i {
margin-right: 4px;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .topbar-contact li i:before {
font-size: 14px;
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .topbar-contact li a {
color: #333333;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .topbar-contact li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .toolbar-sl-share .opening {
color: #333333;
border-right: 1px solid #f0ecee;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .toolbar-sl-share .opening i:before {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .toolbar-sl-share li a {
color: #333333;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .toolbar-sl-share li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .toolbar-sl-share li:last-child {
margin: 0;
border: none;
}
.full-width-header .rs-header .logo-part {
position: relative;
z-index: 9;
}
.full-width-header .rs-header .logo-part img {
max-height: 40px;
}
.full-width-header .rs-header .menu-area {
transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .logo-area {
position: relative;
height: 90px;
line-height: 90px;
}
.full-width-header .rs-header .menu-area .logo-area img {
transition: 0.4s;
-webkit-transition: 0.4s;
max-height: 48px;
}
.full-width-header .rs-header .menu-area .logo-area .dark {
display: none;
}
.full-width-header .rs-header .menu-area .logo-area .light {
display: inherit;
}
.full-width-header .rs-header .menu-area .responsive-logo {
position: absolute;
top: 50%;
transform: translateY(-50%);
display: none;
}
.full-width-header .rs-header .menu-area .responsive-logo img {
max-height: 30px;
}
.full-width-header .rs-header .menu-area .logo-cat-wrap {
display: flex;
align-items: center;
height: 120px;
line-height: 120px;
}
.full-width-header .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner {
top: 120px;
}
.full-width-header .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner li {
height: 45px;
line-height: 45px;
}
.full-width-header .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner li a {
padding: 0 30px;
}
.full-width-header .rs-header .menu-area .rs-menu-area {
display: flex;
align-items: center;
justify-content: center;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li {
display: inline-block;
margin-right: 50px;
padding: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a {
transition: all 0.3s ease;
font-size: 15px;
font-weight: 500;
text-transform: uppercase;
height: 120px;
line-height: 120px;
padding-right: 12px;
margin-right: -12px;
color: #ffffff;
z-index: 1;
position: relative;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a:hover:before {
content: "-";
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a:before {
content: "+";
position: absolute;
left: auto;
right: 0;
top: 50%;
text-align: center;
display: block;
cursor: pointer;
transform: translateY(-50%);
transition: all .5s ease;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li:last-child {
margin-right: 0!important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li:last-child i {
margin: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu.onepage-menu .active-menu a {
color: #21a7d0 !important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu {
background: #21a7d0;
margin: 0;
padding: 15px 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
border: none;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li a {
height: unset !important;
line-height: unset !important;
color: #ffffff !important;
font-weight: 400 !important;
text-transform: capitalize;
padding: 10px 30px !important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #273c66 !important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li a:before {
display: none;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li:last-child {
margin: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.current-menu-item > a,
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.active > a {
color: #273c66 !important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.children-mega-menu .child-mega-menu {
width: 100%;
opacity: 1 !important;
position: unset;
transform: translateY(0px);
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.children-mega-menu .child-mega-menu .child-single-megamenu {
width: 50%;
float: left;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.children-mega-menu .child-mega-menu .child-single-megamenu .sub-menu {
padding: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu.right-menu {
left: unset;
right: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu {
background: #273c66;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu .mega-menu-container {
padding: 0;
margin: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu .mega-menu-container .single-megamenu {
width: 50%;
float: left;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu .mega-menu-container .single-megamenu .sub-menu .menu-title {
font-size: 17px;
font-weight: 600;
padding: 10px 30px;
color: #ffffff;
text-transform: capitalize;
transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu .mega-menu-container .single-megamenu:hover .sub-menu .menu-title {
color: #ffffff;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul li a:hover,
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul li.active a,
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header .rs-header .menu-area .nav-expander {
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .nav-expander span {
height: 2px;
width: 30px;
display: block;
background: #ffffff;
margin: 6px 0;
transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .nav-expander span.dot1 {
margin-top: 0;
}
.full-width-header .rs-header .menu-area .nav-expander span.dot3 {
margin-bottom: 0;
}
.full-width-header .rs-header .menu-area .nav-expander:hover span {
background: #21a7d0;
}
.full-width-header .rs-header .menu-area .nav-expander.style2 span {
background: #111111;
}
.full-width-header .rs-header .menu-area .nav-expander.style2:hover span {
background: #21a7d0;
}
.full-width-header .rs-header .menu-area .nav-expander.style3 span {
background: #111111;
}
.full-width-header .rs-header .menu-area .nav-expander.style3:hover span {
background: #21a7d0;
}
.full-width-header .rs-header .menu-area .nav-expander.style4 span {
background: #ffffff;
}
.full-width-header .rs-header .menu-area .nav-expander.style4:hover span {
background: #21a7d0;
}
.full-width-header .rs-header .menu-area .nav-expander.style5 span {
background: #ffffff;
}
.full-width-header .rs-header .menu-area .nav-expander.style5:hover span {
background: #ccc;
}
.full-width-header .rs-header .menu-area .nav-expander.style6 span {
background: #ffffff;
}
.full-width-header .rs-header .menu-area .nav-expander.style6:hover span {
background: #f4bf00;
}
.full-width-header .rs-header .menu-area .appointment-cart {
position: absolute;
right: 0;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
z-index: 9;
}
.full-width-header .rs-header .menu-area .appointment-cart ul.cart {
text-align: right;
}
.full-width-header .rs-header .menu-area .appointment-cart ul.cart li {
display: inline-block;
position: relative;
cursor: pointer;
padding-right: 15px;
}
.full-width-header .rs-header .menu-area .appointment-cart ul.cart li i {
color: #ffffff;
transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .appointment-cart ul.cart li i:hover {
color: #ffffff;
}
.full-width-header .rs-header .menu-area .expand-btn-inner {
margin-right: 55px;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li {
display: inline-block;
margin-right: 15px;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner {
position: relative;
margin-right: 15px;
padding-right: 20px;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner .cart-icon {
position: relative;
height: 120px;
line-height: 120px;
z-index: 1;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner .cart-icon .cart-count {
position: absolute;
min-width: 18px;
min-height: 18px;
line-height: 18px;
font-size: 11px;
border-radius: 50%;
background: #f2f2f2;
color: #505050;
top: -13px;
right: -17px;
text-align: center;
transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner:before {
content: '';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 1px;
height: 20px;
background: #7d8aa3;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner.no-border {
padding-right: 0;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner.no-border:before {
display: none;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a {
color: #ffffff;
display: inline-block;
cursor: pointer;
z-index: 1;
position: relative;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a.short-border {
position: relative;
padding-right: 20px;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a.short-border:before {
content: '';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 1px;
height: 20px;
background: #7d8aa3;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a i:before {
font-size: 15px;
font-weight: 600;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a i.flaticon-shopping-bag-1:before {
font-weight: normal;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #ffffff;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li a.apply-btn {
text-transform: uppercase;
color: #ffffff;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li a.apply-btn:hover {
color: #21a7d0;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li:last-child {
margin-right: 0 !important;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-btn {
display: inline-flex;
align-items: center;
background: transparent;
padding: 0;
border: none;
outline: unset;
color: #ffffff;
text-transform: uppercase;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-btn i {
margin-right: 5px;
transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-btn:hover i {
color: #21a7d0;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-menu-inner {
position: absolute;
top: 120px;
width: 200px;
background: #21a7d0;
padding: 15px 0;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-menu-inner li a {
color: #ffffff;
padding: 10px 30px;
display: inline-block;
text-transform: capitalize;
width: 100%;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-menu-inner li a:hover {
color: #273c66;
}
.full-width-header .rs-header .menu-area.sticky {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: rgba(39, 60, 102, 0.9) !important;
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}
.full-width-header .rs-header .menu-area.sticky .logo-area img {
max-height: 35px;
}
.full-width-header .rs-header .menu-area.sticky .logo-area .dark {
display: inherit;
}
.full-width-header .rs-header .menu-area.sticky .logo-area .light {
display: none;
}
.full-width-header .rs-header .menu-area.sticky .logo-cat-wrap {
height: 90px;
line-height: 90px;
}
.full-width-header .rs-header .menu-area.sticky .logo-cat-wrap .categories-btn .cat-menu-inner {
top: 90px;
}
.full-width-header .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a {
height: 90px;
line-height: 90px;
color: #494949;
}
.full-width-header .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander span {
background: #111111;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander:hover span {
background: #21a7d0;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander.style3 span {
background: #111111;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander.style3:hover span {
background: #21a7d0;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander.style5 span {
background: #ffffff;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander.style5:hover span {
background: #ccc;
}
.full-width-header .rs-header .menu-area.sticky .appointment-cart ul.cart li i {
color: #494949;
}
.full-width-header .rs-header .menu-area.sticky .appointment-cart ul.cart li i:hover {
color: #21a7d0;
}
.full-width-header .rs-header .menu-area.sticky .expand-btn-inner li.cart-inner .cart-icon {
height: 90px;
line-height: 90px;
}
.full-width-header .rs-header .menu-area.sticky .expand-btn-inner li.cart-inner .woocommerce-mini-cart {
padding-top: 90px;
}
.full-width-header .rs-header .menu-area.sticky .expand-btn-inner li .cart-icon .cart-count {
background: #21a7d0;
color: #ffffff;
}
.full-width-header .rs-header .menu-area.sticky .expand-btn-inner li > a {
color: #494949;
}
.full-width-header .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .right_menu_togle {
background: #fafafa;
padding: 30px 50px;
width: 500px;
right: -500px;
z-index: 999999;
text-align: center;
transition: all 0.3s ease;
}
.full-width-header .rs-header .right_menu_togle .close-btn {
overflow: visible;
padding: 0;
}
.full-width-header .rs-header .right_menu_togle .close-btn .line {
width: 40px;
height: 40px;
line-height: 40px;
}
.full-width-header .rs-header .right_menu_togle .close-btn .line span {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%) rotate(45deg);
width: 1px !important;
height: 20px !important;
background: #ffffff;
border: none !important;
transition: all 0.3s ease;
}
.full-width-header .rs-header .right_menu_togle .close-btn .line span.line2 {
transform: translate(-50%, -50%) rotate(-45deg);
}
.full-width-header .rs-header .right_menu_togle .close-btn #nav-close {
position: relative;
float: unset;
width: 40px;
height: 40px;
line-height: 40px;
border: unset;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
background: #21a7d0;
}
.full-width-header .rs-header .right_menu_togle .close-btn #nav-close:hover {
transform: rotate(180deg);
}
.full-width-header .rs-header .right_menu_togle .canvas-logo {
padding-left: 0;
padding-bottom: 30px;
margin-top: 50px;
}
.full-width-header .rs-header .right_menu_togle .canvas-logo img {
max-height: 35px;
}
.full-width-header .rs-header .right_menu_togle .offcanvas-gallery {
display: inline-block;
}
.full-width-header .rs-header .right_menu_togle .offcanvas-gallery .gallery-img {
width: 33%;
float: left;
padding: 0 5px 10px;
}
.full-width-header .rs-header .right_menu_togle .offcanvas-gallery .gallery-img .image-popup {
display: block;
overflow: hidden;
}
.full-width-header .rs-header .right_menu_togle .offcanvas-gallery .gallery-img .image-popup img {
transition: all 0.3s ease;
}
.full-width-header .rs-header .right_menu_togle .offcanvas-gallery .gallery-img .image-popup:hover img {
transform: scale(1.1);
}
.full-width-header .rs-header .right_menu_togle .map-img {
margin-top: 25px;
}
.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li a {
font-size: 17px;
color: #222;
padding-left: 0;
}
.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact {
padding: 50px 0 0;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li {
display: inline-block;
padding-right: 20px;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li a {
color: #111111;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li a i {
font-size: 18px;
font-weight: bold;
text-align: center;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li:last-child {
padding: 0;
}
.full-width-header.header-style1 {
width: 100%;
z-index: 999;
}
.full-width-header.header-style1 .rs-header .menu-area {
background: #273c66;
}
.full-width-header.header-style1 .rs-header .menu-area .main-menu .mobile-logo-part {
display: none;
}
.full-width-header.header-style1 .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li.logo-part {
padding: 0;
margin: 0 90px 0 60px;
}
.full-width-header.header-style1 .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
left: unset;
right: 0;
background: #ffffff;
min-width: 770px;
}
.full-width-header.header-style1 .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
width: 33.33%;
float: left;
}
.full-width-header.header-style1 .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
background: unset;
padding-right: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-top: 30px;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky {
background: #273c66 !important;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a {
color: #ffffff;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky .expand-btn-inner li > a {
color: #ffffff;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
color: #ffffff;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky .expand-btn-inner li a.apply-btn {
color: #ffffff;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky .expand-btn-inner li a.apply-btn:hover {
color: #21a7d0;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area {
background: #ffffff !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area {
justify-content: flex-end;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
margin-right: 35px;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #333333;
font-weight: 500;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #0c8b51 !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover,
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #0c8b51 !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #0c8b51;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin-right: 35px;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
color: #333333;
font-weight: 500;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #0c8b51 !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #0c8b51 !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .nav-expander {
color: #111111;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .nav-expander:hover {
color: #273c66;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner {
margin-right: 0;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .cart-bottom-part {
background: #0c8b51;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn {
background: #ffffff;
color: #111111;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn:hover {
background: #f2f2f2;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li.cart-inner {
border-color: #a9b1c2;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li > a {
color: #394459;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #0c8b51 !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area.sticky {
background: #ffffff !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area.sticky .logo-cat-wrap {
display: flex;
align-items: center;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .dark-logo {
display: none;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .light-logo {
display: inherit;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area {
justify-content: flex-end;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
margin-right: 0;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover,
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #21a7d0 !important;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
color: #ffffff !important;
margin-right: 0;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #ccc !important;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #ccc !important;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu.right {
left: auto;
right: 100%;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
left: unset;
right: 0;
background: #21a7d0;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
width: 33.33%;
float: left;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
padding-right: 30px;
padding-left: 40px;
padding-bottom: 40px;
padding-top: 35px;
background: unset;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu li a {
color: #f00;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li a:hover i {
color: #21a7d0;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li.cart-inner {
border-color: #1c2f5e !important;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li > a {
color: #111111 !important;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li > a:hover {
color: #21a7d0 !important;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li .woocommerce-mini-cart .cart-bottom-part {
background: #21a7d0;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li .woocommerce-mini-cart .crt-btn {
background: #ffffff;
color: #111111;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li .woocommerce-mini-cart .crt-btn:hover {
background: #f2f2f2;
}
.full-width-header.header-style2 {
width: 100%;
z-index: 999;
}
.full-width-header.header-style2 .rs-header .menu-area {
background: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area .logo-cat-wrap .logo-part .dark-logo {
display: inherit;
}
.full-width-header.header-style2 .rs-header .menu-area .logo-cat-wrap .logo-part .light-logo {
display: none;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area {
justify-content: flex-end;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
margin-right: 35px;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #394459;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #ddd !important;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #ddd !important;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
left: unset;
right: 0;
background: #21a7d0;
min-width: 770px;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
width: 33.33%;
float: left;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
padding-right: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-top: 30px;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li a:hover,
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.active a,
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.header-style2 .rs-header .menu-area .expand-btn-inner li.cart-inner {
border-color: #a9b1c2;
}
.full-width-header.header-style2 .rs-header .menu-area .expand-btn-inner li > a {
color: #394459;
}
.full-width-header.header-style2 .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-btn {
color: #394459;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-btn i {
margin-right: 10px;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-btn:hover i {
color: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-menu-inner {
background: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-menu-inner li a {
color: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-menu-inner li a:hover {
color: #273c66;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky {
background: #273c66 !important;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .logo-cat-wrap {
display: flex;
align-items: center;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .dark-logo {
display: none;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .light-logo {
display: inherit;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a {
color: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .expand-btn-inner li > a {
color: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .nav-expander.style3 span {
background: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .nav-expander.style3:hover span {
background: #ccc;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .categories-btn .cat-btn {
color: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .categories-btn .cat-btn:hover i {
color: #21a7d0;
}
.full-width-header.header-style2.modify1 {
position: absolute;
top: 0;
left: 0;
width: 100%;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area {
background: transparent;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #ddd !important;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #ddd !important;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li a:hover,
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.active a,
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .expand-btn-inner li.cart-inner {
border-color: #a9b1c2;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .expand-btn-inner li > a {
color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .categories-btn .cat-btn {
color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .categories-btn .cat-btn:hover i {
color: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky {
background: #273c66 !important;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .logo-cat-wrap {
display: flex;
align-items: center;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .dark-logo {
display: none;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .light-logo {
display: inherit;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a {
color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .expand-btn-inner li > a {
color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .categories-btn .cat-btn {
color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .categories-btn .cat-btn:hover i {
color: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .nav-expander span {
background: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .nav-expander:hover span {
background: #ccc;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
margin-right: 35px;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #ffffff;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #f4bf00 !important;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #ffffff !important;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #111111 !important;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #f4bf00 !important;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #f4bf00 !important;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
background: #ffffff;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul li a:hover,
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul li.active a,
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
color: #f4bf00 !important;
}
.full-width-header.header-style3 {
width: 100%;
z-index: 999;
}
.full-width-header.header-style3 .rs-header .menu-area {
background: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .logo-part {
position: absolute;
left: -260px;
top: 50%;
transform: translateY(-50%);
}
.full-width-header.header-style3 .rs-header .menu-area .logo-part .small-logo {
display: none;
}
.full-width-header.header-style3 .rs-header .menu-area .logo-cat-wrap .categories-btn {
padding-left: 45px;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
margin-right: 35px;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #394459;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #ffffff;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #273c66 !important;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #273c66 !important;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
left: unset;
right: 0;
background: #21a7d0;
min-width: 780px;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
width: 33.33%;
float: left;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
padding-right: 32px;
padding-left: 32px;
padding-bottom: 32px;
padding-top: 32px;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li a:hover,
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.active a,
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .nav-expander {
color: #111111;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .nav-expander:hover {
color: #273c66;
}
.full-width-header.header-style3 .rs-header .menu-area .expand-btn-inner li.cart-inner {
border-color: #a9b1c2;
}
.full-width-header.header-style3 .rs-header .menu-area .expand-btn-inner li > a {
color: #394459;
}
.full-width-header.header-style3 .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-btn {
color: #394459;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-btn i {
margin-right: 10px;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-btn:hover i {
color: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-menu-inner {
background: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-menu-inner li a {
color: #ffffff;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-menu-inner li a:hover {
color: #273c66;
}
.full-width-header.header-style3 .rs-header .menu-area.sticky {
background: #21a7d0 !important;
}
.full-width-header.header-style3 .rs-header .menu-area.sticky .logo-cat-wrap {
display: flex;
align-items: center;
}
.full-width-header.header-style3 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .dark-logo {
display: none;
}
.full-width-header.header-style3 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .light-logo {
display: inherit;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .close-btn #nav-close {
background: #4e49a1;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .close-btn #nav-close:hover {
transform: rotate(180deg);
}
.full-width-header.header-style3 .rs-header .right_menu_togle .canvas-logo {
padding-left: 0;
padding-bottom: 30px;
margin-top: 50px;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .canvas-logo img {
max-height: 35px;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .canvas-contact {
padding: 50px 0 0;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .canvas-contact .social li a:hover {
color: #4e49a1;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .canvas-contact .social li:last-child {
padding: 0;
}
.full-width-header.header-style3.modify .rs-header .menu-area {
display: flex;
background: #ffffff;
}
.full-width-header.header-style3.modify .rs-header .menu-area .logo-part {
background: #21a7d0;
left: 0;
height: 120px;
line-height: 120px;
width: 350px;
text-align: center;
}
.full-width-header.header-style3.modify .rs-header .menu-area .logo-cat-wrap {
display: flex;
align-items: center;
float: left;
}
.full-width-header.header-style3.modify .rs-header .menu-area .rs-menu-area {
float: right;
margin-right: -130px;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner {
margin: 0;
margin-left: 50px;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner .apply-btn {
background: #21a7d0;
color: #ffffff;
line-height: 1;
padding: 11px 24px;
border-radius: 30px;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner .apply-btn:hover {
background: #1a84a4;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner .nav-expander {
top: 0;
right: 0;
width: 130px;
height: 120px;
line-height: 120px;
background: #21a7d0;
text-align: center;
transform: unset;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner .nav-expander .bar {
display: inline-block;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner .nav-expander:hover {
color: #e6e6e6;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a,
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .categories-btn .cat-btn,
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner li > a {
color: #ffffff;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a:hover,
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .categories-btn .cat-btn:hover,
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
color: #111111 !important;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a:hover i,
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .categories-btn .cat-btn:hover i,
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner li > a:hover i {
color: #111111 !important;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .main-menu .rs-menu ul li.current-menu-item > a {
color: #111111 !important;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .logo-part {
height: 90px;
line-height: 90px;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner {
margin: 0;
margin-left: 50px;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner li.cart-inner {
border-color: #ffffff;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner .apply-btn {
background: #ffffff;
color: #21a7d0;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner .apply-btn:hover {
color: #111111;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner .nav-expander {
height: 90px;
line-height: 90px;
}
.full-width-header.header-style3.modify.home-7-modify2 .rs-header .menu-area .categories-btn .cat-btn {
color: #505050;
}
.full-width-header.header-style3.modify.home-7-modify2 .rs-header .menu-area .categories-btn .cat-btn:hover {
color: #21a7d0;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area {
display: flex;
background: #ffffff;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-part {
left: 0;
height: 120px;
line-height: 120px;
width: 350px;
text-align: center;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap {
float: left;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-btn {
color: #394459;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-btn i {
margin-right: 10px;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-btn:hover i {
color: #4e49a1;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner {
background: #4e49a1;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner li a {
color: #ffffff;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner li a:hover {
color: #21a7d0;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area {
justify-content: flex-end;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
margin-right: 35px;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #394459;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #4e49a1;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #ffffff !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #ccc !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #ccc !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
background: #4e49a1;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li a:hover,
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
color: #4e49a1 !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner {
margin: 0;
margin-left: 50px;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .cart-bottom-part {
background: #4e49a1;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn {
background: #ffffff;
color: #111111;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn:hover {
background: #f2f2f2;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner .apply-btn {
background: #4e49a1;
color: #ffffff;
line-height: 1;
padding: 16px 24px;
border-radius: 30px;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner .apply-btn:hover {
background: #625eaa;
color: #ffffff;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner .nav-expander {
top: 0;
right: 0;
width: 130px;
height: 120px;
line-height: 120px;
background: #4e49a1;
text-align: center;
transform: unset;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner .nav-expander .bar {
display: inline-block;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner .nav-expander:hover {
color: #e6e6e6;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky {
background: #ffffff !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a,
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .categories-btn .cat-btn,
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner li > a {
color: #394459;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a:hover,
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .categories-btn .cat-btn:hover,
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
color: #111111 !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .main-menu .rs-menu ul li.current-menu-item > a {
color: #4e49a1 !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner li.cart-inner {
border-color: #ffffff;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner .apply-btn {
background: #4e49a1;
color: #ffffff;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner .apply-btn:hover {
background: #625eaa;
color: #ffffff !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner .nav-expander {
height: 90px;
line-height: 90px;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area {
background: #ffffff !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #111111 !important;
font-weight: 600 !important;
padding-right: 18px !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
margin-right: none !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #ffffff !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #111111 !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #21a7d0 !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
background: #fff;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area.sticky {
background: #ffffff !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4 {
width: 100%;
z-index: 999;
}
.full-width-header.home8-style4 .rs-header .menu-area {
background: #ffffff !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .logo-part {
position: relative;
z-index: 9;
}
.full-width-header.home8-style4 .rs-header .menu-area .logo-area {
position: relative;
height: 90px;
line-height: 90px;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #111111 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
margin-right: none !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #ffffff !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #111111 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #21a7d0 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
left: unset;
right: 0;
background: #ffffff;
min-width: 770px;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
width: 33.33%;
float: left;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
padding-right: 30px;
padding-left: 30px;
padding-top: 30px;
padding-bottom: 30px;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner .cart-icon i {
font-size: 20px;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li.cart-inner {
border-color: #1c2f5e !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li > a {
color: #111111 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #21a7d0 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .cart-bottom-part {
background: #21a7d0;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn {
background: #ffffff;
color: #111111;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn:hover {
background: #f2f2f2;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner .apply-btn {
background: #21a7d0;
color: #ffffff !important;
font-size: 15px;
line-height: 24px;
padding: 10px 24px;
border-radius: 30px;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner .nav-expander {
color: #111111;
}
.full-width-header.home8-style4 .rs-header .menu-area.sticky {
background: #ffffff !important;
}
.full-width-header.home8-style4 .rs-header .menu-area.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4 .rs-header .right_menu_togle .close-btn #nav-close {
background: #21a7d0;
}
.full-width-header.home8-style4 .rs-header .right_menu_togle .sidebarnav_menu li a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4 .rs-header .right_menu_togle .canvas-contact .social li a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4.main-home {
position: absolute;
top: 0;
left: 0;
width: 100%;
}
.full-width-header.home8-style4.main-home .menu-area {
background: transparent !important;
}
.full-width-header.home8-style4.main-home .menu-area .logo-part .sticky-logo {
display: none;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
margin-right: 45px;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #ffffff !important;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #ffffff !important;
min-width: 250px;
padding-bottom: 30px;
padding-top: 30px;
border-radius: 0px;
border-bottom: 5px solid #21a7d0;
border-color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #111111 !important;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu-toggle {
color: #ffffff !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .logo-part .sticky-logo {
display: block;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .logo-part .normal-logo {
display: none;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #111111 !important;
padding-right: 18px !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
margin-right: none !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner li .cart-icon .cart-count {
background: #21a7d0;
color: #ffffff;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner li > a {
color: #494949;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner li > a i:before {
color: #111111 !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner li > a:hover i:before {
color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner .user-icon > a {
line-height: 90px;
height: 90px;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner .woocommerce-mini-cart {
padding-top: 90px;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner .nav-expander {
color: #111111 !important;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .cart-icon i {
font-size: 20px;
}
.full-width-header.home8-style4.main-home .expand-btn-inner li a i:before {
color: #ffffff !important;
}
.full-width-header.home8-style4.main-home .expand-btn-inner li a:hover i:before {
color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .user-icon > a {
position: relative;
line-height: 120px;
height: 120px;
display: flex;
align-items: center;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .user-icon > a i {
color: #fff;
border: 1px solid #eee;
width: 32px;
display: block;
text-align: center;
border-radius: 50%;
font-size: 14px;
height: 32px;
line-height: 29px;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .user-icon > a i:before {
color: #ffffff;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .nav-expander {
color: #ffffff !important;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .nav-expander:hover {
color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .right_menu_togle .close-btn #nav-close {
background: #21a7d0;
}
.full-width-header.home8-style4.main-home .right_menu_togle .sidebarnav_menu li a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4.main-home .right_menu_togle .canvas-contact .social li a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4.home9 {
position: absolute;
top: 0;
left: 0;
width: 100%;
}
.full-width-header.home8-style4.home9 .menu-area {
background: transparent !important;
box-shadow: unset !important;
}
.full-width-header.home8-style4.home9 .menu-area .logo-part .sticky-logo {
display: none;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #ffffff !important;
font-weight: 600 !important;
padding-right: 18px !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
margin-right: none !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #ffffff !important;
min-width: 250px;
padding-bottom: 30px;
padding-top: 30px;
border-radius: 0px;
border-bottom: 5px solid #f4bf00;
border-color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #111111 !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .logo-part .sticky-logo {
display: block;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .logo-part .normal-logo {
display: none;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #111111 !important;
padding-right: 18px !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
margin-right: none !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner li .cart-icon .cart-count {
background: #21a7d0;
color: #ffffff;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner li > a {
color: #494949;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner li > a i:before {
color: #111111 !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner li > a:hover i:before {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner .user-icon > a {
line-height: 90px;
height: 90px;
}
.full-width-header.home8-style4.home9 .expand-btn-inner .cart-icon i {
font-size: 20px;
}
.full-width-header.home8-style4.home9 .expand-btn-inner li a i:before {
color: #ffffff !important;
}
.full-width-header.home8-style4.home9 .expand-btn-inner li a:hover i:before {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .expand-btn-inner li .woocommerce-mini-cart .cart-bottom-part {
background: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .expand-btn-inner .user-icon > a {
position: relative;
line-height: 120px;
height: 120px;
display: flex;
align-items: center;
}
.full-width-header.home8-style4.home9 .expand-btn-inner .user-icon > a i:before {
color: #ffffff;
}
.full-width-header.home8-style4.home9 .right_menu_togle .close-btn #nav-close {
background: #f4bf00;
}
.full-width-header.home8-style4.home9 .right_menu_togle .sidebarnav_menu li a:hover {
color: #f4bf00;
}
.full-width-header.home8-style4.home9 .right_menu_togle .canvas-contact .social li a:hover {
color: #f4bf00;
}
.full-width-header.home8-style4.home13 .menu-area .rs-menu-area {
justify-content: flex-end;
}
.full-width-header.home8-style4.home13 .menu-area .rs-menu .nav-menu .rs-mega-menu .mega-menu {
background: #fff;
left: unset;
right: 0;
}
.full-width-header.home8-style4.home13 .menu-area .rs-menu .nav-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
width: 33.33%;
float: left;
}
.full-width-header.home8-style4.home13 .menu-area .rs-menu .nav-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
background: unset;
padding-right: 30px;
padding-left: 41px;
}
.full-width-header.home8-style4.home13 .expand-btn-inner {
margin-right: unset;
}
.full-width-header.home8-style4.home13 .expand-btn-inner li a i {
border-right: 1px solid #fff;
padding-right: 24px;
}
.full-width-header.home8-style4.home13 .expand-btn-inner .user-icon > a i {
border: unset;
}
.full-width-header.transparent {
position: absolute;
}
.full-width-header.transparent .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #ffffff !important;
}
.full-width-header.transparent .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.transparent .rs-header .menu-area .expand-btn-inner li.cart-inner {
border-color: #1c2f5e !important;
}
.full-width-header.transparent .rs-header .menu-area .expand-btn-inner li > a {
color: #ffffff !important;
}
.full-width-header.transparent .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.transparent .rs-header .menu-area.menu-sticky {
background: none;
border-bottom: none;
}
.full-width-header.home7-style4 .rs-header .menu-area {
background: #ffffff !important;
}
.full-width-header.home7-style4 .rs-header .menu-area .logo-cat-wrap .logo-part {
background: red !important;
}
.full-width-header.home7-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #111111 !important;
}
.full-width-header.home7-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.home7-style4 .rs-header .menu-area .expand-btn-inner .nav-expander {
right: -196px;
position: absolute;
color: #ffffff !important;
background: #21a7d0;
padding: 40px 40px;
}
.full-width-header.home1-modifiy .rs-header .menu-area {
background: #ffffff !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
margin-right: 40px !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #111111 !important;
font-weight: 600 !important;
padding-right: 18px !important;
margin-right: unset !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
margin-right: 0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #ffffff !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #111111 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #21a7d0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner .cart-icon i {
font-size: 20px;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner li.cart-inner {
border-color: #1c2f5e !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner li > a {
color: #111111 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #21a7d0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner .apply-btn {
background: #21a7d0;
color: #ffffff !important;
font-size: 15px;
line-height: 24px;
padding: 10px 24px;
border-radius: 30px;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner .nav-expander {
color: #111111;
}
.full-width-header.home1-modifiy .rs-header .menu-area.sticky {
background: #ffffff !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
body .search-modal .modal-content {
background: transparent;
position: initial;
border: 0;
}
body .search-modal .search-block input {
height: 60px;
line-height: 60px;
padding: 0 15px;
background: transparent;
border-width: 0 0 1px 0;
border-radius: 0;
border-color: rgba(255, 255, 255, 0.4);
box-shadow: none;
color: #ffffff;
font-weight: 600;
font-size: 18px;
}
body .search-modal .close {
color: #ffffff;
margin-top: 20px;
font-size: 14px;
background-color: transparent;
height: 40px;
width: 40px;
text-align: center;
line-height: 40px;
border-radius: 50%;
opacity: 1;
outline: none;
transition: all 0.3s ease;
}
body .search-modal .close:hover {
color: #21a7d0 !important;
opacity: 1 !important;
}
body .modal-backdrop {
opacity: 0.95 !important;
}
/*------------------------------------
04. Sticky Menu CSS
--------------------------------------*/
.menu-sticky {
background: #fff;
margin: 0;
z-index: 999;
width: 100%;
top: 0;
position: relative;
}
@-webkit-keyframes sticky-animation {
0% {
opacity: 0;
-webkit-transform: translateY(-100%);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
}
}
@keyframes sticky-animation {
0% {
opacity: 0;
transform: translateY(-100%);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
/* ------------------------------------
05. Banner Section CSS
---------------------------------------*/
.rs-banner.style1 {
padding: 125px 0 425px;
background: url(assets/images/banner/home1.jpg);
background-size: cover;
background-position: center;
}
.rs-banner.style1 .banner-content {
max-width: 750px;
margin: 0 auto;
}
.rs-banner.style1 .banner-content .banner-title {
font-size: 55px;
margin-bottom: 16px;
}
.rs-banner.style1 .banner-content .desc {
font-size: 20px;
line-height: 30px;
}
.rs-banner.style3 {
background: url(assets/images/banner/home3.jpg);
background-size: cover;
background-position: center;
height: 100vh;
display: grid;
align-items: center;
}
.rs-banner.style3 .banner-content .banner-title {
font-size: 70px;
line-height: 1.2;
margin-bottom: 19px;
}
.rs-banner.style3 .banner-content .banner-desc {
font-size: 18px;
line-height: 30px;
margin-bottom: 41px;
position: relative;
z-index: 9;
}
.rs-banner.style3 .banner-content .banner-btn li {
display: inline;
margin-right: 30px;
}
.rs-banner.style3 .banner-content .banner-btn li:last-child {
margin: 0;
}
.rs-banner.style3 .banner-content .banner-image {
position: absolute;
right: 50px;
top: 50%;
transform: translateY(-50%);
}
.rs-banner.style4 {
background: url(assets/images/banner/home4.jpg);
background-size: cover;
background-position: center;
min-height: 935px;
display: grid;
align-items: center;
}
.rs-banner.style4 .banner-content .banner-title {
font-size: 70px;
line-height: 1.2;
margin-bottom: 5px;
}
.rs-banner.style4 .banner-line-shape {
position: absolute;
top: -205px;
left: -25px;
}
.rs-banner.style4 .banner-circle-shape {
text-align: right;
position: absolute;
bottom: -125px;
right: -15px;
}
.rs-banner.style4 .banner-dots-shape {
position: absolute;
bottom: -220px;
left: -200px;
}
.rs-banner.style5 {
position: relative;
background-color: #f3fafc;
min-height: 750px;
display: grid;
align-items: flex-end;
z-index: 9;
}
.rs-banner.style5 .banner-content {
padding-bottom: 200px;
}
.rs-banner.style5 .banner-content .sub-title {
color: #111111;
font-size: 22px;
line-height: 1.2;
font-weight: 500;
margin-bottom: 20px;
}
.rs-banner.style5 .banner-content .banner-title {
color: #111111;
font-size: 75px;
line-height: 1.2;
margin-bottom: 39px;
}
.rs-banner.style5 .banner-img {
position: absolute;
bottom: 0;
right: 0;
}
.rs-banner.style6 {
background: url(assets/images/banner/home6/bg.png);
background-size: cover;
background-position: center;
margin-bottom: 54px;
}
.rs-banner.style6 .container {
position: relative;
}
.rs-banner.style6 .banner-content {
padding: 232px 0 388px;
}
.rs-banner.style6 .banner-content .banner-title {
font-weight: 700;
line-height: 80px;
font-size: 60px;
}
.rs-banner.style6 .banner-content .desc {
font-size: 18px;
line-height: 30px;
}
.rs-banner.style6 .shape-img {
position: absolute;
bottom: -54px;
}
.rs-banner.style6 .shape-img.left {
left: 15px;
z-index: 1;
}
.rs-banner.style6 .shape-img.center {
left: 50%;
transform: translateX(-50%);
}
.rs-banner.style6 .shape-img.center .inner {
width: 810px;
height: 385px;
margin: 0 auto;
position: relative;
}
.rs-banner.style6 .shape-img.center .inner .spiner {
position: absolute;
content: '';
}
.rs-banner.style6 .shape-img.center .inner .spiner.one {
top: 0;
left: 37%;
}
.rs-banner.style6 .shape-img.center .inner .spiner.one img:nth-child(1) {
position: relative;
right: 4px;
top: 9px;
}
.rs-banner.style6 .shape-img.center .inner .spiner.two {
top: 56%;
left: 0;
}
.rs-banner.style6 .shape-img.center .inner .spiner.two img:nth-child(1) {
max-width: 16px;
}
.rs-banner.style6 .shape-img.center .inner .spiner.two img:nth-child(2) {
position: relative;
right: -3px;
top: -4px;
max-width: 25px;
}
.rs-banner.style6 .shape-img.center .inner .spiner.three {
top: 40%;
right: 0;
}
.rs-banner.style6 .shape-img.center .inner .spiner.three img:nth-child(1) {
max-width: 16px;
position: relative;
top: 29px;
left: 31px;
}
.rs-banner.style6 .shape-img.center .inner .spiner.three img:nth-child(2) {
position: relative;
right: 7px;
top: 1px;
max-width: 25px;
}
.rs-banner.style6 .shape-img.right {
right: 15px;
}
.rs-banner.style7 {
background: url(assets/images/banner/home7/banner-bg.jpg);
background-size: cover;
background-position: center;
position: relative;
min-height: 870px;
}
.rs-banner.style7 .banner-content {
position: relative;
padding: 200px 0;
}
.rs-banner.style7 .banner-content .banner-title {
font-size: 70px;
line-height: 80px;
font-weight: 800;
}
.rs-banner.style7 .icons {
position: absolute;
}
.rs-banner.style7 .icons.one {
top: 136px;
right: 50px;
}
.rs-banner.style7 .icons.two {
left: 50%;
bottom: 100px;
}
.rs-banner.style7 .icons.three {
top: 95px;
left: -160px;
}
.rs-banner.style7 .icons.four {
bottom: 210px;
left: -62px;
}
.rs-banner.style7 .img-part {
position: absolute;
right: 0;
bottom: 88px;
}
.rs-banner.style8 {
background: url(assets/images/banner/home9.jpg);
background-size: cover;
background-position: center;
display: grid;
align-items: center;
min-height: 960px;
}
.rs-banner.style8 .banner-content {
margin-top: 30px;
}
.rs-banner.style8 .banner-content .sl-sub-title {
font-size: 48px;
line-height: 50px;
font-weight: 400;
color: #ffffff;
margin-bottom: 22px;
}
.rs-banner.style8 .banner-content .sl-title {
font-size: 90px;
line-height: 90px;
font-weight: 700;
color: #ffffff;
padding-right: 374px;
margin-bottom: 45px;
}
.rs-banner.style9 {
background: url(assets/images/banner/home11/banner.jpg);
background-size: cover;
display: grid;
align-items: center;
min-height: 880px;
position: relative;
}
.rs-banner.style9 .banner-content {
max-width: 615px;
}
.rs-banner.style9 .banner-content .banner-title {
font-size: 70px;
line-height: 1.3;
color: #4e49a1;
}
.rs-banner.style9 .banner-content .desc {
font-size: 18px;
line-height: 32px;
font-weight: 400;
color: #4e49a1;
}
.rs-banner.style9 .shape-img .spiner {
position: absolute;
bottom: 0;
}
.rs-banner.style9 .shape-img .spiner.one {
top: -40%;
right: 70%;
}
.rs-banner.style9 .shape-img .spiner.two {
left: 56%;
}
.rs-banner.style9 .shape-img .spiner.three {
left: 290px;
bottom: -118px;
}
.rs-banner.style9 .shape-img .spiner.four {
top: 0%;
left: -14%;
}
.rs-banner.style9 .social-icon {
position: absolute;
bottom: 35px;
left: 70px;
}
.rs-banner.style9 .social-icon .icon-cart li {
display: inline;
margin-right: 8px;
}
.rs-banner.style9 .social-icon .icon-cart li a {
display: inline-block;
width: 40px;
height: 40px;
line-height: 44px;
border-radius: 100%;
background: #ffffff;
color: #4e49a1;
text-align: center;
}
.rs-banner.style9 .social-icon .icon-cart li a:hover {
color: #21a7d0;
}
.rs-banner.style9 .social-icon .icon-cart li i {
font-size: 20px;
}
.rs-banner.style10 {
background: url(assets/images/banner/home12/banner-home12.jpg);
background-repeat: no-repeat;
background-size: cover;
display: grid;
align-items: center;
min-height: 820px;
position: relative;
}
.rs-banner.style10 .banner-content {
padding: 120px 0 100px;
}
.rs-banner.style10 .banner-content .sl-sub-title {
font-size: 20px;
line-height: 25px;
font-weight: 400;
color: #0c8b51;
text-transform: uppercase;
padding-bottom: 10px;
}
.rs-banner.style10 .banner-content .sl-title {
font-size: 50px;
line-height: 70px;
font-weight: 800;
color: #171f32;
text-transform: uppercase;
padding-bottom: 10px;
}
.rs-banner.style10 .img-part {
width: 550px;
position: absolute;
top: 70px;
left: 17%;
z-index: 111;
}
.rs-banner.style10 .banner-intro-box .shape-img {
position: absolute;
top: 55px;
left: 45px;
}
.rs-banner.style10 .banner-intro-box .shape-img img {
width: 110px;
}
.rs-banner.style10 .banner-intro-box .intro-img {
position: absolute;
right: 8%;
top: 60px;
}
.rs-banner.style10 .banner-intro-box .intro-img img {
width: 600px;
}
.rs-banner.style11 {
background: url(assets/images/banner/home13/banner.jpg);
background-repeat: no-repeat;
background-size: cover;
position: relative;
display: grid;
align-items: center;
min-height: 950px;
z-index: 1;
}
.rs-banner.style11 .content-part {
padding: 180px 0 100px;
}
.rs-banner.style11 .content-part .sub-title {
font-size: 16px;
line-height: 27px;
font-weight: 400;
color: #21a7d0;
text-transform: uppercase;
display: block;
margin-bottom: 15px;
}
.rs-banner.style11 .content-part .title {
font-size: 70px;
line-height: 75px;
font-weight: 700;
color: #ffffff;
margin-bottom: 32px;
}
.rs-banner.style11 .images-part {
padding-top: 100px;
}
.rs-banner.style11 .images-part img {
max-width: unset;
width: 700px;
}
.rs-banner.style11 .icons-spiner .circle {
top: 18%;
right: 81%;
position: absolute;
}
.rs-banner.style11 .icons-spiner .squre-img {
position: absolute;
right: 60%;
bottom: 20%;
}
.rs-banner.style11 .icons-spiner .dot-img {
position: absolute;
right: 15%;
top: 20%;
z-index: -111;
}
.rs-banner.style12 {
background-color: #F9F7F8;
background-image: url(assets/images/banner/home14/border.png);
background-position: bottom left;
background-repeat: no-repeat;
padding: 100px 0px 100px 0px;
}
.rs-banner.style12 .banner-content .sub-text {
font-size: 16px;
line-height: 27px;
font-weight: 500;
color: #21a7d0;
text-transform: uppercase;
display: block;
margin-bottom: 10px;
}
.rs-banner.style12 .banner-content .title {
font-size: 48px;
line-height: 62px;
font-weight: 800;
color: #101010;
margin-bottom: 30px;
}
.rs-banner.style12 .banner-content .title span {
color: #21a7d0;
}
.rs-banner.style12 .banner-content .desc {
font-size: 20px;
line-height: 32px;
font-weight: 400;
color: #333333;
margin-bottom: 45px;
}
.rs-banner.style12 .banner-content .search-widget .search-wrap {
position: relative;
}
.rs-banner.style12 .banner-content .search-widget .search-wrap [type=search] {
outline: none;
padding: 20px 30px;
border: none;
border-radius: 3px;
box-shadow: none;
padding-right: 77px;
width: 100%;
}
.rs-banner.style12 .banner-content .search-widget .search-wrap button {
background: transparent;
border: medium none;
color: #21a7d0;
padding: 11px 15px 12px;
position: absolute;
display: block;
right: 10px;
top: 10px;
z-index: 10;
font-size: 20px;
font-weight: 700;
}
.rs-banner.style12 .banner-img img {
max-width: unset;
width: 620px;
}
.rs-banner .left-shape {
position: absolute;
top: -30px;
left: 40px;
z-index: -1;
}
.rs-banner .right-shape {
position: absolute;
top: 65px;
right: -90px;
z-index: -1;
}
.rs-banner .bottom-shape {
width: 100%;
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
}
.rs-banner .bottom-shape img {
width: 100%;
}
/* ------------------------------------
06. Slider Section CSS
---------------------------------------*/
.rs-slider.style1 {
position: relative;
}
.rs-slider.style1 .slider-content {
padding: 250px 0;
}
.rs-slider.style1 .slider-content .sl-sub-title {
font-size: 48px;
line-height: 58px;
font-family: 'Nunito', sans-serif;
margin-bottom: 24px;
}
.rs-slider.style1 .slider-content .sl-title {
font-size: 90px;
line-height: 100px;
margin-bottom: 39px;
margin-left: -5px;
}
.rs-slider.style1 .slider-content.slide1 {
background: url(assets/images/slider/h2-1.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.rs-slider.style1 .slider-content.slide2 {
background: url(assets/images/slider/h2-2.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.rs-slider.style1 .owl-nav .owl-next,
.rs-slider.style1 .owl-nav .owl-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
width: 42px;
height: 42px;
line-height: 42px;
border-radius: 50%;
background: #21a7d0;
text-align: center;
color: #ffffff;
transition: all 0.5s;
transition-delay: 0.70s;
opacity: 0;
visibility: hidden;
}
.rs-slider.style1 .owl-nav .owl-next i:before,
.rs-slider.style1 .owl-nav .owl-prev i:before {
content: "\f138";
font-family: Flaticon;
}
.rs-slider.style1 .owl-nav .owl-next {
right: 30px;
left: unset;
}
.rs-slider.style1 .owl-nav .owl-next i:before {
content: "\f137";
}
.rs-slider.style1:hover .owl-nav .owl-next,
.rs-slider.style1:hover .owl-nav .owl-prev {
left: 50px;
transition-delay: 0s;
visibility: visible;
opacity: 1;
}
.rs-slider.style1:hover .owl-nav .owl-next {
right: 50px;
left: unset;
}
.rs-slider.style2 .slide-part {
background: #f9f8f8;
padding: 100px 0 0;
}
.rs-slider.style2 .slide-part .img-part {
margin-bottom: -80px;
overflow: hidden;
}
.rs-slider.style2 .slide-part .content {
padding: 100px 0 100px;
}
.rs-slider.style2 .slide-part .content .title {
font-size: 55px;
line-height: 70px;
font-family: 'Nunito', sans-serif;
margin-bottom: 40px;
color: #031a3d;
}
.rs-slider.style2 .slide-part .content .sub-title {
font-size: 16px;
line-height: 25px;
color: #21a7d0;
margin-bottom: 20px;
text-transform: uppercase;
}
.rs-slider.style2 .owl-nav .owl-next,
.rs-slider.style2 .owl-nav .owl-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
width: 42px;
height: 42px;
line-height: 42px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.1);
cursor: pointer;
text-align: center;
color: #ffffff;
transition: all 0.5s;
transition-delay: 0.70s;
opacity: 0;
visibility: hidden;
}
.rs-slider.style2 .owl-nav .owl-next i:before,
.rs-slider.style2 .owl-nav .owl-prev i:before {
content: "\f138";
font-family: Flaticon;
}
.rs-slider.style2 .owl-nav .owl-next:hover,
.rs-slider.style2 .owl-nav .owl-prev:hover {
background: #21a7d0;
color: #ffffff;
}
.rs-slider.style2 .owl-nav .owl-next {
right: 30px;
left: unset;
}
.rs-slider.style2 .owl-nav .owl-next i:before {
content: "\f137";
}
.rs-slider.style2:hover .owl-nav .owl-next,
.rs-slider.style2:hover .owl-nav .owl-prev {
left: 50px;
transition-delay: 0s;
visibility: visible;
opacity: 1;
}
.rs-slider.style2:hover .owl-nav .owl-next {
right: 50px;
left: unset;
}
.rs-slider.style2 .owl-carousel .owl-stage-outer {
padding: 0 0 80px;
margin: 0 0 -80px;
}
.rs-slider.main-home {
position: relative;
}
.rs-slider.main-home .slider-content {
text-align: center;
}
.rs-slider.main-home .slider-content .content-part {
padding: 250px 35px 400px;
max-width: 900px;
margin: 0 auto;
}
.rs-slider.main-home .slider-content .content-part .sl-sub-title {
font-size: 22px;
line-height: 30px;
font-weight: 500;
color: #21a7d0;
margin-bottom: 22px;
text-transform: uppercase;
}
.rs-slider.main-home .slider-content .content-part .sl-title {
font-size: 70px;
line-height: 80px;
font-weight: 700;
color: #ffffff;
margin-bottom: 65px;
}
.rs-slider.main-home .slider-content.slide1 {
background: url(assets/images/slider/main-home/1.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.rs-slider.main-home .slider-content.slide2 {
background: url(assets/images/slider/main-home/2.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.rs-slider.main-home .owl-nav .owl-next,
.rs-slider.main-home .owl-nav .owl-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
width: 42px;
height: 42px;
line-height: 42px;
border-radius: 50%;
background: #21a7d0;
text-align: center;
color: #ffffff;
transition: all 0.5s;
transition-delay: 0.70s;
opacity: 0;
visibility: hidden;
}
.rs-slider.main-home .owl-nav .owl-next i:before,
.rs-slider.main-home .owl-nav .owl-prev i:before {
content: "\f138";
font-family: Flaticon;
}
.rs-slider.main-home .owl-nav .owl-next:hover,
.rs-slider.main-home .owl-nav .owl-prev:hover {
background: #208cad;
}
.rs-slider.main-home .owl-nav .owl-next {
right: 30px;
left: unset;
}
.rs-slider.main-home .owl-nav .owl-next i:before {
content: "\f137";
}
.rs-slider.main-home:hover .owl-nav .owl-next,
.rs-slider.main-home:hover .owl-nav .owl-prev {
left: 50px;
transition-delay: 0s;
visibility: visible;
opacity: 1;
}
.rs-slider.main-home:hover .owl-nav .owl-next {
right: 50px;
left: unset;
}
/* ------------------------------------
06. Breadcrumbs Section CSS
---------------------------------------*/
.rs-breadcrumbs {
position: relative;
}
.rs-breadcrumbs .breadcrumbs-img img {
width: 100%;
}
.rs-breadcrumbs .breadcrumbs-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
text-align: center;
}
.rs-breadcrumbs .breadcrumbs-text .page-title {
font-size: 48px;
margin-bottom: 20px;
color: #21a7d0;
}
.rs-breadcrumbs .breadcrumbs-text ul {
padding: 0;
}
.rs-breadcrumbs .breadcrumbs-text ul li {
color: #505050;
display: inline-block;
font-size: 16px;
font-weight: 400;
}
.rs-breadcrumbs .breadcrumbs-text ul li a {
position: relative;
padding-right: 30px;
-webkit-transition: 0.3s;
transition: 0.3s;
color: #505050;
}
.rs-breadcrumbs .breadcrumbs-text ul li a:before,
.rs-breadcrumbs .breadcrumbs-text ul li a:after {
background-color: #505050;
content: "";
height: 15px;
width: 2px;
position: absolute;
right: 7px;
top: 2px;
transform: rotate(26deg);
}
.rs-breadcrumbs .breadcrumbs-text ul li a:before {
right: 13px;
}
.rs-breadcrumbs .breadcrumbs-text ul li a:hover {
color: #21a7d0;
}
.rs-breadcrumbs .breadcrumbs-text.white-color .page-title {
color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li {
color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a {
color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a:before,
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a:after {
background-color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a:before {
right: 13px;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a:hover {
color: #21a7d0;
}
.rs-breadcrumbs .breadcrumbs-text.padding {
padding-top: 100px;
}
.breadcrumbs-overlay:after {
content: '';
position: absolute;
background-color: rgba(17, 17, 17, 0.8);
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.breadcrumbs1 {
background-image: url(assets/images/breadcrumbs/1.jpg);
background-size: cover;
background-position: center;
background-position: center top;
}
/* ------------------------------------
07. About Section CSS
---------------------------------------*/
.rs-about .histort-part {
position: absolute;
top: 50%;
right: 0;
transform: translateY(-50%);
border: none;
display: block;
}
.rs-about .histort-part .single-history {
display: block;
margin-bottom: 30px;
}
.rs-about .histort-part .single-history a {
padding: 28px 20px 22px;
box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
border: none;
border-radius: 5px;
width: 230px;
font-size: 20px;
font-weight: 500;
text-align: center;
color: #ffffff;
background: #171F32;
transition: all 0.3s ease;
}
.rs-about .histort-part .single-history a .icon-part {
display: block;
margin-bottom: 15px;
}
.rs-about .histort-part .single-history a .icon-part i:before {
font-size: 45px;
line-height: 1;
color: #ffffff;
}
.rs-about .histort-part .single-history a:hover,
.rs-about .histort-part .single-history a.active {
background: #21a7d0;
}
.rs-about .histort-part .last-item {
margin-bottom: 0;
}
.rs-about .history-list .title {
font-size: 22px;
padding: 0;
margin-bottom: 15px;
font-family: 'Nunito', sans-serif;
font-weight: 700;
color: #111111;
}
.rs-about .history-list .title:before {
display: none;
}
.rs-about .history-list li {
position: relative;
padding-left: 40px;
margin-bottom: 10px;
}
.rs-about .history-list li:before {
content: '';
position: absolute;
top: 10px;
left: 25px;
width: 5px;
height: 5px;
background: #111111;
}
.rs-about .history-list li:last-child {
margin-bottom: 0;
}
.rs-about.style1 .about-part {
background: #e7f4f6;
padding: 60px 60px 70px;
border-radius: 5px;
margin-top: -60px;
}
.rs-about.style1 .about-part .desc {
font-size: 18px;
line-height: 30px;
color: #505050;
}
.rs-about.style1 .about-part .sign-part {
display: flex;
align-items: center;
}
.rs-about.style1 .about-part .sign-part .img-part {
padding-right: 30px;
}
.rs-about.style1 .about-part .sign-part .author-part span {
display: block;
}
.rs-about.style1 .about-part .sign-part .author-part .post {
font-size: 18px;
}
.rs-about.style1 .notice-bord.style1 {
margin-top: -60px;
}
.rs-about.style1 .notice-bord.style1 .title {
background: #21a7d0;
font-size: 20px;
text-transform: uppercase;
padding: 18px 25px;
text-align: center;
font-weight: 600;
color: #ffffff;
margin-bottom: 10px;
}
.rs-about.style1 .notice-bord.style1 li {
position: relative;
background: #e7f4f6;
margin-bottom: 12px;
border-radius: 3px;
padding: 20px;
padding-left: 0 !important;
overflow: hidden;
}
.rs-about.style1 .notice-bord.style1 li .date {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
text-align: center;
color: #21a7d0;
border-right: 1px solid #21a7d0;
padding-right: 10px;
font-weight: 600;
width: 60px;
}
.rs-about.style1 .notice-bord.style1 li .date span {
font-size: 22px;
font-family: 'Nunito', sans-serif;
display: block;
}
.rs-about.style1 .notice-bord.style1 li .desc {
padding-left: 95px;
font-weight: 500;
}
.rs-about.style1 .notice-bord.style1 li:last-child {
margin-bottom: 0;
}
.rs-about.style1 .img-part {
position: relative;
}
.rs-about.style1 .img-part .shape {
position: absolute;
}
.rs-about.style1 .img-part .top-center {
top: -30px;
left: 49%;
z-index: -1;
}
.rs-about.style1 .img-part .left-bottom {
left: 0;
bottom: 0;
}
.rs-about.style1 .img-part .left-bottom.second {
bottom: -40px;
}
.rs-about.style2 .about-intro {
border-radius: 3px;
background: url(assets/images/bg/about-intro-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
padding: 88px 50px 95px;
box-shadow: 0 0 20px 0px rgba(17, 41, 88, 0.2);
}
.rs-about.style2 .couter-area .counter-item {
text-align: center;
padding: 34px 15px;
border-radius: 3px;
}
.rs-about.style2 .couter-area .counter-item .number {
margin-bottom: 7px;
font-size: 42px;
}
.rs-about.style2 .couter-area .counter-item .title {
font-size: 22px;
color: #394459;
}
.rs-about.style2 .couter-area .counter-item.one {
background: #fbf8cc;
}
.rs-about.style2 .couter-area .counter-item.two {
background: #e9fbd5;
}
.rs-about.style2 .couter-area .counter-item.three {
background: #dcf1fd;
}
.rs-about.style2 .grid-area .image-grid img {
border-radius: 3px;
}
.rs-about.style3 .couter-area .counter-item {
text-align: center;
padding: 34px 15px;
border-radius: 10px;
}
.rs-about.style3 .couter-area .counter-item .count-img {
display: block;
margin: 0 auto 23px;
}
.rs-about.style3 .couter-area .counter-item .number {
margin-bottom: 7px;
font-size: 42px;
color: #111111;
}
.rs-about.style3 .couter-area .counter-item .title {
font-size: 22px;
color: #505050;
}
.rs-about.style3 .couter-area .counter-item.one {
background: #fbf8cc;
}
.rs-about.style3 .couter-area .counter-item.two {
background: #e9fbd5;
}
.rs-about.style3 .couter-area .counter-item.three {
background: #dcf1fd;
}
.rs-about.style4 .img-part {
position: relative;
}
.rs-about.style4 .img-part .about-main {
position: relative;
z-index: 9;
}
.rs-about.style4 .img-part .shape {
position: absolute;
z-index: -1;
left: 0;
bottom: 0;
}
.rs-about.style4 .img-part .circle-bg {
z-index: 1;
}
.rs-about.style4 .about-content .title {
font-size: 36px;
font-weight: 800;
}
.rs-about.style4 .about-content .sub-title {
color: #54647b;
font-size: 20px;
font-weight: 500;
text-transform: capitalize;
margin-bottom: 20px;
}
.rs-about.style4 .about-content .contact-part li {
display: inline-flex;
align-items: center;
margin: 0 30px 0 0;
float: left;
}
.rs-about.style4 .about-content .contact-part li span {
display: block;
}
.rs-about.style4 .about-content .contact-part li .img-part {
float: left;
width: 70px;
height: 70px;
line-height: 60px;
border-radius: 50%;
border: 5px solid #e5e8eb;
text-align: center;
margin-right: 30px;
}
.rs-about.style4 .about-content .contact-part li .desc {
font-size: 18px;
font-weight: 500;
color: #54647b;
}
.rs-about.style4 .about-content .contact-part li .desc span a {
font-size: 24px;
color: #111111;
}
.rs-about.style4 .about-content .contact-part li .desc a {
color: #031a3d;
font-size: 24px;
font-weight: bold;
margin-top: 10px;
display: block;
}
.rs-about.style4 .about-content .contact-part li .desc a:hover {
color: #21a7d0;
}
.rs-about.style4 .about-content .contact-part li:last-child {
margin: 0;
}
.rs-about.style4 .about-content .book-part {
position: absolute;
right: 0;
bottom: -25px;
width: 775px;
}
.rs-about.style4 .about-content .book-part .single-book {
padding: 20px 60px;
background: #f3f8f9;
float: left;
}
.rs-about.style5 {
background-image: url(assets/images/bg/about-bg.jpg);
background-size: cover;
background-position: center;
}
.rs-about.style5 .about-content .title {
font-size: 42px;
font-weight: 800;
}
.rs-about.style5 .about-content .sub-title {
color: #505050;
font-size: 20px;
font-weight: 500;
text-transform: capitalize;
margin-bottom: 20px;
}
.rs-about.style5 .about-content .contact-part li {
position: relative;
margin-bottom: 40px;
}
.rs-about.style5 .about-content .contact-part li span {
display: block;
}
.rs-about.style5 .about-content .contact-part li .img-part {
position: absolute;
left: 0;
width: 70px;
height: 70px;
line-height: 60px;
border-radius: 50%;
border: 5px solid #e5e8eb;
text-align: center;
margin-right: 30px;
}
.rs-about.style5 .about-content .contact-part li .desc {
font-size: 18px;
font-weight: 500;
color: #505050;
padding-left: 95px;
}
.rs-about.style5 .about-content .contact-part li .desc p {
color: #031a3d;
font-size: 24px;
font-weight: bold;
margin: 10px 0 0;
}
.rs-about.style5 .about-content .contact-part li .desc a {
color: #111111;
font-size: 24px;
font-weight: bold;
margin-top: 10px;
display: block;
}
.rs-about.style5 .about-content .contact-part li .desc a:hover {
color: #21a7d0;
}
.rs-about.style5 .about-content .contact-part li .desc .address {
color: #111111;
font-size: 22px;
font-weight: bold;
margin-top: 10px;
display: block;
}
.rs-about.style5 .about-content .contact-part li:last-child {
margin-bottom: 0;
}
.rs-about.style6 .desc {
font-size: 16px;
color: #505050;
font-weight: 400;
}
.rs-about.style6 .shape-animate {
position: relative;
}
.rs-about.style6 .shape-animate .transparent {
position: absolute;
}
.rs-about.style6 .shape-animate .transparent.left {
left: 27%;
}
.rs-about.style6 .shape-animate .transparent.right {
right: 20%;
}
.rs-about.style9 .content .sub-title {
font-size: 18px;
line-height: 28px;
font-weight: 500;
color: #f4bf00;
text-transform: uppercase;
}
.rs-about.style9 .content .sl-title {
font-size: 36px;
line-height: 45px;
font-weight: 700;
color: #111111;
}
.rs-about.style9 .content .desc {
font-size: 18px;
line-height: 28px;
font-weight: 400;
color: #505050;
}
.rs-about.video-style {
position: relative;
}
.rs-about.video-style .icon-shape {
position: absolute;
top: -130px;
left: -130px;
}
.rs-about.video-style .dot-shape {
position: absolute;
right: -90px;
bottom: 30px;
}
.rs-about.video-style .about-content {
padding: 70px 70px 70px 160px;
margin-left: -120px;
margin-top: -70px;
}
.rs-about.video-img {
background: url(assets/images/video/bg.png);
background-repeat: no-repeat;
background-position: center top;
background-size: cover;
border-radius: 10px;
position: relative;
padding-bottom: 500px;
}
.rs-about.video-img .shape-img {
position: absolute;
bottom: 0;
}
.rs-about.video-img .shape-img.left {
left: 100px;
}
.rs-about.video-img .shape-img.center {
left: 50%;
transform: translateX(-50%);
}
.rs-about.video-img .shape-img.right {
right: 100px;
}
.rs-about.style8 .main-content {
padding: 40px 33px;
background: #f9f8f8;
position: relative;
border-radius: 6px;
}
.rs-about.style8 .main-content .img-part {
position: absolute;
left: -240px;
top: -50px;
z-index: 111;
}
.rs-about.style8 .main-content .img-part img {
border-radius: 6px;
}
.rs-about.style8 .main-content .images-title img {
border-radius: 6px;
}
.rs-about.style9 .content-part {
background-color: #F9F8F8;
padding: 65px 30px 70px 100px;
position: relative;
}
.rs-about.style9 .content-part .about-img {
position: absolute;
z-index: 111;
left: -480px;
top: 83px;
}
.rs-about.style9 .content-part .about-img img {
border-radius: 6px;
}
.rs-about.orange-color .histort-part .single-history .icon-part i:before {
color: #21a7d0;
}
.rs-about.style10 {
position: relative;
}
.rs-about.style10 .shape-icons .shape {
position: absolute;
bottom: 0;
}
.rs-about.style10 .shape-icons .shape.one {
right: 49%;
bottom: 28%;
}
.rs-about.style10 .shape-icons .shape.two {
top: 19%;
left: 23%;
}
/* ------------------------------------
08. Services Section CSS
---------------------------------------*/
.rs-services.style1 .service-item {
position: relative;
overflow: hidden;
}
.rs-services.style1 .service-item .scale-img {
transition: all 0.3s ease;
transform: scale(1);
}
.rs-services.style1 .service-item .content-part {
position: absolute;
content: '';
top: 50%;
transform: translateY(-50%);
width: 100%;
z-index: 1;
text-align: center;
}
.rs-services.style1 .service-item .content-part i {
font-size: 40px;
color: #ffffff;
}
.rs-services.style1 .service-item .content-part i:before {
font-size: 40px;
}
.rs-services.style1 .service-item .content-part .title {
font-size: 22px;
margin: 17px 0 0 0;
}
.rs-services.style1 .service-item .content-part .title a {
color: #ffffff;
}
.rs-services.style1 .service-item .content-part .title a:hover {
opacity: 0.8;
}
.rs-services.style1 .service-item:after {
position: absolute;
content: '';
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #273c66;
opacity: 0.9;
}
.rs-services.style1 .service-item.overly1:after {
background: #273c66;
}
.rs-services.style1 .service-item.overly2:after {
background: #21a7d0;
}
.rs-services.style1 .service-item.overly3:after {
background: #772bea;
}
.rs-services.style1 .service-item.overly4:after {
background: #16aaca;
}
.rs-services.style1 .service-item:hover .scale-img {
transform: scale(1.1);
}
.rs-services.style2 .service-item {
text-align: center;
background: #f3fafc;
}
.rs-services.style2 .service-item .content-part {
position: unset;
transform: unset;
padding: 60px 35px 50px;
}
.rs-services.style2 .service-item .content-part .icon-part i {
color: #21a7d0;
}
.rs-services.style2 .service-item .content-part .icon-part i:before {
font-size: 75px;
}
.rs-services.style2 .service-item .content-part .title {
font-size: 22px;
margin: 20px 0 0 0;
}
.rs-services.style2 .service-item .content-part .title a {
color: #111111;
}
.rs-services.style2 .service-item .content-part .title a:hover {
color: #21a7d0;
}
.rs-services.style2 .service-item .content-part .desc {
margin-bottom: 15px;
margin-top: 5px;
}
.rs-services.style2 .service-item .content-part .service-btn {
position: relative;
padding-right: 20px;
color: #111111;
}
.rs-services.style2 .service-item .content-part .service-btn i {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
transition: all 0.3s ease;
}
.rs-services.style2 .service-item .content-part .service-btn:hover {
color: #21a7d0;
}
.rs-services.style2 .service-item .content-part .service-btn:hover i {
right: -5px;
}
.rs-services.style6 .services-wrap {
text-align: center;
padding: 50px 30px 50px;
border-radius: 10px;
}
.rs-services.style6 .services-wrap .services-item {
transition: all .8s ease;
position: relative;
}
.rs-services.style6 .services-wrap .services-item .services-desc .title {
font-size: 22px;
line-height: 26px;
margin-top: 20px;
margin-bottom: 20px;
}
.rs-services.style6 .services-wrap .services-item .services-desc .title a {
color: #111111;
}
.rs-services.style6 .services-wrap .services-item .services-desc .title a:hover {
color: #21a7d0;
transition: all 0.3s ease;
}
.rs-services.style6 .services-wrap .services-item .services-desc p {
font-size: 16px;
line-height: 26px;
font-weight: 400;
color: #505050;
margin: 0;
}
.rs-services.style6 .services-wrap.bg1 {
background: #fdfcdb;
}
.rs-services.style6 .services-wrap.bg2 {
background: #fbe7e4;
}
.rs-services.style6 .services-wrap.bg3 {
background: #e7f6fa;
}
.rs-services.style6 .services-wrap.bg4 {
background: #f3e9fe;
}
.rs-services.style6 .services-wrap:hover .services-item {
transform: translateY(-10px);
}
.rs-services.style6 .services-wrap:hover .services-item .services-desc .title a {
color: #21a7d0;
}
.rs-services.style7 .services-item {
position: relative;
}
.rs-services.style7 .services-item .img-part img {
width: 100%;
}
.rs-services.style7 .services-item .content-part {
position: absolute;
top: 0;
left: 0;
padding: 50px 30px;
border-radius: 4px;
transition: all 0.3s ease;
}
.rs-services.style7 .services-item .content-part .title {
font-size: 22px;
line-height: 32px;
margin-bottom: 20px;
}
.rs-services.style7 .services-item .content-part .title a {
color: #ffffff;
}
.rs-services.style7 .services-item .content-part .title a:hover {
color: #21a7d0;
transition: all 0.3s ease;
}
.rs-services.style7 .services-item .content-part .desc {
font-size: 16px;
line-height: 26px;
font-weight: 400;
color: #ffffff;
margin: 0;
}
.rs-services.style7 .services-item:hover .content-part {
top: -10px;
}
.rs-services.home12-style {
background: url(assets/images/bg/home12/services-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
padding: 150px 0;
}
.rs-services.home12-style .services-item {
padding: 45px 15px 40px 15px;
text-align: center;
background: #ffffff;
box-shadow: 0 0 30px #eee;
}
.rs-services.home12-style .services-item .services-image .services-icons {
padding-bottom: 20px;
}
.rs-services.home12-style .services-item .services-image .services-icons img {
width: 100px;
}
.rs-services.home12-style .services-item .services-image .services-text .services-title .title {
font-size: 24px;
line-height: 36px;
font-weight: 700;
color: #171f32;
padding-bottom: 15px;
margin: 0;
}
.rs-services.home12-style .services-item .services-image .services-text .text {
font-size: 16px;
line-height: 27px;
font-weight: 400;
color: #363636;
margin: 0;
padding-bottom: 10px;
}
.rs-services.home12-style .services-item:hover .services-image .services-text .services-title .title {
color: #0c8b51;
}
/* ------------------------------------
09. Subject Section CSS
---------------------------------------*/
.rs-subject.style1 .subject-wrap {
text-align: center;
background: #d3fcf8;
border-radius: 10px;
padding: 50px 30px 45px;
}
.rs-subject.style1 .subject-wrap img {
transition: all 0.3s ease;
transform: translateY(0);
}
.rs-subject.style1 .subject-wrap .title {
margin: 20px 0 5px 0;
}
.rs-subject.style1 .subject-wrap .title a {
color: #111111;
}
.rs-subject.style1 .subject-wrap .title a:hover {
opacity: .8;
}
.rs-subject.style1 .subject-wrap:hover img {
transition: all 0.3s ease;
transform: translateY(-7px);
}
.rs-subject.style1 .subject-wrap.bgc1 {
background: #d3fcf8;
}
.rs-subject.style1 .subject-wrap.bgc2 {
background: #16aaca;
}
.rs-subject.style1 .subject-wrap.bgc3 {
background: #f9e8e8;
}
.rs-subject.style1 .subject-wrap.bgc4 {
background: #f8f6d1;
}
.rs-subject.style1 .subject-wrap.bgc5 {
background: #eaddf8;
}
.rs-subject.style1 .subject-wrap.bgc6 {
background: #e9fbd5;
}
.rs-subject.style1 .subject-wrap.text-light {
color: #ffffff;
}
.rs-subject.style1 .subject-wrap.text-light .title a {
color: #ffffff;
}
/* ------------------------------------
10. Categories Section CSS
---------------------------------------*/
.rs-categories.style1 .categories-item {
border: 1px solid #dfe9eb;
background: #ffffff;
overflow: hidden;
padding: 30px;
display: block;
color: #505050;
border-radius: 5px;
display: flex;
align-items: center;
}
.rs-categories.style1 .categories-item .icon-part {
float: left;
margin-right: 25px;
width: 70px;
height: 70px;
line-height: 70px;
border-radius: 100%;
background: rgba(22, 170, 202, 0.2);
text-align: center;
transition: all 0.3s ease;
}
.rs-categories.style1 .categories-item .icon-part img {
-webkit-transition: all 0.4s ease;
transform: scale(1);
}
.rs-categories.style1 .categories-item .content-part .title {
color: #111111;
margin-bottom: 5px;
font-size: 22px;
transition: all 0.3s ease;
}
.rs-categories.style1 .categories-item:hover {
background: #21a7d0;
color: #ffffff;
border-color: #21a7d0;
}
.rs-categories.style1 .categories-item:hover .icon-part {
background: #ffffff;
}
.rs-categories.style1 .categories-item:hover .icon-part img {
transform: scale(0.9);
}
.rs-categories.style1 .categories-item:hover .content-part .title {
color: #ffffff;
}
.rs-categories.main-home .categories-items {
position: relative;
transition: all 0.3s ease;
}
.rs-categories.main-home .categories-items .cate-images a img {
box-shadow: 0 0 30px #eee;
background: #fff;
border-radius: 0 0 5px 5px;
position: relative;
transition: all 500ms ease;
border-radius: 5px;
}
.rs-categories.main-home .categories-items .contents {
position: absolute;
left: 0px;
z-index: 3;
width: 100%;
text-align: left;
transition: all 500ms ease;
padding: 30px 40px;
bottom: 0;
display: flex;
align-items: center;
}
.rs-categories.main-home .categories-items .contents .img-part img {
width: 42px;
margin: 0 20px 8px 0;
}
.rs-categories.main-home .categories-items .contents .content-wrap .title {
font-size: 22px;
line-height: 32px;
font-weight: 700;
margin-bottom: 5px;
}
.rs-categories.main-home .categories-items .contents .content-wrap .title a {
color: #ffffff;
}
.rs-categories.main-home .categories-items .contents .content-wrap .title a:hover {
color: #21a7d0;
}
.rs-categories.main-home .categories-items .contents .content-wrap .course-qnty {
font-size: 16px;
line-height: 1.4;
font-weight: 400;
color: #ffffff;
transition: all 500ms ease;
margin: 0px;
}
.rs-categories.main-home .categories-items:before {
content: "";
background: -moz-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 50%);
background: linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 50%);
background: -webkit-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 50%);
width: 100%;
height: 100%;
position: absolute;
top: 0;
z-index: 0;
border-radius: 5px;
transition: all 500ms ease;
z-index: 1;
}
.rs-categories.main-home .categories-items:hover {
transform: translateY(-10px);
}
.rs-categories.home9-style .categories-items {
position: relative;
transition: all 0.3s ease;
}
.rs-categories.home9-style .categories-items .images-part a img {
border-radius: 4px 4px 0px 0px;
}
.rs-categories.home9-style .categories-items .image-content {
border-radius: 0px 0px 4px 4px;
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.18);
padding: 70px 30px 25px 40px;
background-color: #ffffff;
position: relative;
}
.rs-categories.home9-style .categories-items .image-content .effect-icon {
background: #1c335e;
border-radius: 50%;
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 0;
top: -44px;
text-align: center;
right: 0;
margin: 0 auto;
box-shadow: 0 0 50px #eee;
}
.rs-categories.home9-style .categories-items .image-content .effect-icon i {
color: #f4bf00;
font-size: 35px;
}
.rs-categories.home9-style .categories-items .image-content .title {
font-size: 25px;
line-height: 32px;
font-weight: 700;
color: #101010;
margin-bottom: 17px;
}
.rs-categories.home9-style .categories-items .image-content .title a {
color: #101010;
}
.rs-categories.home9-style .categories-items .image-content .title a:hover {
color: #f4bf00;
}
.rs-categories.home9-style .categories-items .image-content .description p {
font-weight: 400;
color: #505050;
font-size: 16px;
padding-right: 50px;
}
.rs-categories.home9-style .categories-items .image-content .button-bottom .button-effect {
position: absolute;
left: 50%;
bottom: -14px;
transform: translateX(-50%);
transition: all .8s ease;
width: 100%;
text-align: center;
visibility: hidden;
opacity: 0;
}
.rs-categories.home9-style .categories-items .image-content .button-bottom .button-effect a {
text-transform: uppercase;
color: #1c335f;
padding: 13px 35px 13px 35px;
background-color: #f4bf00;
border-radius: 30px 30px 30px 30px;
}
.rs-categories.home9-style .categories-items .image-content .button-bottom .button-effect a:hover {
color: #ffffff;
background: #1c335f;
}
.rs-categories.home9-style .categories-items:hover {
transform: translateY(-10px);
}
.rs-categories.home9-style .categories-items:hover .image-content .title a {
color: #f4bf00;
}
.rs-categories.home9-style .categories-items:hover .image-content .button-bottom .button-effect {
opacity: 1;
visibility: visible;
}
.rs-categories.home11-style {
background-position: center;
}
.rs-categories.home11-style .img-part {
background: url(assets/images/categories/home11/1.jpg);
background-size: cover;
background-repeat: no-repeat;
}
.rs-categories.home11-style .main-part {
background: #e7f8fb;
padding: 100px 300px 100px 70px;
}
.rs-categories.home11-style .main-part .categories-item {
display: flex;
}
.rs-categories.home11-style .main-part .categories-item .icon-part {
margin-right: 15px;
}
.rs-categories.home11-style .main-part .categories-item .content-part .title {
font-size: 22px;
line-height: 32px;
font-weight: 800;
margin-bottom: 10px;
}
.rs-categories.home11-style .main-part .categories-item .content-part .title a {
color: #4e49a1;
}
.rs-categories.home11-style .main-part .categories-item .content-part .title a:hover {
color: #21a7d0;
}
.rs-categories.home11-style .main-part .categories-item .content-part p {
font-size: 16px;
line-height: 30px;
font-weight: 400;
color: #54647b;
margin: 0;
}
.rs-categories.home-style14 .categories-items {
position: relative;
transition: all 0.3s ease;
overflow: hidden;
}
.rs-categories.home-style14 .categories-items .cate-images {
position: relative;
transition: all 500ms ease;
}
.rs-categories.home-style14 .categories-items .cate-images:before {
content: "";
left: 0;
display: block;
background: rgba(23, 31, 50, 0.5);
width: 100%;
height: 100%;
position: absolute;
top: 0;
z-index: 1;
border-radius: 5px;
}
.rs-categories.home-style14 .categories-items .cate-images a img {
box-shadow: 0 0 30px #eee;
background: #fff;
border-radius: 0 0 5px 5px;
position: relative;
transition: all 500ms ease;
border-radius: 5px;
}
.rs-categories.home-style14 .categories-items .contents {
position: absolute;
left: 50%;
bottom: -185px;
z-index: 3;
width: 100%;
text-align: center;
transform: translate(-50%, -50%);
transition: all 500ms ease;
padding: 26px 20px 20px 20px;
}
.rs-categories.home-style14 .categories-items .contents .img-part img {
width: 42px;
margin: 0 0px 15px 0;
}
.rs-categories.home-style14 .categories-items .contents .content-wrap .title {
font-size: 22px;
line-height: 32px;
font-weight: 700;
margin-bottom: 5px;
}
.rs-categories.home-style14 .categories-items .contents .content-wrap .title a {
color: #ffffff;
}
.rs-categories.home-style14 .categories-items .contents .content-wrap .title a:hover {
color: #21a7d0;
}
.rs-categories.home-style14 .categories-items .contents .content-wrap .course-qnty {
color: #fff;
opacity: 0;
visibility: hidden;
transition: all 500ms ease;
margin: 7px 0;
display: inline-block;
}
.rs-categories.home-style14 .categories-items .contents .content-wrap .btn2 a {
opacity: 0;
visibility: hidden;
transition: all 500ms ease;
margin-top: 12px;
background: #21a7d0;
color: #fff;
display: inline-block;
padding: 6px 22px;
border-radius: 5px;
}
.rs-categories.home-style14 .categories-items:hover {
transform: translateY(-10px);
}
.rs-categories.home-style14 .categories-items:hover .contents {
bottom: -80px;
}
.rs-categories.home-style14 .categories-items:hover .contents .content-wrap .course-qnty {
visibility: visible;
opacity: 1;
}
.rs-categories.home-style14 .categories-items:hover .contents .content-wrap .btn2 a {
visibility: visible;
opacity: 1;
}
/* ------------------------------------
11. Popular Courses Section CSS
---------------------------------------*/
.rs-popular-courses.style1 .courses-item {
padding: 30px;
border: 4px solid #203154;
border-radius: 5px;
transition: all 0.3s ease;
}
.rs-popular-courses.style1 .courses-item .img-part {
margin-bottom: 30px;
}
.rs-popular-courses.style1 .courses-item .img-part img {
width: 100%;
border-radius: 5px;
transition: all 0.3s ease;
}
.rs-popular-courses.style1 .courses-item .content-part .meta-part {
margin-bottom: 17px;
}
.rs-popular-courses.style1 .courses-item .content-part .meta-part li {
display: inline;
margin-right: 10px;
}
.rs-popular-courses.style1 .courses-item .content-part .meta-part li span.price {
display: inline-block;
padding: 3px 20px;
color: #ffffff;
font-weight: 500;
background: #21a7d0;
border-radius: 3px;
transition: all 0.3s ease;
}
.rs-popular-courses.style1 .courses-item .content-part .meta-part li a.categorie {
color: #505050;
}
.rs-popular-courses.style1 .courses-item .content-part .meta-part li:last-child {
margin: 0;
}
.rs-popular-courses.style1 .courses-item .content-part .title {
font-size: 24px;
}
.rs-popular-courses.style1 .courses-item .content-part .title a {
color: #111111;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part {
overflow: hidden;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .info-meta {
float: left;
padding-top: 10px;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .info-meta li {
display: inline;
margin-right: 15px;
transition: all 0.3s ease;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .info-meta li.user i {
color: #505050;
margin-right: 8px;
transition: all 0.3s ease;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .info-meta li.ratings i {
color: #fcb903;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .info-meta li:last-child {
margin: 0;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .btn-part {
text-align: right;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .btn-part a {
padding: 5px 13px;
background: #f3f8f9;
border: 1px solid #21a7d0;
display: inline-block;
border-radius: 3px;
color: #111111;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .btn-part a i:before {
font-size: 18px;
font-weight: 700;
}
.rs-popular-courses.style1.modify1 .courses-item {
overflow: hidden;
transition: all 0.3s ease;
}
.rs-popular-courses.style1.modify1 .courses-item .img-part {
overflow: hidden;
margin-bottom: 35px;
border-radius: 4px;
}
.rs-popular-courses.style1.modify1 .courses-item .img-part img {
transition: all 500ms ease;
transform: scale(1);
}
.rs-popular-courses.style1.modify1 .courses-item .content-part .title {
font-size: 22px;
line-height: 32px;
font-weight: 700;
margin-bottom: 12px;
}
.rs-popular-courses.style1.modify1 .courses-item .content-part .title a {
color: #111111;
}
.rs-popular-courses.style1.modify1 .courses-item .content-part .title a:hover {
color: #21a7d0;
}
.rs-popular-courses.style1.modify1 .courses-item:hover .img-part img {
transform: scale(1.1);
}
.rs-popular-courses.style2 .course-wrap {
background: #c7e8f0;
position: relative;
border-radius: 10px;
text-align: center;
transition: all 0.3s ease;
overflow: hidden;
padding: 30px;
}
.rs-popular-courses.style2 .course-wrap .front-part {
z-index: 1;
position: relative;
transition: all 0.3s ease;
opacity: 1;
visibility: visible;
}
.rs-popular-courses.style2 .course-wrap .front-part .img-part {
margin-bottom: 21px;
}
.rs-popular-courses.style2 .course-wrap .front-part .content-part a.categorie {
color: #505050;
}
.rs-popular-courses.style2 .course-wrap .front-part .content-part .title {
margin: 7px 0 0 0;
}
.rs-popular-courses.style2 .course-wrap .front-part .content-part .title a {
color: #111111;
}
.rs-popular-courses.style2 .course-wrap .inner-part {
z-index: 1;
position: absolute;
top: 40%;
left: 0;
width: 100%;
padding: 0 30px;
transform: translateY(-50%);
transition: all 0.3s ease;
opacity: 0;
visibility: hidden;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part a.categorie {
color: #ffffff;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part a.categorie:hover {
color: #111111;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .title {
margin: 10px 0 25px;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .title a {
color: #ffffff;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .title a:hover {
color: #111111;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .course-meta li {
color: #ffffff;
display: inline;
margin-right: 15px;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .course-meta li.course-user i {
margin-right: 6px;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .course-meta li.ratings i {
margin-right: 3px;
color: #fcb903;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .course-meta li:last-child {
margin: 0;
}
.rs-popular-courses.style2 .course-wrap .price-btn {
position: absolute;
bottom: 0;
padding-bottom: 50px;
left: 50%;
transform: translateX(-50%);
transition: all 0.3s ease;
opacity: 0;
visibility: hidden;
}
.rs-popular-courses.style2 .course-wrap .price-btn a {
font-weight: 500;
background: #ffffff;
border-radius: 3px;
color: #111111;
display: inline-block;
padding: 5px 5px 5px 10px;
}
.rs-popular-courses.style2 .course-wrap .price-btn a i {
padding-left: 5px;
}
.rs-popular-courses.style2 .course-wrap .price-btn a i:before {
font-size: 15px;
color: #ffffff;
width: 41px;
height: 30px;
line-height: 30px;
text-align: center;
background: #21a7d0;
display: inline-block;
border-radius: 3px;
transition: all 0.3s ease;
}
.rs-popular-courses.style2 .course-wrap .price-btn a:hover i:before {
background: #111111;
}
.rs-popular-courses.style2 .course-wrap:after,
.rs-popular-courses.style2 .course-wrap:before {
position: absolute;
content: '';
border-radius: 50%;
transition: all 0.3s ease;
z-index: 0;
background: #b5e2ec;
}
.rs-popular-courses.style2 .course-wrap:after {
width: 146px;
height: 146px;
left: -73px;
bottom: 70px;
}
.rs-popular-courses.style2 .course-wrap:before {
width: 412px;
height: 412px;
right: -133px;
top: -80px;
}
.rs-popular-courses.style2 .course-wrap:hover {
background: #16aaca;
}
.rs-popular-courses.style2 .course-wrap:hover .front-part {
opacity: 0;
visibility: hidden;
}
.rs-popular-courses.style2 .course-wrap:hover .inner-part,
.rs-popular-courses.style2 .course-wrap:hover .price-btn {
opacity: 1;
visibility: visible;
}
.rs-popular-courses.style2 .course-wrap:hover:after,
.rs-popular-courses.style2 .course-wrap:hover:before {
background: #1ca6c7;
}
.rs-popular-courses.style3 .courses-item {
border: 1px solid #dfe9eb;
transition: all 0.3s ease;
}
.rs-popular-courses.style3 .courses-item .img-part img {
width: 100%;
transition: all 0.3s ease;
}
.rs-popular-courses.style3 .courses-item .content-part {
position: relative;
padding: 40px 25px;
}
.rs-popular-courses.style3 .courses-item .content-part a.categories {
display: inline-block;
padding: 0 15px;
height: 40px;
line-height: 40px;
color: #ffffff;
font-weight: 500;
background: #21a7d0;
border-radius: 3px;
transition: all 0.3s ease;
position: absolute;
top: -20px;
}
.rs-popular-courses.style3 .courses-item .content-part .meta-part {
margin-bottom: 17px;
}
.rs-popular-courses.style3 .courses-item .content-part .meta-part li {
display: inline;
margin-right: 10px;
font-weight: 700;
}
.rs-popular-courses.style3 .courses-item .content-part .meta-part li:last-child {
margin: 0;
}
.rs-popular-courses.style3 .courses-item .content-part .title a {
color: #111111;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part {
overflow: hidden;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .info-meta {
float: left;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .info-meta li {
display: inline;
margin-right: 15px;
transition: all 0.3s ease;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .info-meta li.ratings i {
color: #fcb903;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .info-meta li:last-child {
margin: 0;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .btn-part {
text-align: right;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .btn-part a {
color: #505050;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .btn-part a i:before {
font-size: 18px;
font-weight: 700;
padding-left: 10px;
}
.rs-popular-courses.style4 .sec-title .title {
font-weight: 800;
}
.rs-popular-courses.style4 .sec-title .sub-title {
text-transform: capitalize;
font-size: 20px;
font-weight: 500;
color: #485973;
}
.rs-popular-courses.style4 .courses-item {
border: 1px solid #dfe9eb;
transition: all 0.3s ease;
}
.rs-popular-courses.style4 .courses-item .img-part img {
width: 100%;
transition: all 0.3s ease;
}
.rs-popular-courses.style4 .courses-item .content-part {
position: relative;
padding: 40px 25px;
}
.rs-popular-courses.style4 .courses-item .content-part .price {
display: inline-block;
padding: 0 15px;
height: 40px;
line-height: 40px;
color: #ffffff;
font-weight: 500;
background: #21a7d0;
border-radius: 3px;
transition: all 0.3s ease;
position: absolute;
top: -20px;
left: 50%;
transform: translateX(-50%);
}
.rs-popular-courses.style4 .courses-item .content-part a.categories {
color: #485973;
display: inline-block;
margin-bottom: 10px;
}
.rs-popular-courses.style4 .courses-item .content-part .meta-part {
margin-bottom: 17px;
}
.rs-popular-courses.style4 .courses-item .content-part .meta-part li {
display: inline;
margin-right: 10px;
font-weight: 700;
}
.rs-popular-courses.style4 .courses-item .content-part .meta-part li:last-child {
margin: 0;
}
.rs-popular-courses.style4 .courses-item .content-part .title {
font-size: 24px;
}
.rs-popular-courses.style4 .courses-item .content-part .title a {
color: #111111;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part {
overflow: hidden;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .user {
float: left;
margin-right: 20px;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .info-meta {
float: left;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .info-meta li {
display: inline;
margin-right: 15px;
transition: all 0.3s ease;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .info-meta li.ratings i {
color: #fcb903;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .info-meta li:last-child {
margin: 0;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .btn-part {
text-align: right;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .btn-part a {
color: #505050;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .btn-part a i:before {
font-size: 18px;
font-weight: 700;
padding-left: 10px;
}
.rs-popular-courses.style5 .courses-item .courses-grid .img-part {
overflow: hidden;
}
.rs-popular-courses.style5 .courses-item .courses-grid .img-part a img {
border-radius: 5px;
transition: all 500ms ease;
transform: scale(1);
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part {
padding: 50px 30px 50px;
position: relative;
text-align: center;
background: #F9F8F8;
border-color: #F9F8F8;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .course-price .price {
padding: 9px 20px;
color: #ffffff;
font-weight: 500;
background: #21a7d0;
border-radius: 5px;
transition: all 0.3s ease;
position: absolute;
top: -25px;
left: 50%;
transform: translateX(-50%);
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .title {
font-size: 22px;
line-height: 32px;
margin-bottom: 18px;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .title a {
color: #031a3d;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .title a:hover {
color: #21a7d0;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .meta-part {
text-align: center;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .meta-part .user {
display: inline-block;
margin-right: 8px;
color: #363636;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .meta-part .user i:before {
color: #21a7d0;
padding-right: 6px;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .meta-part .user i:before:last-child {
padding-left: 0;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .meta-part .user:last-child {
margin-right: 0;
}
.rs-popular-courses.style5 .courses-item:hover .courses-grid .img-part a img {
transform: scale(1.1);
}
.rs-popular-courses.course-view-style .course-part {
margin: 0 -15px;
}
.rs-popular-courses.course-view-style .course-part .courses-item {
float: left;
width: 46%;
margin: 0 15px;
margin-bottom: 30px;
}
.rs-popular-courses.course-view-style .course-part .courses-item.right {
float: right;
}
.rs-popular-courses.course-view-style .course-search-part {
background-color: #fff;
border: 1px solid #e0e0e08c;
margin-bottom: 30px;
padding: 15px 30px;
display: inline-flex;
width: 100%;
}
.rs-popular-courses.course-view-style .course-search-part .course-view-part {
display: flex;
align-items: center;
float: left;
width: 90%;
}
.rs-popular-courses.course-view-style .course-search-part .course-view-part .view-icons {
float: left;
margin-right: 20px;
line-height: 1;
}
.rs-popular-courses.course-view-style .course-search-part .course-view-part .view-icons a {
color: #505050;
font-size: 20px;
opacity: 0.7;
}
.rs-popular-courses.course-view-style .course-search-part .course-view-part .view-icons a.view-grid {
color: #21a7d0;
opacity: 1;
}
.rs-popular-courses.course-view-style .course-search-part .course-view-part .view-icons a:hover {
color: #21a7d0;
opacity: 1;
}
.rs-popular-courses.course-view-style .course-search-part .type-form {
position: relative;
float: right;
}
.rs-popular-courses.course-view-style .course-search-part .type-form select {
display: block;
width: 100%;
min-width: 125px;
height: 40px;
line-height: 40px;
font-size: 14px;
font-weight: 500;
color: #ffffff;
padding: 0 40px 0 20px;
background: #21a7d0;
border: none;
border-radius: 4px;
-webkit-appearance: none;
-moz-appearance: none;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
cursor: pointer;
}
.rs-popular-courses.course-view-style .course-search-part .type-form .custom-select-box {
position: relative;
}
.rs-popular-courses.course-view-style .course-search-part .type-form .custom-select-box:before {
font-family: 'FontAwesome';
content: "\f107";
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
display: block;
color: #ffffff;
font-size: 16px;
line-height: 1;
}
.rs-popular-courses.course-view-style.list-view .course-part {
margin: 0;
}
.rs-popular-courses.course-view-style.list-view .course-part .courses-item {
width: 100%;
margin: 0 0 30px;
display: flex;
align-items: center;
}
.rs-popular-courses.course-view-style.list-view .course-part .courses-item .img-part {
margin: 0;
margin-right: 30px;
}
.rs-popular-courses.course-view-style.list-view .course-search-part .course-view-part .view-icons a.view-grid {
color: #505050;
opacity: 0.7;
}
.rs-popular-courses.course-view-style.list-view .course-search-part .course-view-part .view-icons a.view-list {
color: #21a7d0;
opacity: 1;
}
.rs-popular-courses.course-view-style .widget-archives .categories {
margin-left: 25px;
}
.rs-popular-courses.course-view-style .filter-widget {
position: relative;
}
.rs-popular-courses.course-view-style .filter-widget h5 {
position: relative;
padding: 12px 25px;
padding-left: 0;
font-size: 16px;
font-weight: 600;
color: #03382e;
display: block;
border-bottom: 1px solid #f0f5fb;
}
.rs-popular-courses.course-view-style .filter-form {
position: relative;
}
.rs-popular-courses.course-view-style .filter-form span {
position: relative;
color: #626262;
font-size: 16px;
display: block;
font-weight: 600;
margin-bottom: 15px;
}
.rs-popular-courses.course-view-style .filter-form .radio-box {
position: relative;
margin-left: 25px;
margin-bottom: 12px;
}
.rs-popular-courses.course-view-style .filter-form .radio-box label {
position: relative;
display: block;
width: 100%;
line-height: 1;
padding-left: 25px;
cursor: pointer;
margin-bottom: 0;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.rs-popular-courses.course-view-style .filter-form .radio-box label:before {
position: absolute;
left: 0;
top: 3px;
height: 10px;
width: 10px;
background: #b6b6b6;
content: "";
border-radius: 50px;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
border: 1px solid transparent;
}
.rs-popular-courses.course-view-style .filter-form .radio-box label:after {
position: absolute;
left: 0px;
top: 0;
height: 15px;
line-height: 15px;
max-width: 0;
font-size: 14px;
color: #ffffff;
font-weight: 800;
overflow: hidden;
background: transparent;
text-align: center;
font-family: 'FontAwesome';
-webkit-transition: max-width 500ms ease;
-moz-transition: max-width 500ms ease;
-ms-transition: max-width 500ms ease;
-o-transition: max-width 500ms ease;
transition: max-width 500ms ease;
}
.rs-popular-courses.course-view-style .filter-form .radio-box input[type="radio"]:checked + label {
border-color: #25a9e0;
}
.rs-popular-courses.course-view-style .filter-form .radio-box input[type="radio"] {
display: none;
}
.rs-popular-courses.course-view-style .filter-form .radio-box input[type="radio"]:checked + label:before {
border: 5px solid #21a7d0;
background: #ffffff;
}
.rs-popular-courses.course-view-style .filter-form .radio-box input[type="radio"]:checked + label:after {
max-width: 20px;
opacity: 1;
}
.rs-popular-courses.course-view-style .filter-form .radio-box:last-child {
margin-bottom: 0px;
}
.rs-popular-courses.course-view-style .filter-form .check-box {
margin-left: 25px;
margin-bottom: 12px;
}
.rs-popular-courses.course-view-style .filter-form .check-box label {
padding-left: 10px;
line-height: 1;
}
.rs-popular-courses.main-home .courses-item .courses-grid {
padding: 0px;
box-shadow: 0 0 30px #eee;
border-radius: 0 0 4px 4px;
background: #ffffff;
}
.rs-popular-courses.main-home .courses-item .courses-grid .img-part {
margin-bottom: 0px;
overflow: hidden;
}
.rs-popular-courses.main-home .courses-item .courses-grid .img-part a img {
border-radius: 4px 4px 0 0;
transition: all .8s ease;
transform: scale(1);
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part {
padding: 32px 35px 35px 35px;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .info-meta {
padding-bottom: 10px;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .info-meta li {
display: inline-block;
margin-right: 10px;
transition: all 0.3s ease;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .info-meta li i {
color: #fcb903;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .course-price .price {
padding: 3px 15px;
color: #ffffff;
font-weight: 500;
background: #21a7d0;
border-radius: 5px;
transition: all 0.3s ease;
position: absolute;
top: 20px;
right: 38px;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .title {
margin: 0 0 10px;
line-height: 30px;
font-size: 22px;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .title a {
color: #101010;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .title a:hover {
color: #21a7d0;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .meta-part {
display: flex;
justify-content: space-between;
list-style: none;
margin: 25px 0 0;
padding: 25px 0 0;
font-size: 14px;
border-top: 1px solid #f4f0f0;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .meta-part .user {
display: inline-block;
margin-right: 8px;
color: #363636;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .meta-part .user i:before {
color: #21a7d0;
padding-right: 6px;
}
.rs-popular-courses.main-home .courses-item:hover .courses-grid .img-part a img {
transform: scale(1.1);
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part {
padding: 32px 35px 35px 35px;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .info-meta {
padding-bottom: 10px;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .info-meta li i {
color: #fcb903;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .course-price .price {
background: #0c8b51;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .title {
margin: 0 0 10px;
line-height: 30px;
font-size: 22px;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .title a {
color: #101010;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .title a:hover {
color: #0c8b51;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .meta-part {
border-top: 1px solid #f4f0f0;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .meta-part .user {
display: inline-block;
margin-right: 8px;
color: #363636;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .meta-part .user i:before {
color: #0c8b51;
padding-right: 6px;
}
.rs-popular-courses.orange-color .courses-item .content-part .meta-part li span.price {
background: #21a7d0;
}
.rs-popular-courses.orange-color .courses-item .content-part .title a:hover {
color: #21a7d0;
}
.rs-popular-courses.orange-color .courses-item .content-part .bottom-part .btn-part a {
border: 1px solid #f2f2f2;
background: transparent;
}
.rs-popular-courses.orange-color .courses-item .content-part .bottom-part .btn-part a:hover {
background: #21a7d0;
color: #ffffff;
}
.rs-popular-courses.orange-color.style2 .course-wrap {
background: #21a7d0;
}
.rs-popular-courses.orange-color.style2 .course-wrap .price-btn a i:before {
background: #21a7d0;
}
.rs-popular-courses.orange-color.style2 .course-wrap .price-btn a:hover i:before {
background: #21a7d0;
}
.rs-popular-courses.orange-color.style2 .course-wrap:after,
.rs-popular-courses.orange-color.style2 .course-wrap:before {
background: #21a7d0;
}
.rs-popular-courses.orange-color.style2 .course-wrap:hover {
background: #21a7d0;
}
.rs-popular-courses.orange-color.style2 .course-wrap:hover:after,
.rs-popular-courses.orange-color.style2 .course-wrap:hover:before {
background: #21a7d0;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part a.categories {
background: #21a7d0;
color: #ffffff;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part .meta-part li span.price {
background: unset;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part .title a {
color: #111111;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part .title a:hover {
color: #21a7d0;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part .bottom-part .btn-part a {
border: unset;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part .bottom-part .btn-part a:hover {
background: transparent;
color: #21a7d0;
}
.rs-popular-courses.orange-color.style4 .courses-item .content-part .price {
background: #21a7d0;
}
.rs-popular-courses.orange-color.style4 .courses-item .content-part .bottom-part .btn-part a {
border: unset;
}
.rs-popular-courses.orange-color.style4 .courses-item .content-part .bottom-part .btn-part a {
border: unset;
}
.rs-popular-courses.orange-color.style4 .courses-item .content-part .bottom-part .btn-part a:hover {
background: transparent;
color: #21a7d0;
}
.rs-popular-courses.home11-style .courses-item {
border: 1px solid #e5e4f1;
padding: 30px;
position: relative;
transition: all .4s ease;
}
.rs-popular-courses.home11-style .courses-item .content-part {
padding: 30px 0 0px;
}
.rs-popular-courses.home11-style .courses-item .content-part .course-body .title {
font-size: 24px;
line-height: 34px;
font-weight: 800;
margin-bottom: 12px;
}
.rs-popular-courses.home11-style .courses-item .content-part .course-body .title a {
color: #4e49a1;
}
.rs-popular-courses.home11-style .courses-item .content-part .course-body .title a:hover {
color: #21a7d0;
}
.rs-popular-courses.home11-style .courses-item .content-part .course-body p {
font-size: 16px;
line-height: 28px;
color: #54647b;
font-weight: 400;
margin-bottom: 20px;
}
.rs-popular-courses.home11-style .courses-item .content-part .bottom-part {
border-top: 1px solid #e5e4f1;
padding: 20px 0 0;
}
.rs-popular-courses.home11-style .courses-item .content-part .bottom-part .course-footer {
display: inline-block;
border-right: 1px solid #e5e4f1;
padding-right: 15px;
padding-left: 15px;
}
.rs-popular-courses.home11-style .courses-item .content-part .bottom-part .course-footer .label {
display: block;
font-size: 16px;
line-height: 28px;
color: #54647b;
font-weight: 500;
}
.rs-popular-courses.home11-style .courses-item .content-part .bottom-part .course-footer .desc {
font-size: 14px;
line-height: 23px;
color: #21a7d0;
font-weight: 400;
}
.rs-popular-courses.home11-style .courses-item .btn-part {
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50%;
clip-path: none;
background: #4e49a1;
position: absolute;
text-align: center;
bottom: -50px;
left: 50%;
transform: translateX(-50%);
opacity: 0;
visibility: hidden;
transition: all .5s ease;
}
.rs-popular-courses.home11-style .courses-item .btn-part a {
font-size: 16px;
color: #ffffff;
display: inline-block;
font-weight: 500;
}
.rs-popular-courses.home11-style .courses-item .btn-part a:hover {
color: #21a7d0;
}
.rs-popular-courses.home11-style .courses-item:hover .btn-part {
bottom: -20px;
opacity: 1;
visibility: visible;
}
.rs-popular-courses.home11-style .owl-carousel .owl-stage-outer {
padding-bottom: 20px;
margin-bottom: -20px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid {
border-radius: 0 0 4px 4px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .img-part {
margin-bottom: 0px;
overflow: hidden;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .img-part a img {
border-radius: 4px 4px 0 0;
transition: all .8s ease;
transform: scale(1);
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part {
padding: 25px 25px 25px 25px;
border-style: solid;
border-width: 0px 1px 1px 1px;
border-color: #252525;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .course-price .price {
padding: 3px 15px;
color: #ffffff;
font-weight: 500;
background: #21a7d0;
border-radius: 5px;
transition: all 0.3s ease;
position: absolute;
top: 20px;
right: 38px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .title {
margin: 0 0 10px;
line-height: 30px;
font-size: 22px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .title a {
color: #ffffff;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .title a:hover {
color: #21a7d0;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .meta-part {
display: flex;
justify-content: space-between;
list-style: none;
font-size: 15px;
margin: 0 0 20px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .meta-part .user {
display: inline-block;
margin-right: 8px;
color: #ffffff;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .meta-part .user i:before {
color: #21a7d0;
padding-right: 6px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .avatar-part {
display: flex;
align-items: center;
margin-top: 20px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .avatar-part .avatar-img {
width: 30px;
height: 30px;
margin-right: 10px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .avatar-part .avatar-img img {
border-radius: 50%;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .avatar-part .title {
font-size: 15px;
color: #ffffff;
line-height: 27px;
margin-bottom: 0;
}
.rs-popular-courses.home13-style .courses-item:hover .courses-grid .img-part a img {
transform: scale(1.1);
}
.free-course-contact {
margin: 0px;
padding: 40px 50px 50px;
background: url(assets/images/bg/course-contact-bg.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.free-course-contact span {
font-size: 30px;
color: #111111;
display: block;
}
.free-course-contact form input,
.free-course-contact form textarea,
.free-course-contact form select {
width: 100%;
border-radius: 3px;
border: 1px solid #ffffff;
color: #767676;
background: #ffffff;
padding: 10px 18px;
}
.free-course-contact form input,
.free-course-contact form select {
margin-bottom: 30px;
height: 45px;
}
.free-course-contact form textarea {
height: 140px;
display: inherit;
}
.free-course-contact form .select-option {
position: relative;
}
.free-course-contact form .select-option select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
cursor: pointer;
z-index: 11;
position: relative;
}
.free-course-contact form .select-option:after {
content: '\f107';
font-family: FontAwesome;
color: #767676;
right: 15px;
position: absolute;
top: 16px;
font-size: 20px;
pointer-events: none;
}
.free-course-contact form ::-webkit-input-placeholder {
color: #767676;
}
.free-course-contact form :-ms-input-placeholder {
color: #767676;
}
.free-course-contact form ::placeholder {
color: #767676;
}
.rs-latest-couses .course-item {
align-items: flex-start;
border-radius: 300px 5px 5px 300px;
display: flex;
border: 1px solid #ceeaf0;
background: #ffffff;
}
.rs-latest-couses .course-item .course-image a {
width: 200px;
height: 200px;
overflow: hidden;
border-radius: 100%;
display: block;
}
.rs-latest-couses .course-item .course-image a img {
object-fit: cover;
object-position: left;
height: 100%;
width: 100%;
}
.rs-latest-couses .course-item .course-info {
align-self: center;
padding: 0px 30px;
}
.rs-latest-couses .course-item .course-info .meta-part {
padding-bottom: 5px;
}
.rs-latest-couses .course-item .course-info .meta-part li {
display: inline;
margin-right: 10px;
font-weight: 700;
}
.rs-latest-couses .course-item .course-info .course-title {
font-size: 22px;
line-height: 36px;
font-weight: 700;
margin-bottom: 5px;
}
.rs-latest-couses .course-item .course-info .course-title a {
color: #111111;
}
.rs-latest-couses .course-item .course-info .course-title a:hover {
color: #21a7d0;
transition: all 0.3s ease;
}
.rs-latest-couses .course-item .course-info .bottom-part .info-meta {
float: left;
}
.rs-latest-couses .course-item .course-info .bottom-part .info-meta ul .ratings {
display: inline-block;
margin-right: 10px;
transition: all 0.3s ease;
}
.rs-latest-couses .course-item .course-info .bottom-part .info-meta ul .ratings i {
color: #fcb903;
}
.rs-latest-couses .course-item .course-info .bottom-part .btn-part {
text-align: right;
}
.rs-latest-couses .course-item .course-info .bottom-part .btn-part a {
color: #505050;
}
.rs-latest-couses .course-item .course-info .bottom-part .btn-part a i:before {
font-size: 18px;
font-weight: 700;
padding-left: 10px;
}
.rs-latest-couses .course-item .course-info .bottom-part .btn-part a:hover {
color: #21a7d0;
transition: all 0.3s ease;
}
.rs-latest-couses .course-item:hover {
background: #FFFFFF;
border-color: #FFFFFF;
}
.rs-latest-couses.orange-color .course-item {
border: 1px solid #21a7d029;
}
.rs-latest-couses.orange-color .course-item .course-info .course-title a:hover,
.rs-latest-couses.orange-color .course-item .bottom-part .btn-part a:hover {
color: #21a7d0;
}
.rs-latest-couses.orange-color .course-item:hover {
background: #FFFFFF;
border-color: #FFFFFF;
}
.rs-featured-courses {
background: #e7f8fb;
}
.rs-featured-courses .rs-carousel .owl-dots {
text-align: center;
}
.rs-featured-courses .rs-carousel .owl-dots .owl-dot {
width: 30px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
background: #111111;
}
.rs-featured-courses .rs-carousel .owl-dots .owl-dot:hover {
background: #21a7d0;
}
.rs-featured-courses .rs-carousel .owl-dots .active {
background: #21a7d0;
}
.rs-featured-courses .owl-stage-outer {
padding-bottom: 10px;
}
.rs-featured-courses .courses-item {
padding: 0 30px;
position: relative;
transition: all 0.3s ease;
}
.rs-featured-courses .courses-item .img-part {
position: relative;
z-index: 111;
}
.rs-featured-courses .courses-item .content-part {
padding: 30px 0;
position: relative;
z-index: 111;
}
.rs-featured-courses .courses-item .content-part span .categories {
display: inline-block;
padding: 0 15px;
height: 40px;
line-height: 40px;
color: #ffffff;
font-weight: 500;
border-radius: 3px;
transition: all 0.3s ease;
position: absolute;
top: -20px;
left: 32px;
}
.rs-featured-courses .courses-item .content-part span .categories.bg1 {
background: #c701f1;
}
.rs-featured-courses .courses-item .content-part span .categories.bg2 {
background: #065ce8;
}
.rs-featured-courses .courses-item .content-part span .categories.bg3 {
background: #f6075b;
}
.rs-featured-courses .courses-item .content-part .meta-part {
display: flex;
align-items: center;
padding-top: 16px;
padding-bottom: 12px;
}
.rs-featured-courses .courses-item .content-part .meta-part .user {
display: inline;
margin-right: 10px;
font-weight: 700;
}
.rs-featured-courses .courses-item .content-part .meta-part .ratings {
padding-left: 25px;
}
.rs-featured-courses .courses-item .content-part .meta-part .ratings i {
color: #fcb903;
}
.rs-featured-courses .courses-item .content-part .title {
font-size: 24px;
line-height: 35px;
font-weight: 700;
}
.rs-featured-courses .courses-item .content-part .title a {
color: #031a3d;
}
.rs-featured-courses .courses-item .content-part .title a:hover {
color: #21a7d0;
}
.rs-featured-courses .courses-item .content-part .images {
display: flex;
align-items: center;
border-bottom: 1px solid #e5e8eb;
padding-bottom: 35px;
}
.rs-featured-courses .courses-item .content-part .images .img-part img {
border-radius: 50%;
width: 30px;
height: 30px;
}
.rs-featured-courses .courses-item .content-part .images span {
color: #54647b;
font-size: 15px;
line-height: 25px;
font-weight: 400;
padding-left: 15px;
}
.rs-featured-courses .courses-item .content-part .bottom-part .info-meta {
float: left;
}
.rs-featured-courses .courses-item .content-part .bottom-part .info-meta li {
color: #031a3d;
font-size: 15px;
line-height: 25px;
font-weight: 700;
}
.rs-featured-courses .courses-item .content-part .bottom-part .btn-part {
text-align: right;
}
.rs-featured-courses .courses-item .content-part .bottom-part .btn-part a {
color: #031a3d;
font-size: 15px;
line-height: 25px;
}
.rs-featured-courses .courses-item .content-part .bottom-part .btn-part a i:before {
font-size: 18px;
font-weight: 700;
padding-left: 10px;
}
.rs-featured-courses .courses-item .content-part .bottom-part .btn-part a:hover {
color: #21a7d0;
}
.rs-featured-courses .courses-item:after {
position: absolute;
content: '';
left: 0;
bottom: 0;
width: 100%;
height: 78%;
background: #ffff;
border-radius: 3px;
}
.rs-featured-courses .courses-item:hover {
transform: translateY(-10px);
}
.rs-features {
position: relative;
margin-top: -245px;
z-index: 111;
}
.rs-features .features-wrap {
border-radius: 5px 5px 5px 5px;
background: #171f32;
padding: 25px 40px 25px;
display: flex;
align-items: center;
position: relative;
transition: all 0.3s ease;
}
.rs-features .features-wrap .icon-part img {
width: 50px;
margin: 0 35px 8px 0;
}
.rs-features .features-wrap .content-part .title {
font-size: 22px;
font-weight: 700;
margin-bottom: 5px;
}
.rs-features .features-wrap .content-part .title .watermark {
color: #ffffff;
}
.rs-features .features-wrap .content-part .dese {
font-size: 16px;
font-weight: 400;
color: #ffffff;
margin: 0;
}
.rs-features .features-wrap:hover {
transform: translateY(-10px);
}
.rs-features.style2 {
margin-top: -110px;
}
.rs-features.style2 .rs-iconbox-area {
position: relative;
transition: all 0.3s ease;
padding: 50px;
background-color: #1C335F;
border-radius: 5px 5px 5px 5px;
text-align: center;
}
.rs-features.style2 .rs-iconbox-area .icon-area {
margin-bottom: 32px !important;
}
.rs-features.style2 .rs-iconbox-area .icon-area img {
width: 80px;
height: 80px;
}
.rs-features.style2 .rs-iconbox-area .text-area .icon-title {
font-size: 22px;
line-height: 700;
line-height: 1;
color: #ffffff;
margin-bottom: 0;
}
.rs-features.style2 .rs-iconbox-area:hover {
transform: translateY(-10px);
}
.rs-features.main-home {
width: 100%;
position: absolute;
bottom: 100px;
margin: 0;
}
.rs-features.style3 {
margin: unset;
}
.rs-features.style3 .features-item {
position: relative;
transition: all 0.3s ease;
}
.rs-features.style3 .features-item .content-part {
position: absolute;
width: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: all 0.3s ease;
padding: 50px 35px 0;
text-align: center;
}
.rs-features.style3 .features-item .content-part .icon-part {
padding-bottom: 20px;
}
.rs-features.style3 .features-item .content-part .icon-part img {
-webkit-transition: all 0.4s ease;
transform: scale(1);
}
.rs-features.style3 .features-item .content-part .title {
font-size: 22px;
line-height: 32px;
font-weight: 700;
margin-bottom: 12px;
}
.rs-features.style3 .features-item .content-part .title a {
color: #ffffff;
}
.rs-features.style3 .features-item .content-part p {
font-size: 16px;
font-weight: 400;
line-height: 26px;
color: #ffffff;
margin-bottom: 4px;
}
.rs-features.style3 .features-item:hover {
transform: translateY(-10px);
}
.rs-features.style3 .features-item:hover .content-part .icon-part img {
transform: scale(0.9);
}
.rs-features.style4 {
position: unset;
margin-top: unset;
z-index: unset;
}
.features-wrap {
background: unset;
display: unset;
align-items: unset;
position: unset;
}
.features-wrap .icon-part {
margin: 0 0px 17px 0;
}
.features-wrap .content-part .title {
margin-bottom: 10px;
}
.features-wrap .content-part .title .watermark {
color: #333333;
}
.features-wrap .content-part .dese {
color: #505050;
}
.rs-degree.style1 .degree-wrap {
position: relative;
overflow: hidden;
border-radius: 3px;
}
.rs-degree.style1 .degree-wrap img {
width: 100%;
}
.rs-degree.style1 .degree-wrap .title-part {
position: absolute;
left: 0;
bottom: 0;
padding: 0 30px 21px;
opacity: 1;
transition: all 0.3s ease;
}
.rs-degree.style1 .degree-wrap .title-part .title {
margin: 0;
color: #ffffff;
}
.rs-degree.style1 .degree-wrap .content-part {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%) rotateY(90deg);
text-align: center;
background: rgba(17, 41, 88, 0.9);
border-radius: 3px;
padding: 78px 35px 0;
color: #ffffff;
opacity: 0;
transition: all 0.3s ease;
}
.rs-degree.style1 .degree-wrap .content-part .title {
margin-bottom: 13px;
}
.rs-degree.style1 .degree-wrap .content-part .title a {
color: #ffffff;
}
.rs-degree.style1 .degree-wrap .content-part .title a:hover {
color: #cccccc;
}
.rs-degree.style1 .degree-wrap .content-part .desc {
margin-bottom: 15px;
}
.rs-degree.style1 .degree-wrap .content-part .btn-part a {
text-transform: uppercase;
font-weight: 500;
color: #ffffff;
padding-bottom: 0;
border-bottom: 1px solid #ffffff;
}
.rs-degree.style1 .degree-wrap .content-part .btn-part a:hover {
color: #cccccc;
}
.rs-degree.style1 .degree-wrap:before {
position: absolute;
content: '';
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 0.9;
background: linear-gradient(transparent, #273c66);
}
.rs-degree.style1 .degree-wrap:hover .content-part {
transform: translate(-50%, -50%) rotateY(0);
opacity: 1;
}
.rs-degree.style1 .degree-wrap:hover .title-part {
bottom: -60px;
opacity: 0;
}
/* -----------------------------------
12. Course Single Section CSS
-------------------------------------*/
/*Intro Section*/
.intro-section {
position: relative;
/*Video Column Style*/
/*Intro Tabs Style*/
}
.intro-section .video-column {
position: relative;
z-index: 1;
}
.intro-section .video-column .intro-video {
position: relative;
text-align: center;
width: 100%;
display: block;
}
.intro-section .video-column .intro-video h4 {
position: absolute;
width: 100%;
text-align: center;
color: #ffffff;
font-weight: 500;
font-size: 16px;
text-transform: capitalize;
bottom: 0;
left: 50%;
transform: translate(-50%, -50%);
}
.intro-section .video-column .intro-video .intro-video-box {
position: relative;
width: 60px;
height: 60px;
z-index: 99;
color: #00aa15;
font-weight: 400;
font-size: 24px;
text-align: center;
border-radius: 50%;
padding-left: 7px;
line-height: 60px;
display: inline-block;
background-color: #ffffff;
transition: all 900ms ease;
-moz-transition: all 900ms ease;
-webkit-transition: all 900ms ease;
-ms-transition: all 900ms ease;
-o-transition: all 900ms ease;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.intro-section .video-column .intro-video:before {
position: absolute;
content: '';
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
background-color: rgba(0, 0, 0, 0.1);
}
.intro-section .video-column .course-features-info {
margin: 50px 0;
border-radius: 3px;
padding: 30px 40px 30px;
background: #ffffff;
box-shadow: 0 0 30px #eee;
}
.intro-section .video-column .course-features-info ul li {
display: block;
padding: 10px 0;
}
.intro-section .video-column .course-features-info ul li i {
color: #21a7d0;
}
.intro-section .video-column .course-features-info ul li .label {
padding-left: 10px;
}
.intro-section .video-column .course-features-info ul li .value {
float: right;
padding-right: 5px;
}
.intro-section .video-column .btn-part {
background: #ffffff;
box-shadow: 0 0 35px #eee;
padding: 50px 50px 35px;
border-radius: 5px;
}
.intro-section .video-column .btn-part .btn {
margin: 0 0 15px;
width: 100%;
}
.intro-section .intro-tabs {
position: relative;
border: none;
}
.intro-section .intro-tabs .tab-btns {
position: relative;
text-align: center;
width: 20%;
}
.intro-section .intro-tabs .tab-btns .tab-btn {
position: relative;
display: block;
width: 100%;
font-size: 14px;
background: none;
background: #ffffff;
color: #626262;
border: 1px solid #eee;
font-weight: 500;
line-height: 24px;
cursor: pointer;
float: left;
padding: 12px 40px 10px;
text-transform: capitalize;
transition: all 500ms ease;
}
.intro-section .intro-tabs .tab-btns .tab-btn:hover,
.intro-section .intro-tabs .tab-btns .tab-btn.active {
color: #ffffff;
background: #21a7d0;
border-color: #21a7d0;
}
.intro-section .intro-tabs .tabs-content {
position: relative;
overflow: hidden;
background-color: #ffffff;
}
.intro-section .intro-tabs .tabs-content .minutes {
position: relative;
color: #21a7d0;
font-size: 14px;
font-weight: 500;
margin-top: 12px;
}
/* Course Overview */
.course-overview {
position: relative;
}
.course-overview .instructor-title {
position: relative;
color: #111111;
font-size: 20px;
font-weight: 600;
line-height: 1.3em;
margin-bottom: 18px;
}
.course-overview .inner-box {
position: relative;
padding: 0px 40px 40px;
}
.course-overview .inner-box h4 {
position: relative;
color: #111111;
font-weight: 600;
line-height: 1.3em;
margin-bottom: 15px;
}
.course-overview .inner-box h3 {
position: relative;
color: #111111;
font-size: 20px;
font-weight: 600;
line-height: 1.3em;
margin-bottom: 18px;
}
.course-overview .inner-box p {
position: relative;
color: #626262;
font-size: 16px;
line-height: 1.8em;
margin-bottom: 15px;
}
.course-overview .inner-box .student-list {
position: relative;
margin-top: 25px;
margin-bottom: 30px;
}
.course-overview .inner-box .student-list li {
position: relative;
color: #393939;
font-size: 16px;
font-weight: 500;
line-height: 1.3em;
margin-right: 80px;
display: inline-block;
list-style: disc;
margin-bottom: 10px;
}
.course-overview .inner-box .student-list li .fa {
color: #21a7d0;
margin: 0px 2px;
}
.course-overview .inner-box .student-list li:last-child {
margin-right: 0px;
}
.course-overview .inner-box .review-list {
position: relative;
margin-bottom: 20px;
}
.course-overview .inner-box .review-list li {
position: relative;
color: #626262;
font-size: 16px;
margin-bottom: 14px;
padding-left: 30px;
}
.course-overview .inner-box .review-list li:before {
position: absolute;
content: "\f101";
left: 0px;
top: 5px;
color: #21a7d0;
font-size: 14px;
line-height: 1em;
font-family: "FontAwesome";
}
.course-overview .inner-box .review-list li:last-child {
margin-bottom: 0px;
}
/*Course Review*/
.cource-review-box {
position: relative;
padding: 0px 40px;
}
.cource-review-box h4 {
position: relative;
color: #111111;
font-weight: 700;
line-height: 1.3em;
margin-bottom: 15px;
}
.cource-review-box .rating {
position: relative;
color: #626262;
font-size: 16px;
}
.cource-review-box .rating .fa {
position: relative;
color: #21a7d0;
margin: 0px 2px;
font-size: 16px;
}
.cource-review-box .total-rating {
position: relative;
color: #21a7d0;
font-size: 16px;
font-weight: 600;
margin-right: 5px;
}
.cource-review-box .text {
position: relative;
color: #626262;
font-size: 16px;
line-height: 1.8em;
margin-top: 15px;
}
.cource-review-box .helpful {
position: relative;
color: #393939;
font-size: 16px;
line-height: 1.8em;
margin-top: 12px;
font-weight: 500;
margin-bottom: 15px;
}
.cource-review-box .like-option {
position: relative;
}
.cource-review-box .like-option li {
position: relative;
margin-right: 10px;
display: inline-block;
}
.cource-review-box .like-option li i {
position: relative;
width: 36px;
height: 36px;
color: #626262;
text-align: center;
line-height: 36px;
border-radius: 50px;
display: inline-block;
background-color: #eaeff5;
}
.cource-review-box .like-option li i:hover {
color: #21a7d0;
}
.cource-review-box .like-option .report {
position: relative;
color: #333;
font-size: 14px;
font-weight: 500;
}
.cource-review-box .like-option .report:hover {
color: #21a7d0;
}
.cource-review-box .more {
position: relative;
color: #21a7d0;
font-size: 14px;
font-weight: 500;
margin-top: 30px;
display: inline-block;
}
/* -----------------------------------
13. Accordion Section CSS
-------------------------------------*/
.accordion-box {
position: relative;
}
.accordion-box .block {
position: relative;
background-color: #ffffff;
border: none;
border-bottom: 4px solid #f6f6f6;
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.accordion-box .block .acc-btn {
position: relative;
width: 100%;
text-align: left;
font-size: 20px;
margin-bottom: 0px;
cursor: pointer;
line-height: 24px;
font-weight: 600;
color: #111111;
padding: 0 25px;
height: 65px;
line-height: 65px;
text-decoration: none !important;
text-transform: capitalize;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.accordion-box .block .acc-btn:after {
position: absolute;
font-family: FontAwesome;
content: "\f077";
right: 25px;
top: 50%;
transform: translateY(-50%);
text-align: center;
font-weight: 400;
color: #111111;
padding: unset;
transition: all 0.3s ease;
}
.accordion-box .block .acc-btn.collapsed:after {
content: "\f078";
}
.accordion-box .block .card-header {
position: relative;
padding: 0;
border: none;
border-radius: unset;
}
.accordion-box .block .content {
position: relative;
padding: 0px 40px 25px;
}
.accordion-box .block .play-icon {
position: relative;
color: #626262;
font-size: 18px;
text-align: center;
line-height: 40px;
display: inline-block;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
background-color: #ffffff;
}
.accordion-box .block .play-icon:before {
content: "";
position: absolute;
z-index: 0;
left: 0;
top: 50%;
transform: translateY(-50%);
display: block;
width: 40px;
height: 40px;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
transition: all 0.3s ease;
}
.accordion-box .block .play-icon .fa {
position: relative;
width: 40px;
height: 40px;
line-height: 40px;
left: 0px;
z-index: 99;
color: #21a7d0;
font-weight: 400;
font-size: 16px;
text-align: center;
border-radius: 50%;
padding-left: 4px;
margin-right: 30px;
display: inline-block;
margin-top: -20px;
margin-left: -20px;
background-color: #ffffff;
transition: all 900ms ease;
-moz-transition: all 900ms ease;
-webkit-transition: all 900ms ease;
-ms-transition: all 900ms ease;
-o-transition: all 900ms ease;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.accordion-box .block .play-icon:hover:before {
background: #21a7d0;
}
/* ------------------------------------
14. Why Choose US Section CSS
---------------------------------------*/
.why-choose-us .choose-us-part .facilities-part .single-facility .icon-part {
position: relative;
float: left;
margin-right: 5px;
}
.why-choose-us .choose-us-part .facilities-part .single-facility .icon-part .shape-img {
position: relative;
}
.why-choose-us .choose-us-part .facilities-part .single-facility .icon-part i {
position: absolute;
top: 55%;
left: 50%;
transform: translate(-50%, -50%);
color: #21a7d0;
}
.why-choose-us .choose-us-part .facilities-part .single-facility .icon-part i:before {
font-size: 28px;
}
.why-choose-us .choose-us-part .facilities-part .single-facility .text-part .title {
font-size: 22px;
color: #111111;
font-weight: bold;
margin-bottom: 10px;
}
.why-choose-us.style2 .facilities-two .content-part {
display: flex;
align-items: center;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part {
width: 80px;
line-height: 80px;
text-align: center;
border-radius: 50%;
margin-right: 20px;
position: relative;
transition: all 0.3s ease;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part img {
-webkit-transition: all 0.4s ease;
transform: scale(1);
}
.why-choose-us.style2 .facilities-two .content-part .icon-part.purple-bg {
background: #4e49a1;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part.pink-bg {
background: #ff6666;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part.orange-bg {
background: #ffaf40;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part.green-bg {
background: #95cc47;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part:hover {
transform: scale(0.9);
}
.why-choose-us.style2 .facilities-two .content-part .text-part .title {
font-size: 22px;
line-height: 32px;
font-weight: 800;
color: #4e49a1;
margin-bottom: 0;
}
.why-choose-us.style2 .video-wrap {
position: relative;
display: inline-block;
}
.why-choose-us.style2 .video-wrap .popup-videos {
color: #4e49a1;
display: block;
overflow: hidden;
max-width: 270px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.why-choose-us.style2 .video-wrap .popup-videos i {
width: 70px;
height: 70px;
line-height: 61px;
border: 5px solid #4e49a1;
border-radius: 50%;
text-align: center;
font-size: 25px;
float: left;
margin-right: 20px;
}
.why-choose-us.style2 .video-wrap .popup-videos i:before {
padding-left: 5px;
}
.why-choose-us.style2 .video-wrap .popup-videos:hover {
opacity: 0.7;
}
.why-choose-us.style3 {
background: url(assets/images/bg/home12/why-learn-bg.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
padding: 200px 0;
}
.why-choose-us.style3 .services-part {
display: flex;
box-shadow: 0 0 30px #eee;
background: #ffffff;
padding: 15px 30px 20px 30px;
}
.why-choose-us.style3 .services-part .services-icon {
margin-right: 29px;
}
.why-choose-us.style3 .services-part .services-icon img {
width: 90px;
}
.why-choose-us.style3 .services-part .services-text .title {
font-size: 20px;
line-height: 36px;
font-weight: 700;
padding-bottom: 5px;
margin: 0;
color: #171f32;
}
.why-choose-us.style3 .services-part .services-text .services-txt {
font-size: 16px;
line-height: 1.2;
font-weight: 400;
margin: 0;
color: #333333;
}
/* ------------------------------------
15. Team Section CSS
---------------------------------------*/
.rs-team.style1 .team-item {
position: relative;
overflow: hidden;
}
.rs-team.style1 .team-item img {
width: 100%;
}
.rs-team.style1 .team-item .content-part {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, 50%);
text-align: center;
z-index: 1;
transition: all 0.3s ease;
opacity: 0;
}
.rs-team.style1 .team-item .content-part .name {
margin-bottom: 8px;
font-size: 22px;
}
.rs-team.style1 .team-item .content-part .name a {
color: #ffffff;
}
.rs-team.style1 .team-item .content-part .name a:hover {
color: #111111;
}
.rs-team.style1 .team-item .content-part .designation {
color: #ffffff;
margin-bottom: 16px;
display: block;
}
.rs-team.style1 .team-item .content-part .social-links li {
display: inline;
margin-right: 35px;
}
.rs-team.style1 .team-item .content-part .social-links li a {
display: inline-block;
color: #ffffff;
}
.rs-team.style1 .team-item .content-part .social-links li a:hover {
color: #111111;
}
.rs-team.style1 .team-item .content-part .social-links li:last-child {
margin: 0;
}
.rs-team.style1 .team-item:after {
position: absolute;
content: '';
left: 50%;
top: 50%;
transform: translate(-50%, 100%) scale(0.1);
background: #21a7d0;
opacity: 0;
border-radius: 3px;
transition: all 0.3s ease;
}
.rs-team.style1 .team-item:hover .content-part {
transform: translate(-50%, -50%);
opacity: 1;
}
.rs-team.style1 .team-item:hover:after {
transform: translate(-50%, -50%) scale(1);
opacity: 0.9;
}
.rs-team.style1 .owl-item.center .team-item .content-part {
transform: translate(-50%, -50%);
opacity: 1;
}
.rs-team.style1 .owl-item.center .team-item:after {
transform: translate(-50%, -50%) scale(1);
opacity: 0.9;
}
.rs-team.style1 .nav-style {
position: relative;
}
.rs-team.style1 .nav-style .owl-nav {
display: block;
position: absolute;
top: -80px;
right: 0;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev,
.rs-team.style1 .nav-style .owl-nav .owl-next {
display: inline-block;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev i,
.rs-team.style1 .nav-style .owl-nav .owl-next i {
transition: all 0.3s ease;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev i:before,
.rs-team.style1 .nav-style .owl-nav .owl-next i:before {
font-family: Flaticon;
font-size: 22px;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev:hover i,
.rs-team.style1 .nav-style .owl-nav .owl-next:hover i {
color: #21a7d0;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev i:before {
content: "\f134";
}
.rs-team.style1 .nav-style .owl-nav .owl-prev:after {
content: "/";
padding: 0 5px 0 5px;
position: relative;
top: -3px;
}
.rs-team.style1 .nav-style .owl-nav .owl-next i:before {
content: "\f133";
}
.rs-team.style1.orange-color .team-item:after {
background: #21a7d0;
}
.rs-team.style7 .team-item {
position: relative;
overflow: hidden;
}
.rs-team.style7 .team-item:after {
position: absolute;
content: '';
left: 50%;
top: 50%;
transform: translate(-50%, 100%) scale(0.1);
background: #c701f1 !important;
opacity: 0;
border-radius: 3px;
transition: all 0.3s ease;
}
.rs-team.style7 .team-item:hover .content-part {
transform: translate(-50%, -50%);
opacity: 1;
}
.rs-team.style7 .team-item:hover:after {
transform: translate(-50%, -50%) scale(1);
opacity: 0.9;
}
.rs-team.inner-style .team-item {
overflow: hidden;
}
.rs-team.inner-style .team-item .content-part {
top: unset !important;
bottom: -205px;
transform: translateX(-50%) !important;
width: 100% !important;
height: 320px !important;
background: #ffffff;
border-radius: 50%;
padding-top: 30px;
opacity: 1 !important;
transition: all 0.3s ease;
}
.rs-team.inner-style .team-item .content-part .name a {
color: #111111 !important;
}
.rs-team.inner-style .team-item .content-part .name a:hover {
color: #21a7d0 !important;
}
.rs-team.inner-style .team-item .content-part .designation {
color: #505050 !important;
}
.rs-team.inner-style .team-item .content-part .social-links {
display: none;
}
.rs-team.inner-style .team-item:hover .content-part {
bottom: unset;
top: 50% !important;
transform: translate(-50%, -50%) !important;
width: unset !important;
height: unset !important;
background: transparent;
border-radius: unset;
padding-top: 0;
opacity: 1 !important;
}
.rs-team.inner-style .team-item:hover .content-part .name a {
color: #ffffff !important;
}
.rs-team.inner-style .team-item:hover .content-part .name a:hover {
color: #111111 !important;
}
.rs-team.inner-style .team-item:hover .content-part .designation {
color: #ffffff !important;
}
.rs-team.inner-style .team-item:hover .content-part .social-links {
display: block;
}
.rs-team.home11-style .team-item .team-thumbnail {
position: relative;
overflow: hidden;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img {
position: relative;
overflow: hidden;
border-radius: 6px;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img .team-social-link {
display: grid;
border: 30px solid #4e49a1;
border-radius: 50%;
width: 196px;
height: 193px;
grid-template-columns: auto auto;
position: absolute;
right: -196px;
bottom: -193px;
padding: 30px 30px 30px 30px;
opacity: 0;
z-index: 9;
transition: all 0.3s ease;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img .team-social-link li {
display: inline-block;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img .team-social-link li a {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
color: #ffffff;
cursor: pointer;
font-size: 16px;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img .team-social-link li a:hover {
color: #21a7d0;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img:before {
content: '';
transition: all ease-in-out 0.4s;
position: absolute;
left: 0;
right: 0;
width: 100%;
height: 100%;
background-color: #000;
z-index: 2;
opacity: 0;
}
.rs-team.home11-style .team-item .team-thumbnail .team-header {
text-align: center;
padding-top: 35px;
}
.rs-team.home11-style .team-item .team-thumbnail .team-header .name {
font-size: 22px;
line-height: 32px;
font-weight: 800;
margin-bottom: 5px;
}
.rs-team.home11-style .team-item .team-thumbnail .team-header .name a {
color: #4e49a1;
}
.rs-team.home11-style .team-item .team-thumbnail .team-header .name a:hover {
color: #21a7d0;
}
.rs-team.home11-style .team-item .team-thumbnail .team-header .subject {
font-size: 15px;
line-height: 26px;
font-weight: 400;
color: #54647b;
margin-bottom: 10px;
}
.rs-team.home11-style .team-item .team-thumbnail:hover .team-img .team-social-link {
right: -50px;
bottom: -45px;
opacity: 1;
}
.rs-team.home11-style .team-item .team-thumbnail:hover .team-img .team-social-link li a:hover {
color: #21a7d0;
}
.rs-team.home11-style .team-item .team-thumbnail:hover .team-img:before {
opacity: 0.4;
}
/* -----------------------------------
16. Team Single Section CSS
-------------------------------------*/
.profile-section {
position: relative;
}
.profile-section .content-part .title {
color: #111111;
font-weight: 600;
line-height: 1.3em;
font-size: 26px;
}
.profile-section .content-part p {
font-size: 16px;
margin: 0;
}
.profile-section .content-column {
position: relative;
}
.profile-section .content-column .inner-column {
position: relative;
}
.profile-section .content-column .inner-column h2 {
position: relative;
color: #111111;
font-weight: 700;
margin: 0;
}
.profile-section .content-column .inner-column h4 {
position: relative;
color: #111111;
font-weight: 600;
line-height: 1.3em;
margin-top: 15px;
margin-bottom: 20px;
}
.profile-section .content-column .inner-column h5 {
position: relative;
color: #111111;
font-size: 25px;
font-weight: 600;
line-height: 1.3em;
margin-top: 12px;
margin-bottom: 0px;
}
.profile-section .content-column .inner-column p {
position: relative;
color: #626262;
font-weight: 400;
line-height: 1.9em;
font-size: 16px;
margin-top: 20px;
margin-bottom: 35px;
}
.profile-section .content-column .inner-column .student-list {
position: relative;
margin-top: 25px;
margin-bottom: 10px;
}
.profile-section .content-column .inner-column .student-list li {
position: relative;
color: #393939;
font-size: 16px;
font-weight: 500;
line-height: 1.3em;
margin-right: 80px;
display: inline-block;
list-style: disc;
margin-bottom: 20px;
}
.profile-section .content-column .inner-column .student-list li .fa {
color: #21a7d0;
margin: 0px 2px;
}
.profile-section .content-column .inner-column .student-list li:last-child {
margin-right: 0px;
}
.profile-section .image-column {
position: relative;
}
.profile-section .image-column .inner-column {
position: relative;
padding: 30px;
border-radius: 8px;
background-color: #ffffff;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.12);
}
.profile-section .image-column .inner-column .image {
position: relative;
}
.profile-section .image-column .inner-column .image img {
position: relative;
display: inline-block;
border-radius: 5px;
width: 100%;
}
.profile-section .image-column .team-content h3 {
position: relative;
font-weight: 700;
color: #111111;
margin-top: 30px;
margin-bottom: 10px;
}
.profile-section .image-column .team-content .text {
position: relative;
color: #626262;
font-size: 16px;
line-height: 1.7em;
margin-bottom: 8px;
}
.profile-section .image-column .team-content .personal-info {
margin-bottom: 20px;
}
.profile-section .image-column .team-content .personal-info li {
margin: 5px 0;
display: inline-block;
padding-right: 15px;
}
.profile-section .image-column .team-content .personal-info li:last-child {
margin-right: none;
}
.profile-section .image-column .team-content .personal-info li a {
color: #111111;
}
.profile-section .image-column .team-content .personal-info li a:hover {
color: #21a7d0;
}
.profile-section .image-column .team-content .personal-info li span i:before {
font-size: 16px;
margin-right: 10px;
}
.profile-section .image-column .social-box {
position: relative;
text-align: center;
}
.profile-section .image-column .social-box a {
position: relative;
color: #626262;
font-size: 28px;
margin: 0px 5px;
display: inline-block;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.profile-section .image-column .social-box a:hover {
color: #21a7d0;
}
.profile-section .browse-course-section {
position: relative;
margin-top: 50px;
}
.profile-section .browse-course-section .styled-pagination {
margin-top: 20px;
}
.profile-section .skill-title {
font-size: 25px;
margin-top: 15px;
margin-bottom: 30px;
}
.profile-section .rs-progress {
height: 8px;
border: 1px solid #21a7d0;
border-radius: 0;
overflow: visible;
padding: 1px;
background: #fff;
margin-top: 25px;
}
.profile-section .rs-progress + .rs-progress {
margin-top: 50px;
}
.profile-section .rs-progress .progress-bar {
position: relative;
text-align: left;
line-height: 4px;
border-radius: 0;
box-shadow: none;
background-color: #21a7d0;
overflow: visible;
}
.profile-section .rs-progress .progress-bar .pb-label {
position: absolute;
left: 0px;
top: -24px;
color: #666;
font-size: 15px;
font-weight: 600;
}
.profile-section .rs-progress .progress-bar .pb-percent {
position: absolute;
right: -13px;
font-weight: 500;
color: #fff;
font-size: 10px;
top: -30px;
background: #21a7d0;
padding: 8px 5px;
}
.profile-section .rs-progress .progress-bar .pb-percent:after {
content: '';
position: absolute;
border: 5px solid transparent;
left: 50%;
border-top-color: #21a7d0;
top: 20px;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
/* ------------------------------------
17. Testimonial Section CSS
---------------------------------------*/
.rs-testimonial.style1 .testi-item {
background: #f3f8f9;
max-width: 1000px;
margin: 0 0 0 auto;
position: relative;
}
.rs-testimonial.style1 .testi-item .img-part {
position: absolute;
left: -240px;
top: 50px;
}
.rs-testimonial.style1 .testi-item .img-part img {
border-radius: 5px;
max-width: 450px;
}
.rs-testimonial.style1 .testi-item .content-part {
padding: 98px 0 98px 320px;
}
.rs-testimonial.style1 .testi-item .content-part .desc {
font-family: 'Nunito', sans-serif;
font-weight: 600;
color: #111111;
font-size: 36px;
line-height: 46px;
position: relative;
}
.rs-testimonial.style1 .testi-item .content-part .desc:before,
.rs-testimonial.style1 .testi-item .content-part .desc:after {
content: "\f151";
font-family: Flaticon;
font-size: 20px;
color: #111111;
}
.rs-testimonial.style1 .testi-item .content-part .desc:before {
transform: rotateY(180deg);
position: absolute;
left: -30px;
top: -13px;
}
.rs-testimonial.style1 .testi-item .content-part .desc:after {
position: relative;
bottom: -7px;
right: -8px;
}
.rs-testimonial.style1 .testi-item .content-part .desc.title-color {
color: #111111;
}
.rs-testimonial.style1 .testi-item .content-part .name {
margin: 0;
color: #111111;
font-weight: 500;
}
.rs-testimonial.style1 .rs-carousel.nav-style2 .owl-nav {
bottom: 35px;
right: 50px;
top: unset;
}
.rs-testimonial.style2 .donation-part img {
border-radius: 5px;
margin-bottom: 22px;
}
.rs-testimonial.style2 .testi-wrap {
overflow: hidden;
background: #f3f8f9;
border-radius: 5px;
padding: 30px;
}
.rs-testimonial.style2 .testi-wrap .img-part {
max-width: 209px;
float: left;
margin-right: 58px;
}
.rs-testimonial.style2 .testi-wrap .img-part img {
border-radius: 5px;
}
.rs-testimonial.style2 .testi-wrap .content-part .desc {
font-size: 22px;
font-weight: 600;
line-height: 30px;
font-family: 'Nunito', sans-serif;
color: #112958;
display: inline;
position: relative;
}
.rs-testimonial.style2 .testi-wrap .content-part .desc:before,
.rs-testimonial.style2 .testi-wrap .content-part .desc:after {
content: "\f151";
font-family: Flaticon;
font-size: 20px;
color: #112958;
}
.rs-testimonial.style2 .testi-wrap .content-part .desc:after {
position: relative;
bottom: -7px;
right: -8px;
}
.rs-testimonial.style2 .testi-wrap .content-part .desc:before {
transform: rotateY(180deg);
position: absolute;
left: -30px;
top: -13px;
}
.rs-testimonial.style2 .testi-wrap .content-part .desc.title-color {
color: #111111;
}
.rs-testimonial.style2 .testi-wrap .content-part .info {
margin-top: 20px;
color: #505050;
}
.rs-testimonial.style2 .testi-wrap .content-part .info .name {
margin: 0;
font-weight: 600;
}
.rs-testimonial.style2 .testi-wrap .content-part.new-content .desc {
font-size: 22px;
font-weight: 600;
line-height: 30px;
font-family: 'Nunito', sans-serif;
color: #111111;
display: inline;
position: relative;
}
.rs-testimonial.style2 .testi-wrap .content-part.new-content .desc:before,
.rs-testimonial.style2 .testi-wrap .content-part.new-content .desc:after {
content: "\f151";
font-family: Flaticon;
font-size: 20px;
color: #111111;
}
.rs-testimonial.style2 .testi-wrap .content-part.new-content .desc:after {
position: relative;
bottom: -7px;
right: -8px;
}
.rs-testimonial.style2 .testi-wrap .content-part.new-content .desc:before {
transform: rotateY(180deg);
position: absolute;
left: -30px;
top: -13px;
}
.rs-testimonial.style3 .testi-item {
background-color: #f3f8f9;
background-image: url(assets/images/testimonial/cloud-pattern.png);
background-repeat: no-repeat;
background-size: 130%;
background-position: 0 70px;
border-radius: 10px;
padding: 40px 45px;
}
.rs-testimonial.style3 .testi-item .user-info img {
max-width: 84px;
height: auto;
margin-bottom: 22px;
}
.rs-testimonial.style3 .testi-item .user-info .name {
font-size: 20px;
margin-bottom: 5px;
}
.rs-testimonial.style3 .testi-item .user-info .designation {
font-size: 14px;
color: #555555;
font-weight: 500;
}
.rs-testimonial.style3 .testi-item .user-info .ratings {
margin-top: 10px;
}
.rs-testimonial.style3 .testi-item .user-info .ratings li {
display: inline;
}
.rs-testimonial.style3 .testi-item .user-info .ratings li i {
color: #fcb903;
}
.rs-testimonial.style3 .testi-item .desc {
font-size: 17px;
font-style: italic;
}
.rs-testimonial.style3 .owl-dots {
text-align: center;
margin-top: 47px;
}
.rs-testimonial.style3 .owl-dots .owl-dot {
display: inline-block;
width: 15px;
height: 5px;
border-radius: 2.5px;
background: #21a7d0;
margin: 0 5px;
opacity: 0.5;
}
.rs-testimonial.style3 .owl-dots .owl-dot.active {
opacity: 1;
}
.rs-testimonial.style4 .testi-item {
border-radius: 10px;
padding: 30px;
padding-right: 20px;
background: #ffffff;
border: 1px solid rgba(33, 167, 208, 0.1);
transition: all 0.3s ease;
}
.rs-testimonial.style4 .testi-item .user-img img {
max-width: 100px;
height: auto;
}
.rs-testimonial.style4 .testi-item .user-info {
padding-left: 20px;
}
.rs-testimonial.style4 .testi-item .user-info .name {
font-size: 18px;
line-height: 1.2;
font-weight: 600;
margin: 0;
color: #111111;
}
.rs-testimonial.style4 .testi-item .user-info .name:hover {
color: #21a7d0;
}
.rs-testimonial.style4 .testi-item .user-info .designation {
display: block;
}
.rs-testimonial.style4 .testi-item .user-info .desc {
margin-bottom: 20px;
}
.rs-testimonial.style4 .testi-item .user-info .quote {
color: #111111;
font-weight: bold;
}
.rs-testimonial.style4 .center .testi-item {
border: none;
box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.1);
}
.rs-testimonial.style4 .owl-dots {
text-align: center;
margin-top: 47px;
}
.rs-testimonial.style4 .owl-dots .owl-dot {
display: inline-block;
width: 15px;
height: 5px;
border-radius: 2.5px;
background: #21a7d0;
margin: 0 5px;
opacity: 0.5;
}
.rs-testimonial.style4 .owl-dots .owl-dot.active {
opacity: 1;
}
.rs-testimonial.style4 .owl-stage-outer {
padding: 10px;
margin: -10px;
}
.rs-testimonial.style5 {
background: url(assets/images/bg/testi-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
}
.rs-testimonial.style5 .testi-item .author-desc {
position: relative;
text-align: center;
padding: 35px 15px;
}
.rs-testimonial.style5 .testi-item .author-desc .desc {
position: relative;
background: #ffffff;
padding: 25px 25px 55px;
}
.rs-testimonial.style5 .testi-item .author-desc .desc .quote {
width: auto;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 10px;
}
.rs-testimonial.style5 .testi-item .author-desc .desc:before {
content: '';
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
background: #dbf2f7;
z-index: -1;
transform: rotate(10deg);
border-radius: 10px;
}
.rs-testimonial.style5 .testi-item .author-desc .author-img {
position: absolute;
bottom: -55px;
left: 50%;
transform: translateX(-50%);
bottom: 0;
}
.rs-testimonial.style5 .testi-item .author-desc .author-img img {
width: auto;
border-radius: 50%;
}
.rs-testimonial.style5 .testi-item .author-part {
text-align: center;
}
.rs-testimonial.style5 .testi-item .author-part .name {
display: block;
font-size: 18px;
font-weight: 600;
color: #111111;
margin-top: 15px;
}
.rs-testimonial.style6 .testimonial-item {
display: flex;
}
.rs-testimonial.style6 .testimonial-item .content-part {
padding: 0 30px;
}
.rs-testimonial.style6 .testimonial-item .content-part .content-wrap .text p {
font-size: 24px;
line-height: 40px;
color: #222222;
font-style: italic;
}
.rs-testimonial.style6 .testimonial-item .content-part .content-wrap .info .name {
font-size: 22px;
line-height: 38px;
color: #031a3d;
margin-bottom: 10px;
}
.rs-testimonial.style6 .testimonial-item .content-part .content-wrap .info .position {
font-size: 16px;
line-height: 28px;
color: #54647b;
}
.rs-testimonial.style7 {
background: #e7f8fb;
}
.rs-testimonial.style7 .testi-item {
background: #ffffff !important;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.05) !important;
}
.rs-testimonial.style7 .testi-item .user-info img {
width: 80px !important;
height: 80px !important;
border-radius: 50% !important;
display: block !important;
}
.rs-testimonial.style8 .testi-item .author-desc {
position: relative;
text-align: center;
padding: 35px 15px;
}
.rs-testimonial.style8 .testi-item .author-desc .desc {
position: relative;
background-color: #f9f8f8;
padding: 25px 25px 55px;
}
.rs-testimonial.style8 .testi-item .author-desc .desc .quote {
width: auto;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 10px;
}
.rs-testimonial.style8 .testi-item .author-desc .desc:before {
content: '';
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
background: #f9f8f8;
z-index: -1;
transform: rotate(10deg);
border-radius: 10px;
}
.rs-testimonial.style8 .testi-item .author-desc .author-img {
position: absolute;
bottom: -55px;
left: 50%;
transform: translateX(-50%);
bottom: 0;
}
.rs-testimonial.style8 .testi-item .author-desc .author-img img {
margin: auto;
max-width: 70px;
border-radius: 50%;
}
.rs-testimonial.style8 .testi-item .author-part {
text-align: center;
}
.rs-testimonial.style8 .testi-item .author-part .name {
display: block;
font-size: 18px;
font-weight: 600;
color: #111111;
margin-top: 15px;
}
.rs-testimonial.style8 .owl-dots {
text-align: center;
margin-top: 47px;
}
.rs-testimonial.style8 .owl-dots .owl-dot {
width: 25px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
background: #208cad;
border: none;
transition: all 0.3s ease;
}
.rs-testimonial.style8 .owl-dots .owl-dot:hover,
.rs-testimonial.style8 .owl-dots .owl-dot.active {
width: 40px;
opacity: 1;
background: #21a7d0;
}
.rs-testimonial.style8 .owl-stage-outer {
padding: 10px;
margin: -10px;
}
.rs-testimonial.main-home {
background: url(assets/images/bg/main-home.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.rs-testimonial.main-home .testi-item .author-desc {
padding: 70px 15px;
background-color: #171F3296;
border-radius: 5px 5px 5px 5px;
}
.rs-testimonial.main-home .testi-item .author-desc .desc {
text-align: center;
position: relative;
color: #ffffff;
padding: 80px 40px 30px;
font-size: 23px;
line-height: 33px;
font-weight: 500;
font-style: italic;
}
.rs-testimonial.main-home .testi-item .author-desc .desc .quote {
width: 66px;
top: -13px;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.rs-testimonial.main-home .testi-item .author-desc .desc:before {
content: none;
}
.rs-testimonial.main-home .testi-item .author-desc .author-img {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 80px;
}
.rs-testimonial.main-home .testi-item .author-desc .author-img img {
width: auto;
border-radius: 50%;
}
.rs-testimonial.main-home .testi-item .author-part {
text-align: center;
padding-top: 45px;
}
.rs-testimonial.main-home .testi-item .author-part .name {
font-size: 20px;
font-weight: 700;
line-height: 45px;
color: #ffffff;
display: block;
}
.rs-testimonial.main-home .testi-item .author-part .designation {
font-size: 16px;
color: #ffffff;
}
.rs-testimonial.main-home .owl-dots {
text-align: center;
margin-top: 47px;
}
.rs-testimonial.main-home .owl-dots .owl-dot {
width: 25px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
background: #208cad;
border: none;
transition: all 0.3s ease;
}
.rs-testimonial.main-home .owl-dots .owl-dot:hover,
.rs-testimonial.main-home .owl-dots .owl-dot.active {
width: 40px;
background: #21a7d0;
opacity: 1;
}
.rs-testimonial.main-home .owl-stage-outer {
padding: 10px;
margin: -10px;
}
.rs-testimonial.home9-style .testi-item p {
font-size: 25px;
font-style: italic;
color: #111111;
padding: 15px 0px 15px 0px;
margin-bottom: 30px;
}
.rs-testimonial.home9-style .testi-item .testi-information {
color: #505050;
}
.rs-testimonial.home9-style .testi-item .testi-information .name {
font-size: 24px;
font-weight: 700;
text-transform: uppercase;
color: #111111;
margin-bottom: 15px;
}
.rs-testimonial.home9-style .testi-item .testi-information .designation {
font-size: 22px;
font-weight: 500;
}
.rs-testimonial.home-style1 .testi-item .author-desc {
padding: 70px 15px;
background-color: #f3f8f9;
border-radius: 5px 5px 5px 5px;
}
.rs-testimonial.home-style1 .testi-item .author-desc .desc {
text-align: center;
position: relative;
color: #505050;
padding: 80px 40px 30px;
font-size: 23px;
line-height: 33px;
font-weight: 500;
font-style: italic;
}
.rs-testimonial.home-style1 .testi-item .author-desc .desc .quote {
width: 66px;
top: -13px;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.rs-testimonial.home-style1 .testi-item .author-desc .desc:before {
content: none;
}
.rs-testimonial.home-style1 .testi-item .author-desc .author-img {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 80px;
}
.rs-testimonial.home-style1 .testi-item .author-desc .author-img img {
width: auto;
border-radius: 50%;
}
.rs-testimonial.home-style1 .testi-item .author-part {
text-align: center;
padding-top: 45px;
}
.rs-testimonial.home-style1 .testi-item .author-part .name {
font-size: 20px;
font-weight: 700;
line-height: 45px;
color: #ffffff;
display: block;
}
.rs-testimonial.home-style1 .testi-item .author-part .designation {
font-size: 16px;
color: #ffffff;
}
.rs-testimonial.home-style1 .owl-dots {
text-align: center;
margin-top: 47px;
}
.rs-testimonial.home-style1 .owl-dots .owl-dot {
width: 40px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
background: #21a7d0;
border: none;
}
.rs-testimonial.home-style1 .owl-dots .owl-dot:hover,
.rs-testimonial.home-style1 .owl-dots .owl-dot.active {
background: #21a7d0;
opacity: 1;
}
.rs-testimonial.home-style1 .owl-stage-outer {
padding: 10px;
margin: -10px;
}
.rs-testimonial.home11-style .rs-carousel .owl-dots {
text-align: center;
}
.rs-testimonial.home11-style .rs-carousel .owl-dots .owl-dot {
position: relative;
border: none;
border-radius: 50%;
background: #21a7d0;
width: 10px;
height: 10px;
margin-bottom: 10px;
transition: all 0.3s ease;
margin-right: 11px;
}
.rs-testimonial.home11-style .rs-carousel .owl-dots .owl-dot:before {
content: "";
position: absolute;
width: 18px;
height: 18px;
left: -4px;
top: -4px;
border-radius: 50%;
border-width: 1px;
border-style: solid;
border-color: #4e49a1;
border-image: initial;
}
.rs-testimonial.home11-style .rs-carousel .owl-dots .active {
background: #4e49a1;
}
.rs-testimonial.home11-style .testi-item .user-info {
position: relative;
padding: 25px 30px;
background: #e7f9fb;
border: 1px solid #e7f9fb;
}
.rs-testimonial.home11-style .testi-item .user-info .desc {
font-size: 18px;
line-height: 30px;
font-weight: 400;
color: #54647b;
margin-bottom: 15px;
}
.rs-testimonial.home11-style .testi-item .user-info .name {
font-size: 20px;
line-height: 30px;
font-weight: 600;
color: #4e49a1;
margin-bottom: 0;
}
.rs-testimonial.home11-style .testi-item .user-info .name:hover {
color: #21a7d0;
}
.rs-testimonial.home11-style .testi-item .user-info .position {
font-size: 15px;
margin-bottom: 0;
}
.rs-testimonial.home11-style .testi-item .user-info .position span {
font-weight: 500;
}
.rs-testimonial.home11-style .testi-item .user-info::before {
content: "";
height: 0;
width: 0;
top: 30px;
right: 100%;
border: solid transparent;
position: absolute;
pointer-events: none;
}
.rs-testimonial.home11-style .testi-item .user-info:before {
border-right-color: #e7f9fb;
border-width: 15px;
}
.rs-testimonial.orange-color .testi-item .user-info .ratings li i {
color: #21a7d0;
}
.rs-testimonial.orange-color .owl-dots .owl-dot {
border-color: #21a7d0 !important;
background: #21a7d0 !important;
}
.rs-testimonial.home12-style {
background: url(assets/images/bg/home12/testi-bg.jpg);
background-repeat: no-repeat;
background-position: center top;
background-size: cover;
padding: 150px 0;
}
.rs-testimonial.home12-style .testi-item {
padding: 100px 40px 40px 40px;
background-color: #ffffff;
margin-right: 14px;
margin-bottom: 0px;
}
.rs-testimonial.home12-style .testi-item .item-content-basic {
position: relative;
text-align: center;
}
.rs-testimonial.home12-style .testi-item .item-content-basic .desc {
font-style: italic;
margin-bottom: 28px;
}
.rs-testimonial.home12-style .testi-item .item-content-basic .desc .quote {
width: 46px;
top: -70px;
position: absolute;
z-index: 1;
left: 50%;
transform: translateX(-50%);
}
.rs-testimonial.home12-style .testi-item .item-content-basic .testi-content .img-wrap {
margin-bottom: 20px;
}
.rs-testimonial.home12-style .testi-item .item-content-basic .testi-content .img-wrap img {
height: 65px;
width: 65px;
border-radius: 50%;
position: relative;
margin: 0 auto;
}
.rs-testimonial.home12-style .testi-item .item-content-basic .testi-content .name {
font-size: 20px;
color: #000000;
font-weight: 700;
font-family: 'Nunito', sans-serif;
}
.rs-testimonial.home12-style .testi-item .item-content-basic .testi-content .designation {
font-size: 16px;
line-height: 27px;
font-weight: 400;
color: #555555;
}
.rs-testimonial.home13-style .content {
margin-bottom: -170px;
}
.rs-testimonial.home13-style .content .sub-title {
font-size: 16px;
line-height: 27px;
font-weight: 400;
color: #21a7d0;
text-transform: uppercase;
}
.rs-testimonial.home13-style .content .title {
font-size: 42px;
line-height: 52px;
font-weight: 600;
color: #ffffff;
}
.rs-testimonial.home13-style .slick-part .slider-nav .slick-list {
padding: 0 7px !important;
margin-bottom: 32px;
}
.rs-testimonial.home13-style .slick-part .slider .images-single {
padding: 0 0 0 6.5px;
}
.rs-testimonial.home13-style .slick-part .slider .images-single img {
border-radius: 3px;
}
.rs-testimonial.home13-style .slick-part .slider .images-single .polite {
background: #f00;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .single-testimonial {
display: flex;
align-items: center;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .single-testimonial .images-part {
width: 50%;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .single-testimonial .content-part {
width: 50%;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .content-part {
width: 50%;
padding: 0px 0px 0px 34px;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .content-part .quote {
width: 40px;
margin-bottom: 20px;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .content-part p {
font-size: 22px;
font-weight: 400;
font-style: italic;
color: #ffffff;
padding: 0px 0px 30px 0px;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .content-part .name {
font-size: 22px;
font-weight: 600;
line-height: 32px;
color: #ffffff;
}
.rs-testimonial.home13-style .slick-part .slider button {
border: none;
font-size: 0px;
background: none;
}
.rs-testimonial.home13-style .slick-part .slider button.slick-prev:before {
content: "\f137";
font-family: Flaticon;
color: #fff;
font-size: 18px;
background: #21a7d0;
width: 45px;
display: block;
height: 45px;
line-height: 45px;
border-radius: 35px;
right: 40%;
bottom: 50px;
position: absolute;
z-index: 10;
}
.rs-testimonial.home14-style .owl-stage-outer {
padding: 10px 10px 10px;
margin: 0 10px;
}
.rs-testimonial.home14-style .testi-item {
padding: 38px 37px 30px 37px;
background: #ffffff;
box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.03);
}
.rs-testimonial.home14-style .testi-item .image-wrap {
position: relative;
margin-bottom: 25px;
}
.rs-testimonial.home14-style .testi-item .image-wrap img {
height: 65px;
width: 65px;
border-radius: 50%;
position: relative;
}
.rs-testimonial.home14-style .testi-item .item-content {
position: relative;
}
.rs-testimonial.home14-style .testi-item .item-content .quote-positions {
width: 18px;
top: 136px;
position: absolute;
z-index: 1;
left: 154px;
}
.rs-testimonial.home14-style .testi-item .item-content p {
font-size: 18px;
line-height: 31px;
font-weight: 400;
color: #505050;
margin-bottom: 18px;
}
.rs-testimonial.home14-style .testi-item .testi-content .testi-name {
font-size: 20px;
line-height: 34px;
font-weight: 500;
color: #101010;
}
.rs-testimonial.home14-style .testi-item .testi-content .testi-title {
font-size: 18px;
line-height: 31px;
font-weight: 400;
color: #505050;
display: block;
}
/* ------------------------------------
18. Blog Section CSS
---------------------------------------*/
.rs-blog.style1 .blog-item {
border-radius: 3px;
overflow: hidden;
border: 1px solid #dfe9eb;
}
.rs-blog.style1 .blog-item .image-part {
overflow: hidden;
height: 100%;
}
.rs-blog.style1 .blog-item .image-part a img {
transition: all 0.5s;
transform: scale(1);
height: 100%;
width: 100%;
}
.rs-blog.style1 .blog-item .blog-content {
padding: 37px 19px 30px;
}
.rs-blog.style1 .blog-item .blog-content .title {
margin-bottom: 14px;
font-size: 24px;
line-height: 34px;
}
.rs-blog.style1 .blog-item .blog-content .title a {
color: #111111;
}
.rs-blog.style1 .blog-item .blog-content .title a:hover {
color: #21a7d0;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta {
margin-bottom: 11px;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta li {
position: relative;
margin-right: 5px;
padding-right: 15px;
display: inline-block;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta li i {
padding-right: 3px;
font-size: 14px;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta li i.fa-calendar {
padding-right: 7px;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta li a {
color: #505050;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta li:last-child {
margin: 0;
padding: 0;
}
.rs-blog.style1 .blog-item .blog-content .readon-arrow {
text-transform: uppercase;
}
.rs-blog.style1 .blog-item:hover .image-part a img {
transform: scale(1.07);
}
.rs-blog.style1 .events-short {
position: relative;
display: flex;
align-items: center;
overflow: hidden;
background: #ffffff;
padding: 30px;
border: 1px solid #dfe9eb;
border-radius: 3px;
}
.rs-blog.style1 .events-short .date-part {
position: absolute;
background: #f3f8f9;
width: 100px;
text-align: center;
padding: 11px 0 22px;
border-radius: 3px;
}
.rs-blog.style1 .events-short .date-part .month {
margin-bottom: 10px;
display: block;
}
.rs-blog.style1 .events-short .date-part .date {
font-size: 50px;
font-family: 'Nunito', sans-serif;
color: #21a7d0;
font-weight: 700;
}
.rs-blog.style1 .events-short .content-part {
padding-left: 120px;
}
.rs-blog.style1 .events-short .content-part .categorie a {
color: #505050;
}
.rs-blog.style1 .events-short .content-part .categorie a:hover {
color: #21a7d0;
}
.rs-blog.style1 .events-short .content-part .title {
line-height: 1.5;
}
.rs-blog.style1 .events-short .content-part .title a {
color: #111111;
}
.rs-blog.style1 .events-short .content-part .title a:hover {
color: #21a7d0;
}
.rs-blog.style1 .events-short.new-style {
padding: unset;
border: none;
}
.rs-blog.style1 .events-short.new-style .date-part {
position: absolute;
width: 100px;
text-align: center;
padding: 11px 0 22px;
border-radius: 3px;
}
.rs-blog.style1 .events-short.new-style .date-part .month {
color: #ffffff;
}
.rs-blog.style1 .events-short.new-style .date-part .date {
color: #ffffff;
}
.rs-blog.style1 .events-short.new-style .date-part.bg1 {
background: #4e49a1;
}
.rs-blog.style1 .events-short.new-style .date-part.bg2 {
background: #ff6666;
}
.rs-blog.style1 .events-short.new-style .date-part.bg3 {
background: #ffaf40;
}
.rs-blog.style1 .events-short.new-style .date-part.bg4 {
background: #95cc47;
}
.rs-blog.style1 .events-short.new-style .content-part .categorie .timesec {
color: #54647b;
}
.rs-blog.style1 .events-short.new-style .content-part .categorie a {
color: #4e49a1;
}
.rs-blog.style1 .events-short.new-style .content-part .title {
padding-right: 62px;
font-size: 22px;
}
.rs-blog.style1 .events-short.new-style .content-part .title a {
color: #4e49a1;
}
.rs-blog.style1 .events-short.new-style .content-part .title a:hover {
color: #21a7d0;
}
.rs-blog.style1.modify1 .blog-item {
border: 1px solid #c7e8f0;
}
.rs-blog.style1.modify1 .blog-item .blog-content {
padding: 33px 30px 34px;
}
.rs-blog.style1.modify1 .events-short {
overflow: visible;
background: #ffffff;
padding: 6px 0;
border: none;
border-radius: 0;
}
.rs-blog.style1.modify1 .events-short .date-part {
background: #f3f8f9;
}
.rs-blog.style1.modify1 .events-short .date-part.bgc1 {
background: #dcf1fd;
}
.rs-blog.style1.modify1 .events-short .date-part.bgc2 {
background: #eaddf8;
}
.rs-blog.style1.modify1 .events-short .date-part.bgc3 {
background: #f8f6d1;
}
.rs-blog.style1.modify1 .events-short .date-part.bgc4 {
background: #f9e8e8;
}
.rs-blog.style1.modify1 .events-short .content-part .title {
font-size: 22px;
}
.rs-blog.style1.home11-style .blog-item {
border-radius: 3px;
overflow: hidden;
border: 1px solid #dfe9eb;
}
.rs-blog.style1.home11-style .blog-item .blog-content {
padding: 37px 25px 30px;
}
.rs-blog.style1.home11-style .blog-item .blog-content .title a {
color: #4e49a1;
}
.rs-blog.style1.home11-style .blog-item .blog-content .title a:hover {
color: #21a7d0;
}
.rs-blog.style1.home11-style .blog-item .blog-content .blog-meta {
margin-bottom: 11px;
}
.rs-blog.style1.home11-style .blog-item .blog-content .blog-meta li {
color: #54647b;
}
.rs-blog.style1.home11-style .blog-item .blog-content .btn-part .readon-arrow {
color: #4e49a1;
}
.rs-blog.style1.home11-style .blog-item .blog-content .btn-part .readon-arrow:after {
color: #4e49a1;
}
.rs-blog.style1.home11-style .blog-item .blog-content .btn-part .readon-arrow:hover {
color: #21a7d0;
}
.rs-blog.style1.home11-style .blog-item .blog-content .btn-part .readon-arrow:hover:after {
color: #21a7d0;
}
.rs-blog.style1.home11-style .blog-item:hover .image-part a img {
transform: scale(1.07);
}
.rs-blog.style2 .blog-item {
border-radius: 3px;
background: #ffffff;
overflow: hidden;
}
.rs-blog.style2 .blog-item .image-part {
overflow: hidden;
height: 100%;
}
.rs-blog.style2 .blog-item .image-part img {
transition: all 0.5s;
transform: scale(1);
}
.rs-blog.style2 .blog-item .blog-content {
padding: 21px 30px 30px;
color: #273c66;
background: #fcfcfc;
}
.rs-blog.style2 .blog-item .blog-content .title {
margin-bottom: 14px;
font-size: 24px;
line-height: 34px;
}
.rs-blog.style2 .blog-item .blog-content .title a {
color: #111111;
}
.rs-blog.style2 .blog-item .blog-content .title a:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content .categories {
color: #505050;
}
.rs-blog.style2 .blog-item .blog-content .desc {
color: #505050;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta {
margin-bottom: 11px;
color: #505050;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li {
position: relative;
margin-right: 5px;
padding-right: 15px;
display: inline-block;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li i {
padding-right: 3px;
font-size: 14px;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li i.fa-calendar {
padding-right: 7px;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li a {
color: #273c66;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li:last-child {
margin: 0;
padding: 0;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom {
overflow: hidden;
padding-top: 21px;
margin-top: 21px;
border-top: 1px solid #dcdfe6;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li {
display: inline;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.cmnt-part a {
color: #273c66;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.cmnt-part a:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.btn-part {
float: right;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.btn-part .readon-arrow {
text-transform: uppercase;
color: #273c66;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.btn-part .readon-arrow:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.primary-border {
border: 1px solid rgba(33, 167, 208, 0.1);
border-top: none;
}
.rs-blog.style2 .blog-item .blog-content.new-style .title a {
color: #112958;
}
.rs-blog.style2 .blog-item .blog-content.new-style .title a:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li {
display: inline;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.cmnt-part a {
color: #505050;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.cmnt-part a:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.btn-part {
float: right;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.btn-part .readon-arrow {
text-transform: uppercase;
color: #112958;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.btn-part .readon-arrow:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.cmnt-part a {
color: #505050;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.cmnt-part a:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.btn-part {
float: right;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.btn-part .readon-arrow {
text-transform: uppercase;
color: #111111;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.btn-part .readon-arrow:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item:hover .image-part img {
transform: scale(1.07);
}
.rs-blog.style2.modify .blog-item .blog-content {
border: none;
background: #ffffff;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.rs-blog.style2.modify .blog-item .blog-content .blog-bottom .btn-part {
font-weight: 600;
color: #111111;
}
.rs-blog.style2.modify .blog-item .blog-content .blog-bottom .btn-part .readon-arrow {
font-weight: 600;
color: #111111;
}
.rs-blog.style2.modify2 .owl-stage-outer {
padding-bottom: 10px;
margin: -10px;
padding-left: 10px;
}
.rs-blog.style2.modify2 .blog-item {
overflow: visible !important;
}
.rs-blog.style2.modify2 .blog-item .blog-content {
background: #ffffff !important;
box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.2) !important;
transition: all 500ms ease;
position: relative;
}
.rs-blog.style2.modify2 .blog-item .blog-content .categories.color-bg1 {
color: #c701f1;
}
.rs-blog.style2.modify2 .blog-item .blog-content .categories.color-bg2 {
color: #065ce8;
}
.rs-blog.style2.modify2 .blog-item .blog-content .categories.color-bg3 {
color: #f6075b;
}
.rs-blog.style2.modify2 .blog-item:hover .blog-content {
transform: translateY(-10px);
}
.rs-blog.main-home .owl-stage-outer {
padding: 0 10px 10px;
margin: 0 -10px;
}
.rs-blog.main-home .blog-item {
background: #fff;
transition: all 500ms ease;
border-radius: 5px;
}
.rs-blog.main-home .blog-item .blog-content {
box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
padding: 40px 35px 16px;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta {
margin-bottom: 11px;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li {
position: relative;
margin-right: 5px;
padding-right: 15px;
display: inline-block;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li i {
padding-right: 3px;
font-size: 14px;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li i:before {
padding-right: 7px;
color: #21a7d0;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li a {
color: #505050;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li:last-child {
margin: 0;
padding: 0;
}
.rs-blog.main-home .blog-item .blog-content .title {
margin-bottom: 14px;
font-size: 24px;
line-height: 34px;
}
.rs-blog.main-home .blog-item .blog-content .title a {
color: #101010;
}
.rs-blog.main-home .blog-item .blog-content .title a:hover {
color: #21a7d0;
}
.rs-blog.main-home .blog-item .blog-content .desc {
color: #505050;
padding-bottom: 20px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm {
display: flex;
justify-content: space-between;
border-top: 1px solid #f4f0f0;
padding-top: 20px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories {
display: flex;
position: relative;
padding-left: 22px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories:before {
content: "\f02d";
font-family: fontawesome;
font-size: 15px;
color: #21a7d0;
position: absolute;
left: 0px;
top: 1px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories li {
font-size: 14px;
text-transform: capitalize;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories li a {
color: #505050;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories li a:hover {
color: #21a7d0;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .rs-view-btn a {
padding: 0px 0px 0px 0px;
font-family: "Rubik", Sans-serif;
font-weight: 400;
color: #505050;
font-size: 15px;
position: relative;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .rs-view-btn a:after {
content: "\f054";
font-family: fontawesome;
font-size: 12px;
position: relative;
right: 0px;
top: 0px;
display: inline-block;
margin-left: 3px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .rs-view-btn a:hover {
color: #21a7d0;
}
.rs-blog.main-home .blog-item:hover {
transform: translateY(-10px);
}
.rs-blog.main-home.modify1 .blog-item .blog-content {
background-color: #F3FCF8;
padding: 30px 25px 30px 25px;
border-radius: 0 0 5px 5px;
box-shadow: unset;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta {
font-size: 14px;
text-transform: capitalize;
display: flex;
justify-content: space-between;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .date {
color: #333333;
font-size: 14px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .date i:before {
color: #0c8b51;
padding-right: 5px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .admin {
color: #333333;
font-size: 14px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .admin i:before {
color: #0c8b51;
padding-right: 5px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .title {
font-size: 22px;
line-height: 32px;
font-weight: 700;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .title a {
color: #101010;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .title a:hover {
color: #0c8b51;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories:before {
color: #0c8b51;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories li {
font-size: 14px;
font-weight: 400;
text-transform: capitalize;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories li a {
color: #333333;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories li a:hover {
color: #0c8b51;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .rs-view-btn a {
font-weight: 500;
color: #333333;
font-size: 15px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .rs-view-btn a:hover {
color: #0c8b51;
}
.rs-blog.home9-style .blog-item {
border-radius: 3px;
overflow: hidden;
border: 1px solid #dfe9eb;
}
.rs-blog.home9-style .blog-item .image-part {
overflow: hidden;
height: 100%;
}
.rs-blog.home9-style .blog-item .image-part a img {
transition: all 0.5s;
transform: scale(1);
height: 100%;
width: 100%;
}
.rs-blog.home9-style .blog-item .blog-content {
padding: 10px 20px 0px 30px;
}
.rs-blog.home9-style .blog-item .blog-content .title {
margin-bottom: 14px;
font-size: 24px;
line-height: 34px;
}
.rs-blog.home9-style .blog-item .blog-content .title a {
color: #101010;
}
.rs-blog.home9-style .blog-item .blog-content .title a:hover {
color: #f4bf00;
}
.rs-blog.home9-style .blog-item .blog-content .txt {
font-size: 16px;
color: #505050;
font-weight: 400;
margin: 0;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta {
margin-bottom: 11px;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li {
position: relative;
margin-right: 5px;
padding-right: 15px;
display: inline-block;
font-size: 16px;
color: #505050;
font-weight: 400;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li i {
padding-right: 3px;
font-size: 14px;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li i:before {
color: #f4bf00;
padding-right: 5px;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li i:before:last-child {
padding-right: 0;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li a {
color: #505050;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li:last-child {
margin: 0;
padding: 0;
}
.rs-blog.home9-style .blog-item:hover .image-part a img {
transform: scale(1.07);
}
.rs-blog.home9-style .events-short-top {
position: relative;
display: flex;
align-items: center;
overflow: hidden;
border: 1px solid #dfe9eb;
padding: 25px 39px 38px 25px;
align-items: flex-start;
background: #ffffff;
}
.rs-blog.home9-style .events-short-top .date-part {
background: #1C335F;
min-width: 100px;
text-align: center;
padding: 11px 0 22px;
border-radius: 3px;
margin-right: 25px;
transition: all 500ms ease;
}
.rs-blog.home9-style .events-short-top .date-part .month {
margin-bottom: 10px;
display: block;
color: #ffffff;
}
.rs-blog.home9-style .events-short-top .date-part .date {
font-size: 50px;
color: #f4bf00;
font-weight: 700;
line-height: 25px;
}
.rs-blog.home9-style .events-short-top .date-part:hover {
transform: translateY(-10px);
}
.rs-blog.home9-style .events-short-top .content-part .categorie a {
color: #505050;
}
.rs-blog.home9-style .events-short-top .content-part .categorie a:hover {
color: #21a7d0;
}
.rs-blog.home9-style .events-short-top .content-part .title {
line-height: 1.5;
font-weight: 700;
font-size: 24px;
margin-bottom: 6px;
}
.rs-blog.home9-style .events-short-top .content-part .title a {
color: #101010;
}
.rs-blog.home9-style .events-short-top .content-part .title a:hover {
color: #f4bf00;
}
.rs-blog.home9-style .events-short-top .content-part .txt {
font-size: 16px;
color: #505050;
margin: 0;
}
.rs-blog.home9-style .short {
position: relative;
display: flex;
overflow: hidden;
background: #ffffff;
padding: 30px;
border: 1px solid #dfe9eb;
border-radius: 3px;
}
.rs-blog.home9-style .short .date-part {
position: absolute;
background: #1c335f;
width: 100px;
text-align: center;
padding: 11px 0 22px;
border-radius: 3px;
}
.rs-blog.home9-style .short .date-part .month {
margin-bottom: 10px;
display: block;
}
.rs-blog.home9-style .short .date-part .date {
font-size: 50px;
font-family: 'Nunito', sans-serif;
color: #21a7d0;
font-weight: 700;
}
.rs-blog.home9-style .short .content-part {
padding-left: 120px;
}
.rs-blog.home9-style .short .content-part .categorie a {
color: #505050;
}
.rs-blog.home9-style .short .content-part .categorie a:hover {
color: #21a7d0;
}
.rs-blog.home9-style .short .content-part .title {
line-height: 1.5;
}
.rs-blog.home9-style .short .content-part .title a {
color: #111111;
}
.rs-blog.home9-style .short .content-part .title a:hover {
color: #21a7d0;
}
.rs-blog.orange-color .blog-item .blog-content .title a:hover {
color: #21a7d0;
}
.rs-blog.orange-color .blog-item .blog-content .readon-arrow:hover {
color: #21a7d0;
}
.rs-blog.orange-color .blog-item .blog-content .readon-arrow:hover:after {
color: #21a7d0;
}
.rs-blog.orange-color .events-short .content-part .title a:hover {
color: #21a7d0;
}
.rs-blog.gym-home .blog-item {
transition: all 500ms ease;
border-radius: 5px;
}
.rs-blog.gym-home .blog-item .blog-content {
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #252525;
background-color: #1D0E15;
padding: 26px 26px 30px 26px;
}
.rs-blog.gym-home .blog-item .blog-content .post-categories li {
margin-bottom: 10px;
}
.rs-blog.gym-home .blog-item .blog-content .post-categories li a {
font-size: 15px;
color: #21a7d0;
text-transform: uppercase;
margin-bottom: 8px;
}
.rs-blog.gym-home .blog-item .blog-content .title {
font-size: 24px;
font-weight: 700;
margin-bottom: 18px;
}
.rs-blog.gym-home .blog-item .blog-content .title a {
color: #ffffff;
}
.rs-blog.gym-home .blog-item .blog-content .title a:hover {
color: #21a7d0;
}
.rs-blog.gym-home .blog-item .blog-content .blog-meta {
font-size: 14px;
color: #ffffff;
display: flex;
justify-content: space-between;
}
.rs-blog.gym-home .blog-item .blog-content .blog-meta li i {
padding-right: 3px;
font-size: 14px;
color: #21a7d0;
}
.rs-blog.gym-home .blog-item .blog-content .blog-meta li i.fa-calendar {
padding-right: 7px;
}
.rs-blog.gym-home .blog-item:hover {
transform: translateY(-10px);
}
.rs-inner-blog .blog-item {
background: #fff;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}
.rs-inner-blog .blog-item .blog-content {
padding: 40px 46px 45px;
overflow: hidden;
}
.rs-inner-blog .blog-item .blog-content .blog-title {
margin: 4px 0 10px;
font-size: 26px;
line-height: 35px;
}
.rs-inner-blog .blog-item .blog-content .blog-title a {
color: #111111;
}
.rs-inner-blog .blog-item .blog-content .blog-title a:hover {
color: #21a7d0;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate {
overflow: hidden;
margin: 0 0 5px;
padding: 0 0 12px;
font-size: 13px;
display: flex;
align-items: center;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li {
margin-right: 15px;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .blog-date {
display: inline-block;
font-weight: 400;
font-size: 13px;
color: #505050;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .blog-date i {
color: #21a7d0;
margin-right: 3px;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .author {
display: inline-block;
padding: 0;
margin-right: 0;
line-height: normal;
color: #555;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .author i {
color: #21a7d0;
margin-right: 3px;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .tag-line {
position: relative;
padding-left: 2px;
color: #555;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .tag-line i {
margin-right: 3px;
color: #21a7d0;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .tag-line i:before {
font-size: 14px;
font-weight: 600;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .tag-line a {
color: #555;
}
.rs-inner-blog .blog-item .blog-content .blog-desc {
font-size: 16px;
line-height: 27px;
font-weight: 400;
color: #505050;
margin-bottom: 35px;
}
.rs-inner-blog .widget-area .widget-title {
color: #111111;
font-size: 20px;
line-height: 26px;
font-weight: 600;
position: relative;
z-index: 1;
padding-bottom: 12px;
}
.rs-inner-blog .widget-area .widget-title:before {
content: "";
position: absolute;
border: 0;
width: 50px;
height: 2px;
background: #21a7d0;
z-index: 1;
margin-left: 0;
bottom: 0;
left: 0;
}
.rs-inner-blog .widget-area .search-widget {
background: #fff;
padding: 40px 30px 40px;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}
.rs-inner-blog .widget-area .search-widget .search-wrap {
position: relative;
}
.rs-inner-blog .widget-area .search-widget .search-wrap [type=search] {
border: 1px solid #ddd;
color: #444444;
padding: 12px 17px;
width: 100%;
border-radius: 5px;
position: relative;
}
.rs-inner-blog .widget-area .search-widget .search-wrap button {
background: transparent;
border: medium none;
color: #505050;
padding: 11px 15px 12px;
position: absolute;
display: block;
right: 0px;
top: 0;
z-index: 10;
font-size: 20px;
border-radius: 0 5px 5px;
}
.rs-inner-blog .widget-area .search-widget .search-wrap button i:before {
font-weight: 600;
font-size: 18px;
}
.rs-inner-blog .widget-area .search-widget .search-wrap button:hover {
color: #21a7d0;
}
.rs-inner-blog .widget-area .recent-posts {
background: #fff;
padding: 40px 30px 40px;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}
.rs-inner-blog .widget-area .recent-posts ul li {
margin-top: 13px;
padding-top: 13px;
border-top: 1px solid rgba(0, 0, 0, 0.06);
font-weight: 400;
font-size: 16px;
}
.rs-inner-blog .widget-area .recent-posts ul li a {
color: #505050;
}
.rs-inner-blog .widget-area .recent-posts ul li a:hover {
color: #21a7d0;
}
.rs-inner-blog .widget-area .recent-posts-widget {
background: #fff;
padding: 40px 30px 40px;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured {
display: flex;
align-items: center;
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
padding-bottom: 15px;
margin-bottom: 15px;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured .post-img {
max-width: 150px;
padding-right: 15px;
border-radius: 3px;
overflow: hidden;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured .post-desc a {
font-size: 15px;
line-height: 22px;
color: #111111;
font-weight: 400;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured .post-desc a:hover {
color: #21a7d0;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured .post-desc .date {
font-size: 12px;
line-height: 20px;
color: #21a7d0;
font-weight: 400;
display: block;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured .post-desc .date i {
font-size: 12px;
line-height: 12px;
color: #21a7d0;
font-weight: 400;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured:last-child {
margin: 0;
padding: 0;
border: none;
}
.rs-inner-blog .widget-area .widget-archives {
background: #fff;
padding: 40px 30px 40px;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}
.rs-inner-blog .widget-area .widget-archives ul li {
border: none;
position: relative;
padding: 6px 0px 6px 14px;
margin: 0;
font-size: 16px;
}
.rs-inner-blog .widget-area .widget-archives ul li a {
color: #505050;
}
.rs-inner-blog .widget-area .widget-archives ul li a:after {
content: "\f105";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
position: absolute;
left: 0;
top: 6px;
color: #273c66;
}
.rs-inner-blog .widget-area .widget-archives ul li a:hover {
color: #21a7d0;
}
.rs-inner-blog .blog-deatails {
background: #fff;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
margin-bottom: 0;
}
.rs-inner-blog .blog-deatails .blog-full {
padding: 40px 45px 40px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta {
display: flex;
align-items: center;
padding: 0 0 30px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta li .p-date {
color: #555;
font-size: 14px;
margin-right: 8px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta li .p-date i {
font-size: 13px;
margin-right: 3px;
color: #21a7d0;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta li .p-date i:before {
margin-right: 5px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .Post-cate {
list-style: none;
display: inline-block;
padding-right: 10px;
color: #555;
font-size: 14px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line i {
color: #21a7d0;
margin-right: 3px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line i:before {
margin-right: 4px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line a {
font-weight: 400;
color: #555;
font-size: 14px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line a:hover {
color: #21a7d0;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .post-comment {
color: #555;
font-size: 14px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .post-comment i:before {
color: #21a7d0;
}
.rs-inner-blog .blog-deatails .blog-full .blog-desc p {
font-size: 16px;
font-weight: 400;
color: #505050;
}
.rs-inner-blog .blog-deatails .blog-full .title {
color: #111111;
font-size: 36px;
font-weight: 700;
line-height: 40px;
}
.rs-inner-blog .blog-deatails .blog-full .sm-title {
font-size: 20px;
font-weight: 700;
line-height: 28px;
color: #111111;
}
.rs-inner-blog .blog-deatails .blog-full .unorder-list li {
display: block;
position: relative;
padding-left: 25px;
padding-bottom: 15px;
font-weight: 500;
line-height: 25px;
}
.rs-inner-blog .blog-deatails .blog-full .unorder-list li:before {
position: absolute;
top: 0;
left: 0;
content: "\f105";
font-family: FontAwesome;
color: #21a7d0;
font-size: 20px;
}
.rs-inner-blog .ps-navigation {
border-top: 1px solid rgba(170, 170, 170, 0.25);
border-bottom: 1px solid rgba(170, 170, 170, 0.25);
padding: 30px 0;
margin: 60px 0 0;
}
.rs-inner-blog .ps-navigation ul li {
text-align: right;
}
.rs-inner-blog .ps-navigation ul li a {
display: inline-block;
}
.rs-inner-blog .ps-navigation ul li a .next-link {
text-transform: uppercase;
color: #909090;
margin-top: 0;
display: block;
}
.rs-inner-blog .ps-navigation ul li a .next-link:hover {
color: #21a7d0;
}
.rs-inner-blog .ps-navigation ul li a .next-link i:before {
font-size: 16px;
font-style: normal;
color: #505050;
}
.rs-inner-blog .ps-navigation ul li a .link-text {
font-size: 16px;
font-weight: 500;
color: #1c1b1b;
}
.rs-inner-blog .ps-navigation ul li a .link-text:hover {
color: #21a7d0;
}
.rs-inner-blog .comment-area .comment-full .reply-title {
font-size: 24px;
font-weight: 700;
margin-bottom: 30px;
margin-top: 45px;
position: relative;
padding: 0 0 12px;
color: #111111;
}
.rs-inner-blog .comment-area .comment-full p span {
font-size: 16px;
color: #505050;
}
.rs-inner-blog .comment-area .comment-full .from-group {
width: 100%;
height: 50px;
padding: 5px 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
.rs-inner-blog .comment-area .comment-full .submit-btn .submit {
border: 2px solid;
border-color: #21a7d0;
background: #21a7d0;
position: relative;
display: inline-block;
padding: 12px 22px;
border-radius: 3px;
line-height: normal;
font-size: 14px;
font-weight: 500;
color: #fff;
transition: all .3s ease 0s;
text-transform: uppercase;
}
.rs-inner-blog .comment-area .comment-full .submit-btn .submit:hover {
opacity: 0.9;
}
.rs-inner-blog.orange-color .blog-btn:hover,
.rs-inner-blog.orange-color .blog-btn:hover::after,
.rs-inner-blog.orange-color .widget-area .recent-posts ul li a:hover,
.rs-inner-blog.orange-color .blog-item .blog-content .blog-title a:hover,
.rs-inner-blog.orange-color .widget-area .search-widget .search-wrap button:hover,
.rs-inner-blog.orange-color .blog-item .blog-content .blog-meta .btm-cate li .author i,
.rs-inner-blog.orange-color .blog-item .blog-content .blog-meta .btm-cate li .tag-line i,
.rs-inner-blog.orange-color .blog-item .blog-content .blog-meta .btm-cate li .blog-date i,
.rs-inner-blog.orange-color .widget-area .recent-posts-widget .show-featured .post-desc .date,
.rs-inner-blog.orange-color .widget-area .recent-posts-widget .show-featured .post-desc .date i,
.rs-inner-blog.orange-color .widget-area .recent-posts-widget .show-featured .post-desc a:hover,
.rs-inner-blog.orange-color .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line i,
.rs-inner-blog.orange-color .blog-deatails .blog-full .single-post-meta .post-comment i::before,
.rs-inner-blog.orange-color .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line a:hover,
.rs-inner-blog.orange-color .blog-deatails .blog-full .single-post-meta li .p-date i,
.rs-inner-blog.orange-color .blog-deatails .blog-full .unorder-list li::before,
.rs-inner-blog.orange-color .ps-navigation ul li a .link-text:hover,
.rs-inner-blog.orange-color .ps-navigation ul li a .next-link:hover,
.rs-inner-blog.orange-color .ps-navigation ul li a .next-link:hover i::before {
color: #21a7d0;
}
.rs-inner-blog.orange-color blockquote::before {
background: #21a7d0;
}
.rs-inner-blog.orange-color .comment-area .comment-full .submit-btn .submit {
border-color: #21a7d0;
background: #21a7d0;
}
.rs-inner-blog.orange-color .comment-area .comment-full .submit-btn .submit:hover {
border-color: #208cad;
background: #208cad;
}
/* ------------------------------------
19. Latest Events Section CSS
---------------------------------------*/
.rs-event .event-item {
transition: all 0.3s ease;
position: relative;
}
.rs-event .event-item .event-short {
text-align: left;
box-shadow: 0 0 20px #eee;
}
.rs-event .event-item .event-short .featured-img {
position: relative;
}
.rs-event .event-item .event-short .featured-img img {
border-radius: 5px 5px 0 0;
}
.rs-event .event-item .event-short .categorie {
position: absolute;
top: 30px;
left: 30px;
z-index: 1;
}
.rs-event .event-item .event-short .categorie a {
background: #21a7d0;
padding: 5px 20px;
display: inline-block;
color: #ffffff;
border-radius: 4px;
}
.rs-event .event-item .event-short .categorie a:hover {
opacity: .9;
}
.rs-event .event-item .event-short .content-part {
padding: 25px 30px 15px 30px;
border-radius: 0 0 5px 5px;
}
.rs-event .event-item .event-short .content-part .address {
padding-bottom: 15px;
color: #363636;
font-size: 14px;
}
.rs-event .event-item .event-short .content-part .address i {
font-size: 13px;
margin-right: 4px;
}
.rs-event .event-item .event-short .content-part .title {
font-size: 26px;
line-height: 32px;
transition: all .8s ease;
}
.rs-event .event-item .event-short .content-part .title a {
color: #000000;
}
.rs-event .event-item .event-short .content-part .title a:hover {
color: #21a7d0;
}
.rs-event .event-item .event-short .content-part .text {
color: #363636;
margin: 0;
font-size: 14px;
}
.rs-event .event-item .event-short .content-part .event-btm {
display: flex;
align-items: center;
justify-content: space-between;
border-top: 1px solid #efefef;
margin-top: 34px;
padding-top: 26px;
}
.rs-event .event-item .event-short .content-part .event-btm .date-part {
font-size: 13px;
}
.rs-event .event-item .event-short .content-part .event-btm .date-part .date i {
font-size: 13px;
margin-right: 7px;
}
.rs-event .event-item .event-short .content-part .event-btm .btn-part a {
background: #21a7d0;
text-transform: capitalize;
padding: 7px 15px;
color: #ffffff;
border-radius: 2px;
font-size: 14px;
display: inline-block;
}
.rs-event .event-item .event-short .content-part .event-btm .btn-part a:hover {
background: #208cad;
}
.rs-event .event-item:hover {
transform: translateY(-10px);
}
.rs-event .event-item.home12-style .event-short {
text-align: left;
background: #ffffff;
}
.rs-event .event-item.home12-style .event-short .featured-img {
position: relative;
}
.rs-event .event-item.home12-style .event-short .featured-img img {
border-radius: 5px 5px 0 0;
}
.rs-event .event-item.home12-style .event-short .content-part {
padding: 25px 30px 30px 30px;
border-radius: 0 0 5px 5px;
}
.rs-event .event-item.home12-style .event-short .content-part .all-dates-time {
display: flex;
}
.rs-event .event-item.home12-style .event-short .content-part .all-dates-time .address {
color: #363636;
padding-right: 20px;
}
.rs-event .event-item.home12-style .event-short .content-part .all-dates-time .address i:before {
color: #0c8b51;
}
.rs-event .event-item.home12-style .event-short .content-part .all-dates-time .time {
color: #363636;
font-size: 14px;
}
.rs-event .event-item.home12-style .event-short .content-part .all-dates-time .time i:before {
color: #0c8b51;
padding-right: 5px;
}
.rs-event .event-item.home12-style .event-short .content-part .title {
font-size: 22px;
line-height: 32px;
transition: all .8s ease;
}
.rs-event .event-item.home12-style .event-short .content-part .title a {
color: #000000;
}
.rs-event .event-item.home12-style .event-short .content-part .title a:hover {
color: #0c8b51;
}
.rs-event .event-item.home12-style .event-short .content-part .event-btm {
border-top: 1px solid #efefef;
}
.rs-event .event-item.home12-style .event-short .content-part .event-btm .date-part {
font-size: 13px;
color: #363636;
}
.rs-event .event-item.home12-style .event-short .content-part .event-btm .date-part .date i {
font-size: 13px;
margin-right: 7px;
color: #0c8b51;
}
.rs-event .event-item.home12-style .event-short .content-part .event-btm .btn-part a {
background: #0c8b51;
}
.rs-event .event-item.home12-style .event-short .content-part .event-btm .btn-part a:hover {
background: #085c36;
}
.rs-event .event-item.home12-style .rs-carousel .owl-dots {
text-align: center;
}
.rs-event .event-item.home12-style .rs-carousel .owl-dots .owl-dot {
width: 40px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
background: red;
border: none;
}
.rs-event .event-item.home12-style .rs-carousel .owl-dots .owl-dot:hover {
width: 40px;
opacity: 1;
}
.rs-event .event-item.home12-style .rs-carousel .owl-dots .active {
background: red;
}
.rs-event.home12style {
background: url(assets/images/bg/home12/event-bg.jpg);
background-repeat: no-repeat;
background-position: center top;
background-size: cover;
padding: 150px 0;
}
.rs-event.home12style .owl-dots {
text-align: center;
margin-top: 47px;
}
.rs-event.home12style .owl-dots .owl-dot {
width: 25px;
height: 8px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
background: #085c36;
border: none;
transition: all 0.3s ease;
}
.rs-event.home12style .owl-dots .owl-dot:hover,
.rs-event.home12style .owl-dots .owl-dot.active {
width: 40px;
background: #0c8b51;
opacity: 0.5;
}
.rs-event.modify1 .event-item .event-short .featured-img .dates {
position: absolute;
bottom: 0;
left: 0;
z-index: 1;
background: #21a7d0;
padding: 7px 20px;
display: inline-block;
color: #fff;
border-radius: 15px 15px 0 0;
right: 0;
margin: 0 auto;
max-width: 220px;
text-align: center;
}
.rs-event.modify1 .event-item .event-short .content-part {
padding: 30px 30px 35px 30px;
text-align: center;
}
.rs-event.modify1 .event-item .event-short .content-part .title {
font-size: 24px;
}
.rs-event.modify1 .event-item .event-short .content-part .time-sec {
display: inline-flex;
}
.rs-event.modify1 .event-item .event-short .content-part .time-sec .timesec {
margin-right: 15px;
font-size: 14px;
}
.rs-event.modify1 .event-item .event-short .content-part .time-sec .timesec i:before {
font-size: 16px;
}
.rs-event.modify1 .event-item .event-short .content-part .time-sec .address {
color: #363636;
font-size: 14px;
}
.rs-event.modify1 .event-item .event-short .content-part .time-sec .address i {
font-size: 13px;
margin-right: 4px;
}
.rs-event.modify2 .event-item .event-short {
transition: all 500ms ease;
box-shadow: 0 0 20px #eee;
position: relative;
}
.rs-event.modify2 .event-item .event-short .featured-img {
position: relative;
padding: 0px 0px 0px 0px;
}
.rs-event.modify2 .event-item .event-short .featured-img:before {
opacity: .85;
background: 0 0;
background: linear-gradient(transparent, #333333), linear-gradient(transparent, #333333);
background: -moz-linear-gradient(transparent, #333333), -moz-linear-gradient(transparent, #333333);
background: -o-linear-gradient(transparent, #333333), -o-linear-gradient(transparent, #333333);
content: "";
height: 100%;
bottom: 0;
left: 0px;
right: 0px;
position: absolute;
z-index: 1;
transition: all .7s ease 0s;
}
.rs-event.modify2 .event-item .event-short .content-part {
padding: 40px 40px 40px 40px;
position: absolute;
bottom: 0;
left: 0;
z-index: 1;
border-radius: 0 0 5px 5px;
}
.rs-event.modify2 .event-item .event-short .content-part .title a {
color: #ffffff;
}
.rs-event.modify2 .event-item .event-short .content-part .address {
color: #ffffff;
font-size: 14px;
}
.rs-event.modify2 .event-item .event-short .content-part .address i {
font-size: 13px;
margin-right: 4px;
}
.rs-event.modify2 .event-item .event-short .content-part .date-part {
padding: 0px 0px 10px 0px;
}
.rs-event.modify2 .event-item .event-short .content-part .date-part .date {
color: #ffffff;
font-size: 13px;
}
.rs-event.modify2 .event-item .event-short .content-part .date-part .date i {
font-size: 13px;
margin-right: 7px;
}
.rs-event.modify2 .event-item .event-short .content-part .time {
color: #ffffff;
font-size: 14px;
}
.rs-event.modify2 .event-item .event-short .content-part .time i:before {
margin: 0;
font-size: 14px;
color: #fff;
margin-right: 4px;
}
.rs-event.home8-style1 .rs-carousel .owl-dots {
text-align: center;
}
.rs-event.home8-style1 .rs-carousel .owl-dots .owl-dot {
width: 40px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
background: #21a7d0;
border: none;
}
.rs-event.home8-style1 .rs-carousel .owl-dots .owl-dot:hover {
width: 40px;
opacity: 1;
}
.rs-event.home8-style1 .rs-carousel .owl-dots .active {
background: #21a7d0;
}
.rs-event.home8-style1 .owl-stage-outer {
padding-bottom: 10px;
}
.rs-event.home8-style1 .event-item .event-short .featured-img .dates {
position: absolute;
bottom: 0;
left: 0;
z-index: 1;
background: #21a7d0;
padding: 7px 20px;
display: inline-block;
color: #fff;
border-radius: 15px 15px 0 0;
right: 0;
margin: 0 auto;
max-width: 220px;
text-align: center;
}
.rs-event.home8-style1 .event-item .event-short .content-part {
padding: 30px 30px 35px 30px;
text-align: center;
}
.rs-event.home8-style1 .event-item .event-short .content-part .title {
font-size: 24px;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec {
display: inline-flex;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec .timesec {
padding-right: 4px;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec .timesec i:before {
color: #21a7d0;
font-size: 14px;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec .address {
font-size: 14px;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec .address i {
font-size: 13px;
margin-right: 5px;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec .address i:before {
color: #21a7d0;
}
.rs-event.orange-color.modify1 .event-item .event-short .featured-img .dates {
background: #21a7d0;
}
.rs-latest-events.style1 .single-img {
z-index: 1;
position: relative;
}
.rs-latest-events.style1 .single-img img {
border-radius: 3px;
}
.rs-latest-events.style1 .event-wrap {
z-index: 1;
position: relative;
}
.rs-latest-events.style1 .event-wrap .events-short {
overflow: hidden;
background: #ffffff;
padding: 31px 30px;
border-radius: 3px;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part {
width: 100px;
float: left;
text-align: center;
padding: 11px 0 22px;
border-radius: 3px;
margin-right: 25px;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part .month {
margin-bottom: 10px;
display: block;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part .date {
font-size: 50px;
font-family: 'Nunito', sans-serif;
color: #112958;
font-weight: 700;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part.bgc1 {
background: #dcf1fd;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part.bgc2 {
background: #e9fbd5;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part.bgc3 {
background: #fee2c0;
}
.rs-latest-events.style1 .event-wrap .events-short .content-part .categorie a {
color: #505050;
}
.rs-latest-events.style1 .event-wrap .events-short .content-part .categorie a:hover {
color: #21a7d0;
}
.rs-latest-events.style1 .event-wrap .events-short .content-part .title {
line-height: 1.5;
}
.rs-latest-events.style1 .event-wrap .events-short .content-part .title a {
color: #112958;
}
.rs-latest-events.style1 .event-wrap .events-short .content-part .title a:hover {
color: #21a7d0;
}
.rs-latest-events.style1 .event-wrap .btn-part a {
text-transform: uppercase;
font-weight: 500;
font-size: 16px;
color: #112958;
position: relative;
display: inline-block;
}
.rs-latest-events.style1 .event-wrap .btn-part a:after {
position: absolute;
content: '';
right: 0;
bottom: 3px;
width: 0;
height: 1px;
background: #112958;
transition: all 0.3s ease;
}
.rs-latest-events.style1 .event-wrap .btn-part a:hover:after {
left: 0;
right: auto;
width: 100%;
}
.rs-latest-events.bg-wrap {
position: relative;
}
.rs-latest-events.bg-wrap:after {
position: absolute;
content: '';
top: 0;
right: 0;
width: 63%;
height: 100%;
background: #f3f8f9;
}
/* ------------------------------------
19. Download Section CSS
---------------------------------------*/
.rs-download-app .mobile-img {
display: flex;
}
.rs-download-app .mobile-img .apps-image img {
max-width: 195px;
}
/* ------------------------------------
20. Partner Section CSS
---------------------------------------*/
.rs-partner .partner-item a img {
max-width: 163px;
margin: 0 auto;
}
.rs-partner.style2 .partner-item a img {
max-width: 100px;
margin: 0 auto;
}
/* ------------------------------------
21. Gallery Section CSS
---------------------------------------*/
.rs-gallery .gallery-item {
padding: 0 30px 30px 0;
}
.rs-gallery .gallery-item .gallery-img a img {
border-radius: 5px;
}
.rs-gallery .gallery-item .title {
padding-top: 25px;
text-align: center;
font-size: 20px;
font-weight: 600;
line-height: 30px;
color: #111111;
}
.rs-gallery.style2 .gallery-part {
position: relative;
overflow: hidden;
}
.rs-gallery.style2 .gallery-part .gallery-img {
position: relative;
overflow: hidden;
}
.rs-gallery.style2 .gallery-part .gallery-img a img {
transform: scale(1);
transition: all .8s ease;
height: 220px;
}
.rs-gallery.style2 .gallery-part .gallery-img a:before {
content: "";
position: absolute;
left: 0;
right: 0;
width: 100%;
height: 100%;
background: #171f32;
opacity: 0;
display: block;
transition: all .8s ease;
z-index: 1;
}
.rs-gallery.style2 .gallery-part:hover .gallery-img a img {
transform: scale(1.1);
}
.rs-gallery.style2 .gallery-part:hover .gallery-img a:before {
opacity: .4;
}
.rs-gallery.home11-style .gallery-part .gallery-img {
position: relative;
}
.rs-gallery.home11-style .gallery-part .gallery-img img {
border-radius: 30px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .content-part {
text-align: center;
position: absolute;
bottom: 0;
left: 0;
z-index: 1;
background: #4e49a1;
padding: 5px 20px;
display: inline-block;
color: #fff;
border-radius: 30px;
right: 0;
transition: all .4s ease;
}
.rs-gallery.home11-style .gallery-part .gallery-img .content-part .title {
font-size: 22px;
line-height: 34px;
font-weight: 700;
color: #ffffff;
padding: 15px 0 15px;
margin: 0;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info {
opacity: 0;
visibility: hidden;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: all .4s ease;
z-index: 1;
text-align: center;
width: 100%;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .title-part {
font-size: 22px;
line-height: 34px;
font-weight: 700;
color: #ffffff;
margin-bottom: 12px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info p {
font-size: 16px;
line-height: 28px;
font-weight: 400;
color: #ffffff;
padding-right: 60px;
padding-left: 60px;
margin-bottom: 15px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .btn-part a {
font-size: 16px;
line-height: 28px;
font-weight: 400;
color: #ffffff;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .btn-part a i {
padding-left: 6px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .btn-part a i:before {
font-size: 16px;
}
.rs-gallery.home11-style .gallery-part .gallery-img:before {
content: '';
background: #4e49a1;
position: absolute;
visibility: hidden;
left: 0;
right: 0;
width: 100%;
height: 100%;
border-radius: 30px;
opacity: 0;
display: block;
transition: all .4s ease;
z-index: 1;
}
.rs-gallery.home11-style .gallery-part:hover .content-part {
visibility: hidden;
opacity: 0;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info {
opacity: 1;
visibility: visible;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info .title-part {
color: #ffffff;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info p {
color: #ffffff;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info .btn-part a {
color: #ffffff;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img:before {
visibility: visible;
opacity: 0.9;
}
/* ------------------------------------
22. CTA Section CSS
---------------------------------------*/
.rs-cta {
position: relative;
}
.rs-cta .cta-img img {
min-height: 425px;
width: 100%;
}
.rs-cta .cta-content {
position: absolute;
width: 100%;
max-width: 600px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.rs-cta.style1 {
background: url(assets/images/bg/pattern1.png);
background-size: 100%;
background-repeat: no-repeat;
background-position: bottom;
}
.rs-cta.style1 .partition-bg-wrap {
position: relative;
}
.rs-cta.style1 .partition-bg-wrap:after,
.rs-cta.style1 .partition-bg-wrap:before {
position: absolute;
content: '';
width: 50%;
height: 100%;
bottom: 0;
z-index: -1;
}
.rs-cta.style1 .partition-bg-wrap:after {
background: #21a7d0;
left: 0;
}
.rs-cta.style1 .partition-bg-wrap:before {
background: #273c66;
right: 0;
}
.rs-cta.style2 .video-wrap .popup-videos {
color: #ffffff;
display: block;
overflow: hidden;
max-width: 270px;
}
.rs-cta.style2 .video-wrap .popup-videos i {
width: 70px;
height: 70px;
line-height: 61px;
border: 5px solid #ffffff;
border-radius: 50%;
text-align: center;
font-size: 25px;
float: left;
margin-right: 20px;
}
.rs-cta.style2 .video-wrap .popup-videos i:before {
padding-left: 5px;
}
.rs-cta.style2 .video-wrap .popup-videos .title {
color: #ffffff;
}
.rs-cta.style2 .video-wrap .popup-videos:hover {
opacity: 0.7;
}
.rs-cta.style2 .partition-bg-wrap {
position: relative;
}
.rs-cta.style2 .partition-bg-wrap:after,
.rs-cta.style2 .partition-bg-wrap:before {
position: absolute;
content: '';
width: 50%;
height: 100%;
top: 0;
bottom: 0;
z-index: -1;
}
.rs-cta.style2 .partition-bg-wrap:before {
background: url(assets/images/cta/style2/left-bg.jpg);
left: 0;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.rs-cta.style2 .partition-bg-wrap:after {
background: url(assets/images/cta/style2/right-bg.jpg);
right: 0;
background-size: cover;
background-repeat: no-repeat;
background-position: left;
}
.rs-cta.style2 .partition-bg-wrap.inner-page:before {
background: url(assets/images/cta/style2/left-bg2.png);
background-size: cover;
}
.rs-cta.style2 .partition-bg-wrap.inner-page:after {
background: url(assets/images/cta/style2/right-bg2.png);
background-size: cover;
}
.rs-cta.style3 {
background: url(assets/images/bg/pattern1.png);
background-size: 100%;
background-repeat: no-repeat;
background-position: bottom;
}
.rs-cta.style3 .partition-bg-wrap {
position: relative;
}
.rs-cta.style3 .partition-bg-wrap:after,
.rs-cta.style3 .partition-bg-wrap:before {
position: absolute;
content: '';
width: 50%;
height: 100%;
bottom: 0;
z-index: -1;
}
.rs-cta.style3 .partition-bg-wrap:after {
background: #21a7d0;
left: 0;
}
.rs-cta.style3 .partition-bg-wrap:before {
background: #273c66;
right: 0;
}
.rs-cta.style7 .partition-bg-wrap {
background: none !important;
position: relative;
}
.rs-cta.style7 .partition-bg-wrap:after,
.rs-cta.style7 .partition-bg-wrap:before {
position: absolute;
content: '';
width: 50%;
height: 100%;
bottom: 0;
z-index: -1;
}
.rs-cta.style7 .partition-bg-wrap:after {
background: url(assets/images/cta/home7/1.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.rs-cta.style7 .partition-bg-wrap:before {
background: url(assets/images/cta/home7/2.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
right: 0;
}
.rs-cta.main-home .partition-bg-wrap {
background: none !important;
position: relative;
padding: 130px 0;
}
.rs-cta.main-home .partition-bg-wrap:after,
.rs-cta.main-home .partition-bg-wrap:before {
position: absolute;
content: '';
width: 50%;
height: 100%;
bottom: 0;
z-index: -1;
}
.rs-cta.main-home .partition-bg-wrap:after {
background: url(assets/images/cta/home1.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.rs-cta.main-home .partition-bg-wrap:before {
background: url(assets/images/cta/main-home.jpg);
background-size: cover;
background-repeat: no-repeat;
right: 0;
}
.rs-cta.home9-style .partition-bg-wrap {
background: none !important;
position: relative;
padding: 100px 0;
}
.rs-cta.home9-style .partition-bg-wrap:after,
.rs-cta.home9-style .partition-bg-wrap:before {
position: absolute;
content: '';
width: 50%;
height: 100%;
bottom: 0;
z-index: -1;
}
.rs-cta.home9-style .partition-bg-wrap:after {
background: url(assets/images/cta/covid-19.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.rs-cta.home9-style .partition-bg-wrap:before {
background: #1c335f;
background-size: cover;
background-repeat: no-repeat;
right: 0;
}
.rs-cta.section-wrap .content-wrap {
padding: 100px 100px 100px 105px;
background: #273c66;
}
.rs-cta.section-wrap .content-wrap .text-part {
padding-right: 400px;
}
.rs-cta.section-wrap .content-wrap .text-part .sub-title {
font-size: 18px;
line-height: 28px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
margin-bottom: 15px;
}
.rs-cta.section-wrap .content-wrap .text-part .title {
font-size: 36px;
line-height: 46px;
font-weight: 700;
color: #ffffff;
margin-bottom: 25px;
}
.rs-cta.section-wrap .content-wrap .text-part .desc {
font-size: 16px;
line-height: 26px;
font-weight: 400;
color: #ffffff;
margin-bottom: 40px;
}
.rs-cta.section-wrap .content {
max-width: 700px;
padding-left: 90px;
padding-right: 15px;
}
.rs-cta.home11-style {
background: url(assets/images/cta/home11.jpg);
background-repeat: no-repeat;
background-position: bottom;
}
.rs-cta.home-style14 {
max-width: 700px;
margin: 0 auto;
background: url(assets/images/bg/home14/cta.jpg);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
padding: 44px 30px 44px 30px;
border-radius: 5px 5px 5px 5px;
}
.rs-cta.home-style14 .content-part .sub-text {
font-family: "Nunito", Sans-serif;
font-size: 15px;
font-weight: 700;
text-transform: uppercase;
color: #21a7d0;
display: block;
margin-bottom: 10px;
}
.rs-cta.home-style14 .content-part .title {
font-family: "Nunito", Sans-serif;
font-size: 22px;
font-weight: 800;
letter-spacing: 1px;
color: #101010;
margin: 0px 0px 0px 0px;
}
.rs-cta.effects-layer .effects-bg .content-part {
padding: 56px 244px 60px 50px;
}
.rs-cta.effects-layer .effects-bg .content-part .title {
font-size: 24px;
line-height: 40px;
font-weight: 800;
color: #101010;
margin-bottom: 13px;
}
.rs-cta.effects-layer .effects-bg.apply-bg {
background-color: #F9F7F8;
background-image: url(assets/images/cta/style3/1-2.png);
background-position: bottom right;
background-repeat: no-repeat;
border-radius: 4px 4px 4px 4px;
margin-top: 20px;
}
.rs-cta.effects-layer .effects-bg.enroll-bg {
background-color: #F9F7F8;
background-image: url(assets/images/cta/style3/2.png);
background-position: bottom right;
background-repeat: no-repeat;
border-radius: 4px 4px 4px 4px;
margin-top: 20px;
}
/* ------------------------------------
23. Counter Section CSS
---------------------------------------*/
.rs-counter .counter-item .rs-count {
position: relative;
display: inline-block;
font-size: 42px;
line-height: 1;
color: #112958;
padding-right: 25px;
margin-bottom: 15px;
}
.rs-counter .counter-item .rs-count:before {
content: '';
position: absolute;
right: 0;
}
.rs-counter .counter-item .rs-count.plus:before {
content: '+';
}
.rs-counter .counter-item .rs-count.kplus:before {
content: 'k+';
right: -25px;
}
.rs-counter .counter-item .rs-count.percent:before {
content: '%';
right: -15px;
}
.rs-counter .counter-item .title {
font-size: 22px;
color: #505050;
}
.rs-counter .counter-item .counter-text {
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 100%;
text-align: center;
}
.rs-counter.style2-about .counter-item .rs-count {
color: #111111;
}
.rs-counter.style2-about .counter-item .title {
font-size: 22px;
color: #505050;
}
.rs-counter.style7 .counter-item .rs-count.purple-color {
color: #c701f1;
}
.rs-counter.style7 .counter-item .rs-count.blue-color {
color: #065ce8;
}
.rs-counter.style7 .counter-item .rs-count.pink-color {
color: #f6075b;
}
.rs-counter.style7 .counter-item .rs-count.orange-color {
color: #ffbc00;
}
.rs-counter.style7 .counter-item .title {
color: #54647b;
}
.rs-counter.style-home8 .counter-item {
padding: 40px 10px 32px 10px;
background-color: #F9F8F8;
border-radius: 4px 4px 4px 4px;
}
.rs-counter.style-home8 .counter-item .rs-count {
color: #21a7d0;
}
.rs-counter.style-home8 .counter-item .title {
color: #031a3d;
}
.rs-counter.home12-style .counter-item .rs-count {
color: #0c8b51;
font-size: 42px;
font-weight: 900;
line-height: 51px;
font-family: "Nunito", Sans-serif;
}
.rs-counter.home12-style .counter-item .prefix {
color: #0c8b51;
font-size: 42px;
font-weight: 900;
line-height: 51px;
font-family: "Nunito", Sans-serif;
}
.rs-counter.home12-style .counter-item .title {
color: #505050;
}
.rs-counter.home12-style .counter-item .title:hover {
color: #0c8b51;
}
.rs-counter.home13-style .counter-item {
transition: all 500ms ease;
}
.rs-counter.home13-style .counter-item .rs-count {
color: #21a7d0;
font-size: 42px;
font-weight: 700;
line-height: 42px;
margin-bottom: 5px;
}
.rs-counter.home13-style .counter-item .title {
font-size: 22px;
font-weight: 500;
line-height: 37px;
color: #ffffff;
}
.rs-counter.home13-style .counter-item:hover {
transform: translateY(-5px);
}
/* ------------------------------------
24. Newsletter Section CSS
---------------------------------------*/
.rs-newsletter.style1 .newsletter-wrap {
background: url(assets/images/bg/newsletter-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
border-radius: 3px;
padding: 60px 70px;
position: relative;
}
.rs-newsletter.style1 .newsletter-wrap .content-part .sec-title {
display: flex;
align-items: center;
}
.rs-newsletter.style1 .newsletter-wrap .content-part .sec-title .title-icon img {
max-width: 50px;
margin-right: 20px;
}
.rs-newsletter.style1 .newsletter-wrap .newsletter-form {
position: relative;
border-radius: 3px;
overflow: hidden;
}
.rs-newsletter.style1 .newsletter-wrap .newsletter-form input,
.rs-newsletter.style1 .newsletter-wrap .newsletter-form button {
outline: none;
border: none;
}
.rs-newsletter.style1 .newsletter-wrap .newsletter-form input {
background: #ffffff;
width: 100%;
color: #505050;
padding: 17px 30px;
padding-right: 150px;
}
.rs-newsletter.style1 .newsletter-wrap .newsletter-form button {
position: absolute;
right: 0;
top: 0;
background: #273c66;
color: #ffffff;
padding: 17px 40px;
transition: all 0.3s ease;
}
.rs-newsletter.style1 .newsletter-wrap .newsletter-form button:hover {
background: #2e4778;
}
.rs-newsletter.style2 {
background: url(assets/images/bg/newsletter-bg2.jpg);
background-size: cover;
background-repeat: no-repeat;
}
.rs-newsletter.style2 .sec-title .title {
margin-bottom: 10px;
}
.rs-newsletter.style2 .sec-title .sub-title {
margin: 0;
text-transform: capitalize;
}
.rs-newsletter.style2 .newsletter-wrap {
border-radius: 3px;
padding: 60px 70px;
padding-left: 0;
position: relative;
}
.rs-newsletter.style2 .newsletter-wrap .newsletter-form {
position: relative;
border-radius: 3px;
overflow: hidden;
max-width: 500px;
}
.rs-newsletter.style2 .newsletter-wrap .newsletter-form input,
.rs-newsletter.style2 .newsletter-wrap .newsletter-form button {
outline: none;
border: none;
}
.rs-newsletter.style2 .newsletter-wrap .newsletter-form input {
background: #ffffff;
width: 100%;
color: #505050;
padding: 17px 30px;
padding-right: 150px;
}
.rs-newsletter.style2 .newsletter-wrap .newsletter-form button {
position: absolute;
right: 0;
top: 0;
background: #21a7d0;
color: #ffffff;
padding: 17px 40px;
transition: all 0.3s ease;
}
.rs-newsletter.style2 .newsletter-wrap .newsletter-form button:hover {
background: #2db4de;
}
.rs-newsletter.style2.home11-style {
background: url(assets/images/bg/home11-news.jpg);
background-size: cover;
background-repeat: no-repeat;
}
.rs-newsletter.style2.home11-style .sec-title2 .title {
margin-bottom: 10px;
}
.rs-newsletter.style2.home11-style .sec-title2 .sub-title {
margin: 0;
text-transform: capitalize;
}
.rs-newsletter.style2.home11-style .newsletter-wrap {
padding: unset;
}
.rs-newsletter.style2.home11-style .newsletter-wrap .newsletter-form input,
.rs-newsletter.style2.home11-style .newsletter-wrap .newsletter-form button {
outline: none;
border: none;
}
.rs-newsletter.style2.home11-style .newsletter-wrap .newsletter-form button {
position: absolute;
right: 5px;
top: 5px;
background: #4e49a1;
color: #ffffff;
padding: 12px 40px 12px;
border-radius: 5px;
}
.rs-newsletter.style2.home11-style .newsletter-wrap .newsletter-form button:hover {
background: #625eaa;
}
.rs-newsletter.style6 .newsletter-wrap .content-part .title {
font-size: 42px;
line-height: 46px;
font-weight: 600;
color: #031a3d;
}
.rs-newsletter.style6 .newsletter-wrap .content-part .sub-title {
font-weight: 400;
line-height: 30px;
font-size: 20px;
color: #54647b;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form {
position: relative;
left: 50%;
transform: translateX(-50%);
max-width: 600px;
border-radius: 4px;
overflow: hidden;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form input,
.rs-newsletter.style6 .newsletter-wrap .newsletter-form button {
outline: none;
border: none;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form input {
background: #ffffff;
color: #505050;
padding: 18px 40px;
padding-right: 150px;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form button {
position: absolute;
right: 0;
top: 0;
background: #21a7d0;
color: #ffffff;
padding: 17px 40px;
transition: all 0.3s ease;
border-radius: 0 0 5px 5px;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form button:hover {
background: #2e4778;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form #email {
width: 100%;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form span {
margin: 0;
}
.rs-newsletter.modify .newsletter-wrap .newsletter-form button {
position: absolute;
right: 4px;
top: 4px;
background: #21a7d0;
color: #ffffff;
padding: 14px 38px;
transition: all 0.3s ease;
border-radius: 3px;
}
.rs-newsletter.modify.home13 .newsletter-wrap .newsletter-form button {
background: #21a7d0;
}
.rs-newsletter.modify.home13 .newsletter-wrap .newsletter-form button:hover {
background: #2e4778;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form {
position: relative;
left: 50%;
transform: translateX(-50%);
max-width: 600px;
border-radius: 4px;
overflow: hidden;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form input,
.rs-newsletter.home8-style1 .content-wrap .newsletter-form button {
outline: none;
border: none;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form input {
background: #ffffff;
color: #505050;
padding: 18px 40px;
padding-right: 150px;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form button {
position: absolute;
right: 0;
top: 0;
background: #21a7d0;
color: #ffffff;
padding: 17px 40px;
transition: all 0.3s ease;
border-radius: 0 3px 3px 0;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form button:hover {
background: #2e4778;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form #email {
width: 100%;
}
.rs-newsletter.main-home .newsletter-wrap {
background: #171f32;
padding: 60px 70px;
position: relative;
border-radius: 5px;
}
.rs-newsletter.main-home .newsletter-wrap .newsletter-form {
position: relative;
border-radius: 3px;
overflow: hidden;
}
.rs-newsletter.main-home .newsletter-wrap .newsletter-form input,
.rs-newsletter.main-home .newsletter-wrap .newsletter-form button {
outline: none;
border: none;
}
.rs-newsletter.main-home .newsletter-wrap .newsletter-form input {
background: #ffffff;
width: 100%;
color: #505050;
padding: 17px 30px;
padding-right: 150px;
}
.rs-newsletter.main-home .newsletter-wrap .newsletter-form button {
position: absolute;
right: 0;
top: 0;
background: #21a7d0;
color: #ffffff;
padding: 17px 40px;
transition: all 0.3s ease;
text-transform: uppercase;
}
.rs-newsletter.main-home .newsletter-wrap .newsletter-form button:hover {
background: #FF6030;
}
.rs-newsletter.orange-color .newsletter-wrap {
background: #171F32;
}
.rs-newsletter.orange-color .newsletter-wrap .newsletter-form button {
background: #21a7d0;
}
.rs-newsletter.orange-color .newsletter-wrap .newsletter-form button:hover {
background: #ff683b;
}
.rs-newsletter.yellow-color .newsletter-wrap {
background: #172e58;
}
.rs-newsletter.yellow-color .newsletter-wrap .newsletter-form button {
background: #f4bf00;
color: #1c335f;
}
.rs-newsletter.yellow-color .newsletter-wrap .newsletter-form button:hover {
background: #ffcb0f;
}
.rs-newsletter.green-color .newsletter-wrap {
background: #0c8b51;
}
.rs-newsletter.green-color .newsletter-wrap .newsletter-form {
position: relative;
border-radius: 3px;
overflow: hidden;
}
.rs-newsletter.green-color .newsletter-wrap .newsletter-form input,
.rs-newsletter.green-color .newsletter-wrap .newsletter-form button {
outline: none;
border: none;
}
.rs-newsletter.green-color .newsletter-wrap .newsletter-form input {
background: #127c4b;
}
.rs-newsletter.green-color .newsletter-wrap .newsletter-form button {
background: #0fcb75;
text-transform: uppercase;
}
.rs-newsletter.green-color .newsletter-wrap .newsletter-form button:hover {
background: #22cc7f;
}
.rs-newsletter.green-color .newsletter-wrap ::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #ffffff;
opacity: 1;
}
.rs-newsletter.green-color .newsletter-wrap ::-moz-placeholder {
/* Firefox 19+ */
color: #ffffff;
opacity: 1;
}
.rs-newsletter.green-color .newsletter-wrap :-ms-input-placeholder {
/* IE 10+ */
color: #ffffff;
opacity: 1;
}
.rs-newsletter.green-color .newsletter-wrap :-moz-placeholder {
/* Firefox 18- */
color: #ffffff;
opacity: 1;
}
/* ------------------------------------
25. Publication Section CSS
---------------------------------------*/
.rs-publication .product-list .image-product {
position: relative;
transition: all 0.3s;
}
.rs-publication .product-list .image-product .overley i {
position: absolute;
bottom: 0px;
right: 22px;
background: transparent;
opacity: 0;
visibility: hidden;
transition: 0.4s;
}
.rs-publication .product-list .image-product .overley i:before {
font-size: 30px;
color: #ffffff;
font-weight: 400;
background: #21a7d0;
padding: 0px 14px 4px;
height: 60px;
width: 60px;
line-height: 60px;
display: block;
border-radius: 5px;
}
.rs-publication .product-list .image-product .overley i:hover:before {
background: #111111;
color: #ffffff;
transition: all 0.3s ease;
}
.rs-publication .product-list .content-desc {
background: #ffffff;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
padding: 30px 0;
border-style: solid;
border-width: 0px 1px 1px 1px;
border-color: #16AACA2B;
}
.rs-publication .product-list .content-desc .product-title {
font-size: 22px;
font-weight: 800;
line-height: 32px;
margin-bottom: 12px;
}
.rs-publication .product-list .content-desc .product-title a {
color: #031a3d;
}
.rs-publication .product-list .content-desc .price {
font-size: 22px;
font-weight: 400;
line-height: 32px;
color: #54647b;
}
.rs-publication .product-list:hover .image-product .overley i {
opacity: 1;
visibility: visible;
bottom: 280px;
}
/* ------------------------------------
26. Facilities Section CSS
---------------------------------------*/
.rs-facilities .img-part {
position: relative;
}
.rs-facilities .img-part .media-icon {
position: absolute;
left: 80px;
top: 90px;
}
.rs-facilities .choose-part {
max-width: 700px;
border-radius: 10px;
padding: 80px 40px;
background: #e7f8fb;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
}
.rs-facilities .choose-part .our-facilities {
display: flex;
align-items: center;
}
.rs-facilities .choose-part .our-facilities .icon-part img {
max-width: 55px;
}
.rs-facilities .choose-part .our-facilities .content-part .text-part {
padding-left: 30px;
}
.rs-facilities .choose-part .our-facilities .content-part .text-part .title {
font-size: 24px;
line-height: 22px;
font-weight: 800;
color: #031a3d;
margin: 0;
padding-bottom: 10px;
}
.rs-facilities .choose-part .our-facilities .content-part .text-part .desc {
font-size: 16px;
line-height: 26px;
font-weight: 400;
color: #54647b;
margin: 0;
}
/*----------------------------------------
27. Faq Section CSS
----------------------------------------*/
.rs-faq-part .content-part .title .text-part {
font-size: 20px;
color: #111111;
line-height: 28px;
font-weight: 700;
text-transform: uppercase;
}
.rs-faq-part .content-part .accordion {
border-width: 12px;
}
.rs-faq-part .content-part .accordion .card {
margin-bottom: 15px;
border: none;
}
.rs-faq-part .content-part .accordion .card:last-child {
margin-bottom: 0;
}
.rs-faq-part .content-part .accordion .card .card-header {
padding: 0 !important;
border: none;
}
.rs-faq-part .content-part .accordion .card .card-header .card-link {
font-size: 17px;
font-weight: 600;
line-height: 28px;
color: #ffffff;
display: block;
padding: 15px 15px;
text-transform: capitalize;
background: #21a7d0;
}
.rs-faq-part .content-part .accordion .card .card-header .card-link.collapsed {
background: #f9f8ff;
color: #505050;
}
.rs-faq-part .content-part .accordion .card .card-body {
background: #ffffff;
font-size: 15px;
font-weight: 400;
line-height: 25px;
color: #505050;
padding: 15px 14px 15px !important;
border: 1px solid #f9f8ff;
}
.rs-faq-part.style1 .main-part {
background: #f9f8f8;
padding: 60px 60px 70px;
}
.rs-faq-part.style1 .main-part .title .text-part {
font-size: 36px;
color: #111111;
line-height: 46px;
font-weight: 700;
}
.rs-faq-part.style1 .main-part .faq-content .accordion {
border-width: 12px;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card {
margin-bottom: 25px;
border: none;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card:last-child {
margin-bottom: 0;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-header {
display: flex;
align-items: center;
padding: 0 !important;
border: none;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-header .card-link {
position: relative;
display: block;
width: 100%;
padding: 0 60px;
height: 65px;
line-height: 65px;
font-size: 16px;
font-weight: 600;
background: #21a7d0;
box-shadow: 0 0 49px 0 rgba(0, 0, 0, 0.08);
color: #ffffff;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-header .card-link:after {
position: absolute;
font-family: FontAwesome;
content: "\f1f7";
left: 25px;
top: 50%;
transform: translateY(-50%);
text-align: center;
font-weight: 400;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-header .card-link.collapsed {
background: #ffffff;
color: #111111;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-header .card-link.collapsed:after {
content: "\f0a2";
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-body {
background: #ffffff;
font-size: 15px;
font-weight: 400;
line-height: 25px;
color: #505050;
padding: 15px 14px 15px !important;
width: 100%;
}
.rs-faq-part.style1 .main-part.new-style {
background: #f3fcf8;
padding: 49px 50px 70px;
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card:last-child {
margin-bottom: 0;
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card .card-header .card-link {
background: #0c8b51;
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card .card-header .card-link:after {
position: absolute;
font-family: FontAwesome;
content: "\f107";
left: 25px;
top: 50%;
transform: translateY(-50%);
text-align: center;
font-weight: 900;
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card .card-header .card-link.collapsed {
background: #ffffff;
color: #111111;
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card .card-header .card-link.collapsed:after {
content: "\f105";
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card .card-body {
padding: 20px 14px 35px !important;
}
.rs-faq-part.style1 .img-part {
background: url(assets/images/faq/1.jpg);
background-size: cover;
background-position: center;
width: 100%;
height: 100%;
min-height: 615px;
}
.rs-faq-part.orange-color .content-part .accordion .card .card-header .card-link,
.rs-faq-part.orange-color .main-part .faq-content .accordion .card .card-header .card-link {
background: #21a7d0;
}
.rs-faq-part.orange-color .content-part .accordion .card .card-header .card-link.collapsed,
.rs-faq-part.orange-color .main-part .faq-content .accordion .card .card-header .card-link.collapse {
background: #f9f8ff;
}
/* ------------------------------------
28. Error Section CSS
---------------------------------------*/
.rs-page-error {
padding: 250px 0;
}
.rs-page-error .error-text {
color: #111111;
text-align: center;
}
.rs-page-error .error-text .error-code {
font-size: 100px;
color: #111111;
position: relative;
}
.rs-page-error .error-text .error-code:after {
position: absolute;
content: '';
background: #eee;
height: 1px;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 600px;
}
.rs-page-error .error-text h3.error-message {
color: #111111;
}
.rs-page-error .error-text form {
position: relative;
max-width: 400px;
margin: 0 auto;
}
.rs-page-error .error-text form input {
border: 1px solid #ddd;
color: #444444;
padding: 10px 17px;
width: 100%;
border-radius: 5px;
margin-bottom: 19px;
}
.rs-page-error .error-text form button {
background: transparent;
border: medium none;
color: #666666;
padding: 11px 16px;
position: absolute;
right: 0px;
top: 0;
z-index: 10;
font-size: 20px;
outline: none;
border-radius: 25px;
}
/*----------------------------------------
29. Shop Section CSS
----------------------------------------*/
.rs-shop-part .woocommerce-result-count {
font-size: 15px;
line-height: 26px;
color: #505050;
font-weight: 400;
margin: 0;
}
.rs-shop-part .from-control {
float: right;
font-size: 15px;
color: #505050;
font-weight: 400;
vertical-align: top;
padding: 10px;
border: 1px solid #ced4da;
border-radius: 5px;
}
.rs-shop-part .product-list .image-product {
position: relative;
}
.rs-shop-part .product-list .image-product .overley i {
position: absolute;
bottom: 150px;
right: 13px;
background: transparent;
opacity: 0;
visibility: hidden;
transition: 0.4s;
}
.rs-shop-part .product-list .image-product .overley i:before {
font-size: 30px;
color: #505050;
font-weight: 400;
background: #ffffff;
border: none ;
padding: 8px 10px 8px;
height: 45px;
width: 45px;
line-height: 45px;
}
.rs-shop-part .product-list .image-product .onsale {
font-size: 13px;
color: #ffffff;
font-weight: 700;
line-height: 40px;
background: #273c66;
width: 40px;
height: 40px;
text-align: center;
border-radius: 50%;
display: inline-block;
position: absolute;
top: 13px;
right: 13px;
}
.rs-shop-part .product-list .content-desc .loop-product-title {
margin: 0;
font-size: 18px;
line-height: 50px;
color: #505050;
font-weight: 700;
}
.rs-shop-part .product-list .content-desc .loop-product-title a {
color: #111111;
font-size: 22px;
font-weight: 600;
}
.rs-shop-part .product-list .content-desc .loop-product-title a:hover {
color: #21a7d0;
}
.rs-shop-part .product-list .content-desc .price {
font-size: 20px;
line-height: 30px;
color: #21a7d0;
font-weight: 700;
margin: 0;
}
.rs-shop-part .product-list .content-desc .price del {
opacity: 0.6;
padding-right: 10px;
}
.rs-shop-part .product-list:hover .image-product .overley i {
opacity: 1;
visibility: visible;
bottom: 13px;
}
.rs-shop-part.part2 {
/*Shop Single CSS*/
}
.rs-shop-part.part2 .img-part a {
border: 1px solid #505050;
font-size: 15px;
line-height: 26px;
font-weight: 400;
color: #505050;
background: #ffffff;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs {
margin-bottom: 25px;
border: none;
border-bottom: 1px solid #e6ebee;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs li {
margin-right: 40px;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs li a {
display: inline-block;
font-size: 18px;
line-height: 31px;
font-weight: 700;
color: #ffffff;
padding: 18px 40px 18px;
background: #273c66;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs li a.active {
color: #505050;
background: transparent;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs li a.active:hover {
color: #ffffff;
background: #273c66;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs li:last-child {
margin-right: 0;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .tab-title {
margin-bottom: 25px;
font-size: 30px;
font-weight: 600;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .dsc-p {
margin: 0;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .top-area {
margin-bottom: 5px;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .top-area p {
margin-bottom: 23px;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .top-area h4 {
font-weight: 400;
color: unset;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form p.comment-notes {
margin-bottom: 15px;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl label {
font-weight: 600;
min-width: 100px;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl input {
border: 1px solid rgba(54, 54, 54, 0.1);
padding: 10px 15px;
margin-bottom: 10px;
outline: none;
width: 50%;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl textarea {
display: block;
width: 100%;
padding: 10px 15px;
height: 75px;
border: 1px solid rgba(54, 54, 54, 0.1);
margin-bottom: 20px;
outline: none;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings {
font-weight: 600;
margin-bottom: 18px;
display: block;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings ul li {
display: inline;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings ul li i {
color: #f5d109;
font-weight: normal;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .readon {
font-weight: 500;
font-size: 15px;
padding: 13px 45px;
border: none;
outline: none;
}
.rs-shop-part.part2 .content-part .loop-product {
font-size: 25px;
line-height: 25px;
color: #111111;
font-weight: 700;
}
.rs-shop-part.part2 .content-part .price {
font-size: 20px;
line-height: 34px;
color: #21a7d0;
font-weight: 800;
display: block;
}
.rs-shop-part.part2 .content-part .desc-part {
font-size: 15px;
line-height: 26px;
color: #505050;
font-weight: 400;
}
.rs-shop-part.part2 .content-part .add-cart {
font-size: 15px;
line-height: 25px;
color: #ffffff;
font-weight: 400;
background: #273c66;
text-transform: uppercase;
border-radius: 5px;
padding: 10px 30px 10px;
border: 2px solid #21a7d0;
}
.rs-shop-part.part2 .content-part .add-cart:hover {
background: transparent;
color: #21a7d0;
}
.rs-shop-part.orange-color .product-list .content-desc .loop-product-title a:hover {
color: #21a7d0;
}
.rs-shop-part.orange-color .product-list .content-desc .price {
color: #21a7d0;
}
/*----------------------------------------
30. Single Shop Section CSS
----------------------------------------*/
.rs-single-shop .single-product-image .images-single {
z-index: 1 !important;
}
.rs-single-shop .single-product-image img {
width: 100%;
}
.rs-single-shop .single-price-info .product-title {
font-size: 25px;
font-weight: 700;
margin-bottom: 12px;
}
.rs-single-shop .single-price-info .single-price {
color: #21a7d0;
font-weight: 600;
}
.rs-single-shop .single-price-info .some-text {
margin-top: 15px;
}
.rs-single-shop .single-price-info form {
margin-bottom: 30px;
}
.rs-single-shop .single-price-info form input {
height: 40px;
width: 70px;
line-height: 40px;
text-align: center;
padding-left: 10px;
border: 1px solid rgba(54, 54, 54, 0.1);
outline: none;
}
.rs-single-shop .single-price-info p.category {
margin: 0;
padding-top: 25px;
border-top: 1px solid #e6e6e6;
font-size: 14px;
}
.rs-single-shop .single-price-info p.category span {
font-weight: 700;
padding-right: 10px;
}
.rs-single-shop .single-price-info p.category a {
color: #505050;
}
.rs-single-shop .single-price-info p.category a:hover {
color: #21a7d0;
}
.rs-single-shop .single-price-info .tag {
margin: 0;
}
.rs-single-shop .single-price-info .tag span {
font-weight: 700;
}
.rs-single-shop .tab-area {
margin-top: 50px;
}
.rs-single-shop .tab-area ul.nav-tabs {
border-bottom: 1px solid #f0f0f0;
margin-bottom: 32px;
}
.rs-single-shop .tab-area ul.nav-tabs li {
margin-right: 3px;
}
.rs-single-shop .tab-area ul.nav-tabs li a {
padding: 10px 15px;
display: inline-block;
border-radius: 5px 5px 0 0;
background: #f0f0f0;
color: #111111;
font-weight: 600;
}
.rs-single-shop .tab-area ul.nav-tabs li a:hover,
.rs-single-shop .tab-area ul.nav-tabs li a.active {
background: #21a7d0;
color: #ffffff;
}
.rs-single-shop .tab-area ul.nav-tabs li:last-child {
margin-right: 0;
}
.rs-single-shop .tab-area .tab-content .tab-pane .tab-title {
font-weight: 700;
margin-bottom: 34px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .dsc-p {
margin: 0;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .top-area {
margin-bottom: 5px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .top-area p {
margin-bottom: 23px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .top-area h4 {
font-weight: 400;
color: unset;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form {
max-width: 600px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form p.comment-notes {
margin-bottom: 15px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl label {
font-weight: 600;
display: block;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl input {
border: 1px solid rgba(54, 54, 54, 0.1);
padding: 10px 15px;
margin-bottom: 10px;
width: 100%;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl textarea {
width: 100%;
padding: 10px 15px;
height: 75px;
border: 1px solid rgba(54, 54, 54, 0.1);
margin-bottom: 20px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings {
font-weight: 600;
margin-bottom: 18px;
display: block;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings ul li {
display: inline;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings ul li i {
color: #21a7d0;
font-weight: normal;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .readon {
text-transform: uppercase;
font-weight: 600;
font-size: 15px;
padding: 0 22px;
}
.rs-single-shop.orange-color .single-price-info .single-price,
.rs-single-shop.orange-color .single-price-info p.category a:hover,
.rs-single-shop.orange-color .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings ul li i {
color: #21a7d0;
}
.rs-single-shop.orange-color .tab-area ul.nav-tabs li a:hover,
.rs-single-shop.orange-color .tab-area ul.nav-tabs li a.active {
background: #21a7d0;
}
/*----------------------------------------
31. Cart Section CSS
----------------------------------------*/
.rs-cart .cart-wrap table.cart-table {
border: 1px solid rgba(0, 0, 0, 0.1);
width: 100%;
border-collapse: collapse;
}
.rs-cart .cart-wrap table.cart-table td,
.rs-cart .cart-wrap table.cart-table th {
padding: 25px;
text-align: center;
border: 1px solid #ccc;
}
.rs-cart .cart-wrap table.cart-table th {
border: none;
font-size: 18px;
padding: 25px;
text-align: center;
vertical-align: middle;
font-weight: 700;
}
.rs-cart .cart-wrap table.cart-table td {
border-bottom: none;
border-left: none;
border-right: none;
border-top: 1px solid #e6e6e6;
}
.rs-cart .cart-wrap table.cart-table .product-remove a {
margin: 0 auto;
color: #111111;
display: block;
border-radius: 100%;
border: 1px solid #ddd;
font-size: 16px;
font-weight: 400;
height: 20px;
width: 20px;
line-height: 17px;
text-align: center;
}
.rs-cart .cart-wrap table.cart-table .product-remove a:hover {
background: #ff0000;
color: #ffffff;
}
.rs-cart .cart-wrap table.cart-table .product-thumbnail {
min-width: 32px;
}
.rs-cart .cart-wrap table.cart-table .product-thumbnail a img {
width: 80px;
height: auto;
}
.rs-cart .cart-wrap table.cart-table .product-name a {
color: #505050;
font-weight: 700;
}
.rs-cart .cart-wrap table.cart-table .product-name a:hover {
color: #21a7d0;
}
.rs-cart .cart-wrap table.cart-table .product-price {
font-weight: 700;
}
.rs-cart .cart-wrap table.cart-table .product-quantity input {
border: 1px solid #e6e6e6;
border-radius: 4px;
padding: 0 0 0 10px;
max-width: 65px;
margin: 0 auto;
outline: none;
}
.rs-cart .cart-wrap table.cart-table .action .coupon {
float: left;
}
.rs-cart .cart-wrap table.cart-table .action .coupon input {
box-sizing: border-box;
border: 1px solid #d3ced2;
padding: 6px 6px 5px;
margin: 0 4px 0 0;
outline: none;
width: 320px;
border-radius: 4px;
height: 45px;
margin-right: 20px;
text-align: left;
padding-left: 22px;
}
.rs-cart .cart-collaterals {
width: 100%;
overflow: hidden;
}
.rs-cart .cart-collaterals .cart-totals {
float: right;
width: 48%;
}
.rs-cart .cart-collaterals .cart-totals .title {
font-weight: 700;
color: #505050;
text-transform: capitalize;
}
.rs-cart .cart-collaterals .cart-totals table.cart-total-table {
text-align: left;
width: 100%;
border-collapse: collapse;
border-radius: 5px;
}
.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr {
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr th {
font-size: 18px;
font-weight: 700;
}
.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr td,
.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr th {
padding: 30px 10px;
}
.rs-cart.orange-color .cart-wrap table.cart-table .product-name a:hover {
color: #21a7d0;
}
/*-----------------------------------------------
32. Header Cart Section CSS
-----------------------------------------------*/
.woocommerce-mini-cart {
position: absolute;
right: 0;
top: 200%;
transition: all 0.3s ease;
width: 270px;
opacity: 0;
padding-top: 120px;
visibility: hidden;
overflow: hidden;
}
.woocommerce-mini-cart .cart-bottom-part {
padding: 30px 20px;
background: #21a7d0;
}
.woocommerce-mini-cart.left-view {
right: unset;
left: 0;
}
.woocommerce-mini-cart li {
border-bottom: 1px solid rgba(170, 170, 170, 0.25);
padding: 0 0 20px 0 !important;
margin: 0 0 20px 0 !important;
margin-right: 0 !important;
border: none !important;
display: flex !important;
justify-content: center;
align-items: center;
}
.woocommerce-mini-cart li:last-child {
margin: 0 !important;
}
.woocommerce-mini-cart .product-info {
padding: 0 26px;
}
.woocommerce-mini-cart .product-info a {
color: #ffffff !important;
font-weight: 700;
}
.woocommerce-mini-cart .product-info a:hover {
color: #273c66 !important;
}
.woocommerce-mini-cart .total-price {
padding: 0 0 20px;
}
.woocommerce-mini-cart .quantity,
.woocommerce-mini-cart .total-price {
color: #f3f8f9;
}
.woocommerce-mini-cart .icon-cart i {
color: #ffffff;
width: 18px;
height: 18px;
line-height: 16px;
border: 1px solid #ffffff;
border-radius: 30px;
font-weight: 500;
font-size: 12px;
text-align: center;
transition: all 0.3s ease;
}
.woocommerce-mini-cart .icon-cart i:hover {
color: #273c66;
}
.woocommerce-mini-cart .icon-cart,
.woocommerce-mini-cart .product-image {
margin-top: 2px;
}
.woocommerce-mini-cart .product-image {
display: block;
float: right;
text-align: right;
width: 56px;
}
.woocommerce-mini-cart .crt-btn {
padding: 5px 10px;
background: #273c66;
color: #ffffff;
display: inline-block;
border-radius: 3px;
}
.woocommerce-mini-cart .crt-btn:hover {
background: #2e4778;
color: #ffffff;
}
.woocommerce-mini-cart .crt-btn.btn1 {
margin-right: 10px;
}
.mini-cart-active:hover .woocommerce-mini-cart {
visibility: visible;
opacity: 1;
top: 0;
}
/*----------------------------------------
33. Checkout Section CSS
----------------------------------------*/
.rs-checkout .checkout-title {
margin-bottom: 30px;
}
.rs-checkout .checkout-title h3 {
font-size: 26px;
margin: 0;
}
.rs-checkout .coupon-toggle .accordion .card {
border: unset;
border-top: 3px solid #21a7d0;
border-radius: 0;
}
.rs-checkout .coupon-toggle .accordion .card .card-header {
border: none;
margin: 0;
border-radius: unset;
}
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title {
margin: 0;
}
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title span i {
margin-right: 10px;
}
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title button {
background: unset;
border: none;
color: #273c66;
transition: all 0.3s ease;
outline: none;
cursor: pointer;
}
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title button:hover {
color: #21a7d0;
}
.rs-checkout .coupon-toggle .accordion .card .card-body {
border: 1px solid #d3ced2;
padding: 20px 20px 50px 20px;
margin-top: 2em;
text-align: left;
}
.rs-checkout .coupon-toggle .accordion .card .card-body .coupon-code-input {
width: 47%;
float: left;
margin-right: 50px;
}
.rs-checkout .coupon-toggle .accordion .card .card-body .coupon-code-input input {
width: 100%;
height: 45px;
outline: none;
padding: 10px 18px;
color: #505050;
border: 1px solid rgba(54, 54, 54, 0.1);
}
.rs-checkout .full-grid {
margin-top: 25px;
}
.rs-checkout .full-grid .form-content-box {
margin-bottom: 50px;
}
.rs-checkout .full-grid .form-content-box .form-group label {
line-height: 2;
display: block;
margin-bottom: 5px;
font-weight: 600;
}
.rs-checkout .full-grid .form-content-box .form-group select {
color: #666666;
opacity: .5;
padding-left: 8px;
padding-right: 20px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
border: 1px solid #ccc;
border-radius: 0;
height: 45px;
line-height: 45px;
cursor: pointer;
width: 100%;
outline: none;
}
.rs-checkout .full-grid .form-content-box .form-group textarea {
height: 4em;
line-height: 1.5;
display: block;
box-shadow: none;
width: 100%;
border: 1px solid rgba(54, 54, 54, 0.1);
padding: 10px 18px;
margin: 0;
outline: none;
}
.rs-checkout .full-grid .form-content-box .form-group .form-control-mod {
border: 1px solid rgba(54, 54, 54, 0.1);
height: 45px;
padding: 10px 18px;
width: 100%;
margin: 0;
outline: none;
line-height: normal;
border-radius: unset;
}
.rs-checkout .full-grid .form-content-box .form-group .form-control-mod.margin-bottom {
margin-bottom: 10px !important;
}
.rs-checkout .full-grid .ordered-product table {
width: 100%;
}
.rs-checkout .full-grid .ordered-product table tr th {
border: 1px solid #ccc;
padding: 9px 12px;
}
.rs-checkout .full-grid .ordered-product table tr td {
border: 1px solid #ccc;
padding: 6px 12px;
}
.rs-checkout .full-grid .payment-method .top-area {
border-bottom: 1px solid #d3ced2;
}
.rs-checkout .full-grid .payment-method .top-area .payment-co {
margin-bottom: 20px;
}
.rs-checkout .full-grid .payment-method .top-area .payment-co span {
font-weight: 600;
margin-right: 10px;
}
.rs-checkout .full-grid .payment-method .top-area .p-msg {
position: relative;
box-sizing: border-box;
width: 100%;
padding: 1em;
margin: 1em 0 2em;
font-size: .92em;
border-radius: 2px;
line-height: 1.5;
background-color: #f9f9f9;
}
.rs-checkout .full-grid .payment-method .top-area .p-msg:before {
content: '';
display: block;
border: 1em solid #f9f9f9;
border-right-color: transparent;
border-left-color: transparent;
border-top-color: transparent;
position: absolute;
top: -0.75em;
left: 0;
margin: -1em 0 0 2em;
}
.rs-checkout.orange-color .coupon-toggle .accordion .card {
border-color: #21a7d0;
}
.rs-checkout.orange-color .coupon-toggle .accordion .card .card-header .card-title button:hover {
color: #21a7d0;
}
/*----------------------------------------
34. Login Section CSS
----------------------------------------*/
.rs-login .noticed {
background: #f9f8f8;
max-width: 800px;
padding: 70px;
margin: 0 auto;
}
.rs-login .noticed .main-part {
max-width: 400px;
margin: 0 auto;
text-align: center;
border-radius: 5px;
}
.rs-login .noticed .main-part .method-account .login {
font-size: 40px;
line-height: 50px;
font-weight: 700;
color: #111111;
}
.rs-login .noticed .main-part .method-account label {
font-size: 15px;
line-height: 30px;
font-weight: 600;
color: #505050;
}
.rs-login .noticed .main-part .method-account input {
margin-bottom: 30px;
font-size: 15px;
font-weight: 400;
color: #505050;
width: 100%;
display: block;
border: none;
height: 45px;
padding: 10px 18px;
border-radius: 5px;
box-shadow: 0 0 30px #eee;
}
.rs-login .noticed .main-part .method-account span {
font-size: 15px;
line-height: 30px;
font-weight: 600;
color: #505050;
padding-left: 10px;
}
.rs-login .noticed .main-part .method-account .last-password p {
color: #505050;
margin: 0;
}
.rs-login .noticed .main-part .method-account .last-password p a {
font-size: 15px;
line-height: 26px;
font-weight: 400;
color: #21a7d0;
}
.rs-login .noticed .main-part .method-account .last-password p a:hover {
color: #505050;
}
/* -----------------------------------
35. Register Section CSS
-------------------------------------*/
.register-section {
position: relative;
}
.register-section .register-box {
position: relative;
max-width: 970px;
margin: 0 auto;
padding: 45px 40px 35px;
background: #f9f8f8;
}
.register-section .register-box .styled-form {
max-width: 600px;
margin: 0 auto;
}
.register-section .register-box .styled-form .form-group .title-box {
position: relative;
text-align: center;
margin-bottom: 32px;
}
.register-section .register-box .styled-form .form-group .title-box h2 {
position: relative;
color: #03382e;
font-weight: 700;
line-height: 1.3em;
}
.register-section .register-box .styled-form .form-group .title-box .text {
position: relative;
color: #03382e;
font-size: 16px;
font-weight: 400;
line-height: 1.8em;
margin-top: 12px;
}
/* Styled Form */
.styled-form {
position: relative;
}
.styled-form .form-group {
position: relative;
/* CheckBox */
/* RadioBox */
}
.styled-form .form-group .eye-icon {
position: absolute;
right: 20px;
top: 52px;
color: #222222;
font-size: 18px;
z-index: 1;
opacity: 0.5;
}
.styled-form .form-group label {
position: relative;
color: white;
font-size: 16px;
font-weight: 400;
margin-bottom: 15px;
background: #333131;
padding: 20px;
width: 100%;
}
.styled-form .form-group input {
position: relative;
height: 50px;
padding: 6px 30px;
width: 100%;
color: #222222;
font-size: 16px;
border-radius: 0px;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
border: none;
box-shadow: 0 0 30px #eee;
}
.styled-form .form-group input:focus {
border-color: #ff6262;
}
.styled-form .form-group textarea {
position: relative;
height: 150px;
width: 100%;
resize: none;
padding: 15px 15px;
border-radius: 50px;
border: 1px solid #f2f2f2;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.styled-form .form-group .users {
position: relative;
color: #626262;
font-size: 16px;
text-align: center;
}
.styled-form .form-group .users a {
position: relative;
color: #21a7d0;
font-weight: 600;
text-decoration: underline;
}
.styled-form .form-group .users a:hover {
color: #208cad;
}
.styled-form .form-group .check-box {
position: relative;
margin-bottom: 3px;
margin-top: 7px;
}
.styled-form .form-group .check-box label {
position: relative;
display: block;
width: 100%;
line-height: 22px;
padding: 4px 10px 0px;
padding-left: 25px;
background: #ffffff;
font-size: 16px;
font-weight: 400;
color: #626262;
cursor: pointer;
margin-bottom: 0;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
font-family: 'Poppins', sans-serif;
}
.styled-form .form-group .check-box label:before {
position: absolute;
left: 0;
top: 6px;
height: 15px;
width: 15px;
background: #ffffff;
content: "";
border-radius: 3px;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
border: 1px solid #21a7d0;
}
.styled-form .form-group .check-box label:after {
position: absolute;
left: 0px;
top: 0;
height: 15px;
line-height: 15px;
max-width: 0;
font-size: 14px;
color: #ffffff;
font-weight: 800;
overflow: hidden;
background: transparent;
text-align: center;
font-family: 'FontAwesome';
-webkit-transition: max-width 500ms ease;
-moz-transition: max-width 500ms ease;
-ms-transition: max-width 500ms ease;
-o-transition: max-width 500ms ease;
transition: max-width 500ms ease;
}
.styled-form .form-group .check-box input[type="checkbox"]:checked + label {
border-color: #25a9e0;
}
.styled-form .form-group .radio-box {
position: relative;
margin-bottom: 3px;
margin-top: 7px;
}
.styled-form .form-group .radio-box label {
position: relative;
display: block;
height: 30px;
width: 100%;
line-height: 9px;
padding: 4px 10px 0px;
padding-left: 25px;
background: #ffffff;
font-size: 16px;
font-weight: 400;
color: #626262;
cursor: pointer;
margin-bottom: 0;
font-family: 'Poppins', sans-serif;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.styled-form .form-group .radio-box label:before {
position: absolute;
left: 0;
top: 0;
height: 15px;
width: 15px;
background: #ffffff;
content: "";
border-radius: 3px;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
border: 1px solid #21a7d0;
}
.styled-form .form-group .radio-box label:after {
position: absolute;
left: 0px;
top: 0;
height: 15px;
line-height: 15px;
max-width: 0;
font-size: 14px;
color: #ffffff;
font-weight: 800;
overflow: hidden;
background: transparent;
text-align: center;
font-family: 'FontAwesome';
-webkit-transition: max-width 500ms ease;
-moz-transition: max-width 500ms ease;
-ms-transition: max-width 500ms ease;
-o-transition: max-width 500ms ease;
transition: max-width 500ms ease;
}
.styled-form .forgot {
position: relative;
font-weight: 500;
color: #626262;
font-size: 16px;
margin-top: 10px;
display: inline-block;
text-decoration: underline;
}
.styled-form .form-group .form-group .check-box label {
padding-left: 30px;
padding-top: 1px;
cursor: pointer;
}
.styled-form .form-group .check-box input[type="checkbox"] {
display: none;
}
.styled-form .form-group .check-box input[type="checkbox"]:checked + label:before {
border: 5px solid #21a7d0;
background: #ffffff;
}
.styled-form .form-group .check-box input[type="checkbox"]:checked + label:after {
max-width: 20px;
opacity: 1;
}
.styled-form .form-group .radio-box input[type="radio"]:checked + label {
border-color: #25a9e0;
}
.styled-form .form-group .form-group .radio-box label {
padding-left: 30px;
padding-top: 1px;
cursor: pointer;
}
.styled-form .form-group .radio-box input[type="radio"] {
display: none;
}
.styled-form .form-group .radio-box input[type="radio"]:checked + label:before {
border: 5px solid #21a7d0;
background: #ffffff;
}
.styled-form .form-group .radio-box input[type="radio"]:checked + label:after {
max-width: 20px;
opacity: 1;
}
.rs-free-contact {
background: #0c8b51;
padding: 50px 50px 50px 50px;
}
.rs-free-contact .from-control {
width: 100%;
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #0C8B51;
background-color: #127C4B;
border-radius: 3px;
padding: 10px 18px;
}
.rs-free-contact textarea {
height: 140px;
}
.rs-free-contact ::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #ffffff;
opacity: 1;
}
.rs-free-contact ::-moz-placeholder {
/* Firefox 19+ */
color: #ffffff;
opacity: 1;
}
.rs-free-contact :-ms-input-placeholder {
/* IE 10+ */
color: #ffffff;
opacity: 1;
}
.rs-free-contact :-moz-placeholder {
/* Firefox 18- */
color: #ffffff;
opacity: 1;
}
/*-------------------------------------
36. Contact Section CSS
--------------------------------------*/
.contact-page-section .inner-part .title {
font-size: 36px;
color: #101010;
line-height: 46px;
font-weight: 700;
margin-bottom: 14px;
}
.contact-page-section .inner-part .title2 {
font-size: 28px;
font-weight: 700;
line-height: 1.25em;
color: #111111;
}
.contact-page-section .inner-part p {
font-size: 19px;
color: #363636;
line-height: 32px;
font-weight: 400;
}
.contact-page-section .rs-quick-contact {
background-color: #F9F8F8;
padding: 70px 150px 70px;
}
.contact-page-section .rs-quick-contact .from-control {
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #F1F1F1;
box-shadow: 0 0 30px #eee;
color: #363636;
width: 100%;
max-width: 100%;
opacity: 1;
border-radius: 3px;
border: 1px solid #ffffff;
color: #767676;
background: #ffffff;
padding: 10px 18px;
}
.contact-page-section .rs-quick-contact textarea {
height: 140px;
}
.contact-page-section .rs-quick-contact .form-group .btn-send {
padding: 16px 0px 16px 0px;
text-transform: uppercase;
box-shadow: 0px 28px 50px 0px rgba(0, 0, 0, 0.05);
outline: none;
border: none;
padding: 12px 40px;
border-radius: 3px;
display: inline-block;
text-transform: capitalize;
font-size: 16px;
font-weight: 500;
color: #ffffff;
background: #21a7d0;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
width: 100%;
}
.contact-page-section .rs-quick-contact .form-group .btn-send:hover {
opacity: 0.90;
}
.contact-page-section .rs-quick-contact.new-style {
padding: 70px 60px 70px;
}
.contact-page-section .rs-contact-box .address-item {
padding: 50px 40px 50px 40px;
background: #ffffff;
box-shadow: 0 0 30px #fff;
text-align: center;
margin: 0px 20px 0px 0px;
border-radius: 5px 5px 5px 5px;
}
.contact-page-section .rs-contact-box .address-item .icon-part {
padding-bottom: 20px;
}
.contact-page-section .rs-contact-box .address-item .icon-part img {
width: 65px;
}
.contact-page-section .rs-contact-box .address-item .address-text .label {
display: block;
color: #101010;
font-size: 22px;
font-weight: 600;
padding-bottom: 10px;
}
.contact-page-section .rs-contact-box .address-item .address-text .des {
font-size: 17px;
color: #031a3d;
}
.contact-page-section .rs-contact-box .address-item .address-text .des a {
color: #031a3d;
}
.contact-page-section .rs-contact-box .address-item .address-text .des a:hover {
color: #21a7d0;
}
.contact-page-section .rs-contact-wrap {
padding: 40px 35px 30px 35px;
background-color: #F9F8F8;
border-radius: 5px 5px 5px 5px;
}
.contact-page-section .rs-contact-wrap .address-item {
display: flex;
position: relative;
margin-bottom: 40px;
}
.contact-page-section .rs-contact-wrap .address-item .address-icon {
margin-right: 20px;
}
.contact-page-section .rs-contact-wrap .address-item .address-icon i {
font-size: 35px;
color: #21a7d0;
}
.contact-page-section .rs-contact-wrap .address-item .address-text .label {
display: block;
color: #505050;
font-size: 15px;
font-weight: 700;
padding-bottom: 10px;
line-height: 1.2;
}
.contact-page-section .rs-contact-wrap .address-item .address-text .des {
font-size: 18px;
color: #111111;
font-weight: 500;
}
.contact-page-section .rs-contact-wrap .address-item .address-text .des a {
color: #111111;
font-weight: 500;
}
.contact-page-section .rs-contact-wrap .address-item .address-text .des a:hover {
color: #21a7d0;
}
.contact-page-section .contact-comment-box .from-control {
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #F1F1F1;
box-shadow: 0 0 30px #eee;
color: #363636;
width: 100%;
max-width: 100%;
opacity: 1;
border-radius: 3px;
border: 1px solid #ffffff;
color: #767676;
background: #ffffff;
padding: 10px 18px;
}
.contact-page-section .contact-comment-box textarea {
height: 140px;
}
.contact-page-section .contact-comment-box .form-group .btn-send {
padding: 16px 0px 16px 0px;
box-shadow: 0px 28px 50px 0px rgba(0, 0, 0, 0.05);
outline: none;
border: none;
padding: 12px 40px;
border-radius: 3px;
display: inline-block;
text-transform: capitalize;
font-size: 16px;
font-weight: 500;
color: #ffffff;
background: #21a7d0;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
width: 100%;
text-transform: uppercase;
}
.contact-page-section .contact-comment-box .form-group .btn-send:hover {
opacity: 0.90;
}
.contact-page-section .contact-comment-box.new-style {
padding: 60px 70px 60px !important;
}
.contact-page-section .contact-map {
overflow: hidden;
}
.contact-page-section .contact-map iframe {
float: left;
width: 100%;
height: 550px;
border: none;
}
.contact-page-section .contact-map2 {
overflow: hidden;
}
.contact-page-section .contact-map2 iframe {
float: left;
width: 100%;
height: 720px;
border: none;
}
.contact-page-section .contact-map3 {
overflow: hidden;
}
.contact-page-section .contact-map3 iframe {
float: left;
width: 100%;
height: 600px;
border: none;
}
.contact-page-section .contact-address-section {
text-align: center;
margin: 0 0 50px;
}
.contact-page-section .contact-address-section .contact-info {
background: #f9f9f9;
display: flex;
text-align: left;
align-items: center;
padding: 0 30px;
min-height: 175px;
border-radius: 5px;
position: relative;
transition: all 0.3s ease;
}
.contact-page-section .contact-address-section .contact-info .icon-part {
margin-right: 30px;
}
.contact-page-section .contact-address-section .contact-info .icon-part i {
color: #21a7d0;
font-size: 30px;
margin: 0;
padding: 0;
width: 70px;
height: 70px;
line-height: 58px;
border-radius: 50%;
text-align: center;
background: transparent;
border: 6px solid #f9ede9;
}
.contact-page-section .contact-address-section .contact-info .content-part .info-subtitle {
font-size: 18px;
font-weight: 700;
color: #505050;
margin: 0 0 5px;
}
.contact-page-section .contact-address-section .contact-info .content-part .info-title {
font-size: 24px;
font-weight: 700;
color: #111111;
margin: 0;
}
.contact-page-section .contact-address-section .contact-info .content-part a {
color: #111111;
display: block;
}
.contact-page-section .contact-address-section .contact-info .content-part a:hover {
color: #21a7d0;
}
.contact-page-section .contact-address-section .contact-info:hover {
transform: translateY(-5px);
}
.contact-page-section .contact-address-section.style2 {
margin: 0;
}
.contact-page-section .contact-comment-section {
padding: 50px;
}
.contact-page-section .contact-comment-section h3 {
font-size: 36px;
margin: 0;
padding-bottom: 15px;
font-weight: 700;
}
.contact-page-section .contact-comment-section form .form-group input {
height: 43px;
padding: 0 15px;
}
.contact-page-section .contact-comment-section form .form-group input,
.contact-page-section .contact-comment-section form .form-group textarea {
border: none;
background: #ffffff;
border-radius: 0;
box-shadow: none;
}
.contact-page-section .contact-comment-section form .form-group label {
color: #505050;
font-weight: 400;
}
.contact-page-section .contact-comment-section form .form-group input.btn-send {
text-transform: uppercase;
color: #ffffff;
background-color: #21a7d0;
margin-top: 15px;
border: none;
height: 50px;
line-height: 50px;
text-align: center;
font-weight: 600;
padding: 0 50px;
cursor: pointer;
transition: 0.4s;
-webkit-transition: 0.4s;
-ms-transition: 0.4s;
}
.contact-page-section .contact-comment-section form .form-group input.btn-send:hover {
background: #208cad;
}
.contact-page-section .contact-bg1 {
background: #f9f9f9;
}
/*------------------------------------
37. Footer Section CSS
------------------------------------*/
.rs-footer {
background-color: #273c66;
background-image: url(assets/images/bg/footer-bg.png);
background-size: cover;
}
.rs-footer .footer-top {
padding: 50px 0;
}
.rs-footer .footer-top .widget-title {
color: #ffffff;
font-size: 18px;
line-height: 26px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 35px;
}
.rs-footer .footer-top .site-map li {
padding-left: 15px;
position: relative;
margin-bottom: 11px;
}
.rs-footer .footer-top .site-map li a {
color: #e8e8e8;
}
.rs-footer .footer-top .site-map li a:hover {
color: #21a7d0;
}
.rs-footer .footer-top .site-map li:before {
position: absolute;
content: '';
left: 0;
top: 50%;
transform: translateY(-50%);
width: 6px;
height: 6px;
background: #21a7d0;
}
.rs-footer .footer-top .site-map li:last-child {
margin-bottom: 0;
}
.rs-footer .footer-top .address-widget li {
position: relative;
margin-bottom: 16px;
}
.rs-footer .footer-top .address-widget li i {
position: absolute;
}
.rs-footer .footer-top .address-widget li i:before {
color: #ffffff;
}
.rs-footer .footer-top .address-widget li .desc {
padding-left: 35px;
color: #ffffff;
}
.rs-footer .footer-top .address-widget li .desc a {
color: #ffffff;
}
.rs-footer .footer-top .address-widget li .desc a:hover {
color: #21a7d0;
}
.rs-footer .footer-top .address-widget li:last-child {
margin-bottom: 0;
}
.rs-footer .footer-top.no-gap {
padding-top: 93px;
}
.rs-footer .footer-bottom {
padding: 40px 0;
background: transparent;
position: relative;
}
.rs-footer .footer-bottom .copyright p {
margin-bottom: 0;
color: #f3f8f9;
}
.rs-footer .footer-bottom .copyright a {
color: #21a7d0;
}
.rs-footer .footer-bottom .footer-logo a {
display: inline-block;
}
.rs-footer .footer-bottom .footer-logo a img {
max-width: 190px;
}
.rs-footer .footer-bottom .footer-social li {
display: inline;
margin-right: 5px;
}
.rs-footer .footer-bottom .footer-social li a {
display: inline-block;
width: 30px;
height: 30px;
line-height: 30px;
border-radius: 100%;
background: #21a7d0;
color: #ffffff;
text-align: center;
}
.rs-footer .footer-bottom .footer-social li a:hover {
color: #ffffff;
background: #273c66;
}
.rs-footer .footer-bottom .footer-social li:last-child {
margin: 0;
}
.rs-footer .footer-bottom:before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
height: 1px;
width: 100%;
max-width: 1240px;
background: rgba(255, 255, 255, 0.1);
}
.rs-footer.style6 .footer-top {
padding: 100px 0 93px;
}
.rs-footer.style6 .footer-top .site-map li a {
color: #e8e8e8;
}
.rs-footer.style6 .footer-top .site-map li a:hover {
color: #21a7d0;
}
.rs-footer.style6 .footer-top .site-map li:before {
background: #f4bf00 !important;
}
.rs-footer.style6 .footer-top .site-map li:last-child {
margin-bottom: 0;
}
.rs-footer.style6 .footer-top .address-widget li i:before {
color: #f4bf00 !important;
}
.rs-footer.style6 .footer-bottom {
background: none;
}
.rs-footer.style6 .footer-bottom .main-part {
padding-top: 30px;
padding-bottom: 18px;
}
.rs-footer.style6 .footer-bottom .main-part p a {
color: #f4bf00 !important;
}
.rs-footer.style6 .footer-bottom .main-part p a:hover {
color: #21a7d0 !important;
}
.rs-footer.style6 .footer-bottom .main-part .footer-social li a {
color: #111111 !important;
background: #f4bf00 !important;
}
.rs-footer.style7 .footer-top {
padding: 100px 0 93px;
}
.rs-footer.style7 .footer-top .address-widget li i:before {
color: #21a7d0 !important;
}
.rs-footer.style8 .footer-top {
padding: 100px 0 93px;
}
.rs-footer.style8 .footer-top .site-map li a {
color: #e8e8e8;
}
.rs-footer.style8 .footer-top .site-map li a:hover {
color: #21a7d0;
}
.rs-footer.style8 .footer-top .site-map li:before {
background: #21a7d0 !important;
}
.rs-footer.style8 .footer-top .site-map li:last-child {
margin-bottom: 0;
}
.rs-footer.style8 .footer-top .address-widget li i:before {
color: #21a7d0 !important;
}
.rs-footer.style8 .footer-top .address-widget li .desc a:hover {
color: #21a7d0 !important;
}
.rs-footer.style8 .footer-bottom .copyright p a {
color: #21a7d0 !important;
}
.rs-footer.style8 .footer-bottom .copyright p a:hover {
color: #208cad !important;
}
.rs-footer.style8 .footer-bottom .footer-social li a {
background: #21a7d0 !important;
}
.rs-footer.orange-footer {
background-color: #151515;
background-image: url(assets/images/bg/footer-bg2.jpg);
}
.rs-footer.orange-footer .footer-top .widget-title {
color: #ffffff;
}
.rs-footer.orange-footer .footer-top .site-map li a:hover {
color: #21a7d0;
}
.rs-footer.orange-footer .footer-top .site-map li:before {
background: #21a7d0;
}
.rs-footer.orange-footer .footer-top .address-widget li i:before {
color: #ffffff;
}
.rs-footer.orange-footer .footer-top .address-widget li .desc {
color: #ffffff;
}
.rs-footer.orange-footer .footer-top .address-widget li .desc a {
color: #ffffff;
}
.rs-footer.orange-footer .footer-top .address-widget li .desc a:hover {
color: #21a7d0;
}
.rs-footer.orange-footer .footer-bottom .copyright a {
color: #21a7d0;
}
.rs-footer.orange-footer .footer-bottom .footer-social li a {
background: #21a7d0;
}
.rs-footer.orange-footer .footer-bottom .footer-social li a:hover {
background: #208cad;
}
.rs-footer.home9-style .footer-top {
padding: 218px 0 93px;
}
.rs-footer.home9-style .footer-top .widget-title {
color: #ffffff;
font-size: 18px;
line-height: 26px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 35px;
position: relative;
}
.rs-footer.home9-style .footer-top .widget-title:before {
content: '';
position: absolute;
left: 0;
bottom: -5px;
height: 2px;
width: 40px;
background: #f4bf00;
}
.rs-footer.home9-style .footer-top .site-map li {
padding-left: 15px;
position: relative;
margin-bottom: 11px;
}
.rs-footer.home9-style .footer-top .site-map li a {
color: #e8e8e8;
}
.rs-footer.home9-style .footer-top .site-map li a:hover {
color: #f4bf00;
}
.rs-footer.home9-style .footer-top .site-map li:before {
position: absolute;
content: '';
left: 0;
top: 50%;
transform: translateY(-50%);
width: 6px;
height: 6px;
background: #f4bf00;
}
.rs-footer.home9-style .footer-top .site-map li:last-child {
margin-bottom: 0;
}
.rs-footer.home9-style .footer-top .address-widget li {
position: relative;
margin-bottom: 16px;
}
.rs-footer.home9-style .footer-top .address-widget li i {
position: absolute;
}
.rs-footer.home9-style .footer-top .address-widget li i:before {
color: #f4bf00;
}
.rs-footer.home9-style .footer-top .address-widget li .desc {
padding-left: 35px;
color: #ffffff;
}
.rs-footer.home9-style .footer-top .address-widget li .desc a {
color: #ffffff;
}
.rs-footer.home9-style .footer-top .address-widget li .desc a:hover {
color: #f4bf00;
}
.rs-footer.home9-style .footer-top .address-widget li:last-child {
margin-bottom: 0;
}
.rs-footer.home9-style .footer-top.no-gap {
padding-top: 93px;
}
.rs-footer.home9-style .footer-top .recent-post {
display: flex;
}
.rs-footer.home9-style .footer-top .recent-post .post-img {
width: 130px;
float: left;
padding-right: 15px;
}
.rs-footer.home9-style .footer-top .recent-post .post-img img {
border-radius: 4px;
}
.rs-footer.home9-style .footer-top .recent-post .post-item .post-desc a {
font-size: 14px;
color: #ffffff;
font-weight: 400;
line-height: 22px;
text-transform: capitalize;
}
.rs-footer.home9-style .footer-top .recent-post .post-item .post-desc a:hover {
color: #f4bf00;
}
.rs-footer.home9-style .footer-top .recent-post .post-item .post-date {
font-size: 13px;
color: #ffffff;
font-weight: 400;
}
.rs-footer.home9-style .footer-top .recent-post .post-item .post-date i {
font-size: 13px;
color: #f4bf00;
padding-right: 5px;
}
.rs-footer.home9-style .footer-bottom {
padding: 40px 0;
background: transparent;
position: relative;
}
.rs-footer.home9-style .footer-bottom .copyright p {
margin-bottom: 0;
color: #f3f8f9;
}
.rs-footer.home9-style .footer-bottom .copyright a {
color: #f4bf00;
}
.rs-footer.home9-style .footer-bottom .copyright a:hover {
color: #21a7d0;
}
.rs-footer.home9-style .footer-bottom .footer-logo a {
display: inline-block;
}
.rs-footer.home9-style .footer-bottom .footer-logo a img {
max-width: 190px;
}
.rs-footer.home9-style .footer-bottom .footer-social li {
display: inline;
margin-right: 5px;
}
.rs-footer.home9-style .footer-bottom .footer-social li a {
display: inline-block;
width: 30px;
height: 30px;
line-height: 30px;
border-radius: 100%;
background: #f4bf00;
color: #ffffff;
text-align: center;
}
.rs-footer.home9-style .footer-bottom .footer-social li a:hover {
color: #ffffff;
background: #273c66;
}
.rs-footer.home9-style .footer-bottom .footer-social li:last-child {
margin: 0;
}
.rs-footer.home9-style .footer-bottom:before {
background: rgba(255, 255, 255, 0.1);
}
.rs-footer.home9-style.main-home {
background: #151515;
}
.rs-footer.home9-style.main-home .footer-top .widget-title:before {
background: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-top .footer-logo a {
display: inline-block;
}
.rs-footer.home9-style.main-home .footer-top .footer-logo a img {
max-width: 190px;
}
.rs-footer.home9-style.main-home .footer-top .textwidget p {
color: #ffffff !important;
}
.rs-footer.home9-style.main-home .footer-top .footer_social li {
display: inline-block;
margin-right: 6px;
color: #ffffff;
}
.rs-footer.home9-style.main-home .footer-top .footer_social li a {
color: #ffffff;
width: auto;
height: auto;
line-height: 16px;
font-size: 16px;
margin-right: 10px;
}
.rs-footer.home9-style.main-home .footer-top .footer_social li a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-top .site-map li a {
color: #e8e8e8;
}
.rs-footer.home9-style.main-home .footer-top .site-map li a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-top .site-map li:before {
background: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-top .address-widget li i:before {
color: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-top .address-widget li .desc a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-top.no-gap {
padding-top: 93px;
}
.rs-footer.home9-style.main-home .footer-top .recent-post .post-img img {
border-radius: 4px;
}
.rs-footer.home9-style.main-home .footer-top .recent-post .post-item .post-desc a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-top .recent-post .post-item .post-date i {
font-size: 13px;
color: #21a7d0;
padding-right: 5px;
}
.rs-footer.home9-style.main-home .footer-bottom {
padding: 40px 0;
background: transparent;
position: relative;
}
.rs-footer.home9-style.main-home .footer-bottom .copyright p {
margin-bottom: 0;
color: #f3f8f9;
}
.rs-footer.home9-style.main-home .footer-bottom .copyright a {
color: #ffffff;
}
.rs-footer.home9-style.main-home .footer-bottom .copyright a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-bottom .copy-right-menu li {
display: inline-block;
position: relative;
padding: 0px 19px 0 25px;
}
.rs-footer.home9-style.main-home .footer-bottom .copy-right-menu li a {
color: #e8e8e8;
}
.rs-footer.home9-style.main-home .footer-bottom .copy-right-menu li a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-bottom .copy-right-menu li:before {
display: block;
content: "";
position: absolute;
font-size: 18px;
background: #21a7d0;
left: 0;
top: 50%;
width: 6px;
height: 6px;
transform: translateY(-50%);
border-radius: 50%;
}
.rs-footer.home9-style.main-home .footer-bottom .copy-right-menu li:first-child:before {
display: none;
}
.rs-footer.home9-style.main-home .footer-bottom:before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
height: 1px;
width: 100%;
max-width: 1240px;
background: rgba(255, 255, 255, 0.1);
}
.rs-footer.home9-style.main-home.home13-style {
background: url(assets/images/bg/home13/footer.jpg);
background-repeat: no-repeat;
background-size: cover;
}
.rs-footer.home9-style.main-home.home13-style .footer-top {
padding: 100px 0 93px;
}
.rs-footer.home9-style.main-home.home14-style {
background: #f9f7f8;
}
.rs-footer.home9-style.main-home.home14-style .footer-top {
padding: 100px 0 93px;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .widget-title {
color: #101010;
text-transform: capitalize;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .widget-title:before {
bottom: -8px;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .textwidget p {
color: #333333 !important;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .footer_social li a {
color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .footer_social li a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .address-widget li i:before {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .address-widget li .desc {
color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .address-widget li .desc a {
color: #505050;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .address-widget li .desc a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .site-map li a {
color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .site-map li a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .site-map li:before {
background: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .recent-post .post-item .post-desc {
color: #505050;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .recent-post .post-item .post-desc a {
color: #505050;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .recent-post .post-item .post-desc a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .recent-post .post-item .post-date {
color: #505050;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .recent-post .post-item .post-date i {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copyright p {
color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copyright a {
color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copyright a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copy-right-menu li a {
color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copy-right-menu li a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copy-right-menu li:before {
background: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copy-right-menu li:first-child:before {
display: none;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom:before {
background: #f0ecee;
}
.rs-footer.home9-style.home12-style {
background: #d0f4e4;
}
.rs-footer.home9-style.home12-style .footer-top .widget-title {
color: #101010;
}
.rs-footer.home9-style.home12-style .footer-top .widget-title:before {
background: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-top .footer-logo a {
display: inline-block;
}
.rs-footer.home9-style.home12-style .footer-top .footer-logo a img {
max-width: 190px;
}
.rs-footer.home9-style.home12-style .footer-top .footer_social li {
display: inline-block;
margin-right: 6px;
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .footer_social li a {
color: #333333;
width: auto;
height: auto;
line-height: 16px;
font-size: 16px;
margin-right: 10px;
}
.rs-footer.home9-style.home12-style .footer-top .footer_social li a:hover {
color: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-top .site-map li a {
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .site-map li a:hover {
color: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-top .site-map li:before {
background: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-top .address-widget li i:before {
color: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-top .address-widget li .desc {
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .address-widget li .desc a {
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .address-widget li .desc a:hover {
color: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-top.no-gap {
padding-top: 93px;
}
.rs-footer.home9-style.home12-style .footer-top .recent-post .post-img img {
border-radius: 4px;
}
.rs-footer.home9-style.home12-style .footer-top .recent-post .post-item .post-desc a {
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .recent-post .post-item .post-desc a:hover {
color: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-top .recent-post .post-item .post-date {
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .recent-post .post-item .post-date i {
font-size: 13px;
color: #0c8b51;
padding-right: 5px;
}
.rs-footer.home9-style.home12-style .footer-bottom {
padding: 40px 0;
background: transparent;
position: relative;
}
.rs-footer.home9-style.home12-style .footer-bottom .copyright p {
margin-bottom: 0;
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-bottom .copyright a {
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-bottom .copyright a:hover {
color: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-bottom .copy-right-menu li {
display: inline-block;
position: relative;
padding: 0px 19px 0 25px;
}
.rs-footer.home9-style.home12-style .footer-bottom .copy-right-menu li a {
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-bottom .copy-right-menu li a:hover {
color: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-bottom .copy-right-menu li:before {
display: block;
content: "";
position: absolute;
font-size: 18px;
background: #0c8b51;
left: 0;
top: 50%;
width: 6px;
height: 6px;
transform: translateY(-50%);
border-radius: 50%;
}
.rs-footer.home9-style.home12-style .footer-bottom .copy-right-menu li:first-child:before {
display: none;
}
.rs-footer.home9-style.home12-style .footer-bottom:before {
background: #8fcea4;
}
.rs-footer.home11-style {
background: #4e49a1;
}
.rs-footer.home11-style .footer-top {
padding: 100px 0 93px;
}
.rs-footer.home11-style .footer-top .site-map li a:hover {
color: #21a7d0;
}
.rs-footer.home11-style .footer-top .site-map li:before {
background: #21a7d0 !important;
}
.rs-footer.home11-style .footer-top .site-map li:last-child {
margin-bottom: 0;
}
.rs-footer.home11-style .footer-bottom {
padding: 40px 0;
background: transparent;
position: relative;
}
.rs-footer.home11-style .footer-bottom .copyright p {
color: #ffffff;
}
.rs-footer.home11-style .footer-bottom .footer-logo a {
display: inline-block;
}
.rs-footer.home11-style .footer-bottom .footer-logo a img {
max-width: 190px;
}
.rs-footer.home11-style .footer-bottom .footer-social li a {
color: #4e49a1;
background: #ffffff;
}
.rs-footer.home11-style .footer-bottom .footer-social li a:hover {
color: #21a7d0;
}
/* -----------------------
38. Scroll Up CSS
--------------------------*/
#scrollUp {
text-align: center;
bottom: 40px;
cursor: pointer;
display: none;
position: fixed;
right: 20px;
z-index: 999;
border-radius: 50px 50px 4px 4px;
}
#scrollUp i {
background: #21a7d0;
border-radius: 50%;
height: 40px;
font-size: 24px;
font-weight: 600;
width: 42px;
color: #fff;
line-height: 36px;
transition: all 0.3s ease;
margin-left: 2px;
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
}
#scrollUp i:hover {
background-color: #1a84a4;
}
#scrollUp.orange-color i {
background: #21a7d0;
}
#scrollUp.orange-color i:hover {
background-color: #208cad;
}
#scrollUp.yellow-color i {
background: #f4bf00;
}
#scrollUp.yellow-color i:hover {
background-color: #c19700;
}
#scrollUp.purple-color i {
background: #4e49a1;
}
#scrollUp.purple-color i:hover {
background-color: #3d397e;
}
#scrollUp.green-color i {
background: #0c8b51;
}
#scrollUp.green-color i:hover {
background-color: #085c36;
}
/*Pulse Border Animation*/
@keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
@-webkit-keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
/*Pulse Border Animation*/
@keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
@-webkit-keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
@keyframes circle-ripple {
0% {
box-shadow: 0 0 0 0 rgba(255, 84, 33, 0.3), 0 0 0 1em rgba(255, 84, 33, 0.3), 0 0 0 3em rgba(255, 84, 33, 0.3), 0 0 0 5em rgba(255, 84, 33, 0.3);
}
100% {
box-shadow: 0 0 0 1em rgba(255, 84, 33, 0.3), 0 0 0 3em rgba(255, 84, 33, 0.3), 0 0 0 5em rgba(255, 84, 33, 0.3), 0 0 0 8em rgba(255, 84, 33, 0);
}
}
@-webkit-keyframes circle-ripple {
0% {
box-shadow: 0 0 0 0 rgba(255, 84, 33, 0.3), 0 0 0 1em rgba(255, 84, 33, 0.3), 0 0 0 3em rgba(255, 84, 33, 0.3), 0 0 0 5em rgba(255, 84, 33, 0.3);
}
100% {
box-shadow: 0 0 0 1em rgba(255, 84, 33, 0.3), 0 0 0 3em rgba(255, 84, 33, 0.3), 0 0 0 5em rgba(255, 84, 33, 0.3), 0 0 0 8em rgba(255, 84, 33, 0);
}
}
.up-down {
animation: up-down 4s alternate infinite;
-webkit-animation: up-down 4s alternate infinite;
}
.up-down-new {
animation: up-down 8s alternate infinite;
-webkit-animation: up-down 8s alternate infinite;
}
@keyframes up-down {
0% {
transform: translateY(30px);
-webkit-transform: translateY(0);
}
50% {
transform: translateY(-50px);
-webkit-transform: translateY(-50px);
}
100% {
transform: translateY(0);
-webkit-transform: translateY(0);
}
}
@-webkit-keyframes up-down {
0% {
transform: translateY(30px);
-webkit-transform: translateY(0);
}
50% {
transform: translateY(-50px);
-webkit-transform: translateY(-50px);
}
100% {
transform: translateY(0);
-webkit-transform: translateY(0);
}
}
.left-right {
animation: left-right 5s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
-webkit-animation: left-right 5s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
}
.left-right-new {
animation: left-right 8s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
-webkit-animation: left-right 8s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
}
@keyframes left-right {
0% {
transform: translatex(0);
-webkit-transform: translatex(0);
}
50% {
transform: translateY(-50px);
-webkit-transform: translatex(-50px);
}
100% {
transform: translatex(0);
-webkit-transform: translatex(0);
}
}
@-webkit-keyframes left-right {
0% {
transform: translatex(0);
-webkit-transform: translatex(0);
}
50% {
transform: translatex(-50px);
-webkit-transform: translatex(-50px);
}
100% {
transform: translatex(0);
-webkit-transform: translatex(0);
}
}
.spine {
animation: spine 5s linear infinite;
-webkit-animation: spine 5s linear infinite;
}
@keyframes spine {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
}
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes spine {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
}
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
}
.spine-r {
animation: spine-r 5s linear infinite;
-webkit-animation: spine-r 5s linear infinite;
}
@keyframes spine-r {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
}
100% {
transform: rotate(-360deg);
-webkit-transform: rotate(-360deg);
}
}
@-webkit-keyframes spine-r {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
}
100% {
transform: rotate(-360deg);
-webkit-transform: rotate(-360deg);
}
}
.spine2 {
animation: spine 8s linear infinite;
}
@keyframes spine2 {
from {
transform: rotate(0deg);
-webkit-transform: rotate(0deg);
}
from {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes spine2 {
from {
transform: rotate(0deg);
-webkit-transform: rotate(0deg);
}
from {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
}
/* ------------------------------------
39. Preloader CSS
---------------------------------------*/
.loader {
background-color: #fff;
height: 100%;
width: 100%;
position: fixed;
margin-top: 0px;
top: 0px;
z-index: 9999999;
}
.loader .loader-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 140px;
height: 140px;
border: 5px solid #ebebec;
border-radius: 50%;
}
.loader .loader-container:before {
position: absolute;
content: "";
display: block;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 140px;
height: 140px;
border-top: 4px solid #21a7d0;
border-radius: 50%;
animation: loaderspin 1.8s infinite ease-in-out;
-webkit-animation: loaderspin 1.8s infinite ease-in-out;
}
.loader .loader-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
}
.loader .loader-icon img {
animation: loaderpulse alternate 900ms infinite;
}
.loader.orange-color .loader-container:before {
border-color: #21a7d0;
}
.loader.yellow-color .loader-container:before {
border-color: #f4bf00;
}
.loader.purple-color .loader-container:before {
border-color: #4e49a1;
}
.loader.green-color .loader-container:before {
border-color: #0c8b51;
}
@keyframes loaderspin {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg);
}
}
@-webkit-keyframes loaderspin {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg);
}
}
@keyframes loaderpulse {
0% {
transform: scale(1);
}
100% {
transform: scale(1.2);
}
} | public/front/style.css | @import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800,900');
@charset "utf-8";
/**
*
* -----------------------------------------------------------------------------
*
* Template : Educavo - Education HTML Template
* Author : rs-theme
* Author URI : http://www.rstheme.com/
*
* -----------------------------------------------------------------------------
*
**//* TABLE OF CONTENT
---------------------------------------------------------
01. General CSS
02. Global Class CSS
03. Header Section CSS
04. Sticky Menu CSS
05. Banner Section CSS
06. Breadcrumbs Section CSS
07. About Section CSS
08. Services Section CSS
09. Subject Section CSS
10. Categories Section CSS
11. Popular Courses Section CSS
12. Course Single Section CSS
13. Accordion Section CSS
14. Why Choose US Section CSS
15. Team Section CSS
16. Team Single Section CSS
17. Testimonial Section CSS
18. Blog Section CSS
19. Latest Events Section CSS
20. Partner Section CSS
21. Gallery Section CSS
22. CTA Section CSS
23. Counter Section CSS
24. Newsletter Section CSS
25. Publication Section CSS
26. Facilities Section CSS
27. Faq Section CSS
28. Error Section CSS
29. Shop Section CSS
30. Single Shop Section CSS
31. Cart Section CSS
32. Header Cart Section CSS
33. Checkout Section CSS
34. Login Section CSS
35. Register Section CSS
36. Contact Section CSS
37. Footer Section CSS
38. Scroll Up CSS
39. Preloader CSS
--------------------------------------------------------*/
/* -----------------------------------
01. General CSS
-------------------------------------*/
html,
body {
font-size: 15px;
color: #505050;
font-family: 'Rubik', sans-serif;
vertical-align: baseline;
line-height: 26px;
font-weight: 400;
overflow-x: hidden;
}
img {
max-width: 100%;
height: auto;
}
p {
margin: 0 0 26px;
line-height: 1.8;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Nunito', sans-serif;
color: #111111;
margin: 0 0 26px;
line-height: 1.2;
}
h1 {
font-size: 70px;
font-weight: 700;
}
h2 {
font-size: 36px;
font-weight: 700;
}
h3 {
font-size: 26px;
font-weight: 700;
}
h4 {
font-size: 24px;
font-weight: 700;
}
h5 {
font-size: 18px;
font-weight: 700;
}
h6 {
font-size: 16px;
font-weight: 700;
}
.home-style2 h1,
.home-style2 h2,
.home-style2 h3,
.home-style2 h4,
.home-style2 h5,
.home-style2 h6 {
color: #112958;
}
.uppercase {
text-transform: uppercase !important;
}
.capitalize {
text-transform: capitalize !important;
}
.bold-text {
font-size: 20px;
font-weight: bold;
font-family: 'Nunito', sans-serif;
}
.extra-bold {
font-weight: 800 !important;
}
a {
color: #ffffff;
transition: all 0.3s ease;
text-decoration: none !important;
outline: none !important;
}
a:active,
a:hover {
text-decoration: none;
outline: 0 none;
color: #21a7d0;
}
ul {
list-style: outside none none;
margin: 0;
padding: 0;
}
.clear {
clear: both;
}
::-moz-selection {
background: #21a7d0;
text-shadow: none;
color: #ffffff;
}
::selection {
background: #21a7d0;
text-shadow: none;
color: #ffffff;
}
.border-none:last-child {
border-right: none !important;
}
.width-unset {
width: unset !important;
}
.white-bg {
background-color: #ffffff;
}
.primary-bg {
background: #21a7d0;
}
.secondary-bg {
background: #273c66;
}
.title-bg {
background: #111111;
}
.gray-bg {
background: #f3f8f9;
}
.gray-bg3 {
background: #e7f9fb;
}
.gray-bg2 {
background: #e7f6f9;
}
.event-bg {
background: #f9f8f8;
}
.event2-bg {
background: #F4F6F5;
}
.dark-red {
background: #1D0E15;
}
.bg-light-gray {
background: #f9f9f9;
}
.transparent-bg {
background: transparent;
}
.home5color {
color: #54647b !important;
}
.bg-fixed {
background-attachment: fixed;
background-repeat: no-repeat;
}
.bg1 {
background: url(assets/images/bg/bg1.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.bg2 {
background: url(assets/images/bg/bg2.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.bg3 {
background: url(assets/images/bg/bg3.png);
background-size: cover;
background-repeat: no-repeat;
background-position: top center;
}
.bg4 {
background: url(assets/images/bg/home6/bg.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.bg5 {
background: url(assets/images/bg/home7/bg.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
border-radius: 5px;
}
.bg6 {
background: url(assets/images/bg/home-8-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.bg7 {
background: url(assets/images/bg/home8-bg2.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.bg8 {
background: url(assets/images/bg/home12/dotted.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
padding: 50px 0 50px;
}
.bg9 {
background: url(assets/images/bg/home13/counter-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.bg10 {
background: url(assets/images/bg/home13/logo-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.bg11 {
background: url(assets/images/bg/home13/subscribe-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.bg12 {
background: url(assets/images/bg/home13/footer-bg.html);
background-size: cover;
background-repeat: no-repeat;
}
.course-shape-bg {
background: url(assets/images/bg/course-shape-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.bg-unset {
background: unset !important;
}
.rs-menu-toggle {
color: #21a7d0;
text-align: right;
}
button {
cursor: pointer;
}
.glyph-icon:before {
margin: 0;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
outline: none !important;
}
.pagenav-link ul {
border: 1px solid #f2f2f2;
border-radius: 3px;
display: inline-block;
padding: 0 3px;
}
.pagenav-link ul li {
display: inline-block;
padding: 0 18px;
margin: 14px 0;
border-right: 1px solid #E6E6E6;
color: #21a7d0;
font-size: 16px;
}
.pagenav-link ul li a {
color: #505050;
}
.pagenav-link ul li a i:before {
color: #505050;
font-size: 13px;
transition: all 0.3s ease;
}
.pagenav-link ul li a:hover {
color: #21a7d0;
}
.pagenav-link ul li a:hover i:before {
color: #21a7d0;
}
.pagenav-link ul li:last-child {
border-right: none;
}
.pagenav-link.orange-color ul li,
.pagenav-link.orange-color ul li a:hover,
.pagenav-link.orange-color ul li a:hover i:before {
color: #21a7d0;
}
.gridFilter button {
background: transparent;
border: 0;
font-size: 15px;
font-weight: 700;
outline: none;
color: #505050;
cursor: pointer;
}
.gridFilter button.active {
color: #21a7d0;
}
.gridFilter button + button {
margin-left: 20px;
}
.gridFilter.style2 button {
background: #f9f7f8;
border: none;
border-radius: 3px;
font-weight: 500;
font-size: 16px;
color: #101010;
padding: 10px 30px;
outline: none;
margin: 0 10px 20px;
}
.gridFilter.style2 button.active,
.gridFilter.style2 button:hover {
background: #fff;
color: #21a7d0;
box-shadow: 0 0 30px #eee;
}
blockquote {
margin: 35px 0;
padding: 40px;
color: #666;
position: relative;
background: #fff;
background-repeat: no-repeat;
background-position: center center;
background-size: 55px;
font-weight: 400;
font-style: italic;
text-align: left;
clear: both;
box-shadow: 0 0 150px #eee;
}
blockquote:before {
position: absolute;
content: "";
display: block;
left: 0;
top: 0;
height: 100%;
width: 10px;
background: #21a7d0;
}
blockquote p {
font-size: 16px;
margin: 0;
}
.check-square li {
position: relative;
padding-left: 35px;
line-height: 34px;
border: none;
color: #ffffff;
}
.check-square li:before {
position: absolute;
top: 2px;
left: 0;
z-index: 0;
content: "\f046";
font-family: fontawesome;
color: #21a7d0;
font-size: 20px;
}
/*-- Blog Button Css --*/
.blog-btn {
color: #111111;
display: inline-block;
position: relative;
font-size: 15px;
padding-right: 43px;
text-transform: capitalize;
font-weight: 600;
}
.blog-btn:after {
position: absolute;
content: "\f133";
right: 20px;
top: 50%;
font-size: 15px;
font-weight: 600;
color: #111111;
font-family: "Flaticon";
transform: translateY(-50%);
transition: all 0.3s ease;
}
.blog-btn:hover {
color: #21a7d0;
}
.blog-btn:hover:after {
right: 17px;
color: #21a7d0;
}
/* ------------------------------------
02. Global Class CSS
---------------------------------------*/
.y-middle {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}
.y-bottom {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: flex-end;
-webkit-align-items: flex-end;
align-items: flex-end;
}
.readon {
outline: none;
padding: 12px 40px;
border: 1px solid #21a7d0;
border-radius: 30px;
display: inline-block;
text-transform: uppercase;
font-size: 16px;
font-family: 'Rubik', sans-serif;
font-weight: 700;
color: #111111;
background: #f3f8f9;
}
.readon.banner-style {
color: #ffffff;
background: #21a7d0;
padding: 16px 58px;
}
.readon.banner-style:hover {
background: #1e95ba;
}
.readon.purple-btn {
color: #ffffff;
background: #625eaa;
border: none;
padding: 16px 40px;
}
.readon.purple-btn:hover {
background: #4e49a1;
}
.readon.green-btn {
color: #FFFFFF;
background: #0C8B51;
border-color: #02010100;
border-radius: 30px;
font-size: 14px;
padding: 10px 30px 10px 30px;
}
.readon.green-btn:hover {
opacity: 0.9;
background: #0C8B51;
}
.readon.green-banner {
font-size: 16px;
line-height: 38px;
font-weight: 700;
padding: 8px 30px;
border-radius: 4px;
background-color: #0c8b51;
border-color: transparent;
color: #ffffff;
}
.readon.green-banner:hover {
background: #08a355;
}
.readon.white-color {
color: #ffffff !important;
background: none !important;
border: 1px solid #ffffff;
padding: 16px 40px;
}
.readon.white-color:hover {
background: #ffffff !important;
color: #4e49a1 !important;
}
.readon.orange-btn {
color: #ffffff;
background: #21a7d0;
border-color: #21a7d0;
border-radius: 5px 5px 5px 5px;
outline: none;
padding: 12px 35px;
display: inline-block;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
}
.readon.orange-btn.main-home {
padding: 10px 20px 10px 20px !important;
}
.readon.orange-btn.main-home:hover {
color: #ffffff;
background: #171F32;
border-color: #171F32;
}
.readon.orange-btn:hover {
color: #ffffff;
background: #208cad;
border-color: #208cad;
}
.readon.orange-btn.transparent:hover {
color: #101010;
background: #ffffff;
border-color: #ffffff;
}
.readon.yellow-btn {
background: #F4BF00;
border-color: #F4BF00;
border-radius: 4px 4px 4px 4px;
}
.readon.yellow-btn:hover {
color: #ffffff;
background: #171F32;
border-color: #171F32;
}
.readon.yellow-btn.transparent3:hover {
color: #1c335f;
background: #ffffff;
border-color: #ffffff;
}
.readon.transparent2 {
background: #21a7d0;
color: #111111;
border: 1px solid #21a7d0;
}
.readon.transparent2:hover {
color: #111111;
background: transparent;
border: 1px solid #21a7d0;
}
.readon.register-btn {
padding: 10px 50px;
color: #ffffff;
background: #21a7d0;
border-color: #21a7d0;
font-weight: 500;
width: 100%;
border-radius: 5px;
}
.readon.register-btn:hover {
background: #21a7d0;
}
.readon.submit-btn {
border: 2px solid;
border-color: #273c66;
padding: 10px 50px;
line-height: normal;
font-size: 14px;
text-transform: uppercase;
font-weight: 500;
background: #273c66;
color: #ffffff;
border-radius: 5px;
margin-bottom: 12px;
width: 100%;
}
.readon.submit-btn:hover {
background: transparent;
color: #21a7d0;
}
.readon.submit-requset {
background-color: #0FCB75;
margin: 0px 0px 0px 0px;
padding: 13px 35px 13px 35px;
outline: none;
border: none;
padding: 12px 40px;
border-radius: 3px;
display: inline-block;
text-transform: capitalize;
font-size: 16px;
font-family: 'Rubik', sans-serif;
font-weight: 500;
color: #ffffff;
}
.readon.submit-requset:hover {
opacity: 0.9;
background-color: #0FCB75;
}
.readon.border-less {
border: none;
}
.readon.border-less:hover {
background: rgba(243, 248, 239, 0.8);
color: #111111;
}
.readon:hover {
background: #21a7d0;
color: #ffffff;
}
.readon2 {
outline: none;
border: none;
padding: 12px 40px;
border-radius: 3px;
display: inline-block;
text-transform: capitalize;
font-size: 16px;
font-family: 'Rubik', sans-serif;
font-weight: 500;
color: #ffffff;
background: #21a7d0;
position: relative;
overflow: hidden;
}
.readon2.banner-style {
padding: 16px 40px;
}
.readon2.mod {
text-transform: uppercase;
padding: 14px 31px;
}
.readon2.transparent {
background: transparent;
color: #21a7d0;
border: 1px solid #21a7d0;
}
.readon2.transparent:hover {
color: #ffffff;
background: #21a7d0;
}
.readon2.orange-transparent {
background: transparent;
color: #21a7d0;
border: 1px solid #21a7d0;
}
.readon2.orange-transparent:hover {
color: #ffffff;
background: #21a7d0;
}
.readon2.orange {
background: #21a7d0;
}
.readon2.orange:hover {
background: #21a7d0;
}
.readon2:hover {
background: #1e95ba;
color: #ffffff;
}
.readon2.gym-btn {
background: #21a7d0;
color: #ffffff;
border-radius: 4px;
font-weight: 500;
font-size: 16px;
text-transform: capitalize;
padding: 17px 28px;
}
.readon2.gym-btn:hover {
opacity: 0.80;
}
.readon2.gym-btn.get-now:hover {
background: #ffffff;
color: #21a7d0;
}
.readon2.cta-btn {
background: #21a7d0;
color: #ffffff;
border-radius: 3px 3px 3px 3px;
font-family: "Rubik", Sans-serif;
font-size: 16px;
font-weight: 500;
text-transform: capitalize;
padding: 12px 30px 12px 30px;
}
.readon2.cta-btn:hover {
color: #F0E3E3;
background: #21a7d0;
}
.readon2.cta-btn {
background: #21a7d0;
color: #ffffff;
border-radius: 3px 3px 3px 3px;
font-family: "Rubik", Sans-serif;
font-size: 16px;
font-weight: 500;
text-transform: capitalize;
padding: 12px 30px 12px 30px;
}
.readon2.cta-btn:hover {
color: #F0E3E3;
background: #21a7d0;
}
.readon2.apply {
padding: 10px 30px 10px 30px;
}
.readon2.apply:hover {
color: unset;
}
.readon3 {
outline: none;
padding: 12px 50px;
border-radius: 30px;
display: inline-block;
text-transform: uppercase;
font-size: 16px;
font-family: 'Rubik', sans-serif;
font-weight: 500;
color: #ffffff;
background: #21a7d0;
position: relative;
}
.readon3:after,
.readon3:before {
position: absolute;
content: '';
top: 50%;
transform: translateY(-50%);
width: 5px;
height: 5px;
border-radius: 50%;
background: #ffffff;
transition: all 0.3s ease;
}
.readon3:after {
right: 30px;
}
.readon3:before {
left: 30px;
}
.readon3.active {
background: #f3f8f9;
color: #21a7d0;
}
.readon3.active:after,
.readon3.active:before {
background: #21a7d0;
}
.readon3.active:hover {
color: #ffffff;
background: #21a7d0;
}
.readon3.active:hover:after,
.readon3.active:hover:before {
background: #ffffff;
}
.readon3.dark-hov:hover {
background: #111111;
color: #ffffff;
}
.readon3.dark-hov:hover:after,
.readon3.dark-hov:hover:before {
background: #ffffff;
}
.readon3:hover {
background: #f3f8f9;
color: #21a7d0;
}
.readon3:hover:after,
.readon3:hover:before {
background: #21a7d0;
}
.readon-arrow {
color: #111111;
padding-right: 22px;
position: relative;
font-weight: 500;
}
.readon-arrow:after {
position: absolute;
content: "\f136";
font-family: Flaticon;
font-style: normal;
top: 50%;
transform: translateY(-50%);
right: 5px;
color: #111111;
transition: all 0.3s ease;
font-weight: 600;
font-size: 14px;
}
.readon-arrow:hover {
color: #21a7d0;
}
.readon-arrow:hover:after {
right: 0;
color: #21a7d0;
}
.btn-shop {
outline: none;
font-weight: 400;
border: none;
text-transform: uppercase;
background: #21a7d0;
font-size: 15px;
padding: 8px 25px;
color: #ffffff;
border-radius: 5px;
transition: all 0.3s ease 0s;
}
.btn-shop:hover {
background: #273c66;
color: #ffffff;
}
.btn-shop.orange-color {
background: #21a7d0;
color: #ffffff;
}
.btn-shop.orange-color:hover {
background: #208cad;
}
/*Pagination*/
.pagination-area .pagination-part {
display: inline-block;
padding: 0 5px 0 10px;
height: 60px;
line-height: 60px;
box-shadow: 0px 8px 26px 0px rgba(0, 0, 0, 0.1);
}
.pagination-area .pagination-part li {
position: relative;
display: inline-block;
padding: 0 20px 0 15px;
text-align: center;
cursor: pointer;
}
.pagination-area .pagination-part li a {
display: inline-flex;
align-items: center;
color: #111111;
}
.pagination-area .pagination-part li a:hover {
color: #21a7d0;
}
.pagination-area .pagination-part li i {
margin-left: 10px;
}
.pagination-area .pagination-part li i:before {
font-size: 28px;
margin: 0;
line-height: 60px;
}
.pagination-area .pagination-part li:before {
content: '';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 5px;
height: 5px;
border-radius: 50%;
background: #d6fbff;
}
.pagination-area .pagination-part li:last-child:before {
display: none;
}
.pagination-area .pagination-part li:hover a,
.pagination-area .pagination-part li.active a {
color: #21a7d0;
}
.pagination-area.orange-color .pagination-part li a:hover {
color: #21a7d0;
}
.pagination-area.orange-color .pagination-part li:before {
background: #21a7d0;
}
.pagination-area.orange-color .pagination-part li:hover a,
.pagination-area.orange-color .pagination-part li.active a {
color: #21a7d0;
}
/*Video Icon*/
.media-icon {
position: relative;
display: inline-block;
z-index: 1;
}
.media-icon .popup-videos {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #ffffff;
background: #21a7d0;
width: 70px;
height: 70px;
border-radius: 100%;
text-align: center;
}
.media-icon .popup-videos:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 120px;
height: 120px;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
transition: all 0.3s ease;
z-index: -1;
}
.media-icon .popup-videos i {
margin-left: 5px;
}
.media-icon .popup-videos i:before {
font-size: 30px;
line-height: 70px;
}
.media-icon .popup-videos:hover:before {
background: #21a7d0;
}
.media-icon.orange-color .popup-videos {
color: #21a7d0;
background: #ffffff;
}
.media-icon.orange-color .popup-videos i:before {
font-size: 30px;
line-height: 70px;
}
.media-icon.orange-color .popup-videos:hover:before {
background: #ffffff;
}
.media-icon.orange-color2 .popup-videos {
color: #ffffff;
background: #21a7d0;
animation: circle-ripple 3s linear linear infinite;
-webkit-animation: circle-ripple 3s linear infinite;
}
.media-icon.orange-color2 .popup-videos:before {
display: none;
}
.media-icon.orange-color2 .popup-videos:hover:before {
background: #21a7d0;
}
.media-icon.yellow-color .popup-videos {
color: #273c66;
background: #f4bf00;
}
.media-icon.yellow-color .popup-videos:hover:before {
background: #1c335f;
}
.rs-video-home9 {
background: url(assets/images/video/video2.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
padding: 300px 0 300px;
}
.rs-video-home9 .media-icon {
display: block;
}
.rs-call-action {
position: relative;
}
.rs-call-action .spiners {
position: absolute;
bottom: 0;
}
.rs-call-action .spiners.one {
top: 12%;
}
.rs-call-action .spiners.two {
bottom: 18%;
right: 56%;
}
.rs-call-action .spiners.three {
top: 16%;
right: 39%;
}
.margin-remove {
margin: 0 !important;
}
.no-gutter {
margin-left: 0;
margin-right: 0;
}
.no-gutter [class*="col-"] {
padding-left: 0;
padding-right: 0;
}
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
margin: 0;
}
.container-fluid {
padding-left: 60px;
padding-right: 60px;
}
.display-table {
display: table;
height: 100%;
width: 100%;
}
.display-table-cell {
display: table-cell;
vertical-align: middle;
}
.relative {
position: relative;
}
.body-color {
color: #505050 !important;
}
.white-color {
color: #ffffff !important;
}
.title-color {
color: #111111 !important;
}
.title-color2 {
color: #112958 !important;
}
.secondary-color {
color: #273c66;
}
.primary-color {
color: #21a7d0 !important;
}
.orangeColor {
color: #21a7d0 !important;
}
.dark-parimary-bg {
background: #203154 !important;
}
ul.listing-style li {
position: relative;
padding-left: 30px;
line-height: 34px;
}
ul.listing-style li:before {
position: absolute;
top: 0;
left: 0;
z-index: 0;
content: "\f05d";
font-family: 'FontAwesome';
color: #21a7d0;
font-size: 20px;
}
ul.listing-style.modify li {
padding-left: 23px;
}
ul.listing-style.modify li:before {
font-size: 15px;
}
.rs-carousel.nav-style1 {
position: relative;
}
.rs-carousel.nav-style1 .owl-nav {
display: block;
}
.rs-carousel.nav-style1 .owl-nav .owl-next,
.rs-carousel.nav-style1 .owl-nav .owl-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
width: 42px;
height: 42px;
line-height: 42px;
border-radius: 50%;
background: #21a7d0;
text-align: center;
color: #ffffff;
transition: all 0.5s;
transition-delay: 0.70s;
opacity: 0;
visibility: hidden;
}
.rs-carousel.nav-style1 .owl-nav .owl-next i:before,
.rs-carousel.nav-style1 .owl-nav .owl-prev i:before {
content: "\f138";
font-family: Flaticon;
}
.rs-carousel.nav-style1 .owl-nav .owl-next {
right: 30px;
left: unset;
}
.rs-carousel.nav-style1 .owl-nav .owl-next i:before {
content: "\f137";
}
.rs-carousel.nav-style1:hover .owl-nav .owl-next,
.rs-carousel.nav-style1:hover .owl-nav .owl-prev {
left: -50px;
transition-delay: 0s;
visibility: visible;
opacity: 1;
}
.rs-carousel.nav-style1:hover .owl-nav .owl-next {
right: -50px;
left: unset;
}
.rs-carousel.nav-style2 {
position: relative;
}
.rs-carousel.nav-style2 .owl-nav {
display: block;
position: absolute;
top: -80px;
right: 0;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev,
.rs-carousel.nav-style2 .owl-nav .owl-next {
display: inline-block;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i,
.rs-carousel.nav-style2 .owl-nav .owl-next i {
transition: all 0.3s ease;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i:before,
.rs-carousel.nav-style2 .owl-nav .owl-next i:before {
font-family: Flaticon;
font-size: 22px;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev:hover i,
.rs-carousel.nav-style2 .owl-nav .owl-next:hover i {
color: #21a7d0;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i:before {
content: "\f134";
}
.rs-carousel.nav-style2 .owl-nav .owl-prev:after {
content: "/";
padding: 0 5px 0 5px;
position: relative;
top: -3px;
}
.rs-carousel.nav-style2 .owl-nav .owl-next i:before {
content: "\f133";
}
.rs-carousel.orange-color .owl-nav .owl-prev:hover i,
.rs-carousel.orange-color .owl-nav .owl-next:hover i {
color: #21a7d0;
}
.rs-carousel .owl-dots {
text-align: center;
margin: 40px auto 0;
line-height: 15px;
display: block;
}
.rs-carousel .owl-dots .owl-dot {
width: 30px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
border: 1px solid #21a7d0;
background: transparent;
opacity: 0.7;
cursor: pointer;
}
.rs-carousel .owl-dots .owl-dot:hover {
background: #21a7d0;
}
.rs-carousel .owl-dots .active {
background: #21a7d0;
opacity: 1;
}
.owl-carousel .owl-item img {
width: auto;
}
.sec-title .sub-title {
font-size: 18px;
line-height: 28px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 8px;
}
.sec-title .sub-title.primary {
color: #21a7d0;
}
.sec-title .sub-title.secondary {
color: #273c66;
}
.sec-title .sub-title.white {
color: #ffffff;
}
.sec-title .sub-title.dark {
color: #111111;
}
.sec-title .sub-title.orange {
color: #21a7d0;
}
.sec-title .desc.big {
font-size: 18px;
line-height: 30px;
}
.sec-title .midline {
font-size: 36px;
color: #111111;
}
.sec-title2 .sub-title {
font-size: 18px;
line-height: 28px;
font-weight: 400;
color: #21a7d0;
text-transform: uppercase;
margin-bottom: 10px;
}
.sec-title2 .sub-title.white-color {
color: #ffffff;
}
.sec-title2 .title {
font-size: 42px;
line-height: 52px;
font-weight: 800;
color: #031a3d;
}
.sec-title2 .title.white-color {
color: #ffffff;
}
.sec-title2 .title.purple-color {
color: #4e49a1 !important;
}
.sec-title3 .sub-title {
font-size: 16px;
line-height: 28px;
font-weight: 500;
color: #21a7d0;
text-transform: uppercase;
margin-bottom: 10px;
}
.sec-title3 .sub-title.yellow-color {
color: #f4bf00;
}
.sec-title3 .sub-title.green-color {
color: #0c8b51;
}
.sec-title3 .sub-title.no-big {
text-transform: capitalize;
color: #ffffff;
letter-spacing: 3px;
}
.sec-title3 .sub-title.big {
font-size: 18px !important;
color: #f4bf00 !important;
font-weight: 500;
}
.sec-title3 .title {
font-size: 36px;
line-height: 46px;
font-weight: 800;
color: #031a3d;
}
.sec-title3 .title.white-color {
color: #ffffff;
}
.sec-title3 .title.black-color {
color: #101010;
}
.sec-title3 .title.new-title {
color: #101010;
line-height: 1.2;
font-weight: 700;
}
.sec-title3 .title.title2 {
font-size: 42px;
line-height: 55px;
font-weight: 700;
color: #ffffff;
}
.sec-title3 .title.title3 {
font-size: 42px;
line-height: 55px;
font-weight: 800;
color: #ffffff;
}
.sec-title3 .desc {
font-size: 16px;
line-height: 26px;
color: #363636;
}
.sec-title3 .desc.white-color {
color: #ffffff;
}
.sec-title3 .new-desc {
font-size: 18px;
line-height: 31px;
color: #333333;
}
.sec-title4 .sub-title {
font-size: 16px;
line-height: 28px;
font-weight: 500;
color: #0c8b51;
text-transform: uppercase;
margin-bottom: 10px;
}
.sec-title4 .title {
font-size: 36px;
line-height: 46px;
font-weight: 700;
color: #101010;
position: relative;
padding: 0px 0px 20px 0px;
}
.sec-title4 .title:after {
content: "";
position: absolute;
border: 0;
width: 50px;
height: 4px;
z-index: 9;
left: 0;
right: 0;
margin: 0 auto;
bottom: 0;
background: #0c8b51;
}
.sec-title4 .desc {
font-size: 16px;
line-height: 26px;
color: #363636;
}
.sec-title5 .description {
color: #ffffff;
}
.sec-title5 .description.title-color {
color: #7A7A7A;
font-weight: 400;
}
.sec-title5 .description span a {
color: #21a7d0;
}
.sec-title5 .description span a i {
margin-left: 5px;
}
.sec-title5 .description span a i:before {
top: 2.5px;
position: relative;
}
.sec-title6 .title {
font-size: 36px;
line-height: 46px;
font-weight: 700;
color: #031a3d;
}
.sec-title6 .title.title2 {
font-weight: 800;
}
.left-top-shape {
position: absolute;
left: -55px;
top: 65px;
}
.right-top-shape {
position: absolute;
right: -115px;
top: 25px;
}
/* -----------------------
03. Header Section CSS
--------------------------*/
.full-width-header .rs-header {
z-index: 99;
}
.full-width-header .rs-header .topbar-area {
background: #273c66;
}
.full-width-header .rs-header .topbar-area .topbar-contact li {
display: inline-block;
line-height: 50px;
height: 50px;
margin-right: 17px;
padding-right: 20px;
color: #ffffff;
border-right: 1px solid #374A71;
}
.full-width-header .rs-header .topbar-area .topbar-contact li i {
margin-right: 2px;
}
.full-width-header .rs-header .topbar-area .topbar-contact li i.flaticon-email:before {
bottom: -1.5px;
position: relative;
}
.full-width-header .rs-header .topbar-area .topbar-contact li i:before {
font-size: 16px;
color: #ffffff;
}
.full-width-header .rs-header .topbar-area .topbar-contact li a {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area .topbar-contact li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area .topbar-contact li:last-child {
margin: 0;
border: none;
}
.full-width-header .rs-header .topbar-area .topbar-right li {
display: inline;
margin-right: 30px;
}
.full-width-header .rs-header .topbar-area .topbar-right li.login-register {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area .topbar-right li.login-register i {
margin-right: 10px;
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area .topbar-right li.login-register a {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area .topbar-right li.login-register a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area .topbar-right li a.apply-btn {
color: #ffffff;
background: #21a7d0;
padding: 12px 35px;
display: inline-block;
}
.full-width-header .rs-header .topbar-area .topbar-right li a.apply-btn:hover {
background: #2db4de;
}
.full-width-header .rs-header .topbar-area .topbar-right li:last-child {
margin: 0;
}
.full-width-header .rs-header .topbar-area.home8-topbar {
background: #f9f8f8 !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li {
color: #363636;
border-right: 1px solid #fff;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li i {
margin-right: 2px;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li i:before {
font-size: 16px;
color: #363636;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li a {
color: #363636;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li:last-child {
margin: 0;
border: none;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li.login-register {
color: #363636;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li.login-register i {
margin-right: 10px;
color: #363636;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li.login-register a {
color: #363636;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li.login-register a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li a.apply-btn {
background: #21a7d0;
text-transform: uppercase;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li a.apply-btn:hover {
color: #ffffff;
background: #208cad;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li:last-child {
margin: 0;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part {
background: transparent !important;
border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li {
color: #ffffff !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li i {
margin-right: 2px;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li i:before {
font-size: 16px;
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li a {
color: #ffffff !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li:last-child {
margin: 0;
border: none !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li.login-register {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li.login-register i {
margin-right: 10px;
color: #ffffff !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li.login-register a {
color: #ffffff !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li.login-register a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li a.apply-btn {
background: #21a7d0;
text-transform: uppercase;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li a.apply-btn:hover {
color: #ffffff;
background: #208cad;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li:last-child {
margin: 0;
}
.full-width-header .rs-header .topbar-area.home9-topbar {
background: #273c66 !important;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li {
color: #ffffff;
border-right: 1px solid #1b315e;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li i {
margin-right: 2px;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li i:before {
font-size: 16px;
color: #f4bf00;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li a {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li a:hover {
color: #f4bf00;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li:last-child {
margin: 0;
border: none;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li.login-register {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li.login-register i {
margin-right: 10px;
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li.login-register a {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li.login-register:hover i,
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li.login-register:hover a {
color: #f4bf00;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li a.apply-btn {
background: #f4bf00;
text-transform: uppercase;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li a.apply-btn:hover {
color: #ffffff;
background: #c19700;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li:last-child {
margin: 0;
}
.full-width-header .rs-header .topbar-area.home11-topbar {
background: #0c8b51 !important;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li {
color: #ffffff;
border-right: 1px solid #00822b;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li i {
margin-right: 4px;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li i:before {
font-size: 14px;
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li a {
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li a:hover {
color: #d1d1d1;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li:last-child {
margin: 0;
border: none;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share .opening {
color: #ffffff;
display: inline-block;
border-right: 1px solid #00822b;
font-size: 14px;
line-height: 50px;
margin-right: 15px;
padding-right: 18px;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share .opening i {
margin-right: 5px;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share .opening i:before {
font-size: 15px;
font-weight: 600;
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share li {
display: inline-block;
margin-right: 14px;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share li a {
line-height: 30px;
color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share li:last-child {
margin: 0;
border: none;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 {
background: #f9f7f8 !important;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .topbar-contact li {
color: #333333;
border-right: 1px solid #f0ecee;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .topbar-contact li i {
margin-right: 4px;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .topbar-contact li i:before {
font-size: 14px;
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .topbar-contact li a {
color: #333333;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .topbar-contact li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .toolbar-sl-share .opening {
color: #333333;
border-right: 1px solid #f0ecee;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .toolbar-sl-share .opening i:before {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .toolbar-sl-share li a {
color: #333333;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .toolbar-sl-share li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .toolbar-sl-share li:last-child {
margin: 0;
border: none;
}
.full-width-header .rs-header .logo-part {
position: relative;
z-index: 9;
}
.full-width-header .rs-header .logo-part img {
max-height: 40px;
}
.full-width-header .rs-header .menu-area {
transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .logo-area {
position: relative;
height: 90px;
line-height: 90px;
}
.full-width-header .rs-header .menu-area .logo-area img {
transition: 0.4s;
-webkit-transition: 0.4s;
max-height: 48px;
}
.full-width-header .rs-header .menu-area .logo-area .dark {
display: none;
}
.full-width-header .rs-header .menu-area .logo-area .light {
display: inherit;
}
.full-width-header .rs-header .menu-area .responsive-logo {
position: absolute;
top: 50%;
transform: translateY(-50%);
display: none;
}
.full-width-header .rs-header .menu-area .responsive-logo img {
max-height: 30px;
}
.full-width-header .rs-header .menu-area .logo-cat-wrap {
display: flex;
align-items: center;
height: 120px;
line-height: 120px;
}
.full-width-header .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner {
top: 120px;
}
.full-width-header .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner li {
height: 45px;
line-height: 45px;
}
.full-width-header .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner li a {
padding: 0 30px;
}
.full-width-header .rs-header .menu-area .rs-menu-area {
display: flex;
align-items: center;
justify-content: center;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li {
display: inline-block;
margin-right: 50px;
padding: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a {
transition: all 0.3s ease;
font-size: 15px;
font-weight: 500;
text-transform: uppercase;
height: 120px;
line-height: 120px;
padding-right: 12px;
margin-right: -12px;
color: #ffffff;
z-index: 1;
position: relative;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a:hover:before {
content: "-";
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a:before {
content: "+";
position: absolute;
left: auto;
right: 0;
top: 50%;
text-align: center;
display: block;
cursor: pointer;
transform: translateY(-50%);
transition: all .5s ease;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li:last-child {
margin-right: 0!important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li:last-child i {
margin: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu.onepage-menu .active-menu a {
color: #21a7d0 !important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu {
background: #21a7d0;
margin: 0;
padding: 15px 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
border: none;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li a {
height: unset !important;
line-height: unset !important;
color: #ffffff !important;
font-weight: 400 !important;
text-transform: capitalize;
padding: 10px 30px !important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #273c66 !important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li a:before {
display: none;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li:last-child {
margin: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.current-menu-item > a,
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.active > a {
color: #273c66 !important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.children-mega-menu .child-mega-menu {
width: 100%;
opacity: 1 !important;
position: unset;
transform: translateY(0px);
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.children-mega-menu .child-mega-menu .child-single-megamenu {
width: 50%;
float: left;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.children-mega-menu .child-mega-menu .child-single-megamenu .sub-menu {
padding: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu.right-menu {
left: unset;
right: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu {
background: #273c66;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu .mega-menu-container {
padding: 0;
margin: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu .mega-menu-container .single-megamenu {
width: 50%;
float: left;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu .mega-menu-container .single-megamenu .sub-menu .menu-title {
font-size: 17px;
font-weight: 600;
padding: 10px 30px;
color: #ffffff;
text-transform: capitalize;
transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu .mega-menu-container .single-megamenu:hover .sub-menu .menu-title {
color: #ffffff;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul li a:hover,
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul li.active a,
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header .rs-header .menu-area .nav-expander {
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .nav-expander span {
height: 2px;
width: 30px;
display: block;
background: #ffffff;
margin: 6px 0;
transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .nav-expander span.dot1 {
margin-top: 0;
}
.full-width-header .rs-header .menu-area .nav-expander span.dot3 {
margin-bottom: 0;
}
.full-width-header .rs-header .menu-area .nav-expander:hover span {
background: #21a7d0;
}
.full-width-header .rs-header .menu-area .nav-expander.style2 span {
background: #111111;
}
.full-width-header .rs-header .menu-area .nav-expander.style2:hover span {
background: #21a7d0;
}
.full-width-header .rs-header .menu-area .nav-expander.style3 span {
background: #111111;
}
.full-width-header .rs-header .menu-area .nav-expander.style3:hover span {
background: #21a7d0;
}
.full-width-header .rs-header .menu-area .nav-expander.style4 span {
background: #ffffff;
}
.full-width-header .rs-header .menu-area .nav-expander.style4:hover span {
background: #21a7d0;
}
.full-width-header .rs-header .menu-area .nav-expander.style5 span {
background: #ffffff;
}
.full-width-header .rs-header .menu-area .nav-expander.style5:hover span {
background: #ccc;
}
.full-width-header .rs-header .menu-area .nav-expander.style6 span {
background: #ffffff;
}
.full-width-header .rs-header .menu-area .nav-expander.style6:hover span {
background: #f4bf00;
}
.full-width-header .rs-header .menu-area .appointment-cart {
position: absolute;
right: 0;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
z-index: 9;
}
.full-width-header .rs-header .menu-area .appointment-cart ul.cart {
text-align: right;
}
.full-width-header .rs-header .menu-area .appointment-cart ul.cart li {
display: inline-block;
position: relative;
cursor: pointer;
padding-right: 15px;
}
.full-width-header .rs-header .menu-area .appointment-cart ul.cart li i {
color: #ffffff;
transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .appointment-cart ul.cart li i:hover {
color: #ffffff;
}
.full-width-header .rs-header .menu-area .expand-btn-inner {
margin-right: 55px;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li {
display: inline-block;
margin-right: 15px;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner {
position: relative;
margin-right: 15px;
padding-right: 20px;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner .cart-icon {
position: relative;
height: 120px;
line-height: 120px;
z-index: 1;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner .cart-icon .cart-count {
position: absolute;
min-width: 18px;
min-height: 18px;
line-height: 18px;
font-size: 11px;
border-radius: 50%;
background: #f2f2f2;
color: #505050;
top: -13px;
right: -17px;
text-align: center;
transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner:before {
content: '';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 1px;
height: 20px;
background: #7d8aa3;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner.no-border {
padding-right: 0;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner.no-border:before {
display: none;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a {
color: #ffffff;
display: inline-block;
cursor: pointer;
z-index: 1;
position: relative;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a.short-border {
position: relative;
padding-right: 20px;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a.short-border:before {
content: '';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 1px;
height: 20px;
background: #7d8aa3;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a i:before {
font-size: 15px;
font-weight: 600;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a i.flaticon-shopping-bag-1:before {
font-weight: normal;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #ffffff;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li a.apply-btn {
text-transform: uppercase;
color: #ffffff;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li a.apply-btn:hover {
color: #21a7d0;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li:last-child {
margin-right: 0 !important;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-btn {
display: inline-flex;
align-items: center;
background: transparent;
padding: 0;
border: none;
outline: unset;
color: #ffffff;
text-transform: uppercase;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-btn i {
margin-right: 5px;
transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-btn:hover i {
color: #21a7d0;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-menu-inner {
position: absolute;
top: 120px;
width: 200px;
background: #21a7d0;
padding: 15px 0;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-menu-inner li a {
color: #ffffff;
padding: 10px 30px;
display: inline-block;
text-transform: capitalize;
width: 100%;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-menu-inner li a:hover {
color: #273c66;
}
.full-width-header .rs-header .menu-area.sticky {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: rgba(39, 60, 102, 0.9) !important;
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}
.full-width-header .rs-header .menu-area.sticky .logo-area img {
max-height: 35px;
}
.full-width-header .rs-header .menu-area.sticky .logo-area .dark {
display: inherit;
}
.full-width-header .rs-header .menu-area.sticky .logo-area .light {
display: none;
}
.full-width-header .rs-header .menu-area.sticky .logo-cat-wrap {
height: 90px;
line-height: 90px;
}
.full-width-header .rs-header .menu-area.sticky .logo-cat-wrap .categories-btn .cat-menu-inner {
top: 90px;
}
.full-width-header .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a {
height: 90px;
line-height: 90px;
color: #494949;
}
.full-width-header .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander span {
background: #111111;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander:hover span {
background: #21a7d0;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander.style3 span {
background: #111111;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander.style3:hover span {
background: #21a7d0;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander.style5 span {
background: #ffffff;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander.style5:hover span {
background: #ccc;
}
.full-width-header .rs-header .menu-area.sticky .appointment-cart ul.cart li i {
color: #494949;
}
.full-width-header .rs-header .menu-area.sticky .appointment-cart ul.cart li i:hover {
color: #21a7d0;
}
.full-width-header .rs-header .menu-area.sticky .expand-btn-inner li.cart-inner .cart-icon {
height: 90px;
line-height: 90px;
}
.full-width-header .rs-header .menu-area.sticky .expand-btn-inner li.cart-inner .woocommerce-mini-cart {
padding-top: 90px;
}
.full-width-header .rs-header .menu-area.sticky .expand-btn-inner li .cart-icon .cart-count {
background: #21a7d0;
color: #ffffff;
}
.full-width-header .rs-header .menu-area.sticky .expand-btn-inner li > a {
color: #494949;
}
.full-width-header .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .right_menu_togle {
background: #fafafa;
padding: 30px 50px;
width: 500px;
right: -500px;
z-index: 999999;
text-align: center;
transition: all 0.3s ease;
}
.full-width-header .rs-header .right_menu_togle .close-btn {
overflow: visible;
padding: 0;
}
.full-width-header .rs-header .right_menu_togle .close-btn .line {
width: 40px;
height: 40px;
line-height: 40px;
}
.full-width-header .rs-header .right_menu_togle .close-btn .line span {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%) rotate(45deg);
width: 1px !important;
height: 20px !important;
background: #ffffff;
border: none !important;
transition: all 0.3s ease;
}
.full-width-header .rs-header .right_menu_togle .close-btn .line span.line2 {
transform: translate(-50%, -50%) rotate(-45deg);
}
.full-width-header .rs-header .right_menu_togle .close-btn #nav-close {
position: relative;
float: unset;
width: 40px;
height: 40px;
line-height: 40px;
border: unset;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
background: #21a7d0;
}
.full-width-header .rs-header .right_menu_togle .close-btn #nav-close:hover {
transform: rotate(180deg);
}
.full-width-header .rs-header .right_menu_togle .canvas-logo {
padding-left: 0;
padding-bottom: 30px;
margin-top: 50px;
}
.full-width-header .rs-header .right_menu_togle .canvas-logo img {
max-height: 35px;
}
.full-width-header .rs-header .right_menu_togle .offcanvas-gallery {
display: inline-block;
}
.full-width-header .rs-header .right_menu_togle .offcanvas-gallery .gallery-img {
width: 33%;
float: left;
padding: 0 5px 10px;
}
.full-width-header .rs-header .right_menu_togle .offcanvas-gallery .gallery-img .image-popup {
display: block;
overflow: hidden;
}
.full-width-header .rs-header .right_menu_togle .offcanvas-gallery .gallery-img .image-popup img {
transition: all 0.3s ease;
}
.full-width-header .rs-header .right_menu_togle .offcanvas-gallery .gallery-img .image-popup:hover img {
transform: scale(1.1);
}
.full-width-header .rs-header .right_menu_togle .map-img {
margin-top: 25px;
}
.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li a {
font-size: 17px;
color: #222;
padding-left: 0;
}
.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact {
padding: 50px 0 0;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li {
display: inline-block;
padding-right: 20px;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li a {
color: #111111;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li a i {
font-size: 18px;
font-weight: bold;
text-align: center;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li a:hover {
color: #21a7d0;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li:last-child {
padding: 0;
}
.full-width-header.header-style1 {
width: 100%;
z-index: 999;
}
.full-width-header.header-style1 .rs-header .menu-area {
background: #273c66;
}
.full-width-header.header-style1 .rs-header .menu-area .main-menu .mobile-logo-part {
display: none;
}
.full-width-header.header-style1 .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li.logo-part {
padding: 0;
margin: 0 90px 0 60px;
}
.full-width-header.header-style1 .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
left: unset;
right: 0;
background: #ffffff;
min-width: 770px;
}
.full-width-header.header-style1 .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
width: 33.33%;
float: left;
}
.full-width-header.header-style1 .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
background: unset;
padding-right: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-top: 30px;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky {
background: #273c66 !important;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a {
color: #ffffff;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky .expand-btn-inner li > a {
color: #ffffff;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
color: #ffffff;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky .expand-btn-inner li a.apply-btn {
color: #ffffff;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky .expand-btn-inner li a.apply-btn:hover {
color: #21a7d0;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area {
background: #ffffff !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area {
justify-content: flex-end;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
margin-right: 35px;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #333333;
font-weight: 500;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #0c8b51 !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover,
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #0c8b51 !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #0c8b51;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin-right: 35px;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
color: #333333;
font-weight: 500;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #0c8b51 !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #0c8b51 !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .nav-expander {
color: #111111;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .nav-expander:hover {
color: #273c66;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner {
margin-right: 0;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .cart-bottom-part {
background: #0c8b51;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn {
background: #ffffff;
color: #111111;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn:hover {
background: #f2f2f2;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li.cart-inner {
border-color: #a9b1c2;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li > a {
color: #394459;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #0c8b51 !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area.sticky {
background: #ffffff !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area.sticky .logo-cat-wrap {
display: flex;
align-items: center;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .dark-logo {
display: none;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .light-logo {
display: inherit;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area {
justify-content: flex-end;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
margin-right: 0;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover,
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #21a7d0 !important;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
color: #ffffff !important;
margin-right: 0;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #ccc !important;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #ccc !important;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu.right {
left: auto;
right: 100%;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
left: unset;
right: 0;
background: #21a7d0;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
width: 33.33%;
float: left;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
padding-right: 30px;
padding-left: 40px;
padding-bottom: 40px;
padding-top: 35px;
background: unset;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu li a {
color: #f00;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li a:hover i {
color: #21a7d0;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li.cart-inner {
border-color: #1c2f5e !important;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li > a {
color: #111111 !important;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li > a:hover {
color: #21a7d0 !important;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li .woocommerce-mini-cart .cart-bottom-part {
background: #21a7d0;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li .woocommerce-mini-cart .crt-btn {
background: #ffffff;
color: #111111;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li .woocommerce-mini-cart .crt-btn:hover {
background: #f2f2f2;
}
.full-width-header.header-style2 {
width: 100%;
z-index: 999;
}
.full-width-header.header-style2 .rs-header .menu-area {
background: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area .logo-cat-wrap .logo-part .dark-logo {
display: inherit;
}
.full-width-header.header-style2 .rs-header .menu-area .logo-cat-wrap .logo-part .light-logo {
display: none;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area {
justify-content: flex-end;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
margin-right: 35px;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #394459;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #ddd !important;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #ddd !important;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
left: unset;
right: 0;
background: #21a7d0;
min-width: 770px;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
width: 33.33%;
float: left;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
padding-right: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-top: 30px;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li a:hover,
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.active a,
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.header-style2 .rs-header .menu-area .expand-btn-inner li.cart-inner {
border-color: #a9b1c2;
}
.full-width-header.header-style2 .rs-header .menu-area .expand-btn-inner li > a {
color: #394459;
}
.full-width-header.header-style2 .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-btn {
color: #394459;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-btn i {
margin-right: 10px;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-btn:hover i {
color: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-menu-inner {
background: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-menu-inner li a {
color: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-menu-inner li a:hover {
color: #273c66;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky {
background: #273c66 !important;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .logo-cat-wrap {
display: flex;
align-items: center;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .dark-logo {
display: none;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .light-logo {
display: inherit;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a {
color: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .expand-btn-inner li > a {
color: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .nav-expander.style3 span {
background: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .nav-expander.style3:hover span {
background: #ccc;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .categories-btn .cat-btn {
color: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .categories-btn .cat-btn:hover i {
color: #21a7d0;
}
.full-width-header.header-style2.modify1 {
position: absolute;
top: 0;
left: 0;
width: 100%;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area {
background: transparent;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #ddd !important;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #ddd !important;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li a:hover,
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.active a,
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .expand-btn-inner li.cart-inner {
border-color: #a9b1c2;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .expand-btn-inner li > a {
color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .categories-btn .cat-btn {
color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .categories-btn .cat-btn:hover i {
color: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky {
background: #273c66 !important;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .logo-cat-wrap {
display: flex;
align-items: center;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .dark-logo {
display: none;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .light-logo {
display: inherit;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a {
color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .expand-btn-inner li > a {
color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .categories-btn .cat-btn {
color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .categories-btn .cat-btn:hover i {
color: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .nav-expander span {
background: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .nav-expander:hover span {
background: #ccc;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
margin-right: 35px;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #ffffff;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #f4bf00 !important;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #ffffff !important;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #111111 !important;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #f4bf00 !important;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #f4bf00 !important;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
background: #ffffff;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul li a:hover,
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul li.active a,
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
color: #f4bf00 !important;
}
.full-width-header.header-style3 {
width: 100%;
z-index: 999;
}
.full-width-header.header-style3 .rs-header .menu-area {
background: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .logo-part {
position: absolute;
left: -260px;
top: 50%;
transform: translateY(-50%);
}
.full-width-header.header-style3 .rs-header .menu-area .logo-part .small-logo {
display: none;
}
.full-width-header.header-style3 .rs-header .menu-area .logo-cat-wrap .categories-btn {
padding-left: 45px;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
margin-right: 35px;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #394459;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #ffffff;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #273c66 !important;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #273c66 !important;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
left: unset;
right: 0;
background: #21a7d0;
min-width: 780px;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
width: 33.33%;
float: left;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
padding-right: 32px;
padding-left: 32px;
padding-bottom: 32px;
padding-top: 32px;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li a:hover,
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.active a,
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .nav-expander {
color: #111111;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .nav-expander:hover {
color: #273c66;
}
.full-width-header.header-style3 .rs-header .menu-area .expand-btn-inner li.cart-inner {
border-color: #a9b1c2;
}
.full-width-header.header-style3 .rs-header .menu-area .expand-btn-inner li > a {
color: #394459;
}
.full-width-header.header-style3 .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-btn {
color: #394459;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-btn i {
margin-right: 10px;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-btn:hover i {
color: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-menu-inner {
background: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-menu-inner li a {
color: #ffffff;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-menu-inner li a:hover {
color: #273c66;
}
.full-width-header.header-style3 .rs-header .menu-area.sticky {
background: #21a7d0 !important;
}
.full-width-header.header-style3 .rs-header .menu-area.sticky .logo-cat-wrap {
display: flex;
align-items: center;
}
.full-width-header.header-style3 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .dark-logo {
display: none;
}
.full-width-header.header-style3 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .light-logo {
display: inherit;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .close-btn #nav-close {
background: #4e49a1;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .close-btn #nav-close:hover {
transform: rotate(180deg);
}
.full-width-header.header-style3 .rs-header .right_menu_togle .canvas-logo {
padding-left: 0;
padding-bottom: 30px;
margin-top: 50px;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .canvas-logo img {
max-height: 35px;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .canvas-contact {
padding: 50px 0 0;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .canvas-contact .social li a:hover {
color: #4e49a1;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .canvas-contact .social li:last-child {
padding: 0;
}
.full-width-header.header-style3.modify .rs-header .menu-area {
display: flex;
background: #ffffff;
}
.full-width-header.header-style3.modify .rs-header .menu-area .logo-part {
background: #21a7d0;
left: 0;
height: 120px;
line-height: 120px;
width: 350px;
text-align: center;
}
.full-width-header.header-style3.modify .rs-header .menu-area .logo-cat-wrap {
display: flex;
align-items: center;
float: left;
}
.full-width-header.header-style3.modify .rs-header .menu-area .rs-menu-area {
float: right;
margin-right: -130px;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner {
margin: 0;
margin-left: 50px;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner .apply-btn {
background: #21a7d0;
color: #ffffff;
line-height: 1;
padding: 11px 24px;
border-radius: 30px;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner .apply-btn:hover {
background: #1a84a4;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner .nav-expander {
top: 0;
right: 0;
width: 130px;
height: 120px;
line-height: 120px;
background: #21a7d0;
text-align: center;
transform: unset;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner .nav-expander .bar {
display: inline-block;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner .nav-expander:hover {
color: #e6e6e6;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a,
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .categories-btn .cat-btn,
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner li > a {
color: #ffffff;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a:hover,
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .categories-btn .cat-btn:hover,
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
color: #111111 !important;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a:hover i,
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .categories-btn .cat-btn:hover i,
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner li > a:hover i {
color: #111111 !important;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .main-menu .rs-menu ul li.current-menu-item > a {
color: #111111 !important;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .logo-part {
height: 90px;
line-height: 90px;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner {
margin: 0;
margin-left: 50px;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner li.cart-inner {
border-color: #ffffff;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner .apply-btn {
background: #ffffff;
color: #21a7d0;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner .apply-btn:hover {
color: #111111;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner .nav-expander {
height: 90px;
line-height: 90px;
}
.full-width-header.header-style3.modify.home-7-modify2 .rs-header .menu-area .categories-btn .cat-btn {
color: #505050;
}
.full-width-header.header-style3.modify.home-7-modify2 .rs-header .menu-area .categories-btn .cat-btn:hover {
color: #21a7d0;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area {
display: flex;
background: #ffffff;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-part {
left: 0;
height: 120px;
line-height: 120px;
width: 350px;
text-align: center;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap {
float: left;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-btn {
color: #394459;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-btn i {
margin-right: 10px;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-btn:hover i {
color: #4e49a1;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner {
background: #4e49a1;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner li a {
color: #ffffff;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner li a:hover {
color: #21a7d0;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area {
justify-content: flex-end;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
margin-right: 35px;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #394459;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #4e49a1;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #ffffff !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #ccc !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #ccc !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
background: #4e49a1;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li a:hover,
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
color: #4e49a1 !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner {
margin: 0;
margin-left: 50px;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .cart-bottom-part {
background: #4e49a1;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn {
background: #ffffff;
color: #111111;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn:hover {
background: #f2f2f2;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner .apply-btn {
background: #4e49a1;
color: #ffffff;
line-height: 1;
padding: 16px 24px;
border-radius: 30px;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner .apply-btn:hover {
background: #625eaa;
color: #ffffff;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner .nav-expander {
top: 0;
right: 0;
width: 130px;
height: 120px;
line-height: 120px;
background: #4e49a1;
text-align: center;
transform: unset;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner .nav-expander .bar {
display: inline-block;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner .nav-expander:hover {
color: #e6e6e6;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky {
background: #ffffff !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a,
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .categories-btn .cat-btn,
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner li > a {
color: #394459;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a:hover,
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .categories-btn .cat-btn:hover,
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
color: #111111 !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .main-menu .rs-menu ul li.current-menu-item > a {
color: #4e49a1 !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner li.cart-inner {
border-color: #ffffff;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner .apply-btn {
background: #4e49a1;
color: #ffffff;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner .apply-btn:hover {
background: #625eaa;
color: #ffffff !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner .nav-expander {
height: 90px;
line-height: 90px;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area {
background: #ffffff !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #111111 !important;
font-weight: 600 !important;
padding-right: 18px !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
margin-right: none !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #ffffff !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #111111 !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #21a7d0 !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
background: #fff;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area.sticky {
background: #ffffff !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4 {
width: 100%;
z-index: 999;
}
.full-width-header.home8-style4 .rs-header .menu-area {
background: #ffffff !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .logo-part {
position: relative;
z-index: 9;
}
.full-width-header.home8-style4 .rs-header .menu-area .logo-area {
position: relative;
height: 90px;
line-height: 90px;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #111111 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
margin-right: none !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #ffffff !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #111111 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #21a7d0 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
left: unset;
right: 0;
background: #ffffff;
min-width: 770px;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
width: 33.33%;
float: left;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
padding-right: 30px;
padding-left: 30px;
padding-top: 30px;
padding-bottom: 30px;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner .cart-icon i {
font-size: 20px;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li.cart-inner {
border-color: #1c2f5e !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li > a {
color: #111111 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #21a7d0 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .cart-bottom-part {
background: #21a7d0;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn {
background: #ffffff;
color: #111111;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn:hover {
background: #f2f2f2;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner .apply-btn {
background: #21a7d0;
color: #ffffff !important;
font-size: 15px;
line-height: 24px;
padding: 10px 24px;
border-radius: 30px;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner .nav-expander {
color: #111111;
}
.full-width-header.home8-style4 .rs-header .menu-area.sticky {
background: #ffffff !important;
}
.full-width-header.home8-style4 .rs-header .menu-area.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4 .rs-header .right_menu_togle .close-btn #nav-close {
background: #21a7d0;
}
.full-width-header.home8-style4 .rs-header .right_menu_togle .sidebarnav_menu li a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4 .rs-header .right_menu_togle .canvas-contact .social li a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4.main-home {
position: absolute;
top: 0;
left: 0;
width: 100%;
}
.full-width-header.home8-style4.main-home .menu-area {
background: transparent !important;
}
.full-width-header.home8-style4.main-home .menu-area .logo-part .sticky-logo {
display: none;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
margin-right: 45px;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #ffffff !important;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #ffffff !important;
min-width: 250px;
padding-bottom: 30px;
padding-top: 30px;
border-radius: 0px;
border-bottom: 5px solid #21a7d0;
border-color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #111111 !important;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu-toggle {
color: #ffffff !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .logo-part .sticky-logo {
display: block;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .logo-part .normal-logo {
display: none;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #111111 !important;
padding-right: 18px !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
margin-right: none !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner li .cart-icon .cart-count {
background: #21a7d0;
color: #ffffff;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner li > a {
color: #494949;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner li > a i:before {
color: #111111 !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner li > a:hover i:before {
color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner .user-icon > a {
line-height: 90px;
height: 90px;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner .woocommerce-mini-cart {
padding-top: 90px;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner .nav-expander {
color: #111111 !important;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .cart-icon i {
font-size: 20px;
}
.full-width-header.home8-style4.main-home .expand-btn-inner li a i:before {
color: #ffffff !important;
}
.full-width-header.home8-style4.main-home .expand-btn-inner li a:hover i:before {
color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .user-icon > a {
position: relative;
line-height: 120px;
height: 120px;
display: flex;
align-items: center;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .user-icon > a i {
color: #fff;
border: 1px solid #eee;
width: 32px;
display: block;
text-align: center;
border-radius: 50%;
font-size: 14px;
height: 32px;
line-height: 29px;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .user-icon > a i:before {
color: #ffffff;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .nav-expander {
color: #ffffff !important;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .nav-expander:hover {
color: #21a7d0 !important;
}
.full-width-header.home8-style4.main-home .right_menu_togle .close-btn #nav-close {
background: #21a7d0;
}
.full-width-header.home8-style4.main-home .right_menu_togle .sidebarnav_menu li a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4.main-home .right_menu_togle .canvas-contact .social li a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4.home9 {
position: absolute;
top: 0;
left: 0;
width: 100%;
}
.full-width-header.home8-style4.home9 .menu-area {
background: transparent !important;
box-shadow: unset !important;
}
.full-width-header.home8-style4.home9 .menu-area .logo-part .sticky-logo {
display: none;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #ffffff !important;
font-weight: 600 !important;
padding-right: 18px !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
margin-right: none !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #ffffff !important;
min-width: 250px;
padding-bottom: 30px;
padding-top: 30px;
border-radius: 0px;
border-bottom: 5px solid #f4bf00;
border-color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #111111 !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .logo-part .sticky-logo {
display: block;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .logo-part .normal-logo {
display: none;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #111111 !important;
padding-right: 18px !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
margin-right: none !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner li .cart-icon .cart-count {
background: #21a7d0;
color: #ffffff;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner li > a {
color: #494949;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner li > a i:before {
color: #111111 !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner li > a:hover i:before {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner .user-icon > a {
line-height: 90px;
height: 90px;
}
.full-width-header.home8-style4.home9 .expand-btn-inner .cart-icon i {
font-size: 20px;
}
.full-width-header.home8-style4.home9 .expand-btn-inner li a i:before {
color: #ffffff !important;
}
.full-width-header.home8-style4.home9 .expand-btn-inner li a:hover i:before {
color: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .expand-btn-inner li .woocommerce-mini-cart .cart-bottom-part {
background: #f4bf00 !important;
}
.full-width-header.home8-style4.home9 .expand-btn-inner .user-icon > a {
position: relative;
line-height: 120px;
height: 120px;
display: flex;
align-items: center;
}
.full-width-header.home8-style4.home9 .expand-btn-inner .user-icon > a i:before {
color: #ffffff;
}
.full-width-header.home8-style4.home9 .right_menu_togle .close-btn #nav-close {
background: #f4bf00;
}
.full-width-header.home8-style4.home9 .right_menu_togle .sidebarnav_menu li a:hover {
color: #f4bf00;
}
.full-width-header.home8-style4.home9 .right_menu_togle .canvas-contact .social li a:hover {
color: #f4bf00;
}
.full-width-header.home8-style4.home13 .menu-area .rs-menu-area {
justify-content: flex-end;
}
.full-width-header.home8-style4.home13 .menu-area .rs-menu .nav-menu .rs-mega-menu .mega-menu {
background: #fff;
left: unset;
right: 0;
}
.full-width-header.home8-style4.home13 .menu-area .rs-menu .nav-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
width: 33.33%;
float: left;
}
.full-width-header.home8-style4.home13 .menu-area .rs-menu .nav-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
background: unset;
padding-right: 30px;
padding-left: 41px;
}
.full-width-header.home8-style4.home13 .expand-btn-inner {
margin-right: unset;
}
.full-width-header.home8-style4.home13 .expand-btn-inner li a i {
border-right: 1px solid #fff;
padding-right: 24px;
}
.full-width-header.home8-style4.home13 .expand-btn-inner .user-icon > a i {
border: unset;
}
.full-width-header.transparent {
position: absolute;
}
.full-width-header.transparent .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #ffffff !important;
}
.full-width-header.transparent .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.transparent .rs-header .menu-area .expand-btn-inner li.cart-inner {
border-color: #1c2f5e !important;
}
.full-width-header.transparent .rs-header .menu-area .expand-btn-inner li > a {
color: #ffffff !important;
}
.full-width-header.transparent .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #21a7d0;
}
.full-width-header.transparent .rs-header .menu-area.menu-sticky {
background: none;
border-bottom: none;
}
.full-width-header.home7-style4 .rs-header .menu-area {
background: #ffffff !important;
}
.full-width-header.home7-style4 .rs-header .menu-area .logo-cat-wrap .logo-part {
background: red !important;
}
.full-width-header.home7-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #111111 !important;
}
.full-width-header.home7-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
.full-width-header.home7-style4 .rs-header .menu-area .expand-btn-inner .nav-expander {
right: -196px;
position: absolute;
color: #ffffff !important;
background: #21a7d0;
padding: 40px 40px;
}
.full-width-header.home1-modifiy .rs-header .menu-area {
background: #ffffff !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
margin-right: 40px !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
color: #111111 !important;
font-weight: 600 !important;
padding-right: 18px !important;
margin-right: unset !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
margin-right: 0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
color: #21a7d0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
background: #ffffff !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
margin: 0;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
font-weight: 400 !important;
color: #111111 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
color: #21a7d0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
color: #21a7d0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner .cart-icon i {
font-size: 20px;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner li.cart-inner {
border-color: #1c2f5e !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner li > a {
color: #111111 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner li > a:hover {
color: #21a7d0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner .apply-btn {
background: #21a7d0;
color: #ffffff !important;
font-size: 15px;
line-height: 24px;
padding: 10px 24px;
border-radius: 30px;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner .nav-expander {
color: #111111;
}
.full-width-header.home1-modifiy .rs-header .menu-area.sticky {
background: #ffffff !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
color: #21a7d0;
}
body .search-modal .modal-content {
background: transparent;
position: initial;
border: 0;
}
body .search-modal .search-block input {
height: 60px;
line-height: 60px;
padding: 0 15px;
background: transparent;
border-width: 0 0 1px 0;
border-radius: 0;
border-color: rgba(255, 255, 255, 0.4);
box-shadow: none;
color: #ffffff;
font-weight: 600;
font-size: 18px;
}
body .search-modal .close {
color: #ffffff;
margin-top: 20px;
font-size: 14px;
background-color: transparent;
height: 40px;
width: 40px;
text-align: center;
line-height: 40px;
border-radius: 50%;
opacity: 1;
outline: none;
transition: all 0.3s ease;
}
body .search-modal .close:hover {
color: #21a7d0 !important;
opacity: 1 !important;
}
body .modal-backdrop {
opacity: 0.95 !important;
}
/*------------------------------------
04. Sticky Menu CSS
--------------------------------------*/
.menu-sticky {
background: #fff;
margin: 0;
z-index: 999;
width: 100%;
top: 0;
position: relative;
}
@-webkit-keyframes sticky-animation {
0% {
opacity: 0;
-webkit-transform: translateY(-100%);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
}
}
@keyframes sticky-animation {
0% {
opacity: 0;
transform: translateY(-100%);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
/* ------------------------------------
05. Banner Section CSS
---------------------------------------*/
.rs-banner.style1 {
padding: 125px 0 425px;
background: url(assets/images/banner/home1.jpg);
background-size: cover;
background-position: center;
}
.rs-banner.style1 .banner-content {
max-width: 750px;
margin: 0 auto;
}
.rs-banner.style1 .banner-content .banner-title {
font-size: 55px;
margin-bottom: 16px;
}
.rs-banner.style1 .banner-content .desc {
font-size: 20px;
line-height: 30px;
}
.rs-banner.style3 {
background: url(assets/images/banner/home3.jpg);
background-size: cover;
background-position: center;
height: 100vh;
display: grid;
align-items: center;
}
.rs-banner.style3 .banner-content .banner-title {
font-size: 70px;
line-height: 1.2;
margin-bottom: 19px;
}
.rs-banner.style3 .banner-content .banner-desc {
font-size: 18px;
line-height: 30px;
margin-bottom: 41px;
position: relative;
z-index: 9;
}
.rs-banner.style3 .banner-content .banner-btn li {
display: inline;
margin-right: 30px;
}
.rs-banner.style3 .banner-content .banner-btn li:last-child {
margin: 0;
}
.rs-banner.style3 .banner-content .banner-image {
position: absolute;
right: 50px;
top: 50%;
transform: translateY(-50%);
}
.rs-banner.style4 {
background: url(assets/images/banner/home4.jpg);
background-size: cover;
background-position: center;
min-height: 935px;
display: grid;
align-items: center;
}
.rs-banner.style4 .banner-content .banner-title {
font-size: 70px;
line-height: 1.2;
margin-bottom: 5px;
}
.rs-banner.style4 .banner-line-shape {
position: absolute;
top: -205px;
left: -25px;
}
.rs-banner.style4 .banner-circle-shape {
text-align: right;
position: absolute;
bottom: -125px;
right: -15px;
}
.rs-banner.style4 .banner-dots-shape {
position: absolute;
bottom: -220px;
left: -200px;
}
.rs-banner.style5 {
position: relative;
background-color: #f3fafc;
min-height: 750px;
display: grid;
align-items: flex-end;
z-index: 9;
}
.rs-banner.style5 .banner-content {
padding-bottom: 200px;
}
.rs-banner.style5 .banner-content .sub-title {
color: #111111;
font-size: 22px;
line-height: 1.2;
font-weight: 500;
margin-bottom: 20px;
}
.rs-banner.style5 .banner-content .banner-title {
color: #111111;
font-size: 75px;
line-height: 1.2;
margin-bottom: 39px;
}
.rs-banner.style5 .banner-img {
position: absolute;
bottom: 0;
right: 0;
}
.rs-banner.style6 {
background: url(assets/images/banner/home6/bg.png);
background-size: cover;
background-position: center;
margin-bottom: 54px;
}
.rs-banner.style6 .container {
position: relative;
}
.rs-banner.style6 .banner-content {
padding: 232px 0 388px;
}
.rs-banner.style6 .banner-content .banner-title {
font-weight: 700;
line-height: 80px;
font-size: 60px;
}
.rs-banner.style6 .banner-content .desc {
font-size: 18px;
line-height: 30px;
}
.rs-banner.style6 .shape-img {
position: absolute;
bottom: -54px;
}
.rs-banner.style6 .shape-img.left {
left: 15px;
z-index: 1;
}
.rs-banner.style6 .shape-img.center {
left: 50%;
transform: translateX(-50%);
}
.rs-banner.style6 .shape-img.center .inner {
width: 810px;
height: 385px;
margin: 0 auto;
position: relative;
}
.rs-banner.style6 .shape-img.center .inner .spiner {
position: absolute;
content: '';
}
.rs-banner.style6 .shape-img.center .inner .spiner.one {
top: 0;
left: 37%;
}
.rs-banner.style6 .shape-img.center .inner .spiner.one img:nth-child(1) {
position: relative;
right: 4px;
top: 9px;
}
.rs-banner.style6 .shape-img.center .inner .spiner.two {
top: 56%;
left: 0;
}
.rs-banner.style6 .shape-img.center .inner .spiner.two img:nth-child(1) {
max-width: 16px;
}
.rs-banner.style6 .shape-img.center .inner .spiner.two img:nth-child(2) {
position: relative;
right: -3px;
top: -4px;
max-width: 25px;
}
.rs-banner.style6 .shape-img.center .inner .spiner.three {
top: 40%;
right: 0;
}
.rs-banner.style6 .shape-img.center .inner .spiner.three img:nth-child(1) {
max-width: 16px;
position: relative;
top: 29px;
left: 31px;
}
.rs-banner.style6 .shape-img.center .inner .spiner.three img:nth-child(2) {
position: relative;
right: 7px;
top: 1px;
max-width: 25px;
}
.rs-banner.style6 .shape-img.right {
right: 15px;
}
.rs-banner.style7 {
background: url(assets/images/banner/home7/banner-bg.jpg);
background-size: cover;
background-position: center;
position: relative;
min-height: 870px;
}
.rs-banner.style7 .banner-content {
position: relative;
padding: 200px 0;
}
.rs-banner.style7 .banner-content .banner-title {
font-size: 70px;
line-height: 80px;
font-weight: 800;
}
.rs-banner.style7 .icons {
position: absolute;
}
.rs-banner.style7 .icons.one {
top: 136px;
right: 50px;
}
.rs-banner.style7 .icons.two {
left: 50%;
bottom: 100px;
}
.rs-banner.style7 .icons.three {
top: 95px;
left: -160px;
}
.rs-banner.style7 .icons.four {
bottom: 210px;
left: -62px;
}
.rs-banner.style7 .img-part {
position: absolute;
right: 0;
bottom: 88px;
}
.rs-banner.style8 {
background: url(assets/images/banner/home9.jpg);
background-size: cover;
background-position: center;
display: grid;
align-items: center;
min-height: 960px;
}
.rs-banner.style8 .banner-content {
margin-top: 30px;
}
.rs-banner.style8 .banner-content .sl-sub-title {
font-size: 48px;
line-height: 50px;
font-weight: 400;
color: #ffffff;
margin-bottom: 22px;
}
.rs-banner.style8 .banner-content .sl-title {
font-size: 90px;
line-height: 90px;
font-weight: 700;
color: #ffffff;
padding-right: 374px;
margin-bottom: 45px;
}
.rs-banner.style9 {
background: url(assets/images/banner/home11/banner.jpg);
background-size: cover;
display: grid;
align-items: center;
min-height: 880px;
position: relative;
}
.rs-banner.style9 .banner-content {
max-width: 615px;
}
.rs-banner.style9 .banner-content .banner-title {
font-size: 70px;
line-height: 1.3;
color: #4e49a1;
}
.rs-banner.style9 .banner-content .desc {
font-size: 18px;
line-height: 32px;
font-weight: 400;
color: #4e49a1;
}
.rs-banner.style9 .shape-img .spiner {
position: absolute;
bottom: 0;
}
.rs-banner.style9 .shape-img .spiner.one {
top: -40%;
right: 70%;
}
.rs-banner.style9 .shape-img .spiner.two {
left: 56%;
}
.rs-banner.style9 .shape-img .spiner.three {
left: 290px;
bottom: -118px;
}
.rs-banner.style9 .shape-img .spiner.four {
top: 0%;
left: -14%;
}
.rs-banner.style9 .social-icon {
position: absolute;
bottom: 35px;
left: 70px;
}
.rs-banner.style9 .social-icon .icon-cart li {
display: inline;
margin-right: 8px;
}
.rs-banner.style9 .social-icon .icon-cart li a {
display: inline-block;
width: 40px;
height: 40px;
line-height: 44px;
border-radius: 100%;
background: #ffffff;
color: #4e49a1;
text-align: center;
}
.rs-banner.style9 .social-icon .icon-cart li a:hover {
color: #21a7d0;
}
.rs-banner.style9 .social-icon .icon-cart li i {
font-size: 20px;
}
.rs-banner.style10 {
background: url(assets/images/banner/home12/banner-home12.jpg);
background-repeat: no-repeat;
background-size: cover;
display: grid;
align-items: center;
min-height: 820px;
position: relative;
}
.rs-banner.style10 .banner-content {
padding: 120px 0 100px;
}
.rs-banner.style10 .banner-content .sl-sub-title {
font-size: 20px;
line-height: 25px;
font-weight: 400;
color: #0c8b51;
text-transform: uppercase;
padding-bottom: 10px;
}
.rs-banner.style10 .banner-content .sl-title {
font-size: 50px;
line-height: 70px;
font-weight: 800;
color: #171f32;
text-transform: uppercase;
padding-bottom: 10px;
}
.rs-banner.style10 .img-part {
width: 550px;
position: absolute;
top: 70px;
left: 17%;
z-index: 111;
}
.rs-banner.style10 .banner-intro-box .shape-img {
position: absolute;
top: 55px;
left: 45px;
}
.rs-banner.style10 .banner-intro-box .shape-img img {
width: 110px;
}
.rs-banner.style10 .banner-intro-box .intro-img {
position: absolute;
right: 8%;
top: 60px;
}
.rs-banner.style10 .banner-intro-box .intro-img img {
width: 600px;
}
.rs-banner.style11 {
background: url(assets/images/banner/home13/banner.jpg);
background-repeat: no-repeat;
background-size: cover;
position: relative;
display: grid;
align-items: center;
min-height: 950px;
z-index: 1;
}
.rs-banner.style11 .content-part {
padding: 180px 0 100px;
}
.rs-banner.style11 .content-part .sub-title {
font-size: 16px;
line-height: 27px;
font-weight: 400;
color: #21a7d0;
text-transform: uppercase;
display: block;
margin-bottom: 15px;
}
.rs-banner.style11 .content-part .title {
font-size: 70px;
line-height: 75px;
font-weight: 700;
color: #ffffff;
margin-bottom: 32px;
}
.rs-banner.style11 .images-part {
padding-top: 100px;
}
.rs-banner.style11 .images-part img {
max-width: unset;
width: 700px;
}
.rs-banner.style11 .icons-spiner .circle {
top: 18%;
right: 81%;
position: absolute;
}
.rs-banner.style11 .icons-spiner .squre-img {
position: absolute;
right: 60%;
bottom: 20%;
}
.rs-banner.style11 .icons-spiner .dot-img {
position: absolute;
right: 15%;
top: 20%;
z-index: -111;
}
.rs-banner.style12 {
background-color: #F9F7F8;
background-image: url(assets/images/banner/home14/border.png);
background-position: bottom left;
background-repeat: no-repeat;
padding: 100px 0px 100px 0px;
}
.rs-banner.style12 .banner-content .sub-text {
font-size: 16px;
line-height: 27px;
font-weight: 500;
color: #21a7d0;
text-transform: uppercase;
display: block;
margin-bottom: 10px;
}
.rs-banner.style12 .banner-content .title {
font-size: 48px;
line-height: 62px;
font-weight: 800;
color: #101010;
margin-bottom: 30px;
}
.rs-banner.style12 .banner-content .title span {
color: #21a7d0;
}
.rs-banner.style12 .banner-content .desc {
font-size: 20px;
line-height: 32px;
font-weight: 400;
color: #333333;
margin-bottom: 45px;
}
.rs-banner.style12 .banner-content .search-widget .search-wrap {
position: relative;
}
.rs-banner.style12 .banner-content .search-widget .search-wrap [type=search] {
outline: none;
padding: 20px 30px;
border: none;
border-radius: 3px;
box-shadow: none;
padding-right: 77px;
width: 100%;
}
.rs-banner.style12 .banner-content .search-widget .search-wrap button {
background: transparent;
border: medium none;
color: #21a7d0;
padding: 11px 15px 12px;
position: absolute;
display: block;
right: 10px;
top: 10px;
z-index: 10;
font-size: 20px;
font-weight: 700;
}
.rs-banner.style12 .banner-img img {
max-width: unset;
width: 620px;
}
.rs-banner .left-shape {
position: absolute;
top: -30px;
left: 40px;
z-index: -1;
}
.rs-banner .right-shape {
position: absolute;
top: 65px;
right: -90px;
z-index: -1;
}
.rs-banner .bottom-shape {
width: 100%;
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
}
.rs-banner .bottom-shape img {
width: 100%;
}
/* ------------------------------------
06. Slider Section CSS
---------------------------------------*/
.rs-slider.style1 {
position: relative;
}
.rs-slider.style1 .slider-content {
padding: 250px 0;
}
.rs-slider.style1 .slider-content .sl-sub-title {
font-size: 48px;
line-height: 58px;
font-family: 'Nunito', sans-serif;
margin-bottom: 24px;
}
.rs-slider.style1 .slider-content .sl-title {
font-size: 90px;
line-height: 100px;
margin-bottom: 39px;
margin-left: -5px;
}
.rs-slider.style1 .slider-content.slide1 {
background: url(assets/images/slider/h2-1.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.rs-slider.style1 .slider-content.slide2 {
background: url(assets/images/slider/h2-2.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.rs-slider.style1 .owl-nav .owl-next,
.rs-slider.style1 .owl-nav .owl-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
width: 42px;
height: 42px;
line-height: 42px;
border-radius: 50%;
background: #21a7d0;
text-align: center;
color: #ffffff;
transition: all 0.5s;
transition-delay: 0.70s;
opacity: 0;
visibility: hidden;
}
.rs-slider.style1 .owl-nav .owl-next i:before,
.rs-slider.style1 .owl-nav .owl-prev i:before {
content: "\f138";
font-family: Flaticon;
}
.rs-slider.style1 .owl-nav .owl-next {
right: 30px;
left: unset;
}
.rs-slider.style1 .owl-nav .owl-next i:before {
content: "\f137";
}
.rs-slider.style1:hover .owl-nav .owl-next,
.rs-slider.style1:hover .owl-nav .owl-prev {
left: 50px;
transition-delay: 0s;
visibility: visible;
opacity: 1;
}
.rs-slider.style1:hover .owl-nav .owl-next {
right: 50px;
left: unset;
}
.rs-slider.style2 .slide-part {
background: #f9f8f8;
padding: 100px 0 0;
}
.rs-slider.style2 .slide-part .img-part {
margin-bottom: -80px;
overflow: hidden;
}
.rs-slider.style2 .slide-part .content {
padding: 100px 0 100px;
}
.rs-slider.style2 .slide-part .content .title {
font-size: 55px;
line-height: 70px;
font-family: 'Nunito', sans-serif;
margin-bottom: 40px;
color: #031a3d;
}
.rs-slider.style2 .slide-part .content .sub-title {
font-size: 16px;
line-height: 25px;
color: #21a7d0;
margin-bottom: 20px;
text-transform: uppercase;
}
.rs-slider.style2 .owl-nav .owl-next,
.rs-slider.style2 .owl-nav .owl-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
width: 42px;
height: 42px;
line-height: 42px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.1);
cursor: pointer;
text-align: center;
color: #ffffff;
transition: all 0.5s;
transition-delay: 0.70s;
opacity: 0;
visibility: hidden;
}
.rs-slider.style2 .owl-nav .owl-next i:before,
.rs-slider.style2 .owl-nav .owl-prev i:before {
content: "\f138";
font-family: Flaticon;
}
.rs-slider.style2 .owl-nav .owl-next:hover,
.rs-slider.style2 .owl-nav .owl-prev:hover {
background: #21a7d0;
color: #ffffff;
}
.rs-slider.style2 .owl-nav .owl-next {
right: 30px;
left: unset;
}
.rs-slider.style2 .owl-nav .owl-next i:before {
content: "\f137";
}
.rs-slider.style2:hover .owl-nav .owl-next,
.rs-slider.style2:hover .owl-nav .owl-prev {
left: 50px;
transition-delay: 0s;
visibility: visible;
opacity: 1;
}
.rs-slider.style2:hover .owl-nav .owl-next {
right: 50px;
left: unset;
}
.rs-slider.style2 .owl-carousel .owl-stage-outer {
padding: 0 0 80px;
margin: 0 0 -80px;
}
.rs-slider.main-home {
position: relative;
}
.rs-slider.main-home .slider-content {
text-align: center;
}
.rs-slider.main-home .slider-content .content-part {
padding: 250px 35px 400px;
max-width: 900px;
margin: 0 auto;
}
.rs-slider.main-home .slider-content .content-part .sl-sub-title {
font-size: 22px;
line-height: 30px;
font-weight: 500;
color: #21a7d0;
margin-bottom: 22px;
text-transform: uppercase;
}
.rs-slider.main-home .slider-content .content-part .sl-title {
font-size: 70px;
line-height: 80px;
font-weight: 700;
color: #ffffff;
margin-bottom: 65px;
}
.rs-slider.main-home .slider-content.slide1 {
background: url(assets/images/slider/main-home/1.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.rs-slider.main-home .slider-content.slide2 {
background: url(assets/images/slider/main-home/2.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.rs-slider.main-home .owl-nav .owl-next,
.rs-slider.main-home .owl-nav .owl-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
width: 42px;
height: 42px;
line-height: 42px;
border-radius: 50%;
background: #21a7d0;
text-align: center;
color: #ffffff;
transition: all 0.5s;
transition-delay: 0.70s;
opacity: 0;
visibility: hidden;
}
.rs-slider.main-home .owl-nav .owl-next i:before,
.rs-slider.main-home .owl-nav .owl-prev i:before {
content: "\f138";
font-family: Flaticon;
}
.rs-slider.main-home .owl-nav .owl-next:hover,
.rs-slider.main-home .owl-nav .owl-prev:hover {
background: #208cad;
}
.rs-slider.main-home .owl-nav .owl-next {
right: 30px;
left: unset;
}
.rs-slider.main-home .owl-nav .owl-next i:before {
content: "\f137";
}
.rs-slider.main-home:hover .owl-nav .owl-next,
.rs-slider.main-home:hover .owl-nav .owl-prev {
left: 50px;
transition-delay: 0s;
visibility: visible;
opacity: 1;
}
.rs-slider.main-home:hover .owl-nav .owl-next {
right: 50px;
left: unset;
}
/* ------------------------------------
06. Breadcrumbs Section CSS
---------------------------------------*/
.rs-breadcrumbs {
position: relative;
}
.rs-breadcrumbs .breadcrumbs-img img {
width: 100%;
}
.rs-breadcrumbs .breadcrumbs-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
text-align: center;
}
.rs-breadcrumbs .breadcrumbs-text .page-title {
font-size: 48px;
margin-bottom: 20px;
color: #21a7d0;
}
.rs-breadcrumbs .breadcrumbs-text ul {
padding: 0;
}
.rs-breadcrumbs .breadcrumbs-text ul li {
color: #505050;
display: inline-block;
font-size: 16px;
font-weight: 400;
}
.rs-breadcrumbs .breadcrumbs-text ul li a {
position: relative;
padding-right: 30px;
-webkit-transition: 0.3s;
transition: 0.3s;
color: #505050;
}
.rs-breadcrumbs .breadcrumbs-text ul li a:before,
.rs-breadcrumbs .breadcrumbs-text ul li a:after {
background-color: #505050;
content: "";
height: 15px;
width: 2px;
position: absolute;
right: 7px;
top: 2px;
transform: rotate(26deg);
}
.rs-breadcrumbs .breadcrumbs-text ul li a:before {
right: 13px;
}
.rs-breadcrumbs .breadcrumbs-text ul li a:hover {
color: #21a7d0;
}
.rs-breadcrumbs .breadcrumbs-text.white-color .page-title {
color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li {
color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a {
color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a:before,
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a:after {
background-color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a:before {
right: 13px;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a:hover {
color: #21a7d0;
}
.rs-breadcrumbs .breadcrumbs-text.padding {
padding-top: 100px;
}
.breadcrumbs-overlay:after {
content: '';
position: absolute;
background-color: rgba(17, 17, 17, 0.8);
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.breadcrumbs1 {
background-image: url(assets/images/breadcrumbs/1.jpg);
background-size: cover;
background-position: center;
background-position: center top;
}
/* ------------------------------------
07. About Section CSS
---------------------------------------*/
.rs-about .histort-part {
position: absolute;
top: 50%;
right: 0;
transform: translateY(-50%);
border: none;
display: block;
}
.rs-about .histort-part .single-history {
display: block;
margin-bottom: 30px;
}
.rs-about .histort-part .single-history a {
padding: 28px 20px 22px;
box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
border: none;
border-radius: 5px;
width: 230px;
font-size: 20px;
font-weight: 500;
text-align: center;
color: #ffffff;
background: #171F32;
transition: all 0.3s ease;
}
.rs-about .histort-part .single-history a .icon-part {
display: block;
margin-bottom: 15px;
}
.rs-about .histort-part .single-history a .icon-part i:before {
font-size: 45px;
line-height: 1;
color: #ffffff;
}
.rs-about .histort-part .single-history a:hover,
.rs-about .histort-part .single-history a.active {
background: #21a7d0;
}
.rs-about .histort-part .last-item {
margin-bottom: 0;
}
.rs-about .history-list .title {
font-size: 22px;
padding: 0;
margin-bottom: 15px;
font-family: 'Nunito', sans-serif;
font-weight: 700;
color: #111111;
}
.rs-about .history-list .title:before {
display: none;
}
.rs-about .history-list li {
position: relative;
padding-left: 40px;
margin-bottom: 10px;
}
.rs-about .history-list li:before {
content: '';
position: absolute;
top: 10px;
left: 25px;
width: 5px;
height: 5px;
background: #111111;
}
.rs-about .history-list li:last-child {
margin-bottom: 0;
}
.rs-about.style1 .about-part {
background: #e7f4f6;
padding: 60px 60px 70px;
border-radius: 5px;
margin-top: -60px;
}
.rs-about.style1 .about-part .desc {
font-size: 18px;
line-height: 30px;
color: #505050;
}
.rs-about.style1 .about-part .sign-part {
display: flex;
align-items: center;
}
.rs-about.style1 .about-part .sign-part .img-part {
padding-right: 30px;
}
.rs-about.style1 .about-part .sign-part .author-part span {
display: block;
}
.rs-about.style1 .about-part .sign-part .author-part .post {
font-size: 18px;
}
.rs-about.style1 .notice-bord.style1 {
margin-top: -60px;
}
.rs-about.style1 .notice-bord.style1 .title {
background: #21a7d0;
font-size: 20px;
text-transform: uppercase;
padding: 18px 25px;
text-align: center;
font-weight: 600;
color: #ffffff;
margin-bottom: 10px;
}
.rs-about.style1 .notice-bord.style1 li {
position: relative;
background: #e7f4f6;
margin-bottom: 12px;
border-radius: 3px;
padding: 20px;
padding-left: 0 !important;
overflow: hidden;
}
.rs-about.style1 .notice-bord.style1 li .date {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
text-align: center;
color: #21a7d0;
border-right: 1px solid #21a7d0;
padding-right: 10px;
font-weight: 600;
width: 60px;
}
.rs-about.style1 .notice-bord.style1 li .date span {
font-size: 22px;
font-family: 'Nunito', sans-serif;
display: block;
}
.rs-about.style1 .notice-bord.style1 li .desc {
padding-left: 95px;
font-weight: 500;
}
.rs-about.style1 .notice-bord.style1 li:last-child {
margin-bottom: 0;
}
.rs-about.style1 .img-part {
position: relative;
}
.rs-about.style1 .img-part .shape {
position: absolute;
}
.rs-about.style1 .img-part .top-center {
top: -30px;
left: 49%;
z-index: -1;
}
.rs-about.style1 .img-part .left-bottom {
left: 0;
bottom: 0;
}
.rs-about.style1 .img-part .left-bottom.second {
bottom: -40px;
}
.rs-about.style2 .about-intro {
border-radius: 3px;
background: url(assets/images/bg/about-intro-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
padding: 88px 50px 95px;
box-shadow: 0 0 20px 0px rgba(17, 41, 88, 0.2);
}
.rs-about.style2 .couter-area .counter-item {
text-align: center;
padding: 34px 15px;
border-radius: 3px;
}
.rs-about.style2 .couter-area .counter-item .number {
margin-bottom: 7px;
font-size: 42px;
}
.rs-about.style2 .couter-area .counter-item .title {
font-size: 22px;
color: #394459;
}
.rs-about.style2 .couter-area .counter-item.one {
background: #fbf8cc;
}
.rs-about.style2 .couter-area .counter-item.two {
background: #e9fbd5;
}
.rs-about.style2 .couter-area .counter-item.three {
background: #dcf1fd;
}
.rs-about.style2 .grid-area .image-grid img {
border-radius: 3px;
}
.rs-about.style3 .couter-area .counter-item {
text-align: center;
padding: 34px 15px;
border-radius: 10px;
}
.rs-about.style3 .couter-area .counter-item .count-img {
display: block;
margin: 0 auto 23px;
}
.rs-about.style3 .couter-area .counter-item .number {
margin-bottom: 7px;
font-size: 42px;
color: #111111;
}
.rs-about.style3 .couter-area .counter-item .title {
font-size: 22px;
color: #505050;
}
.rs-about.style3 .couter-area .counter-item.one {
background: #fbf8cc;
}
.rs-about.style3 .couter-area .counter-item.two {
background: #e9fbd5;
}
.rs-about.style3 .couter-area .counter-item.three {
background: #dcf1fd;
}
.rs-about.style4 .img-part {
position: relative;
}
.rs-about.style4 .img-part .about-main {
position: relative;
z-index: 9;
}
.rs-about.style4 .img-part .shape {
position: absolute;
z-index: -1;
left: 0;
bottom: 0;
}
.rs-about.style4 .img-part .circle-bg {
z-index: 1;
}
.rs-about.style4 .about-content .title {
font-size: 36px;
font-weight: 800;
}
.rs-about.style4 .about-content .sub-title {
color: #54647b;
font-size: 20px;
font-weight: 500;
text-transform: capitalize;
margin-bottom: 20px;
}
.rs-about.style4 .about-content .contact-part li {
display: inline-flex;
align-items: center;
margin: 0 30px 0 0;
float: left;
}
.rs-about.style4 .about-content .contact-part li span {
display: block;
}
.rs-about.style4 .about-content .contact-part li .img-part {
float: left;
width: 70px;
height: 70px;
line-height: 60px;
border-radius: 50%;
border: 5px solid #e5e8eb;
text-align: center;
margin-right: 30px;
}
.rs-about.style4 .about-content .contact-part li .desc {
font-size: 18px;
font-weight: 500;
color: #54647b;
}
.rs-about.style4 .about-content .contact-part li .desc span a {
font-size: 24px;
color: #111111;
}
.rs-about.style4 .about-content .contact-part li .desc a {
color: #031a3d;
font-size: 24px;
font-weight: bold;
margin-top: 10px;
display: block;
}
.rs-about.style4 .about-content .contact-part li .desc a:hover {
color: #21a7d0;
}
.rs-about.style4 .about-content .contact-part li:last-child {
margin: 0;
}
.rs-about.style4 .about-content .book-part {
position: absolute;
right: 0;
bottom: -25px;
width: 775px;
}
.rs-about.style4 .about-content .book-part .single-book {
padding: 20px 60px;
background: #f3f8f9;
float: left;
}
.rs-about.style5 {
background-image: url(assets/images/bg/about-bg.jpg);
background-size: cover;
background-position: center;
}
.rs-about.style5 .about-content .title {
font-size: 42px;
font-weight: 800;
}
.rs-about.style5 .about-content .sub-title {
color: #505050;
font-size: 20px;
font-weight: 500;
text-transform: capitalize;
margin-bottom: 20px;
}
.rs-about.style5 .about-content .contact-part li {
position: relative;
margin-bottom: 40px;
}
.rs-about.style5 .about-content .contact-part li span {
display: block;
}
.rs-about.style5 .about-content .contact-part li .img-part {
position: absolute;
left: 0;
width: 70px;
height: 70px;
line-height: 60px;
border-radius: 50%;
border: 5px solid #e5e8eb;
text-align: center;
margin-right: 30px;
}
.rs-about.style5 .about-content .contact-part li .desc {
font-size: 18px;
font-weight: 500;
color: #505050;
padding-left: 95px;
}
.rs-about.style5 .about-content .contact-part li .desc p {
color: #031a3d;
font-size: 24px;
font-weight: bold;
margin: 10px 0 0;
}
.rs-about.style5 .about-content .contact-part li .desc a {
color: #111111;
font-size: 24px;
font-weight: bold;
margin-top: 10px;
display: block;
}
.rs-about.style5 .about-content .contact-part li .desc a:hover {
color: #21a7d0;
}
.rs-about.style5 .about-content .contact-part li .desc .address {
color: #111111;
font-size: 22px;
font-weight: bold;
margin-top: 10px;
display: block;
}
.rs-about.style5 .about-content .contact-part li:last-child {
margin-bottom: 0;
}
.rs-about.style6 .desc {
font-size: 16px;
color: #505050;
font-weight: 400;
}
.rs-about.style6 .shape-animate {
position: relative;
}
.rs-about.style6 .shape-animate .transparent {
position: absolute;
}
.rs-about.style6 .shape-animate .transparent.left {
left: 27%;
}
.rs-about.style6 .shape-animate .transparent.right {
right: 20%;
}
.rs-about.style9 .content .sub-title {
font-size: 18px;
line-height: 28px;
font-weight: 500;
color: #f4bf00;
text-transform: uppercase;
}
.rs-about.style9 .content .sl-title {
font-size: 36px;
line-height: 45px;
font-weight: 700;
color: #111111;
}
.rs-about.style9 .content .desc {
font-size: 18px;
line-height: 28px;
font-weight: 400;
color: #505050;
}
.rs-about.video-style {
position: relative;
}
.rs-about.video-style .icon-shape {
position: absolute;
top: -130px;
left: -130px;
}
.rs-about.video-style .dot-shape {
position: absolute;
right: -90px;
bottom: 30px;
}
.rs-about.video-style .about-content {
padding: 70px 70px 70px 160px;
margin-left: -120px;
margin-top: -70px;
}
.rs-about.video-img {
background: url(assets/images/video/bg.png);
background-repeat: no-repeat;
background-position: center top;
background-size: cover;
border-radius: 10px;
position: relative;
padding-bottom: 500px;
}
.rs-about.video-img .shape-img {
position: absolute;
bottom: 0;
}
.rs-about.video-img .shape-img.left {
left: 100px;
}
.rs-about.video-img .shape-img.center {
left: 50%;
transform: translateX(-50%);
}
.rs-about.video-img .shape-img.right {
right: 100px;
}
.rs-about.style8 .main-content {
padding: 40px 33px;
background: #f9f8f8;
position: relative;
border-radius: 6px;
}
.rs-about.style8 .main-content .img-part {
position: absolute;
left: -240px;
top: -50px;
z-index: 111;
}
.rs-about.style8 .main-content .img-part img {
border-radius: 6px;
}
.rs-about.style8 .main-content .images-title img {
border-radius: 6px;
}
.rs-about.style9 .content-part {
background-color: #F9F8F8;
padding: 65px 30px 70px 100px;
position: relative;
}
.rs-about.style9 .content-part .about-img {
position: absolute;
z-index: 111;
left: -480px;
top: 83px;
}
.rs-about.style9 .content-part .about-img img {
border-radius: 6px;
}
.rs-about.orange-color .histort-part .single-history .icon-part i:before {
color: #21a7d0;
}
.rs-about.style10 {
position: relative;
}
.rs-about.style10 .shape-icons .shape {
position: absolute;
bottom: 0;
}
.rs-about.style10 .shape-icons .shape.one {
right: 49%;
bottom: 28%;
}
.rs-about.style10 .shape-icons .shape.two {
top: 19%;
left: 23%;
}
/* ------------------------------------
08. Services Section CSS
---------------------------------------*/
.rs-services.style1 .service-item {
position: relative;
overflow: hidden;
}
.rs-services.style1 .service-item .scale-img {
transition: all 0.3s ease;
transform: scale(1);
}
.rs-services.style1 .service-item .content-part {
position: absolute;
content: '';
top: 50%;
transform: translateY(-50%);
width: 100%;
z-index: 1;
text-align: center;
}
.rs-services.style1 .service-item .content-part i {
font-size: 40px;
color: #ffffff;
}
.rs-services.style1 .service-item .content-part i:before {
font-size: 40px;
}
.rs-services.style1 .service-item .content-part .title {
font-size: 22px;
margin: 17px 0 0 0;
}
.rs-services.style1 .service-item .content-part .title a {
color: #ffffff;
}
.rs-services.style1 .service-item .content-part .title a:hover {
opacity: 0.8;
}
.rs-services.style1 .service-item:after {
position: absolute;
content: '';
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #273c66;
opacity: 0.9;
}
.rs-services.style1 .service-item.overly1:after {
background: #273c66;
}
.rs-services.style1 .service-item.overly2:after {
background: #21a7d0;
}
.rs-services.style1 .service-item.overly3:after {
background: #772bea;
}
.rs-services.style1 .service-item.overly4:after {
background: #16aaca;
}
.rs-services.style1 .service-item:hover .scale-img {
transform: scale(1.1);
}
.rs-services.style2 .service-item {
text-align: center;
background: #f3fafc;
}
.rs-services.style2 .service-item .content-part {
position: unset;
transform: unset;
padding: 60px 35px 50px;
}
.rs-services.style2 .service-item .content-part .icon-part i {
color: #21a7d0;
}
.rs-services.style2 .service-item .content-part .icon-part i:before {
font-size: 75px;
}
.rs-services.style2 .service-item .content-part .title {
font-size: 22px;
margin: 20px 0 0 0;
}
.rs-services.style2 .service-item .content-part .title a {
color: #111111;
}
.rs-services.style2 .service-item .content-part .title a:hover {
color: #21a7d0;
}
.rs-services.style2 .service-item .content-part .desc {
margin-bottom: 15px;
margin-top: 5px;
}
.rs-services.style2 .service-item .content-part .service-btn {
position: relative;
padding-right: 20px;
color: #111111;
}
.rs-services.style2 .service-item .content-part .service-btn i {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
transition: all 0.3s ease;
}
.rs-services.style2 .service-item .content-part .service-btn:hover {
color: #21a7d0;
}
.rs-services.style2 .service-item .content-part .service-btn:hover i {
right: -5px;
}
.rs-services.style6 .services-wrap {
text-align: center;
padding: 50px 30px 50px;
border-radius: 10px;
}
.rs-services.style6 .services-wrap .services-item {
transition: all .8s ease;
position: relative;
}
.rs-services.style6 .services-wrap .services-item .services-desc .title {
font-size: 22px;
line-height: 26px;
margin-top: 20px;
margin-bottom: 20px;
}
.rs-services.style6 .services-wrap .services-item .services-desc .title a {
color: #111111;
}
.rs-services.style6 .services-wrap .services-item .services-desc .title a:hover {
color: #21a7d0;
transition: all 0.3s ease;
}
.rs-services.style6 .services-wrap .services-item .services-desc p {
font-size: 16px;
line-height: 26px;
font-weight: 400;
color: #505050;
margin: 0;
}
.rs-services.style6 .services-wrap.bg1 {
background: #fdfcdb;
}
.rs-services.style6 .services-wrap.bg2 {
background: #fbe7e4;
}
.rs-services.style6 .services-wrap.bg3 {
background: #e7f6fa;
}
.rs-services.style6 .services-wrap.bg4 {
background: #f3e9fe;
}
.rs-services.style6 .services-wrap:hover .services-item {
transform: translateY(-10px);
}
.rs-services.style6 .services-wrap:hover .services-item .services-desc .title a {
color: #21a7d0;
}
.rs-services.style7 .services-item {
position: relative;
}
.rs-services.style7 .services-item .img-part img {
width: 100%;
}
.rs-services.style7 .services-item .content-part {
position: absolute;
top: 0;
left: 0;
padding: 50px 30px;
border-radius: 4px;
transition: all 0.3s ease;
}
.rs-services.style7 .services-item .content-part .title {
font-size: 22px;
line-height: 32px;
margin-bottom: 20px;
}
.rs-services.style7 .services-item .content-part .title a {
color: #ffffff;
}
.rs-services.style7 .services-item .content-part .title a:hover {
color: #21a7d0;
transition: all 0.3s ease;
}
.rs-services.style7 .services-item .content-part .desc {
font-size: 16px;
line-height: 26px;
font-weight: 400;
color: #ffffff;
margin: 0;
}
.rs-services.style7 .services-item:hover .content-part {
top: -10px;
}
.rs-services.home12-style {
background: url(assets/images/bg/home12/services-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
padding: 150px 0;
}
.rs-services.home12-style .services-item {
padding: 45px 15px 40px 15px;
text-align: center;
background: #ffffff;
box-shadow: 0 0 30px #eee;
}
.rs-services.home12-style .services-item .services-image .services-icons {
padding-bottom: 20px;
}
.rs-services.home12-style .services-item .services-image .services-icons img {
width: 100px;
}
.rs-services.home12-style .services-item .services-image .services-text .services-title .title {
font-size: 24px;
line-height: 36px;
font-weight: 700;
color: #171f32;
padding-bottom: 15px;
margin: 0;
}
.rs-services.home12-style .services-item .services-image .services-text .text {
font-size: 16px;
line-height: 27px;
font-weight: 400;
color: #363636;
margin: 0;
padding-bottom: 10px;
}
.rs-services.home12-style .services-item:hover .services-image .services-text .services-title .title {
color: #0c8b51;
}
/* ------------------------------------
09. Subject Section CSS
---------------------------------------*/
.rs-subject.style1 .subject-wrap {
text-align: center;
background: #d3fcf8;
border-radius: 10px;
padding: 50px 30px 45px;
}
.rs-subject.style1 .subject-wrap img {
transition: all 0.3s ease;
transform: translateY(0);
}
.rs-subject.style1 .subject-wrap .title {
margin: 20px 0 5px 0;
}
.rs-subject.style1 .subject-wrap .title a {
color: #111111;
}
.rs-subject.style1 .subject-wrap .title a:hover {
opacity: .8;
}
.rs-subject.style1 .subject-wrap:hover img {
transition: all 0.3s ease;
transform: translateY(-7px);
}
.rs-subject.style1 .subject-wrap.bgc1 {
background: #d3fcf8;
}
.rs-subject.style1 .subject-wrap.bgc2 {
background: #16aaca;
}
.rs-subject.style1 .subject-wrap.bgc3 {
background: #f9e8e8;
}
.rs-subject.style1 .subject-wrap.bgc4 {
background: #f8f6d1;
}
.rs-subject.style1 .subject-wrap.bgc5 {
background: #eaddf8;
}
.rs-subject.style1 .subject-wrap.bgc6 {
background: #e9fbd5;
}
.rs-subject.style1 .subject-wrap.text-light {
color: #ffffff;
}
.rs-subject.style1 .subject-wrap.text-light .title a {
color: #ffffff;
}
/* ------------------------------------
10. Categories Section CSS
---------------------------------------*/
.rs-categories.style1 .categories-item {
border: 1px solid #dfe9eb;
background: #ffffff;
overflow: hidden;
padding: 30px;
display: block;
color: #505050;
border-radius: 5px;
display: flex;
align-items: center;
}
.rs-categories.style1 .categories-item .icon-part {
float: left;
margin-right: 25px;
width: 70px;
height: 70px;
line-height: 70px;
border-radius: 100%;
background: rgba(22, 170, 202, 0.2);
text-align: center;
transition: all 0.3s ease;
}
.rs-categories.style1 .categories-item .icon-part img {
-webkit-transition: all 0.4s ease;
transform: scale(1);
}
.rs-categories.style1 .categories-item .content-part .title {
color: #111111;
margin-bottom: 5px;
font-size: 22px;
transition: all 0.3s ease;
}
.rs-categories.style1 .categories-item:hover {
background: #21a7d0;
color: #ffffff;
border-color: #21a7d0;
}
.rs-categories.style1 .categories-item:hover .icon-part {
background: #ffffff;
}
.rs-categories.style1 .categories-item:hover .icon-part img {
transform: scale(0.9);
}
.rs-categories.style1 .categories-item:hover .content-part .title {
color: #ffffff;
}
.rs-categories.main-home .categories-items {
position: relative;
transition: all 0.3s ease;
}
.rs-categories.main-home .categories-items .cate-images a img {
box-shadow: 0 0 30px #eee;
background: #fff;
border-radius: 0 0 5px 5px;
position: relative;
transition: all 500ms ease;
border-radius: 5px;
}
.rs-categories.main-home .categories-items .contents {
position: absolute;
left: 0px;
z-index: 3;
width: 100%;
text-align: left;
transition: all 500ms ease;
padding: 30px 40px;
bottom: 0;
display: flex;
align-items: center;
}
.rs-categories.main-home .categories-items .contents .img-part img {
width: 42px;
margin: 0 20px 8px 0;
}
.rs-categories.main-home .categories-items .contents .content-wrap .title {
font-size: 22px;
line-height: 32px;
font-weight: 700;
margin-bottom: 5px;
}
.rs-categories.main-home .categories-items .contents .content-wrap .title a {
color: #ffffff;
}
.rs-categories.main-home .categories-items .contents .content-wrap .title a:hover {
color: #21a7d0;
}
.rs-categories.main-home .categories-items .contents .content-wrap .course-qnty {
font-size: 16px;
line-height: 1.4;
font-weight: 400;
color: #ffffff;
transition: all 500ms ease;
margin: 0px;
}
.rs-categories.main-home .categories-items:before {
content: "";
background: -moz-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 50%);
background: linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 50%);
background: -webkit-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 50%);
width: 100%;
height: 100%;
position: absolute;
top: 0;
z-index: 0;
border-radius: 5px;
transition: all 500ms ease;
z-index: 1;
}
.rs-categories.main-home .categories-items:hover {
transform: translateY(-10px);
}
.rs-categories.home9-style .categories-items {
position: relative;
transition: all 0.3s ease;
}
.rs-categories.home9-style .categories-items .images-part a img {
border-radius: 4px 4px 0px 0px;
}
.rs-categories.home9-style .categories-items .image-content {
border-radius: 0px 0px 4px 4px;
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.18);
padding: 70px 30px 25px 40px;
background-color: #ffffff;
position: relative;
}
.rs-categories.home9-style .categories-items .image-content .effect-icon {
background: #1c335e;
border-radius: 50%;
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 0;
top: -44px;
text-align: center;
right: 0;
margin: 0 auto;
box-shadow: 0 0 50px #eee;
}
.rs-categories.home9-style .categories-items .image-content .effect-icon i {
color: #f4bf00;
font-size: 35px;
}
.rs-categories.home9-style .categories-items .image-content .title {
font-size: 25px;
line-height: 32px;
font-weight: 700;
color: #101010;
margin-bottom: 17px;
}
.rs-categories.home9-style .categories-items .image-content .title a {
color: #101010;
}
.rs-categories.home9-style .categories-items .image-content .title a:hover {
color: #f4bf00;
}
.rs-categories.home9-style .categories-items .image-content .description p {
font-weight: 400;
color: #505050;
font-size: 16px;
padding-right: 50px;
}
.rs-categories.home9-style .categories-items .image-content .button-bottom .button-effect {
position: absolute;
left: 50%;
bottom: -14px;
transform: translateX(-50%);
transition: all .8s ease;
width: 100%;
text-align: center;
visibility: hidden;
opacity: 0;
}
.rs-categories.home9-style .categories-items .image-content .button-bottom .button-effect a {
text-transform: uppercase;
color: #1c335f;
padding: 13px 35px 13px 35px;
background-color: #f4bf00;
border-radius: 30px 30px 30px 30px;
}
.rs-categories.home9-style .categories-items .image-content .button-bottom .button-effect a:hover {
color: #ffffff;
background: #1c335f;
}
.rs-categories.home9-style .categories-items:hover {
transform: translateY(-10px);
}
.rs-categories.home9-style .categories-items:hover .image-content .title a {
color: #f4bf00;
}
.rs-categories.home9-style .categories-items:hover .image-content .button-bottom .button-effect {
opacity: 1;
visibility: visible;
}
.rs-categories.home11-style {
background-position: center;
}
.rs-categories.home11-style .img-part {
background: url(assets/images/categories/home11/1.jpg);
background-size: cover;
background-repeat: no-repeat;
}
.rs-categories.home11-style .main-part {
background: #e7f8fb;
padding: 100px 300px 100px 70px;
}
.rs-categories.home11-style .main-part .categories-item {
display: flex;
}
.rs-categories.home11-style .main-part .categories-item .icon-part {
margin-right: 15px;
}
.rs-categories.home11-style .main-part .categories-item .content-part .title {
font-size: 22px;
line-height: 32px;
font-weight: 800;
margin-bottom: 10px;
}
.rs-categories.home11-style .main-part .categories-item .content-part .title a {
color: #4e49a1;
}
.rs-categories.home11-style .main-part .categories-item .content-part .title a:hover {
color: #21a7d0;
}
.rs-categories.home11-style .main-part .categories-item .content-part p {
font-size: 16px;
line-height: 30px;
font-weight: 400;
color: #54647b;
margin: 0;
}
.rs-categories.home-style14 .categories-items {
position: relative;
transition: all 0.3s ease;
overflow: hidden;
}
.rs-categories.home-style14 .categories-items .cate-images {
position: relative;
transition: all 500ms ease;
}
.rs-categories.home-style14 .categories-items .cate-images:before {
content: "";
left: 0;
display: block;
background: rgba(23, 31, 50, 0.5);
width: 100%;
height: 100%;
position: absolute;
top: 0;
z-index: 1;
border-radius: 5px;
}
.rs-categories.home-style14 .categories-items .cate-images a img {
box-shadow: 0 0 30px #eee;
background: #fff;
border-radius: 0 0 5px 5px;
position: relative;
transition: all 500ms ease;
border-radius: 5px;
}
.rs-categories.home-style14 .categories-items .contents {
position: absolute;
left: 50%;
bottom: -185px;
z-index: 3;
width: 100%;
text-align: center;
transform: translate(-50%, -50%);
transition: all 500ms ease;
padding: 26px 20px 20px 20px;
}
.rs-categories.home-style14 .categories-items .contents .img-part img {
width: 42px;
margin: 0 0px 15px 0;
}
.rs-categories.home-style14 .categories-items .contents .content-wrap .title {
font-size: 22px;
line-height: 32px;
font-weight: 700;
margin-bottom: 5px;
}
.rs-categories.home-style14 .categories-items .contents .content-wrap .title a {
color: #ffffff;
}
.rs-categories.home-style14 .categories-items .contents .content-wrap .title a:hover {
color: #21a7d0;
}
.rs-categories.home-style14 .categories-items .contents .content-wrap .course-qnty {
color: #fff;
opacity: 0;
visibility: hidden;
transition: all 500ms ease;
margin: 7px 0;
display: inline-block;
}
.rs-categories.home-style14 .categories-items .contents .content-wrap .btn2 a {
opacity: 0;
visibility: hidden;
transition: all 500ms ease;
margin-top: 12px;
background: #21a7d0;
color: #fff;
display: inline-block;
padding: 6px 22px;
border-radius: 5px;
}
.rs-categories.home-style14 .categories-items:hover {
transform: translateY(-10px);
}
.rs-categories.home-style14 .categories-items:hover .contents {
bottom: -80px;
}
.rs-categories.home-style14 .categories-items:hover .contents .content-wrap .course-qnty {
visibility: visible;
opacity: 1;
}
.rs-categories.home-style14 .categories-items:hover .contents .content-wrap .btn2 a {
visibility: visible;
opacity: 1;
}
/* ------------------------------------
11. Popular Courses Section CSS
---------------------------------------*/
.rs-popular-courses.style1 .courses-item {
padding: 30px;
border: 4px solid #203154;
border-radius: 5px;
transition: all 0.3s ease;
}
.rs-popular-courses.style1 .courses-item .img-part {
margin-bottom: 30px;
}
.rs-popular-courses.style1 .courses-item .img-part img {
width: 100%;
border-radius: 5px;
transition: all 0.3s ease;
}
.rs-popular-courses.style1 .courses-item .content-part .meta-part {
margin-bottom: 17px;
}
.rs-popular-courses.style1 .courses-item .content-part .meta-part li {
display: inline;
margin-right: 10px;
}
.rs-popular-courses.style1 .courses-item .content-part .meta-part li span.price {
display: inline-block;
padding: 3px 20px;
color: #ffffff;
font-weight: 500;
background: #21a7d0;
border-radius: 3px;
transition: all 0.3s ease;
}
.rs-popular-courses.style1 .courses-item .content-part .meta-part li a.categorie {
color: #505050;
}
.rs-popular-courses.style1 .courses-item .content-part .meta-part li:last-child {
margin: 0;
}
.rs-popular-courses.style1 .courses-item .content-part .title {
font-size: 24px;
}
.rs-popular-courses.style1 .courses-item .content-part .title a {
color: #111111;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part {
overflow: hidden;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .info-meta {
float: left;
padding-top: 10px;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .info-meta li {
display: inline;
margin-right: 15px;
transition: all 0.3s ease;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .info-meta li.user i {
color: #505050;
margin-right: 8px;
transition: all 0.3s ease;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .info-meta li.ratings i {
color: #fcb903;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .info-meta li:last-child {
margin: 0;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .btn-part {
text-align: right;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .btn-part a {
padding: 5px 13px;
background: #f3f8f9;
border: 1px solid #21a7d0;
display: inline-block;
border-radius: 3px;
color: #111111;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .btn-part a i:before {
font-size: 18px;
font-weight: 700;
}
.rs-popular-courses.style1.modify1 .courses-item {
overflow: hidden;
transition: all 0.3s ease;
}
.rs-popular-courses.style1.modify1 .courses-item .img-part {
overflow: hidden;
margin-bottom: 35px;
border-radius: 4px;
}
.rs-popular-courses.style1.modify1 .courses-item .img-part img {
transition: all 500ms ease;
transform: scale(1);
}
.rs-popular-courses.style1.modify1 .courses-item .content-part .title {
font-size: 22px;
line-height: 32px;
font-weight: 700;
margin-bottom: 12px;
}
.rs-popular-courses.style1.modify1 .courses-item .content-part .title a {
color: #111111;
}
.rs-popular-courses.style1.modify1 .courses-item .content-part .title a:hover {
color: #21a7d0;
}
.rs-popular-courses.style1.modify1 .courses-item:hover .img-part img {
transform: scale(1.1);
}
.rs-popular-courses.style2 .course-wrap {
background: #c7e8f0;
position: relative;
border-radius: 10px;
text-align: center;
transition: all 0.3s ease;
overflow: hidden;
padding: 30px;
}
.rs-popular-courses.style2 .course-wrap .front-part {
z-index: 1;
position: relative;
transition: all 0.3s ease;
opacity: 1;
visibility: visible;
}
.rs-popular-courses.style2 .course-wrap .front-part .img-part {
margin-bottom: 21px;
}
.rs-popular-courses.style2 .course-wrap .front-part .content-part a.categorie {
color: #505050;
}
.rs-popular-courses.style2 .course-wrap .front-part .content-part .title {
margin: 7px 0 0 0;
}
.rs-popular-courses.style2 .course-wrap .front-part .content-part .title a {
color: #111111;
}
.rs-popular-courses.style2 .course-wrap .inner-part {
z-index: 1;
position: absolute;
top: 40%;
left: 0;
width: 100%;
padding: 0 30px;
transform: translateY(-50%);
transition: all 0.3s ease;
opacity: 0;
visibility: hidden;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part a.categorie {
color: #ffffff;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part a.categorie:hover {
color: #111111;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .title {
margin: 10px 0 25px;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .title a {
color: #ffffff;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .title a:hover {
color: #111111;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .course-meta li {
color: #ffffff;
display: inline;
margin-right: 15px;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .course-meta li.course-user i {
margin-right: 6px;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .course-meta li.ratings i {
margin-right: 3px;
color: #fcb903;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .course-meta li:last-child {
margin: 0;
}
.rs-popular-courses.style2 .course-wrap .price-btn {
position: absolute;
bottom: 0;
padding-bottom: 50px;
left: 50%;
transform: translateX(-50%);
transition: all 0.3s ease;
opacity: 0;
visibility: hidden;
}
.rs-popular-courses.style2 .course-wrap .price-btn a {
font-weight: 500;
background: #ffffff;
border-radius: 3px;
color: #111111;
display: inline-block;
padding: 5px 5px 5px 10px;
}
.rs-popular-courses.style2 .course-wrap .price-btn a i {
padding-left: 5px;
}
.rs-popular-courses.style2 .course-wrap .price-btn a i:before {
font-size: 15px;
color: #ffffff;
width: 41px;
height: 30px;
line-height: 30px;
text-align: center;
background: #21a7d0;
display: inline-block;
border-radius: 3px;
transition: all 0.3s ease;
}
.rs-popular-courses.style2 .course-wrap .price-btn a:hover i:before {
background: #111111;
}
.rs-popular-courses.style2 .course-wrap:after,
.rs-popular-courses.style2 .course-wrap:before {
position: absolute;
content: '';
border-radius: 50%;
transition: all 0.3s ease;
z-index: 0;
background: #b5e2ec;
}
.rs-popular-courses.style2 .course-wrap:after {
width: 146px;
height: 146px;
left: -73px;
bottom: 70px;
}
.rs-popular-courses.style2 .course-wrap:before {
width: 412px;
height: 412px;
right: -133px;
top: -80px;
}
.rs-popular-courses.style2 .course-wrap:hover {
background: #16aaca;
}
.rs-popular-courses.style2 .course-wrap:hover .front-part {
opacity: 0;
visibility: hidden;
}
.rs-popular-courses.style2 .course-wrap:hover .inner-part,
.rs-popular-courses.style2 .course-wrap:hover .price-btn {
opacity: 1;
visibility: visible;
}
.rs-popular-courses.style2 .course-wrap:hover:after,
.rs-popular-courses.style2 .course-wrap:hover:before {
background: #1ca6c7;
}
.rs-popular-courses.style3 .courses-item {
border: 1px solid #dfe9eb;
transition: all 0.3s ease;
}
.rs-popular-courses.style3 .courses-item .img-part img {
width: 100%;
transition: all 0.3s ease;
}
.rs-popular-courses.style3 .courses-item .content-part {
position: relative;
padding: 40px 25px;
}
.rs-popular-courses.style3 .courses-item .content-part a.categories {
display: inline-block;
padding: 0 15px;
height: 40px;
line-height: 40px;
color: #ffffff;
font-weight: 500;
background: #21a7d0;
border-radius: 3px;
transition: all 0.3s ease;
position: absolute;
top: -20px;
}
.rs-popular-courses.style3 .courses-item .content-part .meta-part {
margin-bottom: 17px;
}
.rs-popular-courses.style3 .courses-item .content-part .meta-part li {
display: inline;
margin-right: 10px;
font-weight: 700;
}
.rs-popular-courses.style3 .courses-item .content-part .meta-part li:last-child {
margin: 0;
}
.rs-popular-courses.style3 .courses-item .content-part .title a {
color: #111111;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part {
overflow: hidden;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .info-meta {
float: left;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .info-meta li {
display: inline;
margin-right: 15px;
transition: all 0.3s ease;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .info-meta li.ratings i {
color: #fcb903;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .info-meta li:last-child {
margin: 0;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .btn-part {
text-align: right;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .btn-part a {
color: #505050;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .btn-part a i:before {
font-size: 18px;
font-weight: 700;
padding-left: 10px;
}
.rs-popular-courses.style4 .sec-title .title {
font-weight: 800;
}
.rs-popular-courses.style4 .sec-title .sub-title {
text-transform: capitalize;
font-size: 20px;
font-weight: 500;
color: #485973;
}
.rs-popular-courses.style4 .courses-item {
border: 1px solid #dfe9eb;
transition: all 0.3s ease;
}
.rs-popular-courses.style4 .courses-item .img-part img {
width: 100%;
transition: all 0.3s ease;
}
.rs-popular-courses.style4 .courses-item .content-part {
position: relative;
padding: 40px 25px;
}
.rs-popular-courses.style4 .courses-item .content-part .price {
display: inline-block;
padding: 0 15px;
height: 40px;
line-height: 40px;
color: #ffffff;
font-weight: 500;
background: #21a7d0;
border-radius: 3px;
transition: all 0.3s ease;
position: absolute;
top: -20px;
left: 50%;
transform: translateX(-50%);
}
.rs-popular-courses.style4 .courses-item .content-part a.categories {
color: #485973;
display: inline-block;
margin-bottom: 10px;
}
.rs-popular-courses.style4 .courses-item .content-part .meta-part {
margin-bottom: 17px;
}
.rs-popular-courses.style4 .courses-item .content-part .meta-part li {
display: inline;
margin-right: 10px;
font-weight: 700;
}
.rs-popular-courses.style4 .courses-item .content-part .meta-part li:last-child {
margin: 0;
}
.rs-popular-courses.style4 .courses-item .content-part .title {
font-size: 24px;
}
.rs-popular-courses.style4 .courses-item .content-part .title a {
color: #111111;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part {
overflow: hidden;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .user {
float: left;
margin-right: 20px;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .info-meta {
float: left;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .info-meta li {
display: inline;
margin-right: 15px;
transition: all 0.3s ease;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .info-meta li.ratings i {
color: #fcb903;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .info-meta li:last-child {
margin: 0;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .btn-part {
text-align: right;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .btn-part a {
color: #505050;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .btn-part a i:before {
font-size: 18px;
font-weight: 700;
padding-left: 10px;
}
.rs-popular-courses.style5 .courses-item .courses-grid .img-part {
overflow: hidden;
}
.rs-popular-courses.style5 .courses-item .courses-grid .img-part a img {
border-radius: 5px;
transition: all 500ms ease;
transform: scale(1);
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part {
padding: 50px 30px 50px;
position: relative;
text-align: center;
background: #F9F8F8;
border-color: #F9F8F8;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .course-price .price {
padding: 9px 20px;
color: #ffffff;
font-weight: 500;
background: #21a7d0;
border-radius: 5px;
transition: all 0.3s ease;
position: absolute;
top: -25px;
left: 50%;
transform: translateX(-50%);
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .title {
font-size: 22px;
line-height: 32px;
margin-bottom: 18px;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .title a {
color: #031a3d;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .title a:hover {
color: #21a7d0;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .meta-part {
text-align: center;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .meta-part .user {
display: inline-block;
margin-right: 8px;
color: #363636;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .meta-part .user i:before {
color: #21a7d0;
padding-right: 6px;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .meta-part .user i:before:last-child {
padding-left: 0;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .meta-part .user:last-child {
margin-right: 0;
}
.rs-popular-courses.style5 .courses-item:hover .courses-grid .img-part a img {
transform: scale(1.1);
}
.rs-popular-courses.course-view-style .course-part {
margin: 0 -15px;
}
.rs-popular-courses.course-view-style .course-part .courses-item {
float: left;
width: 46%;
margin: 0 15px;
margin-bottom: 30px;
}
.rs-popular-courses.course-view-style .course-part .courses-item.right {
float: right;
}
.rs-popular-courses.course-view-style .course-search-part {
background-color: #fff;
border: 1px solid #e0e0e08c;
margin-bottom: 30px;
padding: 15px 30px;
display: inline-flex;
width: 100%;
}
.rs-popular-courses.course-view-style .course-search-part .course-view-part {
display: flex;
align-items: center;
float: left;
width: 90%;
}
.rs-popular-courses.course-view-style .course-search-part .course-view-part .view-icons {
float: left;
margin-right: 20px;
line-height: 1;
}
.rs-popular-courses.course-view-style .course-search-part .course-view-part .view-icons a {
color: #505050;
font-size: 20px;
opacity: 0.7;
}
.rs-popular-courses.course-view-style .course-search-part .course-view-part .view-icons a.view-grid {
color: #21a7d0;
opacity: 1;
}
.rs-popular-courses.course-view-style .course-search-part .course-view-part .view-icons a:hover {
color: #21a7d0;
opacity: 1;
}
.rs-popular-courses.course-view-style .course-search-part .type-form {
position: relative;
float: right;
}
.rs-popular-courses.course-view-style .course-search-part .type-form select {
display: block;
width: 100%;
min-width: 125px;
height: 40px;
line-height: 40px;
font-size: 14px;
font-weight: 500;
color: #ffffff;
padding: 0 40px 0 20px;
background: #21a7d0;
border: none;
border-radius: 4px;
-webkit-appearance: none;
-moz-appearance: none;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
cursor: pointer;
}
.rs-popular-courses.course-view-style .course-search-part .type-form .custom-select-box {
position: relative;
}
.rs-popular-courses.course-view-style .course-search-part .type-form .custom-select-box:before {
font-family: 'FontAwesome';
content: "\f107";
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
display: block;
color: #ffffff;
font-size: 16px;
line-height: 1;
}
.rs-popular-courses.course-view-style.list-view .course-part {
margin: 0;
}
.rs-popular-courses.course-view-style.list-view .course-part .courses-item {
width: 100%;
margin: 0 0 30px;
display: flex;
align-items: center;
}
.rs-popular-courses.course-view-style.list-view .course-part .courses-item .img-part {
margin: 0;
margin-right: 30px;
}
.rs-popular-courses.course-view-style.list-view .course-search-part .course-view-part .view-icons a.view-grid {
color: #505050;
opacity: 0.7;
}
.rs-popular-courses.course-view-style.list-view .course-search-part .course-view-part .view-icons a.view-list {
color: #21a7d0;
opacity: 1;
}
.rs-popular-courses.course-view-style .widget-archives .categories {
margin-left: 25px;
}
.rs-popular-courses.course-view-style .filter-widget {
position: relative;
}
.rs-popular-courses.course-view-style .filter-widget h5 {
position: relative;
padding: 12px 25px;
padding-left: 0;
font-size: 16px;
font-weight: 600;
color: #03382e;
display: block;
border-bottom: 1px solid #f0f5fb;
}
.rs-popular-courses.course-view-style .filter-form {
position: relative;
}
.rs-popular-courses.course-view-style .filter-form span {
position: relative;
color: #626262;
font-size: 16px;
display: block;
font-weight: 600;
margin-bottom: 15px;
}
.rs-popular-courses.course-view-style .filter-form .radio-box {
position: relative;
margin-left: 25px;
margin-bottom: 12px;
}
.rs-popular-courses.course-view-style .filter-form .radio-box label {
position: relative;
display: block;
width: 100%;
line-height: 1;
padding-left: 25px;
cursor: pointer;
margin-bottom: 0;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.rs-popular-courses.course-view-style .filter-form .radio-box label:before {
position: absolute;
left: 0;
top: 3px;
height: 10px;
width: 10px;
background: #b6b6b6;
content: "";
border-radius: 50px;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
border: 1px solid transparent;
}
.rs-popular-courses.course-view-style .filter-form .radio-box label:after {
position: absolute;
left: 0px;
top: 0;
height: 15px;
line-height: 15px;
max-width: 0;
font-size: 14px;
color: #ffffff;
font-weight: 800;
overflow: hidden;
background: transparent;
text-align: center;
font-family: 'FontAwesome';
-webkit-transition: max-width 500ms ease;
-moz-transition: max-width 500ms ease;
-ms-transition: max-width 500ms ease;
-o-transition: max-width 500ms ease;
transition: max-width 500ms ease;
}
.rs-popular-courses.course-view-style .filter-form .radio-box input[type="radio"]:checked + label {
border-color: #25a9e0;
}
.rs-popular-courses.course-view-style .filter-form .radio-box input[type="radio"] {
display: none;
}
.rs-popular-courses.course-view-style .filter-form .radio-box input[type="radio"]:checked + label:before {
border: 5px solid #21a7d0;
background: #ffffff;
}
.rs-popular-courses.course-view-style .filter-form .radio-box input[type="radio"]:checked + label:after {
max-width: 20px;
opacity: 1;
}
.rs-popular-courses.course-view-style .filter-form .radio-box:last-child {
margin-bottom: 0px;
}
.rs-popular-courses.course-view-style .filter-form .check-box {
margin-left: 25px;
margin-bottom: 12px;
}
.rs-popular-courses.course-view-style .filter-form .check-box label {
padding-left: 10px;
line-height: 1;
}
.rs-popular-courses.main-home .courses-item .courses-grid {
padding: 0px;
box-shadow: 0 0 30px #eee;
border-radius: 0 0 4px 4px;
background: #ffffff;
}
.rs-popular-courses.main-home .courses-item .courses-grid .img-part {
margin-bottom: 0px;
overflow: hidden;
}
.rs-popular-courses.main-home .courses-item .courses-grid .img-part a img {
border-radius: 4px 4px 0 0;
transition: all .8s ease;
transform: scale(1);
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part {
padding: 32px 35px 35px 35px;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .info-meta {
padding-bottom: 10px;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .info-meta li {
display: inline-block;
margin-right: 10px;
transition: all 0.3s ease;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .info-meta li i {
color: #fcb903;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .course-price .price {
padding: 3px 15px;
color: #ffffff;
font-weight: 500;
background: #21a7d0;
border-radius: 5px;
transition: all 0.3s ease;
position: absolute;
top: 20px;
right: 38px;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .title {
margin: 0 0 10px;
line-height: 30px;
font-size: 22px;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .title a {
color: #101010;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .title a:hover {
color: #21a7d0;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .meta-part {
display: flex;
justify-content: space-between;
list-style: none;
margin: 25px 0 0;
padding: 25px 0 0;
font-size: 14px;
border-top: 1px solid #f4f0f0;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .meta-part .user {
display: inline-block;
margin-right: 8px;
color: #363636;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .meta-part .user i:before {
color: #21a7d0;
padding-right: 6px;
}
.rs-popular-courses.main-home .courses-item:hover .courses-grid .img-part a img {
transform: scale(1.1);
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part {
padding: 32px 35px 35px 35px;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .info-meta {
padding-bottom: 10px;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .info-meta li i {
color: #fcb903;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .course-price .price {
background: #0c8b51;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .title {
margin: 0 0 10px;
line-height: 30px;
font-size: 22px;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .title a {
color: #101010;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .title a:hover {
color: #0c8b51;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .meta-part {
border-top: 1px solid #f4f0f0;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .meta-part .user {
display: inline-block;
margin-right: 8px;
color: #363636;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .meta-part .user i:before {
color: #0c8b51;
padding-right: 6px;
}
.rs-popular-courses.orange-color .courses-item .content-part .meta-part li span.price {
background: #21a7d0;
}
.rs-popular-courses.orange-color .courses-item .content-part .title a:hover {
color: #21a7d0;
}
.rs-popular-courses.orange-color .courses-item .content-part .bottom-part .btn-part a {
border: 1px solid #f2f2f2;
background: transparent;
}
.rs-popular-courses.orange-color .courses-item .content-part .bottom-part .btn-part a:hover {
background: #21a7d0;
color: #ffffff;
}
.rs-popular-courses.orange-color.style2 .course-wrap {
background: #21a7d0;
}
.rs-popular-courses.orange-color.style2 .course-wrap .price-btn a i:before {
background: #21a7d0;
}
.rs-popular-courses.orange-color.style2 .course-wrap .price-btn a:hover i:before {
background: #21a7d0;
}
.rs-popular-courses.orange-color.style2 .course-wrap:after,
.rs-popular-courses.orange-color.style2 .course-wrap:before {
background: #21a7d0;
}
.rs-popular-courses.orange-color.style2 .course-wrap:hover {
background: #21a7d0;
}
.rs-popular-courses.orange-color.style2 .course-wrap:hover:after,
.rs-popular-courses.orange-color.style2 .course-wrap:hover:before {
background: #21a7d0;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part a.categories {
background: #21a7d0;
color: #ffffff;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part .meta-part li span.price {
background: unset;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part .title a {
color: #111111;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part .title a:hover {
color: #21a7d0;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part .bottom-part .btn-part a {
border: unset;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part .bottom-part .btn-part a:hover {
background: transparent;
color: #21a7d0;
}
.rs-popular-courses.orange-color.style4 .courses-item .content-part .price {
background: #21a7d0;
}
.rs-popular-courses.orange-color.style4 .courses-item .content-part .bottom-part .btn-part a {
border: unset;
}
.rs-popular-courses.orange-color.style4 .courses-item .content-part .bottom-part .btn-part a {
border: unset;
}
.rs-popular-courses.orange-color.style4 .courses-item .content-part .bottom-part .btn-part a:hover {
background: transparent;
color: #21a7d0;
}
.rs-popular-courses.home11-style .courses-item {
border: 1px solid #e5e4f1;
padding: 30px;
position: relative;
transition: all .4s ease;
}
.rs-popular-courses.home11-style .courses-item .content-part {
padding: 30px 0 0px;
}
.rs-popular-courses.home11-style .courses-item .content-part .course-body .title {
font-size: 24px;
line-height: 34px;
font-weight: 800;
margin-bottom: 12px;
}
.rs-popular-courses.home11-style .courses-item .content-part .course-body .title a {
color: #4e49a1;
}
.rs-popular-courses.home11-style .courses-item .content-part .course-body .title a:hover {
color: #21a7d0;
}
.rs-popular-courses.home11-style .courses-item .content-part .course-body p {
font-size: 16px;
line-height: 28px;
color: #54647b;
font-weight: 400;
margin-bottom: 20px;
}
.rs-popular-courses.home11-style .courses-item .content-part .bottom-part {
border-top: 1px solid #e5e4f1;
padding: 20px 0 0;
}
.rs-popular-courses.home11-style .courses-item .content-part .bottom-part .course-footer {
display: inline-block;
border-right: 1px solid #e5e4f1;
padding-right: 15px;
padding-left: 15px;
}
.rs-popular-courses.home11-style .courses-item .content-part .bottom-part .course-footer .label {
display: block;
font-size: 16px;
line-height: 28px;
color: #54647b;
font-weight: 500;
}
.rs-popular-courses.home11-style .courses-item .content-part .bottom-part .course-footer .desc {
font-size: 14px;
line-height: 23px;
color: #21a7d0;
font-weight: 400;
}
.rs-popular-courses.home11-style .courses-item .btn-part {
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50%;
clip-path: none;
background: #4e49a1;
position: absolute;
text-align: center;
bottom: -50px;
left: 50%;
transform: translateX(-50%);
opacity: 0;
visibility: hidden;
transition: all .5s ease;
}
.rs-popular-courses.home11-style .courses-item .btn-part a {
font-size: 16px;
color: #ffffff;
display: inline-block;
font-weight: 500;
}
.rs-popular-courses.home11-style .courses-item .btn-part a:hover {
color: #21a7d0;
}
.rs-popular-courses.home11-style .courses-item:hover .btn-part {
bottom: -20px;
opacity: 1;
visibility: visible;
}
.rs-popular-courses.home11-style .owl-carousel .owl-stage-outer {
padding-bottom: 20px;
margin-bottom: -20px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid {
border-radius: 0 0 4px 4px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .img-part {
margin-bottom: 0px;
overflow: hidden;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .img-part a img {
border-radius: 4px 4px 0 0;
transition: all .8s ease;
transform: scale(1);
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part {
padding: 25px 25px 25px 25px;
border-style: solid;
border-width: 0px 1px 1px 1px;
border-color: #252525;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .course-price .price {
padding: 3px 15px;
color: #ffffff;
font-weight: 500;
background: #21a7d0;
border-radius: 5px;
transition: all 0.3s ease;
position: absolute;
top: 20px;
right: 38px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .title {
margin: 0 0 10px;
line-height: 30px;
font-size: 22px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .title a {
color: #ffffff;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .title a:hover {
color: #21a7d0;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .meta-part {
display: flex;
justify-content: space-between;
list-style: none;
font-size: 15px;
margin: 0 0 20px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .meta-part .user {
display: inline-block;
margin-right: 8px;
color: #ffffff;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .meta-part .user i:before {
color: #21a7d0;
padding-right: 6px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .avatar-part {
display: flex;
align-items: center;
margin-top: 20px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .avatar-part .avatar-img {
width: 30px;
height: 30px;
margin-right: 10px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .avatar-part .avatar-img img {
border-radius: 50%;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .avatar-part .title {
font-size: 15px;
color: #ffffff;
line-height: 27px;
margin-bottom: 0;
}
.rs-popular-courses.home13-style .courses-item:hover .courses-grid .img-part a img {
transform: scale(1.1);
}
.free-course-contact {
margin: 0px;
padding: 40px 50px 50px;
background: url(assets/images/bg/course-contact-bg.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.free-course-contact span {
font-size: 30px;
color: #111111;
display: block;
}
.free-course-contact form input,
.free-course-contact form textarea,
.free-course-contact form select {
width: 100%;
border-radius: 3px;
border: 1px solid #ffffff;
color: #767676;
background: #ffffff;
padding: 10px 18px;
}
.free-course-contact form input,
.free-course-contact form select {
margin-bottom: 30px;
height: 45px;
}
.free-course-contact form textarea {
height: 140px;
display: inherit;
}
.free-course-contact form .select-option {
position: relative;
}
.free-course-contact form .select-option select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
cursor: pointer;
z-index: 11;
position: relative;
}
.free-course-contact form .select-option:after {
content: '\f107';
font-family: FontAwesome;
color: #767676;
right: 15px;
position: absolute;
top: 16px;
font-size: 20px;
pointer-events: none;
}
.free-course-contact form ::-webkit-input-placeholder {
color: #767676;
}
.free-course-contact form :-ms-input-placeholder {
color: #767676;
}
.free-course-contact form ::placeholder {
color: #767676;
}
.rs-latest-couses .course-item {
align-items: flex-start;
border-radius: 300px 5px 5px 300px;
display: flex;
border: 1px solid #ceeaf0;
background: #ffffff;
}
.rs-latest-couses .course-item .course-image a {
width: 200px;
height: 200px;
overflow: hidden;
border-radius: 100%;
display: block;
}
.rs-latest-couses .course-item .course-image a img {
object-fit: cover;
object-position: left;
height: 100%;
width: 100%;
}
.rs-latest-couses .course-item .course-info {
align-self: center;
padding: 0px 30px;
}
.rs-latest-couses .course-item .course-info .meta-part {
padding-bottom: 5px;
}
.rs-latest-couses .course-item .course-info .meta-part li {
display: inline;
margin-right: 10px;
font-weight: 700;
}
.rs-latest-couses .course-item .course-info .course-title {
font-size: 22px;
line-height: 36px;
font-weight: 700;
margin-bottom: 5px;
}
.rs-latest-couses .course-item .course-info .course-title a {
color: #111111;
}
.rs-latest-couses .course-item .course-info .course-title a:hover {
color: #21a7d0;
transition: all 0.3s ease;
}
.rs-latest-couses .course-item .course-info .bottom-part .info-meta {
float: left;
}
.rs-latest-couses .course-item .course-info .bottom-part .info-meta ul .ratings {
display: inline-block;
margin-right: 10px;
transition: all 0.3s ease;
}
.rs-latest-couses .course-item .course-info .bottom-part .info-meta ul .ratings i {
color: #fcb903;
}
.rs-latest-couses .course-item .course-info .bottom-part .btn-part {
text-align: right;
}
.rs-latest-couses .course-item .course-info .bottom-part .btn-part a {
color: #505050;
}
.rs-latest-couses .course-item .course-info .bottom-part .btn-part a i:before {
font-size: 18px;
font-weight: 700;
padding-left: 10px;
}
.rs-latest-couses .course-item .course-info .bottom-part .btn-part a:hover {
color: #21a7d0;
transition: all 0.3s ease;
}
.rs-latest-couses .course-item:hover {
background: #FFFFFF;
border-color: #FFFFFF;
}
.rs-latest-couses.orange-color .course-item {
border: 1px solid #21a7d029;
}
.rs-latest-couses.orange-color .course-item .course-info .course-title a:hover,
.rs-latest-couses.orange-color .course-item .bottom-part .btn-part a:hover {
color: #21a7d0;
}
.rs-latest-couses.orange-color .course-item:hover {
background: #FFFFFF;
border-color: #FFFFFF;
}
.rs-featured-courses {
background: #e7f8fb;
}
.rs-featured-courses .rs-carousel .owl-dots {
text-align: center;
}
.rs-featured-courses .rs-carousel .owl-dots .owl-dot {
width: 30px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
background: #111111;
}
.rs-featured-courses .rs-carousel .owl-dots .owl-dot:hover {
background: #21a7d0;
}
.rs-featured-courses .rs-carousel .owl-dots .active {
background: #21a7d0;
}
.rs-featured-courses .owl-stage-outer {
padding-bottom: 10px;
}
.rs-featured-courses .courses-item {
padding: 0 30px;
position: relative;
transition: all 0.3s ease;
}
.rs-featured-courses .courses-item .img-part {
position: relative;
z-index: 111;
}
.rs-featured-courses .courses-item .content-part {
padding: 30px 0;
position: relative;
z-index: 111;
}
.rs-featured-courses .courses-item .content-part span .categories {
display: inline-block;
padding: 0 15px;
height: 40px;
line-height: 40px;
color: #ffffff;
font-weight: 500;
border-radius: 3px;
transition: all 0.3s ease;
position: absolute;
top: -20px;
left: 32px;
}
.rs-featured-courses .courses-item .content-part span .categories.bg1 {
background: #c701f1;
}
.rs-featured-courses .courses-item .content-part span .categories.bg2 {
background: #065ce8;
}
.rs-featured-courses .courses-item .content-part span .categories.bg3 {
background: #f6075b;
}
.rs-featured-courses .courses-item .content-part .meta-part {
display: flex;
align-items: center;
padding-top: 16px;
padding-bottom: 12px;
}
.rs-featured-courses .courses-item .content-part .meta-part .user {
display: inline;
margin-right: 10px;
font-weight: 700;
}
.rs-featured-courses .courses-item .content-part .meta-part .ratings {
padding-left: 25px;
}
.rs-featured-courses .courses-item .content-part .meta-part .ratings i {
color: #fcb903;
}
.rs-featured-courses .courses-item .content-part .title {
font-size: 24px;
line-height: 35px;
font-weight: 700;
}
.rs-featured-courses .courses-item .content-part .title a {
color: #031a3d;
}
.rs-featured-courses .courses-item .content-part .title a:hover {
color: #21a7d0;
}
.rs-featured-courses .courses-item .content-part .images {
display: flex;
align-items: center;
border-bottom: 1px solid #e5e8eb;
padding-bottom: 35px;
}
.rs-featured-courses .courses-item .content-part .images .img-part img {
border-radius: 50%;
width: 30px;
height: 30px;
}
.rs-featured-courses .courses-item .content-part .images span {
color: #54647b;
font-size: 15px;
line-height: 25px;
font-weight: 400;
padding-left: 15px;
}
.rs-featured-courses .courses-item .content-part .bottom-part .info-meta {
float: left;
}
.rs-featured-courses .courses-item .content-part .bottom-part .info-meta li {
color: #031a3d;
font-size: 15px;
line-height: 25px;
font-weight: 700;
}
.rs-featured-courses .courses-item .content-part .bottom-part .btn-part {
text-align: right;
}
.rs-featured-courses .courses-item .content-part .bottom-part .btn-part a {
color: #031a3d;
font-size: 15px;
line-height: 25px;
}
.rs-featured-courses .courses-item .content-part .bottom-part .btn-part a i:before {
font-size: 18px;
font-weight: 700;
padding-left: 10px;
}
.rs-featured-courses .courses-item .content-part .bottom-part .btn-part a:hover {
color: #21a7d0;
}
.rs-featured-courses .courses-item:after {
position: absolute;
content: '';
left: 0;
bottom: 0;
width: 100%;
height: 78%;
background: #ffff;
border-radius: 3px;
}
.rs-featured-courses .courses-item:hover {
transform: translateY(-10px);
}
.rs-features {
position: relative;
margin-top: -245px;
z-index: 111;
}
.rs-features .features-wrap {
border-radius: 5px 5px 5px 5px;
background: #171f32;
padding: 25px 40px 25px;
display: flex;
align-items: center;
position: relative;
transition: all 0.3s ease;
}
.rs-features .features-wrap .icon-part img {
width: 50px;
margin: 0 35px 8px 0;
}
.rs-features .features-wrap .content-part .title {
font-size: 22px;
font-weight: 700;
margin-bottom: 5px;
}
.rs-features .features-wrap .content-part .title .watermark {
color: #ffffff;
}
.rs-features .features-wrap .content-part .dese {
font-size: 16px;
font-weight: 400;
color: #ffffff;
margin: 0;
}
.rs-features .features-wrap:hover {
transform: translateY(-10px);
}
.rs-features.style2 {
margin-top: -110px;
}
.rs-features.style2 .rs-iconbox-area {
position: relative;
transition: all 0.3s ease;
padding: 50px;
background-color: #1C335F;
border-radius: 5px 5px 5px 5px;
text-align: center;
}
.rs-features.style2 .rs-iconbox-area .icon-area {
margin-bottom: 32px !important;
}
.rs-features.style2 .rs-iconbox-area .icon-area img {
width: 80px;
height: 80px;
}
.rs-features.style2 .rs-iconbox-area .text-area .icon-title {
font-size: 22px;
line-height: 700;
line-height: 1;
color: #ffffff;
margin-bottom: 0;
}
.rs-features.style2 .rs-iconbox-area:hover {
transform: translateY(-10px);
}
.rs-features.main-home {
width: 100%;
position: absolute;
bottom: 100px;
margin: 0;
}
.rs-features.style3 {
margin: unset;
}
.rs-features.style3 .features-item {
position: relative;
transition: all 0.3s ease;
}
.rs-features.style3 .features-item .content-part {
position: absolute;
width: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: all 0.3s ease;
padding: 50px 35px 0;
text-align: center;
}
.rs-features.style3 .features-item .content-part .icon-part {
padding-bottom: 20px;
}
.rs-features.style3 .features-item .content-part .icon-part img {
-webkit-transition: all 0.4s ease;
transform: scale(1);
}
.rs-features.style3 .features-item .content-part .title {
font-size: 22px;
line-height: 32px;
font-weight: 700;
margin-bottom: 12px;
}
.rs-features.style3 .features-item .content-part .title a {
color: #ffffff;
}
.rs-features.style3 .features-item .content-part p {
font-size: 16px;
font-weight: 400;
line-height: 26px;
color: #ffffff;
margin-bottom: 4px;
}
.rs-features.style3 .features-item:hover {
transform: translateY(-10px);
}
.rs-features.style3 .features-item:hover .content-part .icon-part img {
transform: scale(0.9);
}
.rs-features.style4 {
position: unset;
margin-top: unset;
z-index: unset;
}
.features-wrap {
background: unset;
display: unset;
align-items: unset;
position: unset;
}
.features-wrap .icon-part {
margin: 0 0px 17px 0;
}
.features-wrap .content-part .title {
margin-bottom: 10px;
}
.features-wrap .content-part .title .watermark {
color: #333333;
}
.features-wrap .content-part .dese {
color: #505050;
}
.rs-degree.style1 .degree-wrap {
position: relative;
overflow: hidden;
border-radius: 3px;
}
.rs-degree.style1 .degree-wrap img {
width: 100%;
}
.rs-degree.style1 .degree-wrap .title-part {
position: absolute;
left: 0;
bottom: 0;
padding: 0 30px 21px;
opacity: 1;
transition: all 0.3s ease;
}
.rs-degree.style1 .degree-wrap .title-part .title {
margin: 0;
color: #ffffff;
}
.rs-degree.style1 .degree-wrap .content-part {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%) rotateY(90deg);
text-align: center;
background: rgba(17, 41, 88, 0.9);
border-radius: 3px;
padding: 78px 35px 0;
color: #ffffff;
opacity: 0;
transition: all 0.3s ease;
}
.rs-degree.style1 .degree-wrap .content-part .title {
margin-bottom: 13px;
}
.rs-degree.style1 .degree-wrap .content-part .title a {
color: #ffffff;
}
.rs-degree.style1 .degree-wrap .content-part .title a:hover {
color: #cccccc;
}
.rs-degree.style1 .degree-wrap .content-part .desc {
margin-bottom: 15px;
}
.rs-degree.style1 .degree-wrap .content-part .btn-part a {
text-transform: uppercase;
font-weight: 500;
color: #ffffff;
padding-bottom: 0;
border-bottom: 1px solid #ffffff;
}
.rs-degree.style1 .degree-wrap .content-part .btn-part a:hover {
color: #cccccc;
}
.rs-degree.style1 .degree-wrap:before {
position: absolute;
content: '';
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 0.9;
background: linear-gradient(transparent, #273c66);
}
.rs-degree.style1 .degree-wrap:hover .content-part {
transform: translate(-50%, -50%) rotateY(0);
opacity: 1;
}
.rs-degree.style1 .degree-wrap:hover .title-part {
bottom: -60px;
opacity: 0;
}
/* -----------------------------------
12. Course Single Section CSS
-------------------------------------*/
/*Intro Section*/
.intro-section {
position: relative;
/*Video Column Style*/
/*Intro Tabs Style*/
}
.intro-section .video-column {
position: relative;
z-index: 1;
}
.intro-section .video-column .intro-video {
position: relative;
text-align: center;
width: 100%;
display: block;
}
.intro-section .video-column .intro-video h4 {
position: absolute;
width: 100%;
text-align: center;
color: #ffffff;
font-weight: 500;
font-size: 16px;
text-transform: capitalize;
bottom: 0;
left: 50%;
transform: translate(-50%, -50%);
}
.intro-section .video-column .intro-video .intro-video-box {
position: relative;
width: 60px;
height: 60px;
z-index: 99;
color: #00aa15;
font-weight: 400;
font-size: 24px;
text-align: center;
border-radius: 50%;
padding-left: 7px;
line-height: 60px;
display: inline-block;
background-color: #ffffff;
transition: all 900ms ease;
-moz-transition: all 900ms ease;
-webkit-transition: all 900ms ease;
-ms-transition: all 900ms ease;
-o-transition: all 900ms ease;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.intro-section .video-column .intro-video:before {
position: absolute;
content: '';
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
background-color: rgba(0, 0, 0, 0.1);
}
.intro-section .video-column .course-features-info {
margin: 50px 0;
border-radius: 3px;
padding: 30px 40px 30px;
background: #ffffff;
box-shadow: 0 0 30px #eee;
}
.intro-section .video-column .course-features-info ul li {
display: block;
padding: 10px 0;
}
.intro-section .video-column .course-features-info ul li i {
color: #21a7d0;
}
.intro-section .video-column .course-features-info ul li .label {
padding-left: 10px;
}
.intro-section .video-column .course-features-info ul li .value {
float: right;
padding-right: 5px;
}
.intro-section .video-column .btn-part {
background: #ffffff;
box-shadow: 0 0 35px #eee;
padding: 50px 50px 35px;
border-radius: 5px;
}
.intro-section .video-column .btn-part .btn {
margin: 0 0 15px;
width: 100%;
}
.intro-section .intro-tabs {
position: relative;
border: none;
}
.intro-section .intro-tabs .tab-btns {
position: relative;
text-align: center;
width: 20%;
}
.intro-section .intro-tabs .tab-btns .tab-btn {
position: relative;
display: block;
width: 100%;
font-size: 14px;
background: none;
background: #ffffff;
color: #626262;
border: 1px solid #eee;
font-weight: 500;
line-height: 24px;
cursor: pointer;
float: left;
padding: 12px 40px 10px;
text-transform: capitalize;
transition: all 500ms ease;
}
.intro-section .intro-tabs .tab-btns .tab-btn:hover,
.intro-section .intro-tabs .tab-btns .tab-btn.active {
color: #ffffff;
background: #21a7d0;
border-color: #21a7d0;
}
.intro-section .intro-tabs .tabs-content {
position: relative;
overflow: hidden;
background-color: #ffffff;
}
.intro-section .intro-tabs .tabs-content .minutes {
position: relative;
color: #21a7d0;
font-size: 14px;
font-weight: 500;
margin-top: 12px;
}
/* Course Overview */
.course-overview {
position: relative;
}
.course-overview .instructor-title {
position: relative;
color: #111111;
font-size: 20px;
font-weight: 600;
line-height: 1.3em;
margin-bottom: 18px;
}
.course-overview .inner-box {
position: relative;
padding: 0px 40px 40px;
}
.course-overview .inner-box h4 {
position: relative;
color: #111111;
font-weight: 600;
line-height: 1.3em;
margin-bottom: 15px;
}
.course-overview .inner-box h3 {
position: relative;
color: #111111;
font-size: 20px;
font-weight: 600;
line-height: 1.3em;
margin-bottom: 18px;
}
.course-overview .inner-box p {
position: relative;
color: #626262;
font-size: 16px;
line-height: 1.8em;
margin-bottom: 15px;
}
.course-overview .inner-box .student-list {
position: relative;
margin-top: 25px;
margin-bottom: 30px;
}
.course-overview .inner-box .student-list li {
position: relative;
color: #393939;
font-size: 16px;
font-weight: 500;
line-height: 1.3em;
margin-right: 80px;
display: inline-block;
list-style: disc;
margin-bottom: 10px;
}
.course-overview .inner-box .student-list li .fa {
color: #21a7d0;
margin: 0px 2px;
}
.course-overview .inner-box .student-list li:last-child {
margin-right: 0px;
}
.course-overview .inner-box .review-list {
position: relative;
margin-bottom: 20px;
}
.course-overview .inner-box .review-list li {
position: relative;
color: #626262;
font-size: 16px;
margin-bottom: 14px;
padding-left: 30px;
}
.course-overview .inner-box .review-list li:before {
position: absolute;
content: "\f101";
left: 0px;
top: 5px;
color: #21a7d0;
font-size: 14px;
line-height: 1em;
font-family: "FontAwesome";
}
.course-overview .inner-box .review-list li:last-child {
margin-bottom: 0px;
}
/*Course Review*/
.cource-review-box {
position: relative;
padding: 0px 40px;
}
.cource-review-box h4 {
position: relative;
color: #111111;
font-weight: 700;
line-height: 1.3em;
margin-bottom: 15px;
}
.cource-review-box .rating {
position: relative;
color: #626262;
font-size: 16px;
}
.cource-review-box .rating .fa {
position: relative;
color: #21a7d0;
margin: 0px 2px;
font-size: 16px;
}
.cource-review-box .total-rating {
position: relative;
color: #21a7d0;
font-size: 16px;
font-weight: 600;
margin-right: 5px;
}
.cource-review-box .text {
position: relative;
color: #626262;
font-size: 16px;
line-height: 1.8em;
margin-top: 15px;
}
.cource-review-box .helpful {
position: relative;
color: #393939;
font-size: 16px;
line-height: 1.8em;
margin-top: 12px;
font-weight: 500;
margin-bottom: 15px;
}
.cource-review-box .like-option {
position: relative;
}
.cource-review-box .like-option li {
position: relative;
margin-right: 10px;
display: inline-block;
}
.cource-review-box .like-option li i {
position: relative;
width: 36px;
height: 36px;
color: #626262;
text-align: center;
line-height: 36px;
border-radius: 50px;
display: inline-block;
background-color: #eaeff5;
}
.cource-review-box .like-option li i:hover {
color: #21a7d0;
}
.cource-review-box .like-option .report {
position: relative;
color: #333;
font-size: 14px;
font-weight: 500;
}
.cource-review-box .like-option .report:hover {
color: #21a7d0;
}
.cource-review-box .more {
position: relative;
color: #21a7d0;
font-size: 14px;
font-weight: 500;
margin-top: 30px;
display: inline-block;
}
/* -----------------------------------
13. Accordion Section CSS
-------------------------------------*/
.accordion-box {
position: relative;
}
.accordion-box .block {
position: relative;
background-color: #ffffff;
border: none;
border-bottom: 4px solid #f6f6f6;
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.accordion-box .block .acc-btn {
position: relative;
width: 100%;
text-align: left;
font-size: 20px;
margin-bottom: 0px;
cursor: pointer;
line-height: 24px;
font-weight: 600;
color: #111111;
padding: 0 25px;
height: 65px;
line-height: 65px;
text-decoration: none !important;
text-transform: capitalize;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.accordion-box .block .acc-btn:after {
position: absolute;
font-family: FontAwesome;
content: "\f077";
right: 25px;
top: 50%;
transform: translateY(-50%);
text-align: center;
font-weight: 400;
color: #111111;
padding: unset;
transition: all 0.3s ease;
}
.accordion-box .block .acc-btn.collapsed:after {
content: "\f078";
}
.accordion-box .block .card-header {
position: relative;
padding: 0;
border: none;
border-radius: unset;
}
.accordion-box .block .content {
position: relative;
padding: 0px 40px 25px;
}
.accordion-box .block .play-icon {
position: relative;
color: #626262;
font-size: 18px;
text-align: center;
line-height: 40px;
display: inline-block;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
background-color: #ffffff;
}
.accordion-box .block .play-icon:before {
content: "";
position: absolute;
z-index: 0;
left: 0;
top: 50%;
transform: translateY(-50%);
display: block;
width: 40px;
height: 40px;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
transition: all 0.3s ease;
}
.accordion-box .block .play-icon .fa {
position: relative;
width: 40px;
height: 40px;
line-height: 40px;
left: 0px;
z-index: 99;
color: #21a7d0;
font-weight: 400;
font-size: 16px;
text-align: center;
border-radius: 50%;
padding-left: 4px;
margin-right: 30px;
display: inline-block;
margin-top: -20px;
margin-left: -20px;
background-color: #ffffff;
transition: all 900ms ease;
-moz-transition: all 900ms ease;
-webkit-transition: all 900ms ease;
-ms-transition: all 900ms ease;
-o-transition: all 900ms ease;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.accordion-box .block .play-icon:hover:before {
background: #21a7d0;
}
/* ------------------------------------
14. Why Choose US Section CSS
---------------------------------------*/
.why-choose-us .choose-us-part .facilities-part .single-facility .icon-part {
position: relative;
float: left;
margin-right: 5px;
}
.why-choose-us .choose-us-part .facilities-part .single-facility .icon-part .shape-img {
position: relative;
}
.why-choose-us .choose-us-part .facilities-part .single-facility .icon-part i {
position: absolute;
top: 55%;
left: 50%;
transform: translate(-50%, -50%);
color: #21a7d0;
}
.why-choose-us .choose-us-part .facilities-part .single-facility .icon-part i:before {
font-size: 28px;
}
.why-choose-us .choose-us-part .facilities-part .single-facility .text-part .title {
font-size: 22px;
color: #111111;
font-weight: bold;
margin-bottom: 10px;
}
.why-choose-us.style2 .facilities-two .content-part {
display: flex;
align-items: center;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part {
width: 80px;
line-height: 80px;
text-align: center;
border-radius: 50%;
margin-right: 20px;
position: relative;
transition: all 0.3s ease;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part img {
-webkit-transition: all 0.4s ease;
transform: scale(1);
}
.why-choose-us.style2 .facilities-two .content-part .icon-part.purple-bg {
background: #4e49a1;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part.pink-bg {
background: #ff6666;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part.orange-bg {
background: #ffaf40;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part.green-bg {
background: #95cc47;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part:hover {
transform: scale(0.9);
}
.why-choose-us.style2 .facilities-two .content-part .text-part .title {
font-size: 22px;
line-height: 32px;
font-weight: 800;
color: #4e49a1;
margin-bottom: 0;
}
.why-choose-us.style2 .video-wrap {
position: relative;
display: inline-block;
}
.why-choose-us.style2 .video-wrap .popup-videos {
color: #4e49a1;
display: block;
overflow: hidden;
max-width: 270px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.why-choose-us.style2 .video-wrap .popup-videos i {
width: 70px;
height: 70px;
line-height: 61px;
border: 5px solid #4e49a1;
border-radius: 50%;
text-align: center;
font-size: 25px;
float: left;
margin-right: 20px;
}
.why-choose-us.style2 .video-wrap .popup-videos i:before {
padding-left: 5px;
}
.why-choose-us.style2 .video-wrap .popup-videos:hover {
opacity: 0.7;
}
.why-choose-us.style3 {
background: url(assets/images/bg/home12/why-learn-bg.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
padding: 200px 0;
}
.why-choose-us.style3 .services-part {
display: flex;
box-shadow: 0 0 30px #eee;
background: #ffffff;
padding: 15px 30px 20px 30px;
}
.why-choose-us.style3 .services-part .services-icon {
margin-right: 29px;
}
.why-choose-us.style3 .services-part .services-icon img {
width: 90px;
}
.why-choose-us.style3 .services-part .services-text .title {
font-size: 20px;
line-height: 36px;
font-weight: 700;
padding-bottom: 5px;
margin: 0;
color: #171f32;
}
.why-choose-us.style3 .services-part .services-text .services-txt {
font-size: 16px;
line-height: 1.2;
font-weight: 400;
margin: 0;
color: #333333;
}
/* ------------------------------------
15. Team Section CSS
---------------------------------------*/
.rs-team.style1 .team-item {
position: relative;
overflow: hidden;
}
.rs-team.style1 .team-item img {
width: 100%;
}
.rs-team.style1 .team-item .content-part {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, 50%);
text-align: center;
z-index: 1;
transition: all 0.3s ease;
opacity: 0;
}
.rs-team.style1 .team-item .content-part .name {
margin-bottom: 8px;
font-size: 22px;
}
.rs-team.style1 .team-item .content-part .name a {
color: #ffffff;
}
.rs-team.style1 .team-item .content-part .name a:hover {
color: #111111;
}
.rs-team.style1 .team-item .content-part .designation {
color: #ffffff;
margin-bottom: 16px;
display: block;
}
.rs-team.style1 .team-item .content-part .social-links li {
display: inline;
margin-right: 35px;
}
.rs-team.style1 .team-item .content-part .social-links li a {
display: inline-block;
color: #ffffff;
}
.rs-team.style1 .team-item .content-part .social-links li a:hover {
color: #111111;
}
.rs-team.style1 .team-item .content-part .social-links li:last-child {
margin: 0;
}
.rs-team.style1 .team-item:after {
position: absolute;
content: '';
left: 50%;
top: 50%;
transform: translate(-50%, 100%) scale(0.1);
background: #21a7d0;
opacity: 0;
border-radius: 3px;
transition: all 0.3s ease;
}
.rs-team.style1 .team-item:hover .content-part {
transform: translate(-50%, -50%);
opacity: 1;
}
.rs-team.style1 .team-item:hover:after {
transform: translate(-50%, -50%) scale(1);
opacity: 0.9;
}
.rs-team.style1 .owl-item.center .team-item .content-part {
transform: translate(-50%, -50%);
opacity: 1;
}
.rs-team.style1 .owl-item.center .team-item:after {
transform: translate(-50%, -50%) scale(1);
opacity: 0.9;
}
.rs-team.style1 .nav-style {
position: relative;
}
.rs-team.style1 .nav-style .owl-nav {
display: block;
position: absolute;
top: -80px;
right: 0;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev,
.rs-team.style1 .nav-style .owl-nav .owl-next {
display: inline-block;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev i,
.rs-team.style1 .nav-style .owl-nav .owl-next i {
transition: all 0.3s ease;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev i:before,
.rs-team.style1 .nav-style .owl-nav .owl-next i:before {
font-family: Flaticon;
font-size: 22px;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev:hover i,
.rs-team.style1 .nav-style .owl-nav .owl-next:hover i {
color: #21a7d0;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev i:before {
content: "\f134";
}
.rs-team.style1 .nav-style .owl-nav .owl-prev:after {
content: "/";
padding: 0 5px 0 5px;
position: relative;
top: -3px;
}
.rs-team.style1 .nav-style .owl-nav .owl-next i:before {
content: "\f133";
}
.rs-team.style1.orange-color .team-item:after {
background: #21a7d0;
}
.rs-team.style7 .team-item {
position: relative;
overflow: hidden;
}
.rs-team.style7 .team-item:after {
position: absolute;
content: '';
left: 50%;
top: 50%;
transform: translate(-50%, 100%) scale(0.1);
background: #c701f1 !important;
opacity: 0;
border-radius: 3px;
transition: all 0.3s ease;
}
.rs-team.style7 .team-item:hover .content-part {
transform: translate(-50%, -50%);
opacity: 1;
}
.rs-team.style7 .team-item:hover:after {
transform: translate(-50%, -50%) scale(1);
opacity: 0.9;
}
.rs-team.inner-style .team-item {
overflow: hidden;
}
.rs-team.inner-style .team-item .content-part {
top: unset !important;
bottom: -205px;
transform: translateX(-50%) !important;
width: 100% !important;
height: 320px !important;
background: #ffffff;
border-radius: 50%;
padding-top: 30px;
opacity: 1 !important;
transition: all 0.3s ease;
}
.rs-team.inner-style .team-item .content-part .name a {
color: #111111 !important;
}
.rs-team.inner-style .team-item .content-part .name a:hover {
color: #21a7d0 !important;
}
.rs-team.inner-style .team-item .content-part .designation {
color: #505050 !important;
}
.rs-team.inner-style .team-item .content-part .social-links {
display: none;
}
.rs-team.inner-style .team-item:hover .content-part {
bottom: unset;
top: 50% !important;
transform: translate(-50%, -50%) !important;
width: unset !important;
height: unset !important;
background: transparent;
border-radius: unset;
padding-top: 0;
opacity: 1 !important;
}
.rs-team.inner-style .team-item:hover .content-part .name a {
color: #ffffff !important;
}
.rs-team.inner-style .team-item:hover .content-part .name a:hover {
color: #111111 !important;
}
.rs-team.inner-style .team-item:hover .content-part .designation {
color: #ffffff !important;
}
.rs-team.inner-style .team-item:hover .content-part .social-links {
display: block;
}
.rs-team.home11-style .team-item .team-thumbnail {
position: relative;
overflow: hidden;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img {
position: relative;
overflow: hidden;
border-radius: 6px;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img .team-social-link {
display: grid;
border: 30px solid #4e49a1;
border-radius: 50%;
width: 196px;
height: 193px;
grid-template-columns: auto auto;
position: absolute;
right: -196px;
bottom: -193px;
padding: 30px 30px 30px 30px;
opacity: 0;
z-index: 9;
transition: all 0.3s ease;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img .team-social-link li {
display: inline-block;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img .team-social-link li a {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
color: #ffffff;
cursor: pointer;
font-size: 16px;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img .team-social-link li a:hover {
color: #21a7d0;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img:before {
content: '';
transition: all ease-in-out 0.4s;
position: absolute;
left: 0;
right: 0;
width: 100%;
height: 100%;
background-color: #000;
z-index: 2;
opacity: 0;
}
.rs-team.home11-style .team-item .team-thumbnail .team-header {
text-align: center;
padding-top: 35px;
}
.rs-team.home11-style .team-item .team-thumbnail .team-header .name {
font-size: 22px;
line-height: 32px;
font-weight: 800;
margin-bottom: 5px;
}
.rs-team.home11-style .team-item .team-thumbnail .team-header .name a {
color: #4e49a1;
}
.rs-team.home11-style .team-item .team-thumbnail .team-header .name a:hover {
color: #21a7d0;
}
.rs-team.home11-style .team-item .team-thumbnail .team-header .subject {
font-size: 15px;
line-height: 26px;
font-weight: 400;
color: #54647b;
margin-bottom: 10px;
}
.rs-team.home11-style .team-item .team-thumbnail:hover .team-img .team-social-link {
right: -50px;
bottom: -45px;
opacity: 1;
}
.rs-team.home11-style .team-item .team-thumbnail:hover .team-img .team-social-link li a:hover {
color: #21a7d0;
}
.rs-team.home11-style .team-item .team-thumbnail:hover .team-img:before {
opacity: 0.4;
}
/* -----------------------------------
16. Team Single Section CSS
-------------------------------------*/
.profile-section {
position: relative;
}
.profile-section .content-part .title {
color: #111111;
font-weight: 600;
line-height: 1.3em;
font-size: 26px;
}
.profile-section .content-part p {
font-size: 16px;
margin: 0;
}
.profile-section .content-column {
position: relative;
}
.profile-section .content-column .inner-column {
position: relative;
}
.profile-section .content-column .inner-column h2 {
position: relative;
color: #111111;
font-weight: 700;
margin: 0;
}
.profile-section .content-column .inner-column h4 {
position: relative;
color: #111111;
font-weight: 600;
line-height: 1.3em;
margin-top: 15px;
margin-bottom: 20px;
}
.profile-section .content-column .inner-column h5 {
position: relative;
color: #111111;
font-size: 25px;
font-weight: 600;
line-height: 1.3em;
margin-top: 12px;
margin-bottom: 0px;
}
.profile-section .content-column .inner-column p {
position: relative;
color: #626262;
font-weight: 400;
line-height: 1.9em;
font-size: 16px;
margin-top: 20px;
margin-bottom: 35px;
}
.profile-section .content-column .inner-column .student-list {
position: relative;
margin-top: 25px;
margin-bottom: 10px;
}
.profile-section .content-column .inner-column .student-list li {
position: relative;
color: #393939;
font-size: 16px;
font-weight: 500;
line-height: 1.3em;
margin-right: 80px;
display: inline-block;
list-style: disc;
margin-bottom: 20px;
}
.profile-section .content-column .inner-column .student-list li .fa {
color: #21a7d0;
margin: 0px 2px;
}
.profile-section .content-column .inner-column .student-list li:last-child {
margin-right: 0px;
}
.profile-section .image-column {
position: relative;
}
.profile-section .image-column .inner-column {
position: relative;
padding: 30px;
border-radius: 8px;
background-color: #ffffff;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.12);
}
.profile-section .image-column .inner-column .image {
position: relative;
}
.profile-section .image-column .inner-column .image img {
position: relative;
display: inline-block;
border-radius: 5px;
width: 100%;
}
.profile-section .image-column .team-content h3 {
position: relative;
font-weight: 700;
color: #111111;
margin-top: 30px;
margin-bottom: 10px;
}
.profile-section .image-column .team-content .text {
position: relative;
color: #626262;
font-size: 16px;
line-height: 1.7em;
margin-bottom: 8px;
}
.profile-section .image-column .team-content .personal-info {
margin-bottom: 20px;
}
.profile-section .image-column .team-content .personal-info li {
margin: 5px 0;
display: inline-block;
padding-right: 15px;
}
.profile-section .image-column .team-content .personal-info li:last-child {
margin-right: none;
}
.profile-section .image-column .team-content .personal-info li a {
color: #111111;
}
.profile-section .image-column .team-content .personal-info li a:hover {
color: #21a7d0;
}
.profile-section .image-column .team-content .personal-info li span i:before {
font-size: 16px;
margin-right: 10px;
}
.profile-section .image-column .social-box {
position: relative;
text-align: center;
}
.profile-section .image-column .social-box a {
position: relative;
color: #626262;
font-size: 28px;
margin: 0px 5px;
display: inline-block;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.profile-section .image-column .social-box a:hover {
color: #21a7d0;
}
.profile-section .browse-course-section {
position: relative;
margin-top: 50px;
}
.profile-section .browse-course-section .styled-pagination {
margin-top: 20px;
}
.profile-section .skill-title {
font-size: 25px;
margin-top: 15px;
margin-bottom: 30px;
}
.profile-section .rs-progress {
height: 8px;
border: 1px solid #21a7d0;
border-radius: 0;
overflow: visible;
padding: 1px;
background: #fff;
margin-top: 25px;
}
.profile-section .rs-progress + .rs-progress {
margin-top: 50px;
}
.profile-section .rs-progress .progress-bar {
position: relative;
text-align: left;
line-height: 4px;
border-radius: 0;
box-shadow: none;
background-color: #21a7d0;
overflow: visible;
}
.profile-section .rs-progress .progress-bar .pb-label {
position: absolute;
left: 0px;
top: -24px;
color: #666;
font-size: 15px;
font-weight: 600;
}
.profile-section .rs-progress .progress-bar .pb-percent {
position: absolute;
right: -13px;
font-weight: 500;
color: #fff;
font-size: 10px;
top: -30px;
background: #21a7d0;
padding: 8px 5px;
}
.profile-section .rs-progress .progress-bar .pb-percent:after {
content: '';
position: absolute;
border: 5px solid transparent;
left: 50%;
border-top-color: #21a7d0;
top: 20px;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
/* ------------------------------------
17. Testimonial Section CSS
---------------------------------------*/
.rs-testimonial.style1 .testi-item {
background: #f3f8f9;
max-width: 1000px;
margin: 0 0 0 auto;
position: relative;
}
.rs-testimonial.style1 .testi-item .img-part {
position: absolute;
left: -240px;
top: 50px;
}
.rs-testimonial.style1 .testi-item .img-part img {
border-radius: 5px;
max-width: 450px;
}
.rs-testimonial.style1 .testi-item .content-part {
padding: 98px 0 98px 320px;
}
.rs-testimonial.style1 .testi-item .content-part .desc {
font-family: 'Nunito', sans-serif;
font-weight: 600;
color: #111111;
font-size: 36px;
line-height: 46px;
position: relative;
}
.rs-testimonial.style1 .testi-item .content-part .desc:before,
.rs-testimonial.style1 .testi-item .content-part .desc:after {
content: "\f151";
font-family: Flaticon;
font-size: 20px;
color: #111111;
}
.rs-testimonial.style1 .testi-item .content-part .desc:before {
transform: rotateY(180deg);
position: absolute;
left: -30px;
top: -13px;
}
.rs-testimonial.style1 .testi-item .content-part .desc:after {
position: relative;
bottom: -7px;
right: -8px;
}
.rs-testimonial.style1 .testi-item .content-part .desc.title-color {
color: #111111;
}
.rs-testimonial.style1 .testi-item .content-part .name {
margin: 0;
color: #111111;
font-weight: 500;
}
.rs-testimonial.style1 .rs-carousel.nav-style2 .owl-nav {
bottom: 35px;
right: 50px;
top: unset;
}
.rs-testimonial.style2 .donation-part img {
border-radius: 5px;
margin-bottom: 22px;
}
.rs-testimonial.style2 .testi-wrap {
overflow: hidden;
background: #f3f8f9;
border-radius: 5px;
padding: 30px;
}
.rs-testimonial.style2 .testi-wrap .img-part {
max-width: 209px;
float: left;
margin-right: 58px;
}
.rs-testimonial.style2 .testi-wrap .img-part img {
border-radius: 5px;
}
.rs-testimonial.style2 .testi-wrap .content-part .desc {
font-size: 22px;
font-weight: 600;
line-height: 30px;
font-family: 'Nunito', sans-serif;
color: #112958;
display: inline;
position: relative;
}
.rs-testimonial.style2 .testi-wrap .content-part .desc:before,
.rs-testimonial.style2 .testi-wrap .content-part .desc:after {
content: "\f151";
font-family: Flaticon;
font-size: 20px;
color: #112958;
}
.rs-testimonial.style2 .testi-wrap .content-part .desc:after {
position: relative;
bottom: -7px;
right: -8px;
}
.rs-testimonial.style2 .testi-wrap .content-part .desc:before {
transform: rotateY(180deg);
position: absolute;
left: -30px;
top: -13px;
}
.rs-testimonial.style2 .testi-wrap .content-part .desc.title-color {
color: #111111;
}
.rs-testimonial.style2 .testi-wrap .content-part .info {
margin-top: 20px;
color: #505050;
}
.rs-testimonial.style2 .testi-wrap .content-part .info .name {
margin: 0;
font-weight: 600;
}
.rs-testimonial.style2 .testi-wrap .content-part.new-content .desc {
font-size: 22px;
font-weight: 600;
line-height: 30px;
font-family: 'Nunito', sans-serif;
color: #111111;
display: inline;
position: relative;
}
.rs-testimonial.style2 .testi-wrap .content-part.new-content .desc:before,
.rs-testimonial.style2 .testi-wrap .content-part.new-content .desc:after {
content: "\f151";
font-family: Flaticon;
font-size: 20px;
color: #111111;
}
.rs-testimonial.style2 .testi-wrap .content-part.new-content .desc:after {
position: relative;
bottom: -7px;
right: -8px;
}
.rs-testimonial.style2 .testi-wrap .content-part.new-content .desc:before {
transform: rotateY(180deg);
position: absolute;
left: -30px;
top: -13px;
}
.rs-testimonial.style3 .testi-item {
background-color: #f3f8f9;
background-image: url(assets/images/testimonial/cloud-pattern.png);
background-repeat: no-repeat;
background-size: 130%;
background-position: 0 70px;
border-radius: 10px;
padding: 40px 45px;
}
.rs-testimonial.style3 .testi-item .user-info img {
max-width: 84px;
height: auto;
margin-bottom: 22px;
}
.rs-testimonial.style3 .testi-item .user-info .name {
font-size: 20px;
margin-bottom: 5px;
}
.rs-testimonial.style3 .testi-item .user-info .designation {
font-size: 14px;
color: #555555;
font-weight: 500;
}
.rs-testimonial.style3 .testi-item .user-info .ratings {
margin-top: 10px;
}
.rs-testimonial.style3 .testi-item .user-info .ratings li {
display: inline;
}
.rs-testimonial.style3 .testi-item .user-info .ratings li i {
color: #fcb903;
}
.rs-testimonial.style3 .testi-item .desc {
font-size: 17px;
font-style: italic;
}
.rs-testimonial.style3 .owl-dots {
text-align: center;
margin-top: 47px;
}
.rs-testimonial.style3 .owl-dots .owl-dot {
display: inline-block;
width: 15px;
height: 5px;
border-radius: 2.5px;
background: #21a7d0;
margin: 0 5px;
opacity: 0.5;
}
.rs-testimonial.style3 .owl-dots .owl-dot.active {
opacity: 1;
}
.rs-testimonial.style4 .testi-item {
border-radius: 10px;
padding: 30px;
padding-right: 20px;
background: #ffffff;
border: 1px solid rgba(33, 167, 208, 0.1);
transition: all 0.3s ease;
}
.rs-testimonial.style4 .testi-item .user-img img {
max-width: 100px;
height: auto;
}
.rs-testimonial.style4 .testi-item .user-info {
padding-left: 20px;
}
.rs-testimonial.style4 .testi-item .user-info .name {
font-size: 18px;
line-height: 1.2;
font-weight: 600;
margin: 0;
color: #111111;
}
.rs-testimonial.style4 .testi-item .user-info .name:hover {
color: #21a7d0;
}
.rs-testimonial.style4 .testi-item .user-info .designation {
display: block;
}
.rs-testimonial.style4 .testi-item .user-info .desc {
margin-bottom: 20px;
}
.rs-testimonial.style4 .testi-item .user-info .quote {
color: #111111;
font-weight: bold;
}
.rs-testimonial.style4 .center .testi-item {
border: none;
box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.1);
}
.rs-testimonial.style4 .owl-dots {
text-align: center;
margin-top: 47px;
}
.rs-testimonial.style4 .owl-dots .owl-dot {
display: inline-block;
width: 15px;
height: 5px;
border-radius: 2.5px;
background: #21a7d0;
margin: 0 5px;
opacity: 0.5;
}
.rs-testimonial.style4 .owl-dots .owl-dot.active {
opacity: 1;
}
.rs-testimonial.style4 .owl-stage-outer {
padding: 10px;
margin: -10px;
}
.rs-testimonial.style5 {
background: url(assets/images/bg/testi-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
}
.rs-testimonial.style5 .testi-item .author-desc {
position: relative;
text-align: center;
padding: 35px 15px;
}
.rs-testimonial.style5 .testi-item .author-desc .desc {
position: relative;
background: #ffffff;
padding: 25px 25px 55px;
}
.rs-testimonial.style5 .testi-item .author-desc .desc .quote {
width: auto;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 10px;
}
.rs-testimonial.style5 .testi-item .author-desc .desc:before {
content: '';
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
background: #dbf2f7;
z-index: -1;
transform: rotate(10deg);
border-radius: 10px;
}
.rs-testimonial.style5 .testi-item .author-desc .author-img {
position: absolute;
bottom: -55px;
left: 50%;
transform: translateX(-50%);
bottom: 0;
}
.rs-testimonial.style5 .testi-item .author-desc .author-img img {
width: auto;
border-radius: 50%;
}
.rs-testimonial.style5 .testi-item .author-part {
text-align: center;
}
.rs-testimonial.style5 .testi-item .author-part .name {
display: block;
font-size: 18px;
font-weight: 600;
color: #111111;
margin-top: 15px;
}
.rs-testimonial.style6 .testimonial-item {
display: flex;
}
.rs-testimonial.style6 .testimonial-item .content-part {
padding: 0 30px;
}
.rs-testimonial.style6 .testimonial-item .content-part .content-wrap .text p {
font-size: 24px;
line-height: 40px;
color: #222222;
font-style: italic;
}
.rs-testimonial.style6 .testimonial-item .content-part .content-wrap .info .name {
font-size: 22px;
line-height: 38px;
color: #031a3d;
margin-bottom: 10px;
}
.rs-testimonial.style6 .testimonial-item .content-part .content-wrap .info .position {
font-size: 16px;
line-height: 28px;
color: #54647b;
}
.rs-testimonial.style7 {
background: #e7f8fb;
}
.rs-testimonial.style7 .testi-item {
background: #ffffff !important;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.05) !important;
}
.rs-testimonial.style7 .testi-item .user-info img {
width: 80px !important;
height: 80px !important;
border-radius: 50% !important;
display: block !important;
}
.rs-testimonial.style8 .testi-item .author-desc {
position: relative;
text-align: center;
padding: 35px 15px;
}
.rs-testimonial.style8 .testi-item .author-desc .desc {
position: relative;
background-color: #f9f8f8;
padding: 25px 25px 55px;
}
.rs-testimonial.style8 .testi-item .author-desc .desc .quote {
width: auto;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 10px;
}
.rs-testimonial.style8 .testi-item .author-desc .desc:before {
content: '';
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
background: #f9f8f8;
z-index: -1;
transform: rotate(10deg);
border-radius: 10px;
}
.rs-testimonial.style8 .testi-item .author-desc .author-img {
position: absolute;
bottom: -55px;
left: 50%;
transform: translateX(-50%);
bottom: 0;
}
.rs-testimonial.style8 .testi-item .author-desc .author-img img {
margin: auto;
max-width: 70px;
border-radius: 50%;
}
.rs-testimonial.style8 .testi-item .author-part {
text-align: center;
}
.rs-testimonial.style8 .testi-item .author-part .name {
display: block;
font-size: 18px;
font-weight: 600;
color: #111111;
margin-top: 15px;
}
.rs-testimonial.style8 .owl-dots {
text-align: center;
margin-top: 47px;
}
.rs-testimonial.style8 .owl-dots .owl-dot {
width: 25px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
background: #208cad;
border: none;
transition: all 0.3s ease;
}
.rs-testimonial.style8 .owl-dots .owl-dot:hover,
.rs-testimonial.style8 .owl-dots .owl-dot.active {
width: 40px;
opacity: 1;
background: #21a7d0;
}
.rs-testimonial.style8 .owl-stage-outer {
padding: 10px;
margin: -10px;
}
.rs-testimonial.main-home {
background: url(assets/images/bg/main-home.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.rs-testimonial.main-home .testi-item .author-desc {
padding: 70px 15px;
background-color: #171F3296;
border-radius: 5px 5px 5px 5px;
}
.rs-testimonial.main-home .testi-item .author-desc .desc {
text-align: center;
position: relative;
color: #ffffff;
padding: 80px 40px 30px;
font-size: 23px;
line-height: 33px;
font-weight: 500;
font-style: italic;
}
.rs-testimonial.main-home .testi-item .author-desc .desc .quote {
width: 66px;
top: -13px;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.rs-testimonial.main-home .testi-item .author-desc .desc:before {
content: none;
}
.rs-testimonial.main-home .testi-item .author-desc .author-img {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 80px;
}
.rs-testimonial.main-home .testi-item .author-desc .author-img img {
width: auto;
border-radius: 50%;
}
.rs-testimonial.main-home .testi-item .author-part {
text-align: center;
padding-top: 45px;
}
.rs-testimonial.main-home .testi-item .author-part .name {
font-size: 20px;
font-weight: 700;
line-height: 45px;
color: #ffffff;
display: block;
}
.rs-testimonial.main-home .testi-item .author-part .designation {
font-size: 16px;
color: #ffffff;
}
.rs-testimonial.main-home .owl-dots {
text-align: center;
margin-top: 47px;
}
.rs-testimonial.main-home .owl-dots .owl-dot {
width: 25px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
background: #208cad;
border: none;
transition: all 0.3s ease;
}
.rs-testimonial.main-home .owl-dots .owl-dot:hover,
.rs-testimonial.main-home .owl-dots .owl-dot.active {
width: 40px;
background: #21a7d0;
opacity: 1;
}
.rs-testimonial.main-home .owl-stage-outer {
padding: 10px;
margin: -10px;
}
.rs-testimonial.home9-style .testi-item p {
font-size: 25px;
font-style: italic;
color: #111111;
padding: 15px 0px 15px 0px;
margin-bottom: 30px;
}
.rs-testimonial.home9-style .testi-item .testi-information {
color: #505050;
}
.rs-testimonial.home9-style .testi-item .testi-information .name {
font-size: 24px;
font-weight: 700;
text-transform: uppercase;
color: #111111;
margin-bottom: 15px;
}
.rs-testimonial.home9-style .testi-item .testi-information .designation {
font-size: 22px;
font-weight: 500;
}
.rs-testimonial.home-style1 .testi-item .author-desc {
padding: 70px 15px;
background-color: #f3f8f9;
border-radius: 5px 5px 5px 5px;
}
.rs-testimonial.home-style1 .testi-item .author-desc .desc {
text-align: center;
position: relative;
color: #505050;
padding: 80px 40px 30px;
font-size: 23px;
line-height: 33px;
font-weight: 500;
font-style: italic;
}
.rs-testimonial.home-style1 .testi-item .author-desc .desc .quote {
width: 66px;
top: -13px;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.rs-testimonial.home-style1 .testi-item .author-desc .desc:before {
content: none;
}
.rs-testimonial.home-style1 .testi-item .author-desc .author-img {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 80px;
}
.rs-testimonial.home-style1 .testi-item .author-desc .author-img img {
width: auto;
border-radius: 50%;
}
.rs-testimonial.home-style1 .testi-item .author-part {
text-align: center;
padding-top: 45px;
}
.rs-testimonial.home-style1 .testi-item .author-part .name {
font-size: 20px;
font-weight: 700;
line-height: 45px;
color: #ffffff;
display: block;
}
.rs-testimonial.home-style1 .testi-item .author-part .designation {
font-size: 16px;
color: #ffffff;
}
.rs-testimonial.home-style1 .owl-dots {
text-align: center;
margin-top: 47px;
}
.rs-testimonial.home-style1 .owl-dots .owl-dot {
width: 40px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
background: #21a7d0;
border: none;
}
.rs-testimonial.home-style1 .owl-dots .owl-dot:hover,
.rs-testimonial.home-style1 .owl-dots .owl-dot.active {
background: #21a7d0;
opacity: 1;
}
.rs-testimonial.home-style1 .owl-stage-outer {
padding: 10px;
margin: -10px;
}
.rs-testimonial.home11-style .rs-carousel .owl-dots {
text-align: center;
}
.rs-testimonial.home11-style .rs-carousel .owl-dots .owl-dot {
position: relative;
border: none;
border-radius: 50%;
background: #21a7d0;
width: 10px;
height: 10px;
margin-bottom: 10px;
transition: all 0.3s ease;
margin-right: 11px;
}
.rs-testimonial.home11-style .rs-carousel .owl-dots .owl-dot:before {
content: "";
position: absolute;
width: 18px;
height: 18px;
left: -4px;
top: -4px;
border-radius: 50%;
border-width: 1px;
border-style: solid;
border-color: #4e49a1;
border-image: initial;
}
.rs-testimonial.home11-style .rs-carousel .owl-dots .active {
background: #4e49a1;
}
.rs-testimonial.home11-style .testi-item .user-info {
position: relative;
padding: 25px 30px;
background: #e7f9fb;
border: 1px solid #e7f9fb;
}
.rs-testimonial.home11-style .testi-item .user-info .desc {
font-size: 18px;
line-height: 30px;
font-weight: 400;
color: #54647b;
margin-bottom: 15px;
}
.rs-testimonial.home11-style .testi-item .user-info .name {
font-size: 20px;
line-height: 30px;
font-weight: 600;
color: #4e49a1;
margin-bottom: 0;
}
.rs-testimonial.home11-style .testi-item .user-info .name:hover {
color: #21a7d0;
}
.rs-testimonial.home11-style .testi-item .user-info .position {
font-size: 15px;
margin-bottom: 0;
}
.rs-testimonial.home11-style .testi-item .user-info .position span {
font-weight: 500;
}
.rs-testimonial.home11-style .testi-item .user-info::before {
content: "";
height: 0;
width: 0;
top: 30px;
right: 100%;
border: solid transparent;
position: absolute;
pointer-events: none;
}
.rs-testimonial.home11-style .testi-item .user-info:before {
border-right-color: #e7f9fb;
border-width: 15px;
}
.rs-testimonial.orange-color .testi-item .user-info .ratings li i {
color: #21a7d0;
}
.rs-testimonial.orange-color .owl-dots .owl-dot {
border-color: #21a7d0 !important;
background: #21a7d0 !important;
}
.rs-testimonial.home12-style {
background: url(assets/images/bg/home12/testi-bg.jpg);
background-repeat: no-repeat;
background-position: center top;
background-size: cover;
padding: 150px 0;
}
.rs-testimonial.home12-style .testi-item {
padding: 100px 40px 40px 40px;
background-color: #ffffff;
margin-right: 14px;
margin-bottom: 0px;
}
.rs-testimonial.home12-style .testi-item .item-content-basic {
position: relative;
text-align: center;
}
.rs-testimonial.home12-style .testi-item .item-content-basic .desc {
font-style: italic;
margin-bottom: 28px;
}
.rs-testimonial.home12-style .testi-item .item-content-basic .desc .quote {
width: 46px;
top: -70px;
position: absolute;
z-index: 1;
left: 50%;
transform: translateX(-50%);
}
.rs-testimonial.home12-style .testi-item .item-content-basic .testi-content .img-wrap {
margin-bottom: 20px;
}
.rs-testimonial.home12-style .testi-item .item-content-basic .testi-content .img-wrap img {
height: 65px;
width: 65px;
border-radius: 50%;
position: relative;
margin: 0 auto;
}
.rs-testimonial.home12-style .testi-item .item-content-basic .testi-content .name {
font-size: 20px;
color: #000000;
font-weight: 700;
font-family: 'Nunito', sans-serif;
}
.rs-testimonial.home12-style .testi-item .item-content-basic .testi-content .designation {
font-size: 16px;
line-height: 27px;
font-weight: 400;
color: #555555;
}
.rs-testimonial.home13-style .content {
margin-bottom: -170px;
}
.rs-testimonial.home13-style .content .sub-title {
font-size: 16px;
line-height: 27px;
font-weight: 400;
color: #21a7d0;
text-transform: uppercase;
}
.rs-testimonial.home13-style .content .title {
font-size: 42px;
line-height: 52px;
font-weight: 600;
color: #ffffff;
}
.rs-testimonial.home13-style .slick-part .slider-nav .slick-list {
padding: 0 7px !important;
margin-bottom: 32px;
}
.rs-testimonial.home13-style .slick-part .slider .images-single {
padding: 0 0 0 6.5px;
}
.rs-testimonial.home13-style .slick-part .slider .images-single img {
border-radius: 3px;
}
.rs-testimonial.home13-style .slick-part .slider .images-single .polite {
background: #f00;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .single-testimonial {
display: flex;
align-items: center;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .single-testimonial .images-part {
width: 50%;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .single-testimonial .content-part {
width: 50%;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .content-part {
width: 50%;
padding: 0px 0px 0px 34px;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .content-part .quote {
width: 40px;
margin-bottom: 20px;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .content-part p {
font-size: 22px;
font-weight: 400;
font-style: italic;
color: #ffffff;
padding: 0px 0px 30px 0px;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .content-part .name {
font-size: 22px;
font-weight: 600;
line-height: 32px;
color: #ffffff;
}
.rs-testimonial.home13-style .slick-part .slider button {
border: none;
font-size: 0px;
background: none;
}
.rs-testimonial.home13-style .slick-part .slider button.slick-prev:before {
content: "\f137";
font-family: Flaticon;
color: #fff;
font-size: 18px;
background: #21a7d0;
width: 45px;
display: block;
height: 45px;
line-height: 45px;
border-radius: 35px;
right: 40%;
bottom: 50px;
position: absolute;
z-index: 10;
}
.rs-testimonial.home14-style .owl-stage-outer {
padding: 10px 10px 10px;
margin: 0 10px;
}
.rs-testimonial.home14-style .testi-item {
padding: 38px 37px 30px 37px;
background: #ffffff;
box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.03);
}
.rs-testimonial.home14-style .testi-item .image-wrap {
position: relative;
margin-bottom: 25px;
}
.rs-testimonial.home14-style .testi-item .image-wrap img {
height: 65px;
width: 65px;
border-radius: 50%;
position: relative;
}
.rs-testimonial.home14-style .testi-item .item-content {
position: relative;
}
.rs-testimonial.home14-style .testi-item .item-content .quote-positions {
width: 18px;
top: 136px;
position: absolute;
z-index: 1;
left: 154px;
}
.rs-testimonial.home14-style .testi-item .item-content p {
font-size: 18px;
line-height: 31px;
font-weight: 400;
color: #505050;
margin-bottom: 18px;
}
.rs-testimonial.home14-style .testi-item .testi-content .testi-name {
font-size: 20px;
line-height: 34px;
font-weight: 500;
color: #101010;
}
.rs-testimonial.home14-style .testi-item .testi-content .testi-title {
font-size: 18px;
line-height: 31px;
font-weight: 400;
color: #505050;
display: block;
}
/* ------------------------------------
18. Blog Section CSS
---------------------------------------*/
.rs-blog.style1 .blog-item {
border-radius: 3px;
overflow: hidden;
border: 1px solid #dfe9eb;
}
.rs-blog.style1 .blog-item .image-part {
overflow: hidden;
height: 100%;
}
.rs-blog.style1 .blog-item .image-part a img {
transition: all 0.5s;
transform: scale(1);
height: 100%;
width: 100%;
}
.rs-blog.style1 .blog-item .blog-content {
padding: 37px 19px 30px;
}
.rs-blog.style1 .blog-item .blog-content .title {
margin-bottom: 14px;
font-size: 24px;
line-height: 34px;
}
.rs-blog.style1 .blog-item .blog-content .title a {
color: #111111;
}
.rs-blog.style1 .blog-item .blog-content .title a:hover {
color: #21a7d0;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta {
margin-bottom: 11px;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta li {
position: relative;
margin-right: 5px;
padding-right: 15px;
display: inline-block;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta li i {
padding-right: 3px;
font-size: 14px;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta li i.fa-calendar {
padding-right: 7px;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta li a {
color: #505050;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta li:last-child {
margin: 0;
padding: 0;
}
.rs-blog.style1 .blog-item .blog-content .readon-arrow {
text-transform: uppercase;
}
.rs-blog.style1 .blog-item:hover .image-part a img {
transform: scale(1.07);
}
.rs-blog.style1 .events-short {
position: relative;
display: flex;
align-items: center;
overflow: hidden;
background: #ffffff;
padding: 30px;
border: 1px solid #dfe9eb;
border-radius: 3px;
}
.rs-blog.style1 .events-short .date-part {
position: absolute;
background: #f3f8f9;
width: 100px;
text-align: center;
padding: 11px 0 22px;
border-radius: 3px;
}
.rs-blog.style1 .events-short .date-part .month {
margin-bottom: 10px;
display: block;
}
.rs-blog.style1 .events-short .date-part .date {
font-size: 50px;
font-family: 'Nunito', sans-serif;
color: #21a7d0;
font-weight: 700;
}
.rs-blog.style1 .events-short .content-part {
padding-left: 120px;
}
.rs-blog.style1 .events-short .content-part .categorie a {
color: #505050;
}
.rs-blog.style1 .events-short .content-part .categorie a:hover {
color: #21a7d0;
}
.rs-blog.style1 .events-short .content-part .title {
line-height: 1.5;
}
.rs-blog.style1 .events-short .content-part .title a {
color: #111111;
}
.rs-blog.style1 .events-short .content-part .title a:hover {
color: #21a7d0;
}
.rs-blog.style1 .events-short.new-style {
padding: unset;
border: none;
}
.rs-blog.style1 .events-short.new-style .date-part {
position: absolute;
width: 100px;
text-align: center;
padding: 11px 0 22px;
border-radius: 3px;
}
.rs-blog.style1 .events-short.new-style .date-part .month {
color: #ffffff;
}
.rs-blog.style1 .events-short.new-style .date-part .date {
color: #ffffff;
}
.rs-blog.style1 .events-short.new-style .date-part.bg1 {
background: #4e49a1;
}
.rs-blog.style1 .events-short.new-style .date-part.bg2 {
background: #ff6666;
}
.rs-blog.style1 .events-short.new-style .date-part.bg3 {
background: #ffaf40;
}
.rs-blog.style1 .events-short.new-style .date-part.bg4 {
background: #95cc47;
}
.rs-blog.style1 .events-short.new-style .content-part .categorie .timesec {
color: #54647b;
}
.rs-blog.style1 .events-short.new-style .content-part .categorie a {
color: #4e49a1;
}
.rs-blog.style1 .events-short.new-style .content-part .title {
padding-right: 62px;
font-size: 22px;
}
.rs-blog.style1 .events-short.new-style .content-part .title a {
color: #4e49a1;
}
.rs-blog.style1 .events-short.new-style .content-part .title a:hover {
color: #21a7d0;
}
.rs-blog.style1.modify1 .blog-item {
border: 1px solid #c7e8f0;
}
.rs-blog.style1.modify1 .blog-item .blog-content {
padding: 33px 30px 34px;
}
.rs-blog.style1.modify1 .events-short {
overflow: visible;
background: #ffffff;
padding: 6px 0;
border: none;
border-radius: 0;
}
.rs-blog.style1.modify1 .events-short .date-part {
background: #f3f8f9;
}
.rs-blog.style1.modify1 .events-short .date-part.bgc1 {
background: #dcf1fd;
}
.rs-blog.style1.modify1 .events-short .date-part.bgc2 {
background: #eaddf8;
}
.rs-blog.style1.modify1 .events-short .date-part.bgc3 {
background: #f8f6d1;
}
.rs-blog.style1.modify1 .events-short .date-part.bgc4 {
background: #f9e8e8;
}
.rs-blog.style1.modify1 .events-short .content-part .title {
font-size: 22px;
}
.rs-blog.style1.home11-style .blog-item {
border-radius: 3px;
overflow: hidden;
border: 1px solid #dfe9eb;
}
.rs-blog.style1.home11-style .blog-item .blog-content {
padding: 37px 25px 30px;
}
.rs-blog.style1.home11-style .blog-item .blog-content .title a {
color: #4e49a1;
}
.rs-blog.style1.home11-style .blog-item .blog-content .title a:hover {
color: #21a7d0;
}
.rs-blog.style1.home11-style .blog-item .blog-content .blog-meta {
margin-bottom: 11px;
}
.rs-blog.style1.home11-style .blog-item .blog-content .blog-meta li {
color: #54647b;
}
.rs-blog.style1.home11-style .blog-item .blog-content .btn-part .readon-arrow {
color: #4e49a1;
}
.rs-blog.style1.home11-style .blog-item .blog-content .btn-part .readon-arrow:after {
color: #4e49a1;
}
.rs-blog.style1.home11-style .blog-item .blog-content .btn-part .readon-arrow:hover {
color: #21a7d0;
}
.rs-blog.style1.home11-style .blog-item .blog-content .btn-part .readon-arrow:hover:after {
color: #21a7d0;
}
.rs-blog.style1.home11-style .blog-item:hover .image-part a img {
transform: scale(1.07);
}
.rs-blog.style2 .blog-item {
border-radius: 3px;
background: #ffffff;
overflow: hidden;
}
.rs-blog.style2 .blog-item .image-part {
overflow: hidden;
height: 100%;
}
.rs-blog.style2 .blog-item .image-part img {
transition: all 0.5s;
transform: scale(1);
}
.rs-blog.style2 .blog-item .blog-content {
padding: 21px 30px 30px;
color: #273c66;
background: #fcfcfc;
}
.rs-blog.style2 .blog-item .blog-content .title {
margin-bottom: 14px;
font-size: 24px;
line-height: 34px;
}
.rs-blog.style2 .blog-item .blog-content .title a {
color: #111111;
}
.rs-blog.style2 .blog-item .blog-content .title a:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content .categories {
color: #505050;
}
.rs-blog.style2 .blog-item .blog-content .desc {
color: #505050;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta {
margin-bottom: 11px;
color: #505050;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li {
position: relative;
margin-right: 5px;
padding-right: 15px;
display: inline-block;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li i {
padding-right: 3px;
font-size: 14px;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li i.fa-calendar {
padding-right: 7px;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li a {
color: #273c66;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li:last-child {
margin: 0;
padding: 0;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom {
overflow: hidden;
padding-top: 21px;
margin-top: 21px;
border-top: 1px solid #dcdfe6;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li {
display: inline;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.cmnt-part a {
color: #273c66;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.cmnt-part a:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.btn-part {
float: right;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.btn-part .readon-arrow {
text-transform: uppercase;
color: #273c66;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.btn-part .readon-arrow:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.primary-border {
border: 1px solid rgba(33, 167, 208, 0.1);
border-top: none;
}
.rs-blog.style2 .blog-item .blog-content.new-style .title a {
color: #112958;
}
.rs-blog.style2 .blog-item .blog-content.new-style .title a:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li {
display: inline;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.cmnt-part a {
color: #505050;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.cmnt-part a:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.btn-part {
float: right;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.btn-part .readon-arrow {
text-transform: uppercase;
color: #112958;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.btn-part .readon-arrow:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.cmnt-part a {
color: #505050;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.cmnt-part a:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.btn-part {
float: right;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.btn-part .readon-arrow {
text-transform: uppercase;
color: #111111;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.btn-part .readon-arrow:hover {
color: #21a7d0;
}
.rs-blog.style2 .blog-item:hover .image-part img {
transform: scale(1.07);
}
.rs-blog.style2.modify .blog-item .blog-content {
border: none;
background: #ffffff;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.rs-blog.style2.modify .blog-item .blog-content .blog-bottom .btn-part {
font-weight: 600;
color: #111111;
}
.rs-blog.style2.modify .blog-item .blog-content .blog-bottom .btn-part .readon-arrow {
font-weight: 600;
color: #111111;
}
.rs-blog.style2.modify2 .owl-stage-outer {
padding-bottom: 10px;
margin: -10px;
padding-left: 10px;
}
.rs-blog.style2.modify2 .blog-item {
overflow: visible !important;
}
.rs-blog.style2.modify2 .blog-item .blog-content {
background: #ffffff !important;
box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.2) !important;
transition: all 500ms ease;
position: relative;
}
.rs-blog.style2.modify2 .blog-item .blog-content .categories.color-bg1 {
color: #c701f1;
}
.rs-blog.style2.modify2 .blog-item .blog-content .categories.color-bg2 {
color: #065ce8;
}
.rs-blog.style2.modify2 .blog-item .blog-content .categories.color-bg3 {
color: #f6075b;
}
.rs-blog.style2.modify2 .blog-item:hover .blog-content {
transform: translateY(-10px);
}
.rs-blog.main-home .owl-stage-outer {
padding: 0 10px 10px;
margin: 0 -10px;
}
.rs-blog.main-home .blog-item {
background: #fff;
transition: all 500ms ease;
border-radius: 5px;
}
.rs-blog.main-home .blog-item .blog-content {
box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
padding: 40px 35px 16px;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta {
margin-bottom: 11px;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li {
position: relative;
margin-right: 5px;
padding-right: 15px;
display: inline-block;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li i {
padding-right: 3px;
font-size: 14px;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li i:before {
padding-right: 7px;
color: #21a7d0;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li a {
color: #505050;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li:last-child {
margin: 0;
padding: 0;
}
.rs-blog.main-home .blog-item .blog-content .title {
margin-bottom: 14px;
font-size: 24px;
line-height: 34px;
}
.rs-blog.main-home .blog-item .blog-content .title a {
color: #101010;
}
.rs-blog.main-home .blog-item .blog-content .title a:hover {
color: #21a7d0;
}
.rs-blog.main-home .blog-item .blog-content .desc {
color: #505050;
padding-bottom: 20px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm {
display: flex;
justify-content: space-between;
border-top: 1px solid #f4f0f0;
padding-top: 20px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories {
display: flex;
position: relative;
padding-left: 22px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories:before {
content: "\f02d";
font-family: fontawesome;
font-size: 15px;
color: #21a7d0;
position: absolute;
left: 0px;
top: 1px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories li {
font-size: 14px;
text-transform: capitalize;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories li a {
color: #505050;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories li a:hover {
color: #21a7d0;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .rs-view-btn a {
padding: 0px 0px 0px 0px;
font-family: "Rubik", Sans-serif;
font-weight: 400;
color: #505050;
font-size: 15px;
position: relative;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .rs-view-btn a:after {
content: "\f054";
font-family: fontawesome;
font-size: 12px;
position: relative;
right: 0px;
top: 0px;
display: inline-block;
margin-left: 3px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .rs-view-btn a:hover {
color: #21a7d0;
}
.rs-blog.main-home .blog-item:hover {
transform: translateY(-10px);
}
.rs-blog.main-home.modify1 .blog-item .blog-content {
background-color: #F3FCF8;
padding: 30px 25px 30px 25px;
border-radius: 0 0 5px 5px;
box-shadow: unset;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta {
font-size: 14px;
text-transform: capitalize;
display: flex;
justify-content: space-between;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .date {
color: #333333;
font-size: 14px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .date i:before {
color: #0c8b51;
padding-right: 5px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .admin {
color: #333333;
font-size: 14px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .admin i:before {
color: #0c8b51;
padding-right: 5px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .title {
font-size: 22px;
line-height: 32px;
font-weight: 700;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .title a {
color: #101010;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .title a:hover {
color: #0c8b51;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories:before {
color: #0c8b51;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories li {
font-size: 14px;
font-weight: 400;
text-transform: capitalize;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories li a {
color: #333333;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories li a:hover {
color: #0c8b51;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .rs-view-btn a {
font-weight: 500;
color: #333333;
font-size: 15px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .rs-view-btn a:hover {
color: #0c8b51;
}
.rs-blog.home9-style .blog-item {
border-radius: 3px;
overflow: hidden;
border: 1px solid #dfe9eb;
}
.rs-blog.home9-style .blog-item .image-part {
overflow: hidden;
height: 100%;
}
.rs-blog.home9-style .blog-item .image-part a img {
transition: all 0.5s;
transform: scale(1);
height: 100%;
width: 100%;
}
.rs-blog.home9-style .blog-item .blog-content {
padding: 10px 20px 0px 30px;
}
.rs-blog.home9-style .blog-item .blog-content .title {
margin-bottom: 14px;
font-size: 24px;
line-height: 34px;
}
.rs-blog.home9-style .blog-item .blog-content .title a {
color: #101010;
}
.rs-blog.home9-style .blog-item .blog-content .title a:hover {
color: #f4bf00;
}
.rs-blog.home9-style .blog-item .blog-content .txt {
font-size: 16px;
color: #505050;
font-weight: 400;
margin: 0;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta {
margin-bottom: 11px;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li {
position: relative;
margin-right: 5px;
padding-right: 15px;
display: inline-block;
font-size: 16px;
color: #505050;
font-weight: 400;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li i {
padding-right: 3px;
font-size: 14px;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li i:before {
color: #f4bf00;
padding-right: 5px;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li i:before:last-child {
padding-right: 0;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li a {
color: #505050;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li:last-child {
margin: 0;
padding: 0;
}
.rs-blog.home9-style .blog-item:hover .image-part a img {
transform: scale(1.07);
}
.rs-blog.home9-style .events-short-top {
position: relative;
display: flex;
align-items: center;
overflow: hidden;
border: 1px solid #dfe9eb;
padding: 25px 39px 38px 25px;
align-items: flex-start;
background: #ffffff;
}
.rs-blog.home9-style .events-short-top .date-part {
background: #1C335F;
min-width: 100px;
text-align: center;
padding: 11px 0 22px;
border-radius: 3px;
margin-right: 25px;
transition: all 500ms ease;
}
.rs-blog.home9-style .events-short-top .date-part .month {
margin-bottom: 10px;
display: block;
color: #ffffff;
}
.rs-blog.home9-style .events-short-top .date-part .date {
font-size: 50px;
color: #f4bf00;
font-weight: 700;
line-height: 25px;
}
.rs-blog.home9-style .events-short-top .date-part:hover {
transform: translateY(-10px);
}
.rs-blog.home9-style .events-short-top .content-part .categorie a {
color: #505050;
}
.rs-blog.home9-style .events-short-top .content-part .categorie a:hover {
color: #21a7d0;
}
.rs-blog.home9-style .events-short-top .content-part .title {
line-height: 1.5;
font-weight: 700;
font-size: 24px;
margin-bottom: 6px;
}
.rs-blog.home9-style .events-short-top .content-part .title a {
color: #101010;
}
.rs-blog.home9-style .events-short-top .content-part .title a:hover {
color: #f4bf00;
}
.rs-blog.home9-style .events-short-top .content-part .txt {
font-size: 16px;
color: #505050;
margin: 0;
}
.rs-blog.home9-style .short {
position: relative;
display: flex;
overflow: hidden;
background: #ffffff;
padding: 30px;
border: 1px solid #dfe9eb;
border-radius: 3px;
}
.rs-blog.home9-style .short .date-part {
position: absolute;
background: #1c335f;
width: 100px;
text-align: center;
padding: 11px 0 22px;
border-radius: 3px;
}
.rs-blog.home9-style .short .date-part .month {
margin-bottom: 10px;
display: block;
}
.rs-blog.home9-style .short .date-part .date {
font-size: 50px;
font-family: 'Nunito', sans-serif;
color: #21a7d0;
font-weight: 700;
}
.rs-blog.home9-style .short .content-part {
padding-left: 120px;
}
.rs-blog.home9-style .short .content-part .categorie a {
color: #505050;
}
.rs-blog.home9-style .short .content-part .categorie a:hover {
color: #21a7d0;
}
.rs-blog.home9-style .short .content-part .title {
line-height: 1.5;
}
.rs-blog.home9-style .short .content-part .title a {
color: #111111;
}
.rs-blog.home9-style .short .content-part .title a:hover {
color: #21a7d0;
}
.rs-blog.orange-color .blog-item .blog-content .title a:hover {
color: #21a7d0;
}
.rs-blog.orange-color .blog-item .blog-content .readon-arrow:hover {
color: #21a7d0;
}
.rs-blog.orange-color .blog-item .blog-content .readon-arrow:hover:after {
color: #21a7d0;
}
.rs-blog.orange-color .events-short .content-part .title a:hover {
color: #21a7d0;
}
.rs-blog.gym-home .blog-item {
transition: all 500ms ease;
border-radius: 5px;
}
.rs-blog.gym-home .blog-item .blog-content {
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #252525;
background-color: #1D0E15;
padding: 26px 26px 30px 26px;
}
.rs-blog.gym-home .blog-item .blog-content .post-categories li {
margin-bottom: 10px;
}
.rs-blog.gym-home .blog-item .blog-content .post-categories li a {
font-size: 15px;
color: #21a7d0;
text-transform: uppercase;
margin-bottom: 8px;
}
.rs-blog.gym-home .blog-item .blog-content .title {
font-size: 24px;
font-weight: 700;
margin-bottom: 18px;
}
.rs-blog.gym-home .blog-item .blog-content .title a {
color: #ffffff;
}
.rs-blog.gym-home .blog-item .blog-content .title a:hover {
color: #21a7d0;
}
.rs-blog.gym-home .blog-item .blog-content .blog-meta {
font-size: 14px;
color: #ffffff;
display: flex;
justify-content: space-between;
}
.rs-blog.gym-home .blog-item .blog-content .blog-meta li i {
padding-right: 3px;
font-size: 14px;
color: #21a7d0;
}
.rs-blog.gym-home .blog-item .blog-content .blog-meta li i.fa-calendar {
padding-right: 7px;
}
.rs-blog.gym-home .blog-item:hover {
transform: translateY(-10px);
}
.rs-inner-blog .blog-item {
background: #fff;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}
.rs-inner-blog .blog-item .blog-content {
padding: 40px 46px 45px;
overflow: hidden;
}
.rs-inner-blog .blog-item .blog-content .blog-title {
margin: 4px 0 10px;
font-size: 26px;
line-height: 35px;
}
.rs-inner-blog .blog-item .blog-content .blog-title a {
color: #111111;
}
.rs-inner-blog .blog-item .blog-content .blog-title a:hover {
color: #21a7d0;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate {
overflow: hidden;
margin: 0 0 5px;
padding: 0 0 12px;
font-size: 13px;
display: flex;
align-items: center;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li {
margin-right: 15px;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .blog-date {
display: inline-block;
font-weight: 400;
font-size: 13px;
color: #505050;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .blog-date i {
color: #21a7d0;
margin-right: 3px;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .author {
display: inline-block;
padding: 0;
margin-right: 0;
line-height: normal;
color: #555;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .author i {
color: #21a7d0;
margin-right: 3px;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .tag-line {
position: relative;
padding-left: 2px;
color: #555;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .tag-line i {
margin-right: 3px;
color: #21a7d0;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .tag-line i:before {
font-size: 14px;
font-weight: 600;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .tag-line a {
color: #555;
}
.rs-inner-blog .blog-item .blog-content .blog-desc {
font-size: 16px;
line-height: 27px;
font-weight: 400;
color: #505050;
margin-bottom: 35px;
}
.rs-inner-blog .widget-area .widget-title {
color: #111111;
font-size: 20px;
line-height: 26px;
font-weight: 600;
position: relative;
z-index: 1;
padding-bottom: 12px;
}
.rs-inner-blog .widget-area .widget-title:before {
content: "";
position: absolute;
border: 0;
width: 50px;
height: 2px;
background: #21a7d0;
z-index: 1;
margin-left: 0;
bottom: 0;
left: 0;
}
.rs-inner-blog .widget-area .search-widget {
background: #fff;
padding: 40px 30px 40px;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}
.rs-inner-blog .widget-area .search-widget .search-wrap {
position: relative;
}
.rs-inner-blog .widget-area .search-widget .search-wrap [type=search] {
border: 1px solid #ddd;
color: #444444;
padding: 12px 17px;
width: 100%;
border-radius: 5px;
position: relative;
}
.rs-inner-blog .widget-area .search-widget .search-wrap button {
background: transparent;
border: medium none;
color: #505050;
padding: 11px 15px 12px;
position: absolute;
display: block;
right: 0px;
top: 0;
z-index: 10;
font-size: 20px;
border-radius: 0 5px 5px;
}
.rs-inner-blog .widget-area .search-widget .search-wrap button i:before {
font-weight: 600;
font-size: 18px;
}
.rs-inner-blog .widget-area .search-widget .search-wrap button:hover {
color: #21a7d0;
}
.rs-inner-blog .widget-area .recent-posts {
background: #fff;
padding: 40px 30px 40px;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}
.rs-inner-blog .widget-area .recent-posts ul li {
margin-top: 13px;
padding-top: 13px;
border-top: 1px solid rgba(0, 0, 0, 0.06);
font-weight: 400;
font-size: 16px;
}
.rs-inner-blog .widget-area .recent-posts ul li a {
color: #505050;
}
.rs-inner-blog .widget-area .recent-posts ul li a:hover {
color: #21a7d0;
}
.rs-inner-blog .widget-area .recent-posts-widget {
background: #fff;
padding: 40px 30px 40px;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured {
display: flex;
align-items: center;
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
padding-bottom: 15px;
margin-bottom: 15px;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured .post-img {
max-width: 150px;
padding-right: 15px;
border-radius: 3px;
overflow: hidden;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured .post-desc a {
font-size: 15px;
line-height: 22px;
color: #111111;
font-weight: 400;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured .post-desc a:hover {
color: #21a7d0;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured .post-desc .date {
font-size: 12px;
line-height: 20px;
color: #21a7d0;
font-weight: 400;
display: block;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured .post-desc .date i {
font-size: 12px;
line-height: 12px;
color: #21a7d0;
font-weight: 400;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured:last-child {
margin: 0;
padding: 0;
border: none;
}
.rs-inner-blog .widget-area .widget-archives {
background: #fff;
padding: 40px 30px 40px;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}
.rs-inner-blog .widget-area .widget-archives ul li {
border: none;
position: relative;
padding: 6px 0px 6px 14px;
margin: 0;
font-size: 16px;
}
.rs-inner-blog .widget-area .widget-archives ul li a {
color: #505050;
}
.rs-inner-blog .widget-area .widget-archives ul li a:after {
content: "\f105";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
position: absolute;
left: 0;
top: 6px;
color: #273c66;
}
.rs-inner-blog .widget-area .widget-archives ul li a:hover {
color: #21a7d0;
}
.rs-inner-blog .blog-deatails {
background: #fff;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
margin-bottom: 0;
}
.rs-inner-blog .blog-deatails .blog-full {
padding: 40px 45px 40px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta {
display: flex;
align-items: center;
padding: 0 0 30px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta li .p-date {
color: #555;
font-size: 14px;
margin-right: 8px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta li .p-date i {
font-size: 13px;
margin-right: 3px;
color: #21a7d0;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta li .p-date i:before {
margin-right: 5px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .Post-cate {
list-style: none;
display: inline-block;
padding-right: 10px;
color: #555;
font-size: 14px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line i {
color: #21a7d0;
margin-right: 3px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line i:before {
margin-right: 4px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line a {
font-weight: 400;
color: #555;
font-size: 14px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line a:hover {
color: #21a7d0;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .post-comment {
color: #555;
font-size: 14px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .post-comment i:before {
color: #21a7d0;
}
.rs-inner-blog .blog-deatails .blog-full .blog-desc p {
font-size: 16px;
font-weight: 400;
color: #505050;
}
.rs-inner-blog .blog-deatails .blog-full .title {
color: #111111;
font-size: 36px;
font-weight: 700;
line-height: 40px;
}
.rs-inner-blog .blog-deatails .blog-full .sm-title {
font-size: 20px;
font-weight: 700;
line-height: 28px;
color: #111111;
}
.rs-inner-blog .blog-deatails .blog-full .unorder-list li {
display: block;
position: relative;
padding-left: 25px;
padding-bottom: 15px;
font-weight: 500;
line-height: 25px;
}
.rs-inner-blog .blog-deatails .blog-full .unorder-list li:before {
position: absolute;
top: 0;
left: 0;
content: "\f105";
font-family: FontAwesome;
color: #21a7d0;
font-size: 20px;
}
.rs-inner-blog .ps-navigation {
border-top: 1px solid rgba(170, 170, 170, 0.25);
border-bottom: 1px solid rgba(170, 170, 170, 0.25);
padding: 30px 0;
margin: 60px 0 0;
}
.rs-inner-blog .ps-navigation ul li {
text-align: right;
}
.rs-inner-blog .ps-navigation ul li a {
display: inline-block;
}
.rs-inner-blog .ps-navigation ul li a .next-link {
text-transform: uppercase;
color: #909090;
margin-top: 0;
display: block;
}
.rs-inner-blog .ps-navigation ul li a .next-link:hover {
color: #21a7d0;
}
.rs-inner-blog .ps-navigation ul li a .next-link i:before {
font-size: 16px;
font-style: normal;
color: #505050;
}
.rs-inner-blog .ps-navigation ul li a .link-text {
font-size: 16px;
font-weight: 500;
color: #1c1b1b;
}
.rs-inner-blog .ps-navigation ul li a .link-text:hover {
color: #21a7d0;
}
.rs-inner-blog .comment-area .comment-full .reply-title {
font-size: 24px;
font-weight: 700;
margin-bottom: 30px;
margin-top: 45px;
position: relative;
padding: 0 0 12px;
color: #111111;
}
.rs-inner-blog .comment-area .comment-full p span {
font-size: 16px;
color: #505050;
}
.rs-inner-blog .comment-area .comment-full .from-group {
width: 100%;
height: 50px;
padding: 5px 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
.rs-inner-blog .comment-area .comment-full .submit-btn .submit {
border: 2px solid;
border-color: #21a7d0;
background: #21a7d0;
position: relative;
display: inline-block;
padding: 12px 22px;
border-radius: 3px;
line-height: normal;
font-size: 14px;
font-weight: 500;
color: #fff;
transition: all .3s ease 0s;
text-transform: uppercase;
}
.rs-inner-blog .comment-area .comment-full .submit-btn .submit:hover {
opacity: 0.9;
}
.rs-inner-blog.orange-color .blog-btn:hover,
.rs-inner-blog.orange-color .blog-btn:hover::after,
.rs-inner-blog.orange-color .widget-area .recent-posts ul li a:hover,
.rs-inner-blog.orange-color .blog-item .blog-content .blog-title a:hover,
.rs-inner-blog.orange-color .widget-area .search-widget .search-wrap button:hover,
.rs-inner-blog.orange-color .blog-item .blog-content .blog-meta .btm-cate li .author i,
.rs-inner-blog.orange-color .blog-item .blog-content .blog-meta .btm-cate li .tag-line i,
.rs-inner-blog.orange-color .blog-item .blog-content .blog-meta .btm-cate li .blog-date i,
.rs-inner-blog.orange-color .widget-area .recent-posts-widget .show-featured .post-desc .date,
.rs-inner-blog.orange-color .widget-area .recent-posts-widget .show-featured .post-desc .date i,
.rs-inner-blog.orange-color .widget-area .recent-posts-widget .show-featured .post-desc a:hover,
.rs-inner-blog.orange-color .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line i,
.rs-inner-blog.orange-color .blog-deatails .blog-full .single-post-meta .post-comment i::before,
.rs-inner-blog.orange-color .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line a:hover,
.rs-inner-blog.orange-color .blog-deatails .blog-full .single-post-meta li .p-date i,
.rs-inner-blog.orange-color .blog-deatails .blog-full .unorder-list li::before,
.rs-inner-blog.orange-color .ps-navigation ul li a .link-text:hover,
.rs-inner-blog.orange-color .ps-navigation ul li a .next-link:hover,
.rs-inner-blog.orange-color .ps-navigation ul li a .next-link:hover i::before {
color: #21a7d0;
}
.rs-inner-blog.orange-color blockquote::before {
background: #21a7d0;
}
.rs-inner-blog.orange-color .comment-area .comment-full .submit-btn .submit {
border-color: #21a7d0;
background: #21a7d0;
}
.rs-inner-blog.orange-color .comment-area .comment-full .submit-btn .submit:hover {
border-color: #208cad;
background: #208cad;
}
/* ------------------------------------
19. Latest Events Section CSS
---------------------------------------*/
.rs-event .event-item {
transition: all 0.3s ease;
position: relative;
}
.rs-event .event-item .event-short {
text-align: left;
box-shadow: 0 0 20px #eee;
}
.rs-event .event-item .event-short .featured-img {
position: relative;
}
.rs-event .event-item .event-short .featured-img img {
border-radius: 5px 5px 0 0;
}
.rs-event .event-item .event-short .categorie {
position: absolute;
top: 30px;
left: 30px;
z-index: 1;
}
.rs-event .event-item .event-short .categorie a {
background: #21a7d0;
padding: 5px 20px;
display: inline-block;
color: #ffffff;
border-radius: 4px;
}
.rs-event .event-item .event-short .categorie a:hover {
opacity: .9;
}
.rs-event .event-item .event-short .content-part {
padding: 25px 30px 15px 30px;
border-radius: 0 0 5px 5px;
}
.rs-event .event-item .event-short .content-part .address {
padding-bottom: 15px;
color: #363636;
font-size: 14px;
}
.rs-event .event-item .event-short .content-part .address i {
font-size: 13px;
margin-right: 4px;
}
.rs-event .event-item .event-short .content-part .title {
font-size: 26px;
line-height: 32px;
transition: all .8s ease;
}
.rs-event .event-item .event-short .content-part .title a {
color: #000000;
}
.rs-event .event-item .event-short .content-part .title a:hover {
color: #21a7d0;
}
.rs-event .event-item .event-short .content-part .text {
color: #363636;
margin: 0;
font-size: 14px;
}
.rs-event .event-item .event-short .content-part .event-btm {
display: flex;
align-items: center;
justify-content: space-between;
border-top: 1px solid #efefef;
margin-top: 34px;
padding-top: 26px;
}
.rs-event .event-item .event-short .content-part .event-btm .date-part {
font-size: 13px;
}
.rs-event .event-item .event-short .content-part .event-btm .date-part .date i {
font-size: 13px;
margin-right: 7px;
}
.rs-event .event-item .event-short .content-part .event-btm .btn-part a {
background: #21a7d0;
text-transform: capitalize;
padding: 7px 15px;
color: #ffffff;
border-radius: 2px;
font-size: 14px;
display: inline-block;
}
.rs-event .event-item .event-short .content-part .event-btm .btn-part a:hover {
background: #208cad;
}
.rs-event .event-item:hover {
transform: translateY(-10px);
}
.rs-event .event-item.home12-style .event-short {
text-align: left;
background: #ffffff;
}
.rs-event .event-item.home12-style .event-short .featured-img {
position: relative;
}
.rs-event .event-item.home12-style .event-short .featured-img img {
border-radius: 5px 5px 0 0;
}
.rs-event .event-item.home12-style .event-short .content-part {
padding: 25px 30px 30px 30px;
border-radius: 0 0 5px 5px;
}
.rs-event .event-item.home12-style .event-short .content-part .all-dates-time {
display: flex;
}
.rs-event .event-item.home12-style .event-short .content-part .all-dates-time .address {
color: #363636;
padding-right: 20px;
}
.rs-event .event-item.home12-style .event-short .content-part .all-dates-time .address i:before {
color: #0c8b51;
}
.rs-event .event-item.home12-style .event-short .content-part .all-dates-time .time {
color: #363636;
font-size: 14px;
}
.rs-event .event-item.home12-style .event-short .content-part .all-dates-time .time i:before {
color: #0c8b51;
padding-right: 5px;
}
.rs-event .event-item.home12-style .event-short .content-part .title {
font-size: 22px;
line-height: 32px;
transition: all .8s ease;
}
.rs-event .event-item.home12-style .event-short .content-part .title a {
color: #000000;
}
.rs-event .event-item.home12-style .event-short .content-part .title a:hover {
color: #0c8b51;
}
.rs-event .event-item.home12-style .event-short .content-part .event-btm {
border-top: 1px solid #efefef;
}
.rs-event .event-item.home12-style .event-short .content-part .event-btm .date-part {
font-size: 13px;
color: #363636;
}
.rs-event .event-item.home12-style .event-short .content-part .event-btm .date-part .date i {
font-size: 13px;
margin-right: 7px;
color: #0c8b51;
}
.rs-event .event-item.home12-style .event-short .content-part .event-btm .btn-part a {
background: #0c8b51;
}
.rs-event .event-item.home12-style .event-short .content-part .event-btm .btn-part a:hover {
background: #085c36;
}
.rs-event .event-item.home12-style .rs-carousel .owl-dots {
text-align: center;
}
.rs-event .event-item.home12-style .rs-carousel .owl-dots .owl-dot {
width: 40px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
background: red;
border: none;
}
.rs-event .event-item.home12-style .rs-carousel .owl-dots .owl-dot:hover {
width: 40px;
opacity: 1;
}
.rs-event .event-item.home12-style .rs-carousel .owl-dots .active {
background: red;
}
.rs-event.home12style {
background: url(assets/images/bg/home12/event-bg.jpg);
background-repeat: no-repeat;
background-position: center top;
background-size: cover;
padding: 150px 0;
}
.rs-event.home12style .owl-dots {
text-align: center;
margin-top: 47px;
}
.rs-event.home12style .owl-dots .owl-dot {
width: 25px;
height: 8px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
background: #085c36;
border: none;
transition: all 0.3s ease;
}
.rs-event.home12style .owl-dots .owl-dot:hover,
.rs-event.home12style .owl-dots .owl-dot.active {
width: 40px;
background: #0c8b51;
opacity: 0.5;
}
.rs-event.modify1 .event-item .event-short .featured-img .dates {
position: absolute;
bottom: 0;
left: 0;
z-index: 1;
background: #21a7d0;
padding: 7px 20px;
display: inline-block;
color: #fff;
border-radius: 15px 15px 0 0;
right: 0;
margin: 0 auto;
max-width: 220px;
text-align: center;
}
.rs-event.modify1 .event-item .event-short .content-part {
padding: 30px 30px 35px 30px;
text-align: center;
}
.rs-event.modify1 .event-item .event-short .content-part .title {
font-size: 24px;
}
.rs-event.modify1 .event-item .event-short .content-part .time-sec {
display: inline-flex;
}
.rs-event.modify1 .event-item .event-short .content-part .time-sec .timesec {
margin-right: 15px;
font-size: 14px;
}
.rs-event.modify1 .event-item .event-short .content-part .time-sec .timesec i:before {
font-size: 16px;
}
.rs-event.modify1 .event-item .event-short .content-part .time-sec .address {
color: #363636;
font-size: 14px;
}
.rs-event.modify1 .event-item .event-short .content-part .time-sec .address i {
font-size: 13px;
margin-right: 4px;
}
.rs-event.modify2 .event-item .event-short {
transition: all 500ms ease;
box-shadow: 0 0 20px #eee;
position: relative;
}
.rs-event.modify2 .event-item .event-short .featured-img {
position: relative;
padding: 0px 0px 0px 0px;
}
.rs-event.modify2 .event-item .event-short .featured-img:before {
opacity: .85;
background: 0 0;
background: linear-gradient(transparent, #333333), linear-gradient(transparent, #333333);
background: -moz-linear-gradient(transparent, #333333), -moz-linear-gradient(transparent, #333333);
background: -o-linear-gradient(transparent, #333333), -o-linear-gradient(transparent, #333333);
content: "";
height: 100%;
bottom: 0;
left: 0px;
right: 0px;
position: absolute;
z-index: 1;
transition: all .7s ease 0s;
}
.rs-event.modify2 .event-item .event-short .content-part {
padding: 40px 40px 40px 40px;
position: absolute;
bottom: 0;
left: 0;
z-index: 1;
border-radius: 0 0 5px 5px;
}
.rs-event.modify2 .event-item .event-short .content-part .title a {
color: #ffffff;
}
.rs-event.modify2 .event-item .event-short .content-part .address {
color: #ffffff;
font-size: 14px;
}
.rs-event.modify2 .event-item .event-short .content-part .address i {
font-size: 13px;
margin-right: 4px;
}
.rs-event.modify2 .event-item .event-short .content-part .date-part {
padding: 0px 0px 10px 0px;
}
.rs-event.modify2 .event-item .event-short .content-part .date-part .date {
color: #ffffff;
font-size: 13px;
}
.rs-event.modify2 .event-item .event-short .content-part .date-part .date i {
font-size: 13px;
margin-right: 7px;
}
.rs-event.modify2 .event-item .event-short .content-part .time {
color: #ffffff;
font-size: 14px;
}
.rs-event.modify2 .event-item .event-short .content-part .time i:before {
margin: 0;
font-size: 14px;
color: #fff;
margin-right: 4px;
}
.rs-event.home8-style1 .rs-carousel .owl-dots {
text-align: center;
}
.rs-event.home8-style1 .rs-carousel .owl-dots .owl-dot {
width: 40px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
background: #21a7d0;
border: none;
}
.rs-event.home8-style1 .rs-carousel .owl-dots .owl-dot:hover {
width: 40px;
opacity: 1;
}
.rs-event.home8-style1 .rs-carousel .owl-dots .active {
background: #21a7d0;
}
.rs-event.home8-style1 .owl-stage-outer {
padding-bottom: 10px;
}
.rs-event.home8-style1 .event-item .event-short .featured-img .dates {
position: absolute;
bottom: 0;
left: 0;
z-index: 1;
background: #21a7d0;
padding: 7px 20px;
display: inline-block;
color: #fff;
border-radius: 15px 15px 0 0;
right: 0;
margin: 0 auto;
max-width: 220px;
text-align: center;
}
.rs-event.home8-style1 .event-item .event-short .content-part {
padding: 30px 30px 35px 30px;
text-align: center;
}
.rs-event.home8-style1 .event-item .event-short .content-part .title {
font-size: 24px;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec {
display: inline-flex;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec .timesec {
padding-right: 4px;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec .timesec i:before {
color: #21a7d0;
font-size: 14px;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec .address {
font-size: 14px;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec .address i {
font-size: 13px;
margin-right: 5px;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec .address i:before {
color: #21a7d0;
}
.rs-event.orange-color.modify1 .event-item .event-short .featured-img .dates {
background: #21a7d0;
}
.rs-latest-events.style1 .single-img {
z-index: 1;
position: relative;
}
.rs-latest-events.style1 .single-img img {
border-radius: 3px;
}
.rs-latest-events.style1 .event-wrap {
z-index: 1;
position: relative;
}
.rs-latest-events.style1 .event-wrap .events-short {
overflow: hidden;
background: #ffffff;
padding: 31px 30px;
border-radius: 3px;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part {
width: 100px;
float: left;
text-align: center;
padding: 11px 0 22px;
border-radius: 3px;
margin-right: 25px;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part .month {
margin-bottom: 10px;
display: block;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part .date {
font-size: 50px;
font-family: 'Nunito', sans-serif;
color: #112958;
font-weight: 700;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part.bgc1 {
background: #dcf1fd;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part.bgc2 {
background: #e9fbd5;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part.bgc3 {
background: #fee2c0;
}
.rs-latest-events.style1 .event-wrap .events-short .content-part .categorie a {
color: #505050;
}
.rs-latest-events.style1 .event-wrap .events-short .content-part .categorie a:hover {
color: #21a7d0;
}
.rs-latest-events.style1 .event-wrap .events-short .content-part .title {
line-height: 1.5;
}
.rs-latest-events.style1 .event-wrap .events-short .content-part .title a {
color: #112958;
}
.rs-latest-events.style1 .event-wrap .events-short .content-part .title a:hover {
color: #21a7d0;
}
.rs-latest-events.style1 .event-wrap .btn-part a {
text-transform: uppercase;
font-weight: 500;
font-size: 16px;
color: #112958;
position: relative;
display: inline-block;
}
.rs-latest-events.style1 .event-wrap .btn-part a:after {
position: absolute;
content: '';
right: 0;
bottom: 3px;
width: 0;
height: 1px;
background: #112958;
transition: all 0.3s ease;
}
.rs-latest-events.style1 .event-wrap .btn-part a:hover:after {
left: 0;
right: auto;
width: 100%;
}
.rs-latest-events.bg-wrap {
position: relative;
}
.rs-latest-events.bg-wrap:after {
position: absolute;
content: '';
top: 0;
right: 0;
width: 63%;
height: 100%;
background: #f3f8f9;
}
/* ------------------------------------
19. Download Section CSS
---------------------------------------*/
.rs-download-app .mobile-img {
display: flex;
}
.rs-download-app .mobile-img .apps-image img {
max-width: 195px;
}
/* ------------------------------------
20. Partner Section CSS
---------------------------------------*/
.rs-partner .partner-item a img {
max-width: 163px;
margin: 0 auto;
}
.rs-partner.style2 .partner-item a img {
max-width: 100px;
margin: 0 auto;
}
/* ------------------------------------
21. Gallery Section CSS
---------------------------------------*/
.rs-gallery .gallery-item {
padding: 0 30px 30px 0;
}
.rs-gallery .gallery-item .gallery-img a img {
border-radius: 5px;
}
.rs-gallery .gallery-item .title {
padding-top: 25px;
text-align: center;
font-size: 20px;
font-weight: 600;
line-height: 30px;
color: #111111;
}
.rs-gallery.style2 .gallery-part {
position: relative;
overflow: hidden;
}
.rs-gallery.style2 .gallery-part .gallery-img {
position: relative;
overflow: hidden;
}
.rs-gallery.style2 .gallery-part .gallery-img a img {
transform: scale(1);
transition: all .8s ease;
height: 220px;
}
.rs-gallery.style2 .gallery-part .gallery-img a:before {
content: "";
position: absolute;
left: 0;
right: 0;
width: 100%;
height: 100%;
background: #171f32;
opacity: 0;
display: block;
transition: all .8s ease;
z-index: 1;
}
.rs-gallery.style2 .gallery-part:hover .gallery-img a img {
transform: scale(1.1);
}
.rs-gallery.style2 .gallery-part:hover .gallery-img a:before {
opacity: .4;
}
.rs-gallery.home11-style .gallery-part .gallery-img {
position: relative;
}
.rs-gallery.home11-style .gallery-part .gallery-img img {
border-radius: 30px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .content-part {
text-align: center;
position: absolute;
bottom: 0;
left: 0;
z-index: 1;
background: #4e49a1;
padding: 5px 20px;
display: inline-block;
color: #fff;
border-radius: 30px;
right: 0;
transition: all .4s ease;
}
.rs-gallery.home11-style .gallery-part .gallery-img .content-part .title {
font-size: 22px;
line-height: 34px;
font-weight: 700;
color: #ffffff;
padding: 15px 0 15px;
margin: 0;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info {
opacity: 0;
visibility: hidden;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: all .4s ease;
z-index: 1;
text-align: center;
width: 100%;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .title-part {
font-size: 22px;
line-height: 34px;
font-weight: 700;
color: #ffffff;
margin-bottom: 12px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info p {
font-size: 16px;
line-height: 28px;
font-weight: 400;
color: #ffffff;
padding-right: 60px;
padding-left: 60px;
margin-bottom: 15px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .btn-part a {
font-size: 16px;
line-height: 28px;
font-weight: 400;
color: #ffffff;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .btn-part a i {
padding-left: 6px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .btn-part a i:before {
font-size: 16px;
}
.rs-gallery.home11-style .gallery-part .gallery-img:before {
content: '';
background: #4e49a1;
position: absolute;
visibility: hidden;
left: 0;
right: 0;
width: 100%;
height: 100%;
border-radius: 30px;
opacity: 0;
display: block;
transition: all .4s ease;
z-index: 1;
}
.rs-gallery.home11-style .gallery-part:hover .content-part {
visibility: hidden;
opacity: 0;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info {
opacity: 1;
visibility: visible;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info .title-part {
color: #ffffff;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info p {
color: #ffffff;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info .btn-part a {
color: #ffffff;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img:before {
visibility: visible;
opacity: 0.9;
}
/* ------------------------------------
22. CTA Section CSS
---------------------------------------*/
.rs-cta {
position: relative;
}
.rs-cta .cta-img img {
min-height: 425px;
width: 100%;
}
.rs-cta .cta-content {
position: absolute;
width: 100%;
max-width: 600px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.rs-cta.style1 {
background: url(assets/images/bg/pattern1.png);
background-size: 100%;
background-repeat: no-repeat;
background-position: bottom;
}
.rs-cta.style1 .partition-bg-wrap {
position: relative;
}
.rs-cta.style1 .partition-bg-wrap:after,
.rs-cta.style1 .partition-bg-wrap:before {
position: absolute;
content: '';
width: 50%;
height: 100%;
bottom: 0;
z-index: -1;
}
.rs-cta.style1 .partition-bg-wrap:after {
background: #21a7d0;
left: 0;
}
.rs-cta.style1 .partition-bg-wrap:before {
background: #273c66;
right: 0;
}
.rs-cta.style2 .video-wrap .popup-videos {
color: #ffffff;
display: block;
overflow: hidden;
max-width: 270px;
}
.rs-cta.style2 .video-wrap .popup-videos i {
width: 70px;
height: 70px;
line-height: 61px;
border: 5px solid #ffffff;
border-radius: 50%;
text-align: center;
font-size: 25px;
float: left;
margin-right: 20px;
}
.rs-cta.style2 .video-wrap .popup-videos i:before {
padding-left: 5px;
}
.rs-cta.style2 .video-wrap .popup-videos .title {
color: #ffffff;
}
.rs-cta.style2 .video-wrap .popup-videos:hover {
opacity: 0.7;
}
.rs-cta.style2 .partition-bg-wrap {
position: relative;
}
.rs-cta.style2 .partition-bg-wrap:after,
.rs-cta.style2 .partition-bg-wrap:before {
position: absolute;
content: '';
width: 50%;
height: 100%;
top: 0;
bottom: 0;
z-index: -1;
}
.rs-cta.style2 .partition-bg-wrap:before {
background: url(assets/images/cta/style2/left-bg.jpg);
left: 0;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.rs-cta.style2 .partition-bg-wrap:after {
background: url(assets/images/cta/style2/right-bg.jpg);
right: 0;
background-size: cover;
background-repeat: no-repeat;
background-position: left;
}
.rs-cta.style2 .partition-bg-wrap.inner-page:before {
background: url(assets/images/cta/style2/left-bg2.png);
background-size: cover;
}
.rs-cta.style2 .partition-bg-wrap.inner-page:after {
background: url(assets/images/cta/style2/right-bg2.png);
background-size: cover;
}
.rs-cta.style3 {
background: url(assets/images/bg/pattern1.png);
background-size: 100%;
background-repeat: no-repeat;
background-position: bottom;
}
.rs-cta.style3 .partition-bg-wrap {
position: relative;
}
.rs-cta.style3 .partition-bg-wrap:after,
.rs-cta.style3 .partition-bg-wrap:before {
position: absolute;
content: '';
width: 50%;
height: 100%;
bottom: 0;
z-index: -1;
}
.rs-cta.style3 .partition-bg-wrap:after {
background: #21a7d0;
left: 0;
}
.rs-cta.style3 .partition-bg-wrap:before {
background: #273c66;
right: 0;
}
.rs-cta.style7 .partition-bg-wrap {
background: none !important;
position: relative;
}
.rs-cta.style7 .partition-bg-wrap:after,
.rs-cta.style7 .partition-bg-wrap:before {
position: absolute;
content: '';
width: 50%;
height: 100%;
bottom: 0;
z-index: -1;
}
.rs-cta.style7 .partition-bg-wrap:after {
background: url(assets/images/cta/home7/1.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.rs-cta.style7 .partition-bg-wrap:before {
background: url(assets/images/cta/home7/2.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
right: 0;
}
.rs-cta.main-home .partition-bg-wrap {
background: none !important;
position: relative;
padding: 130px 0;
}
.rs-cta.main-home .partition-bg-wrap:after,
.rs-cta.main-home .partition-bg-wrap:before {
position: absolute;
content: '';
width: 50%;
height: 100%;
bottom: 0;
z-index: -1;
}
.rs-cta.main-home .partition-bg-wrap:after {
background: url(assets/images/cta/home1.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.rs-cta.main-home .partition-bg-wrap:before {
background: url(assets/images/cta/main-home.jpg);
background-size: cover;
background-repeat: no-repeat;
right: 0;
}
.rs-cta.home9-style .partition-bg-wrap {
background: none !important;
position: relative;
padding: 100px 0;
}
.rs-cta.home9-style .partition-bg-wrap:after,
.rs-cta.home9-style .partition-bg-wrap:before {
position: absolute;
content: '';
width: 50%;
height: 100%;
bottom: 0;
z-index: -1;
}
.rs-cta.home9-style .partition-bg-wrap:after {
background: url(assets/images/cta/covid-19.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.rs-cta.home9-style .partition-bg-wrap:before {
background: #1c335f;
background-size: cover;
background-repeat: no-repeat;
right: 0;
}
.rs-cta.section-wrap .content-wrap {
padding: 100px 100px 100px 105px;
background: #273c66;
}
.rs-cta.section-wrap .content-wrap .text-part {
padding-right: 400px;
}
.rs-cta.section-wrap .content-wrap .text-part .sub-title {
font-size: 18px;
line-height: 28px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
margin-bottom: 15px;
}
.rs-cta.section-wrap .content-wrap .text-part .title {
font-size: 36px;
line-height: 46px;
font-weight: 700;
color: #ffffff;
margin-bottom: 25px;
}
.rs-cta.section-wrap .content-wrap .text-part .desc {
font-size: 16px;
line-height: 26px;
font-weight: 400;
color: #ffffff;
margin-bottom: 40px;
}
.rs-cta.section-wrap .content {
max-width: 700px;
padding-left: 90px;
padding-right: 15px;
}
.rs-cta.home11-style {
background: url(assets/images/cta/home11.jpg);
background-repeat: no-repeat;
background-position: bottom;
}
.rs-cta.home-style14 {
max-width: 700px;
margin: 0 auto;
background: url(assets/images/bg/home14/cta.jpg);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
padding: 44px 30px 44px 30px;
border-radius: 5px 5px 5px 5px;
}
.rs-cta.home-style14 .content-part .sub-text {
font-family: "Nunito", Sans-serif;
font-size: 15px;
font-weight: 700;
text-transform: uppercase;
color: #21a7d0;
display: block;
margin-bottom: 10px;
}
.rs-cta.home-style14 .content-part .title {
font-family: "Nunito", Sans-serif;
font-size: 22px;
font-weight: 800;
letter-spacing: 1px;
color: #101010;
margin: 0px 0px 0px 0px;
}
.rs-cta.effects-layer .effects-bg .content-part {
padding: 56px 244px 60px 50px;
}
.rs-cta.effects-layer .effects-bg .content-part .title {
font-size: 24px;
line-height: 40px;
font-weight: 800;
color: #101010;
margin-bottom: 13px;
}
.rs-cta.effects-layer .effects-bg.apply-bg {
background-color: #F9F7F8;
background-image: url(assets/images/cta/style3/1-2.png);
background-position: bottom right;
background-repeat: no-repeat;
border-radius: 4px 4px 4px 4px;
margin-top: 20px;
}
.rs-cta.effects-layer .effects-bg.enroll-bg {
background-color: #F9F7F8;
background-image: url(assets/images/cta/style3/2.png);
background-position: bottom right;
background-repeat: no-repeat;
border-radius: 4px 4px 4px 4px;
margin-top: 20px;
}
/* ------------------------------------
23. Counter Section CSS
---------------------------------------*/
.rs-counter .counter-item .rs-count {
position: relative;
display: inline-block;
font-size: 42px;
line-height: 1;
color: #112958;
padding-right: 25px;
margin-bottom: 15px;
}
.rs-counter .counter-item .rs-count:before {
content: '';
position: absolute;
right: 0;
}
.rs-counter .counter-item .rs-count.plus:before {
content: '+';
}
.rs-counter .counter-item .rs-count.kplus:before {
content: 'k+';
right: -25px;
}
.rs-counter .counter-item .rs-count.percent:before {
content: '%';
right: -15px;
}
.rs-counter .counter-item .title {
font-size: 22px;
color: #505050;
}
.rs-counter .counter-item .counter-text {
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 100%;
text-align: center;
}
.rs-counter.style2-about .counter-item .rs-count {
color: #111111;
}
.rs-counter.style2-about .counter-item .title {
font-size: 22px;
color: #505050;
}
.rs-counter.style7 .counter-item .rs-count.purple-color {
color: #c701f1;
}
.rs-counter.style7 .counter-item .rs-count.blue-color {
color: #065ce8;
}
.rs-counter.style7 .counter-item .rs-count.pink-color {
color: #f6075b;
}
.rs-counter.style7 .counter-item .rs-count.orange-color {
color: #ffbc00;
}
.rs-counter.style7 .counter-item .title {
color: #54647b;
}
.rs-counter.style-home8 .counter-item {
padding: 40px 10px 32px 10px;
background-color: #F9F8F8;
border-radius: 4px 4px 4px 4px;
}
.rs-counter.style-home8 .counter-item .rs-count {
color: #21a7d0;
}
.rs-counter.style-home8 .counter-item .title {
color: #031a3d;
}
.rs-counter.home12-style .counter-item .rs-count {
color: #0c8b51;
font-size: 42px;
font-weight: 900;
line-height: 51px;
font-family: "Nunito", Sans-serif;
}
.rs-counter.home12-style .counter-item .prefix {
color: #0c8b51;
font-size: 42px;
font-weight: 900;
line-height: 51px;
font-family: "Nunito", Sans-serif;
}
.rs-counter.home12-style .counter-item .title {
color: #505050;
}
.rs-counter.home12-style .counter-item .title:hover {
color: #0c8b51;
}
.rs-counter.home13-style .counter-item {
transition: all 500ms ease;
}
.rs-counter.home13-style .counter-item .rs-count {
color: #21a7d0;
font-size: 42px;
font-weight: 700;
line-height: 42px;
margin-bottom: 5px;
}
.rs-counter.home13-style .counter-item .title {
font-size: 22px;
font-weight: 500;
line-height: 37px;
color: #ffffff;
}
.rs-counter.home13-style .counter-item:hover {
transform: translateY(-5px);
}
/* ------------------------------------
24. Newsletter Section CSS
---------------------------------------*/
.rs-newsletter.style1 .newsletter-wrap {
background: url(assets/images/bg/newsletter-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
border-radius: 3px;
padding: 60px 70px;
position: relative;
}
.rs-newsletter.style1 .newsletter-wrap .content-part .sec-title {
display: flex;
align-items: center;
}
.rs-newsletter.style1 .newsletter-wrap .content-part .sec-title .title-icon img {
max-width: 50px;
margin-right: 20px;
}
.rs-newsletter.style1 .newsletter-wrap .newsletter-form {
position: relative;
border-radius: 3px;
overflow: hidden;
}
.rs-newsletter.style1 .newsletter-wrap .newsletter-form input,
.rs-newsletter.style1 .newsletter-wrap .newsletter-form button {
outline: none;
border: none;
}
.rs-newsletter.style1 .newsletter-wrap .newsletter-form input {
background: #ffffff;
width: 100%;
color: #505050;
padding: 17px 30px;
padding-right: 150px;
}
.rs-newsletter.style1 .newsletter-wrap .newsletter-form button {
position: absolute;
right: 0;
top: 0;
background: #273c66;
color: #ffffff;
padding: 17px 40px;
transition: all 0.3s ease;
}
.rs-newsletter.style1 .newsletter-wrap .newsletter-form button:hover {
background: #2e4778;
}
.rs-newsletter.style2 {
background: url(assets/images/bg/newsletter-bg2.jpg);
background-size: cover;
background-repeat: no-repeat;
}
.rs-newsletter.style2 .sec-title .title {
margin-bottom: 10px;
}
.rs-newsletter.style2 .sec-title .sub-title {
margin: 0;
text-transform: capitalize;
}
.rs-newsletter.style2 .newsletter-wrap {
border-radius: 3px;
padding: 60px 70px;
padding-left: 0;
position: relative;
}
.rs-newsletter.style2 .newsletter-wrap .newsletter-form {
position: relative;
border-radius: 3px;
overflow: hidden;
max-width: 500px;
}
.rs-newsletter.style2 .newsletter-wrap .newsletter-form input,
.rs-newsletter.style2 .newsletter-wrap .newsletter-form button {
outline: none;
border: none;
}
.rs-newsletter.style2 .newsletter-wrap .newsletter-form input {
background: #ffffff;
width: 100%;
color: #505050;
padding: 17px 30px;
padding-right: 150px;
}
.rs-newsletter.style2 .newsletter-wrap .newsletter-form button {
position: absolute;
right: 0;
top: 0;
background: #21a7d0;
color: #ffffff;
padding: 17px 40px;
transition: all 0.3s ease;
}
.rs-newsletter.style2 .newsletter-wrap .newsletter-form button:hover {
background: #2db4de;
}
.rs-newsletter.style2.home11-style {
background: url(assets/images/bg/home11-news.jpg);
background-size: cover;
background-repeat: no-repeat;
}
.rs-newsletter.style2.home11-style .sec-title2 .title {
margin-bottom: 10px;
}
.rs-newsletter.style2.home11-style .sec-title2 .sub-title {
margin: 0;
text-transform: capitalize;
}
.rs-newsletter.style2.home11-style .newsletter-wrap {
padding: unset;
}
.rs-newsletter.style2.home11-style .newsletter-wrap .newsletter-form input,
.rs-newsletter.style2.home11-style .newsletter-wrap .newsletter-form button {
outline: none;
border: none;
}
.rs-newsletter.style2.home11-style .newsletter-wrap .newsletter-form button {
position: absolute;
right: 5px;
top: 5px;
background: #4e49a1;
color: #ffffff;
padding: 12px 40px 12px;
border-radius: 5px;
}
.rs-newsletter.style2.home11-style .newsletter-wrap .newsletter-form button:hover {
background: #625eaa;
}
.rs-newsletter.style6 .newsletter-wrap .content-part .title {
font-size: 42px;
line-height: 46px;
font-weight: 600;
color: #031a3d;
}
.rs-newsletter.style6 .newsletter-wrap .content-part .sub-title {
font-weight: 400;
line-height: 30px;
font-size: 20px;
color: #54647b;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form {
position: relative;
left: 50%;
transform: translateX(-50%);
max-width: 600px;
border-radius: 4px;
overflow: hidden;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form input,
.rs-newsletter.style6 .newsletter-wrap .newsletter-form button {
outline: none;
border: none;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form input {
background: #ffffff;
color: #505050;
padding: 18px 40px;
padding-right: 150px;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form button {
position: absolute;
right: 0;
top: 0;
background: #21a7d0;
color: #ffffff;
padding: 17px 40px;
transition: all 0.3s ease;
border-radius: 0 0 5px 5px;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form button:hover {
background: #2e4778;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form #email {
width: 100%;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form span {
margin: 0;
}
.rs-newsletter.modify .newsletter-wrap .newsletter-form button {
position: absolute;
right: 4px;
top: 4px;
background: #21a7d0;
color: #ffffff;
padding: 14px 38px;
transition: all 0.3s ease;
border-radius: 3px;
}
.rs-newsletter.modify.home13 .newsletter-wrap .newsletter-form button {
background: #21a7d0;
}
.rs-newsletter.modify.home13 .newsletter-wrap .newsletter-form button:hover {
background: #2e4778;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form {
position: relative;
left: 50%;
transform: translateX(-50%);
max-width: 600px;
border-radius: 4px;
overflow: hidden;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form input,
.rs-newsletter.home8-style1 .content-wrap .newsletter-form button {
outline: none;
border: none;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form input {
background: #ffffff;
color: #505050;
padding: 18px 40px;
padding-right: 150px;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form button {
position: absolute;
right: 0;
top: 0;
background: #21a7d0;
color: #ffffff;
padding: 17px 40px;
transition: all 0.3s ease;
border-radius: 0 3px 3px 0;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form button:hover {
background: #2e4778;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form #email {
width: 100%;
}
.rs-newsletter.main-home .newsletter-wrap {
background: #171f32;
padding: 60px 70px;
position: relative;
border-radius: 5px;
}
.rs-newsletter.main-home .newsletter-wrap .newsletter-form {
position: relative;
border-radius: 3px;
overflow: hidden;
}
.rs-newsletter.main-home .newsletter-wrap .newsletter-form input,
.rs-newsletter.main-home .newsletter-wrap .newsletter-form button {
outline: none;
border: none;
}
.rs-newsletter.main-home .newsletter-wrap .newsletter-form input {
background: #ffffff;
width: 100%;
color: #505050;
padding: 17px 30px;
padding-right: 150px;
}
.rs-newsletter.main-home .newsletter-wrap .newsletter-form button {
position: absolute;
right: 0;
top: 0;
background: #21a7d0;
color: #ffffff;
padding: 17px 40px;
transition: all 0.3s ease;
text-transform: uppercase;
}
.rs-newsletter.main-home .newsletter-wrap .newsletter-form button:hover {
background: #FF6030;
}
.rs-newsletter.orange-color .newsletter-wrap {
background: #171F32;
}
.rs-newsletter.orange-color .newsletter-wrap .newsletter-form button {
background: #21a7d0;
}
.rs-newsletter.orange-color .newsletter-wrap .newsletter-form button:hover {
background: #ff683b;
}
.rs-newsletter.yellow-color .newsletter-wrap {
background: #172e58;
}
.rs-newsletter.yellow-color .newsletter-wrap .newsletter-form button {
background: #f4bf00;
color: #1c335f;
}
.rs-newsletter.yellow-color .newsletter-wrap .newsletter-form button:hover {
background: #ffcb0f;
}
.rs-newsletter.green-color .newsletter-wrap {
background: #0c8b51;
}
.rs-newsletter.green-color .newsletter-wrap .newsletter-form {
position: relative;
border-radius: 3px;
overflow: hidden;
}
.rs-newsletter.green-color .newsletter-wrap .newsletter-form input,
.rs-newsletter.green-color .newsletter-wrap .newsletter-form button {
outline: none;
border: none;
}
.rs-newsletter.green-color .newsletter-wrap .newsletter-form input {
background: #127c4b;
}
.rs-newsletter.green-color .newsletter-wrap .newsletter-form button {
background: #0fcb75;
text-transform: uppercase;
}
.rs-newsletter.green-color .newsletter-wrap .newsletter-form button:hover {
background: #22cc7f;
}
.rs-newsletter.green-color .newsletter-wrap ::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #ffffff;
opacity: 1;
}
.rs-newsletter.green-color .newsletter-wrap ::-moz-placeholder {
/* Firefox 19+ */
color: #ffffff;
opacity: 1;
}
.rs-newsletter.green-color .newsletter-wrap :-ms-input-placeholder {
/* IE 10+ */
color: #ffffff;
opacity: 1;
}
.rs-newsletter.green-color .newsletter-wrap :-moz-placeholder {
/* Firefox 18- */
color: #ffffff;
opacity: 1;
}
/* ------------------------------------
25. Publication Section CSS
---------------------------------------*/
.rs-publication .product-list .image-product {
position: relative;
transition: all 0.3s;
}
.rs-publication .product-list .image-product .overley i {
position: absolute;
bottom: 0px;
right: 22px;
background: transparent;
opacity: 0;
visibility: hidden;
transition: 0.4s;
}
.rs-publication .product-list .image-product .overley i:before {
font-size: 30px;
color: #ffffff;
font-weight: 400;
background: #21a7d0;
padding: 0px 14px 4px;
height: 60px;
width: 60px;
line-height: 60px;
display: block;
border-radius: 5px;
}
.rs-publication .product-list .image-product .overley i:hover:before {
background: #111111;
color: #ffffff;
transition: all 0.3s ease;
}
.rs-publication .product-list .content-desc {
background: #ffffff;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
padding: 30px 0;
border-style: solid;
border-width: 0px 1px 1px 1px;
border-color: #16AACA2B;
}
.rs-publication .product-list .content-desc .product-title {
font-size: 22px;
font-weight: 800;
line-height: 32px;
margin-bottom: 12px;
}
.rs-publication .product-list .content-desc .product-title a {
color: #031a3d;
}
.rs-publication .product-list .content-desc .price {
font-size: 22px;
font-weight: 400;
line-height: 32px;
color: #54647b;
}
.rs-publication .product-list:hover .image-product .overley i {
opacity: 1;
visibility: visible;
bottom: 280px;
}
/* ------------------------------------
26. Facilities Section CSS
---------------------------------------*/
.rs-facilities .img-part {
position: relative;
}
.rs-facilities .img-part .media-icon {
position: absolute;
left: 80px;
top: 90px;
}
.rs-facilities .choose-part {
max-width: 700px;
border-radius: 10px;
padding: 80px 40px;
background: #e7f8fb;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
}
.rs-facilities .choose-part .our-facilities {
display: flex;
align-items: center;
}
.rs-facilities .choose-part .our-facilities .icon-part img {
max-width: 55px;
}
.rs-facilities .choose-part .our-facilities .content-part .text-part {
padding-left: 30px;
}
.rs-facilities .choose-part .our-facilities .content-part .text-part .title {
font-size: 24px;
line-height: 22px;
font-weight: 800;
color: #031a3d;
margin: 0;
padding-bottom: 10px;
}
.rs-facilities .choose-part .our-facilities .content-part .text-part .desc {
font-size: 16px;
line-height: 26px;
font-weight: 400;
color: #54647b;
margin: 0;
}
/*----------------------------------------
27. Faq Section CSS
----------------------------------------*/
.rs-faq-part .content-part .title .text-part {
font-size: 20px;
color: #111111;
line-height: 28px;
font-weight: 700;
text-transform: uppercase;
}
.rs-faq-part .content-part .accordion {
border-width: 12px;
}
.rs-faq-part .content-part .accordion .card {
margin-bottom: 15px;
border: none;
}
.rs-faq-part .content-part .accordion .card:last-child {
margin-bottom: 0;
}
.rs-faq-part .content-part .accordion .card .card-header {
padding: 0 !important;
border: none;
}
.rs-faq-part .content-part .accordion .card .card-header .card-link {
font-size: 17px;
font-weight: 600;
line-height: 28px;
color: #ffffff;
display: block;
padding: 15px 15px;
text-transform: capitalize;
background: #21a7d0;
}
.rs-faq-part .content-part .accordion .card .card-header .card-link.collapsed {
background: #f9f8ff;
color: #505050;
}
.rs-faq-part .content-part .accordion .card .card-body {
background: #ffffff;
font-size: 15px;
font-weight: 400;
line-height: 25px;
color: #505050;
padding: 15px 14px 15px !important;
border: 1px solid #f9f8ff;
}
.rs-faq-part.style1 .main-part {
background: #f9f8f8;
padding: 60px 60px 70px;
}
.rs-faq-part.style1 .main-part .title .text-part {
font-size: 36px;
color: #111111;
line-height: 46px;
font-weight: 700;
}
.rs-faq-part.style1 .main-part .faq-content .accordion {
border-width: 12px;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card {
margin-bottom: 25px;
border: none;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card:last-child {
margin-bottom: 0;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-header {
display: flex;
align-items: center;
padding: 0 !important;
border: none;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-header .card-link {
position: relative;
display: block;
width: 100%;
padding: 0 60px;
height: 65px;
line-height: 65px;
font-size: 16px;
font-weight: 600;
background: #21a7d0;
box-shadow: 0 0 49px 0 rgba(0, 0, 0, 0.08);
color: #ffffff;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-header .card-link:after {
position: absolute;
font-family: FontAwesome;
content: "\f1f7";
left: 25px;
top: 50%;
transform: translateY(-50%);
text-align: center;
font-weight: 400;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-header .card-link.collapsed {
background: #ffffff;
color: #111111;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-header .card-link.collapsed:after {
content: "\f0a2";
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-body {
background: #ffffff;
font-size: 15px;
font-weight: 400;
line-height: 25px;
color: #505050;
padding: 15px 14px 15px !important;
width: 100%;
}
.rs-faq-part.style1 .main-part.new-style {
background: #f3fcf8;
padding: 49px 50px 70px;
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card:last-child {
margin-bottom: 0;
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card .card-header .card-link {
background: #0c8b51;
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card .card-header .card-link:after {
position: absolute;
font-family: FontAwesome;
content: "\f107";
left: 25px;
top: 50%;
transform: translateY(-50%);
text-align: center;
font-weight: 900;
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card .card-header .card-link.collapsed {
background: #ffffff;
color: #111111;
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card .card-header .card-link.collapsed:after {
content: "\f105";
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card .card-body {
padding: 20px 14px 35px !important;
}
.rs-faq-part.style1 .img-part {
background: url(assets/images/faq/1.jpg);
background-size: cover;
background-position: center;
width: 100%;
height: 100%;
min-height: 615px;
}
.rs-faq-part.orange-color .content-part .accordion .card .card-header .card-link,
.rs-faq-part.orange-color .main-part .faq-content .accordion .card .card-header .card-link {
background: #21a7d0;
}
.rs-faq-part.orange-color .content-part .accordion .card .card-header .card-link.collapsed,
.rs-faq-part.orange-color .main-part .faq-content .accordion .card .card-header .card-link.collapse {
background: #f9f8ff;
}
/* ------------------------------------
28. Error Section CSS
---------------------------------------*/
.rs-page-error {
padding: 250px 0;
}
.rs-page-error .error-text {
color: #111111;
text-align: center;
}
.rs-page-error .error-text .error-code {
font-size: 100px;
color: #111111;
position: relative;
}
.rs-page-error .error-text .error-code:after {
position: absolute;
content: '';
background: #eee;
height: 1px;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 600px;
}
.rs-page-error .error-text h3.error-message {
color: #111111;
}
.rs-page-error .error-text form {
position: relative;
max-width: 400px;
margin: 0 auto;
}
.rs-page-error .error-text form input {
border: 1px solid #ddd;
color: #444444;
padding: 10px 17px;
width: 100%;
border-radius: 5px;
margin-bottom: 19px;
}
.rs-page-error .error-text form button {
background: transparent;
border: medium none;
color: #666666;
padding: 11px 16px;
position: absolute;
right: 0px;
top: 0;
z-index: 10;
font-size: 20px;
outline: none;
border-radius: 25px;
}
/*----------------------------------------
29. Shop Section CSS
----------------------------------------*/
.rs-shop-part .woocommerce-result-count {
font-size: 15px;
line-height: 26px;
color: #505050;
font-weight: 400;
margin: 0;
}
.rs-shop-part .from-control {
float: right;
font-size: 15px;
color: #505050;
font-weight: 400;
vertical-align: top;
padding: 10px;
border: 1px solid #ced4da;
border-radius: 5px;
}
.rs-shop-part .product-list .image-product {
position: relative;
}
.rs-shop-part .product-list .image-product .overley i {
position: absolute;
bottom: 150px;
right: 13px;
background: transparent;
opacity: 0;
visibility: hidden;
transition: 0.4s;
}
.rs-shop-part .product-list .image-product .overley i:before {
font-size: 30px;
color: #505050;
font-weight: 400;
background: #ffffff;
border: none ;
padding: 8px 10px 8px;
height: 45px;
width: 45px;
line-height: 45px;
}
.rs-shop-part .product-list .image-product .onsale {
font-size: 13px;
color: #ffffff;
font-weight: 700;
line-height: 40px;
background: #273c66;
width: 40px;
height: 40px;
text-align: center;
border-radius: 50%;
display: inline-block;
position: absolute;
top: 13px;
right: 13px;
}
.rs-shop-part .product-list .content-desc .loop-product-title {
margin: 0;
font-size: 18px;
line-height: 50px;
color: #505050;
font-weight: 700;
}
.rs-shop-part .product-list .content-desc .loop-product-title a {
color: #111111;
font-size: 22px;
font-weight: 600;
}
.rs-shop-part .product-list .content-desc .loop-product-title a:hover {
color: #21a7d0;
}
.rs-shop-part .product-list .content-desc .price {
font-size: 20px;
line-height: 30px;
color: #21a7d0;
font-weight: 700;
margin: 0;
}
.rs-shop-part .product-list .content-desc .price del {
opacity: 0.6;
padding-right: 10px;
}
.rs-shop-part .product-list:hover .image-product .overley i {
opacity: 1;
visibility: visible;
bottom: 13px;
}
.rs-shop-part.part2 {
/*Shop Single CSS*/
}
.rs-shop-part.part2 .img-part a {
border: 1px solid #505050;
font-size: 15px;
line-height: 26px;
font-weight: 400;
color: #505050;
background: #ffffff;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs {
margin-bottom: 25px;
border: none;
border-bottom: 1px solid #e6ebee;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs li {
margin-right: 40px;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs li a {
display: inline-block;
font-size: 18px;
line-height: 31px;
font-weight: 700;
color: #ffffff;
padding: 18px 40px 18px;
background: #273c66;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs li a.active {
color: #505050;
background: transparent;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs li a.active:hover {
color: #ffffff;
background: #273c66;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs li:last-child {
margin-right: 0;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .tab-title {
margin-bottom: 25px;
font-size: 30px;
font-weight: 600;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .dsc-p {
margin: 0;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .top-area {
margin-bottom: 5px;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .top-area p {
margin-bottom: 23px;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .top-area h4 {
font-weight: 400;
color: unset;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form p.comment-notes {
margin-bottom: 15px;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl label {
font-weight: 600;
min-width: 100px;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl input {
border: 1px solid rgba(54, 54, 54, 0.1);
padding: 10px 15px;
margin-bottom: 10px;
outline: none;
width: 50%;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl textarea {
display: block;
width: 100%;
padding: 10px 15px;
height: 75px;
border: 1px solid rgba(54, 54, 54, 0.1);
margin-bottom: 20px;
outline: none;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings {
font-weight: 600;
margin-bottom: 18px;
display: block;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings ul li {
display: inline;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings ul li i {
color: #f5d109;
font-weight: normal;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .readon {
font-weight: 500;
font-size: 15px;
padding: 13px 45px;
border: none;
outline: none;
}
.rs-shop-part.part2 .content-part .loop-product {
font-size: 25px;
line-height: 25px;
color: #111111;
font-weight: 700;
}
.rs-shop-part.part2 .content-part .price {
font-size: 20px;
line-height: 34px;
color: #21a7d0;
font-weight: 800;
display: block;
}
.rs-shop-part.part2 .content-part .desc-part {
font-size: 15px;
line-height: 26px;
color: #505050;
font-weight: 400;
}
.rs-shop-part.part2 .content-part .add-cart {
font-size: 15px;
line-height: 25px;
color: #ffffff;
font-weight: 400;
background: #273c66;
text-transform: uppercase;
border-radius: 5px;
padding: 10px 30px 10px;
border: 2px solid #21a7d0;
}
.rs-shop-part.part2 .content-part .add-cart:hover {
background: transparent;
color: #21a7d0;
}
.rs-shop-part.orange-color .product-list .content-desc .loop-product-title a:hover {
color: #21a7d0;
}
.rs-shop-part.orange-color .product-list .content-desc .price {
color: #21a7d0;
}
/*----------------------------------------
30. Single Shop Section CSS
----------------------------------------*/
.rs-single-shop .single-product-image .images-single {
z-index: 1 !important;
}
.rs-single-shop .single-product-image img {
width: 100%;
}
.rs-single-shop .single-price-info .product-title {
font-size: 25px;
font-weight: 700;
margin-bottom: 12px;
}
.rs-single-shop .single-price-info .single-price {
color: #21a7d0;
font-weight: 600;
}
.rs-single-shop .single-price-info .some-text {
margin-top: 15px;
}
.rs-single-shop .single-price-info form {
margin-bottom: 30px;
}
.rs-single-shop .single-price-info form input {
height: 40px;
width: 70px;
line-height: 40px;
text-align: center;
padding-left: 10px;
border: 1px solid rgba(54, 54, 54, 0.1);
outline: none;
}
.rs-single-shop .single-price-info p.category {
margin: 0;
padding-top: 25px;
border-top: 1px solid #e6e6e6;
font-size: 14px;
}
.rs-single-shop .single-price-info p.category span {
font-weight: 700;
padding-right: 10px;
}
.rs-single-shop .single-price-info p.category a {
color: #505050;
}
.rs-single-shop .single-price-info p.category a:hover {
color: #21a7d0;
}
.rs-single-shop .single-price-info .tag {
margin: 0;
}
.rs-single-shop .single-price-info .tag span {
font-weight: 700;
}
.rs-single-shop .tab-area {
margin-top: 50px;
}
.rs-single-shop .tab-area ul.nav-tabs {
border-bottom: 1px solid #f0f0f0;
margin-bottom: 32px;
}
.rs-single-shop .tab-area ul.nav-tabs li {
margin-right: 3px;
}
.rs-single-shop .tab-area ul.nav-tabs li a {
padding: 10px 15px;
display: inline-block;
border-radius: 5px 5px 0 0;
background: #f0f0f0;
color: #111111;
font-weight: 600;
}
.rs-single-shop .tab-area ul.nav-tabs li a:hover,
.rs-single-shop .tab-area ul.nav-tabs li a.active {
background: #21a7d0;
color: #ffffff;
}
.rs-single-shop .tab-area ul.nav-tabs li:last-child {
margin-right: 0;
}
.rs-single-shop .tab-area .tab-content .tab-pane .tab-title {
font-weight: 700;
margin-bottom: 34px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .dsc-p {
margin: 0;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .top-area {
margin-bottom: 5px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .top-area p {
margin-bottom: 23px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .top-area h4 {
font-weight: 400;
color: unset;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form {
max-width: 600px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form p.comment-notes {
margin-bottom: 15px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl label {
font-weight: 600;
display: block;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl input {
border: 1px solid rgba(54, 54, 54, 0.1);
padding: 10px 15px;
margin-bottom: 10px;
width: 100%;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl textarea {
width: 100%;
padding: 10px 15px;
height: 75px;
border: 1px solid rgba(54, 54, 54, 0.1);
margin-bottom: 20px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings {
font-weight: 600;
margin-bottom: 18px;
display: block;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings ul li {
display: inline;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings ul li i {
color: #21a7d0;
font-weight: normal;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .readon {
text-transform: uppercase;
font-weight: 600;
font-size: 15px;
padding: 0 22px;
}
.rs-single-shop.orange-color .single-price-info .single-price,
.rs-single-shop.orange-color .single-price-info p.category a:hover,
.rs-single-shop.orange-color .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings ul li i {
color: #21a7d0;
}
.rs-single-shop.orange-color .tab-area ul.nav-tabs li a:hover,
.rs-single-shop.orange-color .tab-area ul.nav-tabs li a.active {
background: #21a7d0;
}
/*----------------------------------------
31. Cart Section CSS
----------------------------------------*/
.rs-cart .cart-wrap table.cart-table {
border: 1px solid rgba(0, 0, 0, 0.1);
width: 100%;
border-collapse: collapse;
}
.rs-cart .cart-wrap table.cart-table td,
.rs-cart .cart-wrap table.cart-table th {
padding: 25px;
text-align: center;
border: 1px solid #ccc;
}
.rs-cart .cart-wrap table.cart-table th {
border: none;
font-size: 18px;
padding: 25px;
text-align: center;
vertical-align: middle;
font-weight: 700;
}
.rs-cart .cart-wrap table.cart-table td {
border-bottom: none;
border-left: none;
border-right: none;
border-top: 1px solid #e6e6e6;
}
.rs-cart .cart-wrap table.cart-table .product-remove a {
margin: 0 auto;
color: #111111;
display: block;
border-radius: 100%;
border: 1px solid #ddd;
font-size: 16px;
font-weight: 400;
height: 20px;
width: 20px;
line-height: 17px;
text-align: center;
}
.rs-cart .cart-wrap table.cart-table .product-remove a:hover {
background: #ff0000;
color: #ffffff;
}
.rs-cart .cart-wrap table.cart-table .product-thumbnail {
min-width: 32px;
}
.rs-cart .cart-wrap table.cart-table .product-thumbnail a img {
width: 80px;
height: auto;
}
.rs-cart .cart-wrap table.cart-table .product-name a {
color: #505050;
font-weight: 700;
}
.rs-cart .cart-wrap table.cart-table .product-name a:hover {
color: #21a7d0;
}
.rs-cart .cart-wrap table.cart-table .product-price {
font-weight: 700;
}
.rs-cart .cart-wrap table.cart-table .product-quantity input {
border: 1px solid #e6e6e6;
border-radius: 4px;
padding: 0 0 0 10px;
max-width: 65px;
margin: 0 auto;
outline: none;
}
.rs-cart .cart-wrap table.cart-table .action .coupon {
float: left;
}
.rs-cart .cart-wrap table.cart-table .action .coupon input {
box-sizing: border-box;
border: 1px solid #d3ced2;
padding: 6px 6px 5px;
margin: 0 4px 0 0;
outline: none;
width: 320px;
border-radius: 4px;
height: 45px;
margin-right: 20px;
text-align: left;
padding-left: 22px;
}
.rs-cart .cart-collaterals {
width: 100%;
overflow: hidden;
}
.rs-cart .cart-collaterals .cart-totals {
float: right;
width: 48%;
}
.rs-cart .cart-collaterals .cart-totals .title {
font-weight: 700;
color: #505050;
text-transform: capitalize;
}
.rs-cart .cart-collaterals .cart-totals table.cart-total-table {
text-align: left;
width: 100%;
border-collapse: collapse;
border-radius: 5px;
}
.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr {
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr th {
font-size: 18px;
font-weight: 700;
}
.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr td,
.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr th {
padding: 30px 10px;
}
.rs-cart.orange-color .cart-wrap table.cart-table .product-name a:hover {
color: #21a7d0;
}
/*-----------------------------------------------
32. Header Cart Section CSS
-----------------------------------------------*/
.woocommerce-mini-cart {
position: absolute;
right: 0;
top: 200%;
transition: all 0.3s ease;
width: 270px;
opacity: 0;
padding-top: 120px;
visibility: hidden;
overflow: hidden;
}
.woocommerce-mini-cart .cart-bottom-part {
padding: 30px 20px;
background: #21a7d0;
}
.woocommerce-mini-cart.left-view {
right: unset;
left: 0;
}
.woocommerce-mini-cart li {
border-bottom: 1px solid rgba(170, 170, 170, 0.25);
padding: 0 0 20px 0 !important;
margin: 0 0 20px 0 !important;
margin-right: 0 !important;
border: none !important;
display: flex !important;
justify-content: center;
align-items: center;
}
.woocommerce-mini-cart li:last-child {
margin: 0 !important;
}
.woocommerce-mini-cart .product-info {
padding: 0 26px;
}
.woocommerce-mini-cart .product-info a {
color: #ffffff !important;
font-weight: 700;
}
.woocommerce-mini-cart .product-info a:hover {
color: #273c66 !important;
}
.woocommerce-mini-cart .total-price {
padding: 0 0 20px;
}
.woocommerce-mini-cart .quantity,
.woocommerce-mini-cart .total-price {
color: #f3f8f9;
}
.woocommerce-mini-cart .icon-cart i {
color: #ffffff;
width: 18px;
height: 18px;
line-height: 16px;
border: 1px solid #ffffff;
border-radius: 30px;
font-weight: 500;
font-size: 12px;
text-align: center;
transition: all 0.3s ease;
}
.woocommerce-mini-cart .icon-cart i:hover {
color: #273c66;
}
.woocommerce-mini-cart .icon-cart,
.woocommerce-mini-cart .product-image {
margin-top: 2px;
}
.woocommerce-mini-cart .product-image {
display: block;
float: right;
text-align: right;
width: 56px;
}
.woocommerce-mini-cart .crt-btn {
padding: 5px 10px;
background: #273c66;
color: #ffffff;
display: inline-block;
border-radius: 3px;
}
.woocommerce-mini-cart .crt-btn:hover {
background: #2e4778;
color: #ffffff;
}
.woocommerce-mini-cart .crt-btn.btn1 {
margin-right: 10px;
}
.mini-cart-active:hover .woocommerce-mini-cart {
visibility: visible;
opacity: 1;
top: 0;
}
/*----------------------------------------
33. Checkout Section CSS
----------------------------------------*/
.rs-checkout .checkout-title {
margin-bottom: 30px;
}
.rs-checkout .checkout-title h3 {
font-size: 26px;
margin: 0;
}
.rs-checkout .coupon-toggle .accordion .card {
border: unset;
border-top: 3px solid #21a7d0;
border-radius: 0;
}
.rs-checkout .coupon-toggle .accordion .card .card-header {
border: none;
margin: 0;
border-radius: unset;
}
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title {
margin: 0;
}
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title span i {
margin-right: 10px;
}
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title button {
background: unset;
border: none;
color: #273c66;
transition: all 0.3s ease;
outline: none;
cursor: pointer;
}
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title button:hover {
color: #21a7d0;
}
.rs-checkout .coupon-toggle .accordion .card .card-body {
border: 1px solid #d3ced2;
padding: 20px 20px 50px 20px;
margin-top: 2em;
text-align: left;
}
.rs-checkout .coupon-toggle .accordion .card .card-body .coupon-code-input {
width: 47%;
float: left;
margin-right: 50px;
}
.rs-checkout .coupon-toggle .accordion .card .card-body .coupon-code-input input {
width: 100%;
height: 45px;
outline: none;
padding: 10px 18px;
color: #505050;
border: 1px solid rgba(54, 54, 54, 0.1);
}
.rs-checkout .full-grid {
margin-top: 25px;
}
.rs-checkout .full-grid .form-content-box {
margin-bottom: 50px;
}
.rs-checkout .full-grid .form-content-box .form-group label {
line-height: 2;
display: block;
margin-bottom: 5px;
font-weight: 600;
}
.rs-checkout .full-grid .form-content-box .form-group select {
color: #666666;
opacity: .5;
padding-left: 8px;
padding-right: 20px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
border: 1px solid #ccc;
border-radius: 0;
height: 45px;
line-height: 45px;
cursor: pointer;
width: 100%;
outline: none;
}
.rs-checkout .full-grid .form-content-box .form-group textarea {
height: 4em;
line-height: 1.5;
display: block;
box-shadow: none;
width: 100%;
border: 1px solid rgba(54, 54, 54, 0.1);
padding: 10px 18px;
margin: 0;
outline: none;
}
.rs-checkout .full-grid .form-content-box .form-group .form-control-mod {
border: 1px solid rgba(54, 54, 54, 0.1);
height: 45px;
padding: 10px 18px;
width: 100%;
margin: 0;
outline: none;
line-height: normal;
border-radius: unset;
}
.rs-checkout .full-grid .form-content-box .form-group .form-control-mod.margin-bottom {
margin-bottom: 10px !important;
}
.rs-checkout .full-grid .ordered-product table {
width: 100%;
}
.rs-checkout .full-grid .ordered-product table tr th {
border: 1px solid #ccc;
padding: 9px 12px;
}
.rs-checkout .full-grid .ordered-product table tr td {
border: 1px solid #ccc;
padding: 6px 12px;
}
.rs-checkout .full-grid .payment-method .top-area {
border-bottom: 1px solid #d3ced2;
}
.rs-checkout .full-grid .payment-method .top-area .payment-co {
margin-bottom: 20px;
}
.rs-checkout .full-grid .payment-method .top-area .payment-co span {
font-weight: 600;
margin-right: 10px;
}
.rs-checkout .full-grid .payment-method .top-area .p-msg {
position: relative;
box-sizing: border-box;
width: 100%;
padding: 1em;
margin: 1em 0 2em;
font-size: .92em;
border-radius: 2px;
line-height: 1.5;
background-color: #f9f9f9;
}
.rs-checkout .full-grid .payment-method .top-area .p-msg:before {
content: '';
display: block;
border: 1em solid #f9f9f9;
border-right-color: transparent;
border-left-color: transparent;
border-top-color: transparent;
position: absolute;
top: -0.75em;
left: 0;
margin: -1em 0 0 2em;
}
.rs-checkout.orange-color .coupon-toggle .accordion .card {
border-color: #21a7d0;
}
.rs-checkout.orange-color .coupon-toggle .accordion .card .card-header .card-title button:hover {
color: #21a7d0;
}
/*----------------------------------------
34. Login Section CSS
----------------------------------------*/
.rs-login .noticed {
background: #f9f8f8;
max-width: 800px;
padding: 70px;
margin: 0 auto;
}
.rs-login .noticed .main-part {
max-width: 400px;
margin: 0 auto;
text-align: center;
border-radius: 5px;
}
.rs-login .noticed .main-part .method-account .login {
font-size: 40px;
line-height: 50px;
font-weight: 700;
color: #111111;
}
.rs-login .noticed .main-part .method-account label {
font-size: 15px;
line-height: 30px;
font-weight: 600;
color: #505050;
}
.rs-login .noticed .main-part .method-account input {
margin-bottom: 30px;
font-size: 15px;
font-weight: 400;
color: #505050;
width: 100%;
display: block;
border: none;
height: 45px;
padding: 10px 18px;
border-radius: 5px;
box-shadow: 0 0 30px #eee;
}
.rs-login .noticed .main-part .method-account span {
font-size: 15px;
line-height: 30px;
font-weight: 600;
color: #505050;
padding-left: 10px;
}
.rs-login .noticed .main-part .method-account .last-password p {
color: #505050;
margin: 0;
}
.rs-login .noticed .main-part .method-account .last-password p a {
font-size: 15px;
line-height: 26px;
font-weight: 400;
color: #21a7d0;
}
.rs-login .noticed .main-part .method-account .last-password p a:hover {
color: #505050;
}
/* -----------------------------------
35. Register Section CSS
-------------------------------------*/
.register-section {
position: relative;
}
.register-section .register-box {
position: relative;
max-width: 970px;
margin: 0 auto;
padding: 45px 40px 35px;
background: #f9f8f8;
}
.register-section .register-box .styled-form {
max-width: 600px;
margin: 0 auto;
}
.register-section .register-box .styled-form .form-group .title-box {
position: relative;
text-align: center;
margin-bottom: 32px;
}
.register-section .register-box .styled-form .form-group .title-box h2 {
position: relative;
color: #03382e;
font-weight: 700;
line-height: 1.3em;
}
.register-section .register-box .styled-form .form-group .title-box .text {
position: relative;
color: #03382e;
font-size: 16px;
font-weight: 400;
line-height: 1.8em;
margin-top: 12px;
}
/* Styled Form */
.styled-form {
position: relative;
}
.styled-form .form-group {
position: relative;
/* CheckBox */
/* RadioBox */
}
.styled-form .form-group .eye-icon {
position: absolute;
right: 20px;
top: 52px;
color: #222222;
font-size: 18px;
z-index: 1;
opacity: 0.5;
}
.styled-form .form-group label {
position: relative;
color: white;
font-size: 16px;
font-weight: 400;
margin-bottom: 15px;
background: #333131;
padding: 20px;
width: 100%;
}
.styled-form .form-group input {
position: relative;
height: 50px;
padding: 6px 30px;
width: 100%;
color: #222222;
font-size: 16px;
border-radius: 0px;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
border: none;
box-shadow: 0 0 30px #eee;
}
.styled-form .form-group input:focus {
border-color: #ff6262;
}
.styled-form .form-group textarea {
position: relative;
height: 150px;
width: 100%;
resize: none;
padding: 15px 15px;
border-radius: 50px;
border: 1px solid #f2f2f2;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.styled-form .form-group .users {
position: relative;
color: #626262;
font-size: 16px;
text-align: center;
}
.styled-form .form-group .users a {
position: relative;
color: #21a7d0;
font-weight: 600;
text-decoration: underline;
}
.styled-form .form-group .users a:hover {
color: #208cad;
}
.styled-form .form-group .check-box {
position: relative;
margin-bottom: 3px;
margin-top: 7px;
}
.styled-form .form-group .check-box label {
position: relative;
display: block;
width: 100%;
line-height: 22px;
padding: 4px 10px 0px;
padding-left: 25px;
background: #ffffff;
font-size: 16px;
font-weight: 400;
color: #626262;
cursor: pointer;
margin-bottom: 0;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
font-family: 'Poppins', sans-serif;
}
.styled-form .form-group .check-box label:before {
position: absolute;
left: 0;
top: 6px;
height: 15px;
width: 15px;
background: #ffffff;
content: "";
border-radius: 3px;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
border: 1px solid #21a7d0;
}
.styled-form .form-group .check-box label:after {
position: absolute;
left: 0px;
top: 0;
height: 15px;
line-height: 15px;
max-width: 0;
font-size: 14px;
color: #ffffff;
font-weight: 800;
overflow: hidden;
background: transparent;
text-align: center;
font-family: 'FontAwesome';
-webkit-transition: max-width 500ms ease;
-moz-transition: max-width 500ms ease;
-ms-transition: max-width 500ms ease;
-o-transition: max-width 500ms ease;
transition: max-width 500ms ease;
}
.styled-form .form-group .check-box input[type="checkbox"]:checked + label {
border-color: #25a9e0;
}
.styled-form .form-group .radio-box {
position: relative;
margin-bottom: 3px;
margin-top: 7px;
}
.styled-form .form-group .radio-box label {
position: relative;
display: block;
height: 30px;
width: 100%;
line-height: 9px;
padding: 4px 10px 0px;
padding-left: 25px;
background: #ffffff;
font-size: 16px;
font-weight: 400;
color: #626262;
cursor: pointer;
margin-bottom: 0;
font-family: 'Poppins', sans-serif;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.styled-form .form-group .radio-box label:before {
position: absolute;
left: 0;
top: 0;
height: 15px;
width: 15px;
background: #ffffff;
content: "";
border-radius: 3px;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
border: 1px solid #21a7d0;
}
.styled-form .form-group .radio-box label:after {
position: absolute;
left: 0px;
top: 0;
height: 15px;
line-height: 15px;
max-width: 0;
font-size: 14px;
color: #ffffff;
font-weight: 800;
overflow: hidden;
background: transparent;
text-align: center;
font-family: 'FontAwesome';
-webkit-transition: max-width 500ms ease;
-moz-transition: max-width 500ms ease;
-ms-transition: max-width 500ms ease;
-o-transition: max-width 500ms ease;
transition: max-width 500ms ease;
}
.styled-form .forgot {
position: relative;
font-weight: 500;
color: #626262;
font-size: 16px;
margin-top: 10px;
display: inline-block;
text-decoration: underline;
}
.styled-form .form-group .form-group .check-box label {
padding-left: 30px;
padding-top: 1px;
cursor: pointer;
}
.styled-form .form-group .check-box input[type="checkbox"] {
display: none;
}
.styled-form .form-group .check-box input[type="checkbox"]:checked + label:before {
border: 5px solid #21a7d0;
background: #ffffff;
}
.styled-form .form-group .check-box input[type="checkbox"]:checked + label:after {
max-width: 20px;
opacity: 1;
}
.styled-form .form-group .radio-box input[type="radio"]:checked + label {
border-color: #25a9e0;
}
.styled-form .form-group .form-group .radio-box label {
padding-left: 30px;
padding-top: 1px;
cursor: pointer;
}
.styled-form .form-group .radio-box input[type="radio"] {
display: none;
}
.styled-form .form-group .radio-box input[type="radio"]:checked + label:before {
border: 5px solid #21a7d0;
background: #ffffff;
}
.styled-form .form-group .radio-box input[type="radio"]:checked + label:after {
max-width: 20px;
opacity: 1;
}
.rs-free-contact {
background: #0c8b51;
padding: 50px 50px 50px 50px;
}
.rs-free-contact .from-control {
width: 100%;
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #0C8B51;
background-color: #127C4B;
border-radius: 3px;
padding: 10px 18px;
}
.rs-free-contact textarea {
height: 140px;
}
.rs-free-contact ::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #ffffff;
opacity: 1;
}
.rs-free-contact ::-moz-placeholder {
/* Firefox 19+ */
color: #ffffff;
opacity: 1;
}
.rs-free-contact :-ms-input-placeholder {
/* IE 10+ */
color: #ffffff;
opacity: 1;
}
.rs-free-contact :-moz-placeholder {
/* Firefox 18- */
color: #ffffff;
opacity: 1;
}
/*-------------------------------------
36. Contact Section CSS
--------------------------------------*/
.contact-page-section .inner-part .title {
font-size: 36px;
color: #101010;
line-height: 46px;
font-weight: 700;
margin-bottom: 14px;
}
.contact-page-section .inner-part .title2 {
font-size: 28px;
font-weight: 700;
line-height: 1.25em;
color: #111111;
}
.contact-page-section .inner-part p {
font-size: 19px;
color: #363636;
line-height: 32px;
font-weight: 400;
}
.contact-page-section .rs-quick-contact {
background-color: #F9F8F8;
padding: 70px 150px 70px;
}
.contact-page-section .rs-quick-contact .from-control {
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #F1F1F1;
box-shadow: 0 0 30px #eee;
color: #363636;
width: 100%;
max-width: 100%;
opacity: 1;
border-radius: 3px;
border: 1px solid #ffffff;
color: #767676;
background: #ffffff;
padding: 10px 18px;
}
.contact-page-section .rs-quick-contact textarea {
height: 140px;
}
.contact-page-section .rs-quick-contact .form-group .btn-send {
padding: 16px 0px 16px 0px;
text-transform: uppercase;
box-shadow: 0px 28px 50px 0px rgba(0, 0, 0, 0.05);
outline: none;
border: none;
padding: 12px 40px;
border-radius: 3px;
display: inline-block;
text-transform: capitalize;
font-size: 16px;
font-weight: 500;
color: #ffffff;
background: #21a7d0;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
width: 100%;
}
.contact-page-section .rs-quick-contact .form-group .btn-send:hover {
opacity: 0.90;
}
.contact-page-section .rs-quick-contact.new-style {
padding: 70px 60px 70px;
}
.contact-page-section .rs-contact-box .address-item {
padding: 50px 40px 50px 40px;
background: #ffffff;
box-shadow: 0 0 30px #fff;
text-align: center;
margin: 0px 20px 0px 0px;
border-radius: 5px 5px 5px 5px;
}
.contact-page-section .rs-contact-box .address-item .icon-part {
padding-bottom: 20px;
}
.contact-page-section .rs-contact-box .address-item .icon-part img {
width: 65px;
}
.contact-page-section .rs-contact-box .address-item .address-text .label {
display: block;
color: #101010;
font-size: 22px;
font-weight: 600;
padding-bottom: 10px;
}
.contact-page-section .rs-contact-box .address-item .address-text .des {
font-size: 17px;
color: #031a3d;
}
.contact-page-section .rs-contact-box .address-item .address-text .des a {
color: #031a3d;
}
.contact-page-section .rs-contact-box .address-item .address-text .des a:hover {
color: #21a7d0;
}
.contact-page-section .rs-contact-wrap {
padding: 40px 35px 30px 35px;
background-color: #F9F8F8;
border-radius: 5px 5px 5px 5px;
}
.contact-page-section .rs-contact-wrap .address-item {
display: flex;
position: relative;
margin-bottom: 40px;
}
.contact-page-section .rs-contact-wrap .address-item .address-icon {
margin-right: 20px;
}
.contact-page-section .rs-contact-wrap .address-item .address-icon i {
font-size: 35px;
color: #21a7d0;
}
.contact-page-section .rs-contact-wrap .address-item .address-text .label {
display: block;
color: #505050;
font-size: 15px;
font-weight: 700;
padding-bottom: 10px;
line-height: 1.2;
}
.contact-page-section .rs-contact-wrap .address-item .address-text .des {
font-size: 18px;
color: #111111;
font-weight: 500;
}
.contact-page-section .rs-contact-wrap .address-item .address-text .des a {
color: #111111;
font-weight: 500;
}
.contact-page-section .rs-contact-wrap .address-item .address-text .des a:hover {
color: #21a7d0;
}
.contact-page-section .contact-comment-box .from-control {
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #F1F1F1;
box-shadow: 0 0 30px #eee;
color: #363636;
width: 100%;
max-width: 100%;
opacity: 1;
border-radius: 3px;
border: 1px solid #ffffff;
color: #767676;
background: #ffffff;
padding: 10px 18px;
}
.contact-page-section .contact-comment-box textarea {
height: 140px;
}
.contact-page-section .contact-comment-box .form-group .btn-send {
padding: 16px 0px 16px 0px;
box-shadow: 0px 28px 50px 0px rgba(0, 0, 0, 0.05);
outline: none;
border: none;
padding: 12px 40px;
border-radius: 3px;
display: inline-block;
text-transform: capitalize;
font-size: 16px;
font-weight: 500;
color: #ffffff;
background: #21a7d0;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
width: 100%;
text-transform: uppercase;
}
.contact-page-section .contact-comment-box .form-group .btn-send:hover {
opacity: 0.90;
}
.contact-page-section .contact-comment-box.new-style {
padding: 60px 70px 60px !important;
}
.contact-page-section .contact-map {
overflow: hidden;
}
.contact-page-section .contact-map iframe {
float: left;
width: 100%;
height: 550px;
border: none;
}
.contact-page-section .contact-map2 {
overflow: hidden;
}
.contact-page-section .contact-map2 iframe {
float: left;
width: 100%;
height: 720px;
border: none;
}
.contact-page-section .contact-map3 {
overflow: hidden;
}
.contact-page-section .contact-map3 iframe {
float: left;
width: 100%;
height: 600px;
border: none;
}
.contact-page-section .contact-address-section {
text-align: center;
margin: 0 0 50px;
}
.contact-page-section .contact-address-section .contact-info {
background: #f9f9f9;
display: flex;
text-align: left;
align-items: center;
padding: 0 30px;
min-height: 175px;
border-radius: 5px;
position: relative;
transition: all 0.3s ease;
}
.contact-page-section .contact-address-section .contact-info .icon-part {
margin-right: 30px;
}
.contact-page-section .contact-address-section .contact-info .icon-part i {
color: #21a7d0;
font-size: 30px;
margin: 0;
padding: 0;
width: 70px;
height: 70px;
line-height: 58px;
border-radius: 50%;
text-align: center;
background: transparent;
border: 6px solid #f9ede9;
}
.contact-page-section .contact-address-section .contact-info .content-part .info-subtitle {
font-size: 18px;
font-weight: 700;
color: #505050;
margin: 0 0 5px;
}
.contact-page-section .contact-address-section .contact-info .content-part .info-title {
font-size: 24px;
font-weight: 700;
color: #111111;
margin: 0;
}
.contact-page-section .contact-address-section .contact-info .content-part a {
color: #111111;
display: block;
}
.contact-page-section .contact-address-section .contact-info .content-part a:hover {
color: #21a7d0;
}
.contact-page-section .contact-address-section .contact-info:hover {
transform: translateY(-5px);
}
.contact-page-section .contact-address-section.style2 {
margin: 0;
}
.contact-page-section .contact-comment-section {
padding: 50px;
}
.contact-page-section .contact-comment-section h3 {
font-size: 36px;
margin: 0;
padding-bottom: 15px;
font-weight: 700;
}
.contact-page-section .contact-comment-section form .form-group input {
height: 43px;
padding: 0 15px;
}
.contact-page-section .contact-comment-section form .form-group input,
.contact-page-section .contact-comment-section form .form-group textarea {
border: none;
background: #ffffff;
border-radius: 0;
box-shadow: none;
}
.contact-page-section .contact-comment-section form .form-group label {
color: #505050;
font-weight: 400;
}
.contact-page-section .contact-comment-section form .form-group input.btn-send {
text-transform: uppercase;
color: #ffffff;
background-color: #21a7d0;
margin-top: 15px;
border: none;
height: 50px;
line-height: 50px;
text-align: center;
font-weight: 600;
padding: 0 50px;
cursor: pointer;
transition: 0.4s;
-webkit-transition: 0.4s;
-ms-transition: 0.4s;
}
.contact-page-section .contact-comment-section form .form-group input.btn-send:hover {
background: #208cad;
}
.contact-page-section .contact-bg1 {
background: #f9f9f9;
}
/*------------------------------------
37. Footer Section CSS
------------------------------------*/
.rs-footer {
background-color: #273c66;
background-image: url(assets/images/bg/footer-bg.png);
background-size: cover;
}
.rs-footer .footer-top {
padding: 50px 0;
}
.rs-footer .footer-top .widget-title {
color: #ffffff;
font-size: 18px;
line-height: 26px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 35px;
}
.rs-footer .footer-top .site-map li {
padding-left: 15px;
position: relative;
margin-bottom: 11px;
}
.rs-footer .footer-top .site-map li a {
color: #e8e8e8;
}
.rs-footer .footer-top .site-map li a:hover {
color: #21a7d0;
}
.rs-footer .footer-top .site-map li:before {
position: absolute;
content: '';
left: 0;
top: 50%;
transform: translateY(-50%);
width: 6px;
height: 6px;
background: #21a7d0;
}
.rs-footer .footer-top .site-map li:last-child {
margin-bottom: 0;
}
.rs-footer .footer-top .address-widget li {
position: relative;
margin-bottom: 16px;
}
.rs-footer .footer-top .address-widget li i {
position: absolute;
}
.rs-footer .footer-top .address-widget li i:before {
color: #ffffff;
}
.rs-footer .footer-top .address-widget li .desc {
padding-left: 35px;
color: #ffffff;
}
.rs-footer .footer-top .address-widget li .desc a {
color: #ffffff;
}
.rs-footer .footer-top .address-widget li .desc a:hover {
color: #21a7d0;
}
.rs-footer .footer-top .address-widget li:last-child {
margin-bottom: 0;
}
.rs-footer .footer-top.no-gap {
padding-top: 93px;
}
.rs-footer .footer-bottom {
padding: 40px 0;
background: transparent;
position: relative;
}
.rs-footer .footer-bottom .copyright p {
margin-bottom: 0;
color: #f3f8f9;
}
.rs-footer .footer-bottom .copyright a {
color: #21a7d0;
}
.rs-footer .footer-bottom .footer-logo a {
display: inline-block;
}
.rs-footer .footer-bottom .footer-logo a img {
max-width: 190px;
}
.rs-footer .footer-bottom .footer-social li {
display: inline;
margin-right: 5px;
}
.rs-footer .footer-bottom .footer-social li a {
display: inline-block;
width: 30px;
height: 30px;
line-height: 30px;
border-radius: 100%;
background: #21a7d0;
color: #ffffff;
text-align: center;
}
.rs-footer .footer-bottom .footer-social li a:hover {
color: #ffffff;
background: #273c66;
}
.rs-footer .footer-bottom .footer-social li:last-child {
margin: 0;
}
.rs-footer .footer-bottom:before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
height: 1px;
width: 100%;
max-width: 1240px;
background: rgba(255, 255, 255, 0.1);
}
.rs-footer.style6 .footer-top {
padding: 100px 0 93px;
}
.rs-footer.style6 .footer-top .site-map li a {
color: #e8e8e8;
}
.rs-footer.style6 .footer-top .site-map li a:hover {
color: #21a7d0;
}
.rs-footer.style6 .footer-top .site-map li:before {
background: #f4bf00 !important;
}
.rs-footer.style6 .footer-top .site-map li:last-child {
margin-bottom: 0;
}
.rs-footer.style6 .footer-top .address-widget li i:before {
color: #f4bf00 !important;
}
.rs-footer.style6 .footer-bottom {
background: none;
}
.rs-footer.style6 .footer-bottom .main-part {
padding-top: 30px;
padding-bottom: 18px;
}
.rs-footer.style6 .footer-bottom .main-part p a {
color: #f4bf00 !important;
}
.rs-footer.style6 .footer-bottom .main-part p a:hover {
color: #21a7d0 !important;
}
.rs-footer.style6 .footer-bottom .main-part .footer-social li a {
color: #111111 !important;
background: #f4bf00 !important;
}
.rs-footer.style7 .footer-top {
padding: 100px 0 93px;
}
.rs-footer.style7 .footer-top .address-widget li i:before {
color: #21a7d0 !important;
}
.rs-footer.style8 .footer-top {
padding: 100px 0 93px;
}
.rs-footer.style8 .footer-top .site-map li a {
color: #e8e8e8;
}
.rs-footer.style8 .footer-top .site-map li a:hover {
color: #21a7d0;
}
.rs-footer.style8 .footer-top .site-map li:before {
background: #21a7d0 !important;
}
.rs-footer.style8 .footer-top .site-map li:last-child {
margin-bottom: 0;
}
.rs-footer.style8 .footer-top .address-widget li i:before {
color: #21a7d0 !important;
}
.rs-footer.style8 .footer-top .address-widget li .desc a:hover {
color: #21a7d0 !important;
}
.rs-footer.style8 .footer-bottom .copyright p a {
color: #21a7d0 !important;
}
.rs-footer.style8 .footer-bottom .copyright p a:hover {
color: #208cad !important;
}
.rs-footer.style8 .footer-bottom .footer-social li a {
background: #21a7d0 !important;
}
.rs-footer.orange-footer {
background-color: #151515;
background-image: url(assets/images/bg/footer-bg2.jpg);
}
.rs-footer.orange-footer .footer-top .widget-title {
color: #ffffff;
}
.rs-footer.orange-footer .footer-top .site-map li a:hover {
color: #21a7d0;
}
.rs-footer.orange-footer .footer-top .site-map li:before {
background: #21a7d0;
}
.rs-footer.orange-footer .footer-top .address-widget li i:before {
color: #ffffff;
}
.rs-footer.orange-footer .footer-top .address-widget li .desc {
color: #ffffff;
}
.rs-footer.orange-footer .footer-top .address-widget li .desc a {
color: #ffffff;
}
.rs-footer.orange-footer .footer-top .address-widget li .desc a:hover {
color: #21a7d0;
}
.rs-footer.orange-footer .footer-bottom .copyright a {
color: #21a7d0;
}
.rs-footer.orange-footer .footer-bottom .footer-social li a {
background: #21a7d0;
}
.rs-footer.orange-footer .footer-bottom .footer-social li a:hover {
background: #208cad;
}
.rs-footer.home9-style .footer-top {
padding: 218px 0 93px;
}
.rs-footer.home9-style .footer-top .widget-title {
color: #ffffff;
font-size: 18px;
line-height: 26px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 35px;
position: relative;
}
.rs-footer.home9-style .footer-top .widget-title:before {
content: '';
position: absolute;
left: 0;
bottom: -5px;
height: 2px;
width: 40px;
background: #f4bf00;
}
.rs-footer.home9-style .footer-top .site-map li {
padding-left: 15px;
position: relative;
margin-bottom: 11px;
}
.rs-footer.home9-style .footer-top .site-map li a {
color: #e8e8e8;
}
.rs-footer.home9-style .footer-top .site-map li a:hover {
color: #f4bf00;
}
.rs-footer.home9-style .footer-top .site-map li:before {
position: absolute;
content: '';
left: 0;
top: 50%;
transform: translateY(-50%);
width: 6px;
height: 6px;
background: #f4bf00;
}
.rs-footer.home9-style .footer-top .site-map li:last-child {
margin-bottom: 0;
}
.rs-footer.home9-style .footer-top .address-widget li {
position: relative;
margin-bottom: 16px;
}
.rs-footer.home9-style .footer-top .address-widget li i {
position: absolute;
}
.rs-footer.home9-style .footer-top .address-widget li i:before {
color: #f4bf00;
}
.rs-footer.home9-style .footer-top .address-widget li .desc {
padding-left: 35px;
color: #ffffff;
}
.rs-footer.home9-style .footer-top .address-widget li .desc a {
color: #ffffff;
}
.rs-footer.home9-style .footer-top .address-widget li .desc a:hover {
color: #f4bf00;
}
.rs-footer.home9-style .footer-top .address-widget li:last-child {
margin-bottom: 0;
}
.rs-footer.home9-style .footer-top.no-gap {
padding-top: 93px;
}
.rs-footer.home9-style .footer-top .recent-post {
display: flex;
}
.rs-footer.home9-style .footer-top .recent-post .post-img {
width: 130px;
float: left;
padding-right: 15px;
}
.rs-footer.home9-style .footer-top .recent-post .post-img img {
border-radius: 4px;
}
.rs-footer.home9-style .footer-top .recent-post .post-item .post-desc a {
font-size: 14px;
color: #ffffff;
font-weight: 400;
line-height: 22px;
text-transform: capitalize;
}
.rs-footer.home9-style .footer-top .recent-post .post-item .post-desc a:hover {
color: #f4bf00;
}
.rs-footer.home9-style .footer-top .recent-post .post-item .post-date {
font-size: 13px;
color: #ffffff;
font-weight: 400;
}
.rs-footer.home9-style .footer-top .recent-post .post-item .post-date i {
font-size: 13px;
color: #f4bf00;
padding-right: 5px;
}
.rs-footer.home9-style .footer-bottom {
padding: 40px 0;
background: transparent;
position: relative;
}
.rs-footer.home9-style .footer-bottom .copyright p {
margin-bottom: 0;
color: #f3f8f9;
}
.rs-footer.home9-style .footer-bottom .copyright a {
color: #f4bf00;
}
.rs-footer.home9-style .footer-bottom .copyright a:hover {
color: #21a7d0;
}
.rs-footer.home9-style .footer-bottom .footer-logo a {
display: inline-block;
}
.rs-footer.home9-style .footer-bottom .footer-logo a img {
max-width: 190px;
}
.rs-footer.home9-style .footer-bottom .footer-social li {
display: inline;
margin-right: 5px;
}
.rs-footer.home9-style .footer-bottom .footer-social li a {
display: inline-block;
width: 30px;
height: 30px;
line-height: 30px;
border-radius: 100%;
background: #f4bf00;
color: #ffffff;
text-align: center;
}
.rs-footer.home9-style .footer-bottom .footer-social li a:hover {
color: #ffffff;
background: #273c66;
}
.rs-footer.home9-style .footer-bottom .footer-social li:last-child {
margin: 0;
}
.rs-footer.home9-style .footer-bottom:before {
background: rgba(255, 255, 255, 0.1);
}
.rs-footer.home9-style.main-home {
background: #151515;
}
.rs-footer.home9-style.main-home .footer-top .widget-title:before {
background: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-top .footer-logo a {
display: inline-block;
}
.rs-footer.home9-style.main-home .footer-top .footer-logo a img {
max-width: 190px;
}
.rs-footer.home9-style.main-home .footer-top .textwidget p {
color: #ffffff !important;
}
.rs-footer.home9-style.main-home .footer-top .footer_social li {
display: inline-block;
margin-right: 6px;
color: #ffffff;
}
.rs-footer.home9-style.main-home .footer-top .footer_social li a {
color: #ffffff;
width: auto;
height: auto;
line-height: 16px;
font-size: 16px;
margin-right: 10px;
}
.rs-footer.home9-style.main-home .footer-top .footer_social li a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-top .site-map li a {
color: #e8e8e8;
}
.rs-footer.home9-style.main-home .footer-top .site-map li a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-top .site-map li:before {
background: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-top .address-widget li i:before {
color: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-top .address-widget li .desc a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-top.no-gap {
padding-top: 93px;
}
.rs-footer.home9-style.main-home .footer-top .recent-post .post-img img {
border-radius: 4px;
}
.rs-footer.home9-style.main-home .footer-top .recent-post .post-item .post-desc a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-top .recent-post .post-item .post-date i {
font-size: 13px;
color: #21a7d0;
padding-right: 5px;
}
.rs-footer.home9-style.main-home .footer-bottom {
padding: 40px 0;
background: transparent;
position: relative;
}
.rs-footer.home9-style.main-home .footer-bottom .copyright p {
margin-bottom: 0;
color: #f3f8f9;
}
.rs-footer.home9-style.main-home .footer-bottom .copyright a {
color: #ffffff;
}
.rs-footer.home9-style.main-home .footer-bottom .copyright a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-bottom .copy-right-menu li {
display: inline-block;
position: relative;
padding: 0px 19px 0 25px;
}
.rs-footer.home9-style.main-home .footer-bottom .copy-right-menu li a {
color: #e8e8e8;
}
.rs-footer.home9-style.main-home .footer-bottom .copy-right-menu li a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home .footer-bottom .copy-right-menu li:before {
display: block;
content: "";
position: absolute;
font-size: 18px;
background: #21a7d0;
left: 0;
top: 50%;
width: 6px;
height: 6px;
transform: translateY(-50%);
border-radius: 50%;
}
.rs-footer.home9-style.main-home .footer-bottom .copy-right-menu li:first-child:before {
display: none;
}
.rs-footer.home9-style.main-home .footer-bottom:before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
height: 1px;
width: 100%;
max-width: 1240px;
background: rgba(255, 255, 255, 0.1);
}
.rs-footer.home9-style.main-home.home13-style {
background: url(assets/images/bg/home13/footer.jpg);
background-repeat: no-repeat;
background-size: cover;
}
.rs-footer.home9-style.main-home.home13-style .footer-top {
padding: 100px 0 93px;
}
.rs-footer.home9-style.main-home.home14-style {
background: #f9f7f8;
}
.rs-footer.home9-style.main-home.home14-style .footer-top {
padding: 100px 0 93px;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .widget-title {
color: #101010;
text-transform: capitalize;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .widget-title:before {
bottom: -8px;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .textwidget p {
color: #333333 !important;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .footer_social li a {
color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .footer_social li a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .address-widget li i:before {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .address-widget li .desc {
color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .address-widget li .desc a {
color: #505050;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .address-widget li .desc a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .site-map li a {
color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .site-map li a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .site-map li:before {
background: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .recent-post .post-item .post-desc {
color: #505050;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .recent-post .post-item .post-desc a {
color: #505050;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .recent-post .post-item .post-desc a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .recent-post .post-item .post-date {
color: #505050;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .recent-post .post-item .post-date i {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copyright p {
color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copyright a {
color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copyright a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copy-right-menu li a {
color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copy-right-menu li a:hover {
color: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copy-right-menu li:before {
background: #21a7d0;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copy-right-menu li:first-child:before {
display: none;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom:before {
background: #f0ecee;
}
.rs-footer.home9-style.home12-style {
background: #d0f4e4;
}
.rs-footer.home9-style.home12-style .footer-top .widget-title {
color: #101010;
}
.rs-footer.home9-style.home12-style .footer-top .widget-title:before {
background: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-top .footer-logo a {
display: inline-block;
}
.rs-footer.home9-style.home12-style .footer-top .footer-logo a img {
max-width: 190px;
}
.rs-footer.home9-style.home12-style .footer-top .footer_social li {
display: inline-block;
margin-right: 6px;
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .footer_social li a {
color: #333333;
width: auto;
height: auto;
line-height: 16px;
font-size: 16px;
margin-right: 10px;
}
.rs-footer.home9-style.home12-style .footer-top .footer_social li a:hover {
color: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-top .site-map li a {
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .site-map li a:hover {
color: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-top .site-map li:before {
background: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-top .address-widget li i:before {
color: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-top .address-widget li .desc {
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .address-widget li .desc a {
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .address-widget li .desc a:hover {
color: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-top.no-gap {
padding-top: 93px;
}
.rs-footer.home9-style.home12-style .footer-top .recent-post .post-img img {
border-radius: 4px;
}
.rs-footer.home9-style.home12-style .footer-top .recent-post .post-item .post-desc a {
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .recent-post .post-item .post-desc a:hover {
color: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-top .recent-post .post-item .post-date {
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .recent-post .post-item .post-date i {
font-size: 13px;
color: #0c8b51;
padding-right: 5px;
}
.rs-footer.home9-style.home12-style .footer-bottom {
padding: 40px 0;
background: transparent;
position: relative;
}
.rs-footer.home9-style.home12-style .footer-bottom .copyright p {
margin-bottom: 0;
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-bottom .copyright a {
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-bottom .copyright a:hover {
color: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-bottom .copy-right-menu li {
display: inline-block;
position: relative;
padding: 0px 19px 0 25px;
}
.rs-footer.home9-style.home12-style .footer-bottom .copy-right-menu li a {
color: #333333;
}
.rs-footer.home9-style.home12-style .footer-bottom .copy-right-menu li a:hover {
color: #0c8b51;
}
.rs-footer.home9-style.home12-style .footer-bottom .copy-right-menu li:before {
display: block;
content: "";
position: absolute;
font-size: 18px;
background: #0c8b51;
left: 0;
top: 50%;
width: 6px;
height: 6px;
transform: translateY(-50%);
border-radius: 50%;
}
.rs-footer.home9-style.home12-style .footer-bottom .copy-right-menu li:first-child:before {
display: none;
}
.rs-footer.home9-style.home12-style .footer-bottom:before {
background: #8fcea4;
}
.rs-footer.home11-style {
background: #4e49a1;
}
.rs-footer.home11-style .footer-top {
padding: 100px 0 93px;
}
.rs-footer.home11-style .footer-top .site-map li a:hover {
color: #21a7d0;
}
.rs-footer.home11-style .footer-top .site-map li:before {
background: #21a7d0 !important;
}
.rs-footer.home11-style .footer-top .site-map li:last-child {
margin-bottom: 0;
}
.rs-footer.home11-style .footer-bottom {
padding: 40px 0;
background: transparent;
position: relative;
}
.rs-footer.home11-style .footer-bottom .copyright p {
color: #ffffff;
}
.rs-footer.home11-style .footer-bottom .footer-logo a {
display: inline-block;
}
.rs-footer.home11-style .footer-bottom .footer-logo a img {
max-width: 190px;
}
.rs-footer.home11-style .footer-bottom .footer-social li a {
color: #4e49a1;
background: #ffffff;
}
.rs-footer.home11-style .footer-bottom .footer-social li a:hover {
color: #21a7d0;
}
/* -----------------------
38. Scroll Up CSS
--------------------------*/
#scrollUp {
text-align: center;
bottom: 40px;
cursor: pointer;
display: none;
position: fixed;
right: 20px;
z-index: 999;
border-radius: 50px 50px 4px 4px;
}
#scrollUp i {
background: #21a7d0;
border-radius: 50%;
height: 40px;
font-size: 24px;
font-weight: 600;
width: 42px;
color: #fff;
line-height: 36px;
transition: all 0.3s ease;
margin-left: 2px;
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
}
#scrollUp i:hover {
background-color: #1a84a4;
}
#scrollUp.orange-color i {
background: #21a7d0;
}
#scrollUp.orange-color i:hover {
background-color: #208cad;
}
#scrollUp.yellow-color i {
background: #f4bf00;
}
#scrollUp.yellow-color i:hover {
background-color: #c19700;
}
#scrollUp.purple-color i {
background: #4e49a1;
}
#scrollUp.purple-color i:hover {
background-color: #3d397e;
}
#scrollUp.green-color i {
background: #0c8b51;
}
#scrollUp.green-color i:hover {
background-color: #085c36;
}
/*Pulse Border Animation*/
@keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
@-webkit-keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
/*Pulse Border Animation*/
@keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
@-webkit-keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
@keyframes circle-ripple {
0% {
box-shadow: 0 0 0 0 rgba(255, 84, 33, 0.3), 0 0 0 1em rgba(255, 84, 33, 0.3), 0 0 0 3em rgba(255, 84, 33, 0.3), 0 0 0 5em rgba(255, 84, 33, 0.3);
}
100% {
box-shadow: 0 0 0 1em rgba(255, 84, 33, 0.3), 0 0 0 3em rgba(255, 84, 33, 0.3), 0 0 0 5em rgba(255, 84, 33, 0.3), 0 0 0 8em rgba(255, 84, 33, 0);
}
}
@-webkit-keyframes circle-ripple {
0% {
box-shadow: 0 0 0 0 rgba(255, 84, 33, 0.3), 0 0 0 1em rgba(255, 84, 33, 0.3), 0 0 0 3em rgba(255, 84, 33, 0.3), 0 0 0 5em rgba(255, 84, 33, 0.3);
}
100% {
box-shadow: 0 0 0 1em rgba(255, 84, 33, 0.3), 0 0 0 3em rgba(255, 84, 33, 0.3), 0 0 0 5em rgba(255, 84, 33, 0.3), 0 0 0 8em rgba(255, 84, 33, 0);
}
}
.up-down {
animation: up-down 4s alternate infinite;
-webkit-animation: up-down 4s alternate infinite;
}
.up-down-new {
animation: up-down 8s alternate infinite;
-webkit-animation: up-down 8s alternate infinite;
}
@keyframes up-down {
0% {
transform: translateY(30px);
-webkit-transform: translateY(0);
}
50% {
transform: translateY(-50px);
-webkit-transform: translateY(-50px);
}
100% {
transform: translateY(0);
-webkit-transform: translateY(0);
}
}
@-webkit-keyframes up-down {
0% {
transform: translateY(30px);
-webkit-transform: translateY(0);
}
50% {
transform: translateY(-50px);
-webkit-transform: translateY(-50px);
}
100% {
transform: translateY(0);
-webkit-transform: translateY(0);
}
}
.left-right {
animation: left-right 5s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
-webkit-animation: left-right 5s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
}
.left-right-new {
animation: left-right 8s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
-webkit-animation: left-right 8s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
}
@keyframes left-right {
0% {
transform: translatex(0);
-webkit-transform: translatex(0);
}
50% {
transform: translateY(-50px);
-webkit-transform: translatex(-50px);
}
100% {
transform: translatex(0);
-webkit-transform: translatex(0);
}
}
@-webkit-keyframes left-right {
0% {
transform: translatex(0);
-webkit-transform: translatex(0);
}
50% {
transform: translatex(-50px);
-webkit-transform: translatex(-50px);
}
100% {
transform: translatex(0);
-webkit-transform: translatex(0);
}
}
.spine {
animation: spine 5s linear infinite;
-webkit-animation: spine 5s linear infinite;
}
@keyframes spine {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
}
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes spine {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
}
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
}
.spine-r {
animation: spine-r 5s linear infinite;
-webkit-animation: spine-r 5s linear infinite;
}
@keyframes spine-r {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
}
100% {
transform: rotate(-360deg);
-webkit-transform: rotate(-360deg);
}
}
@-webkit-keyframes spine-r {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
}
100% {
transform: rotate(-360deg);
-webkit-transform: rotate(-360deg);
}
}
.spine2 {
animation: spine 8s linear infinite;
}
@keyframes spine2 {
from {
transform: rotate(0deg);
-webkit-transform: rotate(0deg);
}
from {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes spine2 {
from {
transform: rotate(0deg);
-webkit-transform: rotate(0deg);
}
from {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
}
/* ------------------------------------
39. Preloader CSS
---------------------------------------*/
.loader {
background-color: #fff;
height: 100%;
width: 100%;
position: fixed;
margin-top: 0px;
top: 0px;
z-index: 9999999;
}
.loader .loader-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 140px;
height: 140px;
border: 5px solid #ebebec;
border-radius: 50%;
}
.loader .loader-container:before {
position: absolute;
content: "";
display: block;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 140px;
height: 140px;
border-top: 4px solid #21a7d0;
border-radius: 50%;
animation: loaderspin 1.8s infinite ease-in-out;
-webkit-animation: loaderspin 1.8s infinite ease-in-out;
}
.loader .loader-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
}
.loader .loader-icon img {
animation: loaderpulse alternate 900ms infinite;
}
.loader.orange-color .loader-container:before {
border-color: #21a7d0;
}
.loader.yellow-color .loader-container:before {
border-color: #f4bf00;
}
.loader.purple-color .loader-container:before {
border-color: #4e49a1;
}
.loader.green-color .loader-container:before {
border-color: #0c8b51;
}
@keyframes loaderspin {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg);
}
}
@-webkit-keyframes loaderspin {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg);
}
}
@keyframes loaderpulse {
0% {
transform: scale(1);
}
100% {
transform: scale(1.2);
}
} | 0.334155 | 0.089296 |
body{
color: #333;
background-color:#EEE;
font-family: Helvetica, Arial, sans-serif;
/* need a background image */
}
#ch{
color: #C00;
}
#co{
/*color: #A0A;*/
color: #808;
}
.footer, .header, .sidebar, .barebones, .barebones-footer, .mcont, .banner, #flag, #hptim{
display: none;
}
/*Barebones Layout*/
@media only screen and (min-width: 20px){
.barebones, .barebones-footer{
display: block;
text-align: center;
}
.barebones{
margin: 2.5em auto;
}
.barebones-footer{
position: absolute;
margin: 0.5em auto;
width: 95%;
bottom: 0;
}
em{
font-weight: bold;
font-style: normal;
}
p{
margin: 0.25em;
}
}
/*Small Mobile (Barebones, Formatted) Layout*/
@media only screen and (min-width: 320px){
.barebones{
font-size: 140%;
}
}
/*Medium Mobile Layout*/
@media only screen and (min-width: 375px){
.barebones, .barebones-footer{
display: none;
}
.header, .footer, .mcont, .banner{
display: block;
text-align: center;
margin: 0.5em auto;
}
body{
font-size: 77%;
}
h1, h2, h3, h4, h5, h6{
margin: 0.5em;
}
a{
color: #333;
text-decoration: none;
}
.header, .mcont, .banner{
width: 28em;
border-style: groove;
border-width: 3px;
border-radius: 12px;
background-color: #FFF;
}
.footer{
position: absolute;
width: 95%;
bottom: 0;
}
.header a, .mcont a, .banner a{
display: block;
}
.footer a{
text-decoration: underline;
}
}
/*Large Mobile Layout*/
@media only screen and (min-width: 425px){
body{
font-size: 80%;
}
}
/*Tablet Layout*/
@media only screen and (min-width: 768px){
.mcont, .banner{
display: none;
}
.sidebar, #flag, #htptim{
display: block;
}
.header, #flag{
margin-left: calc(20em + 50% - 30em);
margin-right: calc(50% - 27em);
width: 39em;
}
.footer{
position: absolute;
bottom: 0;
margin-left: calc(20em + 50% - 27em);
margin-right: calc(50% - 27em);
width: 33.75em;
}
#flag{
top: 0;
width: calc(39.4em);
}
.sidebar{
position: absolute;
left: 0;
top: 0;
width: 20em;
margin: 0.12em auto;
text-align: center;
}
.sidebar h3{
border-style: groove;
border-width: 3px;
border-radius: 12px;
padding: 0.25em;
background-color: #FFF;
}
.sidebar h3 a{
display: block;
}
}
/*Laptop & Landscape Tablet Layout*/
@media only screen and (min-width: 1024px){
.header, #flag{
margin-left: calc(20em + 50% - 30em);
margin-right: calc(50% - 27em);
width: 39em;
}
.footer{
position: absolute;
bottom: 0;
margin-left: calc(20em + 50% - 27em);
margin-right: calc(50% - 27em);
width: 33.75em;
}
#flag{
top: 0;
width: calc(39.4em);
}
.sidebar{
position: absolute;
left: calc(25% - 10em);
top: 0;
width: 20em;
margin: 0.12em auto;
text-align: center;
}
.sidebar h3{
border-style: groove;
border-width: 3px;
border-radius: 12px;
padding: 0.25em;
background-color: #FFF;
}
.sidebar h3 a{
display: block;
}
}
/*Desktop PC Layout*/
@media only screen and (min-width: 1440px) {
}
@media only screen and (min-width: 2560px) {
} | TxChCoTest/oldmain.css | body{
color: #333;
background-color:#EEE;
font-family: Helvetica, Arial, sans-serif;
/* need a background image */
}
#ch{
color: #C00;
}
#co{
/*color: #A0A;*/
color: #808;
}
.footer, .header, .sidebar, .barebones, .barebones-footer, .mcont, .banner, #flag, #hptim{
display: none;
}
/*Barebones Layout*/
@media only screen and (min-width: 20px){
.barebones, .barebones-footer{
display: block;
text-align: center;
}
.barebones{
margin: 2.5em auto;
}
.barebones-footer{
position: absolute;
margin: 0.5em auto;
width: 95%;
bottom: 0;
}
em{
font-weight: bold;
font-style: normal;
}
p{
margin: 0.25em;
}
}
/*Small Mobile (Barebones, Formatted) Layout*/
@media only screen and (min-width: 320px){
.barebones{
font-size: 140%;
}
}
/*Medium Mobile Layout*/
@media only screen and (min-width: 375px){
.barebones, .barebones-footer{
display: none;
}
.header, .footer, .mcont, .banner{
display: block;
text-align: center;
margin: 0.5em auto;
}
body{
font-size: 77%;
}
h1, h2, h3, h4, h5, h6{
margin: 0.5em;
}
a{
color: #333;
text-decoration: none;
}
.header, .mcont, .banner{
width: 28em;
border-style: groove;
border-width: 3px;
border-radius: 12px;
background-color: #FFF;
}
.footer{
position: absolute;
width: 95%;
bottom: 0;
}
.header a, .mcont a, .banner a{
display: block;
}
.footer a{
text-decoration: underline;
}
}
/*Large Mobile Layout*/
@media only screen and (min-width: 425px){
body{
font-size: 80%;
}
}
/*Tablet Layout*/
@media only screen and (min-width: 768px){
.mcont, .banner{
display: none;
}
.sidebar, #flag, #htptim{
display: block;
}
.header, #flag{
margin-left: calc(20em + 50% - 30em);
margin-right: calc(50% - 27em);
width: 39em;
}
.footer{
position: absolute;
bottom: 0;
margin-left: calc(20em + 50% - 27em);
margin-right: calc(50% - 27em);
width: 33.75em;
}
#flag{
top: 0;
width: calc(39.4em);
}
.sidebar{
position: absolute;
left: 0;
top: 0;
width: 20em;
margin: 0.12em auto;
text-align: center;
}
.sidebar h3{
border-style: groove;
border-width: 3px;
border-radius: 12px;
padding: 0.25em;
background-color: #FFF;
}
.sidebar h3 a{
display: block;
}
}
/*Laptop & Landscape Tablet Layout*/
@media only screen and (min-width: 1024px){
.header, #flag{
margin-left: calc(20em + 50% - 30em);
margin-right: calc(50% - 27em);
width: 39em;
}
.footer{
position: absolute;
bottom: 0;
margin-left: calc(20em + 50% - 27em);
margin-right: calc(50% - 27em);
width: 33.75em;
}
#flag{
top: 0;
width: calc(39.4em);
}
.sidebar{
position: absolute;
left: calc(25% - 10em);
top: 0;
width: 20em;
margin: 0.12em auto;
text-align: center;
}
.sidebar h3{
border-style: groove;
border-width: 3px;
border-radius: 12px;
padding: 0.25em;
background-color: #FFF;
}
.sidebar h3 a{
display: block;
}
}
/*Desktop PC Layout*/
@media only screen and (min-width: 1440px) {
}
@media only screen and (min-width: 2560px) {
} | 0.175256 | 0.046249 |
.b-bp-pm-noPadding
{
padding:0;
}
.b-bp-pm-noMargin
{
margin:0;
}
.b-bp-pm-mg-l-5
{
margin-left:5px;
}
.b-bp-pm-mg-r-5
{
margin-right:5px;
}
.b-bp-pm-mg-t-5
{
margin-top:5px;
}
.b-bp-pm-mg-b-5
{
margin-bottom:5px;
}
.b-bp-pm-pd-l-5
{
padding-left:5px;
}
.b-bp-pm-pd-r-5
{
padding-right:5px;
}
.b-bp-pm-pd-t-5
{
padding-top:5px;
}
.b-bp-pm-pd-b-5
{
padding-bottom:5px;
}
.b-bp-pm-mg-0-auto
{
margin:0 auto;
}
.b-bp-pm-mg-pd-5
{
margin:5px;
padding:5px;
}
.b-bp-pm-margin-lg
{
margin:50px;
}
.b-bp-pm-padding-lg
{
padding:50px;
}
.b-bp-pm-paddingBtn
{
padding:14px 40px;
}
.b-bp-pm-paddingBtnsm
{
padding:8px 32px;
}
.b-bp-pm-classname
{
margin:0;
padding:0;
}
.b-bp-br-rounded
{
border-radius:5px;
}
.b-bp-br-roundedTop
{
border-radius:5px 5px 0px 0px;
}
.b-bp-br-roundedRight
{
border-radius:0px 5px 5px 0px;
}
.b-bp-br-roundedBottom
{
border-radius:0px 0px 5px 5px;
}
.b-bp-br-roundedLeft
{
border-radius:5px 0px 0px 5px;
}
.b-bp-br-border-2
{
border:solid 2px #000000;
}
.b-bp-br-border-r-2
{
border-right:solid 2px ;
}
.b-bp-br-border-l-2
{
border-left:solid 2px #000000;
}
.b-bp-br-border-b-2
{
border-bottom:solid 2px #000000;
}
.b-bp-br-border-t-2
{
border:solid 2px #000000;
border-right:solid 0px ;
border-bottom:solid 0px #000000;
border-left:solid 0px #000000;
}
.b-bp-br-radius-lg
{
border-radius:30px;
}
.b-bp-br-borderDashed
{
border:dashed 2px #000000;
}
.b-bp-br-borderRoundedSolid
{
border:solid 5px #000000;
border-radius:5px;
}
.b-bp-br-borderBlackRnd
{
border:solid 2px #000000;
border-radius:25px;
}
.b-bp-br-borderDarkViolet
{
border:solid 3px #4b1675;
}
.b-bp-br-rounded-2
{
border-radius:2px;
}
.b-bp-br-borderNone
{
border:solid 0px #000000;
}
.b-bp-br-borderPearColor
{
border:solid 4px #bec939;
}
.b-bp-s-innerShadow
{
box-shadow:inset 0px 0px 5px 5px #000000;
}
.b-bp-s-outerShadow
{
box-shadow:0px 0px 5px 7px #000000;
}
.b-bp-s-outerShadowDark
{
box-shadow:9px 10px 7px -1px #000000;
}
.b-bp-s-outerShadowLight
{
box-shadow:10px 10px 7px -3px #967979;
}
.b-bp-s-outerShadowLeftTop
{
box-shadow:-9px -8px 8px 3px #4d4b4b;
}
.b-bp-s-innerShadowLight
{
box-shadow:inset 0px 0px 11px 10px #c9b5b5;
}
.b-bp-s-shadowBottom
{
box-shadow:4px 14px 8px -6px #000000;
}
.b-bp-s-shadowTop
{
box-shadow:0px -11px 6px -4px #000000;
}
.b-bp-s-shadow-bottom-sm
{
box-shadow:0px 4px 3px -3px #000000;
}
.b-bp-b-orange
{
background:#ffc85b;
}
.b-bp-b-darkViolet
{
background:rgba(61,28,94,1);
}
.b-bp-b-transparent
{
background:rgba(0,0,0,0);
}
.b-bp-b-white
{
background:#ffffff;
}
.b-bp-b-black
{
background:#171614;
}
.b-bp-b-cyan
{
background:#69c4b9;
}
.b-bp-b-lightBlue
{
background:#b4e8ff;
}
.b-bp-b-green
{
background:#3fa889;
}
.b-bp-b-carmine
{
background:#ab3b3b;
}
.b-bp-b-beige
{
background:#fff3da;
}
.b-bp-b-apricot
{
background:#ffc041;
}
.b-bp-b-pearColor
{
background:#b6de84;
}
.b-bp-b-cyanandorange
{
background:-webkit-linear-gradient(left,#4DA0B0,#D39D38);
}
.b-bp-b-cyanLight
{
background:-o-linear-gradient(right,#4CA1AF,#C4E0E5);
}
.b-bp-b-blueandgreen
{
background:linear-gradient(#4a98bc, #57af75);
}
.b-bp-b-whiteandblack
{
background:linear-gradient(#eee, #333);
}
.b-tp-s-textShadowRight
{
text-shadow:5px 1px 4px #000000;
}
.b-tp-s-textShadowFull
{
text-shadow:2px 1px 8px #000000;
}
.b-tp-s-textShadowLeft
{
text-shadow:-4px 0px 0px #857b7b;
}
.b-tp-s-textShadowRightBottom
{
text-shadow:6px 5px 3px #000000;
}
.b-tp-s-textShadowClass
{
text-shadow:37px 31px 5px #000000;
}
.b-tp-s-textShadowLight
{
text-shadow:-4px 4px 4px #a6a4a4;
}
.b-tp-pm-mg-l-10
{
margin-left:10px;
}
.b-tp-pm-mg-r-10
{
margin-right:10px;
}
.b-tp-pm-mg-b-10
{
margin-bottom:10px;
}
.b-tp-pm-mg-t-10
{
margin-top:10px;
}
.b-tp-pm-pd-b-10
{
padding-bottom:10px;
}
.b-tp-pm-pd-t-10
{
padding-top:10px;
}
.b-tp-pm-pd-l-10
{
padding-left:10px;
}
.b-tp-pm-pd-r-10
{
padding-right:10px;
}
.b-tp-br-border-1-dotted
{
border:dotted 4px #000000;
}
.b-tp-br-border-1-t-dotted
{
border:dotted 1px #000000;
border-right:solid 0px ;
border-bottom:solid 0px #000000;
border-left:solid 0px #000000;
}
.b-tp-br-border-1-r-dotted
{
border-right:dotted 1px #171515;
}
.b-tp-br-border-1-b-dotted
{
border-bottom:dotted 1px #000000;
}
.b-tp-br-border-1-l-dotted
{
border-left:dotted 1px #000000;
}
.b-tp-br-borderDoubleRounded
{
border:double 7px #000000;
border-radius:5px;
}
.b-tp-b-textbgapricot
{
background:#ffd47e;
}
.b-tp-b-textbgdarkgrey
{
background:#666562;
}
.b-tp-b-textbgviolet
{
background:#43306b;
}
.b-tp-b-textbgblack
{
background:#0f0a00;
}
.b-tp-b-textbgcarmine
{
background:#991e1e;
}
.b-tp-b-textbgwhite
{
background:#ffffff;
}
.b-b-c-transparent
{
background:rgba(255,255,255,0);
}
.b-b-c-orangebg
{
background:#ffbf3e;
}
.b-b-c-carminebg
{
background:#bd2a2a;
}
.b-b-c-greenbg
{
background:#1ba36a;
}
.b-b-c-cyanbg
{
background:#41cfe3;
}
.b-b-c-yellowbg
{
background:#ecff11;
}
.b-b-g-grad-diff-colors
{
background:-o-linear-gradient(330deg, #e05252 0%, #99e052 25%, #52e0e0 50%, #9952e0 75%, #e05252 100%);
/* For Opera 11.1 to 12.0 */background:-moz-linear-gradient(330deg, #e05252 0%, #99e052 25%, #52e0e0 50%, #9952e0 75%, #e05252 100%);
/* For Firefox 3.6 to 15 */background:linear-gradient(330deg, #e05252 0%, #99e052 25%, #52e0e0 50%, #9952e0 75%, #e05252 100%);
}
.b-b-g-gradient-cyan-orange
{
background:linear-gradient(to right, #4DA0B0, #D39D38);
}
.b-b-g-gradient-cyan-light
{
background:#4CA1AF;
/* For browsers that do not support gradients */background:-webkit-linear-gradient(left,#4CA1AF,#C4E0E5);
/*Safari 5.1-6*/background:-o-linear-gradient(right,#4CA1AF,#C4E0E5);
/*Opera 11.1-12*/background:-moz-linear-gradient(right,#4CA1AF,#C4E0E5);
/*Fx 3.6-15*/background:linear-gradient(to right, #4CA1AF, #C4E0E5);
}
.b-b-g-gradient-blue-green
{
background:-o-linear-gradient(#4a98bc, #57af75);
/* For Opera 11.1 to 12.0 */background:-moz-linear-gradient(#4a98bc, #57af75);
/* For Firefox 3.6 to 15 */background:linear-gradient(#4a98bc, #57af75);
}
.b-b-g-gradient-black-white
{
background:-webkit-linear-gradient(#eee, #333);
/* For Safari 5.1 to 6.0 */background:-o-linear-gradient(#eee, #333);
/* For Opera 11.1 to 12.0 */background:-moz-linear-gradient(#eee, #333);
/* For Firefox 3.6 to 15 */background:linear-gradient(#eee, #333);
}
.b-b-g-gradientRedYellow
{
background:linear-gradient(-90deg, red, yellow);
}
.b-b-g-grad-blue-gr
{
background:linear-gradient(#bddff4, #fbf5eb);
}
.b-b-g-gradientViolet
{
background:linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(163,168,255,1) 100%);
background:-webkit-linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(163,168,255,1) 100%);
}
.b-b-g-gradientLightGreen
{
background:linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(166,255,216,1) 100%);
background:-webkit-linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(166,255,216,1) 100%);
}
.b-b-g-gradientLightPink
{
background:linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(255,227,227,1) 100%);
}
.s-bs-b-btnRounded
{
padding:14px 40px;
border:solid 2px #000000;
border-radius:25px;
}
.s-bs-b-orangeBtn
{
background:#ffc85b;
padding:14px 40px;
border-radius:5px;
border:dashed 2px #000000;
border-right:solid 2px ;
box-shadow:10px 10px 7px -3px #967979;
border-left:solid 2px #000000;
}
.s-bs-b-cyanBtn
{
background:#69c4b9;
border:solid 2px #000000;
padding:8px 32px;
box-shadow:9px 10px 7px -1px #000000;
border-radius:5px;
}
.s-bs-b-apricotBtn
{
padding:8px 32px;
border-radius:2px;
border:solid 0px #000000;
background:#ffc041;
}
.s-bs-b-nameofclass
{
background:rgba(61,28,94,1);
border:solid 0px #000000;
padding:8px 32px;
border-radius:5px 5px 0px 0px;
box-shadow:4px 14px 8px -6px #000000;
}
.s-bs-b-btnPearColor
{
padding:14px 40px;
border-right:solid 2px ;
border:solid 0px #000000;
border-bottom:solid 2px #000000;
background:#b6de84;
}
.s-bs-b-btnRdPear
{
background:#b6de84;
border:solid 0px #000000;
padding:8px 32px;
border-radius:5px;
}
.s-bs-b-btnBlueGreen
{
padding-right:5px;
margin:0;
padding:14px 40px;
box-shadow:inset 0px 0px 5px 5px #000000;
background:linear-gradient(#4a98bc, #57af75);
border:solid 0px #000000;
}
.s-bs-b-btnCyanLight
{
margin:0;
padding:14px 40px;
border:solid 5px #000000;
border-radius:5px;
background:-o-linear-gradient(right,#4CA1AF,#C4E0E5);
}
.s-bs-b-hoverBtnApricot
{
box-shadow:4px 14px 8px -6px #000000;
border:solid 2px #000000;
border-radius:25px;
background:#ffc041;
}
.s-bs-b-hoverBtnBlack
{
background:#171614;
border:solid 0px #000000;
border-right:solid 2px ;
border-radius:30px;
}
.s-bs-b-hoverBlueGreen
{
background:linear-gradient(#4a98bc, #57af75);
border-radius:5px;
border:solid 0px #000000;
box-shadow:9px 10px 7px -1px #000000;
}
.s-bs-b-hoverBrdPearColor
{
background:rgba(0,0,0,0);
border:solid 4px #bec939;
}
.s-bs-b-hoverBtnLightBlue
{
background:#b4e8ff;
border-radius:30px;
border:solid 2px #000000;
}
.s-bs-b-hoverBtnBlueOrange
{
background:-webkit-linear-gradient(left,#4DA0B0,#D39D38);
border:solid 5px #000000;
border-radius:5px;
box-shadow:0px 4px 3px -3px #000000;
border-bottom:solid 2px #000000;
}
.s-bs-b-selectedBtnWhite
{
border:solid 2px #000000;
border-radius:5px 5px 0px 0px;
box-shadow:4px 14px 8px -6px #000000;
background:#ffffff;
}
.s-bs-b-selectedWhiteBlack
{
background:linear-gradient(#eee, #333);
border-left:solid 2px #000000;
border-radius:2px;
border:solid 0px #000000;
box-shadow:4px 14px 8px -6px #000000;
}
.s-bs-b-selectedLightBlue
{
padding:8px 32px;
background:#b4e8ff;
border:solid 2px #000000;
border-radius:25px;
}
.s-bs-b-darkVioletBox
{
box-shadow:9px 10px 7px -1px #000000;
background:rgba(61,28,94,1);
}
.s-bs-b-btnSelectedCarmine
{
background:#ab3b3b;
border-radius:0px 5px 5px 0px;
border:solid 2px #000000;
border-bottom:solid 2px #000000;
margin-top:5px;
padding:8px 32px;
}
.s-bs-b-btnSelectedDarkCyan
{
background:-o-linear-gradient(right,#4CA1AF,#C4E0E5);
box-shadow:0px 4px 3px -3px #000000;
border-radius:30px;
}
.s-bs-g-myClass
{
margin:0 auto;
border:solid 0px #000000;
background:-o-linear-gradient(right,#4CA1AF,#C4E0E5);
box-shadow:9px 10px 7px -1px #000000;
}
.s-bs-g-generalGreenBox
{
background:#3fa889;
margin-left:5px;
border:solid 2px #000000;
box-shadow:inset 0px 0px 5px 5px #000000;
}
.s-bs-g-btnGeneralBeige
{
background:#fff3da;
border-radius:5px;
border:solid 2px #000000;
border-right:solid 0px ;
border-bottom:solid 0px #000000;
border-left:solid 0px #000000;
}
.s-ts-t-textStyle1
{
font-size:16px;
text-transform:uppercase;
font-family:Times New Roman;
text-shadow:6px 5px 3px #000000;
}
.s-ts-t-textRed
{
font-size:17px;
text-transform:uppercase;
color:#e32020;
}
.s-ts-t-white
{
font-size:17px;
font-weight:bold;
text-transform:lowercase;
color:#faf0f0;
}
.s-ts-t-textviolet
{
font-size:14px;
font-weight:bold;
font-style:italic;
line-height:11px;
text-transform:lowercase;
color:#6771c9;
}
.s-ts-t-textGrey
{
font-size:13px;
color:#4a4242;
font-weight:bold;
text-decoration:none;
}
.s-ts-t-textOverline
{
font-family:Verdana, Geneva, sans-serif;
font-size:22px;
text-decoration:overline;
letter-spacing:1px;
text-transform:lowercase;
}
.s-ts-t-textPear
{
font-family:Arial, Helvetica, sans-serif;
color:#bfaf21;
font-size:20px;
text-transform:none;
text-align:center;
line-height:13px;
}
.s-ts-t-textGreen
{
color:#28a644;
font-size:16px;
font-family:Tahoma, Geneva, sans-serif;
font-style:italic;
text-transform:uppercase;
letter-spacing:1px;
}
.s-ts-t-textGreen-1
{
color:#28a644;
font-size:16px;
font-family:Tahoma, Geneva, sans-serif;
font-style:italic;
text-transform:uppercase;
letter-spacing:1px;
}
.s-ts-t-textBlueViolet
{
color:#264596;
font-size:14px;
text-decoration:underline;
text-transform:lowercase;
letter-spacing:1px;
}
.s-ts-t-textLarge
{
font-size:22px;
text-transform:uppercase;
}
.s-ts-t-textSmall
{
font-size:10px;
}
.s-ts-t-textMedium
{
font-size:18px;
}
.s-ts-t-textCyan
{
font-family:Tahoma, Geneva, sans-serif;
font-size:18px;
font-weight:bold;
color:#69cbd1;
text-transform:lowercase;
text-align:center;
}
.s-ts-t-textOrange
{
font-family:Trebuchet MS, Helvetica, sans-serif;
font-size:18px;
color:#f58f45;
letter-spacing:0px;
}
.c-b-fb-flat-button
{
}
.c-b-fb-flat-button
{
} | public/refactor/framework/base.css | .b-bp-pm-noPadding
{
padding:0;
}
.b-bp-pm-noMargin
{
margin:0;
}
.b-bp-pm-mg-l-5
{
margin-left:5px;
}
.b-bp-pm-mg-r-5
{
margin-right:5px;
}
.b-bp-pm-mg-t-5
{
margin-top:5px;
}
.b-bp-pm-mg-b-5
{
margin-bottom:5px;
}
.b-bp-pm-pd-l-5
{
padding-left:5px;
}
.b-bp-pm-pd-r-5
{
padding-right:5px;
}
.b-bp-pm-pd-t-5
{
padding-top:5px;
}
.b-bp-pm-pd-b-5
{
padding-bottom:5px;
}
.b-bp-pm-mg-0-auto
{
margin:0 auto;
}
.b-bp-pm-mg-pd-5
{
margin:5px;
padding:5px;
}
.b-bp-pm-margin-lg
{
margin:50px;
}
.b-bp-pm-padding-lg
{
padding:50px;
}
.b-bp-pm-paddingBtn
{
padding:14px 40px;
}
.b-bp-pm-paddingBtnsm
{
padding:8px 32px;
}
.b-bp-pm-classname
{
margin:0;
padding:0;
}
.b-bp-br-rounded
{
border-radius:5px;
}
.b-bp-br-roundedTop
{
border-radius:5px 5px 0px 0px;
}
.b-bp-br-roundedRight
{
border-radius:0px 5px 5px 0px;
}
.b-bp-br-roundedBottom
{
border-radius:0px 0px 5px 5px;
}
.b-bp-br-roundedLeft
{
border-radius:5px 0px 0px 5px;
}
.b-bp-br-border-2
{
border:solid 2px #000000;
}
.b-bp-br-border-r-2
{
border-right:solid 2px ;
}
.b-bp-br-border-l-2
{
border-left:solid 2px #000000;
}
.b-bp-br-border-b-2
{
border-bottom:solid 2px #000000;
}
.b-bp-br-border-t-2
{
border:solid 2px #000000;
border-right:solid 0px ;
border-bottom:solid 0px #000000;
border-left:solid 0px #000000;
}
.b-bp-br-radius-lg
{
border-radius:30px;
}
.b-bp-br-borderDashed
{
border:dashed 2px #000000;
}
.b-bp-br-borderRoundedSolid
{
border:solid 5px #000000;
border-radius:5px;
}
.b-bp-br-borderBlackRnd
{
border:solid 2px #000000;
border-radius:25px;
}
.b-bp-br-borderDarkViolet
{
border:solid 3px #4b1675;
}
.b-bp-br-rounded-2
{
border-radius:2px;
}
.b-bp-br-borderNone
{
border:solid 0px #000000;
}
.b-bp-br-borderPearColor
{
border:solid 4px #bec939;
}
.b-bp-s-innerShadow
{
box-shadow:inset 0px 0px 5px 5px #000000;
}
.b-bp-s-outerShadow
{
box-shadow:0px 0px 5px 7px #000000;
}
.b-bp-s-outerShadowDark
{
box-shadow:9px 10px 7px -1px #000000;
}
.b-bp-s-outerShadowLight
{
box-shadow:10px 10px 7px -3px #967979;
}
.b-bp-s-outerShadowLeftTop
{
box-shadow:-9px -8px 8px 3px #4d4b4b;
}
.b-bp-s-innerShadowLight
{
box-shadow:inset 0px 0px 11px 10px #c9b5b5;
}
.b-bp-s-shadowBottom
{
box-shadow:4px 14px 8px -6px #000000;
}
.b-bp-s-shadowTop
{
box-shadow:0px -11px 6px -4px #000000;
}
.b-bp-s-shadow-bottom-sm
{
box-shadow:0px 4px 3px -3px #000000;
}
.b-bp-b-orange
{
background:#ffc85b;
}
.b-bp-b-darkViolet
{
background:rgba(61,28,94,1);
}
.b-bp-b-transparent
{
background:rgba(0,0,0,0);
}
.b-bp-b-white
{
background:#ffffff;
}
.b-bp-b-black
{
background:#171614;
}
.b-bp-b-cyan
{
background:#69c4b9;
}
.b-bp-b-lightBlue
{
background:#b4e8ff;
}
.b-bp-b-green
{
background:#3fa889;
}
.b-bp-b-carmine
{
background:#ab3b3b;
}
.b-bp-b-beige
{
background:#fff3da;
}
.b-bp-b-apricot
{
background:#ffc041;
}
.b-bp-b-pearColor
{
background:#b6de84;
}
.b-bp-b-cyanandorange
{
background:-webkit-linear-gradient(left,#4DA0B0,#D39D38);
}
.b-bp-b-cyanLight
{
background:-o-linear-gradient(right,#4CA1AF,#C4E0E5);
}
.b-bp-b-blueandgreen
{
background:linear-gradient(#4a98bc, #57af75);
}
.b-bp-b-whiteandblack
{
background:linear-gradient(#eee, #333);
}
.b-tp-s-textShadowRight
{
text-shadow:5px 1px 4px #000000;
}
.b-tp-s-textShadowFull
{
text-shadow:2px 1px 8px #000000;
}
.b-tp-s-textShadowLeft
{
text-shadow:-4px 0px 0px #857b7b;
}
.b-tp-s-textShadowRightBottom
{
text-shadow:6px 5px 3px #000000;
}
.b-tp-s-textShadowClass
{
text-shadow:37px 31px 5px #000000;
}
.b-tp-s-textShadowLight
{
text-shadow:-4px 4px 4px #a6a4a4;
}
.b-tp-pm-mg-l-10
{
margin-left:10px;
}
.b-tp-pm-mg-r-10
{
margin-right:10px;
}
.b-tp-pm-mg-b-10
{
margin-bottom:10px;
}
.b-tp-pm-mg-t-10
{
margin-top:10px;
}
.b-tp-pm-pd-b-10
{
padding-bottom:10px;
}
.b-tp-pm-pd-t-10
{
padding-top:10px;
}
.b-tp-pm-pd-l-10
{
padding-left:10px;
}
.b-tp-pm-pd-r-10
{
padding-right:10px;
}
.b-tp-br-border-1-dotted
{
border:dotted 4px #000000;
}
.b-tp-br-border-1-t-dotted
{
border:dotted 1px #000000;
border-right:solid 0px ;
border-bottom:solid 0px #000000;
border-left:solid 0px #000000;
}
.b-tp-br-border-1-r-dotted
{
border-right:dotted 1px #171515;
}
.b-tp-br-border-1-b-dotted
{
border-bottom:dotted 1px #000000;
}
.b-tp-br-border-1-l-dotted
{
border-left:dotted 1px #000000;
}
.b-tp-br-borderDoubleRounded
{
border:double 7px #000000;
border-radius:5px;
}
.b-tp-b-textbgapricot
{
background:#ffd47e;
}
.b-tp-b-textbgdarkgrey
{
background:#666562;
}
.b-tp-b-textbgviolet
{
background:#43306b;
}
.b-tp-b-textbgblack
{
background:#0f0a00;
}
.b-tp-b-textbgcarmine
{
background:#991e1e;
}
.b-tp-b-textbgwhite
{
background:#ffffff;
}
.b-b-c-transparent
{
background:rgba(255,255,255,0);
}
.b-b-c-orangebg
{
background:#ffbf3e;
}
.b-b-c-carminebg
{
background:#bd2a2a;
}
.b-b-c-greenbg
{
background:#1ba36a;
}
.b-b-c-cyanbg
{
background:#41cfe3;
}
.b-b-c-yellowbg
{
background:#ecff11;
}
.b-b-g-grad-diff-colors
{
background:-o-linear-gradient(330deg, #e05252 0%, #99e052 25%, #52e0e0 50%, #9952e0 75%, #e05252 100%);
/* For Opera 11.1 to 12.0 */background:-moz-linear-gradient(330deg, #e05252 0%, #99e052 25%, #52e0e0 50%, #9952e0 75%, #e05252 100%);
/* For Firefox 3.6 to 15 */background:linear-gradient(330deg, #e05252 0%, #99e052 25%, #52e0e0 50%, #9952e0 75%, #e05252 100%);
}
.b-b-g-gradient-cyan-orange
{
background:linear-gradient(to right, #4DA0B0, #D39D38);
}
.b-b-g-gradient-cyan-light
{
background:#4CA1AF;
/* For browsers that do not support gradients */background:-webkit-linear-gradient(left,#4CA1AF,#C4E0E5);
/*Safari 5.1-6*/background:-o-linear-gradient(right,#4CA1AF,#C4E0E5);
/*Opera 11.1-12*/background:-moz-linear-gradient(right,#4CA1AF,#C4E0E5);
/*Fx 3.6-15*/background:linear-gradient(to right, #4CA1AF, #C4E0E5);
}
.b-b-g-gradient-blue-green
{
background:-o-linear-gradient(#4a98bc, #57af75);
/* For Opera 11.1 to 12.0 */background:-moz-linear-gradient(#4a98bc, #57af75);
/* For Firefox 3.6 to 15 */background:linear-gradient(#4a98bc, #57af75);
}
.b-b-g-gradient-black-white
{
background:-webkit-linear-gradient(#eee, #333);
/* For Safari 5.1 to 6.0 */background:-o-linear-gradient(#eee, #333);
/* For Opera 11.1 to 12.0 */background:-moz-linear-gradient(#eee, #333);
/* For Firefox 3.6 to 15 */background:linear-gradient(#eee, #333);
}
.b-b-g-gradientRedYellow
{
background:linear-gradient(-90deg, red, yellow);
}
.b-b-g-grad-blue-gr
{
background:linear-gradient(#bddff4, #fbf5eb);
}
.b-b-g-gradientViolet
{
background:linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(163,168,255,1) 100%);
background:-webkit-linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(163,168,255,1) 100%);
}
.b-b-g-gradientLightGreen
{
background:linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(166,255,216,1) 100%);
background:-webkit-linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(166,255,216,1) 100%);
}
.b-b-g-gradientLightPink
{
background:linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(255,227,227,1) 100%);
}
.s-bs-b-btnRounded
{
padding:14px 40px;
border:solid 2px #000000;
border-radius:25px;
}
.s-bs-b-orangeBtn
{
background:#ffc85b;
padding:14px 40px;
border-radius:5px;
border:dashed 2px #000000;
border-right:solid 2px ;
box-shadow:10px 10px 7px -3px #967979;
border-left:solid 2px #000000;
}
.s-bs-b-cyanBtn
{
background:#69c4b9;
border:solid 2px #000000;
padding:8px 32px;
box-shadow:9px 10px 7px -1px #000000;
border-radius:5px;
}
.s-bs-b-apricotBtn
{
padding:8px 32px;
border-radius:2px;
border:solid 0px #000000;
background:#ffc041;
}
.s-bs-b-nameofclass
{
background:rgba(61,28,94,1);
border:solid 0px #000000;
padding:8px 32px;
border-radius:5px 5px 0px 0px;
box-shadow:4px 14px 8px -6px #000000;
}
.s-bs-b-btnPearColor
{
padding:14px 40px;
border-right:solid 2px ;
border:solid 0px #000000;
border-bottom:solid 2px #000000;
background:#b6de84;
}
.s-bs-b-btnRdPear
{
background:#b6de84;
border:solid 0px #000000;
padding:8px 32px;
border-radius:5px;
}
.s-bs-b-btnBlueGreen
{
padding-right:5px;
margin:0;
padding:14px 40px;
box-shadow:inset 0px 0px 5px 5px #000000;
background:linear-gradient(#4a98bc, #57af75);
border:solid 0px #000000;
}
.s-bs-b-btnCyanLight
{
margin:0;
padding:14px 40px;
border:solid 5px #000000;
border-radius:5px;
background:-o-linear-gradient(right,#4CA1AF,#C4E0E5);
}
.s-bs-b-hoverBtnApricot
{
box-shadow:4px 14px 8px -6px #000000;
border:solid 2px #000000;
border-radius:25px;
background:#ffc041;
}
.s-bs-b-hoverBtnBlack
{
background:#171614;
border:solid 0px #000000;
border-right:solid 2px ;
border-radius:30px;
}
.s-bs-b-hoverBlueGreen
{
background:linear-gradient(#4a98bc, #57af75);
border-radius:5px;
border:solid 0px #000000;
box-shadow:9px 10px 7px -1px #000000;
}
.s-bs-b-hoverBrdPearColor
{
background:rgba(0,0,0,0);
border:solid 4px #bec939;
}
.s-bs-b-hoverBtnLightBlue
{
background:#b4e8ff;
border-radius:30px;
border:solid 2px #000000;
}
.s-bs-b-hoverBtnBlueOrange
{
background:-webkit-linear-gradient(left,#4DA0B0,#D39D38);
border:solid 5px #000000;
border-radius:5px;
box-shadow:0px 4px 3px -3px #000000;
border-bottom:solid 2px #000000;
}
.s-bs-b-selectedBtnWhite
{
border:solid 2px #000000;
border-radius:5px 5px 0px 0px;
box-shadow:4px 14px 8px -6px #000000;
background:#ffffff;
}
.s-bs-b-selectedWhiteBlack
{
background:linear-gradient(#eee, #333);
border-left:solid 2px #000000;
border-radius:2px;
border:solid 0px #000000;
box-shadow:4px 14px 8px -6px #000000;
}
.s-bs-b-selectedLightBlue
{
padding:8px 32px;
background:#b4e8ff;
border:solid 2px #000000;
border-radius:25px;
}
.s-bs-b-darkVioletBox
{
box-shadow:9px 10px 7px -1px #000000;
background:rgba(61,28,94,1);
}
.s-bs-b-btnSelectedCarmine
{
background:#ab3b3b;
border-radius:0px 5px 5px 0px;
border:solid 2px #000000;
border-bottom:solid 2px #000000;
margin-top:5px;
padding:8px 32px;
}
.s-bs-b-btnSelectedDarkCyan
{
background:-o-linear-gradient(right,#4CA1AF,#C4E0E5);
box-shadow:0px 4px 3px -3px #000000;
border-radius:30px;
}
.s-bs-g-myClass
{
margin:0 auto;
border:solid 0px #000000;
background:-o-linear-gradient(right,#4CA1AF,#C4E0E5);
box-shadow:9px 10px 7px -1px #000000;
}
.s-bs-g-generalGreenBox
{
background:#3fa889;
margin-left:5px;
border:solid 2px #000000;
box-shadow:inset 0px 0px 5px 5px #000000;
}
.s-bs-g-btnGeneralBeige
{
background:#fff3da;
border-radius:5px;
border:solid 2px #000000;
border-right:solid 0px ;
border-bottom:solid 0px #000000;
border-left:solid 0px #000000;
}
.s-ts-t-textStyle1
{
font-size:16px;
text-transform:uppercase;
font-family:Times New Roman;
text-shadow:6px 5px 3px #000000;
}
.s-ts-t-textRed
{
font-size:17px;
text-transform:uppercase;
color:#e32020;
}
.s-ts-t-white
{
font-size:17px;
font-weight:bold;
text-transform:lowercase;
color:#faf0f0;
}
.s-ts-t-textviolet
{
font-size:14px;
font-weight:bold;
font-style:italic;
line-height:11px;
text-transform:lowercase;
color:#6771c9;
}
.s-ts-t-textGrey
{
font-size:13px;
color:#4a4242;
font-weight:bold;
text-decoration:none;
}
.s-ts-t-textOverline
{
font-family:Verdana, Geneva, sans-serif;
font-size:22px;
text-decoration:overline;
letter-spacing:1px;
text-transform:lowercase;
}
.s-ts-t-textPear
{
font-family:Arial, Helvetica, sans-serif;
color:#bfaf21;
font-size:20px;
text-transform:none;
text-align:center;
line-height:13px;
}
.s-ts-t-textGreen
{
color:#28a644;
font-size:16px;
font-family:Tahoma, Geneva, sans-serif;
font-style:italic;
text-transform:uppercase;
letter-spacing:1px;
}
.s-ts-t-textGreen-1
{
color:#28a644;
font-size:16px;
font-family:Tahoma, Geneva, sans-serif;
font-style:italic;
text-transform:uppercase;
letter-spacing:1px;
}
.s-ts-t-textBlueViolet
{
color:#264596;
font-size:14px;
text-decoration:underline;
text-transform:lowercase;
letter-spacing:1px;
}
.s-ts-t-textLarge
{
font-size:22px;
text-transform:uppercase;
}
.s-ts-t-textSmall
{
font-size:10px;
}
.s-ts-t-textMedium
{
font-size:18px;
}
.s-ts-t-textCyan
{
font-family:Tahoma, Geneva, sans-serif;
font-size:18px;
font-weight:bold;
color:#69cbd1;
text-transform:lowercase;
text-align:center;
}
.s-ts-t-textOrange
{
font-family:Trebuchet MS, Helvetica, sans-serif;
font-size:18px;
color:#f58f45;
letter-spacing:0px;
}
.c-b-fb-flat-button
{
}
.c-b-fb-flat-button
{
} | 0.38943 | 0.194119 |
html {
width : 100%;
height : 100%;
font-size : 12px;
padding : 0;
margin : 0;
overflow: hidden;
}
body {
width : 100%;
height : 100%;
overflow : hidden;
background: #ECEFF1;
color: rgba(0,0,0,0.87);
font-family: Roboto, Helvetica, Arial, GpcssEmoji, sans-serif;
margin: 0;
padding: 0;
}
.inherited_body_range {
height : 100%;
}
.view_area {
height : 100%;
overflow : auto;
-webkit-overflow-scrolling: touch;
}
@media (max-width: 600px) {
body, #message {
margin-top: 0;
background: white;
box-shadow: none;
}
/*body {
border-top: 16px solid #FFFFFF;
}*/
}
.initial-footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
box-shadow: 3px;
}
input[type=text]:not(.browser-default):focus:not([readonly]) {
border-bottom: 1px solid #F44336 !important;
-webkit-box-shadow: 0 1px 0 0 #F44336;
box-shadow: 0 1px 0 0 #F44336;
background-color: #f5f5f5;
}
input[type=text]:not(.browser-default):focus:not([readonly]) + label {
color: #F44336;
}
.v-text-field__slot input[type=text] {
border : none !important;
}
.v-badge.v-badge--bottom.v-badge--overlap .v-badge__badge {
right : 5px;
bottom : 3px !important;
}
.btn:focus, .btn-large:focus, .btn-small:focus,
.btn-floating:focus {
background-color: #F44336;
}
.btn:hover, .btn-large:hover, .btn-small:hover {
background-color: #F44336;
}
a {
-webkit-tap-highlight-color: transparent;
text-decoration : none;
cursor : pointer;
}
td.righted {
text-align: right;
}
.toot_prof {
width : 32px;
height : 32px;
float : left;
}
.toot_prof_base {
width : 32px;
height : 32px;
}
.userrectangle {
border-radius: 15% !important;
}
span.badge {
width : 100%;
}
.VueCarousel-dot button {
width : 1rem;
height : 1rem;
box-shadow : 2px 2px 2px 2px rgba(0,0,0,0.5);
}
.collection .collection-item.avatar .userrectangle {
position: absolute;
width: 42px;
height: 42px;
overflow: hidden;
left: 15px;
display: inline-block;
vertical-align: middle;
}
.sidenav .user-view .userrectangle {
height: 64px;
width: 64px;
float : left;
margin-right : 2rem;
margin-top : 16px;
}
/*.notifmenu .userrectangle {
position: absolute;
width: 40px;
height: 40px;
overflow: hidden;
display: inline-block;
vertical-align: middle;
}*/
.userrectangle.basic40 {
width: 40px;
height: 40px;
}
.v-btn__content .v-icon.material-icons {
line-height : 100% !important;
height : 100%;
}
/* css class for vue.js */
[v-cloak] {
display: none;
}
/*====================================================
common style
=====================================================*/
.common_ui_off {
display: none !important;
}
.common_ui_hidden {
visibility: hidden;
}
.user-slideOutLeft {
transition : 1.5s;
transform: translateX(-100%);
display : none;
}
.user-slideOutBottom {
transition : 1.0s;
transform: translateY(-100%);
display : none;
}
.user-slideInBottom {
transition : 1.0s;
transform: translateY(0);
display : inline-block;
}
.waves-effect.waves-grey1 .waves-ripple {
background-color: rgba(158, 158, 158, 0.45);
}
label.button_spoiler {
display : inline-block;
/*background-color: #3b3b3b;
color : rgb(139, 139, 139);
width : 5rem;
text-align: center;
border-radius: 3px;
cursor : pointer;*/
}
label.button_spoiler:before {
content : "...";
background-color: #3b3b3b;
color : rgb(200,200,200);
width : 2rem;
text-align: center;
border-radius: 3px;
cursor : pointer;
display : inline-block
}
label.button_spoiler input {
display : none;
}
label.button_spoiler p.toote_main {
display : none;
}
label.button_spoiler input:checked ~ p.toote_main {
color : #000000;
text-align : left;
cursor : default;
transition : 1.0s;
transform: translateY(0);
display : inline-block;
font-size : 12px;
}
.btn-portrait {
height : 7rem;
}
.btn-tabbtn {
height : 48px !important;
line-height: 48px !important;
}
.btn-tabbtn.active {
border-bottom: 2px solid #f44336 !important;
transition: 0.3s;
}
.btn-tabbtn i.material-icons {
font-size : 2rem;
}
.btn-tabbtn-text {
line-height: 48px !important;
position : relative;
top : -0.5rem;
}
/* --- CSS class for Mastodon native style --- */
.ellipsis:after {
content : "..."
}
.invisible {
display : none;
}
.btn-floating.halfway-fab2 {
position : absolute;
left : 24px;
top : -16px;
}
.black-half {
background-color : rgba(0,0,0,0.5);
}
.collection .collection-item.avatar .secondary-content-ex {
position : absolute;
top : 0;
right : 0;
}
.userdivider_t {
border-top:1px solid #ABABAB;
}
.userdivider_b {
border-bottom:1px solid #ABABAB;
}
/*====================================================
initial UI
======================================================*/
#initialpanel {
height : 100%;
overflow-x : hidden;
overflow-y : auto;
-webkit-overflow-scrolling: touch;
}
#initialmainpanel {
height : 100%;
}
.title-panel {
position: absolute;
top: 0px;
width: 100vw;
background-color: rgba(0,0,0,0.2);
}
.initial-img-background {
width : 100%;
height : 100%;
object-fit : cover;
object-position: 40% 10%;
}
.initial-presentation-item {
height : 6rem;
}
.menu_onepanel {
height: 64px;
padding-left: 0;
padding-top: 0;
font-size : 1.2rem;
}
.eachtype_usertitle {
text-decoration-line: underline;
}
/*====================================================
top UI
=====================================================*/
#toppanel {
position : absolute;
top : 0px;
left : 0px;
width:100%;
height:calc(100%);
z-index : 10;
}
#mainpanel {
height: calc(100% - 64px);
margin-top: calc(64px - 64px);
}
.brand-title {
font-size : 2.1rem;
font-family: 'Montserrat', sans-serif;
}
.initial-brand-title {
font-size : 4.2rem;
font-family: 'Montserrat', sans-serif;
}
.general-title {
font-size : 1.4rem;
}
.brand-image {
float: left;
}
input.navsearch {
height: 50px !important;
line-height: 50px !important;
border-radius: 0.5rem;
margin-top : 5px;
}
div.collection a span {
font-size : 20px;
color : rgba(0,0,0,0.87);
}
div.collection a i.material-icons {
color: rgba(0,0,0,0.87);
}
.maincol_button {
overflow: hidden;
height: 5rem;
padding : 1.5rem 0 !important;
border: 0 !important;
}
.maincol_menu {
overflow : hidden;
height : 4rem;
background-color: transparent !important;
border: 0 !important;
}
.cursel-accountbox {
height : 64px;
}
.whole-notification {
position: absolute;
top: 1.5rem;
right: 1.5rem;
}
.nav_notif_iconarea .v-btn__content {
height : 40px;
}
#cursel_avatar {
margin-left: 0.5rem;
}
#cursel_display_name {
margin-left : 2rem;
margin-top : 1rem;
}
.modal-avatar-title {
font-size : 20px;
margin-top : 1.2rem;
}
.menulst_tile {
padding-left : 0.5rem;
}
#cur_sel_account .v-list .v-list__tile {
padding-left : 0.5rem;
}
@media only screen and (min-width: 1100px) {
.menulst_tile {
padding-left : 1rem;
}
#cur_sel_account .v-list .v-list__tile {
padding-left : 1rem;
}
}
@media only screen and (min-width: 1290px) {
.menulst_tile {
padding-left : 1.5rem;
}
#cur_sel_account .v-list .v-list__tile {
padding-left : 1.5rem;
}
}
.menulst_row {
font-weight: 400;
font-family: 'Montserrat', sans-serif;
}
.maincol_menu.active *, .menulst_row.active * {
color : red !important;
}
.menu_sub {
text-indent : 1.5rem;
}
#ov_notif {
position : fixed;
top : 0;
left : 0;
width : 100vw;
height : 100vh;
z-index : 988;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
#ov_notif_overlay {
position : fixed;
top : 0;
left : 0;
width : 99%;
height : 100%;
background-color: rgba(0, 0, 0, 0.0);
z-index : 987;
}
.notifmenu {
position : absolute;
/*top : 0px;
left : 0px;
height : 300px;*/
width : 100%;
min-height : 52px;
height : 500px;
overflow : hidden;
z-index : 989;
}
@media only screen and (min-width: 601px) {
.notifmenu {
position : absolute;
/*top : 0px;
left : 0px;
height : 300px;*/
width : 480px;
min-height : 52px;
height : 500px;
overflow : hidden;
z-index : 989;
}
}
.notifmenu .vwinsizing {
width : 100%;
height : calc(100% - 52px);
/*overflow-y : auto;*/
}
.notifmenu .v-window__container {
width : 100%;
height : 100%;
}
.notifmenu .notiflist_card {
overflow-x : hidden;
/*overflow-y : auto;*/
-webkit-overflow-scrolling: touch;
width : 100%;
height:calc(500px - 52px);
}
.notif_avatar_mark {
position: absolute;
top: -10px;
left: -10px;
width : 20px !important;
height : 20px !important;
}
.mobile-search .v-input__slot:after {
width : 0px !important;
}
.mobile-search .v-text-field > .v-input__control > .v-input__slot:before {
border : none;
}
/*--------- not use ------------------------
div.post_card_grid {
display : grid;
gap: 15px;
grid-template-rows: minmax(3rem,auto);
grid-auto-flow: dense;
grid-auto-rows : minmax(3rem,auto);
width : 100%;
}
div.post_card_grid_cellsetting {
grid-template-columns: 100%;
}
div.post_card_base {
break-inside: avoid;
page-break-inside: avoid;
-webkit-column-break-inside: avoid;
margin-top: 3%;
border-radius: 3px;
}
div.card.card_subgrid {
display : grid;
grid-template-columns: 60% 40%;
}
div.post_card_top {
grid-column : 1;
grid-row : 1 / span 3;
height: 10rem;
}
div.post_card_flow {
grid-column: span 1;
}
div.post_card_flow.g2 {
grid-row-end: span 2;
}
div.post_card_flow.g4 {
grid-row-end: span 4;
}
div.post_card_flow.g6 {
grid-row-end: span 6;
}
div.post_card_flow.g8 {
grid-row-end: span 8;
}
div.post_card_flow.g10 {
grid-row-end: span 10;
}
div.post_card_flow.g12 {
grid-row-end: span 12;
}
div.post_card_flow.g14 {
grid-row-end: span 14;
}
div.post_card_flow.g16 {
grid-row-end: span 16;
}
div.post_card_flow.g18 {
grid-row-end: span 18;
}
div.post_card_flow.g20 {
grid-row-end: span 20;
}
div.post_card_flow.g22 {
grid-row-end: span 22;
}
div.post_card_flow.g24 {
grid-row-end: span 24;
}
div.post_card_flow.g26 {
grid-row-end: span 26;
}
div.post_card_flow.g28 {
grid-row-end: span 28;
}
div.post_card_flow.g30 {
grid-row-end: span 30;
}
@media only screen and (min-width: 601px) {
div.post_card_grid_cellsetting {
grid-template-columns: 45% 45%;
}
}
@media only screen and (min-width: 993px) {
div.post_card_grid_cellsetting {
grid-template-columns: 45% 45%;
}
}
@media only screen and (min-width: 1350px) {
div.post_card_grid_cellsetting {
grid-template-columns: 31% 31% 31%;
}
}
*/
div.post_card_above2 {
grid-column : auto;
grid-row : 4 / 6;
}
.card .card-content-ex {
height: calc(100% - 6rem);
max-height: 600px;
display : grid;
grid-template-columns: 3fr;
grid-auto-rows: 3rem;
}
.card .card-content p {
padding : 1rem;
/*height : calc(100% - 3rem);
overflow : auto;*/
}
.card .card-title2 {
font-size: 1.5rem;
font-weight: 300;
display : inline-block;
width : 100%;
/* ---grid in content, cell(1,1, 1,2) ---*/
grid-column: 1 / span 2;
grid-row: 1;
}
.card .card-subtitle {
font-size : 1rem;
width : 100%;
}
.card-content .card-datetime {
float : right;
/* ---grid in content, cell(1,3) ---*/
grid-column : 3;
grid-row : 1;
}
.card-content .chip_box {
height : 32px;
width : 100%;
/* ---grid in content, cell(2,1, 2,3) ---*/
grid-column: 1 / span 3;
grid-row: 2;
}
.card-content .chip_box i {
float: left;
}
.card-content .chip_box span {
display : inline-block;
margin-top : 0.5rem;
}
.card .card-content-body {
/* ---grid in content, cell(3,1, 3,3) ---*/
grid-column: 1 / span 3;
grid-row-start: 3;
grid-row-end : span 4;
height : 15rem;
max-height : 17rem;
overflow: auto;
}
.card-content-body.sizing-min {
grid-row-end : span 1;
height : 10rem;
max-height : 15rem;
}
.card-content-body.sizing-mid {
grid-row-end : span 2;
height : 12rem;
max-height : 15rem;
}
.card-content-body.sizing-max {
grid-row-end : span 4;
height : 15rem;
max-height : 17rem;
}
/* .carousel .carousel-item */
/*
.carousel .carousel-item .sensitive-image-text {
position: relative;
bottom : 6.4rem;
color : black;
z-index : 10;
}
.carousel .carousel-item img.landscape, .modal-content img.landscape,
.carousel .carousel-item video.landscape, .modal-content video.landscape {
width : 100%;
height : auto;
margin : auto;
z-index : 9;
position : relative;
}
.carousel .carousel-item img.portrait, .modal-content img.portrait,
.carousel .carousel-item video.portrait, .modal-content video.portrait {
width : auto;
height : 100%;
margin : auto;
z-index : 9;
position : relative;
}
.carousel-item .image-popup-btn {
position : absolute;
top : 1rem;
right : 1rem;
color : #BABABA;
text-shadow: 2px 2px 2px #696969;
z-index : 10;
}
*/
#ov_image {
width : -moz-fit-content;
height : -moz-fit-content;
width : fit-content;
height : fit-content;
max-width : 92%;
max-height : 92%;
background-color: transparent;
overflow: hidden;
}
#ov_image .modal-content {
width : -moz-fit-content;
height : -moz-fit-content;
width : fit-content;
height : fit-content;
padding : 0;
margin : auto;
}
#ov_image .modal-content img {
width : 100%;
max-height: 100%;
}
/*
.card .card-action.card-action-ex {
height : 6rem;
position : relative;
}
*/
.card.fitcontent {
/*height : -moz-fit-content;
height : fit-content;*/
height : auto;
}
.inputcontent_div {
background-color: #FFFFFF;
font-size : 1.2rem;
color : #000000;
overflow : auto;
width : 90%;
height : calc(1.5rem * 3);
border : 0.1rem solid #C7C7C7;
margin-bottom : 0.5rem;
-webkit-overflow-scrolling: touch;
}
.onetoote_cardtitle {
height : 40px !important;
padding : 4px;
flex: 0 0 auto !important;
}
.onetoote_cardtext {
padding: 0;
overflow-x: hidden;
}
.onetoote_screen {
position : fixed;
top : 0;
left : 0;
width : 100vw;
height : 100vh;
z-index : 999;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.onetoote_overlay {
position : fixed;
top : 0;
left : 0;
width : 99%;
height : 100%;
background-color: rgba(0, 0, 0, 0.45);
z-index : 998;
}
.onetoote_area {
position : relative;
top : 0;
left : 0;
z-index: 1000;
/*margin : 0 15%;
overflow: auto;*/
background-color: transparent;
margin-left : auto;
margin-right : auto;
}
.onetoote_area.sizing {
width : 100%;
height: 90%;
/*padding-left : 0;
padding-right : 0;
padding-bottom : 10%;*/
overflow : auto;
-webkit-overflow-scrolling: touch;
}
.carousel.fullsize {
min-height: 400px;
}
@media only screen and (min-width: 601px) {
.onetoote_area.sizing {
width : 80%;
height: 90%;
/*padding-left : 0;
padding-right : 0;
padding-bottom : 10%;*/
overflow : unset;
-webkit-overflow-scrolling: touch;
}
.carousel.fullsize {
min-height: 500px;
}
}
@media only screen and (min-width: 993px) {
.onetoote_area.sizing {
width : 70%;
height: 100%;
/*padding-left : 15%;
padding-right : 15%;
padding-bottom : 10%;*/
overflow : unset;
-webkit-overflow-scrolling: touch;
}
.carousel.fullsize {
min-height: 600px;
}
}
@media only screen and (min-width: 1350px) {
.onetoote_area.sizing {
width : 70%;
height: 100%;
/*padding-left : 15%;
padding-right : 15%;
padding-bottom : 10%;*/
overflow : unset;
-webkit-overflow-scrolling: touch;
}
.carousel.fullsize {
min-height: 600px;
}
}
/*====================================================
sidebar UI
=====================================================*/
#li_userview {
width : 100%;
height : 30%;
}
#li_userview .user-view {
width : 100%;
height : 100%;
}
.sidenav .brand-title {
font-family: 'Montserrat', sans-serif;
font-size : 4.2rem;
}
/*====================================================
accounts UI
=====================================================*/
div.accounts_body {
height : 100%;
width : 100%;
}
div.area_acc {
height: calc(100% - 69px);
overflow: auto;
-webkit-overflow-scrolling: touch;
}
/* seach form for accounts and instances */
div.search-box {
margin-top : 1rem !important;
padding : 1rem;
width : 100%;
}
/*====================================================
account detail UI
=====================================================*/
div.account_body {
height : 100%;
width : 100%;
overflow-x : hidden;
overflow-y : auto;
-webkit-overflow-scrolling: touch;
}
div.account_body .user-view {
position: relative;
padding: 0;
margin-bottom: 0;
width : 100%;
height : 500px;
}
@media only screen and (min-width: 601px) {
div.account_body .user-view {
position: relative;
padding: 0;
margin-bottom: 0;
width : 100%;
height : 450px;
}
}
div.account_body .user-view > a {
height: auto;
padding: 0;
}
div.account_body .user-tabs {
height : auto; /*68%;*/
}
.user-tabs .tabbar {
position: -webkit-sticky;
position : sticky;
top : 0px;
z-index: 20;
}
.user-tabs .tabcontent {
width : 100%;
height : 100%;
}
div.account_body .user-view > a:hover {
background-color: transparent;
}
div.account_body .user-view .background {
overflow: hidden;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
width : 100%;
height : -moz-fit-content;
height: fit-content;
/*height : 120px;*/
}
div.account_body .user-view .background img {
width : 100%;
height : 100%;
object-fit : cover;
object-position: 50% 25%;
}
div.account_body .user-view .user-textinfo {
position : absolute;
top : 0;
left : 0;
width : 100%;
background-color: rgba(0,0,0,0.2);
border-radius: 0 0 0.5rem 0.5rem;
/*box-shadow : 1px 1px 1px rgba(0,0,0,0.5);*/
padding : 1rem;
}
div.account_body .user-view .circle,div.account_body .user-view .name,div.account_body .user-view .email {
display: block;
}
div.account_body .user-view .circle {
height: 64px;
width: 64px;
float : left;
margin-right : 2rem;
margin-top : 16px;
}
div.account_body .user-view .userrectangle {
height: 64px;
width: 64px;
float : left;
margin-right : 2rem;
margin-top : 16px;
}
div.account_body .user-view .name,
div.account_body .user-view .email {
font-size: 24px;
line-height: 32px;
text-shadow: 1px 1px 1px #000000;
}
div.account_body .user-view .name {
margin-top: 16px;
font-weight: 500;
}
div.account_body .user-view .email {
padding-bottom: 16px;
font-weight: 400;
}
.user-action-btns {
width : -moz-fit-content;
width: fit-content;
background-color: rgba(0,0,0, 0.2);
text-shadow : 1px 1px 1px #000000;
padding: 1rem 1rem 3rem 1rem;
border-radius: 0.25rem;
}
.user-action-btns ul {
text-shadow : none;
}
.user-action-btns.col1 {
position: absolute;
bottom: 2rem;
left: 2%;
height: 40px;
width: 12.5rem;
}
.user-action-btns.col2 {
position: absolute;
bottom: 6rem;
left: 2%;
color : white;
height: 40px;
}
.user-action-btns.col3 {
position: absolute;
bottom: 3rem;
right : 2%;
width : 6rem;
height: 21rem;
}
.user-action-btns.col4 {
position: absolute;
bottom: 2rem;
right : 2%;
width : 6rem;
height: 6rem;
}
.user-action-btns.col_ac1 {
position: absolute;
bottom: 2rem;
left: 2%;
height: 64px;
}
.user-action-btns.inaccurate {
position: absolute;
top : 130px;
color : white;
height: 40px;
}
div.account_body .tabs .tab a {
color : #F44336 !important;
}
div.account_body .tabs li.indicator {
background-color : #F44336 !important;
}
div.user_fieldtext {
font-size : 2rem;
}
.userdialog {
position : absolute;
top : 0px;
left : 0px;
/*height : 300px;*/
overflow : hidden;
z-index : 1050;
}
.userdialog.sizing {
width : 100%;
}
@media only screen and (min-width: 601px) {
.userdialog.sizing {
width : 100%;
}
}
@media only screen and (min-width: 993px) {
.userdialog.sizing {
width : 320px;
}
}
@media only screen and (min-width: 1350px) {
.userdialog.sizing {
width : 320px;
}
}
.userdialog .card {
height: 100%;
margin-bottom : 0;
}
.userdialog .card .card-image {
height : 10rem;
}
.userdialog .card .card-image .background {
overflow : hidden;
height : 100%;
width : 100%;
}
.userdialog .card .card-image .background img {
width : 100%;
height : 100%;
object-fit : cover;
object-position : 34% 34%;
}
.userdialog .card .card-content p {
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.userdialog .card .card-account-stats {
margin-bottom : 0;
}
.poup-stat-number {
font-weight: bold;
font-size : 1.5rem;
}
/*====================================================
connection list UI
=====================================================*/
.connections_body {
width : 100%;
height : 100%;
}
.connections_body .row {
height: 100%;
}
.connections_body .tab-content {
height: calc(100% - 48px);
overflow : auto;
-webkit-overflow-scrolling: touch;
}
.user-grid {
display: grid;
gap: 10px;
height: 100%;
}
.user-grid.sizing {
grid-template-columns: 100%;
}
@media only screen and (min-width: 601px) {
.user-grid.sizing {
grid-template-columns: 45% 45%;
}
}
@media only screen and (min-width: 993px) {
.user-grid.sizing {
grid-template-columns: 31% 31% 31%;
}
}
@media only screen and (min-width: 1350px) {
.user-grid.sizing {
grid-template-columns: 25% 25% 25% 25%;
}
}
.user-grid-item {
height : 36rem;
}
.user-grid-item .card {
height: 100%;
}
.user-grid-item .card .card-image {
height : 10rem;
}
.user-grid-item .card .card-image .background {
overflow : hidden;
height : 100%;
width : 100%;
}
.user-grid-item .card .card-image .background img {
width : 100%;
height : 100%;
object-fit : cover;
object-position : 34% 34%;
}
.user-grid-item .card .card-content {
height : 10rem;
overflow: hidden;
}
.user-grid-item .card .card-content p {
display: block;
white-space: pre-wrap;
overflow: hidden;
text-overflow: ellipsis;
height: 100%;
}
.user-grid-item .card .card-account-stats {
margin-left : 0;
margin-bottom : 0;
height : 6rem;
width : 100%;
position : absolute;
/*bottom : 6rem;*/
}
.user-grid-item .card .card-action {
position : absolute;
bottom : 0;
height: 5rem;
}
/*====================================================
instance list UI
=====================================================*/
div.instances_body {
height : 100%;
width : 100%;
overflow-x : hidden;
overflow-y : auto;
}
div.instances_body .chip_box {
width : 100%;
height : 10rem;
overflow : auto;
-webkit-overflow-scrolling: touch;
/*border : 3px inset white;*/
padding : 0.5rem;
}
div.instances_body .chip {
cursor : pointer;
}
.share-color-replyparent {
background-color: #FF8A80;
color : #132101;
}
.share-color-public {
background-color: #FFFFFF;
}
.share-color-unlisted {
background-color: rgb(30, 120, 255);
color : #FFFFFF;
}
.share-color-private {
background-color: rgb(197, 171, 26);
color : #FFFFFF;
}
.share-color-boosted {
background-color: rgb(197, 26, 26);
color : #FFFFFF;
}
.search-panel {
width : 100%;
padding-left : 1rem;
}
.search-result {
width : 100%;
padding : 1rem;
}
.search-detail {
width : 100%;
/*display : grid;
gap : 1rem;
grid-auto-rows : 100px;*/
}
.search-detail.sizing {
grid-template-columns: 100%;
}
.search-detail .instance-main {
grid-column: 1 / span 2;
grid-row: 1 / span 2;
}
.search-detail .contact-account {
grid-column: span 1;
grid-row: 3 / span 5;
}
.search-detail .instance-desc {
grid-column: 1;
grid-row: auto;
}
@media only screen and (min-width: 601px) {
.search-detail.sizing {
grid-template-columns: 45% 45%;
}
.search-detail .contact-account {
grid-column: span 1;
grid-row: span 2;
}
.search-detail .instance-desc {
grid-column: span 1;
grid-row: 3;
}
}
@media only screen and (min-width: 993px) {
.search-detail.sizing {
grid-template-columns: 31% 31% 31%;
}
.search-detail .contact-account {
grid-column: span 1;
grid-row: span 2;
}
.search-detail .instance-desc {
grid-column: span 2;
grid-row: 3;
}
}
@media only screen and (min-width: 1350px) {
.search-detail.sizing {
grid-template-columns: 31% 31% 31%;
}
.search-detail .contact-account {
grid-column: span 1;
grid-row: span 2;
}
.search-detail .instance-desc {
grid-column: span 2;
grid-row: 3;
}
}
.search-detail .instance-desc > div {
padding : 1rem;
}
div.instances_body .chip:focus,div.instances_body .chip:active {
outline : none;
color : #FFFFFF;
background-color : #F44336;
}
.card .card-account-administrator {
position: absolute;
z-index: 1;
margin-top: 0.5rem;
margin-left: 0.5rem;
color: white;
text-shadow: 2px 2px 2px #232323;
}
.card .card-account-info {
position : relative;
}
.card .card-account-info span, .card .card-account-info i {
position : relative;
left : calc(24px + 40px) ;
display : inline-block;
width : calc(100% - 24px - 40px);
word-break: keep-all;
}
.card-account-info span {
font-size : 20px;
}
.card-account-info b {
font-size : 16px;
}
.card .card-account-content {
position:relative;
}
.card .card-content.instance-content {
padding : 1rem;
position : relative;
}
.card .card-content.instance-content .card-subdatetime {
position : absolute;
right : 1rem;
}
.card .card-content.instance-content .card-instance-rank {
font-size : 20px;
color: #ffa100;
}
.card .card-content.card-account-content {
padding : 1rem;
}
div.instances_body .card .card-content.card-account-content p {
padding : 0.25rem;
overflow : hidden;
}
/*====================================================
input toot UI
=====================================================*/
.dmy_inputtoot {
position: relative;
overflow : hidden;
}
.scroll-y {
overflow-x : hidden;
overflow-y : auto;
-webkit-overflow-scrolling: touch;
}
.dmy_inputtoot div.v-dialog--fullscreen {
background-color : rgb(194, 82, 82);
}
.v-toolbar .v-btn.input-toot-textbtn .v-btn__content {
height : 36px;
line-height : 36px;
}
.dmy_inputtoot .v-toolbar .v-btn .v-btn__content .v-icon {
height : 24px;
line-height : 24px;
}
.dmy_inputtoot .v-select__selectionsx {
min-height : 48px !important;
padding-top : 6px !important;
}
.dmy_inputtoot .v-select__selections input[type='text'],
.toot_comment .v-select__selections input[type='text'],
.setting_body .v-select__selections input[type='text']
{
border : none;
}
.onetoot_inputcontent, .dmy_inputtoot .onetoot_inputcontent {
background-color: rgb(241, 241, 241);
font-size : 1.4rem;
color : #000000;
overflow : auto;
-webkit-overflow-scrolling: touch;
width : 99%;
height : calc(1.7rem * 6);
border-bottom : 0.1rem solid #C7C7C7;
margin-bottom : 0.5rem;
outline : none;
}
.template_reply_box .onetoot_inputcontent {
background-color: rgb(241, 241, 241);
font-size : 1.4rem;
color : #000000;
overflow : auto;
-webkit-overflow-scrolling: touch;
width : 99%;
height : calc(1.7rem * 3);
/*border-bottom : 0.1rem solid #C7C7C7;*/
margin-bottom : 0.5rem;
outline : none;
}
.onetoot_inputcontent, .dmy_inputtoot:focus .onetoot_inputcontent, .template_reply_box .onetoot_inputcontent:focus {
border-bottom : 0.1rem solid #FF3434;
}
.onetoot_inputcontent p, .dmy_inputtoot .onetoot_inputcontent p, .template_reply_box .onetoot_inputcontent p, .editor-realparts p {
margin-bottom : 1px !important;
}
.toottext_length {
display:inline-block;
position: absolute;
bottom:2.2rem;
right:2rem;
font-weight: bold;
}
.dmy_inputtoot .v-text-field__slot textarea {
height : auto;
}
.dmy_inputtoot .media_commentbox {
width : 10rem;
border-bottom : 1px solid grey;
}
div.dragover_indicate {
border : 2px dashed #858585;
background-color : rgb(107, 142, 207);
}
.dmy_inputtoot .contentbottomstyle, .dmy_inputtoot .headerbottomstyle {
position: relative;
top : -2rem;
}
.headerbottomstyle .v-autocomplete .v-input__slot {
box-shadow : 0 0 0 0 rgba(0,0,0,0) !important;
}
#mention_box {
border-bottom: 2px solid rgba(0,0,0, 0.42);
}
.dmy_inputtoot .tagbottomstyle1 {
position: relative;
top : -3rem;
}
.dmy_inputtoot .tagbottomstyle2 {
position: relative;
top : -0.5rem;
}
.dmy_inputtoot .mediabottomstyle {
position: relative;
/*top : -4rem;*/
}
.list_summary {
font-size: 1.8rem;
cursor : pointer;
}
.list_summary2 {
cursor : pointer;
}
.emoji-view {
}
#chararea {
width:100%;
height:10rem;
overflow:auto;
-webkit-overflow-scrolling: touch;
border:2px inset black;
margin-top:0.2em;
}
.charbutton-normal {
font-size : 2.0rem;
width : 4.2rem;
border : 0 solid black;
border-radius : 0;
background-color : #454545;
color : #FFFFFF;
}
.charbutton-small {
font-size : 2.1rem;
width : 3.4rem;
border : 0 solid black;
border-radius : 0;
background-color : #454545;
color : #FFFFFF;
}
.nologin_layout {
width : 320px;
height : 190px;
}
/*====================================================
notification UI
=====================================================*/
.notifcation_body {
width : 100%;
height : 100%;
}
.notification-view {
height : 100%;
}
.notification-tabitems {
height : calc(100% - 48px);
}
.notification-tabitems > div {
height : 100%;
}
.notification-tabbody {
height : 100%;
overflow : auto;
-webkit-overflow-scrolling: touch;
}
.notification-tabbody > div {
height: 100%;
}
/*====================================================
search UI
=====================================================*/
.search_body {
width : 100%;
height : 100%;
}
.search_body .row {
height: 100%;
}
.search_body .tab-content {
height: calc(100% - 48px);
overflow : auto;
-webkit-overflow-scrolling: touch;
}
.v-text-field__slot textarea {
height : auto !important;
}
/*====================================================
setting UI
=====================================================*/
div.setting_body {
height : 100%;
overflow-x : hidden;
overflow-y : auto;
-webkit-overflow-scrolling: touch;
}
/*====================================================
direct message UI
=====================================================*/
.dmsg_body {
width : 100%;
height : 100%;
}
.dmsg_body .v-window {
height : 100%;
}
.dmsg_body .v-window .v-window__container {
height : 100%;
}
.dmsg_body .v-window__container .v-window-item {
height : 100%;
}
.dmsg_body .v-window-item .layout {
height : 100%;
}
.dmsg_body .v-window-item .layout .flex {
height : 100%;
}
.dmsg_body .v-card {
height : 100%;
}
.dmsg_body .v-timeline {
height : 100%;
}
.dmsg_body .timeline_cardlist {
height : calc(100% - 96px);
overflow-x : hidden;
overflow-y : auto;
-webkit-overflow-scrolling: touch;
}
.dmsg_body .timeline_cardlist_mobile {
height : calc(100% - 56px - 96px);
overflow-x : hidden;
overflow-y : auto;
-webkit-overflow-scrolling: touch;
}
.dmsg_body .timeline_cardaction {
height : 96px;
box-shadow: 1px -2px 4px 0 grey;
}
.dmsg_messageframe {
border:1px solid rgba(0,0,0,0.2);
border-radius: 5px;
padding : 3px
}
/*====================================================
archiver main UI
=====================================================*/
.archmain_body {
width : 100%;
height : 100%;
overflow : auto;
-webkit-overflow-scrolling: touch;
}
.archmain_body .xtab-content {
height: calc(100% - 48px);
overflow-x : hidden;
overflow-y : auto;
-webkit-overflow-scrolling: touch;
}
div.beforedrag_indicate {
border : 2px dashed #F53535;
background-color : white;
}
select.filter-box {
border-bottom: 1px solid grey;
border-radius: 5px;
font-size: 1.5rem;
}
.panel-archive-helpbox {
max-height: 300px;
overflow: auto;
padding-right: 0.5rem;
}
.loaded-filelist {
height : 100%;
overflow: auto;
}
#arch_importlog {
width : 100%;
height : 10rem;
border : 1px solid grey;
font-size : 1.5rem;
overflow: auto;
} | static/css/index.css | html {
width : 100%;
height : 100%;
font-size : 12px;
padding : 0;
margin : 0;
overflow: hidden;
}
body {
width : 100%;
height : 100%;
overflow : hidden;
background: #ECEFF1;
color: rgba(0,0,0,0.87);
font-family: Roboto, Helvetica, Arial, GpcssEmoji, sans-serif;
margin: 0;
padding: 0;
}
.inherited_body_range {
height : 100%;
}
.view_area {
height : 100%;
overflow : auto;
-webkit-overflow-scrolling: touch;
}
@media (max-width: 600px) {
body, #message {
margin-top: 0;
background: white;
box-shadow: none;
}
/*body {
border-top: 16px solid #FFFFFF;
}*/
}
.initial-footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
box-shadow: 3px;
}
input[type=text]:not(.browser-default):focus:not([readonly]) {
border-bottom: 1px solid #F44336 !important;
-webkit-box-shadow: 0 1px 0 0 #F44336;
box-shadow: 0 1px 0 0 #F44336;
background-color: #f5f5f5;
}
input[type=text]:not(.browser-default):focus:not([readonly]) + label {
color: #F44336;
}
.v-text-field__slot input[type=text] {
border : none !important;
}
.v-badge.v-badge--bottom.v-badge--overlap .v-badge__badge {
right : 5px;
bottom : 3px !important;
}
.btn:focus, .btn-large:focus, .btn-small:focus,
.btn-floating:focus {
background-color: #F44336;
}
.btn:hover, .btn-large:hover, .btn-small:hover {
background-color: #F44336;
}
a {
-webkit-tap-highlight-color: transparent;
text-decoration : none;
cursor : pointer;
}
td.righted {
text-align: right;
}
.toot_prof {
width : 32px;
height : 32px;
float : left;
}
.toot_prof_base {
width : 32px;
height : 32px;
}
.userrectangle {
border-radius: 15% !important;
}
span.badge {
width : 100%;
}
.VueCarousel-dot button {
width : 1rem;
height : 1rem;
box-shadow : 2px 2px 2px 2px rgba(0,0,0,0.5);
}
.collection .collection-item.avatar .userrectangle {
position: absolute;
width: 42px;
height: 42px;
overflow: hidden;
left: 15px;
display: inline-block;
vertical-align: middle;
}
.sidenav .user-view .userrectangle {
height: 64px;
width: 64px;
float : left;
margin-right : 2rem;
margin-top : 16px;
}
/*.notifmenu .userrectangle {
position: absolute;
width: 40px;
height: 40px;
overflow: hidden;
display: inline-block;
vertical-align: middle;
}*/
.userrectangle.basic40 {
width: 40px;
height: 40px;
}
.v-btn__content .v-icon.material-icons {
line-height : 100% !important;
height : 100%;
}
/* css class for vue.js */
[v-cloak] {
display: none;
}
/*====================================================
common style
=====================================================*/
.common_ui_off {
display: none !important;
}
.common_ui_hidden {
visibility: hidden;
}
.user-slideOutLeft {
transition : 1.5s;
transform: translateX(-100%);
display : none;
}
.user-slideOutBottom {
transition : 1.0s;
transform: translateY(-100%);
display : none;
}
.user-slideInBottom {
transition : 1.0s;
transform: translateY(0);
display : inline-block;
}
.waves-effect.waves-grey1 .waves-ripple {
background-color: rgba(158, 158, 158, 0.45);
}
label.button_spoiler {
display : inline-block;
/*background-color: #3b3b3b;
color : rgb(139, 139, 139);
width : 5rem;
text-align: center;
border-radius: 3px;
cursor : pointer;*/
}
label.button_spoiler:before {
content : "...";
background-color: #3b3b3b;
color : rgb(200,200,200);
width : 2rem;
text-align: center;
border-radius: 3px;
cursor : pointer;
display : inline-block
}
label.button_spoiler input {
display : none;
}
label.button_spoiler p.toote_main {
display : none;
}
label.button_spoiler input:checked ~ p.toote_main {
color : #000000;
text-align : left;
cursor : default;
transition : 1.0s;
transform: translateY(0);
display : inline-block;
font-size : 12px;
}
.btn-portrait {
height : 7rem;
}
.btn-tabbtn {
height : 48px !important;
line-height: 48px !important;
}
.btn-tabbtn.active {
border-bottom: 2px solid #f44336 !important;
transition: 0.3s;
}
.btn-tabbtn i.material-icons {
font-size : 2rem;
}
.btn-tabbtn-text {
line-height: 48px !important;
position : relative;
top : -0.5rem;
}
/* --- CSS class for Mastodon native style --- */
.ellipsis:after {
content : "..."
}
.invisible {
display : none;
}
.btn-floating.halfway-fab2 {
position : absolute;
left : 24px;
top : -16px;
}
.black-half {
background-color : rgba(0,0,0,0.5);
}
.collection .collection-item.avatar .secondary-content-ex {
position : absolute;
top : 0;
right : 0;
}
.userdivider_t {
border-top:1px solid #ABABAB;
}
.userdivider_b {
border-bottom:1px solid #ABABAB;
}
/*====================================================
initial UI
======================================================*/
#initialpanel {
height : 100%;
overflow-x : hidden;
overflow-y : auto;
-webkit-overflow-scrolling: touch;
}
#initialmainpanel {
height : 100%;
}
.title-panel {
position: absolute;
top: 0px;
width: 100vw;
background-color: rgba(0,0,0,0.2);
}
.initial-img-background {
width : 100%;
height : 100%;
object-fit : cover;
object-position: 40% 10%;
}
.initial-presentation-item {
height : 6rem;
}
.menu_onepanel {
height: 64px;
padding-left: 0;
padding-top: 0;
font-size : 1.2rem;
}
.eachtype_usertitle {
text-decoration-line: underline;
}
/*====================================================
top UI
=====================================================*/
#toppanel {
position : absolute;
top : 0px;
left : 0px;
width:100%;
height:calc(100%);
z-index : 10;
}
#mainpanel {
height: calc(100% - 64px);
margin-top: calc(64px - 64px);
}
.brand-title {
font-size : 2.1rem;
font-family: 'Montserrat', sans-serif;
}
.initial-brand-title {
font-size : 4.2rem;
font-family: 'Montserrat', sans-serif;
}
.general-title {
font-size : 1.4rem;
}
.brand-image {
float: left;
}
input.navsearch {
height: 50px !important;
line-height: 50px !important;
border-radius: 0.5rem;
margin-top : 5px;
}
div.collection a span {
font-size : 20px;
color : rgba(0,0,0,0.87);
}
div.collection a i.material-icons {
color: rgba(0,0,0,0.87);
}
.maincol_button {
overflow: hidden;
height: 5rem;
padding : 1.5rem 0 !important;
border: 0 !important;
}
.maincol_menu {
overflow : hidden;
height : 4rem;
background-color: transparent !important;
border: 0 !important;
}
.cursel-accountbox {
height : 64px;
}
.whole-notification {
position: absolute;
top: 1.5rem;
right: 1.5rem;
}
.nav_notif_iconarea .v-btn__content {
height : 40px;
}
#cursel_avatar {
margin-left: 0.5rem;
}
#cursel_display_name {
margin-left : 2rem;
margin-top : 1rem;
}
.modal-avatar-title {
font-size : 20px;
margin-top : 1.2rem;
}
.menulst_tile {
padding-left : 0.5rem;
}
#cur_sel_account .v-list .v-list__tile {
padding-left : 0.5rem;
}
@media only screen and (min-width: 1100px) {
.menulst_tile {
padding-left : 1rem;
}
#cur_sel_account .v-list .v-list__tile {
padding-left : 1rem;
}
}
@media only screen and (min-width: 1290px) {
.menulst_tile {
padding-left : 1.5rem;
}
#cur_sel_account .v-list .v-list__tile {
padding-left : 1.5rem;
}
}
.menulst_row {
font-weight: 400;
font-family: 'Montserrat', sans-serif;
}
.maincol_menu.active *, .menulst_row.active * {
color : red !important;
}
.menu_sub {
text-indent : 1.5rem;
}
#ov_notif {
position : fixed;
top : 0;
left : 0;
width : 100vw;
height : 100vh;
z-index : 988;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
#ov_notif_overlay {
position : fixed;
top : 0;
left : 0;
width : 99%;
height : 100%;
background-color: rgba(0, 0, 0, 0.0);
z-index : 987;
}
.notifmenu {
position : absolute;
/*top : 0px;
left : 0px;
height : 300px;*/
width : 100%;
min-height : 52px;
height : 500px;
overflow : hidden;
z-index : 989;
}
@media only screen and (min-width: 601px) {
.notifmenu {
position : absolute;
/*top : 0px;
left : 0px;
height : 300px;*/
width : 480px;
min-height : 52px;
height : 500px;
overflow : hidden;
z-index : 989;
}
}
.notifmenu .vwinsizing {
width : 100%;
height : calc(100% - 52px);
/*overflow-y : auto;*/
}
.notifmenu .v-window__container {
width : 100%;
height : 100%;
}
.notifmenu .notiflist_card {
overflow-x : hidden;
/*overflow-y : auto;*/
-webkit-overflow-scrolling: touch;
width : 100%;
height:calc(500px - 52px);
}
.notif_avatar_mark {
position: absolute;
top: -10px;
left: -10px;
width : 20px !important;
height : 20px !important;
}
.mobile-search .v-input__slot:after {
width : 0px !important;
}
.mobile-search .v-text-field > .v-input__control > .v-input__slot:before {
border : none;
}
/*--------- not use ------------------------
div.post_card_grid {
display : grid;
gap: 15px;
grid-template-rows: minmax(3rem,auto);
grid-auto-flow: dense;
grid-auto-rows : minmax(3rem,auto);
width : 100%;
}
div.post_card_grid_cellsetting {
grid-template-columns: 100%;
}
div.post_card_base {
break-inside: avoid;
page-break-inside: avoid;
-webkit-column-break-inside: avoid;
margin-top: 3%;
border-radius: 3px;
}
div.card.card_subgrid {
display : grid;
grid-template-columns: 60% 40%;
}
div.post_card_top {
grid-column : 1;
grid-row : 1 / span 3;
height: 10rem;
}
div.post_card_flow {
grid-column: span 1;
}
div.post_card_flow.g2 {
grid-row-end: span 2;
}
div.post_card_flow.g4 {
grid-row-end: span 4;
}
div.post_card_flow.g6 {
grid-row-end: span 6;
}
div.post_card_flow.g8 {
grid-row-end: span 8;
}
div.post_card_flow.g10 {
grid-row-end: span 10;
}
div.post_card_flow.g12 {
grid-row-end: span 12;
}
div.post_card_flow.g14 {
grid-row-end: span 14;
}
div.post_card_flow.g16 {
grid-row-end: span 16;
}
div.post_card_flow.g18 {
grid-row-end: span 18;
}
div.post_card_flow.g20 {
grid-row-end: span 20;
}
div.post_card_flow.g22 {
grid-row-end: span 22;
}
div.post_card_flow.g24 {
grid-row-end: span 24;
}
div.post_card_flow.g26 {
grid-row-end: span 26;
}
div.post_card_flow.g28 {
grid-row-end: span 28;
}
div.post_card_flow.g30 {
grid-row-end: span 30;
}
@media only screen and (min-width: 601px) {
div.post_card_grid_cellsetting {
grid-template-columns: 45% 45%;
}
}
@media only screen and (min-width: 993px) {
div.post_card_grid_cellsetting {
grid-template-columns: 45% 45%;
}
}
@media only screen and (min-width: 1350px) {
div.post_card_grid_cellsetting {
grid-template-columns: 31% 31% 31%;
}
}
*/
div.post_card_above2 {
grid-column : auto;
grid-row : 4 / 6;
}
.card .card-content-ex {
height: calc(100% - 6rem);
max-height: 600px;
display : grid;
grid-template-columns: 3fr;
grid-auto-rows: 3rem;
}
.card .card-content p {
padding : 1rem;
/*height : calc(100% - 3rem);
overflow : auto;*/
}
.card .card-title2 {
font-size: 1.5rem;
font-weight: 300;
display : inline-block;
width : 100%;
/* ---grid in content, cell(1,1, 1,2) ---*/
grid-column: 1 / span 2;
grid-row: 1;
}
.card .card-subtitle {
font-size : 1rem;
width : 100%;
}
.card-content .card-datetime {
float : right;
/* ---grid in content, cell(1,3) ---*/
grid-column : 3;
grid-row : 1;
}
.card-content .chip_box {
height : 32px;
width : 100%;
/* ---grid in content, cell(2,1, 2,3) ---*/
grid-column: 1 / span 3;
grid-row: 2;
}
.card-content .chip_box i {
float: left;
}
.card-content .chip_box span {
display : inline-block;
margin-top : 0.5rem;
}
.card .card-content-body {
/* ---grid in content, cell(3,1, 3,3) ---*/
grid-column: 1 / span 3;
grid-row-start: 3;
grid-row-end : span 4;
height : 15rem;
max-height : 17rem;
overflow: auto;
}
.card-content-body.sizing-min {
grid-row-end : span 1;
height : 10rem;
max-height : 15rem;
}
.card-content-body.sizing-mid {
grid-row-end : span 2;
height : 12rem;
max-height : 15rem;
}
.card-content-body.sizing-max {
grid-row-end : span 4;
height : 15rem;
max-height : 17rem;
}
/* .carousel .carousel-item */
/*
.carousel .carousel-item .sensitive-image-text {
position: relative;
bottom : 6.4rem;
color : black;
z-index : 10;
}
.carousel .carousel-item img.landscape, .modal-content img.landscape,
.carousel .carousel-item video.landscape, .modal-content video.landscape {
width : 100%;
height : auto;
margin : auto;
z-index : 9;
position : relative;
}
.carousel .carousel-item img.portrait, .modal-content img.portrait,
.carousel .carousel-item video.portrait, .modal-content video.portrait {
width : auto;
height : 100%;
margin : auto;
z-index : 9;
position : relative;
}
.carousel-item .image-popup-btn {
position : absolute;
top : 1rem;
right : 1rem;
color : #BABABA;
text-shadow: 2px 2px 2px #696969;
z-index : 10;
}
*/
#ov_image {
width : -moz-fit-content;
height : -moz-fit-content;
width : fit-content;
height : fit-content;
max-width : 92%;
max-height : 92%;
background-color: transparent;
overflow: hidden;
}
#ov_image .modal-content {
width : -moz-fit-content;
height : -moz-fit-content;
width : fit-content;
height : fit-content;
padding : 0;
margin : auto;
}
#ov_image .modal-content img {
width : 100%;
max-height: 100%;
}
/*
.card .card-action.card-action-ex {
height : 6rem;
position : relative;
}
*/
.card.fitcontent {
/*height : -moz-fit-content;
height : fit-content;*/
height : auto;
}
.inputcontent_div {
background-color: #FFFFFF;
font-size : 1.2rem;
color : #000000;
overflow : auto;
width : 90%;
height : calc(1.5rem * 3);
border : 0.1rem solid #C7C7C7;
margin-bottom : 0.5rem;
-webkit-overflow-scrolling: touch;
}
.onetoote_cardtitle {
height : 40px !important;
padding : 4px;
flex: 0 0 auto !important;
}
.onetoote_cardtext {
padding: 0;
overflow-x: hidden;
}
.onetoote_screen {
position : fixed;
top : 0;
left : 0;
width : 100vw;
height : 100vh;
z-index : 999;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.onetoote_overlay {
position : fixed;
top : 0;
left : 0;
width : 99%;
height : 100%;
background-color: rgba(0, 0, 0, 0.45);
z-index : 998;
}
.onetoote_area {
position : relative;
top : 0;
left : 0;
z-index: 1000;
/*margin : 0 15%;
overflow: auto;*/
background-color: transparent;
margin-left : auto;
margin-right : auto;
}
.onetoote_area.sizing {
width : 100%;
height: 90%;
/*padding-left : 0;
padding-right : 0;
padding-bottom : 10%;*/
overflow : auto;
-webkit-overflow-scrolling: touch;
}
.carousel.fullsize {
min-height: 400px;
}
@media only screen and (min-width: 601px) {
.onetoote_area.sizing {
width : 80%;
height: 90%;
/*padding-left : 0;
padding-right : 0;
padding-bottom : 10%;*/
overflow : unset;
-webkit-overflow-scrolling: touch;
}
.carousel.fullsize {
min-height: 500px;
}
}
@media only screen and (min-width: 993px) {
.onetoote_area.sizing {
width : 70%;
height: 100%;
/*padding-left : 15%;
padding-right : 15%;
padding-bottom : 10%;*/
overflow : unset;
-webkit-overflow-scrolling: touch;
}
.carousel.fullsize {
min-height: 600px;
}
}
@media only screen and (min-width: 1350px) {
.onetoote_area.sizing {
width : 70%;
height: 100%;
/*padding-left : 15%;
padding-right : 15%;
padding-bottom : 10%;*/
overflow : unset;
-webkit-overflow-scrolling: touch;
}
.carousel.fullsize {
min-height: 600px;
}
}
/*====================================================
sidebar UI
=====================================================*/
#li_userview {
width : 100%;
height : 30%;
}
#li_userview .user-view {
width : 100%;
height : 100%;
}
.sidenav .brand-title {
font-family: 'Montserrat', sans-serif;
font-size : 4.2rem;
}
/*====================================================
accounts UI
=====================================================*/
div.accounts_body {
height : 100%;
width : 100%;
}
div.area_acc {
height: calc(100% - 69px);
overflow: auto;
-webkit-overflow-scrolling: touch;
}
/* seach form for accounts and instances */
div.search-box {
margin-top : 1rem !important;
padding : 1rem;
width : 100%;
}
/*====================================================
account detail UI
=====================================================*/
div.account_body {
height : 100%;
width : 100%;
overflow-x : hidden;
overflow-y : auto;
-webkit-overflow-scrolling: touch;
}
div.account_body .user-view {
position: relative;
padding: 0;
margin-bottom: 0;
width : 100%;
height : 500px;
}
@media only screen and (min-width: 601px) {
div.account_body .user-view {
position: relative;
padding: 0;
margin-bottom: 0;
width : 100%;
height : 450px;
}
}
div.account_body .user-view > a {
height: auto;
padding: 0;
}
div.account_body .user-tabs {
height : auto; /*68%;*/
}
.user-tabs .tabbar {
position: -webkit-sticky;
position : sticky;
top : 0px;
z-index: 20;
}
.user-tabs .tabcontent {
width : 100%;
height : 100%;
}
div.account_body .user-view > a:hover {
background-color: transparent;
}
div.account_body .user-view .background {
overflow: hidden;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
width : 100%;
height : -moz-fit-content;
height: fit-content;
/*height : 120px;*/
}
div.account_body .user-view .background img {
width : 100%;
height : 100%;
object-fit : cover;
object-position: 50% 25%;
}
div.account_body .user-view .user-textinfo {
position : absolute;
top : 0;
left : 0;
width : 100%;
background-color: rgba(0,0,0,0.2);
border-radius: 0 0 0.5rem 0.5rem;
/*box-shadow : 1px 1px 1px rgba(0,0,0,0.5);*/
padding : 1rem;
}
div.account_body .user-view .circle,div.account_body .user-view .name,div.account_body .user-view .email {
display: block;
}
div.account_body .user-view .circle {
height: 64px;
width: 64px;
float : left;
margin-right : 2rem;
margin-top : 16px;
}
div.account_body .user-view .userrectangle {
height: 64px;
width: 64px;
float : left;
margin-right : 2rem;
margin-top : 16px;
}
div.account_body .user-view .name,
div.account_body .user-view .email {
font-size: 24px;
line-height: 32px;
text-shadow: 1px 1px 1px #000000;
}
div.account_body .user-view .name {
margin-top: 16px;
font-weight: 500;
}
div.account_body .user-view .email {
padding-bottom: 16px;
font-weight: 400;
}
.user-action-btns {
width : -moz-fit-content;
width: fit-content;
background-color: rgba(0,0,0, 0.2);
text-shadow : 1px 1px 1px #000000;
padding: 1rem 1rem 3rem 1rem;
border-radius: 0.25rem;
}
.user-action-btns ul {
text-shadow : none;
}
.user-action-btns.col1 {
position: absolute;
bottom: 2rem;
left: 2%;
height: 40px;
width: 12.5rem;
}
.user-action-btns.col2 {
position: absolute;
bottom: 6rem;
left: 2%;
color : white;
height: 40px;
}
.user-action-btns.col3 {
position: absolute;
bottom: 3rem;
right : 2%;
width : 6rem;
height: 21rem;
}
.user-action-btns.col4 {
position: absolute;
bottom: 2rem;
right : 2%;
width : 6rem;
height: 6rem;
}
.user-action-btns.col_ac1 {
position: absolute;
bottom: 2rem;
left: 2%;
height: 64px;
}
.user-action-btns.inaccurate {
position: absolute;
top : 130px;
color : white;
height: 40px;
}
div.account_body .tabs .tab a {
color : #F44336 !important;
}
div.account_body .tabs li.indicator {
background-color : #F44336 !important;
}
div.user_fieldtext {
font-size : 2rem;
}
.userdialog {
position : absolute;
top : 0px;
left : 0px;
/*height : 300px;*/
overflow : hidden;
z-index : 1050;
}
.userdialog.sizing {
width : 100%;
}
@media only screen and (min-width: 601px) {
.userdialog.sizing {
width : 100%;
}
}
@media only screen and (min-width: 993px) {
.userdialog.sizing {
width : 320px;
}
}
@media only screen and (min-width: 1350px) {
.userdialog.sizing {
width : 320px;
}
}
.userdialog .card {
height: 100%;
margin-bottom : 0;
}
.userdialog .card .card-image {
height : 10rem;
}
.userdialog .card .card-image .background {
overflow : hidden;
height : 100%;
width : 100%;
}
.userdialog .card .card-image .background img {
width : 100%;
height : 100%;
object-fit : cover;
object-position : 34% 34%;
}
.userdialog .card .card-content p {
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.userdialog .card .card-account-stats {
margin-bottom : 0;
}
.poup-stat-number {
font-weight: bold;
font-size : 1.5rem;
}
/*====================================================
connection list UI
=====================================================*/
.connections_body {
width : 100%;
height : 100%;
}
.connections_body .row {
height: 100%;
}
.connections_body .tab-content {
height: calc(100% - 48px);
overflow : auto;
-webkit-overflow-scrolling: touch;
}
.user-grid {
display: grid;
gap: 10px;
height: 100%;
}
.user-grid.sizing {
grid-template-columns: 100%;
}
@media only screen and (min-width: 601px) {
.user-grid.sizing {
grid-template-columns: 45% 45%;
}
}
@media only screen and (min-width: 993px) {
.user-grid.sizing {
grid-template-columns: 31% 31% 31%;
}
}
@media only screen and (min-width: 1350px) {
.user-grid.sizing {
grid-template-columns: 25% 25% 25% 25%;
}
}
.user-grid-item {
height : 36rem;
}
.user-grid-item .card {
height: 100%;
}
.user-grid-item .card .card-image {
height : 10rem;
}
.user-grid-item .card .card-image .background {
overflow : hidden;
height : 100%;
width : 100%;
}
.user-grid-item .card .card-image .background img {
width : 100%;
height : 100%;
object-fit : cover;
object-position : 34% 34%;
}
.user-grid-item .card .card-content {
height : 10rem;
overflow: hidden;
}
.user-grid-item .card .card-content p {
display: block;
white-space: pre-wrap;
overflow: hidden;
text-overflow: ellipsis;
height: 100%;
}
.user-grid-item .card .card-account-stats {
margin-left : 0;
margin-bottom : 0;
height : 6rem;
width : 100%;
position : absolute;
/*bottom : 6rem;*/
}
.user-grid-item .card .card-action {
position : absolute;
bottom : 0;
height: 5rem;
}
/*====================================================
instance list UI
=====================================================*/
div.instances_body {
height : 100%;
width : 100%;
overflow-x : hidden;
overflow-y : auto;
}
div.instances_body .chip_box {
width : 100%;
height : 10rem;
overflow : auto;
-webkit-overflow-scrolling: touch;
/*border : 3px inset white;*/
padding : 0.5rem;
}
div.instances_body .chip {
cursor : pointer;
}
.share-color-replyparent {
background-color: #FF8A80;
color : #132101;
}
.share-color-public {
background-color: #FFFFFF;
}
.share-color-unlisted {
background-color: rgb(30, 120, 255);
color : #FFFFFF;
}
.share-color-private {
background-color: rgb(197, 171, 26);
color : #FFFFFF;
}
.share-color-boosted {
background-color: rgb(197, 26, 26);
color : #FFFFFF;
}
.search-panel {
width : 100%;
padding-left : 1rem;
}
.search-result {
width : 100%;
padding : 1rem;
}
.search-detail {
width : 100%;
/*display : grid;
gap : 1rem;
grid-auto-rows : 100px;*/
}
.search-detail.sizing {
grid-template-columns: 100%;
}
.search-detail .instance-main {
grid-column: 1 / span 2;
grid-row: 1 / span 2;
}
.search-detail .contact-account {
grid-column: span 1;
grid-row: 3 / span 5;
}
.search-detail .instance-desc {
grid-column: 1;
grid-row: auto;
}
@media only screen and (min-width: 601px) {
.search-detail.sizing {
grid-template-columns: 45% 45%;
}
.search-detail .contact-account {
grid-column: span 1;
grid-row: span 2;
}
.search-detail .instance-desc {
grid-column: span 1;
grid-row: 3;
}
}
@media only screen and (min-width: 993px) {
.search-detail.sizing {
grid-template-columns: 31% 31% 31%;
}
.search-detail .contact-account {
grid-column: span 1;
grid-row: span 2;
}
.search-detail .instance-desc {
grid-column: span 2;
grid-row: 3;
}
}
@media only screen and (min-width: 1350px) {
.search-detail.sizing {
grid-template-columns: 31% 31% 31%;
}
.search-detail .contact-account {
grid-column: span 1;
grid-row: span 2;
}
.search-detail .instance-desc {
grid-column: span 2;
grid-row: 3;
}
}
.search-detail .instance-desc > div {
padding : 1rem;
}
div.instances_body .chip:focus,div.instances_body .chip:active {
outline : none;
color : #FFFFFF;
background-color : #F44336;
}
.card .card-account-administrator {
position: absolute;
z-index: 1;
margin-top: 0.5rem;
margin-left: 0.5rem;
color: white;
text-shadow: 2px 2px 2px #232323;
}
.card .card-account-info {
position : relative;
}
.card .card-account-info span, .card .card-account-info i {
position : relative;
left : calc(24px + 40px) ;
display : inline-block;
width : calc(100% - 24px - 40px);
word-break: keep-all;
}
.card-account-info span {
font-size : 20px;
}
.card-account-info b {
font-size : 16px;
}
.card .card-account-content {
position:relative;
}
.card .card-content.instance-content {
padding : 1rem;
position : relative;
}
.card .card-content.instance-content .card-subdatetime {
position : absolute;
right : 1rem;
}
.card .card-content.instance-content .card-instance-rank {
font-size : 20px;
color: #ffa100;
}
.card .card-content.card-account-content {
padding : 1rem;
}
div.instances_body .card .card-content.card-account-content p {
padding : 0.25rem;
overflow : hidden;
}
/*====================================================
input toot UI
=====================================================*/
.dmy_inputtoot {
position: relative;
overflow : hidden;
}
.scroll-y {
overflow-x : hidden;
overflow-y : auto;
-webkit-overflow-scrolling: touch;
}
.dmy_inputtoot div.v-dialog--fullscreen {
background-color : rgb(194, 82, 82);
}
.v-toolbar .v-btn.input-toot-textbtn .v-btn__content {
height : 36px;
line-height : 36px;
}
.dmy_inputtoot .v-toolbar .v-btn .v-btn__content .v-icon {
height : 24px;
line-height : 24px;
}
.dmy_inputtoot .v-select__selectionsx {
min-height : 48px !important;
padding-top : 6px !important;
}
.dmy_inputtoot .v-select__selections input[type='text'],
.toot_comment .v-select__selections input[type='text'],
.setting_body .v-select__selections input[type='text']
{
border : none;
}
.onetoot_inputcontent, .dmy_inputtoot .onetoot_inputcontent {
background-color: rgb(241, 241, 241);
font-size : 1.4rem;
color : #000000;
overflow : auto;
-webkit-overflow-scrolling: touch;
width : 99%;
height : calc(1.7rem * 6);
border-bottom : 0.1rem solid #C7C7C7;
margin-bottom : 0.5rem;
outline : none;
}
.template_reply_box .onetoot_inputcontent {
background-color: rgb(241, 241, 241);
font-size : 1.4rem;
color : #000000;
overflow : auto;
-webkit-overflow-scrolling: touch;
width : 99%;
height : calc(1.7rem * 3);
/*border-bottom : 0.1rem solid #C7C7C7;*/
margin-bottom : 0.5rem;
outline : none;
}
.onetoot_inputcontent, .dmy_inputtoot:focus .onetoot_inputcontent, .template_reply_box .onetoot_inputcontent:focus {
border-bottom : 0.1rem solid #FF3434;
}
.onetoot_inputcontent p, .dmy_inputtoot .onetoot_inputcontent p, .template_reply_box .onetoot_inputcontent p, .editor-realparts p {
margin-bottom : 1px !important;
}
.toottext_length {
display:inline-block;
position: absolute;
bottom:2.2rem;
right:2rem;
font-weight: bold;
}
.dmy_inputtoot .v-text-field__slot textarea {
height : auto;
}
.dmy_inputtoot .media_commentbox {
width : 10rem;
border-bottom : 1px solid grey;
}
div.dragover_indicate {
border : 2px dashed #858585;
background-color : rgb(107, 142, 207);
}
.dmy_inputtoot .contentbottomstyle, .dmy_inputtoot .headerbottomstyle {
position: relative;
top : -2rem;
}
.headerbottomstyle .v-autocomplete .v-input__slot {
box-shadow : 0 0 0 0 rgba(0,0,0,0) !important;
}
#mention_box {
border-bottom: 2px solid rgba(0,0,0, 0.42);
}
.dmy_inputtoot .tagbottomstyle1 {
position: relative;
top : -3rem;
}
.dmy_inputtoot .tagbottomstyle2 {
position: relative;
top : -0.5rem;
}
.dmy_inputtoot .mediabottomstyle {
position: relative;
/*top : -4rem;*/
}
.list_summary {
font-size: 1.8rem;
cursor : pointer;
}
.list_summary2 {
cursor : pointer;
}
.emoji-view {
}
#chararea {
width:100%;
height:10rem;
overflow:auto;
-webkit-overflow-scrolling: touch;
border:2px inset black;
margin-top:0.2em;
}
.charbutton-normal {
font-size : 2.0rem;
width : 4.2rem;
border : 0 solid black;
border-radius : 0;
background-color : #454545;
color : #FFFFFF;
}
.charbutton-small {
font-size : 2.1rem;
width : 3.4rem;
border : 0 solid black;
border-radius : 0;
background-color : #454545;
color : #FFFFFF;
}
.nologin_layout {
width : 320px;
height : 190px;
}
/*====================================================
notification UI
=====================================================*/
.notifcation_body {
width : 100%;
height : 100%;
}
.notification-view {
height : 100%;
}
.notification-tabitems {
height : calc(100% - 48px);
}
.notification-tabitems > div {
height : 100%;
}
.notification-tabbody {
height : 100%;
overflow : auto;
-webkit-overflow-scrolling: touch;
}
.notification-tabbody > div {
height: 100%;
}
/*====================================================
search UI
=====================================================*/
.search_body {
width : 100%;
height : 100%;
}
.search_body .row {
height: 100%;
}
.search_body .tab-content {
height: calc(100% - 48px);
overflow : auto;
-webkit-overflow-scrolling: touch;
}
.v-text-field__slot textarea {
height : auto !important;
}
/*====================================================
setting UI
=====================================================*/
div.setting_body {
height : 100%;
overflow-x : hidden;
overflow-y : auto;
-webkit-overflow-scrolling: touch;
}
/*====================================================
direct message UI
=====================================================*/
.dmsg_body {
width : 100%;
height : 100%;
}
.dmsg_body .v-window {
height : 100%;
}
.dmsg_body .v-window .v-window__container {
height : 100%;
}
.dmsg_body .v-window__container .v-window-item {
height : 100%;
}
.dmsg_body .v-window-item .layout {
height : 100%;
}
.dmsg_body .v-window-item .layout .flex {
height : 100%;
}
.dmsg_body .v-card {
height : 100%;
}
.dmsg_body .v-timeline {
height : 100%;
}
.dmsg_body .timeline_cardlist {
height : calc(100% - 96px);
overflow-x : hidden;
overflow-y : auto;
-webkit-overflow-scrolling: touch;
}
.dmsg_body .timeline_cardlist_mobile {
height : calc(100% - 56px - 96px);
overflow-x : hidden;
overflow-y : auto;
-webkit-overflow-scrolling: touch;
}
.dmsg_body .timeline_cardaction {
height : 96px;
box-shadow: 1px -2px 4px 0 grey;
}
.dmsg_messageframe {
border:1px solid rgba(0,0,0,0.2);
border-radius: 5px;
padding : 3px
}
/*====================================================
archiver main UI
=====================================================*/
.archmain_body {
width : 100%;
height : 100%;
overflow : auto;
-webkit-overflow-scrolling: touch;
}
.archmain_body .xtab-content {
height: calc(100% - 48px);
overflow-x : hidden;
overflow-y : auto;
-webkit-overflow-scrolling: touch;
}
div.beforedrag_indicate {
border : 2px dashed #F53535;
background-color : white;
}
select.filter-box {
border-bottom: 1px solid grey;
border-radius: 5px;
font-size: 1.5rem;
}
.panel-archive-helpbox {
max-height: 300px;
overflow: auto;
padding-right: 0.5rem;
}
.loaded-filelist {
height : 100%;
overflow: auto;
}
#arch_importlog {
width : 100%;
height : 10rem;
border : 1px solid grey;
font-size : 1.5rem;
overflow: auto;
} | 0.471467 | 0.083815 |
*{
margin: 0;
padding: 0;
}
body,html{
width: 100%;
height: 100%;
font-family: sans-serif;
}
nav ul a.btn{
margin: 0;
}
.card .card-action{
padding: 10px;
}
.card .card-content{
padding: 15px;
}
/*MENGATUR WIDTH*/
.w99-1{
width: 99.5%;
margin: auto;
}
.w99{
width: 99%;
margin: auto;
}
.w98{
width: 98%;
margin: auto;
}
.w97{
width: 97%;
margin: auto;
}
.w96{
width: 96%;
margin: auto;
}
.w95{
width: 95%;
margin: auto;
}
.w94{
width: 94%;
margin: auto;
}
.w93{
width: 93%;
margin: auto;
}
.w92{
width: 92%;
margin: auto;
}
.w91{
width: 91%;
margin: auto;
}
.w90{
width: 90%;
margin: auto;
}
.w89{
width: 89%;
margin: auto;
}
.w88{
width: 88%;
margin: auto;
}
.w87{
width: 87%;
margin: auto;
}
.w84{
width: 84%;
margin: auto;
}
.w50{
width: 50%;
margin: auto;
}
/*MENGATUR BORDER RADIUS*/
.rds1{
border-radius: 1px !important;
}
.rds2{
border-radius: 2px!important;
}
.rds3{
border-radius: 3px !important;
}
.rds4{
border-radius: 4px !important;
}
.txtup{
text-transform: uppercase;
}
h4{
padding: 10px 40px;
}
/*MARGIN ATAS*/
.mgratas0{
margin-top: 0.7%;
}
.mgratas1{
margin-top: 1%;
}
.mgratas2{
margin-top: 2%;
}
.mgratas3{
margin-top: 3%;
}
.mgratas4{
margin-top: 4%;
}
.mgratas5{
margin-top: 5%;
}
.mgratas{
margin-top: 19.99998%;
}
.mgrbawah3{
margin-bottom: 3%;
}
.padding-b{
padding-bottom: 10%;
}
.lbl{
position: absolute;
font-size: 13.334px !important;
}
.mpt{
margin-bottom: 0;
padding: 11px;
}
.waves-effect.waves-blue .waves-ripple {
background-color: #64b5f6;
}
/*MENGATUR WARNA PADA BORDER ATAS*/
.uporen{
border-top: 2px solid #ffb300;
}
.upbiru{
border-top: 2px solid #2196f3;
}
.upalpha{
border-top: 2px solid rgba(0,0,0,.1);
}
.alpha{
background-color: rgba(0,0,0,.1);
}
/*MENGTAUR FLEX*/
.flxctr{
display: flex;
align-items: center;
justify-content: center;
}
.flxstart{
display: flex;
flex-wrap: wrap;
}
.flxspacebetween{
display: flex;
justify-content: space-between;
}
.flxarround{
display: flex;
justify-content: space-around;
}
.user{
flex-direction: column;
}
/*PAGINATION*/
aside .card .w93 .card-action ul li{
width: 2.5rem;
height: 2em;
margin: 0.7%;
line-height: 2em;
}
aside .card .w93 .card-action ul li a{
text-decoration: none;
border: 1px solid #ddd;
width: 100%;
height: 100%;
text-align: center;
border-radius: 9px;
background-color: #42a5f5;
}
/*MENGATUR MAIN HALAMAN PERTAMA*/
main .card .card-content form,
main .card .card-content form section,
main .card .card-content p,
main .card .card-action{
margin-top: 3%;
}
main .card .card-content form section{
padding-bottom: 5px;
border-bottom: 1px solid #ccc;
}
main .card .container{
padding: 10px;
}
main .card .container .parent{
position: relative;
height: 4em;
margin-bottom: 10px;
background-color: #fff;
box-shadow: 0 0 4px 0 #ccc;
border-radius: 3px;
}
main .card .container .parent:hover{
opacity: 0.9;
}
main .card .container .parent .jadwal{
position: absolute;
width: 100%;
height: 100%;
border-radius: 3px;
}
main .card .container .parent .jadwal p{
font-size: 2em;
line-height: 2em;
}
main .card .container .parent .spek{
width: 50%;
height: 100%;
vertical-align: center;
display: flex;
align-items: center;
float: right;
}
main .card .container .parent .spek p{
flex: 1 0 0;
margin-left: 1rem;
}
main .card .container .parent .spek a{
flex: 0 0 100px;
}
.gambar{
width: 50%;
height: 50%;
}
/*LUPA PASSWORD*/
.login-form {
padding: 20px;
background: whitesmoke;
border: 1px solid #ccc;
border-radius: 4px;
text-align: center;
}
.form-group {
display: flex;
align-items: center;
justify-content: center;
}
.form-group label {
flex: 0 0 100px;
color: #333 !important;
text-align: right;
padding-right: 5px;
}
.form-group input,
.form-group textarea {
flex: 1 1 auto;
border: 1px solid #c0c0c0 !important;
border-radius: 5px !important;
color: #000;
padding-left: .5rem!important;
}
.form-group textarea {
margin-bottom: 5px;
font-family: sans-serif;
height: 3em;
font-size: 1.2rem;
line-height: 1.5rem;
padding: 1rem 1rem 1rem 0;
outline: none;
resize: none;
overflow: hidden;
}
.form-group input:focus,
.form-group textarea:focus{
border: 1px solid #cece !important;
box-shadow: 0 1px 4px 0 #333 !important;
}
/* label color */
.input-field label {
color: #000;
}
/* label focus color */
.input-field input:focus + label {
color: #ff9800 !important;
}
/* label underline focus color */
.input-field input:focus {
border-bottom: 1px solid #ff9800 !important;
box-shadow: 0 1px 0 0 #ff9800 !important;
}
/* valid color */
.input-field input.valid {
border-bottom: 1px solid #ff9800 !important;
box-shadow: 0 1px 0 0 #ff9800 !important;
}
/* invalid color */
.input-field input[type=text].invalid {
border-bottom: 1px solid #000;
box-shadow: 0 1px 0 0 #000;
}
/* icon prefix focus color */
.input-field .prefix.active {
color: #ff9800 !important;
}
#pagination li{
margin: 2.5px auto 2.5px;
}
.time li {
display: inline-block;
font-size: .9rem;
list-style-type: none;
padding-bottom: .5rem;
margin: 0 .5rem;
text-transform: uppercase;
}
.time li span {
display: block;
font-size: 1.9rem;
margin: 0 .3rem;
}
.waktu{
padding: 10px;
margin: 10px;
font-size: 1.9rem;
border: 1px solid grey;
border-radius: 3px;
}
/*DROPDOWN*/
.nav-wrapper ul li a{
display: flex;
align-items: center;
font-size: 1.1rem;
line-height: 1.1rem;
}
.nav-wrapper ul li a p{
margin-right: .5rem;
}
.muncul{
display: block !important;
}
nav .nav-wrapper ul li .card{
display: none;
position: absolute;
width: 277px;
top: 3.7em;
right: 0;
z-index: 999;
}
nav .nav-wrapper ul li .card p{
text-align: center;
width: 100%;
height: 1.5em;
line-height: 1.5em;
}
.icon{
width: 100px;
height: 100px;
background-color: #fff;
border-radius: 50%;
margin-bottom: .7rem;
display: flex;
justify-content: center;
align-items: center;
}
.icon img{
width: 75%;
}
.arrow {
position: absolute;
top: -.6rem;
right: .9rem;
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 9px solid white;
}
.modal .modal-content span{
width: 125px;
border-radius: 50%;
}
.modal .modal-content span img{
width: 150px;
}
.btntimeout{
width: 100% !important;
}
/* Profil */
.profil{
align-items: flex-start;
}
/* Ganti Password */
.g-passwd,
.g-pertanyaan{
background-color: #fff;
margin: 10px;
width: 100%;
padding: 20px;
}
.g-passwd h5,
.g-pertanyaan h5{
margin: 0;
margin-bottom: 20px;
}
.btn-gnt{
display: flex;
justify-content: center;
}
.alert-pass{
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.alert-pass ul{
margin-left: 20px;
list-style: initial;
}
.noujian{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding-bottom: 20px;
}
.noujian h4{
padding: 0;
}
.modal-ujian{
text-align: center;
padding: 5px;
}
.nopad{
padding: 0;
margin-top: 0.5rem;
}
label{
color: #333;
}
.soal{
margin: 10px;
} | assets/css/css.css | *{
margin: 0;
padding: 0;
}
body,html{
width: 100%;
height: 100%;
font-family: sans-serif;
}
nav ul a.btn{
margin: 0;
}
.card .card-action{
padding: 10px;
}
.card .card-content{
padding: 15px;
}
/*MENGATUR WIDTH*/
.w99-1{
width: 99.5%;
margin: auto;
}
.w99{
width: 99%;
margin: auto;
}
.w98{
width: 98%;
margin: auto;
}
.w97{
width: 97%;
margin: auto;
}
.w96{
width: 96%;
margin: auto;
}
.w95{
width: 95%;
margin: auto;
}
.w94{
width: 94%;
margin: auto;
}
.w93{
width: 93%;
margin: auto;
}
.w92{
width: 92%;
margin: auto;
}
.w91{
width: 91%;
margin: auto;
}
.w90{
width: 90%;
margin: auto;
}
.w89{
width: 89%;
margin: auto;
}
.w88{
width: 88%;
margin: auto;
}
.w87{
width: 87%;
margin: auto;
}
.w84{
width: 84%;
margin: auto;
}
.w50{
width: 50%;
margin: auto;
}
/*MENGATUR BORDER RADIUS*/
.rds1{
border-radius: 1px !important;
}
.rds2{
border-radius: 2px!important;
}
.rds3{
border-radius: 3px !important;
}
.rds4{
border-radius: 4px !important;
}
.txtup{
text-transform: uppercase;
}
h4{
padding: 10px 40px;
}
/*MARGIN ATAS*/
.mgratas0{
margin-top: 0.7%;
}
.mgratas1{
margin-top: 1%;
}
.mgratas2{
margin-top: 2%;
}
.mgratas3{
margin-top: 3%;
}
.mgratas4{
margin-top: 4%;
}
.mgratas5{
margin-top: 5%;
}
.mgratas{
margin-top: 19.99998%;
}
.mgrbawah3{
margin-bottom: 3%;
}
.padding-b{
padding-bottom: 10%;
}
.lbl{
position: absolute;
font-size: 13.334px !important;
}
.mpt{
margin-bottom: 0;
padding: 11px;
}
.waves-effect.waves-blue .waves-ripple {
background-color: #64b5f6;
}
/*MENGATUR WARNA PADA BORDER ATAS*/
.uporen{
border-top: 2px solid #ffb300;
}
.upbiru{
border-top: 2px solid #2196f3;
}
.upalpha{
border-top: 2px solid rgba(0,0,0,.1);
}
.alpha{
background-color: rgba(0,0,0,.1);
}
/*MENGTAUR FLEX*/
.flxctr{
display: flex;
align-items: center;
justify-content: center;
}
.flxstart{
display: flex;
flex-wrap: wrap;
}
.flxspacebetween{
display: flex;
justify-content: space-between;
}
.flxarround{
display: flex;
justify-content: space-around;
}
.user{
flex-direction: column;
}
/*PAGINATION*/
aside .card .w93 .card-action ul li{
width: 2.5rem;
height: 2em;
margin: 0.7%;
line-height: 2em;
}
aside .card .w93 .card-action ul li a{
text-decoration: none;
border: 1px solid #ddd;
width: 100%;
height: 100%;
text-align: center;
border-radius: 9px;
background-color: #42a5f5;
}
/*MENGATUR MAIN HALAMAN PERTAMA*/
main .card .card-content form,
main .card .card-content form section,
main .card .card-content p,
main .card .card-action{
margin-top: 3%;
}
main .card .card-content form section{
padding-bottom: 5px;
border-bottom: 1px solid #ccc;
}
main .card .container{
padding: 10px;
}
main .card .container .parent{
position: relative;
height: 4em;
margin-bottom: 10px;
background-color: #fff;
box-shadow: 0 0 4px 0 #ccc;
border-radius: 3px;
}
main .card .container .parent:hover{
opacity: 0.9;
}
main .card .container .parent .jadwal{
position: absolute;
width: 100%;
height: 100%;
border-radius: 3px;
}
main .card .container .parent .jadwal p{
font-size: 2em;
line-height: 2em;
}
main .card .container .parent .spek{
width: 50%;
height: 100%;
vertical-align: center;
display: flex;
align-items: center;
float: right;
}
main .card .container .parent .spek p{
flex: 1 0 0;
margin-left: 1rem;
}
main .card .container .parent .spek a{
flex: 0 0 100px;
}
.gambar{
width: 50%;
height: 50%;
}
/*LUPA PASSWORD*/
.login-form {
padding: 20px;
background: whitesmoke;
border: 1px solid #ccc;
border-radius: 4px;
text-align: center;
}
.form-group {
display: flex;
align-items: center;
justify-content: center;
}
.form-group label {
flex: 0 0 100px;
color: #333 !important;
text-align: right;
padding-right: 5px;
}
.form-group input,
.form-group textarea {
flex: 1 1 auto;
border: 1px solid #c0c0c0 !important;
border-radius: 5px !important;
color: #000;
padding-left: .5rem!important;
}
.form-group textarea {
margin-bottom: 5px;
font-family: sans-serif;
height: 3em;
font-size: 1.2rem;
line-height: 1.5rem;
padding: 1rem 1rem 1rem 0;
outline: none;
resize: none;
overflow: hidden;
}
.form-group input:focus,
.form-group textarea:focus{
border: 1px solid #cece !important;
box-shadow: 0 1px 4px 0 #333 !important;
}
/* label color */
.input-field label {
color: #000;
}
/* label focus color */
.input-field input:focus + label {
color: #ff9800 !important;
}
/* label underline focus color */
.input-field input:focus {
border-bottom: 1px solid #ff9800 !important;
box-shadow: 0 1px 0 0 #ff9800 !important;
}
/* valid color */
.input-field input.valid {
border-bottom: 1px solid #ff9800 !important;
box-shadow: 0 1px 0 0 #ff9800 !important;
}
/* invalid color */
.input-field input[type=text].invalid {
border-bottom: 1px solid #000;
box-shadow: 0 1px 0 0 #000;
}
/* icon prefix focus color */
.input-field .prefix.active {
color: #ff9800 !important;
}
#pagination li{
margin: 2.5px auto 2.5px;
}
.time li {
display: inline-block;
font-size: .9rem;
list-style-type: none;
padding-bottom: .5rem;
margin: 0 .5rem;
text-transform: uppercase;
}
.time li span {
display: block;
font-size: 1.9rem;
margin: 0 .3rem;
}
.waktu{
padding: 10px;
margin: 10px;
font-size: 1.9rem;
border: 1px solid grey;
border-radius: 3px;
}
/*DROPDOWN*/
.nav-wrapper ul li a{
display: flex;
align-items: center;
font-size: 1.1rem;
line-height: 1.1rem;
}
.nav-wrapper ul li a p{
margin-right: .5rem;
}
.muncul{
display: block !important;
}
nav .nav-wrapper ul li .card{
display: none;
position: absolute;
width: 277px;
top: 3.7em;
right: 0;
z-index: 999;
}
nav .nav-wrapper ul li .card p{
text-align: center;
width: 100%;
height: 1.5em;
line-height: 1.5em;
}
.icon{
width: 100px;
height: 100px;
background-color: #fff;
border-radius: 50%;
margin-bottom: .7rem;
display: flex;
justify-content: center;
align-items: center;
}
.icon img{
width: 75%;
}
.arrow {
position: absolute;
top: -.6rem;
right: .9rem;
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 9px solid white;
}
.modal .modal-content span{
width: 125px;
border-radius: 50%;
}
.modal .modal-content span img{
width: 150px;
}
.btntimeout{
width: 100% !important;
}
/* Profil */
.profil{
align-items: flex-start;
}
/* Ganti Password */
.g-passwd,
.g-pertanyaan{
background-color: #fff;
margin: 10px;
width: 100%;
padding: 20px;
}
.g-passwd h5,
.g-pertanyaan h5{
margin: 0;
margin-bottom: 20px;
}
.btn-gnt{
display: flex;
justify-content: center;
}
.alert-pass{
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.alert-pass ul{
margin-left: 20px;
list-style: initial;
}
.noujian{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding-bottom: 20px;
}
.noujian h4{
padding: 0;
}
.modal-ujian{
text-align: center;
padding: 5px;
}
.nopad{
padding: 0;
margin-top: 0.5rem;
}
label{
color: #333;
}
.soal{
margin: 10px;
} | 0.315841 | 0.048586 |
.side_menu{
width: 230px;
height: 440px;
float: left;
border-radius: 0px 0px 5px 5px;
}
.area{
background: #E42217;
width: 100%;
height: 39px;
float: left;
border-bottom: 1px solid #C11B17;
cursor: pointer;
}
.area#this, .area:hover{
background: #C11B17;
}
.area .icon{
width: 35px;
height: 100%;
float: left;
}
.area.dashboard .icon{
background: url(../image/Side_menu/ic_grid.png) 10px 10px no-repeat;
}
.area.meals_manager .icon{
background: url(../image/Side_menu/ic_list.png) 10px 10px no-repeat;
}
.area.orders_invoices_manager .icon{
background: url(../image/Side_menu/ic_calc.png) 10px 10px no-repeat;
}
.area.account_manager .icon{
background: url(../image/Side_menu/ic_users.png) 10px 10px no-repeat;
}
.area.articles_manager .icon{
background: url(../image/Side_menu/ic_text_document.png) 10px 10px no-repeat;
}
.area.promotions_manager .icon{
background: url(../image/Side_menu/ic_favorite.png) 10px 10px no-repeat;
}
.area a{
float: left;
display: block;
width: 165px;
height: 26px;
padding-top: 13px;
text-decoration: none;
font-size: 12px;
font-family: Arial, Helvetica, sans-serif;
color: white;
}
.search{
width: 100%;
height: 30px;
float: left;
background: url(../image/Side_menu/menu.jpg) left top repeat;
}
.search form.input{
width: 90%;
height: 30px;
margin: 0px auto;
}
.search form.input input[type="text"]{
width: 70%;
height: 100%;
float: left;
border: 1px solid #ddd;
border-radius: 3px 0px 0px 3px;
}
.search form.input input[type="submit"]{
width: 30%;
height: 100%;
float: left;
background: #E42217;
border: 1px solid #E42217;
border-radius: 0px 3px 3px 0px;
color: white;
}
.visit_statistic{
width: 100%;
height: 98px;
border-radius: 5px 5px 5px 5px;
background: #E42217;
float: left;
margin: 0px auto;
}
.visit_statistic div{
width: 50%;
height: 100%;
float: left;
}
.visit_statistic .past .last_visit{
width: 105px;
height: 88px;
margin: 5px;
background: #C11B17;
border-radius: 4px 4px 4px 4px;
}
.visit_statistic .past .last_visit .title{
margin-top: 3px;
width: 100%;
height: 15px;
font-size: 15px;
font-family: Calibri;
color: #7F1C0F;
text-align: center;
}
.visit_statistic .past .last_visit .visit_count{
width: 100%;
height: 30px;
font-size: 30px;
font-family: sans-serif;
color: white;
font-weight: bold;
text-align: center;
}
.visit_statistic .past .last_visit .details{
width: 100%;
height: 20px;
float: left;
font-family: Calibri;
}
.visit_statistic .past .last_visit .details .details_in_number{
width: 45%;
height: 100%;
float: left;
font-size: 15px;
color: white;
text-align: center;
}
.visit_statistic .past .last_visit .details .details_title{
width: 55%;
height: 18;
float: left;
font-size: 13px;
padding-top: 2px;
color: #7F1C0F;
}
.visit_statistic .present .title{
width: 100%;
height: 15px;
font-size: 15px;
font-family: Calibri;
color: #7F1C0F;
margin-top: 8px;
}
.visit_statistic .present .today{
width: 100%;
height: 40px;
margin-top: 10px;
float: left;
}
.visit_statistic .present .today .details{
width: 100%;
height: 20px;
float: left;
font-family: Calibri;
}
.visit_statistic .present .today .details .details_in_number{
width: 40%;
height: 100%;
font-size: 14px;
color: white;
}
.visit_statistic .present .today .details .details_title{
width: 40%;
height: 100%;
font-size: 14px;
color: #7F1C0F;
text-align: left;
} | Project Lotteria/ci/assets/Admin/css/Side menu.css | .side_menu{
width: 230px;
height: 440px;
float: left;
border-radius: 0px 0px 5px 5px;
}
.area{
background: #E42217;
width: 100%;
height: 39px;
float: left;
border-bottom: 1px solid #C11B17;
cursor: pointer;
}
.area#this, .area:hover{
background: #C11B17;
}
.area .icon{
width: 35px;
height: 100%;
float: left;
}
.area.dashboard .icon{
background: url(../image/Side_menu/ic_grid.png) 10px 10px no-repeat;
}
.area.meals_manager .icon{
background: url(../image/Side_menu/ic_list.png) 10px 10px no-repeat;
}
.area.orders_invoices_manager .icon{
background: url(../image/Side_menu/ic_calc.png) 10px 10px no-repeat;
}
.area.account_manager .icon{
background: url(../image/Side_menu/ic_users.png) 10px 10px no-repeat;
}
.area.articles_manager .icon{
background: url(../image/Side_menu/ic_text_document.png) 10px 10px no-repeat;
}
.area.promotions_manager .icon{
background: url(../image/Side_menu/ic_favorite.png) 10px 10px no-repeat;
}
.area a{
float: left;
display: block;
width: 165px;
height: 26px;
padding-top: 13px;
text-decoration: none;
font-size: 12px;
font-family: Arial, Helvetica, sans-serif;
color: white;
}
.search{
width: 100%;
height: 30px;
float: left;
background: url(../image/Side_menu/menu.jpg) left top repeat;
}
.search form.input{
width: 90%;
height: 30px;
margin: 0px auto;
}
.search form.input input[type="text"]{
width: 70%;
height: 100%;
float: left;
border: 1px solid #ddd;
border-radius: 3px 0px 0px 3px;
}
.search form.input input[type="submit"]{
width: 30%;
height: 100%;
float: left;
background: #E42217;
border: 1px solid #E42217;
border-radius: 0px 3px 3px 0px;
color: white;
}
.visit_statistic{
width: 100%;
height: 98px;
border-radius: 5px 5px 5px 5px;
background: #E42217;
float: left;
margin: 0px auto;
}
.visit_statistic div{
width: 50%;
height: 100%;
float: left;
}
.visit_statistic .past .last_visit{
width: 105px;
height: 88px;
margin: 5px;
background: #C11B17;
border-radius: 4px 4px 4px 4px;
}
.visit_statistic .past .last_visit .title{
margin-top: 3px;
width: 100%;
height: 15px;
font-size: 15px;
font-family: Calibri;
color: #7F1C0F;
text-align: center;
}
.visit_statistic .past .last_visit .visit_count{
width: 100%;
height: 30px;
font-size: 30px;
font-family: sans-serif;
color: white;
font-weight: bold;
text-align: center;
}
.visit_statistic .past .last_visit .details{
width: 100%;
height: 20px;
float: left;
font-family: Calibri;
}
.visit_statistic .past .last_visit .details .details_in_number{
width: 45%;
height: 100%;
float: left;
font-size: 15px;
color: white;
text-align: center;
}
.visit_statistic .past .last_visit .details .details_title{
width: 55%;
height: 18;
float: left;
font-size: 13px;
padding-top: 2px;
color: #7F1C0F;
}
.visit_statistic .present .title{
width: 100%;
height: 15px;
font-size: 15px;
font-family: Calibri;
color: #7F1C0F;
margin-top: 8px;
}
.visit_statistic .present .today{
width: 100%;
height: 40px;
margin-top: 10px;
float: left;
}
.visit_statistic .present .today .details{
width: 100%;
height: 20px;
float: left;
font-family: Calibri;
}
.visit_statistic .present .today .details .details_in_number{
width: 40%;
height: 100%;
font-size: 14px;
color: white;
}
.visit_statistic .present .today .details .details_title{
width: 40%;
height: 100%;
font-size: 14px;
color: #7F1C0F;
text-align: left;
} | 0.216342 | 0.099121 |
* {
margin: 0; padding: 0;
box-sizing: border-box;
}
body, html {
width: 100%; height: 100%;
}
/* canvas { width: 100%; height: 100%; display: block } */
#wrapper {
width: 100%; height: 100%;
display: grid;
grid-template-columns: 15rem auto ;
grid-template-rows: 6.3rem 12rem auto ;
grid-template-areas: "head head"
"input graphs"
"input canvas";
justify-items: start;
align-items: start;
}
#wrapper>header {
grid-area: head;
background-color: #eee;
display: block;
width: 100%;
height: 100%;
padding: 0.3rem;
overflow-y: auto;
}
header h1 {
font-size: 1.5rem;
font-family: sans-serif;
margin-bottom: 0.2rem;
}
header img {
display: inline-block;
height: 1.5rem;
}
#form--simSett {
height: 100%;
max-height: 100%;
grid-area: input;
padding: 0.2rem;
/* display: grid;
grid-template-columns: 10rem 5rem; */
justify-items: stretch;
align-items: stretch;
border-right: 1px solid black;
}
#form--simSett .div__input--radio {
display: inline-block;
width: 48%;
text-align: left;
}
#form--simSett label {
padding: 0.2rem;
}
input:checked+label {
background-color: rgb(182, 234, 253);
border-radius: 0.5rem;
}
#form__input--molecules > div {
border-left: 3px solid black;
margin: 0.2rem 0 0 0.5rem ;
padding: 0rem 0rem;
}
#form--simSett * {
margin-bottom: 0.3rem;
}
#form--simSett > div {
border-bottom: 1px solid black;
min-height: 3rem;
}
#form__input--controlers button {
width: 7rem;
height: 2.5rem;
border-radius: 0.5rem;
box-shadow: 3px 3px 5px gray;
display: inline-block;
margin: auto;
font-size: 150%;
background-color: rgb(182, 234, 253);
}
#form__input--controlers #button--playStop {
width: 8rem;
}
#form__input--controlers #button--reload {
width: 3rem;
}
#graphs {
width: 100%; height: 100%;
grid-area: graphs;
border-bottom: 1px solid black;
overflow-y: auto;
scroll-snap-type: y mandatory;
padding: 0.5rem;
}
#graphs .graphs__div--graph {
scroll-snap-align: center;
display: inline-block;
height: 10.3rem;
margin: 0.2rem;
border: 1px solid gray;
box-shadow: 2px 2px 5px gray;
overflow: hidden;
cursor: pointer;
min-width: 1.5rem;
}
#graphs svg {
display: inline-block;
transition: width 0.5s ease-in-out 0s
}
#graphs .graph--head {
display: inline-block;
writing-mode: vertical-lr;
text-orientation:sideways;
transform: rotate(180deg);
text-align: center;
background-color: #ddd;
height: 160px;
}
#canvas--wrapper {
grid-area: canvas;
width: 100%; height: 100%;
overflow: hidden;
cursor: crosshair !important;
}
#canvas--wrapper canvas {
cursor: crosshair !important;
}
/* help */
#help {
position: absolute;
left: 1%;
top: 1%;
width: 98%;
height: 98%;
background-color:rgba(226, 247, 255, 0.95);
border: 2px solid skyblue;
box-shadow: gray 5px 5px 5px;
font-weight: normal;
font-size: 1.3rem;
line-height: 150%;
color: black;
padding: 1rem 2rem;
z-index:-1;
transition: ease-in-out 0.25s;
text-align: justify;
opacity: 0;
visibility: auto;
}
#help::before {
content: "[X] Nápověda :)";
font-weight: bold;
font-size: 1.5rem;
width: 100%;
line-height: 5.0rem;
}
#help.visible { opacity: 1; visibility: visible; z-index: 100;}
.helpIcon {
background-color: rgb(173, 214, 253);
display: inline-block;
width: 1.5rem;
height: 1.5rem;
text-align: center;
border-radius: 50%;
}
.helpIcon::before {
content: "\24D8";
color: rgb(97, 97, 97);
font-size: 1rem;
font-weight: bold;
} | css/style.css | * {
margin: 0; padding: 0;
box-sizing: border-box;
}
body, html {
width: 100%; height: 100%;
}
/* canvas { width: 100%; height: 100%; display: block } */
#wrapper {
width: 100%; height: 100%;
display: grid;
grid-template-columns: 15rem auto ;
grid-template-rows: 6.3rem 12rem auto ;
grid-template-areas: "head head"
"input graphs"
"input canvas";
justify-items: start;
align-items: start;
}
#wrapper>header {
grid-area: head;
background-color: #eee;
display: block;
width: 100%;
height: 100%;
padding: 0.3rem;
overflow-y: auto;
}
header h1 {
font-size: 1.5rem;
font-family: sans-serif;
margin-bottom: 0.2rem;
}
header img {
display: inline-block;
height: 1.5rem;
}
#form--simSett {
height: 100%;
max-height: 100%;
grid-area: input;
padding: 0.2rem;
/* display: grid;
grid-template-columns: 10rem 5rem; */
justify-items: stretch;
align-items: stretch;
border-right: 1px solid black;
}
#form--simSett .div__input--radio {
display: inline-block;
width: 48%;
text-align: left;
}
#form--simSett label {
padding: 0.2rem;
}
input:checked+label {
background-color: rgb(182, 234, 253);
border-radius: 0.5rem;
}
#form__input--molecules > div {
border-left: 3px solid black;
margin: 0.2rem 0 0 0.5rem ;
padding: 0rem 0rem;
}
#form--simSett * {
margin-bottom: 0.3rem;
}
#form--simSett > div {
border-bottom: 1px solid black;
min-height: 3rem;
}
#form__input--controlers button {
width: 7rem;
height: 2.5rem;
border-radius: 0.5rem;
box-shadow: 3px 3px 5px gray;
display: inline-block;
margin: auto;
font-size: 150%;
background-color: rgb(182, 234, 253);
}
#form__input--controlers #button--playStop {
width: 8rem;
}
#form__input--controlers #button--reload {
width: 3rem;
}
#graphs {
width: 100%; height: 100%;
grid-area: graphs;
border-bottom: 1px solid black;
overflow-y: auto;
scroll-snap-type: y mandatory;
padding: 0.5rem;
}
#graphs .graphs__div--graph {
scroll-snap-align: center;
display: inline-block;
height: 10.3rem;
margin: 0.2rem;
border: 1px solid gray;
box-shadow: 2px 2px 5px gray;
overflow: hidden;
cursor: pointer;
min-width: 1.5rem;
}
#graphs svg {
display: inline-block;
transition: width 0.5s ease-in-out 0s
}
#graphs .graph--head {
display: inline-block;
writing-mode: vertical-lr;
text-orientation:sideways;
transform: rotate(180deg);
text-align: center;
background-color: #ddd;
height: 160px;
}
#canvas--wrapper {
grid-area: canvas;
width: 100%; height: 100%;
overflow: hidden;
cursor: crosshair !important;
}
#canvas--wrapper canvas {
cursor: crosshair !important;
}
/* help */
#help {
position: absolute;
left: 1%;
top: 1%;
width: 98%;
height: 98%;
background-color:rgba(226, 247, 255, 0.95);
border: 2px solid skyblue;
box-shadow: gray 5px 5px 5px;
font-weight: normal;
font-size: 1.3rem;
line-height: 150%;
color: black;
padding: 1rem 2rem;
z-index:-1;
transition: ease-in-out 0.25s;
text-align: justify;
opacity: 0;
visibility: auto;
}
#help::before {
content: "[X] Nápověda :)";
font-weight: bold;
font-size: 1.5rem;
width: 100%;
line-height: 5.0rem;
}
#help.visible { opacity: 1; visibility: visible; z-index: 100;}
.helpIcon {
background-color: rgb(173, 214, 253);
display: inline-block;
width: 1.5rem;
height: 1.5rem;
text-align: center;
border-radius: 50%;
}
.helpIcon::before {
content: "\24D8";
color: rgb(97, 97, 97);
font-size: 1rem;
font-weight: bold;
} | 0.582135 | 0.131006 |
html {
box-sizing: border-box;
}
*, *::after, *::before {
box-sizing: inherit;
}
ul, ol {
padding: 0;
margin: 0;
margin-block-start: 0;
margin-block-end: 0;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
margin: 0;
}
ul[class] {
list-style: none;
}
img {
max-width: 100%;
display: block;
}
input, button, textarea, select {
font: inherit;
}
a {
text-decoration: none;
}
/* rem::begin */
/* rem::end */
html, body {
min-height: 100vh;
}
html ._lock, body ._lock {
overflow: hidden;
}
a {
color: #6987be;
}
a:hover {
color: #334d7c;
text-decoration: underline;
}
.wrapper {
display: flex;
flex-direction: column;
min-height: calc(100vh - 86px);
}
.main {
flex: 1 0 auto;
}
.footer {
flex: 0 0 auto;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
.container-sm {
max-width: 500px;
}
.ui__div {
margin-top: 20px;
font-family: 'SFUI-Regular', sans-serif, sans-serif;
text-align: center;
}
.ui__div > * {
margin-bottom: 30px;
position: relative !important;
}
.hidden {
display: none !important;
}
.footer {
font-family: 'SFUI-Regular', sans-serif, sans-serif;
text-align: center;
padding-bottom: 20px;
padding-top: 30px;
}
.form__wrapper {
max-width: 500px;
margin: 0 auto;
}
.header {
margin-bottom: 30px;
}
.text-align-right {
text-align: right;
}
.text-align-left {
text-align: left;
}
.text-align-center {
text-align: center;
}
.row-column{
display: flex;
flex-direction: column;
}
.table > * > * > td {
max-width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding-top: 20px;
padding-bottom: 20px;
}
.table > tbody > * > th {
padding-top: 20px;
padding-bottom: 20px;
}
.deadline__block {
display: inline;
border-radius: 30px;
padding-left: 10px;
padding-right: 10px;
padding-top: 5px;
padding-bottom: 5px;
}
.side_bar__block {
border-radius: 20px;
background: #ffffff;
box-shadow: 0px 0px 43px -9px rgba(0, 0, 0, 0.2);
height: 100%;
padding: 30px;
}
.page__block {
border-radius: 20px;
background: #ffffff;
box-shadow: 0px 0px 43px -9px rgba(0, 0, 0, 0.2);
padding: 15px;
}
.task__title {
border-bottom: 1px solid #b2b2b2;
font-size: 30px;
margin-bottom: 30px;
word-wrap: break-word;
}
.task__text{
font-size: 16px;
}
.task__buttons{
margin-top: 30px;
flex: 0 1 100%;
display: flex;
align-items: flex-end;
flex-wrap: wrap;
}
.task__side_bar{
border-left: 1px solid #b2b2b2;
} | public/assets/css/style.min.css | html {
box-sizing: border-box;
}
*, *::after, *::before {
box-sizing: inherit;
}
ul, ol {
padding: 0;
margin: 0;
margin-block-start: 0;
margin-block-end: 0;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
margin: 0;
}
ul[class] {
list-style: none;
}
img {
max-width: 100%;
display: block;
}
input, button, textarea, select {
font: inherit;
}
a {
text-decoration: none;
}
/* rem::begin */
/* rem::end */
html, body {
min-height: 100vh;
}
html ._lock, body ._lock {
overflow: hidden;
}
a {
color: #6987be;
}
a:hover {
color: #334d7c;
text-decoration: underline;
}
.wrapper {
display: flex;
flex-direction: column;
min-height: calc(100vh - 86px);
}
.main {
flex: 1 0 auto;
}
.footer {
flex: 0 0 auto;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
.container-sm {
max-width: 500px;
}
.ui__div {
margin-top: 20px;
font-family: 'SFUI-Regular', sans-serif, sans-serif;
text-align: center;
}
.ui__div > * {
margin-bottom: 30px;
position: relative !important;
}
.hidden {
display: none !important;
}
.footer {
font-family: 'SFUI-Regular', sans-serif, sans-serif;
text-align: center;
padding-bottom: 20px;
padding-top: 30px;
}
.form__wrapper {
max-width: 500px;
margin: 0 auto;
}
.header {
margin-bottom: 30px;
}
.text-align-right {
text-align: right;
}
.text-align-left {
text-align: left;
}
.text-align-center {
text-align: center;
}
.row-column{
display: flex;
flex-direction: column;
}
.table > * > * > td {
max-width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding-top: 20px;
padding-bottom: 20px;
}
.table > tbody > * > th {
padding-top: 20px;
padding-bottom: 20px;
}
.deadline__block {
display: inline;
border-radius: 30px;
padding-left: 10px;
padding-right: 10px;
padding-top: 5px;
padding-bottom: 5px;
}
.side_bar__block {
border-radius: 20px;
background: #ffffff;
box-shadow: 0px 0px 43px -9px rgba(0, 0, 0, 0.2);
height: 100%;
padding: 30px;
}
.page__block {
border-radius: 20px;
background: #ffffff;
box-shadow: 0px 0px 43px -9px rgba(0, 0, 0, 0.2);
padding: 15px;
}
.task__title {
border-bottom: 1px solid #b2b2b2;
font-size: 30px;
margin-bottom: 30px;
word-wrap: break-word;
}
.task__text{
font-size: 16px;
}
.task__buttons{
margin-top: 30px;
flex: 0 1 100%;
display: flex;
align-items: flex-end;
flex-wrap: wrap;
}
.task__side_bar{
border-left: 1px solid #b2b2b2;
} | 0.591015 | 0.086054 |
@charset "utf-8";
/* CSS Document */
*{margin:0; padding:0}
ul,ol{ list-style:none}
body{ margin:0; padding:0; background:url(../imgs/login_bg.jpg) center;MARGIN:0px 0px; font-family:"SimSun","微软雅黑","Arial Narrow" }
.content_ht{width:1000px;margin:0px auto;height:100%;}
.content_right{float:right;width:500px;}
.content_left{float:left;width:500px;height:460px;}
.left_weizi{width:500px; margin:20% auto 0px auto; height:300px;}
.LOGONEW{width:400px;min-height:420px;height:auto;margin:160px auto 10px auto;-webkit-box-shadow:0px 0px 10px 3px #323949;
box-shadow:0px 0px 10px 3px #323949;
box-shadow:0px 0px 10px 3px #323949;border-radius:5px;background-color:#fff;}
.login_logo{width:400px; height:105px; background:url(../../imgs/logo.png) center no-repeat;border-radius:5px; }
.LOGONEW form input.text{width:288px;margin-left:50px;height:35px;line-height:35px; font-size:14px; padding-left:10px;margin-top:20px;border-radius:5px; border:#b9b9b9 1px solid}
.LOGONEW form input.text_code{width:170px;margin-left:50px;height:35px;line-height:35px;font-size:14px;padding-left:10px;margin-top:20px;border-radius:5px;border:#b9b9b9 1px solid}
.LOGONEW form .errorMessage{margin-left:50px;color:#fc8936;}
.LOGONEW form .btn{width:300px; height:40px; border:none; background:#1f76df; font-family:微软雅黑; font-size:14px; display:block; cursor:pointer; line-height:38px; text-align:center;border-radius:5px; border:#fff 1px solid; margin-top:35px; color:#fff}
.LOGONEW form .btn:hover{width:300px; height:40px;margin-top:35px;border:none; background:#1f76df; font-size:14px; font-family:微软雅黑;display:block; cursor:pointer; line-height:38px; text-align:center;border-radius:5px; border:#fff 1px solid; color:#fff}
.LOGONEW1{ width:260px; float:left}
.admin_bg{font-weight:bold;font-size:16px;background:url(../images/admin_bg.gif) no-repeat left center;padding-left:25px;height:22px;line-height:22px;margin-bottom:10px;}
.bodybox ul li{height:37px;line-height:37px;}
.LOGONEW1 li input{ border:0px solid #008000}
#footer{width:100%;margin-top:100px;}
#footer p{text-align:center;font:14px "微软雅黑"; color:#fff}
#footer p a{ color:#fff; text-decoration:underline}
.bodybox{ margin-left:0px;}
.logn2 img{cursor:pointer; margin-bottom:-5px;}
.lognAD4{ float:left;background:url(../images/user_botton00.gif); height:83px; width:83px; padding:0;margin-top:60px;}
.unpa{height:22px; line-height:22px; font-size:16px; font-weight:bold; font-family:Arial, Helvetica, sans-serif; width:146px; border:none;background: url(../images/inputbg.gif) no-repeat;padding-left:4px;}
.code{height:22px; line-height:22px; font-size:16px; font-weight:bold; font-family:Arial, Helvetica, sans-serif; padding-left:4px; width:79px;
background: url(../images/b_inputbg.gif) no-repeat;margin-right:10px;}
.lognAD4 a{text-indent:-10000px; display:block;cursor: pointer; width:83px; height:83px; overflow:hidden; }
.logn3 img{margin-left:25px; margin-top:4px;}
.footer_bg{margin:0px auto;text-align:center;background:url(../images/footer_bg.gif) #b7d9ff repeat-x bottom;width:100%}
.footer_img{height:50px;font-size:12px;color:#fff;padding-top:10px;background:url(../images/footer_00.gif) no-repeat bottom right;}
*html .logn3{padding:13px 143px 0px 300px;}
*html .logn4{padding:20px 460px 0 20px;} | Public/admin/css/adminlogin.css | @charset "utf-8";
/* CSS Document */
*{margin:0; padding:0}
ul,ol{ list-style:none}
body{ margin:0; padding:0; background:url(../imgs/login_bg.jpg) center;MARGIN:0px 0px; font-family:"SimSun","微软雅黑","Arial Narrow" }
.content_ht{width:1000px;margin:0px auto;height:100%;}
.content_right{float:right;width:500px;}
.content_left{float:left;width:500px;height:460px;}
.left_weizi{width:500px; margin:20% auto 0px auto; height:300px;}
.LOGONEW{width:400px;min-height:420px;height:auto;margin:160px auto 10px auto;-webkit-box-shadow:0px 0px 10px 3px #323949;
box-shadow:0px 0px 10px 3px #323949;
box-shadow:0px 0px 10px 3px #323949;border-radius:5px;background-color:#fff;}
.login_logo{width:400px; height:105px; background:url(../../imgs/logo.png) center no-repeat;border-radius:5px; }
.LOGONEW form input.text{width:288px;margin-left:50px;height:35px;line-height:35px; font-size:14px; padding-left:10px;margin-top:20px;border-radius:5px; border:#b9b9b9 1px solid}
.LOGONEW form input.text_code{width:170px;margin-left:50px;height:35px;line-height:35px;font-size:14px;padding-left:10px;margin-top:20px;border-radius:5px;border:#b9b9b9 1px solid}
.LOGONEW form .errorMessage{margin-left:50px;color:#fc8936;}
.LOGONEW form .btn{width:300px; height:40px; border:none; background:#1f76df; font-family:微软雅黑; font-size:14px; display:block; cursor:pointer; line-height:38px; text-align:center;border-radius:5px; border:#fff 1px solid; margin-top:35px; color:#fff}
.LOGONEW form .btn:hover{width:300px; height:40px;margin-top:35px;border:none; background:#1f76df; font-size:14px; font-family:微软雅黑;display:block; cursor:pointer; line-height:38px; text-align:center;border-radius:5px; border:#fff 1px solid; color:#fff}
.LOGONEW1{ width:260px; float:left}
.admin_bg{font-weight:bold;font-size:16px;background:url(../images/admin_bg.gif) no-repeat left center;padding-left:25px;height:22px;line-height:22px;margin-bottom:10px;}
.bodybox ul li{height:37px;line-height:37px;}
.LOGONEW1 li input{ border:0px solid #008000}
#footer{width:100%;margin-top:100px;}
#footer p{text-align:center;font:14px "微软雅黑"; color:#fff}
#footer p a{ color:#fff; text-decoration:underline}
.bodybox{ margin-left:0px;}
.logn2 img{cursor:pointer; margin-bottom:-5px;}
.lognAD4{ float:left;background:url(../images/user_botton00.gif); height:83px; width:83px; padding:0;margin-top:60px;}
.unpa{height:22px; line-height:22px; font-size:16px; font-weight:bold; font-family:Arial, Helvetica, sans-serif; width:146px; border:none;background: url(../images/inputbg.gif) no-repeat;padding-left:4px;}
.code{height:22px; line-height:22px; font-size:16px; font-weight:bold; font-family:Arial, Helvetica, sans-serif; padding-left:4px; width:79px;
background: url(../images/b_inputbg.gif) no-repeat;margin-right:10px;}
.lognAD4 a{text-indent:-10000px; display:block;cursor: pointer; width:83px; height:83px; overflow:hidden; }
.logn3 img{margin-left:25px; margin-top:4px;}
.footer_bg{margin:0px auto;text-align:center;background:url(../images/footer_bg.gif) #b7d9ff repeat-x bottom;width:100%}
.footer_img{height:50px;font-size:12px;color:#fff;padding-top:10px;background:url(../images/footer_00.gif) no-repeat bottom right;}
*html .logn3{padding:13px 143px 0px 300px;}
*html .logn4{padding:20px 460px 0 20px;} | 0.251924 | 0.069668 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http://www.tumblr.com"), url-prefix("https://www.tumblr.com") {
#tumblr_radar,.radar_header, .recommended_tumblelogs, li[data-sponsored], #help_button, .logo_dot, .tumblr-dot, .spotlight, .is_recommended, #sidebar_footer_nav, .tophat, #discover_button, a[href="/explore"], li[data-pt] {display:/*[[extras]]*/ !important;}
.xkit-disable-gifs-canvas-thumbnail,.embed_iframe,.dockable_video_placeholder,.crt-video {max-width:534px !important;}
.post_full {padding: 15px 2px !important; width:538px !important;}
.post_full.is_full_width.is_photoset .photoset .photoset_row .photoset_photo {margin-left: 1px !important; max-width:534px !important}
.post_full.is_full_width.is_photoset .photoset .photoset_row .photoset_photo img {max-width:533px !important}
.post_full.is_photoset .photoset .photoset_row .photoset_photo:first-child {margin-left: -1px !important;}
.post_full.is_photoset .photoset .photoset_row .photoset_photo {margin-left:2px !important;}
.post_full.is_photoset .photoset .photoset_row .photoset_photo img {max-width:534px !important}
.post_full.is_photoset .photoset .photoset_row:first-child {margin-top:4px !important;}
.post_full.is_photoset .photoset .photoset_row {margin-top:0px !important; max-width:534px !important}
.post_full.is_photoset .photoset .photoset_row a {max-width:534px !important;}
.post_full.is_photoset .photoset .photoset_row a:first-child {margin-left:-2px !important}
/*Up Button*/
.elevator{font-size:70px !important;line-height:60px !important;height:30px !important; width:31px !important; padding:15px !important; border-radius:6px !important;}
.elevator:hover{background-color:rgba(255,255,255,0.8) !important; color:#36465D !important;}
.elevator:active{background-color:rgba(255,255,255,0.9) !important; color:#36465D !important;}
.elevator-wrapper{position:fixed !important; top:15px !important; right:15px !important;z-index:10 !important;}
.tab_notice{background-color:/*[[notificationColor]]*/ !important;}
.tab_notice_value{color:/*[[notificationInternal]]*/ !important;}
.video-preview{width:99% !important}
#new_post_buttons .post_full {padding:10px 0px !important; min-width:540px !important;}
/*Hovers Usability*/
.logo-anchor:active{opacity:1 !important;}
.tab_anchor:hover {opacity:0.7 !important;}
.tab_anchor:active {opacity:0.9 !important;}
.l-header-container--refresh .l-header {min-width:800px !important; width:50% !important;}
.post_avatar, .post_avatar_wrapper {height: 64px !important; width: 64px !important;}
.post_avatar_wrapper {background-size: 64px 64px !important;}
.vjs-control-bar{display:block !important;}
.identity .right_column:after {display: none !important;}
/*Jan 2015 Updates*/
.post_title {font-size:24px !important; line-height: 30px !important;}
.caption-field{ font-size: 30px !important; min-height: 34px !important;}
.caption-field .editor-wrapper {line-height: 42px !important;}
.title-field,.caption-field,.post-form--tag-editor {border:1px rgb(240,240,240) solid !important; padding-left:7px !important;border-radius:3px !important;}
.quote-field {border:1px rgb(240,240,240) solid !important; border-radius:3px !important;min-height:72px !important;width: 528px !important; left: -14px !important;position: relative !important;margin-bottom:16px !important;}
.caption-field{padding-top:4px !important;}
.title-field:hover,.title-field:active,.title-field:focus,.caption-field:hover,.caption-field:active,.caption-field:focus,.quote-field:hover,.quote-field:active,.quote-field:focus {border-color:#DDD !important;}
.post-form--tag-editor{margin:10px 20px !important;}
/*February 2015 Updates*/
.remnant-unit-container {display:/*[[extras]]*/ !important;}
/*March 2015 Updates*/
.recommended-unit-container,.blog-card-compact {display:none !important;}
/*May 2015 Updates*/
.rapid-recs-container,.yamplus-unit-container,.post-it-forward-button {display:none !important;}
/*June 2015 Updates*/
.l-header-container--refresh,.discover-controls-wrapper {position:absolute !important; margin-left:0px !important;}
/*December 2015 Updates*/
.post_media img {max-width:534px !important;}
.video-ad-container {display: /*[[extras]]*/ !important;}
/*April 2015 Updates*/
.standalone-ad-container {display:/*[[extras]]*/ !important;}
.compose-button {opacity:0.9 !important; background-color:rgb(240,240,240) !important;}
.compose-button:hover {opacity:1 !important;}
/*July 2016 Updates*/
.sidebar-ad-content, a[href="/docs/relevantads"], #sidebar-ad {display:/*[[extras]]*/ !important;}
/*September 2016 Updates*/
div[data-sponsored] {display: /*[[extras]]*/ !important;}
/*August 2017 Updates*/
.dfp-ad-container,.dfp-ad {display: /*[[extras]]*/ !important;}
} | data/usercss/106972.user.css | @namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http://www.tumblr.com"), url-prefix("https://www.tumblr.com") {
#tumblr_radar,.radar_header, .recommended_tumblelogs, li[data-sponsored], #help_button, .logo_dot, .tumblr-dot, .spotlight, .is_recommended, #sidebar_footer_nav, .tophat, #discover_button, a[href="/explore"], li[data-pt] {display:/*[[extras]]*/ !important;}
.xkit-disable-gifs-canvas-thumbnail,.embed_iframe,.dockable_video_placeholder,.crt-video {max-width:534px !important;}
.post_full {padding: 15px 2px !important; width:538px !important;}
.post_full.is_full_width.is_photoset .photoset .photoset_row .photoset_photo {margin-left: 1px !important; max-width:534px !important}
.post_full.is_full_width.is_photoset .photoset .photoset_row .photoset_photo img {max-width:533px !important}
.post_full.is_photoset .photoset .photoset_row .photoset_photo:first-child {margin-left: -1px !important;}
.post_full.is_photoset .photoset .photoset_row .photoset_photo {margin-left:2px !important;}
.post_full.is_photoset .photoset .photoset_row .photoset_photo img {max-width:534px !important}
.post_full.is_photoset .photoset .photoset_row:first-child {margin-top:4px !important;}
.post_full.is_photoset .photoset .photoset_row {margin-top:0px !important; max-width:534px !important}
.post_full.is_photoset .photoset .photoset_row a {max-width:534px !important;}
.post_full.is_photoset .photoset .photoset_row a:first-child {margin-left:-2px !important}
/*Up Button*/
.elevator{font-size:70px !important;line-height:60px !important;height:30px !important; width:31px !important; padding:15px !important; border-radius:6px !important;}
.elevator:hover{background-color:rgba(255,255,255,0.8) !important; color:#36465D !important;}
.elevator:active{background-color:rgba(255,255,255,0.9) !important; color:#36465D !important;}
.elevator-wrapper{position:fixed !important; top:15px !important; right:15px !important;z-index:10 !important;}
.tab_notice{background-color:/*[[notificationColor]]*/ !important;}
.tab_notice_value{color:/*[[notificationInternal]]*/ !important;}
.video-preview{width:99% !important}
#new_post_buttons .post_full {padding:10px 0px !important; min-width:540px !important;}
/*Hovers Usability*/
.logo-anchor:active{opacity:1 !important;}
.tab_anchor:hover {opacity:0.7 !important;}
.tab_anchor:active {opacity:0.9 !important;}
.l-header-container--refresh .l-header {min-width:800px !important; width:50% !important;}
.post_avatar, .post_avatar_wrapper {height: 64px !important; width: 64px !important;}
.post_avatar_wrapper {background-size: 64px 64px !important;}
.vjs-control-bar{display:block !important;}
.identity .right_column:after {display: none !important;}
/*Jan 2015 Updates*/
.post_title {font-size:24px !important; line-height: 30px !important;}
.caption-field{ font-size: 30px !important; min-height: 34px !important;}
.caption-field .editor-wrapper {line-height: 42px !important;}
.title-field,.caption-field,.post-form--tag-editor {border:1px rgb(240,240,240) solid !important; padding-left:7px !important;border-radius:3px !important;}
.quote-field {border:1px rgb(240,240,240) solid !important; border-radius:3px !important;min-height:72px !important;width: 528px !important; left: -14px !important;position: relative !important;margin-bottom:16px !important;}
.caption-field{padding-top:4px !important;}
.title-field:hover,.title-field:active,.title-field:focus,.caption-field:hover,.caption-field:active,.caption-field:focus,.quote-field:hover,.quote-field:active,.quote-field:focus {border-color:#DDD !important;}
.post-form--tag-editor{margin:10px 20px !important;}
/*February 2015 Updates*/
.remnant-unit-container {display:/*[[extras]]*/ !important;}
/*March 2015 Updates*/
.recommended-unit-container,.blog-card-compact {display:none !important;}
/*May 2015 Updates*/
.rapid-recs-container,.yamplus-unit-container,.post-it-forward-button {display:none !important;}
/*June 2015 Updates*/
.l-header-container--refresh,.discover-controls-wrapper {position:absolute !important; margin-left:0px !important;}
/*December 2015 Updates*/
.post_media img {max-width:534px !important;}
.video-ad-container {display: /*[[extras]]*/ !important;}
/*April 2015 Updates*/
.standalone-ad-container {display:/*[[extras]]*/ !important;}
.compose-button {opacity:0.9 !important; background-color:rgb(240,240,240) !important;}
.compose-button:hover {opacity:1 !important;}
/*July 2016 Updates*/
.sidebar-ad-content, a[href="/docs/relevantads"], #sidebar-ad {display:/*[[extras]]*/ !important;}
/*September 2016 Updates*/
div[data-sponsored] {display: /*[[extras]]*/ !important;}
/*August 2017 Updates*/
.dfp-ad-container,.dfp-ad {display: /*[[extras]]*/ !important;}
} | 0.161089 | 0.112893 |
.featured {
font-size: 0.8rem;
line-height: 1.5;
color: #555;
text-align: center;
}
.featured h3 {
margin-top: 10px;
margin-bottom: 10px;
font-weight: 400;
color: #333;
text-align: center;
}
.dark .featured,
.dark .featured h3 {
color: #fff;
}
.featured-icon {
display: block;
width: 100%;
font-size: 3rem;
text-align: center;
}
.featured-icon img{
margin: 0 auto;
}
.featured .col-sm-4 p{
text-align: justify;
}
/*************************************************
* Featured Section Widget Ends
**************************************************/
/********************************************
* Why KubeEdge Widget
********************************************/
.why-kubeedge h1{
text-align: center;
color: #ffffff;
font-weight: 700;
width: 100%;
}
.page-heading{
position: relative;
margin-bottom: 20px;
}
.page-heading h1 {
font-size: 24px;
margin-bottom: 5px;
}
.page-heading p {
font-size: 18px;
color:#ffffff;
}
.skill-block {
overflow: hidden;
padding: 5px 15px 15px;
text-align: center;
box-shadow:1px 2px 6px 2px rgba(0, 0, 0, 0.1);
margin: 15px auto;
animation: pulse;
animation-duration: 3s;
animation-delay: 2s;
animation-iteration-count: 1;
}
.sk-border h2 {
color: #fefefe;
display: inline-block;
font-size: 22px;
font-weight: 700;
height: 200px;
width: 180px;
}
.sk-border{
text-align: center;
line-height: 100px;
position:relative;
z-index:0;
margin: 70px auto;
}
.sk-border,
.sk-border:before,
.sk-border:after{
border-style: solid;
border-color: #0179C3;
border-width: 7px;
border-top: none;
border-bottom: none;
height: 111px;
width: 193px;
}
.sk-border:after,
.sk-border:before{
content: "";
position: absolute;
top:0;
left: -7px;
z-index: -1;
}
.sk-border:before{
-webkit-transform: rotate(60deg);
-moz-transform: rotate(60deg);
-ms-transform: rotate(60deg);
-o-transform: rotate(60deg);
transform: rotate(60deg);
}
.sk-border:after{
-webkit-transform: rotate(-60deg);
-moz-transform: rotate(-60deg);
-ms-transform: rotate(-60deg);
-o-transform: rotate(-60deg);
transform: rotate(-60deg);
}
.sk-text h4 {
font-size: 18px;
text-transform: uppercase;
margin-bottom: 10px;
}
/********************************************
* Why KubeEdge Widget Ends
********************************************/
/*******************************************
* Custom Css
*******************************************/
@media (min-width: 1200px)
.container-full-width {
max-width: 1140px;
}
@media (min-width: 992px)
.container-full-width {
max-width: 960px;
}
@media (min-width: 768px)
.container-full-width {
max-width: 720px;
}
@media (min-width: 576px)
.container-full-width {
max-width: 540px;
}
.container-full-width {
width: 98%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.release-link-icon{
color : #3f3f3f;
} | assets/css/custom.css | .featured {
font-size: 0.8rem;
line-height: 1.5;
color: #555;
text-align: center;
}
.featured h3 {
margin-top: 10px;
margin-bottom: 10px;
font-weight: 400;
color: #333;
text-align: center;
}
.dark .featured,
.dark .featured h3 {
color: #fff;
}
.featured-icon {
display: block;
width: 100%;
font-size: 3rem;
text-align: center;
}
.featured-icon img{
margin: 0 auto;
}
.featured .col-sm-4 p{
text-align: justify;
}
/*************************************************
* Featured Section Widget Ends
**************************************************/
/********************************************
* Why KubeEdge Widget
********************************************/
.why-kubeedge h1{
text-align: center;
color: #ffffff;
font-weight: 700;
width: 100%;
}
.page-heading{
position: relative;
margin-bottom: 20px;
}
.page-heading h1 {
font-size: 24px;
margin-bottom: 5px;
}
.page-heading p {
font-size: 18px;
color:#ffffff;
}
.skill-block {
overflow: hidden;
padding: 5px 15px 15px;
text-align: center;
box-shadow:1px 2px 6px 2px rgba(0, 0, 0, 0.1);
margin: 15px auto;
animation: pulse;
animation-duration: 3s;
animation-delay: 2s;
animation-iteration-count: 1;
}
.sk-border h2 {
color: #fefefe;
display: inline-block;
font-size: 22px;
font-weight: 700;
height: 200px;
width: 180px;
}
.sk-border{
text-align: center;
line-height: 100px;
position:relative;
z-index:0;
margin: 70px auto;
}
.sk-border,
.sk-border:before,
.sk-border:after{
border-style: solid;
border-color: #0179C3;
border-width: 7px;
border-top: none;
border-bottom: none;
height: 111px;
width: 193px;
}
.sk-border:after,
.sk-border:before{
content: "";
position: absolute;
top:0;
left: -7px;
z-index: -1;
}
.sk-border:before{
-webkit-transform: rotate(60deg);
-moz-transform: rotate(60deg);
-ms-transform: rotate(60deg);
-o-transform: rotate(60deg);
transform: rotate(60deg);
}
.sk-border:after{
-webkit-transform: rotate(-60deg);
-moz-transform: rotate(-60deg);
-ms-transform: rotate(-60deg);
-o-transform: rotate(-60deg);
transform: rotate(-60deg);
}
.sk-text h4 {
font-size: 18px;
text-transform: uppercase;
margin-bottom: 10px;
}
/********************************************
* Why KubeEdge Widget Ends
********************************************/
/*******************************************
* Custom Css
*******************************************/
@media (min-width: 1200px)
.container-full-width {
max-width: 1140px;
}
@media (min-width: 992px)
.container-full-width {
max-width: 960px;
}
@media (min-width: 768px)
.container-full-width {
max-width: 720px;
}
@media (min-width: 576px)
.container-full-width {
max-width: 540px;
}
.container-full-width {
width: 98%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.release-link-icon{
color : #3f3f3f;
} | 0.477554 | 0.092483 |
.camera_wrap {
display: none;
position: relative;
margin: 0!important;
background: #e8e8e8;
z-index: 0;
}
.camera_wrap img {
max-width: none !important;
}
.camera_fakehover {
height: 100%;
min-height: 60px;
position: relative;
width: 100%;
z-index: 1;
}
.camera_wrap {
width: 100%;
}
.camera_src {
display: none;
}
.cameraCont,
.cameraContents {
height: 100%;
position: relative;
width: 100%;
z-index: 1;
}
.cameraSlide {
bottom: 0;
left: 0;
position: absolute;
right: 0;
top: 0;
width: 100%;
}
.cameraContent {
bottom: 0;
display: none;
left: 0;
position: absolute;
right: 0;
top: 0;
width: 100%;
}
.camera_target {
bottom: 0;
height: 100%;
left: 0;
overflow: hidden;
position: absolute;
right: 0;
text-align: left;
top: 0;
width: 100%;
z-index: 0;
}
.camera_overlayer {
bottom: 0;
height: 100%;
left: 0;
overflow: hidden;
position: absolute;
right: 0;
top: 0;
width: 100%;
z-index: 0;
background: rgba(0, 0, 0, 0.38);
}
.camera_target_content {
bottom: 0;
left: 0;
overflow: hidden;
position: absolute;
right: 0;
top: 0;
z-index: 2;
}
.camera_loader {
background: #ffffff url(../images/camera-loader.gif) no-repeat center;
background: rgba(255, 255, 255, 0.9) url(../images/camera-loader.gif) no-repeat center;
border: 1px solid #ffffff;
-webkit-border-radius: 18px;
-moz-border-radius: 18px;
border-radius: 18px;
height: 36px;
left: 50%;
overflow: hidden;
position: absolute;
margin: -18px 0 0 -18px;
top: 50%;
width: 36px;
z-index: 3;
}
.camera_bar {
bottom: 0;
left: 0;
overflow: hidden;
position: absolute;
right: 0;
top: 0;
z-index: 3;
}
.camera_thumbs_wrap.camera_left .camera_bar,
.camera_thumbs_wrap.camera_right .camera_bar {
height: 100%;
position: absolute;
width: auto;
}
.camera_thumbs_wrap.camera_bottom .camera_bar,
.camera_thumbs_wrap.camera_top .camera_bar {
height: auto;
position: absolute;
width: 100%;
}
.camera_nav_cont {
height: 65px;
overflow: hidden;
position: absolute;
right: 9px;
top: 15px;
width: 120px;
z-index: 4;
}
.camerarelative {
overflow: hidden;
position: relative;
}
.imgFake {
cursor: pointer;
}
.camera_command_wrap .hideNav {
display: none;
}
.camera_command_wrap {
left: 0;
position: relative;
right: 0;
z-index: 4;
}
.camera_clear {
display: block;
clear: both;
}
.showIt {
display: none;
}
.camera_clear {
clear: both;
display: block;
height: 1px;
margin: -1px 0 25px;
position: relative;
}
.camera_next,
.camera_prev {
position: absolute;
top: 50%;
margin-top: -41px;
width: 82px;
height: 82px;
color: #232222;
background: #d4d8d8;
text-align: center;
font: 400 72px/80px 'FontAwesome';
cursor: pointer;
border-radius: 41px;
-webkit-transition: 0.3s color ease;
transition: 0.3s color ease;
z-index: 10;
}
.camera_next:hover,
.camera_prev:hover {
color: #249f9c;
}
.camera_next {
right: 67px;
}
.camera_next:before {
padding-left: 10px;
content: '\f105';
}
.camera_prev {
left: 68px;
}
.camera_prev:before {
padding-right: 10px;
content: '\f104';
}
.camera_caption {
position: absolute;
left: 68px;
right: 67px;
padding: 0 102px;
bottom: 8.166666666666667%;
text-align: center;
}
.camera_caption .text_1 {
padding-bottom: 167px;
letter-spacing: 3.4px;
}
@media (min-width: 980px) and (max-width: 1199px) {
.camera_caption {
top: 18.166666666666667%;
bottom: auto;
}
.camera_caption .text_1 {
font-size: 48px;
line-height: 40px;
padding-bottom: 80px;
}
}
@media (max-width: 979px) {
.camera_caption {
top: 8.166666666666667%;
bottom: auto;
left: 34px;
right: 33.5px;
padding: 0 61px;
}
.camera_caption .text_1 {
font-size: 48px;
line-height: 40px;
padding-bottom: 40px;
}
.camera_next,
.camera_prev {
margin-top: -20.5px;
width: 41px;
height: 41px;
color: #232222;
background: #d4d8d8;
text-align: center;
font: 400 36px/40px 'FontAwesome';
cursor: pointer;
border-radius: 41px;
-webkit-transition: 0.3s color ease;
transition: 0.3s color ease;
z-index: 10;
}
.camera_next:hover,
.camera_prev:hover {
color: #249f9c;
}
.camera_next {
right: 33.5px;
}
.camera_next:before {
padding-left: 5px;
content: '\f105';
}
.camera_prev {
left: 34px;
}
.camera_prev:before {
padding-right: 5px;
content: '\f104';
}
}
@media (max-width: 767px) {
.camera_caption {
display: none!important;
}
}
@media (max-width: 479px) {
.camera_prev {
top: 35px;
left: 20px;
}
.camera_next {
top: 35px;
left: 70px;
}
} | public/css/camera.css | .camera_wrap {
display: none;
position: relative;
margin: 0!important;
background: #e8e8e8;
z-index: 0;
}
.camera_wrap img {
max-width: none !important;
}
.camera_fakehover {
height: 100%;
min-height: 60px;
position: relative;
width: 100%;
z-index: 1;
}
.camera_wrap {
width: 100%;
}
.camera_src {
display: none;
}
.cameraCont,
.cameraContents {
height: 100%;
position: relative;
width: 100%;
z-index: 1;
}
.cameraSlide {
bottom: 0;
left: 0;
position: absolute;
right: 0;
top: 0;
width: 100%;
}
.cameraContent {
bottom: 0;
display: none;
left: 0;
position: absolute;
right: 0;
top: 0;
width: 100%;
}
.camera_target {
bottom: 0;
height: 100%;
left: 0;
overflow: hidden;
position: absolute;
right: 0;
text-align: left;
top: 0;
width: 100%;
z-index: 0;
}
.camera_overlayer {
bottom: 0;
height: 100%;
left: 0;
overflow: hidden;
position: absolute;
right: 0;
top: 0;
width: 100%;
z-index: 0;
background: rgba(0, 0, 0, 0.38);
}
.camera_target_content {
bottom: 0;
left: 0;
overflow: hidden;
position: absolute;
right: 0;
top: 0;
z-index: 2;
}
.camera_loader {
background: #ffffff url(../images/camera-loader.gif) no-repeat center;
background: rgba(255, 255, 255, 0.9) url(../images/camera-loader.gif) no-repeat center;
border: 1px solid #ffffff;
-webkit-border-radius: 18px;
-moz-border-radius: 18px;
border-radius: 18px;
height: 36px;
left: 50%;
overflow: hidden;
position: absolute;
margin: -18px 0 0 -18px;
top: 50%;
width: 36px;
z-index: 3;
}
.camera_bar {
bottom: 0;
left: 0;
overflow: hidden;
position: absolute;
right: 0;
top: 0;
z-index: 3;
}
.camera_thumbs_wrap.camera_left .camera_bar,
.camera_thumbs_wrap.camera_right .camera_bar {
height: 100%;
position: absolute;
width: auto;
}
.camera_thumbs_wrap.camera_bottom .camera_bar,
.camera_thumbs_wrap.camera_top .camera_bar {
height: auto;
position: absolute;
width: 100%;
}
.camera_nav_cont {
height: 65px;
overflow: hidden;
position: absolute;
right: 9px;
top: 15px;
width: 120px;
z-index: 4;
}
.camerarelative {
overflow: hidden;
position: relative;
}
.imgFake {
cursor: pointer;
}
.camera_command_wrap .hideNav {
display: none;
}
.camera_command_wrap {
left: 0;
position: relative;
right: 0;
z-index: 4;
}
.camera_clear {
display: block;
clear: both;
}
.showIt {
display: none;
}
.camera_clear {
clear: both;
display: block;
height: 1px;
margin: -1px 0 25px;
position: relative;
}
.camera_next,
.camera_prev {
position: absolute;
top: 50%;
margin-top: -41px;
width: 82px;
height: 82px;
color: #232222;
background: #d4d8d8;
text-align: center;
font: 400 72px/80px 'FontAwesome';
cursor: pointer;
border-radius: 41px;
-webkit-transition: 0.3s color ease;
transition: 0.3s color ease;
z-index: 10;
}
.camera_next:hover,
.camera_prev:hover {
color: #249f9c;
}
.camera_next {
right: 67px;
}
.camera_next:before {
padding-left: 10px;
content: '\f105';
}
.camera_prev {
left: 68px;
}
.camera_prev:before {
padding-right: 10px;
content: '\f104';
}
.camera_caption {
position: absolute;
left: 68px;
right: 67px;
padding: 0 102px;
bottom: 8.166666666666667%;
text-align: center;
}
.camera_caption .text_1 {
padding-bottom: 167px;
letter-spacing: 3.4px;
}
@media (min-width: 980px) and (max-width: 1199px) {
.camera_caption {
top: 18.166666666666667%;
bottom: auto;
}
.camera_caption .text_1 {
font-size: 48px;
line-height: 40px;
padding-bottom: 80px;
}
}
@media (max-width: 979px) {
.camera_caption {
top: 8.166666666666667%;
bottom: auto;
left: 34px;
right: 33.5px;
padding: 0 61px;
}
.camera_caption .text_1 {
font-size: 48px;
line-height: 40px;
padding-bottom: 40px;
}
.camera_next,
.camera_prev {
margin-top: -20.5px;
width: 41px;
height: 41px;
color: #232222;
background: #d4d8d8;
text-align: center;
font: 400 36px/40px 'FontAwesome';
cursor: pointer;
border-radius: 41px;
-webkit-transition: 0.3s color ease;
transition: 0.3s color ease;
z-index: 10;
}
.camera_next:hover,
.camera_prev:hover {
color: #249f9c;
}
.camera_next {
right: 33.5px;
}
.camera_next:before {
padding-left: 5px;
content: '\f105';
}
.camera_prev {
left: 34px;
}
.camera_prev:before {
padding-right: 5px;
content: '\f104';
}
}
@media (max-width: 767px) {
.camera_caption {
display: none!important;
}
}
@media (max-width: 479px) {
.camera_prev {
top: 35px;
left: 20px;
}
.camera_next {
top: 35px;
left: 70px;
}
} | 0.5769 | 0.098816 |
.chatpage .chat
{
display: -ms-grid;
-ms-grid-columns: 25% 25% 50%;
-ms-grid-rows: 100%;
width: 100%;
height: 100%;
}
/* This selector is used to prevent ui-dark/light.css from overwriting changes
to .win-surface. */
.chatpage .groupslist .win-horizontal.win-viewport .win-surface {
margin-bottom: 60px;
margin-left: 116px;
}
.chatpage .groupslist {
-ms-grid-row: 1;
-ms-grid-column: 1;
height: 100%;
position: relative;
width: 95%;
z-index: 0;
}
.chatpage .groupslist .win-horizontal.win-viewport .win-container {
margin-bottom: 6px;
margin-right: 6px;
}
.chatpage .groupslist .win-item {
-ms-grid-columns: 1fr;
-ms-grid-rows: 1fr 90px;
display: -ms-grid;
height: 250px;
width: 250px;
background-color:#000
}
.chatpage .groupslist .win-item .item-image {
-ms-grid-row-span: 2;
}
.chatpage .groupslist .win-item .item-overlay {
-ms-grid-row: 2;
-ms-grid-rows: 1fr 21px;
display: -ms-grid;
padding: 6px 15px 2px 15px;
}
.chatpage .groupslist .win-item .item-overlay .item-title {
-ms-grid-row: 1;
overflow: hidden;
width: 220px;
}
.chatpage .groupslist .win-item .item-overlay .item-subtitle {
-ms-grid-row: 2;
width: 220px;
}
.chatpage .groupslist .win-item .item-overlay {
background: rgba(0,0,0,0.65);
}
.chatpage .groupslist .win-item .item-overlay .item-title {
color: rgb(255,255,255);
}
.chatpage .groupslist .win-item .item-overlay .item-subtitle {
color: rgb(255,255,255);
}
@media screen and (max-width: 799px) {
.chatpage .groupslist .win-vertical.win-viewport .win-surface {
margin-bottom: 30px;
margin-left: 6px;
}
.chatpage .groupslist .win-vertical.win-viewport .win-container {
margin: 4px;
margin-bottom: 6px;
margin-right: 22px;
padding: 10px;
}
.chatpage .groupslist .win-vertical.win-viewport .win-container:hover {
outline: 0;
}
.chatpage .groupslist .win-item {
-ms-grid-columns: 60px 1fr;
-ms-grid-rows: 1fr;
display: -ms-grid;
height: 60px;
width: 272px;
}
.chatpage .groupslist .win-item .item-image, .chatpage .groupslist .win-item:hover .item-image {
-ms-grid-column: 1;
-ms-grid-row-span: 1;
height: 60px;
width: 60px;
}
.chatpage .groupslist .win-item .item-overlay {
-ms-grid-column: 2;
-ms-grid-row: 1;
-ms-grid-row-align: stretch;
background: transparent;
display: inline-block;
margin-left: 10px;
padding: 0;
}
.chatpage .groupslist .win-item .item-overlay .item-title {
max-height: 40px;
margin-top: 4px;
width: 202px;
}
.chatpage .groupslist .win-item .item-overlay .item-subtitle {
opacity: 0.6;
width: 202px;
}
}
/* The following relates to the Contact list, and mostly duplicates the css for the Groups list above. */
.chatpage .contactslist .win-horizontal.win-viewport .win-surface {
margin-bottom: 60px;
margin-left: 116px;
}
.chatpage .contactslist {
-ms-grid-row: 1;
-ms-grid-column: 2;
height: 100%;
position: relative;
width: 100%;
z-index: 0;
}
.chatpage .contactslist .win-horizontal.win-viewport .win-container {
margin-bottom: 6px;
margin-right: 6px;
}
.chatpage .contactslist .win-item {
-ms-grid-columns: 1fr;
-ms-grid-rows: 1fr 90px;
display: -ms-grid;
height: 250px;
width: 250px;
background-color:#000
}
.chatpage .contactslist .win-item .item-image {
-ms-grid-row-span: 2;
}
.chatpage .contactslist .win-item .item-overlay {
-ms-grid-row: 2;
-ms-grid-rows: 1fr 21px;
display: -ms-grid;
padding: 6px 15px 2px 15px;
}
.chatpage .contactslist .win-item .item-overlay .item-title {
-ms-grid-row: 1;
overflow: hidden;
width: 220px;
}
.chatpage .contactslist .win-item .item-overlay .item-subtitle {
-ms-grid-row: 2;
width: 220px;
}
.chatpage .contactslist .win-item .item-overlay {
background: rgba(0,0,0,0.65);
}
.chatpage .contactslist .win-item .item-overlay .item-title {
color: rgb(255,255,255);
}
.chatpage .contactslist .win-item .item-overlay .item-subtitle {
color: rgb(255,255,255);
}
@media screen and (max-width: 799px) {
.chatpage .contactslist .win-vertical.win-viewport .win-surface {
margin-bottom: 30px;
margin-left: 6px;
}
.chatpage .contactslist .win-vertical.win-viewport .win-container {
margin: 4px;
margin-bottom: 6px;
margin-right: 22px;
padding: 10px;
}
.chatpage .contactslist .win-vertical.win-viewport .win-container:hover {
outline: 0;
}
.chatpage .contactslist .win-item {
-ms-grid-columns: 60px 1fr;
-ms-grid-rows: 1fr;
display: -ms-grid;
height: 60px;
width: 272px;
}
.chatpage .contactslist .win-item .item-image, .chatpage .contactslist .win-item:hover .item-image {
-ms-grid-column: 1;
-ms-grid-row-span: 1;
height: 60px;
width: 60px;
}
.chatpage .contactslist .win-item .item-overlay {
-ms-grid-column: 2;
-ms-grid-row: 1;
-ms-grid-row-align: stretch;
background: transparent;
display: inline-block;
margin-left: 10px;
padding: 0;
}
.chatpage .contactslist .win-item .item-overlay .item-title {
max-height: 40px;
margin-top: 4px;
width: 202px;
}
.chatpage .contactslist .win-item .item-overlay .item-subtitle {
opacity: 0.6;
width: 202px;
}
}
.chatpage .chat .chatTextContainer {
-ms-grid-row: 1;
-ms-grid-column: 3;
width: 100%;
height: 100%;
display: -ms-grid;
-ms-grid-columns: 95%;
-ms-grid-rows: 80% 12%;
}
.chatpage .chat .chatTextEchoContainer {
-ms-grid-row: 1;
-ms-grid-column: 1;
width: 100%;
height: 100%;
margin-left: 10px;
border: 2px solid rgba(255, 255, 255, 0.8);
background-color: rgba(255, 255, 255, 0.8);
}
.chatpage .chat .chatTextEcho {
color: rgba(33, 33, 33, 1.0);
font-size: 24pt;
font-family: "segoe UI";
padding: 8px 0px 8px 12px;
min-width: 64px;
letter-spacing: 0.02em;
}
.chatpage .chat .chatTextInput {
-ms-grid-row: 2;
-ms-grid-column: 1;
width: 100%;
height: 100%;
margin-left: 10px;
margin-top: 30px;
font-size: 32pt;
}
/* The following sets the text shown on the list items to black when the current theme is High Contrast White. */
@media screen and (-ms-high-contrast:black-on-white)
{
.chatpage .groupslist .win-item .item-overlay .item-title {
color: #000
}
.chatpage .groupslist .win-item .item-overlay .item-subtitle {
color: #000
}
.chatpage .contactslist .win-item .item-overlay .item-title {
color: #000
}
.chatpage .contactslist .win-item .item-overlay .item-subtitle {
color: #000
}
} | Official Windows Platform Sample/Windows 8.1 Store app samples/[JavaScript]-Windows 8.1 Store app samples/ARIA sample/JavaScript/AriaSample/pages/chat/chat.css |
.chatpage .chat
{
display: -ms-grid;
-ms-grid-columns: 25% 25% 50%;
-ms-grid-rows: 100%;
width: 100%;
height: 100%;
}
/* This selector is used to prevent ui-dark/light.css from overwriting changes
to .win-surface. */
.chatpage .groupslist .win-horizontal.win-viewport .win-surface {
margin-bottom: 60px;
margin-left: 116px;
}
.chatpage .groupslist {
-ms-grid-row: 1;
-ms-grid-column: 1;
height: 100%;
position: relative;
width: 95%;
z-index: 0;
}
.chatpage .groupslist .win-horizontal.win-viewport .win-container {
margin-bottom: 6px;
margin-right: 6px;
}
.chatpage .groupslist .win-item {
-ms-grid-columns: 1fr;
-ms-grid-rows: 1fr 90px;
display: -ms-grid;
height: 250px;
width: 250px;
background-color:#000
}
.chatpage .groupslist .win-item .item-image {
-ms-grid-row-span: 2;
}
.chatpage .groupslist .win-item .item-overlay {
-ms-grid-row: 2;
-ms-grid-rows: 1fr 21px;
display: -ms-grid;
padding: 6px 15px 2px 15px;
}
.chatpage .groupslist .win-item .item-overlay .item-title {
-ms-grid-row: 1;
overflow: hidden;
width: 220px;
}
.chatpage .groupslist .win-item .item-overlay .item-subtitle {
-ms-grid-row: 2;
width: 220px;
}
.chatpage .groupslist .win-item .item-overlay {
background: rgba(0,0,0,0.65);
}
.chatpage .groupslist .win-item .item-overlay .item-title {
color: rgb(255,255,255);
}
.chatpage .groupslist .win-item .item-overlay .item-subtitle {
color: rgb(255,255,255);
}
@media screen and (max-width: 799px) {
.chatpage .groupslist .win-vertical.win-viewport .win-surface {
margin-bottom: 30px;
margin-left: 6px;
}
.chatpage .groupslist .win-vertical.win-viewport .win-container {
margin: 4px;
margin-bottom: 6px;
margin-right: 22px;
padding: 10px;
}
.chatpage .groupslist .win-vertical.win-viewport .win-container:hover {
outline: 0;
}
.chatpage .groupslist .win-item {
-ms-grid-columns: 60px 1fr;
-ms-grid-rows: 1fr;
display: -ms-grid;
height: 60px;
width: 272px;
}
.chatpage .groupslist .win-item .item-image, .chatpage .groupslist .win-item:hover .item-image {
-ms-grid-column: 1;
-ms-grid-row-span: 1;
height: 60px;
width: 60px;
}
.chatpage .groupslist .win-item .item-overlay {
-ms-grid-column: 2;
-ms-grid-row: 1;
-ms-grid-row-align: stretch;
background: transparent;
display: inline-block;
margin-left: 10px;
padding: 0;
}
.chatpage .groupslist .win-item .item-overlay .item-title {
max-height: 40px;
margin-top: 4px;
width: 202px;
}
.chatpage .groupslist .win-item .item-overlay .item-subtitle {
opacity: 0.6;
width: 202px;
}
}
/* The following relates to the Contact list, and mostly duplicates the css for the Groups list above. */
.chatpage .contactslist .win-horizontal.win-viewport .win-surface {
margin-bottom: 60px;
margin-left: 116px;
}
.chatpage .contactslist {
-ms-grid-row: 1;
-ms-grid-column: 2;
height: 100%;
position: relative;
width: 100%;
z-index: 0;
}
.chatpage .contactslist .win-horizontal.win-viewport .win-container {
margin-bottom: 6px;
margin-right: 6px;
}
.chatpage .contactslist .win-item {
-ms-grid-columns: 1fr;
-ms-grid-rows: 1fr 90px;
display: -ms-grid;
height: 250px;
width: 250px;
background-color:#000
}
.chatpage .contactslist .win-item .item-image {
-ms-grid-row-span: 2;
}
.chatpage .contactslist .win-item .item-overlay {
-ms-grid-row: 2;
-ms-grid-rows: 1fr 21px;
display: -ms-grid;
padding: 6px 15px 2px 15px;
}
.chatpage .contactslist .win-item .item-overlay .item-title {
-ms-grid-row: 1;
overflow: hidden;
width: 220px;
}
.chatpage .contactslist .win-item .item-overlay .item-subtitle {
-ms-grid-row: 2;
width: 220px;
}
.chatpage .contactslist .win-item .item-overlay {
background: rgba(0,0,0,0.65);
}
.chatpage .contactslist .win-item .item-overlay .item-title {
color: rgb(255,255,255);
}
.chatpage .contactslist .win-item .item-overlay .item-subtitle {
color: rgb(255,255,255);
}
@media screen and (max-width: 799px) {
.chatpage .contactslist .win-vertical.win-viewport .win-surface {
margin-bottom: 30px;
margin-left: 6px;
}
.chatpage .contactslist .win-vertical.win-viewport .win-container {
margin: 4px;
margin-bottom: 6px;
margin-right: 22px;
padding: 10px;
}
.chatpage .contactslist .win-vertical.win-viewport .win-container:hover {
outline: 0;
}
.chatpage .contactslist .win-item {
-ms-grid-columns: 60px 1fr;
-ms-grid-rows: 1fr;
display: -ms-grid;
height: 60px;
width: 272px;
}
.chatpage .contactslist .win-item .item-image, .chatpage .contactslist .win-item:hover .item-image {
-ms-grid-column: 1;
-ms-grid-row-span: 1;
height: 60px;
width: 60px;
}
.chatpage .contactslist .win-item .item-overlay {
-ms-grid-column: 2;
-ms-grid-row: 1;
-ms-grid-row-align: stretch;
background: transparent;
display: inline-block;
margin-left: 10px;
padding: 0;
}
.chatpage .contactslist .win-item .item-overlay .item-title {
max-height: 40px;
margin-top: 4px;
width: 202px;
}
.chatpage .contactslist .win-item .item-overlay .item-subtitle {
opacity: 0.6;
width: 202px;
}
}
.chatpage .chat .chatTextContainer {
-ms-grid-row: 1;
-ms-grid-column: 3;
width: 100%;
height: 100%;
display: -ms-grid;
-ms-grid-columns: 95%;
-ms-grid-rows: 80% 12%;
}
.chatpage .chat .chatTextEchoContainer {
-ms-grid-row: 1;
-ms-grid-column: 1;
width: 100%;
height: 100%;
margin-left: 10px;
border: 2px solid rgba(255, 255, 255, 0.8);
background-color: rgba(255, 255, 255, 0.8);
}
.chatpage .chat .chatTextEcho {
color: rgba(33, 33, 33, 1.0);
font-size: 24pt;
font-family: "segoe UI";
padding: 8px 0px 8px 12px;
min-width: 64px;
letter-spacing: 0.02em;
}
.chatpage .chat .chatTextInput {
-ms-grid-row: 2;
-ms-grid-column: 1;
width: 100%;
height: 100%;
margin-left: 10px;
margin-top: 30px;
font-size: 32pt;
}
/* The following sets the text shown on the list items to black when the current theme is High Contrast White. */
@media screen and (-ms-high-contrast:black-on-white)
{
.chatpage .groupslist .win-item .item-overlay .item-title {
color: #000
}
.chatpage .groupslist .win-item .item-overlay .item-subtitle {
color: #000
}
.chatpage .contactslist .win-item .item-overlay .item-title {
color: #000
}
.chatpage .contactslist .win-item .item-overlay .item-subtitle {
color: #000
}
} | 0.47171 | 0.05694 |
border:2px;
border-style:solid;
border-color:#000000;
padding: 0em 1em 0em 1em;
margin-bottom: 2em;
}
#print-site-banner h3 {
margin-top: 1rem;
}
/* Enumerate figures */
.print-site-enumerate-figures figcaption:before {
counter-increment: figurecounter;
content: "Figure " counter(figurecounter) ": ";
}
/* Print URLS:
Change a 'link' to 'link (target)' */
div.print-site-add-full-url section.print-page a[href^="http"]::after{
content: " (" attr(href) ") ";
}
/* Do some nice animations when clicking on a ToC link */
#print-site-page h1:target,
#print-site-page h2:target,
#print-site-page h3:target,
#print-site-page h4:target,
#print-site-page h5:target,
#print-site-page h6:target {
animation: highlight 1.5s ease;
}
#print-site-page .print-page:target h1 {
animation: highlight 1.5s ease;
}
@keyframes highlight {
from { color: orange; }
to { color: none; }
}
/*
Print site table of contents styling
*/
/* Don't display the table of contents in HTML version */
#print-page-toc { display: none }
.print-page-toc-nav {
padding-bottom: 2em;
}
#print-page-toc ul {
/* margin-left: 1.6em; */
margin-top: 0;
margin-bottom: 0;
padding-left: 0;
list-style-position: inside;
}
#print-page-toc ul.print-site-toc-level-2,
#print-page-toc ul.print-site-toc-level-3,
#print-page-toc ul.print-site-toc-level-4,
#print-page-toc ul.print-site-toc-level-5,
#print-page-toc ul.print-site-toc-level-6 {
margin-left: 1.6em;
}
#print-page-toc ul li {
margin-left: 0;
margin-bottom: 0.2em;
}
ul.print-site-toc-level-1 {
list-style-type: none;
}
ul.print-site-toc-level-1 li a {
font-weight: bold;
font-size: 120%;
}
ul.print-site-toc-level-2 li a {
font-weight: normal;
font-size: 100%;
margin-bottom: 0em;
}
#print-site-page ul li.toc-nav-section-title {
padding-top: 1em;
padding-bottom: 0em;
font-size: 110%;
letter-spacing: 1px;
}
#print-site-page ul.toc-section-line-border {
border-left: 5px solid grey;
padding-left: 1.5em;
margin-top: 0.5em;
margin-bottom: 1em;
}
#print-site-page ul {
margin-left: 0em;
}
/* Don't display the section headings that we added
For now, we added them for use only in the table of contents */
#print-site-page h1.nav-section-title,
#print-site-page h2.nav-section-title,
#print-site-page h3.nav-section-title,
#print-site-page h4.nav-section-title,
#print-site-page h5.nav-section-title,
#print-site-page h6.nav-section-title {
padding-top: 1.5em;
padding-bottom: 1em;
padding-left: 1em;
font-size: 2.2em;
font-weight: 300;
line-height: 1.3;
color: var(--md-default-fg-color--light);
}
#print-site-page h1.nav-section-title-end,
#print-site-page h2.nav-section-title-end,
#print-site-page h3.nav-section-title-end,
#print-site-page h4.nav-section-title-end,
#print-site-page h5.nav-section-title-end,
#print-site-page h6.nav-section-title-end { display: none; }
/* In the TOC, we want lines that are children of a section to be displayed with a left margin */
#print-site-page ul li.toc-nav-section-child { padding-left: 1em; }
/* Be able to not print certain elements */
#print-site-page .print-site-plugin-ignore { display: none;}
@media print {
/* included bookmarks on h1 and h2
Doesn't work, but included In case Chrome gets support
for these experimental CSS features that define PDF bookmarks */
/* #print-site-page h1 {
bookmark-level: 1;
bookmark-label: content();
-ah-bookmark-level: 1;
-ro-pdf-bookmark-level: 1;
}
#print-site-page h2 {
bookmark-level: 2;
bookmark-label: content();
-ah-bookmark-level: 2;
-ro-pdf-bookmark-level: 2;
} */
/* Be able to not print certain elements */
.print-site-plugin-ignore { display: none; }
/* Remove print site banner */
#print-site-banner { display: none; }
/* display the table of contents in print version */
#print-page-toc { display: block }
/* PDF page breaks on each MkDocs page, except the first one */
#print-site-page section.print-page {
page-break-before: always;
}
#print-site-page section.print-page:first-of-type {
page-break-before: avoid;
}
/* PDF page breaks - separate title page for each section */
#print-site-page .nav-section-title {
page-break-before: always;
page-break-after: always;
align-content: center;
text-align: center;
vertical-align: middle;
padding-top: 150px !important;
padding-bottom: 0em;
padding-left: 0em;
font-size: 2.5em;
}
#print-site-page p,
#print-site-page pre,
#print-site-page blockquote,
#print-site-page .tabbed-set {
page-break-inside: avoid;
}
/* Avoid a page break immediately after a heading */
/* Credits https://stackoverflow.com/a/9238898/5525118 */
#print-site-page h1 {
page-break-inside: avoid;
}
#print-site-page h1::after {
content: "";
display: block;
height: 100px;
margin-bottom: -100px;
}
#print-site-page footer { display : none; }
#print-site-cover-page {
display: block;
width:100%;
text-align: center;
}
#print-site-cover-page h1 {
font-size: 300%;
}
} | css/print-site.css | border:2px;
border-style:solid;
border-color:#000000;
padding: 0em 1em 0em 1em;
margin-bottom: 2em;
}
#print-site-banner h3 {
margin-top: 1rem;
}
/* Enumerate figures */
.print-site-enumerate-figures figcaption:before {
counter-increment: figurecounter;
content: "Figure " counter(figurecounter) ": ";
}
/* Print URLS:
Change a 'link' to 'link (target)' */
div.print-site-add-full-url section.print-page a[href^="http"]::after{
content: " (" attr(href) ") ";
}
/* Do some nice animations when clicking on a ToC link */
#print-site-page h1:target,
#print-site-page h2:target,
#print-site-page h3:target,
#print-site-page h4:target,
#print-site-page h5:target,
#print-site-page h6:target {
animation: highlight 1.5s ease;
}
#print-site-page .print-page:target h1 {
animation: highlight 1.5s ease;
}
@keyframes highlight {
from { color: orange; }
to { color: none; }
}
/*
Print site table of contents styling
*/
/* Don't display the table of contents in HTML version */
#print-page-toc { display: none }
.print-page-toc-nav {
padding-bottom: 2em;
}
#print-page-toc ul {
/* margin-left: 1.6em; */
margin-top: 0;
margin-bottom: 0;
padding-left: 0;
list-style-position: inside;
}
#print-page-toc ul.print-site-toc-level-2,
#print-page-toc ul.print-site-toc-level-3,
#print-page-toc ul.print-site-toc-level-4,
#print-page-toc ul.print-site-toc-level-5,
#print-page-toc ul.print-site-toc-level-6 {
margin-left: 1.6em;
}
#print-page-toc ul li {
margin-left: 0;
margin-bottom: 0.2em;
}
ul.print-site-toc-level-1 {
list-style-type: none;
}
ul.print-site-toc-level-1 li a {
font-weight: bold;
font-size: 120%;
}
ul.print-site-toc-level-2 li a {
font-weight: normal;
font-size: 100%;
margin-bottom: 0em;
}
#print-site-page ul li.toc-nav-section-title {
padding-top: 1em;
padding-bottom: 0em;
font-size: 110%;
letter-spacing: 1px;
}
#print-site-page ul.toc-section-line-border {
border-left: 5px solid grey;
padding-left: 1.5em;
margin-top: 0.5em;
margin-bottom: 1em;
}
#print-site-page ul {
margin-left: 0em;
}
/* Don't display the section headings that we added
For now, we added them for use only in the table of contents */
#print-site-page h1.nav-section-title,
#print-site-page h2.nav-section-title,
#print-site-page h3.nav-section-title,
#print-site-page h4.nav-section-title,
#print-site-page h5.nav-section-title,
#print-site-page h6.nav-section-title {
padding-top: 1.5em;
padding-bottom: 1em;
padding-left: 1em;
font-size: 2.2em;
font-weight: 300;
line-height: 1.3;
color: var(--md-default-fg-color--light);
}
#print-site-page h1.nav-section-title-end,
#print-site-page h2.nav-section-title-end,
#print-site-page h3.nav-section-title-end,
#print-site-page h4.nav-section-title-end,
#print-site-page h5.nav-section-title-end,
#print-site-page h6.nav-section-title-end { display: none; }
/* In the TOC, we want lines that are children of a section to be displayed with a left margin */
#print-site-page ul li.toc-nav-section-child { padding-left: 1em; }
/* Be able to not print certain elements */
#print-site-page .print-site-plugin-ignore { display: none;}
@media print {
/* included bookmarks on h1 and h2
Doesn't work, but included In case Chrome gets support
for these experimental CSS features that define PDF bookmarks */
/* #print-site-page h1 {
bookmark-level: 1;
bookmark-label: content();
-ah-bookmark-level: 1;
-ro-pdf-bookmark-level: 1;
}
#print-site-page h2 {
bookmark-level: 2;
bookmark-label: content();
-ah-bookmark-level: 2;
-ro-pdf-bookmark-level: 2;
} */
/* Be able to not print certain elements */
.print-site-plugin-ignore { display: none; }
/* Remove print site banner */
#print-site-banner { display: none; }
/* display the table of contents in print version */
#print-page-toc { display: block }
/* PDF page breaks on each MkDocs page, except the first one */
#print-site-page section.print-page {
page-break-before: always;
}
#print-site-page section.print-page:first-of-type {
page-break-before: avoid;
}
/* PDF page breaks - separate title page for each section */
#print-site-page .nav-section-title {
page-break-before: always;
page-break-after: always;
align-content: center;
text-align: center;
vertical-align: middle;
padding-top: 150px !important;
padding-bottom: 0em;
padding-left: 0em;
font-size: 2.5em;
}
#print-site-page p,
#print-site-page pre,
#print-site-page blockquote,
#print-site-page .tabbed-set {
page-break-inside: avoid;
}
/* Avoid a page break immediately after a heading */
/* Credits https://stackoverflow.com/a/9238898/5525118 */
#print-site-page h1 {
page-break-inside: avoid;
}
#print-site-page h1::after {
content: "";
display: block;
height: 100px;
margin-bottom: -100px;
}
#print-site-page footer { display : none; }
#print-site-cover-page {
display: block;
width:100%;
text-align: center;
}
#print-site-cover-page h1 {
font-size: 300%;
}
} | 0.118194 | 0.150185 |
================================================== */
html{height:100%;}
body.login{min-height:100%;position:relative;background-image:url(../../../assets/images/login-bg.jpg);background-position:center;background-repeat:no-repeat;background-size:cover;background-attachment:fixed;overflow:auto;}
body.login::after{content:'';display:block;height:70px;}
*{margin:0;padding:0;box-sizing:border-box;list-style:none;}
/****/
body.login .container{margin:0 auto;}
body.login .wrapper{position:relative;display:flex;align-items:center;justify-content:center;width:100%;height:100%;min-height:calc(100vh - 160px); margin-bottom: 10px;}
body.login .text-center{text-align:center;}
/*BOf Header***/
body.login .logo{ display: flex; align-items: center; height: 70px;}
body.login header{background-color:#ffffff;min-height:80px;}
body.login header .logo img{width:357px;padding-top:23px;}
body.login img{ max-width: none;}
/*EOf Header***/
/*BOf Footer***/
body.login footer{background-color:#fff;margin-left: 0 !important;position: absolute;left: 0;right: 0;bottom: 0;}
body.login .footer-inner{position:relative;}
body.login footer .footer-logo{width:168px;margin:0 auto;padding:23px 0 0 0;}
body.login footer .footer-logo img{width:100%;}
/*BOf Footer***/
/*BOF Loginbox***/
.login-box{
display:flex;align-items:center;justify-content:flex-start;background-color:#ffffff;
width:950px;
position:relative;
}
/*BOF Login Form******/
.login-form{width:100%;display:flex;justify-content:center;}
.login-wrap{width:73%;}
.login-form h3 {
font-family: Arial, Helvetica, sans-serif;
margin-bottom: 10px;
font-size: 26px;
font-weight: bold;
color: #000000;
}
.login-form h4{
font-family: Arial, Helvetica, sans-serif;
margin-bottom: 10px;
font-size: 17px;
font-weight: normal;
color: #41c363;
}
body.login .form .accountButton{outline: 0; cursor: pointer; position: relative; display: block; background: #0064ad; width: 100%; border: 0px; padding: 10px 0; font-size: 13px; border-radius: 0; text-transform: uppercase; overflow: hidden;color:#ffffff;}
body.login .form .accountButton:hover{background-color:#585843;border-color:#585843;}
body.login .form .divider{text-align:center;padding:10px 0;position:relative;}
body.login .form .divider h2{font-family: Arial, Helvetica, sans-serif;position: relative;z-index: 2;background-color: #d07936;display: inline-block;padding: 16px 13px;color: #ffffff;border-radius: 100px;font-size: 18px;}
body.login .form .divider:after{background-color: #cecece;position: absolute;content: "";top: 37px;left: 0;width: 100%;height: 1px;}
body.login .form .entry{padding:15px 0 0px 0;position:relative;}
body.login .form .entry-item{padding:0 0 28px 0;position:relative;margin: 0;}
body.login .form .entry-item label {
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: normal;
display: flex;
padding-bottom: 5px;
min-height: 30px;
}
body.login .form .entry-item label p{ display: flex; align-items: flex-end; line-height: 23px;margin:0;}
body.login .form .entry-item input{
width: 100%;
outline: 0;
box-shadow: none;
border-color: #b6b9bd;
border-style: solid;
border-width: 0 0 2px 0;
font-size: 16px;
border: 1px solid #c0c5ca;
border-radius: 0;
background: #fff;
min-height: 40px;
padding: 0 10px;
position: relative;
margin-top: 5px;;
}
body.login input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 100px white inset !important;
-webkit-text-fill-color: #000 !important;
background: transparent !important;
}
body.login input:-internal-autofill-selected {
background-color: #fff !important;
background-image: none !important;
color: rgb(0, 0, 0) !important;
}
/*.form .entry-item input.input-validation-error:focus{border-color:rgba(255,71,71,.95);}*/
body.login .form .entry-item input.input-validation-error{border-color:rgba(255,71,71,.95);}
/* .form .entry-item input:focus{border-color:#41c363;} */
body.login .form .entry-item input[type="password"]{padding-right:150px;}
body.login .form .buttons{padding:20px 0 0 0;}
#forgotPassword{position:absolute;right:0;bottom:-33px;font-size:16px;color:#41c363;font-family:Arial, Helvetica, sans-serif;font-weight:normal !important;text-decoration:none; z-index:5;}
#forgotPassword:hover{text-decoration:underline;}
body.login .form .rememberMe label{font-family:Arial, Helvetica, sans-serif;font-size:14px;color:#000000; position:relative; padding-left: 15px;}
body.login .form .rememberMe label:before{ content:""; display:inline-block; width: 18px ; height: 18px; vertical-align:middle; border:solid 2px #0003; top:-4px; left:-17px; right: 0; bottom: 0;
position: absolute; border-radius: 2px; pointer-events: none;}
body.login .form .rememberMe input:checked + label:before{ background:#41c363 ; border-color:#41c363; content:"\2713"; color:#fff; font-size:20px; line-height:18px; text-align:center }
body.login .form .rememberMe input{ opacity:0}
body.login .form .buttons button{
background-color:#000000;border-color:#ffffff;border-style:solid;border-width:10px;border-radius:100px;
width:95px;height:95px;text-indent:-999999px;background-image:url(../../../assets/images/arrow.png);background-position:0 0;background-repeat:no-repeat;
position:absolute;bottom:0;right:-130px;outline:0;box-shadow:none;cursor:pointer;
font-family:Arial, Helvetica, sans-serif;font-size:18px;text-transform:uppercase;color:#ffffff;
}
body.login .form .buttons button:hover{background-color:#41c363;}
body.login .form .buttons button:hover:focus, .btn-primary:not(:disabled):not(.disabled):active{background-color:#41c363; box-shadow: none !important; border-color: #ffffff; outline: none;}
body.login .form .error{color: red;font-family: Arial, Helvetica, sans-serif;font-size: 12px;padding: 10px 12px;top: auto;}
body.login .form .error[aria-hidden="true"]{display:none;}
body.login .form .error[aria-hidden="false"]{display:block;}
body.login .form .error p{color:red;font-family: Arial, Helvetica, sans-serif;font-size: 12px;}
.signup-link{ font-family:Arial, Helvetica, sans-serif;font-size:14px;color:#000000; position:relative; ; margin:20px 0 0 0; text-align:center;}
.signup-link a{ color:#000000;}
.divider{width: 100%; border-top: 1px solid #c0c5ca; margin: 10px 12px 15px;}
.rememberMe{ text-align:center}
body.login .form .entry-item label img{ margin-right:8px; vertical-align:bottom;}
body.login .cancel-bt {
position: absolute;
top:-10px;
right: -10px;
border-width: 10px;
border-radius: 100px;
width: 50px;
height: 50px;
padding: 0;
background-color:#000000;
text-align:center;
text-decoration:none;
color:#ffffff !important;
font-family:Arial, Helvetica, sans-serif;
font-size:20px;
line-height:40px;
border:solid 5px #ffffff;
cursor: pointer;
}
body.login .cancel-bt:hover {
background-color: #41c363;
opacity: 1;
}
body.login .forgotpassinfo {font-family: Arial, Helvetica, sans-serif; font-size: 14px; padding-bottom: 5px;margin-bottom: 20px;}
body.login .forgotpassheader {margin-bottom: 10px;}
body.login .alert-success {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
line-height: 1.42857143;
animation-name: example;
animation-duration: 30s;
position: absolute;
top: 50px;
width: 380px;
opacity: 0;
}
body.login .alert-success strong {
font-weight: 700;
}
@keyframes example {
0% {
opacity: 1;
display: block;
}
90% {
opacity: 1;
}
100% {
opacity: 0;
}
}
body.login .error-icon {
position: absolute;
right: 10px;
top: 44px;
}
body.login .error-text {
display: none;
background: #000;
color: #ffffff;
padding: 6px 9px;
font-size: 12px;
border-radius: 4px;
position: absolute;
right: -50%;
bottom: 12px;
margin-right: 120px;
text-align: center;
z-index: 99;
}
body.login .error-icon:hover ~ .error-text{display: block;}
body.login .alert-error {
color: #a94442;
background-color: #f2dede;
border-color: #d6e9c6;
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
line-height: 1.42857143;
position: absolute;
top: 50px;
width: 380px;
animation-name: example;
animation-duration: 120s;
position: absolute;
top: 50px;
width: 380px;
opacity: 0;
}
body.login .errorclassids {
padding-bottom: 25px !important;
word-break: break-all;
}
body.login .form .rememberMe label {
white-space: nowrap;
}
/*EOF Login Form******/
@media (min-width: 320px) {
body.login .container{width:95%; max-width: none;}
/*BOf Header***/
body.login header{min-height:80px;}
body.login header .logo img{width: 140px;padding-top:15px;}
/*EOf Header***/
/*BOf Login box*****/
body.login .right-img{display:none;}
body.login .wrapper > div {width:95%;}
body.login .login-box{width:100%;margin:25px 0;}
body.login .login-wrap{padding:45px 0 45px 0;}
body.login .form .buttons button{position:relative;background-image:none;text-indent:inherit;border-radius:5px;width:100%;height:auto;padding:15px;right:0;bottom:0;border-width:0;}
#forgotPassword{position:relative;top:auto;display:block;padding-top:10px;text-align:right;}
body.login .form .entry-item input[type="password"]{padding-right:0;}
/*BOf Login box*****/
}
@media (min-width: 568px){
/*BOf Header***/
body.login header{min-height:80px;}
body.login header .logo img{width: 140px;padding-top:15px;}
body.login .rememberMe{ float:left}
body.login .signup-link{ float:right; padding-left: 15px; margin-top:0;}
body.login .form .buttons{ margin-top:20px;}
/*EOf Header***/
}
@media (min-width: 768px){
body.login .form .buttons button{position:absolute;bottom:0;right:-115px;border-width:10px;border-radius:100px;width:95px;height:95px;padding:0;background-image:url(../../../assets/images/arrow.png);text-indent:-999999px;}
body.login .login-box{width:90%;}
body.login .login-wrap{padding:45px 0;}
#forgotPassword{position:absolute;bottom:-33px;display:block;padding-top:0;text-align:right;}
body.login .form .entry-item input[type="password"]{padding-right:150px;}
}
@media (min-width: 950px){
body.login .login-box{width:920px;margin:20px 0;}
/*BOf Footer***/
/*EOf Footer***/
}
@media (min-width: 1024px){
/*BOf Login box*****/
body.login .right-img{display:block;}
body.login .right-img img{ vertical-align:top}
body.login .wrapper > div {width:auto;}
/*BOf Login box*****/
}
@media (min-width: 1024px){
/*BOf Header***/
body.login header{min-height:70px;}
body.login header .logo img {
width: 150px;
padding-top: 0;
}
/*EOf Header***/
}
@media (min-width: 1880px){
body.login .container{width:1870px;}
}
@media (min-width: 576px) {
#forgotPassword {
position: absolute !important;
}
}
@media (max-width: 575px) {
body.login .rememberMe {
margin-top: 15px;
text-align: left !important;
}
body.login #forgotPassword {
text-align: left !important;
}
} | iot.solution.app/src/app/components/login-header/login-header.css | ================================================== */
html{height:100%;}
body.login{min-height:100%;position:relative;background-image:url(../../../assets/images/login-bg.jpg);background-position:center;background-repeat:no-repeat;background-size:cover;background-attachment:fixed;overflow:auto;}
body.login::after{content:'';display:block;height:70px;}
*{margin:0;padding:0;box-sizing:border-box;list-style:none;}
/****/
body.login .container{margin:0 auto;}
body.login .wrapper{position:relative;display:flex;align-items:center;justify-content:center;width:100%;height:100%;min-height:calc(100vh - 160px); margin-bottom: 10px;}
body.login .text-center{text-align:center;}
/*BOf Header***/
body.login .logo{ display: flex; align-items: center; height: 70px;}
body.login header{background-color:#ffffff;min-height:80px;}
body.login header .logo img{width:357px;padding-top:23px;}
body.login img{ max-width: none;}
/*EOf Header***/
/*BOf Footer***/
body.login footer{background-color:#fff;margin-left: 0 !important;position: absolute;left: 0;right: 0;bottom: 0;}
body.login .footer-inner{position:relative;}
body.login footer .footer-logo{width:168px;margin:0 auto;padding:23px 0 0 0;}
body.login footer .footer-logo img{width:100%;}
/*BOf Footer***/
/*BOF Loginbox***/
.login-box{
display:flex;align-items:center;justify-content:flex-start;background-color:#ffffff;
width:950px;
position:relative;
}
/*BOF Login Form******/
.login-form{width:100%;display:flex;justify-content:center;}
.login-wrap{width:73%;}
.login-form h3 {
font-family: Arial, Helvetica, sans-serif;
margin-bottom: 10px;
font-size: 26px;
font-weight: bold;
color: #000000;
}
.login-form h4{
font-family: Arial, Helvetica, sans-serif;
margin-bottom: 10px;
font-size: 17px;
font-weight: normal;
color: #41c363;
}
body.login .form .accountButton{outline: 0; cursor: pointer; position: relative; display: block; background: #0064ad; width: 100%; border: 0px; padding: 10px 0; font-size: 13px; border-radius: 0; text-transform: uppercase; overflow: hidden;color:#ffffff;}
body.login .form .accountButton:hover{background-color:#585843;border-color:#585843;}
body.login .form .divider{text-align:center;padding:10px 0;position:relative;}
body.login .form .divider h2{font-family: Arial, Helvetica, sans-serif;position: relative;z-index: 2;background-color: #d07936;display: inline-block;padding: 16px 13px;color: #ffffff;border-radius: 100px;font-size: 18px;}
body.login .form .divider:after{background-color: #cecece;position: absolute;content: "";top: 37px;left: 0;width: 100%;height: 1px;}
body.login .form .entry{padding:15px 0 0px 0;position:relative;}
body.login .form .entry-item{padding:0 0 28px 0;position:relative;margin: 0;}
body.login .form .entry-item label {
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: normal;
display: flex;
padding-bottom: 5px;
min-height: 30px;
}
body.login .form .entry-item label p{ display: flex; align-items: flex-end; line-height: 23px;margin:0;}
body.login .form .entry-item input{
width: 100%;
outline: 0;
box-shadow: none;
border-color: #b6b9bd;
border-style: solid;
border-width: 0 0 2px 0;
font-size: 16px;
border: 1px solid #c0c5ca;
border-radius: 0;
background: #fff;
min-height: 40px;
padding: 0 10px;
position: relative;
margin-top: 5px;;
}
body.login input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 100px white inset !important;
-webkit-text-fill-color: #000 !important;
background: transparent !important;
}
body.login input:-internal-autofill-selected {
background-color: #fff !important;
background-image: none !important;
color: rgb(0, 0, 0) !important;
}
/*.form .entry-item input.input-validation-error:focus{border-color:rgba(255,71,71,.95);}*/
body.login .form .entry-item input.input-validation-error{border-color:rgba(255,71,71,.95);}
/* .form .entry-item input:focus{border-color:#41c363;} */
body.login .form .entry-item input[type="password"]{padding-right:150px;}
body.login .form .buttons{padding:20px 0 0 0;}
#forgotPassword{position:absolute;right:0;bottom:-33px;font-size:16px;color:#41c363;font-family:Arial, Helvetica, sans-serif;font-weight:normal !important;text-decoration:none; z-index:5;}
#forgotPassword:hover{text-decoration:underline;}
body.login .form .rememberMe label{font-family:Arial, Helvetica, sans-serif;font-size:14px;color:#000000; position:relative; padding-left: 15px;}
body.login .form .rememberMe label:before{ content:""; display:inline-block; width: 18px ; height: 18px; vertical-align:middle; border:solid 2px #0003; top:-4px; left:-17px; right: 0; bottom: 0;
position: absolute; border-radius: 2px; pointer-events: none;}
body.login .form .rememberMe input:checked + label:before{ background:#41c363 ; border-color:#41c363; content:"\2713"; color:#fff; font-size:20px; line-height:18px; text-align:center }
body.login .form .rememberMe input{ opacity:0}
body.login .form .buttons button{
background-color:#000000;border-color:#ffffff;border-style:solid;border-width:10px;border-radius:100px;
width:95px;height:95px;text-indent:-999999px;background-image:url(../../../assets/images/arrow.png);background-position:0 0;background-repeat:no-repeat;
position:absolute;bottom:0;right:-130px;outline:0;box-shadow:none;cursor:pointer;
font-family:Arial, Helvetica, sans-serif;font-size:18px;text-transform:uppercase;color:#ffffff;
}
body.login .form .buttons button:hover{background-color:#41c363;}
body.login .form .buttons button:hover:focus, .btn-primary:not(:disabled):not(.disabled):active{background-color:#41c363; box-shadow: none !important; border-color: #ffffff; outline: none;}
body.login .form .error{color: red;font-family: Arial, Helvetica, sans-serif;font-size: 12px;padding: 10px 12px;top: auto;}
body.login .form .error[aria-hidden="true"]{display:none;}
body.login .form .error[aria-hidden="false"]{display:block;}
body.login .form .error p{color:red;font-family: Arial, Helvetica, sans-serif;font-size: 12px;}
.signup-link{ font-family:Arial, Helvetica, sans-serif;font-size:14px;color:#000000; position:relative; ; margin:20px 0 0 0; text-align:center;}
.signup-link a{ color:#000000;}
.divider{width: 100%; border-top: 1px solid #c0c5ca; margin: 10px 12px 15px;}
.rememberMe{ text-align:center}
body.login .form .entry-item label img{ margin-right:8px; vertical-align:bottom;}
body.login .cancel-bt {
position: absolute;
top:-10px;
right: -10px;
border-width: 10px;
border-radius: 100px;
width: 50px;
height: 50px;
padding: 0;
background-color:#000000;
text-align:center;
text-decoration:none;
color:#ffffff !important;
font-family:Arial, Helvetica, sans-serif;
font-size:20px;
line-height:40px;
border:solid 5px #ffffff;
cursor: pointer;
}
body.login .cancel-bt:hover {
background-color: #41c363;
opacity: 1;
}
body.login .forgotpassinfo {font-family: Arial, Helvetica, sans-serif; font-size: 14px; padding-bottom: 5px;margin-bottom: 20px;}
body.login .forgotpassheader {margin-bottom: 10px;}
body.login .alert-success {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
line-height: 1.42857143;
animation-name: example;
animation-duration: 30s;
position: absolute;
top: 50px;
width: 380px;
opacity: 0;
}
body.login .alert-success strong {
font-weight: 700;
}
@keyframes example {
0% {
opacity: 1;
display: block;
}
90% {
opacity: 1;
}
100% {
opacity: 0;
}
}
body.login .error-icon {
position: absolute;
right: 10px;
top: 44px;
}
body.login .error-text {
display: none;
background: #000;
color: #ffffff;
padding: 6px 9px;
font-size: 12px;
border-radius: 4px;
position: absolute;
right: -50%;
bottom: 12px;
margin-right: 120px;
text-align: center;
z-index: 99;
}
body.login .error-icon:hover ~ .error-text{display: block;}
body.login .alert-error {
color: #a94442;
background-color: #f2dede;
border-color: #d6e9c6;
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
line-height: 1.42857143;
position: absolute;
top: 50px;
width: 380px;
animation-name: example;
animation-duration: 120s;
position: absolute;
top: 50px;
width: 380px;
opacity: 0;
}
body.login .errorclassids {
padding-bottom: 25px !important;
word-break: break-all;
}
body.login .form .rememberMe label {
white-space: nowrap;
}
/*EOF Login Form******/
@media (min-width: 320px) {
body.login .container{width:95%; max-width: none;}
/*BOf Header***/
body.login header{min-height:80px;}
body.login header .logo img{width: 140px;padding-top:15px;}
/*EOf Header***/
/*BOf Login box*****/
body.login .right-img{display:none;}
body.login .wrapper > div {width:95%;}
body.login .login-box{width:100%;margin:25px 0;}
body.login .login-wrap{padding:45px 0 45px 0;}
body.login .form .buttons button{position:relative;background-image:none;text-indent:inherit;border-radius:5px;width:100%;height:auto;padding:15px;right:0;bottom:0;border-width:0;}
#forgotPassword{position:relative;top:auto;display:block;padding-top:10px;text-align:right;}
body.login .form .entry-item input[type="password"]{padding-right:0;}
/*BOf Login box*****/
}
@media (min-width: 568px){
/*BOf Header***/
body.login header{min-height:80px;}
body.login header .logo img{width: 140px;padding-top:15px;}
body.login .rememberMe{ float:left}
body.login .signup-link{ float:right; padding-left: 15px; margin-top:0;}
body.login .form .buttons{ margin-top:20px;}
/*EOf Header***/
}
@media (min-width: 768px){
body.login .form .buttons button{position:absolute;bottom:0;right:-115px;border-width:10px;border-radius:100px;width:95px;height:95px;padding:0;background-image:url(../../../assets/images/arrow.png);text-indent:-999999px;}
body.login .login-box{width:90%;}
body.login .login-wrap{padding:45px 0;}
#forgotPassword{position:absolute;bottom:-33px;display:block;padding-top:0;text-align:right;}
body.login .form .entry-item input[type="password"]{padding-right:150px;}
}
@media (min-width: 950px){
body.login .login-box{width:920px;margin:20px 0;}
/*BOf Footer***/
/*EOf Footer***/
}
@media (min-width: 1024px){
/*BOf Login box*****/
body.login .right-img{display:block;}
body.login .right-img img{ vertical-align:top}
body.login .wrapper > div {width:auto;}
/*BOf Login box*****/
}
@media (min-width: 1024px){
/*BOf Header***/
body.login header{min-height:70px;}
body.login header .logo img {
width: 150px;
padding-top: 0;
}
/*EOf Header***/
}
@media (min-width: 1880px){
body.login .container{width:1870px;}
}
@media (min-width: 576px) {
#forgotPassword {
position: absolute !important;
}
}
@media (max-width: 575px) {
body.login .rememberMe {
margin-top: 15px;
text-align: left !important;
}
body.login #forgotPassword {
text-align: left !important;
}
} | 0.179854 | 0.040999 |
.background_glossyCoral8,
.hover_background_glossyCoral8:hover,
.active_background_glossyCoral8:active:hover {
background: #892500;
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04)));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
}
.background_glossyCoral8h,
.hover_background_glossyCoral8h:hover,
.active_background_glossyCoral8h:active:hover {
background: #892500;
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04)));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
}
.background_glossyCoral8a,
.hover_background_glossyCoral8a:hover,
.active_background_glossyCoral8a:active:hover {
background: #892500;
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, .04)), color-stop(50%, rgba(0, 0, 0, .10)), color-stop(51%, rgba(255, 255, 255, .00)), color-stop(100%, rgba(255, 255, 255, .30)));
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: -o-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: -ms-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: linear-gradient(to bottom, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff',GradientType=0 );
}
.background_glossyCoral8s,
.hover_background_glossyCoral8s:hover,
.active_background_glossyCoral8s:active:hover {
background: #892500;
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04)));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
}
.background_color_glossyCoral8,
.hover_background_color_glossyCoral8:hover,
.active_background_color_glossyCoral8:active:hover {
background-color:#892500;
}
.background_first_color_glossyCoral8,
.hover_background_first_color_glossyCoral8:hover,
.active_background_first_color_glossyCoral8:active:hover {
background-color:#ffffff;
}
.background_last_color_glossyCoral8,
.hover_background_last_color_glossyCoral8:hover,
.active_background_color_last_glossyCoral8:active:hover {
background-color:#000000;
}
/* ------------------------------ color settings -------------------------------*/
.color_glossyCoral8,
.hover_color_glossyCoral8:hover,
.active_color_glossyCoral8:active:hover {
color: #c8c8c8;
}
.color_glossyCoral8h,
.hover_color_glossyCoral8h:hover,
.active_color_glossyCoral8h:active:hover {
color: #c8c8c8;
}
.color_glossyCoral8a,
.hover_color_glossyCoral8a:hover,
.active_color_glossyCoral8a:active:hover {
color: #c8c8c8;
}
.color_glossyCoral8s,
.hover_color_glossyCoral8s:hover,
.active_color_glossyCoral8s:active:hover {
color: #c8c8c8;
}
/* -------------------------- border color settings -----------------------------*/
.border_glossyCoral8,
.hover_border_glossyCoral8:hover,
.active_border_glossyCoral8:active:hover {
border-color: #6e1d00 #6e1d00 #6e1d00 #6e1d00;
}
.border_glossyCoral8h,
.hover_border_glossyCoral8h:hover,
.active_border_glossyCoral8h:active:hover {
border-color: #591800 #591800 #591800 #591800;
}
.border_glossyCoral8a,
.hover_border_glossyCoral8a:hover,
.active_border_glossyCoral8a:active:hover {
border-color: #451200 #451200 #451200 #451200;
}
.border_glossyCoral8s,
.hover_border_glossyCoral8s:hover,
.active_border_glossyCoral8s:active:hover {
border-color: #6e1d00 #6e1d00 #6e1d00 #6e1d00;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_glossyCoral8,
.hover_shadow_expand_glossyCoral8:hover,
.active_shadow_expand_glossyCoral8:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(137, 37, 0, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(137, 37, 0, .39);
box-shadow: 0em 0em 1em 0.25em rgba(137, 37, 0, .39);
}
.shadow_expand_glossyCoral8h,
.hover_shadow_expand_glossyCoral8h:hover,
.active_shadow_expand_glossyCoral8h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(164, 44, 0, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(164, 44, 0, .50);
box-shadow: 0em 0em 1em 0.25em rgba(164, 44, 0, .50);
}
.shadow_expand_glossyCoral8a,
.hover_shadow_expand_glossyCoral8a:hover,
.active_shadow_expand_glossyCoral8a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(123, 33, 0, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(123, 33, 0, .63);
box-shadow: 0em 0em 1em 0.25em rgba(123, 33, 0, .63);
}
.shadow_expand_glossyCoral8s,
.hover_shadow_expand_glossyCoral8s:hover,
.active_shadow_expand_glossyCoral8s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(123, 33, 0, .71);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(123, 33, 0, .71);
box-shadow: 0em 0em 1em 0.25em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_glossyCoral8,
.hover_shadow_left_glossyCoral8:hover,
.active_shadow_left_glossyCoral8:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(137, 37, 0, .39);
box-shadow: -0.5em -0.5em 1em rgba(137, 37, 0, .39);
}
.shadow_left_glossyCoral8h,
.hover_shadow_left_glossyCoral8h:hover,
.active_shadow_left_glossyCoral8h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(164, 44, 0, .50);
box-shadow: -0.5em -0.5em 1em rgba(164, 44, 0, .50);
}
.shadow_left_glossyCoral8a,
.hover_shadow_left_glossyCoral8a:hover,
.active_shadow_left_glossyCoral8a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .63);
box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .63);
}
.shadow_left_glossyCoral8s,
.hover_shadow_left_glossyCoral8s:hover,
.active_shadow_left_glossyCoral8s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .71);
box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_glossyCoral8,
.hover_shadow_right_glossyCoral8:hover,
.active_shadow_right_glossyCoral8:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(137, 37, 0, .39);
box-shadow: 0.5em 0em 1em rgba(137, 37, 0, .39);
}
.shadow_right_glossyCoral8h,
.hover_shadow_right_glossyCoral8h:hover,
.active_shadow_right_glossyCoral8h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(164, 44, 0, .50);
box-shadow: 0.5em 0em 1em rgba(164, 44, 0, .50);
}
.shadow_right_glossyCoral8a,
.hover_shadow_right_glossyCoral8a:hover,
.active_shadow_right_glossyCoral8a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(123, 33, 0, .63);
box-shadow: 0.5em 0em 1em rgba(123, 33, 0, .63);
}
.shadow_right_glossyCoral8s,
.hover_shadow_right_glossyCoral8s:hover,
.active_shadow_right_glossyCoral8s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: 0.5em 0em 1em rgba(123, 33, 0, .71);
box-shadow: 0.5em 0em 1em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_glossyCoral8,
.hover_shadow_top_glossyCoral8:hover,
.active_shadow_top_glossyCoral8:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(137, 37, 0, .39);
box-shadow: 0em -0.5em 1em rgba(137, 37, 0, .39);
}
.shadow_top_glossyCoral8h,
.hover_shadow_top_glossyCoral8h:hover,
.active_shadow_top_glossyCoral8h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(164, 44, 0, .50);
box-shadow: 0em -0.5em 1em rgba(164, 44, 0, .50);
}
.shadow_top_glossyCoral8a,
.hover_shadow_top_glossyCoral8a:hover,
.active_shadow_top_glossyCoral8a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(123, 33, 0, .63);
box-shadow: 0em -0.5em 1em rgba(123, 33, 0, .63);
}
.shadow_top_glossyCoral8s,
.hover_shadow_top_glossyCoral8s:hover,
.active_shadow_top_glossyCoral8s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: 0em -0.5em 1em rgba(123, 33, 0, .71);
box-shadow: 0em -0.5em 1em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_glossyCoral8,
.hover_shadow_bottom_glossyCoral8:hover,
.active_shadow_bottom_glossyCoral8:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(137, 37, 0, .39);
box-shadow: 0em 0.5em 1em rgba(137, 37, 0, .39);
}
.shadow_bottom_glossyCoral8h,
.hover_shadow_bottom_glossyCoral8h:hover,
.active_shadow_bottom_glossyCoral8h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(164, 44, 0, .50);
box-shadow: 0em 0.5em 1em rgba(164, 44, 0, .50);
}
.shadow_bottom_glossyCoral8a,
.hover_shadow_bottom_glossyCoral8a:hover,
.active_shadow_bottom_glossyCoral8a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(123, 33, 0, .63);
box-shadow: 0em 0.5em 1em rgba(123, 33, 0, .63);
}
.shadow_bottom_glossyCoral8s,
.hover_shadow_bottom_glossyCoral8s:hover,
.active_shadow_bottom_glossyCoral8s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: 0em 0.5em 1em rgba(123, 33, 0, .71);
box-shadow: 0em 0.5em 1em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_glossyCoral8,
.hover_shadow_top_left_glossyCoral8:hover,
.active_shadow_top_left_glossyCoral8:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(137, 37, 0, .39);
box-shadow: -0.5em -0.5em 1em rgba(137, 37, 0, .39);
}
.shadow_top_left_glossyCoral8h,
.hover_shadow_top_left_glossyCoral8h:hover,
.active_shadow_top_left_glossyCoral8h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(164, 44, 0, .50);
box-shadow: -0.5em -0.5em 1em rgba(164, 44, 0, .50);
}
.shadow_top_left_glossyCoral8a,
.hover_shadow_top_left_glossyCoral8a:hover,
.active_shadow_top_left_glossyCoral8a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .63);
box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .63);
}
.shadow_top_left_glossyCoral8s,
.hover_shadow_top_left_glossyCoral8s:hover,
.active_shadow_top_left_glossyCoral8s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .71);
box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_glossyCoral8,
.hover_shadow_top_right_glossyCoral8:hover,
.active_shadow_top_right_glossyCoral8:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(137, 37, 0, .39);
box-shadow: 0.5em -0.5em 1em rgba(137, 37, 0, .39);
}
.shadow_top_right_glossyCoral8h,
.hover_shadow_top_right_glossyCoral8h:hover,
.active_shadow_top_right_glossyCoral8h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(164, 44, 0, .50);
box-shadow: 0.5em -0.5em 1em rgba(164, 44, 0, .50);
}
.shadow_top_right_glossyCoral8a,
.hover_shadow_top_right_glossyCoral8a:hover,
.active_shadow_top_right_glossyCoral8a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(123, 33, 0, .63);
box-shadow: 0.5em -0.5em 1em rgba(123, 33, 0, .63);
}
.shadow_top_right_glossyCoral8s,
.hover_shadow_top_right_glossyCoral8s:hover,
.active_shadow_top_right_glossyCoral8s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: 0.5em -0.5em 1em rgba(123, 33, 0, .71);
box-shadow: 0.5em -0.5em 1em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_glossyCoral8,
.hover_shadow_bottom_left_glossyCoral8:hover,
.active_shadow_bottom_left_glossyCoral8:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(137, 37, 0, .39);
box-shadow: -0.5em 0.5em 1em rgba(137, 37, 0, .39);
}
.shadow_bottom_left_glossyCoral8h,
.hover_shadow_bottom_left_glossyCoral8h:hover,
.active_shadow_bottom_left_glossyCoral8h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(164, 44, 0, .50);
box-shadow: -0.5em 0.5em 1em rgba(164, 44, 0, .50);
}
.shadow_bottom_left_glossyCoral8a,
.hover_shadow_bottom_left_glossyCoral8a:hover,
.active_shadow_bottom_left_glossyCoral8a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(123, 33, 0, .63);
box-shadow: -0.5em 0.5em 1em rgba(123, 33, 0, .63);
}
.shadow_bottom_left_glossyCoral8s,
.hover_shadow_bottom_left_glossyCoral8s:hover,
.active_shadow_bottom_left_glossyCoral8s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: -0.5em 0.5em 1em rgba(123, 33, 0, .71);
box-shadow: -0.5em 0.5em 1em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_glossyCoral8,
.hover_shadow_bottom_right_glossyCoral8:hover,
.active_shadow_bottom_right_glossyCoral8:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(137, 37, 0, .39);
box-shadow: 0.5em 0.5em 1em rgba(137, 37, 0, .39);
}
.shadow_bottom_right_glossyCoral8h,
.hover_shadow_bottom_right_glossyCoral8h:hover,
.active_shadow_bottom_right_glossyCoral8h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(164, 44, 0, .50);
box-shadow: 0.5em 0.5em 1em rgba(164, 44, 0, .50);
}
.shadow_bottom_right_glossyCoral8a,
.hover_shadow_bottom_right_glossyCoral8a:hover,
.active_shadow_bottom_right_glossyCoral8a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(123, 33, 0, .63);
box-shadow: 0.5em 0.5em 1em rgba(123, 33, 0, .63);
}
.shadow_bottom_right_glossyCoral8s,
.hover_shadow_bottom_right_glossyCoral8s:hover,
.active_shadow_bottom_right_glossyCoral8s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: 0.5em 0.5em 1em rgba(123, 33, 0, .71);
box-shadow: 0.5em 0.5em 1em rgba(123, 33, 0, .71);
} | widgets/common/assets/gradients/glossy/glossyCoral/glossyCoral8.css | .background_glossyCoral8,
.hover_background_glossyCoral8:hover,
.active_background_glossyCoral8:active:hover {
background: #892500;
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04)));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
}
.background_glossyCoral8h,
.hover_background_glossyCoral8h:hover,
.active_background_glossyCoral8h:active:hover {
background: #892500;
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04)));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
}
.background_glossyCoral8a,
.hover_background_glossyCoral8a:hover,
.active_background_glossyCoral8a:active:hover {
background: #892500;
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, .04)), color-stop(50%, rgba(0, 0, 0, .10)), color-stop(51%, rgba(255, 255, 255, .00)), color-stop(100%, rgba(255, 255, 255, .30)));
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: -o-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: -ms-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: linear-gradient(to bottom, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff',GradientType=0 );
}
.background_glossyCoral8s,
.hover_background_glossyCoral8s:hover,
.active_background_glossyCoral8s:active:hover {
background: #892500;
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04)));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
}
.background_color_glossyCoral8,
.hover_background_color_glossyCoral8:hover,
.active_background_color_glossyCoral8:active:hover {
background-color:#892500;
}
.background_first_color_glossyCoral8,
.hover_background_first_color_glossyCoral8:hover,
.active_background_first_color_glossyCoral8:active:hover {
background-color:#ffffff;
}
.background_last_color_glossyCoral8,
.hover_background_last_color_glossyCoral8:hover,
.active_background_color_last_glossyCoral8:active:hover {
background-color:#000000;
}
/* ------------------------------ color settings -------------------------------*/
.color_glossyCoral8,
.hover_color_glossyCoral8:hover,
.active_color_glossyCoral8:active:hover {
color: #c8c8c8;
}
.color_glossyCoral8h,
.hover_color_glossyCoral8h:hover,
.active_color_glossyCoral8h:active:hover {
color: #c8c8c8;
}
.color_glossyCoral8a,
.hover_color_glossyCoral8a:hover,
.active_color_glossyCoral8a:active:hover {
color: #c8c8c8;
}
.color_glossyCoral8s,
.hover_color_glossyCoral8s:hover,
.active_color_glossyCoral8s:active:hover {
color: #c8c8c8;
}
/* -------------------------- border color settings -----------------------------*/
.border_glossyCoral8,
.hover_border_glossyCoral8:hover,
.active_border_glossyCoral8:active:hover {
border-color: #6e1d00 #6e1d00 #6e1d00 #6e1d00;
}
.border_glossyCoral8h,
.hover_border_glossyCoral8h:hover,
.active_border_glossyCoral8h:active:hover {
border-color: #591800 #591800 #591800 #591800;
}
.border_glossyCoral8a,
.hover_border_glossyCoral8a:hover,
.active_border_glossyCoral8a:active:hover {
border-color: #451200 #451200 #451200 #451200;
}
.border_glossyCoral8s,
.hover_border_glossyCoral8s:hover,
.active_border_glossyCoral8s:active:hover {
border-color: #6e1d00 #6e1d00 #6e1d00 #6e1d00;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_glossyCoral8,
.hover_shadow_expand_glossyCoral8:hover,
.active_shadow_expand_glossyCoral8:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(137, 37, 0, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(137, 37, 0, .39);
box-shadow: 0em 0em 1em 0.25em rgba(137, 37, 0, .39);
}
.shadow_expand_glossyCoral8h,
.hover_shadow_expand_glossyCoral8h:hover,
.active_shadow_expand_glossyCoral8h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(164, 44, 0, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(164, 44, 0, .50);
box-shadow: 0em 0em 1em 0.25em rgba(164, 44, 0, .50);
}
.shadow_expand_glossyCoral8a,
.hover_shadow_expand_glossyCoral8a:hover,
.active_shadow_expand_glossyCoral8a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(123, 33, 0, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(123, 33, 0, .63);
box-shadow: 0em 0em 1em 0.25em rgba(123, 33, 0, .63);
}
.shadow_expand_glossyCoral8s,
.hover_shadow_expand_glossyCoral8s:hover,
.active_shadow_expand_glossyCoral8s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(123, 33, 0, .71);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(123, 33, 0, .71);
box-shadow: 0em 0em 1em 0.25em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_glossyCoral8,
.hover_shadow_left_glossyCoral8:hover,
.active_shadow_left_glossyCoral8:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(137, 37, 0, .39);
box-shadow: -0.5em -0.5em 1em rgba(137, 37, 0, .39);
}
.shadow_left_glossyCoral8h,
.hover_shadow_left_glossyCoral8h:hover,
.active_shadow_left_glossyCoral8h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(164, 44, 0, .50);
box-shadow: -0.5em -0.5em 1em rgba(164, 44, 0, .50);
}
.shadow_left_glossyCoral8a,
.hover_shadow_left_glossyCoral8a:hover,
.active_shadow_left_glossyCoral8a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .63);
box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .63);
}
.shadow_left_glossyCoral8s,
.hover_shadow_left_glossyCoral8s:hover,
.active_shadow_left_glossyCoral8s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .71);
box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_glossyCoral8,
.hover_shadow_right_glossyCoral8:hover,
.active_shadow_right_glossyCoral8:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(137, 37, 0, .39);
box-shadow: 0.5em 0em 1em rgba(137, 37, 0, .39);
}
.shadow_right_glossyCoral8h,
.hover_shadow_right_glossyCoral8h:hover,
.active_shadow_right_glossyCoral8h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(164, 44, 0, .50);
box-shadow: 0.5em 0em 1em rgba(164, 44, 0, .50);
}
.shadow_right_glossyCoral8a,
.hover_shadow_right_glossyCoral8a:hover,
.active_shadow_right_glossyCoral8a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(123, 33, 0, .63);
box-shadow: 0.5em 0em 1em rgba(123, 33, 0, .63);
}
.shadow_right_glossyCoral8s,
.hover_shadow_right_glossyCoral8s:hover,
.active_shadow_right_glossyCoral8s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: 0.5em 0em 1em rgba(123, 33, 0, .71);
box-shadow: 0.5em 0em 1em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_glossyCoral8,
.hover_shadow_top_glossyCoral8:hover,
.active_shadow_top_glossyCoral8:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(137, 37, 0, .39);
box-shadow: 0em -0.5em 1em rgba(137, 37, 0, .39);
}
.shadow_top_glossyCoral8h,
.hover_shadow_top_glossyCoral8h:hover,
.active_shadow_top_glossyCoral8h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(164, 44, 0, .50);
box-shadow: 0em -0.5em 1em rgba(164, 44, 0, .50);
}
.shadow_top_glossyCoral8a,
.hover_shadow_top_glossyCoral8a:hover,
.active_shadow_top_glossyCoral8a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(123, 33, 0, .63);
box-shadow: 0em -0.5em 1em rgba(123, 33, 0, .63);
}
.shadow_top_glossyCoral8s,
.hover_shadow_top_glossyCoral8s:hover,
.active_shadow_top_glossyCoral8s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: 0em -0.5em 1em rgba(123, 33, 0, .71);
box-shadow: 0em -0.5em 1em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_glossyCoral8,
.hover_shadow_bottom_glossyCoral8:hover,
.active_shadow_bottom_glossyCoral8:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(137, 37, 0, .39);
box-shadow: 0em 0.5em 1em rgba(137, 37, 0, .39);
}
.shadow_bottom_glossyCoral8h,
.hover_shadow_bottom_glossyCoral8h:hover,
.active_shadow_bottom_glossyCoral8h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(164, 44, 0, .50);
box-shadow: 0em 0.5em 1em rgba(164, 44, 0, .50);
}
.shadow_bottom_glossyCoral8a,
.hover_shadow_bottom_glossyCoral8a:hover,
.active_shadow_bottom_glossyCoral8a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(123, 33, 0, .63);
box-shadow: 0em 0.5em 1em rgba(123, 33, 0, .63);
}
.shadow_bottom_glossyCoral8s,
.hover_shadow_bottom_glossyCoral8s:hover,
.active_shadow_bottom_glossyCoral8s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: 0em 0.5em 1em rgba(123, 33, 0, .71);
box-shadow: 0em 0.5em 1em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_glossyCoral8,
.hover_shadow_top_left_glossyCoral8:hover,
.active_shadow_top_left_glossyCoral8:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(137, 37, 0, .39);
box-shadow: -0.5em -0.5em 1em rgba(137, 37, 0, .39);
}
.shadow_top_left_glossyCoral8h,
.hover_shadow_top_left_glossyCoral8h:hover,
.active_shadow_top_left_glossyCoral8h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(164, 44, 0, .50);
box-shadow: -0.5em -0.5em 1em rgba(164, 44, 0, .50);
}
.shadow_top_left_glossyCoral8a,
.hover_shadow_top_left_glossyCoral8a:hover,
.active_shadow_top_left_glossyCoral8a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .63);
box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .63);
}
.shadow_top_left_glossyCoral8s,
.hover_shadow_top_left_glossyCoral8s:hover,
.active_shadow_top_left_glossyCoral8s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .71);
box-shadow: -0.5em -0.5em 1em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_glossyCoral8,
.hover_shadow_top_right_glossyCoral8:hover,
.active_shadow_top_right_glossyCoral8:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(137, 37, 0, .39);
box-shadow: 0.5em -0.5em 1em rgba(137, 37, 0, .39);
}
.shadow_top_right_glossyCoral8h,
.hover_shadow_top_right_glossyCoral8h:hover,
.active_shadow_top_right_glossyCoral8h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(164, 44, 0, .50);
box-shadow: 0.5em -0.5em 1em rgba(164, 44, 0, .50);
}
.shadow_top_right_glossyCoral8a,
.hover_shadow_top_right_glossyCoral8a:hover,
.active_shadow_top_right_glossyCoral8a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(123, 33, 0, .63);
box-shadow: 0.5em -0.5em 1em rgba(123, 33, 0, .63);
}
.shadow_top_right_glossyCoral8s,
.hover_shadow_top_right_glossyCoral8s:hover,
.active_shadow_top_right_glossyCoral8s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: 0.5em -0.5em 1em rgba(123, 33, 0, .71);
box-shadow: 0.5em -0.5em 1em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_glossyCoral8,
.hover_shadow_bottom_left_glossyCoral8:hover,
.active_shadow_bottom_left_glossyCoral8:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(137, 37, 0, .39);
box-shadow: -0.5em 0.5em 1em rgba(137, 37, 0, .39);
}
.shadow_bottom_left_glossyCoral8h,
.hover_shadow_bottom_left_glossyCoral8h:hover,
.active_shadow_bottom_left_glossyCoral8h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(164, 44, 0, .50);
box-shadow: -0.5em 0.5em 1em rgba(164, 44, 0, .50);
}
.shadow_bottom_left_glossyCoral8a,
.hover_shadow_bottom_left_glossyCoral8a:hover,
.active_shadow_bottom_left_glossyCoral8a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(123, 33, 0, .63);
box-shadow: -0.5em 0.5em 1em rgba(123, 33, 0, .63);
}
.shadow_bottom_left_glossyCoral8s,
.hover_shadow_bottom_left_glossyCoral8s:hover,
.active_shadow_bottom_left_glossyCoral8s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: -0.5em 0.5em 1em rgba(123, 33, 0, .71);
box-shadow: -0.5em 0.5em 1em rgba(123, 33, 0, .71);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_glossyCoral8,
.hover_shadow_bottom_right_glossyCoral8:hover,
.active_shadow_bottom_right_glossyCoral8:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(137, 37, 0, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(137, 37, 0, .39);
box-shadow: 0.5em 0.5em 1em rgba(137, 37, 0, .39);
}
.shadow_bottom_right_glossyCoral8h,
.hover_shadow_bottom_right_glossyCoral8h:hover,
.active_shadow_bottom_right_glossyCoral8h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(164, 44, 0, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(164, 44, 0, .50);
box-shadow: 0.5em 0.5em 1em rgba(164, 44, 0, .50);
}
.shadow_bottom_right_glossyCoral8a,
.hover_shadow_bottom_right_glossyCoral8a:hover,
.active_shadow_bottom_right_glossyCoral8a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(123, 33, 0, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(123, 33, 0, .63);
box-shadow: 0.5em 0.5em 1em rgba(123, 33, 0, .63);
}
.shadow_bottom_right_glossyCoral8s,
.hover_shadow_bottom_right_glossyCoral8s:hover,
.active_shadow_bottom_right_glossyCoral8s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(123, 33, 0, .71);
-moz-box-shadow: 0.5em 0.5em 1em rgba(123, 33, 0, .71);
box-shadow: 0.5em 0.5em 1em rgba(123, 33, 0, .71);
} | 0.444083 | 0.07383 |
.DV-docViewer {
border: 1px solid #aaa;
line-height: normal;
}
.DV-headerHat, .DV-title, .DV-contentsHeader {
display: none !important;
}
.DV-header {
padding: 0;
border-bottom: 2px solid #979797;
position: relative;
z-index: 20000;
box-shadow: 0 0 25px rgba(0,0,0,.5); -webkit-box-shadow: 0 0 25px rgba(0,0,0,.5); -moz-box-shadow: 0 0 25px rgba(0,0,0,.5);
}
.DV-controls {
margin-top: 0;
border: 0;
background: #d7d7d7;
background: -webkit-gradient(linear, left top, left bottom, from(#EAEAEA), to(#C2C2C2));
background: -moz-linear-gradient(top, #EAEAEA, #C2C2C2);
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#EAEAEA', EndColorStr='#C2C2C2');
text-shadow: 0px 1px 1px #fff;
color: #2C2C2C;
overflow: hidden;
}
.DV-searchInput {
border: 1px solid #999;
-moz-border-radius: 16px;
border-radius: 16px;
}
.DV-docViewer-Container {
margin: 0;
border: 0;
}
.DV-pages {
background: #bbb;
}
.DV-privateLock, .DV-showEdit, .DV-permalink {
width: 16px; height: 16px;
float: left;
margin: -2px 0 0 10px;
margin-left: 10px;
background-repeat: no-repeat;
cursor: pointer;
}
.DV-permalink {
display: block;
width: 16px; height: 16px;
float: left;
padding: 0;
margin-left: 10px;
left: 0; top: 0;
}
.DV-annotationTitleInput,
.DV-annotationTextArea {
border: 1px solid #D0D0D0;
-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
font: 12px/15px Arial;
outline: 0;
}
.DV-annotationTextArea {
padding: 7px;
margin: 10px 0;
height: 110px;
outline: 0;
resize: none;
}
.DV-annotationTitleInput {
padding: 4px;
width: 300px;
}
.DV-annotationEditControls .minibutton {
width: 60px;
}
.DV-cancelEdit {
margin-right: 10px;
}
.DV-overlay {
left: 0; right: 282px; bottom: 0;
}
.DV-well {
padding-bottom: 16px;
}
.DV-descriptionHead {
text-transform: none;
color: black;
}
.DV-descriptionText {
background: white;
padding: 5px 14px 10px;
}
.DV-logo {
margin-top: 16px;
}
.DV-logo a {
display: block;
width: 105px; height: 19px;
background: url(images/dc_inline_logo.png);
}
.DV-footerLogoLink {
display: block;
width: 33px; height: 24px;
background: url(images/dc_mini_logo.png) no-repeat center center;
position: absolute;
right: 5px; top: 5px;
}
.DV-views {
position: relative;
z-index: 10;
}
.DV-views div span {
border-bottom: 0 !important;
background: #e3e3e3;
color: black !important;
background: -webkit-gradient(linear, left top, left bottom, from(#E3E3E3), to(#C2C2C2));
background: -moz-linear-gradient(top, #EAEAEA, #C2C2C2);
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#EAEAEA', EndColorStr='#C2C2C2');
}
.DV-views .DV-first span {
-webkit-border-top-left-radius: 5px; -moz-border-radius-topleft: 5px;
}
.DV-views .DV-last span {
-webkit-border-top-right-radius: 5px; -moz-border-radius-topright: 5px;
}
.DV-viewDocument .DV-views .DV-documentView span,
.DV-viewThumbnails .DV-views .DV-thumbnailsView span,
.DV-viewAnnotations .DV-views .DV-annotationView span,
.DV-viewText .DV-views .DV-textView span,
.DV-viewSearch .DV-views .DV-textView span {
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#a0a0a0));
background: -moz-linear-gradient(top, #fff, #a0a0a0);
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#FFFFFF', EndColorStr='#A0A0A0');
} | media/cloud/viewer/plainviewer.css |
.DV-docViewer {
border: 1px solid #aaa;
line-height: normal;
}
.DV-headerHat, .DV-title, .DV-contentsHeader {
display: none !important;
}
.DV-header {
padding: 0;
border-bottom: 2px solid #979797;
position: relative;
z-index: 20000;
box-shadow: 0 0 25px rgba(0,0,0,.5); -webkit-box-shadow: 0 0 25px rgba(0,0,0,.5); -moz-box-shadow: 0 0 25px rgba(0,0,0,.5);
}
.DV-controls {
margin-top: 0;
border: 0;
background: #d7d7d7;
background: -webkit-gradient(linear, left top, left bottom, from(#EAEAEA), to(#C2C2C2));
background: -moz-linear-gradient(top, #EAEAEA, #C2C2C2);
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#EAEAEA', EndColorStr='#C2C2C2');
text-shadow: 0px 1px 1px #fff;
color: #2C2C2C;
overflow: hidden;
}
.DV-searchInput {
border: 1px solid #999;
-moz-border-radius: 16px;
border-radius: 16px;
}
.DV-docViewer-Container {
margin: 0;
border: 0;
}
.DV-pages {
background: #bbb;
}
.DV-privateLock, .DV-showEdit, .DV-permalink {
width: 16px; height: 16px;
float: left;
margin: -2px 0 0 10px;
margin-left: 10px;
background-repeat: no-repeat;
cursor: pointer;
}
.DV-permalink {
display: block;
width: 16px; height: 16px;
float: left;
padding: 0;
margin-left: 10px;
left: 0; top: 0;
}
.DV-annotationTitleInput,
.DV-annotationTextArea {
border: 1px solid #D0D0D0;
-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
font: 12px/15px Arial;
outline: 0;
}
.DV-annotationTextArea {
padding: 7px;
margin: 10px 0;
height: 110px;
outline: 0;
resize: none;
}
.DV-annotationTitleInput {
padding: 4px;
width: 300px;
}
.DV-annotationEditControls .minibutton {
width: 60px;
}
.DV-cancelEdit {
margin-right: 10px;
}
.DV-overlay {
left: 0; right: 282px; bottom: 0;
}
.DV-well {
padding-bottom: 16px;
}
.DV-descriptionHead {
text-transform: none;
color: black;
}
.DV-descriptionText {
background: white;
padding: 5px 14px 10px;
}
.DV-logo {
margin-top: 16px;
}
.DV-logo a {
display: block;
width: 105px; height: 19px;
background: url(images/dc_inline_logo.png);
}
.DV-footerLogoLink {
display: block;
width: 33px; height: 24px;
background: url(images/dc_mini_logo.png) no-repeat center center;
position: absolute;
right: 5px; top: 5px;
}
.DV-views {
position: relative;
z-index: 10;
}
.DV-views div span {
border-bottom: 0 !important;
background: #e3e3e3;
color: black !important;
background: -webkit-gradient(linear, left top, left bottom, from(#E3E3E3), to(#C2C2C2));
background: -moz-linear-gradient(top, #EAEAEA, #C2C2C2);
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#EAEAEA', EndColorStr='#C2C2C2');
}
.DV-views .DV-first span {
-webkit-border-top-left-radius: 5px; -moz-border-radius-topleft: 5px;
}
.DV-views .DV-last span {
-webkit-border-top-right-radius: 5px; -moz-border-radius-topright: 5px;
}
.DV-viewDocument .DV-views .DV-documentView span,
.DV-viewThumbnails .DV-views .DV-thumbnailsView span,
.DV-viewAnnotations .DV-views .DV-annotationView span,
.DV-viewText .DV-views .DV-textView span,
.DV-viewSearch .DV-views .DV-textView span {
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#a0a0a0));
background: -moz-linear-gradient(top, #fff, #a0a0a0);
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#FFFFFF', EndColorStr='#A0A0A0');
} | 0.369543 | 0.141193 |
html {
font-size: 16px;
scroll-behavior: smooth;
}
.font-light {
color: #F6F4F1;
}
.font-dark {
color: #11365C;
}
.background-light {
background-color: #F6F4F1;
}
.background-dark {
background-color: #11365C;
}
.hidden {
display:none;
}
.disable-scroll {
margin: 0;
height: 100%;
overflow: hidden
}
/* General */
a, p, span, li {
color: black;
font-size: 1rem;
font-family: 'Mukta Vaani', sans-serif;
}
h1 {
font-family: 'M<NAME>', sans-serif;
font-weight: 400;
}
h2 {
font-family: 'Nunito', sans-serif;
font-weight: 400;
}
h3 {
font-family: 'M<NAME>', sans-serif;
font-weight: 500;
}
/*--------------------------------------------------------------
NAVIGATION BAR
--------------------------------------------------------------*/
/* Navigation Bar -- top */
#navigation-bar {
position: sticky;
top: 0;
z-index: 10;
}
#navigation-bar nav {
position: fixed;
top: 0;
right: 0;
left: 0;
height: 12vh;
z-index: 1030;
padding-top: 30px;
}
#navigation-bar header {
padding: 0;
}
/* figma */
#navigation-bar .navbar-brand span {
/* padding-left: 50px;
padding-right: 30px;
margin-top: 20px;*/
text-shadow: 0.5px 0.5px #647B5E;
width: 42px;
height: 19px;
padding-left: 4vw;
margin-top: 5vh;
margin-right: 30px;
font-family: 'Nunito', sans-serif;
color: #F7F6FA;
font-style: normal;
font-weight: 600;
font-size: 1.1rem;
line-height: 19px;
}
#navigation-bar ul.navbar-nav {
margin-right: 2vw;
}
#navigation-bar .navbar-nav li {
padding: 0 10px 0px 10px;
}
#navigation-bar .navbar-nav li.active {
font-weight: 300;
color: rgb(9, 30, 51);
}
#navigation-bar .navbar-nav li a {
color: #F7F6FA;
font-family: 'Nunito', sans-serif;
font-weight: 300;
text-shadow: 0.5px 0.5px #647B5E;
font-size: 1rem;
}
#navigation-bar .navbar-nav li a:hover {
font-weight: 300;
color: #F7F6FA!important;
padding-bottom: 1vh;
}
#navigation-bar .navbar-nav i {
color: #F7F6FA!important;
}
/* Navigation Bar -- scrolled */
#navigation-bar nav.scrolled {
color: black;
background-color: #F7F6FA;
box-shadow: 0.2px 0.2px 0.2px 0.2px lightgrey;
}
#navigation-bar .navbar-brand span.scrolled {
color: black;
text-shadow: 0.5px 0.5px #F7F6FA;
}
#navigation-bar .navbar-nav li a.scrolled {
color: black;
text-shadow: 0.5px 0.5px #F7F6FA;
}
#navigation-bar .navbar-nav li a.scrolled:hover {
font-size: 1rem;
color: rgb(3, 9, 15)!important;
padding-bottom:1vh;
}
#navigation-bar .navbar-nav i.scrolled {
color: #11365C!important;
}
/* Nav Link Animation*/
div.borderXwidth a:before, div.borderXwidth a:after
{
position: absolute;
opacity: 0;
width: 0%;
height: 2px;
content: '';
background: #FFF;
transition: all 0.3s;
}
div.borderXwidth a:before
{
left: 0px;
top: 0px;
}
div.borderXwidth a:after
{
right: 0px;
bottom: 0px;
}
div.borderXwidth a:hover:before, div.borderXwidth a:hover:after
{
opacity: 1;
width: 100%;
}
/* Nav Link Animation*/
div.borderXwidth a.scrolled:before, div.borderXwidth a.scrolled:after
{
background: #11365C;
}
/*--------------------------------------------------------------
HOME PAGE
--------------------------------------------------------------*/
/* home */
#home-page {
background-color: #F7F6FA;
}
#home-page .home-section {
position: relative;
background-repeat: no-repeat;
background-position: center center;
width: 100vw;
z-index: 0;
background-size: cover;
height: 100vh;
text-align: center;
}
/* figma */
.title-size-1 {
position: absolute;
width: 50vw;
height: 19px;
margin-left: 13vw;
margin-top: 41vh;
font-family: Nunito;
font-weight: normal;
font-size: 1.1rem;
line-height: 19px;
}
/* figma */
.title-size-2 {
position: absolute;
width: 60vw;
height: 45px;
margin-left: 13vw;
margin-top: 31.4vh;
font-family: 'Muli', sans-serif;
font-weight: normal;
font-size: 2.7rem;
line-height: 45px;
}
.title-caption {
text-align: left;
position: absolute;
display: table;
height: 100%;
width: 100%;
margin: 0 auto;
padding-top: 5vh;
}
/* figma */
#home-screen a button {
/* display: inline-block;
margin: 5vh 1vw;
width: 18vw;
height: 7vh;
border: 0px;
border-radius: 5px;
box-shadow: 0px 3px 13px -6px rgb(41, 27, 5);
color: #F6F4F1;
font-family: 'Nunito', sans-serif;
font-weight: 300;
background-color: rgba(112, 133, 145, 0.5); */
/* background-color: rgba(134, 111, 111, 0.5); */
/* outline: none;
transition: background-color 0.5s ease; */
position: absolute;
width: 14.8vw;
height: 6.7vh;
margin-left: 13vw;
margin-top: 53vh;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.09);
background: #FF8B38;
border-radius: 9px;
color: #F7F6FA;
border: 0px;
font-family: "Avenir", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 1rem;
text-align: center;
}
/* figma */
#home-screen a:nth-of-type(2) button {
position: absolute;
width: 14.8vw;
height: 6.7vh;
margin-left: 13vw;
margin-top: 53vh;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.09);
background: #FF8B38;
border-radius: 9px;
color: #F7F6FA;
border: 0px;
font-family: "Avenir", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 1rem;
text-align: center;
position: absolute;
margin-left: 31vw;
background: #8B6CF3;
border-radius: 9px;
}
#home-screen a button:hover {
/* background-color: rgba(184, 233, 206, 0.76); */
background-color: rgba(91, 178, 218, 0.514);
}
#home-screen a button:active {
border-style: outset;
}
#home-screen .svg svg {
position: absolute;
width: 48.7vw;
height: 68.5vh;
left: 46.8vw;
margin-top: 27vh;
z-index: 0;
}
#footer {
color: #F6F4F1;
text-align: center;
background-color: rgb(33, 37, 41);
padding: 2vh 0vw;
font-family: 'Nunito', sans-serif;
font-weight: 300;
}
/*--------------------------------------------------------------
HOME PAGE - Our Project
--------------------------------------------------------------*/
#our-project {
background-color: #F7F6FA;
position: relative;
padding-top: 10vh;
}
#our-project h2 {
padding: 13.5vh 9.5vw 3vh 9.6vw;
font-family: "Muli", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 2.2rem;
line-height: 45px;
}
#our-project .svg svg {
position: absolute;
margin-top: 31.7vh;
margin-left: 61.7vw;
width: 336px;
height: 306px;
top: 0;
}
#our-project .pattern svg {
position: absolute;
right: 0;
top: 15vh;
}
#our-project p {
padding: 0vh 0vw 2vh 9.6vw;
font-family: "Nunito", sans-serif;
font-style: normal;
font-weight: 200;
font-size: 1.4rem;
line-height: 30px;
color: #1F1F1F;
width: 48.2vw;
transform: translateY(5vh);
transition: opacity .3s ease-out .2s, transform .5s ease-in .2s;
will-change: opacity, transform;
color: #1F1F1F;
}
#our-project p.revealOnScroll {
opacity: 0;
}
#our-project p.revealOnScroll.revealed {
opacity: 1;
transform: translateY(0);
}
#why-mirror {
position: relative;
}
#why-mirror h2 {
padding: 40vh 9.5vw 3vh 9.6vw;
font-family: "Muli", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 2.2rem;
line-height: 45px;
}
#why-mirror .reason {
position: relative;
}
#why-mirror .reason:nth-of-type(1) {
padding: 4vh 0vw 0vh 9.6vw;
}
#why-mirror .reason:nth-of-type(2) {
padding: 20vh 0vw 0vh 50.7vw;
}
#why-mirror .reason:nth-of-type(3) {
padding: 32vh 0vw 0vh 33.6vw;
}
#why-mirror .reason .dot {
width: 73px;
height: 73px;
background: rgba(55, 57, 182, 0.2);
border-radius: 50%;
display: inline-block;
}
#why-mirror .reason .dot-label {
position: absolute;
color:black;
font-family: "Avenir", sans-serif;
font-weight: 500;
font-size: 2.2rem;
color: #FFFFFF;
margin: -8.5vh 0vw 0vh 1.9vw;
}
#why-mirror .reason h3 {
position: absolute;
display: block;
margin: -5.5vh 0vw 0vh 4vw;
font-family: "Nunito", sans-serif;
font-weight: 500;
font-size: 1.6rem;
line-height: 38px;
color: #000000;
}
#why-mirror .reason p {
width: 45.9vw;
margin: 2vh 0vw 0vh 6vw;
font-family: "Nunito", sans-serif;
font-weight: 300;
font-size: 1.4rem;
color: #000000;
}
#why-mirror .reason:nth-of-type(2) p{
width: 30.9vw;
}
#why-mirror .svg svg {
position: absolute;
margin-left: 0vw;
width: 45.3vw;
height: 63.6vh;
top: 0;
margin-top: 80vh;
}
#why-mirror .pattern svg {
position: absolute;
left: 0;
top: 95vh;
}
#our-product h2 {
padding: 42vh 9.5vw 3vh 9.6vw;
font-family: "Muli", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 2.2rem;
line-height: 45px;
}
#our-product p {
padding: 0vh 9.5vw 3vh 9.6vw;
}
#meet-our-team {
position: relative;
}
#meet-our-team h2 {
padding: 42vh 9.5vw 3vh 9.6vw;
font-family: "Muli", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 2.2rem;
line-height: 45px;
}
#meet-our-team .team-member {
padding: 5vh 9.5vw 5vh 9.6vw;
position: relative;
display: inline-block;
width: 45%;
height: 30vh;
}
#meet-our-team .team-member img {
width: 9.2vw;
height: 9.2vw;
border-radius: 50%;
}
#meet-our-team .team-member h3 {
position: absolute;
font-family: "Nunito", sans-serif;
font-weight: 500;
font-size: 1.5rem;
line-height: 31px;
color: #000000;
margin-left: 13vw;
top: 5vh;
margin-top: 5vh;
}
#meet-our-team .team-member h4 {
position: absolute;
font-family: "Nunito", sans-serif;
font-weight: 300;
font-size: 1.2rem;
line-height: 31px;
color: #000000;
top: 5vh;
margin-left: 13vw;
margin-top: 10vh;
}
#meet-our-team .team-member h4:nth-of-type(2) {
margin-top: 14vh;
}
#meet-our-team .pattern svg {
position: absolute;
right: 0;
top: 5vh;
width: 85vw;
}
#sponsorship-and-credit {
margin-bottom: 20vh;
}
#sponsorship-and-credit h2 {
padding: 42vh 9.5vw 0vh 9.6vw;
font-family: "Muli", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 2.2rem;
line-height: 45px;
}
#sponsorship-and-credit p {
margin: 5vh 0vw 5vh 9.6vw;
font-family: "Nunito", sans-serif;
font-weight: 200;
font-size: 1.4rem;
line-height: 30px;
color: #1F1F1F;
}
#sponsorship-and-credit a {
font-family: "Nunito", sans-serif;
font-weight: 200;
font-size: 1.4rem;
line-height: 30px;
color: #0091EA;
}
#sponsorship-and-credit .name-card {
margin-top: 3vh;
}
#sponsorship-and-credit .name-card p {
margin: 2vh 19.2vw;
}
/*--------------------------------------------------------------
HOME PAGE - USER INPUT
--------------------------------------------------------------*/
#user-input-form {
background-color: #F7F6FA;
width: 38vw;
height: 60vh;
border-radius: 29px;
z-index: 200;
margin: 20vh 31vw;
position: fixed;
}
#user-input-form .cross svg{
position: absolute;
right: 0;
height: 2.8vh;
width: 1.5vw;
margin: 4.4vh 2.3vw 0vh 0vw;
}
#user-input-form .user-input {
margin-top: 11.9vh;
margin-left: 4.0vw;
}
#user-input-form .user-input div{
position: relative;
display: block;
margin-bottom: 4vh;
}
#user-input-form .user-input svg {
height: 4.4vh;
width: 2.3vw;
margin: 0vh 2.3vw 0vh 0vw;
}
#user-input-form .user-input input {
position: absolute;
width: 24.6vw;
height: 4.6vh;
background: rgba(238, 238, 238, 0.65);
border: 0px;
border-radius: 5px;
padding-left: 1vw;
font-family: "Avenir", sans-serif;
font-size: .8rem;
line-height: 14px;
}
#user-input-form .user-input > button {
position: absolute;
right: 0;
bottom:0;
margin-right: 4.8vw;
margin-bottom: 6.3vh;
padding: 1.5vh 1.4vw;
background: #5739D2;
border:0px;
border-radius: 9px;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
#user-input-form .user-input > button > a{
color: #FFFFFF;
font-family: "Avenir", sans-serif;
font-weight: bold;
font-size: .8rem;
line-height: 12px;
text-align: center;
}
#backdrop {
position: fixed;
background-repeat: no-repeat;
background-position: center center;
width: 100vw;
z-index: 50;
background-size: cover;
height: 100vh;
text-align: center;
} | css/style.css | html {
font-size: 16px;
scroll-behavior: smooth;
}
.font-light {
color: #F6F4F1;
}
.font-dark {
color: #11365C;
}
.background-light {
background-color: #F6F4F1;
}
.background-dark {
background-color: #11365C;
}
.hidden {
display:none;
}
.disable-scroll {
margin: 0;
height: 100%;
overflow: hidden
}
/* General */
a, p, span, li {
color: black;
font-size: 1rem;
font-family: 'Mukta Vaani', sans-serif;
}
h1 {
font-family: 'M<NAME>', sans-serif;
font-weight: 400;
}
h2 {
font-family: 'Nunito', sans-serif;
font-weight: 400;
}
h3 {
font-family: 'M<NAME>', sans-serif;
font-weight: 500;
}
/*--------------------------------------------------------------
NAVIGATION BAR
--------------------------------------------------------------*/
/* Navigation Bar -- top */
#navigation-bar {
position: sticky;
top: 0;
z-index: 10;
}
#navigation-bar nav {
position: fixed;
top: 0;
right: 0;
left: 0;
height: 12vh;
z-index: 1030;
padding-top: 30px;
}
#navigation-bar header {
padding: 0;
}
/* figma */
#navigation-bar .navbar-brand span {
/* padding-left: 50px;
padding-right: 30px;
margin-top: 20px;*/
text-shadow: 0.5px 0.5px #647B5E;
width: 42px;
height: 19px;
padding-left: 4vw;
margin-top: 5vh;
margin-right: 30px;
font-family: 'Nunito', sans-serif;
color: #F7F6FA;
font-style: normal;
font-weight: 600;
font-size: 1.1rem;
line-height: 19px;
}
#navigation-bar ul.navbar-nav {
margin-right: 2vw;
}
#navigation-bar .navbar-nav li {
padding: 0 10px 0px 10px;
}
#navigation-bar .navbar-nav li.active {
font-weight: 300;
color: rgb(9, 30, 51);
}
#navigation-bar .navbar-nav li a {
color: #F7F6FA;
font-family: 'Nunito', sans-serif;
font-weight: 300;
text-shadow: 0.5px 0.5px #647B5E;
font-size: 1rem;
}
#navigation-bar .navbar-nav li a:hover {
font-weight: 300;
color: #F7F6FA!important;
padding-bottom: 1vh;
}
#navigation-bar .navbar-nav i {
color: #F7F6FA!important;
}
/* Navigation Bar -- scrolled */
#navigation-bar nav.scrolled {
color: black;
background-color: #F7F6FA;
box-shadow: 0.2px 0.2px 0.2px 0.2px lightgrey;
}
#navigation-bar .navbar-brand span.scrolled {
color: black;
text-shadow: 0.5px 0.5px #F7F6FA;
}
#navigation-bar .navbar-nav li a.scrolled {
color: black;
text-shadow: 0.5px 0.5px #F7F6FA;
}
#navigation-bar .navbar-nav li a.scrolled:hover {
font-size: 1rem;
color: rgb(3, 9, 15)!important;
padding-bottom:1vh;
}
#navigation-bar .navbar-nav i.scrolled {
color: #11365C!important;
}
/* Nav Link Animation*/
div.borderXwidth a:before, div.borderXwidth a:after
{
position: absolute;
opacity: 0;
width: 0%;
height: 2px;
content: '';
background: #FFF;
transition: all 0.3s;
}
div.borderXwidth a:before
{
left: 0px;
top: 0px;
}
div.borderXwidth a:after
{
right: 0px;
bottom: 0px;
}
div.borderXwidth a:hover:before, div.borderXwidth a:hover:after
{
opacity: 1;
width: 100%;
}
/* Nav Link Animation*/
div.borderXwidth a.scrolled:before, div.borderXwidth a.scrolled:after
{
background: #11365C;
}
/*--------------------------------------------------------------
HOME PAGE
--------------------------------------------------------------*/
/* home */
#home-page {
background-color: #F7F6FA;
}
#home-page .home-section {
position: relative;
background-repeat: no-repeat;
background-position: center center;
width: 100vw;
z-index: 0;
background-size: cover;
height: 100vh;
text-align: center;
}
/* figma */
.title-size-1 {
position: absolute;
width: 50vw;
height: 19px;
margin-left: 13vw;
margin-top: 41vh;
font-family: Nunito;
font-weight: normal;
font-size: 1.1rem;
line-height: 19px;
}
/* figma */
.title-size-2 {
position: absolute;
width: 60vw;
height: 45px;
margin-left: 13vw;
margin-top: 31.4vh;
font-family: 'Muli', sans-serif;
font-weight: normal;
font-size: 2.7rem;
line-height: 45px;
}
.title-caption {
text-align: left;
position: absolute;
display: table;
height: 100%;
width: 100%;
margin: 0 auto;
padding-top: 5vh;
}
/* figma */
#home-screen a button {
/* display: inline-block;
margin: 5vh 1vw;
width: 18vw;
height: 7vh;
border: 0px;
border-radius: 5px;
box-shadow: 0px 3px 13px -6px rgb(41, 27, 5);
color: #F6F4F1;
font-family: 'Nunito', sans-serif;
font-weight: 300;
background-color: rgba(112, 133, 145, 0.5); */
/* background-color: rgba(134, 111, 111, 0.5); */
/* outline: none;
transition: background-color 0.5s ease; */
position: absolute;
width: 14.8vw;
height: 6.7vh;
margin-left: 13vw;
margin-top: 53vh;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.09);
background: #FF8B38;
border-radius: 9px;
color: #F7F6FA;
border: 0px;
font-family: "Avenir", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 1rem;
text-align: center;
}
/* figma */
#home-screen a:nth-of-type(2) button {
position: absolute;
width: 14.8vw;
height: 6.7vh;
margin-left: 13vw;
margin-top: 53vh;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.09);
background: #FF8B38;
border-radius: 9px;
color: #F7F6FA;
border: 0px;
font-family: "Avenir", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 1rem;
text-align: center;
position: absolute;
margin-left: 31vw;
background: #8B6CF3;
border-radius: 9px;
}
#home-screen a button:hover {
/* background-color: rgba(184, 233, 206, 0.76); */
background-color: rgba(91, 178, 218, 0.514);
}
#home-screen a button:active {
border-style: outset;
}
#home-screen .svg svg {
position: absolute;
width: 48.7vw;
height: 68.5vh;
left: 46.8vw;
margin-top: 27vh;
z-index: 0;
}
#footer {
color: #F6F4F1;
text-align: center;
background-color: rgb(33, 37, 41);
padding: 2vh 0vw;
font-family: 'Nunito', sans-serif;
font-weight: 300;
}
/*--------------------------------------------------------------
HOME PAGE - Our Project
--------------------------------------------------------------*/
#our-project {
background-color: #F7F6FA;
position: relative;
padding-top: 10vh;
}
#our-project h2 {
padding: 13.5vh 9.5vw 3vh 9.6vw;
font-family: "Muli", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 2.2rem;
line-height: 45px;
}
#our-project .svg svg {
position: absolute;
margin-top: 31.7vh;
margin-left: 61.7vw;
width: 336px;
height: 306px;
top: 0;
}
#our-project .pattern svg {
position: absolute;
right: 0;
top: 15vh;
}
#our-project p {
padding: 0vh 0vw 2vh 9.6vw;
font-family: "Nunito", sans-serif;
font-style: normal;
font-weight: 200;
font-size: 1.4rem;
line-height: 30px;
color: #1F1F1F;
width: 48.2vw;
transform: translateY(5vh);
transition: opacity .3s ease-out .2s, transform .5s ease-in .2s;
will-change: opacity, transform;
color: #1F1F1F;
}
#our-project p.revealOnScroll {
opacity: 0;
}
#our-project p.revealOnScroll.revealed {
opacity: 1;
transform: translateY(0);
}
#why-mirror {
position: relative;
}
#why-mirror h2 {
padding: 40vh 9.5vw 3vh 9.6vw;
font-family: "Muli", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 2.2rem;
line-height: 45px;
}
#why-mirror .reason {
position: relative;
}
#why-mirror .reason:nth-of-type(1) {
padding: 4vh 0vw 0vh 9.6vw;
}
#why-mirror .reason:nth-of-type(2) {
padding: 20vh 0vw 0vh 50.7vw;
}
#why-mirror .reason:nth-of-type(3) {
padding: 32vh 0vw 0vh 33.6vw;
}
#why-mirror .reason .dot {
width: 73px;
height: 73px;
background: rgba(55, 57, 182, 0.2);
border-radius: 50%;
display: inline-block;
}
#why-mirror .reason .dot-label {
position: absolute;
color:black;
font-family: "Avenir", sans-serif;
font-weight: 500;
font-size: 2.2rem;
color: #FFFFFF;
margin: -8.5vh 0vw 0vh 1.9vw;
}
#why-mirror .reason h3 {
position: absolute;
display: block;
margin: -5.5vh 0vw 0vh 4vw;
font-family: "Nunito", sans-serif;
font-weight: 500;
font-size: 1.6rem;
line-height: 38px;
color: #000000;
}
#why-mirror .reason p {
width: 45.9vw;
margin: 2vh 0vw 0vh 6vw;
font-family: "Nunito", sans-serif;
font-weight: 300;
font-size: 1.4rem;
color: #000000;
}
#why-mirror .reason:nth-of-type(2) p{
width: 30.9vw;
}
#why-mirror .svg svg {
position: absolute;
margin-left: 0vw;
width: 45.3vw;
height: 63.6vh;
top: 0;
margin-top: 80vh;
}
#why-mirror .pattern svg {
position: absolute;
left: 0;
top: 95vh;
}
#our-product h2 {
padding: 42vh 9.5vw 3vh 9.6vw;
font-family: "Muli", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 2.2rem;
line-height: 45px;
}
#our-product p {
padding: 0vh 9.5vw 3vh 9.6vw;
}
#meet-our-team {
position: relative;
}
#meet-our-team h2 {
padding: 42vh 9.5vw 3vh 9.6vw;
font-family: "Muli", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 2.2rem;
line-height: 45px;
}
#meet-our-team .team-member {
padding: 5vh 9.5vw 5vh 9.6vw;
position: relative;
display: inline-block;
width: 45%;
height: 30vh;
}
#meet-our-team .team-member img {
width: 9.2vw;
height: 9.2vw;
border-radius: 50%;
}
#meet-our-team .team-member h3 {
position: absolute;
font-family: "Nunito", sans-serif;
font-weight: 500;
font-size: 1.5rem;
line-height: 31px;
color: #000000;
margin-left: 13vw;
top: 5vh;
margin-top: 5vh;
}
#meet-our-team .team-member h4 {
position: absolute;
font-family: "Nunito", sans-serif;
font-weight: 300;
font-size: 1.2rem;
line-height: 31px;
color: #000000;
top: 5vh;
margin-left: 13vw;
margin-top: 10vh;
}
#meet-our-team .team-member h4:nth-of-type(2) {
margin-top: 14vh;
}
#meet-our-team .pattern svg {
position: absolute;
right: 0;
top: 5vh;
width: 85vw;
}
#sponsorship-and-credit {
margin-bottom: 20vh;
}
#sponsorship-and-credit h2 {
padding: 42vh 9.5vw 0vh 9.6vw;
font-family: "Muli", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 2.2rem;
line-height: 45px;
}
#sponsorship-and-credit p {
margin: 5vh 0vw 5vh 9.6vw;
font-family: "Nunito", sans-serif;
font-weight: 200;
font-size: 1.4rem;
line-height: 30px;
color: #1F1F1F;
}
#sponsorship-and-credit a {
font-family: "Nunito", sans-serif;
font-weight: 200;
font-size: 1.4rem;
line-height: 30px;
color: #0091EA;
}
#sponsorship-and-credit .name-card {
margin-top: 3vh;
}
#sponsorship-and-credit .name-card p {
margin: 2vh 19.2vw;
}
/*--------------------------------------------------------------
HOME PAGE - USER INPUT
--------------------------------------------------------------*/
#user-input-form {
background-color: #F7F6FA;
width: 38vw;
height: 60vh;
border-radius: 29px;
z-index: 200;
margin: 20vh 31vw;
position: fixed;
}
#user-input-form .cross svg{
position: absolute;
right: 0;
height: 2.8vh;
width: 1.5vw;
margin: 4.4vh 2.3vw 0vh 0vw;
}
#user-input-form .user-input {
margin-top: 11.9vh;
margin-left: 4.0vw;
}
#user-input-form .user-input div{
position: relative;
display: block;
margin-bottom: 4vh;
}
#user-input-form .user-input svg {
height: 4.4vh;
width: 2.3vw;
margin: 0vh 2.3vw 0vh 0vw;
}
#user-input-form .user-input input {
position: absolute;
width: 24.6vw;
height: 4.6vh;
background: rgba(238, 238, 238, 0.65);
border: 0px;
border-radius: 5px;
padding-left: 1vw;
font-family: "Avenir", sans-serif;
font-size: .8rem;
line-height: 14px;
}
#user-input-form .user-input > button {
position: absolute;
right: 0;
bottom:0;
margin-right: 4.8vw;
margin-bottom: 6.3vh;
padding: 1.5vh 1.4vw;
background: #5739D2;
border:0px;
border-radius: 9px;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
#user-input-form .user-input > button > a{
color: #FFFFFF;
font-family: "Avenir", sans-serif;
font-weight: bold;
font-size: .8rem;
line-height: 12px;
text-align: center;
}
#backdrop {
position: fixed;
background-repeat: no-repeat;
background-position: center center;
width: 100vw;
z-index: 50;
background-size: cover;
height: 100vh;
text-align: center;
} | 0.321141 | 0.083591 |
body { font-family:sans-serif;background:url('pagebg.png');margin:0px;padding:0px; }
h1,h2,h3,h4,h5 { border-bottom:1px solid #AAA;bottom-padding:3px; }
a { text-decoration:none;color:#0645AD; }
a:hover, a:focus { text-decoration:underline; }
#headfade { background-color:#FFF;width:100%;height:6em;background-image:url('page-fade.png');background-position:bottom left;background-repeat:repeat-x; }
#search input { float:left;z-index:10; }
#search button { padding:0px;margin:0px;margin-top:2px; }
#searchbutton { background-color:transparent;cursor:pointer;border:0px;margin-left:-18px !important; }
#leftmenu ul,#leftmenu li { padding:0px;margin:0px; }
#loggedinas, #search { float:right;padding:5px; top:0px;line-height:2em; }
#logo { position:absolute;top:0px;left:7px;padding:0px; }
#viewhistory { float:right; }
#panel { position:absolute;top:130px;width:10em;left:0px; }
#panel ul,
#panel p,
#panel h1 { padding-left:1.5em; }
#panel ul li { list-style:none;list-style-image:none;list-style-type:none;padding:0px;margin:0px; }
#container { padding:1em;margin-left:12em;background-color:#FFF;color:#000;min-height:30em;border:1px solid #a7d7f9;border-right:0px solid #a7d7f9; }
#footer { margin-left:12em;margin-top:0px;padding:0.75em;}
#footer p { color:#333;font-size:0.7em; }
pre { font-size:9pt !important;background-color:#EEE;padding:5px;border:1px solid #AAA; }
div.image_frame { border: 1px solid gray; display: inline-block; padding: 4px; }
div.image_frame .caption { border: 1px solid #E0E0E0; padding: 4px; }
div.floatleft, table.floatleft { border: 0 none; margin: 0 0.5em 0.5em 0; }
div.floatright, table.floatright, div.floatleft, table.floatleft { position: relative; }
div.floatleft, table.floatleft { clear: left; float: left; }
div.floatright, table.floatright { border: 0 none;margin: 0 0 0.5em 0.5em; }
div.floatright, table.floatright, div.floatleft, table.floatleft { position: relative; }
div.floatright, table.floatright { clear: right; float: right; }
.center * { margin-left: auto; margin-right: auto; }
.center { text-align: center; width: 100%; } | Themes/Mediawiki/Theme.css | body { font-family:sans-serif;background:url('pagebg.png');margin:0px;padding:0px; }
h1,h2,h3,h4,h5 { border-bottom:1px solid #AAA;bottom-padding:3px; }
a { text-decoration:none;color:#0645AD; }
a:hover, a:focus { text-decoration:underline; }
#headfade { background-color:#FFF;width:100%;height:6em;background-image:url('page-fade.png');background-position:bottom left;background-repeat:repeat-x; }
#search input { float:left;z-index:10; }
#search button { padding:0px;margin:0px;margin-top:2px; }
#searchbutton { background-color:transparent;cursor:pointer;border:0px;margin-left:-18px !important; }
#leftmenu ul,#leftmenu li { padding:0px;margin:0px; }
#loggedinas, #search { float:right;padding:5px; top:0px;line-height:2em; }
#logo { position:absolute;top:0px;left:7px;padding:0px; }
#viewhistory { float:right; }
#panel { position:absolute;top:130px;width:10em;left:0px; }
#panel ul,
#panel p,
#panel h1 { padding-left:1.5em; }
#panel ul li { list-style:none;list-style-image:none;list-style-type:none;padding:0px;margin:0px; }
#container { padding:1em;margin-left:12em;background-color:#FFF;color:#000;min-height:30em;border:1px solid #a7d7f9;border-right:0px solid #a7d7f9; }
#footer { margin-left:12em;margin-top:0px;padding:0.75em;}
#footer p { color:#333;font-size:0.7em; }
pre { font-size:9pt !important;background-color:#EEE;padding:5px;border:1px solid #AAA; }
div.image_frame { border: 1px solid gray; display: inline-block; padding: 4px; }
div.image_frame .caption { border: 1px solid #E0E0E0; padding: 4px; }
div.floatleft, table.floatleft { border: 0 none; margin: 0 0.5em 0.5em 0; }
div.floatright, table.floatright, div.floatleft, table.floatleft { position: relative; }
div.floatleft, table.floatleft { clear: left; float: left; }
div.floatright, table.floatright { border: 0 none;margin: 0 0 0.5em 0.5em; }
div.floatright, table.floatright, div.floatleft, table.floatleft { position: relative; }
div.floatright, table.floatright { clear: right; float: right; }
.center * { margin-left: auto; margin-right: auto; }
.center { text-align: center; width: 100%; } | 0.40251 | 0.05279 |
input.checkbox {
border: 20px;
}
.contents {
padding: 2.6% 0 0 0 !important;
}
.content-centr {
width: 100%;
float: left;
padding: 0 0 0 0;
}
.form-search img {
margin: 0 0 -7px 0;
}
.form-search input {
width: 95%;
border-radius: 10px;
padding: 4px 0 4px 20px;
margin: 5px 10px 21px 1px;
border: 1px solid;
}
.result-search p {
font-size: 24px;
font-family: "Cormorant Garamond";
float: left;
margin: 0 0 0 0;
font-weight: bold;
}
.result-search span {
background-color: #202020;
color: #fff;
border-radius: 11px;
padding: 0 3% 0 3%;
margin: 5px 0 0 18px;
display: inline-block;
line-height: 23px;
}
.concurrences-line-1 p {
margin: 0 0 2% 0;
font-size: 36px;
font-weight: bold;
font-family: "CormorantGaramond";
}
.concurrences-line {
margin: 4% 0 0 0;
}
.concurrences-line p {
font-size: 36px;
display: inline-block;
font-weight: bold;
font-family: "CormorantGaramond";
}
.concurrences-line::after {
content: "";
display: inline-block;
vertical-align: middle;
width: 73%;
height: 1px;
background-color: #202020;
position: relative;
left: 5%;
}
.concurrences-line-1::before {
content: "";
display: inline-block;
vertical-align: middle;
width: 39%;
height: 1px;
background-color: #202020;
position: relative;
left: 65%;
top: 34px;
}
.concurrences-select {
padding: 3% 0 3.5% 0;
margin-top: 2%;
width: 100%;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.concurrences-select span input {
margin: 0 14px 0 0;
}
.search-scope-select span input {
margin: 0 14px 0 0;
}
.concurrences-select {
position: relative;
}
.concurrences-select::before {
content: '';
position: absolute;
width: 115%;
height: 100%;
top: 2.6%;
left: -10%;
background: #f3f3f3;
}
.search-scope-select {
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
}
.search-scope-horizontal {
position: relative;
}
.search-scope-horizontal::before {
content: '';
position: absolute;
width: 115%;
height: 130%;
top: 2.6%;
left: -10%;
background: #f3f3f3;
}
.concurrences-select span {
margin: 0 0 0 0;
font-size: 19px;
font-weight: bold;
position: relative;
}
.select-input-concurrences p {
font-size: 12px;
font-weight: 100;
margin: 0 0 10px 0;
font-family: 'Cormorant Garamond';
}
.concurrences-select select {
width: 235px;
height: 28px;
background-color: #f3f3f3;
font-family: 'Cormorant Garamond';
}
.search-scope {
margin: 6% 0 5% 0;
}
.select-left {
font-family: 'Cormorant Garamond', serif;
font-size: 19px;
}
.select-left .item2 {
margin: 32px 0 15px 0;
}
.select-right {
font-family: 'Cormorant Garamond', serif;
font-size: 19px;
}
.select-right .item1 {
margin: 32px 0 15px 0;
}
.select-left span {
margin: 3% 0 14% 0;
font-size: 19px;
font-weight: bold;
}
.select-right span {
margin: 1% 0 14% 0;
font-size: 19px;
font-weight: bold;
}
.select-search-scope p {
width: 100%;
font-size: 14px;
/* margin: 0 0 7% 0; */
}
.select-search-scope {
display: -ms-inline-grid;
/* display: inline-grid; */
/* margin: 13% 0 0 9.6%; */
width: 174px;
/* height: 50px; */
padding-top: 10%;
}
.select-search-scope select {
background-color: #f3f3f3;
font-size: 16px;
width: 100%;
font-family: 'Cormorant Garamond';
}
.link-center a {
color: #455ea7;
font-size: 19px;
font-family: 'Roboto';
}
.start {
background-color: #202020;
color: #fff;
border-radius: 20px;
margin: 0 1% 0 1.5%;
padding: 0 6px 0 6px;
font-size: 16px;
}
.end {
border: 1px solid #202020;
color: #202020;
border-radius: 20px;
margin: 0 0% 0 1%;
padding: 0 6px 0 6px;
font-size: 16px;
}
.item {
width: 100%;
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -moz-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
margin: 15px 0 25px 0;
}
.item-number {
width: 20px;
height: 20px;
color: #fff;
background-color: #202020;
border-radius: 10px;
margin: 0.2% 1.6% 0 0;
padding: 3px 0 0 0;
font-size: 14px;
font-family: 'Roboto';
text-align: center;
position: absolute;
}
.item .item-description {
position: relative;
margin: 3px 0 0 30px;
}
.link-center p {
color: #5d5d5d;
font-size: 16px;
margin: 11px 0 0 0;
font-family: 'Roboto';
}
.page-pagination {
margin: 6.5% 0 8.5% 0;
font-size: 24px;
}
.link-center {
margin: 0 0 0 0;
}
.pagination-main {
text-align: center;
margin: 7% 0 7% 0;
}
.pagination-main button {
border-radius: 10px;
border: 1px solid #202020;
background-color: #fff;
padding: 0 13px 0 13px;
}
.pagination-main button:hover {
border-radius: 10px;
border: 1px solid #202020;
background-color: #202020;
color: #fff;
padding: 0 13px 0 13px;
-webkit-transition: 0.5s;
transition: 0.5s;
}
.pagination-main span {
margin: 2%;
}
/* clock */
.select-left input[type=radio]:not(checked) + label:after {
content: '';
position: absolute;
top: 5px;
left: 6px;
width: 12px;
height: 12px;
border-radius: 50%;
background: #202020;
opacity: 0;
-webkit-transition: all 0.2s;
transition: all 0.2s;
}
.blog-categories .select {
font-family: 'Cormorant Garamond', serif;
font-size: 19px;
color: #000;
margin-top: 26px;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.blog-categories .select .form-select {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.blog-categories .select .form-select>div {
margin-right: 0;
}
.blog-categories .select input [type=radio] {
vertical-align: top;
width: 12px;
height: 12px;
margin: 0 3px 0 0;
}
.blog-categories .select input [type=radio]+ label {
cursor: pointer;
}
.blog-categories .select input[type=radio]:not(checked) {
position: absolute;
opacity: 0;
}
.blog-categories .select input[type=radio]:not(checked) + label {
position: relative;
padding: 0 24px 0 29px;
}
.blog-categories .select input[type=radio]:not(checked) + label:before {
content: '';
position: absolute;
top: 4px;
left: 5px;
width: 12px;
height: 12px;
border: 1px solid #cdd1da;
border-radius: 50%;
background: #fff;
}
.blog-categories .select input[type=radio]:not(checked) + label:after {
content: '';
position: absolute;
top: 5px;
left: 6px;
width: 12px;
height: 12px;
border-radius: 50%;
background: #7e2b83;
opacity: 0;
-webkit-transition: all 0.2s;
transition: all 0.2s;
}
.blog-categories .select-blue input[type=radio]:not(checked) + label:after {
background: #455ea7;
}
.blog-categories .select-black input[type=radio]:not(checked) + label:after {
background: #202020;
}
.blog-categories .select input[type=radio]:checked + label:after {
opacity: 1;
}
.horoscope .content-aside-main .content {
margin-top: 43px;
}
.horoscope .content-aside-main .articles-vertical {
margin: 0 0 65px 0;
}
.horoscope .aside-block .form-wrap {
margin: 27.6% 0;
padding: 13% 9.6%;
}
.select-kategorii {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.blog-categories .select input [type=checkbox] {
vertical-align: top;
width: 12px;
height: 12px;
margin: 0 3px 0 0;
}
.blog-categories .select input [type=checkbox] + label {
cursor: pointer;
}
.blog-categories .select input[type=checkbox]:not(checked) {
position: absolute;
opacity: 0;
}
.blog-categories .select input[type=checkbox]:not(checked) + label {
position: relative;
padding: 0 24px 0 29px;
}
.blog-categories .select input[type=checkbox]:not(checked) + label:before {
content: '';
position: absolute;
top: 4px;
left: 5px;
width: 12px;
height: 12px;
border: 1px solid #cdd1da;
border-radius: 50%;
background: #fff;
}
.blog-categories .select input[type=checkbox]:not(checked) + label:after {
content: '';
position: absolute;
top: 5px;
left: 6px;
width: 12px;
height: 12px;
border-radius: 50%;
background: #7e2b83;
opacity: 0;
-webkit-transition: all 0.2s;
transition: all 0.2s;
}
.blog-categories .select-blue input[type=checkbox]:not(checked) + label:after {
background: #455ea7;
}
.blog-categories .select-black input[type=checkbox]:not(checked) + label:after {
background: #202020;
}
.blog-categories .select input[type=checkbox]:checked + label:after {
opacity: 1;
}
.horoscope .content-aside-main .content {
margin-top: 43px;
}
.horoscope .content-aside-main .articles-vertical {
margin: 0 0 65px 0;
}
.horoscope .aside-block .form-wrap {
margin: 27.6% 0;
padding: 13% 9.6%;
}
.select-kategorii {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.filter-search {
position: absolute;
bottom: -24%;
right: 0;
height: 23px;
border-radius: 23px;
background: #202020;
color: #fff;
text-transform: uppercase;
border: none;
letter-spacing: 3.6px;
font-family: 'Roboto';
font-weight: 700;
font-size: 12px;
cursor: pointer;
padding: 0 23px;
transition: .5s;
}
.filter-search:hover {
background: #455EA7;
}
.doctor-page .filter-search:hover {
background: #7e2b83;
} | public/css/poisk.css | input.checkbox {
border: 20px;
}
.contents {
padding: 2.6% 0 0 0 !important;
}
.content-centr {
width: 100%;
float: left;
padding: 0 0 0 0;
}
.form-search img {
margin: 0 0 -7px 0;
}
.form-search input {
width: 95%;
border-radius: 10px;
padding: 4px 0 4px 20px;
margin: 5px 10px 21px 1px;
border: 1px solid;
}
.result-search p {
font-size: 24px;
font-family: "Cormorant Garamond";
float: left;
margin: 0 0 0 0;
font-weight: bold;
}
.result-search span {
background-color: #202020;
color: #fff;
border-radius: 11px;
padding: 0 3% 0 3%;
margin: 5px 0 0 18px;
display: inline-block;
line-height: 23px;
}
.concurrences-line-1 p {
margin: 0 0 2% 0;
font-size: 36px;
font-weight: bold;
font-family: "CormorantGaramond";
}
.concurrences-line {
margin: 4% 0 0 0;
}
.concurrences-line p {
font-size: 36px;
display: inline-block;
font-weight: bold;
font-family: "CormorantGaramond";
}
.concurrences-line::after {
content: "";
display: inline-block;
vertical-align: middle;
width: 73%;
height: 1px;
background-color: #202020;
position: relative;
left: 5%;
}
.concurrences-line-1::before {
content: "";
display: inline-block;
vertical-align: middle;
width: 39%;
height: 1px;
background-color: #202020;
position: relative;
left: 65%;
top: 34px;
}
.concurrences-select {
padding: 3% 0 3.5% 0;
margin-top: 2%;
width: 100%;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.concurrences-select span input {
margin: 0 14px 0 0;
}
.search-scope-select span input {
margin: 0 14px 0 0;
}
.concurrences-select {
position: relative;
}
.concurrences-select::before {
content: '';
position: absolute;
width: 115%;
height: 100%;
top: 2.6%;
left: -10%;
background: #f3f3f3;
}
.search-scope-select {
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
}
.search-scope-horizontal {
position: relative;
}
.search-scope-horizontal::before {
content: '';
position: absolute;
width: 115%;
height: 130%;
top: 2.6%;
left: -10%;
background: #f3f3f3;
}
.concurrences-select span {
margin: 0 0 0 0;
font-size: 19px;
font-weight: bold;
position: relative;
}
.select-input-concurrences p {
font-size: 12px;
font-weight: 100;
margin: 0 0 10px 0;
font-family: 'Cormorant Garamond';
}
.concurrences-select select {
width: 235px;
height: 28px;
background-color: #f3f3f3;
font-family: 'Cormorant Garamond';
}
.search-scope {
margin: 6% 0 5% 0;
}
.select-left {
font-family: 'Cormorant Garamond', serif;
font-size: 19px;
}
.select-left .item2 {
margin: 32px 0 15px 0;
}
.select-right {
font-family: 'Cormorant Garamond', serif;
font-size: 19px;
}
.select-right .item1 {
margin: 32px 0 15px 0;
}
.select-left span {
margin: 3% 0 14% 0;
font-size: 19px;
font-weight: bold;
}
.select-right span {
margin: 1% 0 14% 0;
font-size: 19px;
font-weight: bold;
}
.select-search-scope p {
width: 100%;
font-size: 14px;
/* margin: 0 0 7% 0; */
}
.select-search-scope {
display: -ms-inline-grid;
/* display: inline-grid; */
/* margin: 13% 0 0 9.6%; */
width: 174px;
/* height: 50px; */
padding-top: 10%;
}
.select-search-scope select {
background-color: #f3f3f3;
font-size: 16px;
width: 100%;
font-family: 'Cormorant Garamond';
}
.link-center a {
color: #455ea7;
font-size: 19px;
font-family: 'Roboto';
}
.start {
background-color: #202020;
color: #fff;
border-radius: 20px;
margin: 0 1% 0 1.5%;
padding: 0 6px 0 6px;
font-size: 16px;
}
.end {
border: 1px solid #202020;
color: #202020;
border-radius: 20px;
margin: 0 0% 0 1%;
padding: 0 6px 0 6px;
font-size: 16px;
}
.item {
width: 100%;
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -moz-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
margin: 15px 0 25px 0;
}
.item-number {
width: 20px;
height: 20px;
color: #fff;
background-color: #202020;
border-radius: 10px;
margin: 0.2% 1.6% 0 0;
padding: 3px 0 0 0;
font-size: 14px;
font-family: 'Roboto';
text-align: center;
position: absolute;
}
.item .item-description {
position: relative;
margin: 3px 0 0 30px;
}
.link-center p {
color: #5d5d5d;
font-size: 16px;
margin: 11px 0 0 0;
font-family: 'Roboto';
}
.page-pagination {
margin: 6.5% 0 8.5% 0;
font-size: 24px;
}
.link-center {
margin: 0 0 0 0;
}
.pagination-main {
text-align: center;
margin: 7% 0 7% 0;
}
.pagination-main button {
border-radius: 10px;
border: 1px solid #202020;
background-color: #fff;
padding: 0 13px 0 13px;
}
.pagination-main button:hover {
border-radius: 10px;
border: 1px solid #202020;
background-color: #202020;
color: #fff;
padding: 0 13px 0 13px;
-webkit-transition: 0.5s;
transition: 0.5s;
}
.pagination-main span {
margin: 2%;
}
/* clock */
.select-left input[type=radio]:not(checked) + label:after {
content: '';
position: absolute;
top: 5px;
left: 6px;
width: 12px;
height: 12px;
border-radius: 50%;
background: #202020;
opacity: 0;
-webkit-transition: all 0.2s;
transition: all 0.2s;
}
.blog-categories .select {
font-family: 'Cormorant Garamond', serif;
font-size: 19px;
color: #000;
margin-top: 26px;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.blog-categories .select .form-select {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.blog-categories .select .form-select>div {
margin-right: 0;
}
.blog-categories .select input [type=radio] {
vertical-align: top;
width: 12px;
height: 12px;
margin: 0 3px 0 0;
}
.blog-categories .select input [type=radio]+ label {
cursor: pointer;
}
.blog-categories .select input[type=radio]:not(checked) {
position: absolute;
opacity: 0;
}
.blog-categories .select input[type=radio]:not(checked) + label {
position: relative;
padding: 0 24px 0 29px;
}
.blog-categories .select input[type=radio]:not(checked) + label:before {
content: '';
position: absolute;
top: 4px;
left: 5px;
width: 12px;
height: 12px;
border: 1px solid #cdd1da;
border-radius: 50%;
background: #fff;
}
.blog-categories .select input[type=radio]:not(checked) + label:after {
content: '';
position: absolute;
top: 5px;
left: 6px;
width: 12px;
height: 12px;
border-radius: 50%;
background: #7e2b83;
opacity: 0;
-webkit-transition: all 0.2s;
transition: all 0.2s;
}
.blog-categories .select-blue input[type=radio]:not(checked) + label:after {
background: #455ea7;
}
.blog-categories .select-black input[type=radio]:not(checked) + label:after {
background: #202020;
}
.blog-categories .select input[type=radio]:checked + label:after {
opacity: 1;
}
.horoscope .content-aside-main .content {
margin-top: 43px;
}
.horoscope .content-aside-main .articles-vertical {
margin: 0 0 65px 0;
}
.horoscope .aside-block .form-wrap {
margin: 27.6% 0;
padding: 13% 9.6%;
}
.select-kategorii {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.blog-categories .select input [type=checkbox] {
vertical-align: top;
width: 12px;
height: 12px;
margin: 0 3px 0 0;
}
.blog-categories .select input [type=checkbox] + label {
cursor: pointer;
}
.blog-categories .select input[type=checkbox]:not(checked) {
position: absolute;
opacity: 0;
}
.blog-categories .select input[type=checkbox]:not(checked) + label {
position: relative;
padding: 0 24px 0 29px;
}
.blog-categories .select input[type=checkbox]:not(checked) + label:before {
content: '';
position: absolute;
top: 4px;
left: 5px;
width: 12px;
height: 12px;
border: 1px solid #cdd1da;
border-radius: 50%;
background: #fff;
}
.blog-categories .select input[type=checkbox]:not(checked) + label:after {
content: '';
position: absolute;
top: 5px;
left: 6px;
width: 12px;
height: 12px;
border-radius: 50%;
background: #7e2b83;
opacity: 0;
-webkit-transition: all 0.2s;
transition: all 0.2s;
}
.blog-categories .select-blue input[type=checkbox]:not(checked) + label:after {
background: #455ea7;
}
.blog-categories .select-black input[type=checkbox]:not(checked) + label:after {
background: #202020;
}
.blog-categories .select input[type=checkbox]:checked + label:after {
opacity: 1;
}
.horoscope .content-aside-main .content {
margin-top: 43px;
}
.horoscope .content-aside-main .articles-vertical {
margin: 0 0 65px 0;
}
.horoscope .aside-block .form-wrap {
margin: 27.6% 0;
padding: 13% 9.6%;
}
.select-kategorii {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.filter-search {
position: absolute;
bottom: -24%;
right: 0;
height: 23px;
border-radius: 23px;
background: #202020;
color: #fff;
text-transform: uppercase;
border: none;
letter-spacing: 3.6px;
font-family: 'Roboto';
font-weight: 700;
font-size: 12px;
cursor: pointer;
padding: 0 23px;
transition: .5s;
}
.filter-search:hover {
background: #455EA7;
}
.doctor-page .filter-search:hover {
background: #7e2b83;
} | 0.319121 | 0.135604 |
@media screen and (max-width:1199px){
.gallery figure figcaption {
padding: 0 !important ;
color: #006030;
font-size: 0.8em !important;
}
figure.effect {
margin:0 0 0 0; !important;
}
figure.effect figcaption::before,
figure.effect figcaption::after {
position: absolute;
top: 0px !important;
right: 0px !important;
bottom: 0px !important ;
left: 0px !important;
content: '';
opacity: 0;
}
.tasto_scopri p a{
width:60% !important;
margin:40px 18% 0 18% !important;}
}
/* INIZIO STILI GENERALI */
/* ==========================================================================
COMMUNITY PROGETTISTI - PARTE FISSA
========================================================================== */
#community_fixed{
width:40%;
height:100%;
position:fixed;
left:0;
top:0;
background: url(../img_museo_virtuale_inconsapevolezza_quotidiana/community_progettisti.jpg) no-repeat center center #FFF;
}
#community_fixed header h1{
font-family: 'EB Garamond';
font-size:2.5em;
font-style: normal;
font-weight: 550;
margin:50px 0 0 0;
padding:0 15% 0 15%;
width:70%;
color:#000;
text-transform:uppercase;
}
#community_fixed header h2{
font-size:1.0em;
margin:0 0 0 7%;
padding:0 13% 0 15%;
width:70%;
color:#000;
font-style: normal;
}
#community_fixed p{
margin:30px 50px 0 15%;
font-size:0.85em;
line-height:1.8em;
width:65%;
text-align:justify;
padding:0 0 20px 0;
}
/* ==========================================================================
COMMUNITY PROGETTISTI - PARTE MOBILE
========================================================================== */
#conteiner{
float:right;
width:60%;
padding:0 0 70px 0;
overflow:hidden;
background-color:#033;
}
#progettisti{
width:80%;
padding:50px 10% 30px 7%;
margin:0 0 0 3%;
background-color:#fff;
}
#progettisti header h2{
font-size:1.2em;
font-variant:small-caps;
color:#777;
}
#progettisti header h3{
font-size:2.2em;
line-height:0.9em;
font-family: 'EB Garamond', serif !important;
font-variant:small-caps;
color:#033;
font-weight:600;
}
#progettisti header h4{
font-size:0.9em;
line-height:1em;
color:#222;
padding:5px 0 0 0;
font-style:italic;
}
#progettisti p{
text-align:justify;
font-size:0.9em;
line-height:1.8em;
}
#progettisti p .span_citazione{
font-size:0.8em;
line-height:1.4em;
display:block;
text-align:right !important;
font-style:italic; width:100%;
padding:20px 0 20px 0;
float:right;
}
/* ===INIZIO GALLERY=======================================================================*/
#gallery{
width:100%;
background:#033;
/* border-right: 3% solid #033;
border-left: 3% solid #033;
*/ }
ul#progettisti_gallery {
width:80%;
padding:30px 9% 50px 7%;
margin:0 1% 0 3%;
display:inline-block;
position:relative;
background-color:#fff;
}
#prog_g1, #prog_g3 { float:left; }
#prog_g2, #prog_g4 { float:right;}
/* gallery hover effect */
.gallery {
margin: 0;
}
.gallery figure {
position: relative;
overflow: hidden;
max-height: 250px;
width: 48%;
text-align: center;
cursor: pointer;
padding:0;
margin:0;
}
.gallery figure img {
position: relative;
display: block;
min-height: 100%;
max-width: 100%;
opacity: 0.8;
padding:0;
}
.gallery figure figcaption {
padding: 1%;
color: #006030;
font-size: 0.85em;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.gallery figure figcaption::before,
.gallery figure figcaption::after {
pointer-events: none;
}
.gallery figure h2 {font-weight: 500; margin: 0; color:#006030;}
.gallery figure h2 span {font-weight: 800;}
.gallery figure p {margin: 0; color:#222; }
figure.effect {
background: #fff;
margin:2% 0 1% 0; !important;
}
figure.effect img {
max-width: none;
width: -webkit-calc(100% + 20px);
width: calc(100% + 20px);
opacity: 1;
margin:0 0 0 20px;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(-25px,0,0) scale(1.12);
transform: translate3d(-25px,0,0) scale(1.12);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
figure.effect:hover img {
opacity: 0.15;
-webkit-transform: translate3d(-25px,0,0) scale(1);
transform: translate3d(-25px,0,0) scale(1);
}
/*---*/
figure.effect figcaption::before,
figure.effect figcaption::after {
position: absolute;
top: 25px;
right: 25px;
bottom: 25px;
left: 20px;
content: '';
opacity: 0;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-moz-box-shadow: 0 0 10px #ccc;
-webkit-box-shadow: 0 0 10px #ccc;
box-shadow: 0 0 10px #ccc;
}
figure.effect figcaption::before {
border-top: 2px solid #006030;
border-bottom: 2px solid #006030;
-webkit-transform: scale(0,1);
transform: scale(0,1);
}
figure.effect figcaption::after {
border-right: 2px solid #006030;
border-left: 2px solid #006030;
-webkit-transform: scale(1,0);
transform: scale(1,0);
}
figure.effect h2{
padding-top: 8% !important;
opacity:0;
-webkit-transition: opacity 0.5s, -webkit-transform 0.35s;
transition: transform 0.35s;
-webkit-transform: translate3d(0,-20px,0);
transform: translate3d(0,-20px,0);
}
figure.effect a{
width:50%;
text-align:center;
color:#222;
padding:5px 0 5px 0;
margin: 5px 25% 0 25%;
display:block;
opacity:0;
-webkit-transition: opacity 0.5s, -webkit-transform 0.35s;
transition: transform 0.35s;
-webkit-transform: translate3d(0,-20px,0);
transform: translate3d(0,-20px,0);
}
figure.effect h2:hover { opacity:1;}
figure.effect p {
margin: 15px 10% 0 10%;
width:80%;
font-size:0.85em !important;
opacity: 0;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(0,20px,0);
transform: translate3d(0,20px,0);
}
figure.effect:hover figcaption::before,
figure.effect:hover figcaption::after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
figure.effect :hover h2,
figure.effect :hover p,
figure.effect :hover a {
opacity: 1;
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
/* CONTENUTO MOSTRA */
/* MOSTRA 1 */
div.mostra{
width:100%;
margin:0 0 0 0;
}
.sp-slideshow {
position: relative;
padding:0 0 0 0;
width: 950px;
height:460px;
max-width: 950px;
height: 460px;
/* border: 10px solid #fff;
border: 10px solid rgba(255,255,255,0.9);
*/ box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.sp-content{
background: #fff url(../img_museo_virtuale_inconsapevolezza_quotidiana/mvin_sfondo_partecipa_nero.png) repeat scroll 0 0;
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.sp-parallax-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.bg_coltivarsi{
position: absolute;
bottom:0;
margin:5%;
width:90%;
border-bottom: solid 1px #9b9b9b;
}
.bg_coltivarsi > span{
margin:7% 0 0 0;
display:block;
width:30%;
float:right;
font-size:0.7em;
color:#bbb;
text-transform:uppercase;
}
.bg_coltivarsi > img{
width:15% !important;
opacity:0.2;
margin:0 0 0 1%;
float:left;
}
.sp-slideshow input {
position: absolute;
bottom: 15px;
left: 50%;
width: 9px;
height: 9px;
z-index: 1001;
cursor: pointer;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.sp-slideshow input + label {
position: absolute;
bottom: 15px;
left: 50%;
width: 8px;
height: 8px;
display: block;
z-index: 1000;
border: 2px solid #C7B299;
border: 2px solid rgba(199,178,153,0.9);
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
-webkit-transition: background-color linear 0.1s;
-moz-transition: background-color linear 0.1s;
-o-transition: background-color linear 0.1s;
-ms-transition: background-color linear 0.1s;
transition: background-color linear 0.1s;
}
.sp-slideshow input:checked + label {
background-color: #C7B299;
background-color: rgba(199,178,153,0.9);
}
.sp-selector-1, .button-label-1 {
margin-left: -36px;
}
.sp-selector-2, .button-label-2 {
margin-left: -18px;
}
.sp-selector-4, .button-label-4 {
margin-left: 18px;
}
.sp-selector-5, .button-label-5 {
margin-left: 36px;
}
.sp-selector-6, .button-label-6 {
margin-left: 54px;
}
.sp-selector-7, .button-label-7 {
margin-left: 72px;
}
.sp-arrow {
position: absolute;
top: 50%;
width: 28px;
height: 38px;
margin-top: -19px;
display: none;
opacity: 0.8;
cursor: pointer;
z-index: 1000;
background: transparent url(../img_museo_virtuale_inconsapevolezza_quotidiana/arrows.png) no-repeat;
-webkit-transition: opacity linear 0.3s;
-moz-transition: opacity linear 0.3s;
-o-transition: opacity linear 0.3s;
-ms-transition: opacity linear 0.3s;
transition: opacity linear 0.3s;
}
.sp-arrow:hover{
opacity: 1;
}
.sp-arrow:active{
margin-top: -18px;
}
.sp-selector-1:checked ~ .sp-arrow.sp-a2,
.sp-selector-2:checked ~ .sp-arrow.sp-a3,
.sp-selector-3:checked ~ .sp-arrow.sp-a4,
.sp-selector-4:checked ~ .sp-arrow.sp-a5,
.sp-selector-5:checked ~ .sp-arrow.sp-a6,
.sp-selector-6:checked ~ .sp-arrow.sp-a7{
right: 15px;
display: block;
background-position: top right;
}
.sp-selector-2:checked ~ .sp-arrow.sp-a1,
.sp-selector-3:checked ~ .sp-arrow.sp-a2,
.sp-selector-4:checked ~ .sp-arrow.sp-a3,
.sp-selector-5:checked ~ .sp-arrow.sp-a4,
.sp-selector-6:checked ~ .sp-arrow.sp-a5,
.sp-selector-7:checked ~ .sp-arrow.sp-a6{
left: 15px;
display: block;
background-position: top left;
}
.sp-slideshow input:checked ~ .sp-content {
-webkit-transition: background-position linear 0.6s, background-color linear 0.8s;
-moz-transition: background-position linear 0.6s, background-color linear 0.8s;
-o-transition: background-position linear 0.6s, background-color linear 0.8s;
-ms-transition: background-position linear 0.6s, background-color linear 0.8s;
transition: background-position linear 0.6s, background-color linear 0.8s;
}
.sp-slideshow input:checked ~ .sp-content .sp-parallax-bg .bg_coltivarsi {
-webkit-transition: background-position linear 0.7s;
-moz-transition: background-position linear 0.7s;
-o-transition: background-position linear 0.7s;
-ms-transition: background-position linear 0.7s;
transition: background-position linear 0.7s;
}
input.sp-selector-1:checked ~ .sp-content {
background-position: 0 0;
background: #f3f3f3;
}
input.sp-selector-2:checked ~ .sp-content {
background-position: -100px 0;
background-color: #ddd;
}
input.sp-selector-3:checked ~ .sp-content {
background-position: -200px 0;
background-color: #fff;
}
input.sp-selector-4:checked ~ .sp-content {
background-position: -300px 0;
background-color: #b8c0c6;
}
input.sp-selector-5:checked ~ .sp-content {
background-position: -400px 0;
background-color: #acbfb9;
}
input.sp-selector-6:checked ~ .sp-content {
background-position: -500px 0;
background-color: #FCAF70;
}
input.sp-selector-7:checked ~ .sp-content {
background-position: -600px 0;
background-color: #F00;
}
input.sp-selector-1:checked ~ .sp-content .sp-parallax-bg{
background-position: 0 0;
}
input.sp-selector-2:checked ~ .sp-content .sp-parallax-bg {
background-position: -200px 0;
}
input.sp-selector-3:checked ~ .sp-content .sp-parallax-bg {
background-position: -400px 0;
}
input.sp-selector-4:checked ~ .sp-content .sp-parallax-bg {
background-position: -600px 0;
}
input.sp-selector-5:checked ~ .sp-content .sp-parallax-bg {
background-position: -800px 0;
}
input.sp-selector-6:checked ~ .sp-content .sp-parallax-bg {
background-position: -1000px 0;
}
input.sp-selector-7:checked ~ .sp-content .sp-parallax-bg {
background-position: -1200px 0;
}
/*ppppp*/
.sp-slider {
position: relative;
left: 0;
width: 500%;
height: 100%;
list-style: none;
margin: 0;
padding: 0;
-webkit-transition: left ease-in 0.8s;
-moz-transition: left ease-in 0.8s;
-o-transition: left ease-in 0.8s;
-ms-transition: left ease-in 0.8s;
transition: left ease-in 0.8s;
}
.sp-slider > li {
width: 20%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
height: 100%;
padding: 0 60px;
float: left;
opacity: 0.4;
-webkit-transition: opacity ease-in 0.4s 0.8s;
-moz-transition: opacity ease-in 0.4s 0.8s;
-o-transition: opacity ease-in 0.4s 0.8s;
-ms-transition: opacity ease-in 0.4s 0.8s;
transition: opacity ease-in 0.4s 0.8s;
}
.sp-slider .copertina img{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
display: block;
margin: 0 auto;
padding: 100px 0 0 0;
max-height: 100%;
max-width: 100%;
}
.sp-slider > li.copertina p {
text-align: center;
color: #9b9b9b;
font-size: 0.7em;
margin:0 0 0 0;
text-height:1em;
}
.testo_mostra p {
color:#006837;
margin:70px 25% 0 25%;
background:#eee;
font-size: 0.85em;
padding:5%;
text-height:1.8em;
width:40%;
border: solid 10px #006837;
text-align:left;
}
.testo_mostra p span, .sistema_coltivarsi2 p span,.sistema_reverdece2 p span{
font-size:1.4em;
font-weight:700;
text-height:1.5em;
}
.testo_mostra img{
width:60%;
margin:-5% 0 0 3% !important;
position:relative;
}
.sistema_coltivarsi img{
margin:0 0 0 10px;
text-align:center;
width:90%;
padding: 0 5%;
}
.sistema_coltivarsi2{
float:left;
margin:90px 0 0 0;
}
.sistema_coltivarsi2 p{
position:relative;
font-size:0.85em;
color:#006837;
background:#eee;
padding:2%;
text-height:1.8em;
width:20%;
border: solid 10px #006837;
text-align:left;
}
.sistema_coltivarsi2 img{
margin: 0 0 0 0;
padding: 0 3%;
width:65%;
}
.crediti_gallery{
color:#fff;
text-align:left;
font-size:0.9em;
margin:0 0 0 0;
}
.crediti_gallery h3{
font-size:1.5em !important;
padding:0 0 5px 0;
margin:60px 0 0 0 !important;
font-weight:500;
}
.crediti_gallery h4{
font-size:0.9em !important;
text-height:1.5em;
}
.crediti_gallery div{
font-size:0.85em !important;
text-height:1.5em;
margin:7px 0 0 0;
height:35px;
}
.crediti_gallery span{
text-align:left;
}
.crediti_gallery a{
color:#eee;
margin:0 0 0 5px;
}
.crediti_gallery a:hover{
color:#006837;
}
/*MANI IN ARTE*/
.mani_in_arte{padding:0 5%; margin:20px 0 0 0; }
/*REVERDECE*/
.sistema_reverdece img{
margin:50px 0 0 -35%;
text-align:center;
position:relative;
left:50%;
width:70%;
}
.sistema_reverdece2{
margin:30px 0 0 0;
}
.sistema_reverdece2 p{
font-size:0.85em;
color:#006837;
background:#eee;
padding:2%;
text-height:1.8em;
width:70%;
border: solid 10px #006837;
text-align:left;
margin:10px 0 0 -37%;
position:relative;
left:50%;
}
.sistema_reverdece2 img{
margin:-10px 0 0 -35%;
width:70%;
position:relative;
left:50%;}
.testo_mostra p span, .sistema_coltivarsi2 p span,.sistema_reverdece2 p span {
font-size:1.4em;
font-weight:700;
text-height:1.5em;
}
input.sp-selector-1:checked ~ .sp-content .sp-slider {
left: 0;
}
input.sp-selector-2:checked ~ .sp-content .sp-slider {
left: -100%;
}
input.sp-selector-3:checked ~ .sp-content .sp-slider {
left: -200%;
}
input.sp-selector-4:checked ~ .sp-content .sp-slider {
left: -300%;
}
input.sp-selector-5:checked ~ .sp-content .sp-slider {
left: -400%;
}
input.sp-selector-1:checked ~ .sp-content .sp-slider > li:first-child,
input.sp-selector-2:checked ~ .sp-content .sp-slider > li:nth-child(2),
input.sp-selector-3:checked ~ .sp-content .sp-slider > li:nth-child(3),
input.sp-selector-4:checked ~ .sp-content .sp-slider > li:nth-child(4),
input.sp-selector-5:checked ~ .sp-content .sp-slider > li:nth-child(5)
{
opacity: 1;
}
/*MOSTRA 2*/
.content{
background: #fff url(../img_museo_virtuale_inconsapevolezza_quotidiana/mvin_sfondo_partecipa_nero.png) repeat scroll 0 0;
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.parallax_bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.bg_fieldiaries{
position: absolute;
bottom:0;
margin:5%;
width:90%;
border-bottom: solid 1px #9b9b9b;
}
.bg_fieldiaries > span{
margin:7% 0 0 0;
display:block;
width:30%;
float:right;
font-size:0.7em;
color:#bbb;
text-transform:uppercase;
}
.bg_fieldiaries > img{
width:15% !important;
opacity:0.2;
margin:0 0 0 1%;
float:left;
}
.selector1, .label1 {
margin-left: -54px;
}
.selector2, .label2 {
margin-left: -36px;
}
.selector3, .label3 {
margin-left: -18px;
}
.selector4, .label4 {
margin-left: 0;
}
.selector5, .label5 {
margin-left: 18px;
}
.selector6, .label6 {
margin-left: 36px;
}
.selector1:checked ~ .sp-arrow.a2,
.selector2:checked ~ .sp-arrow.a3,
.selector3:checked ~ .sp-arrow.a4,
.selector4:checked ~ .sp-arrow.a5,
.selector5:checked ~ .sp-arrow.a6{
right: 15px;
display: block;
background-position: top right;
}
.selector2:checked ~ .sp-arrow.a1,
.selector3:checked ~ .sp-arrow.a2,
.selector4:checked ~ .sp-arrow.a3,
.selector5:checked ~ .sp-arrow.a4,
.selector6:checked ~ .sp-arrow.a5{
left: 15px;
display: block;
background-position: top left;
}
input.selector1:checked ~ .content {
background-position: 0 0;
background: #f3f3f3;
}
input.selector2:checked ~ .content {
background-position: -100px 0;
background-color: #ddd;
}
input.selector3:checked ~ .content {
background-position: -200px 0;
background-color: #fff;
}
input.selector4:checked ~ .content {
background-position: -300px 0;
background-color: #b8c0c6;
}
input.selector5:checked ~ .content {
background-position: -400px 0;
background-color: #acbfb9;
}
input.selector6:checked ~ .content {
background-position: -500px 0;
background-color: #acbfc9;
}
input.selector1:checked ~ .content .parallax_bg{
background-position: 0 0;
}
input.selector2:checked ~ .content .parallax_bg{
background-position: -200px 0;
}
input.selector3:checked ~ .content .parallax_bg{
background-position: -400px 0;
}
input.selector4:checked ~ .content .parallax_bg{
background-position: -600px 0;
}
input.selector5:checked ~ .content .parallax_bg{
background-position: -800px 0;
}
input.selector6:checked ~ .content .parallax_bg{
background-position: -1000px 0;
}
.slider {
position: relative;
left: 0;
width: 600%;
height: 100%;
list-style: none;
margin: 0;
padding: 0;
-webkit-transition: left ease-in 0.8s;
-moz-transition: left ease-in 0.8s;
-o-transition: left ease-in 0.8s;
-ms-transition: left ease-in 0.8s;
transition: left ease-in 0.8s;
}
.slider > li {
width: 20%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
height: 100%;
padding: 0 60px;
float: left;
opacity: 0.4;
-webkit-transition: opacity ease-in 0.4s 0.8s;
-moz-transition: opacity ease-in 0.4s 0.8s;
-o-transition: opacity ease-in 0.4s 0.8s;
-ms-transition: opacity ease-in 0.4s 0.8s;
transition: opacity ease-in 0.4s 0.8s;
}
.slider .copertina_fieldiaries{
margin:30px 0 0 -80px;
max-height: 100%;
max-width: 100%;
}
.slider .copertina_fieldiaries img{
display: block;
margin: 0 auto;
padding: 90px 0 0 0;
max-height: 100%;
max-width: 100%;
}
.slider > li.copertina_fieldiaries p {
text-align: center;
color: #9b9b9b;
font-size: 0.7em;
margin:0 0 0 0;
text-height:1em;
}
.testo_fieldiaries p{
color:#006837 !important;
margin:50px 0 0 0;
background:#eee;
font-size: 0.85em !important;
padding:2%;
text-height:1.5em !important;
width:60%;
border: solid 10px #006837 !important;
text-align:left;
}
.testo_fieldiaries p span{
font-size:1.4em;
font-weight:700;
text-height:1.5em;
}
.fieldiaries{ margin:10px 0 0 -190px;}
.fieldiaries2{ margin:10px 0 0 -190px; }
.crediti_gallery2{
color:#fff;
text-align: left;
font-size:0.9em;
margin:0 0 0 -600px;
padding:0 0 0 350px !important;
}
.crediti_gallery2 div h3{
font-size:1.8em !important;
padding:0 0 5px 0;
font-weight:500;
margin:50px 0 0 0;
}
.crediti_gallery2 div{
font-size:0.85em !important;
text-height:1.5em;
margin:7px 0 0 0;
height:35px;
}
.crediti_gallery2 span{
text-align:center;
top:7px;
}
.crediti_gallery2 a{
color:#eee;
clear:both;
margin:0 0 0 5px;
}
.crediti_gallery2 a:hover{
color:#006837;
}
input.selector1:checked ~ .content .slider {
left: 0;
}
input.selector2:checked ~ .content .slider {
left: -100%;
}
input.selector3:checked ~ .content .slider {
left: -200%;
}
input.selector4:checked ~ .content .slider {
left: -300%;
}
input.selector5:checked ~ .content .slider {
left: -400%;
}
input.selector6:checked ~ .content .slider {
left: -500%;
}
input.selector1:checked ~ .content .slider > li:first-child,
input.selector2:checked ~ .content .slider > li:nth-child(2),
input.selector3:checked ~ .content .slider > li:nth-child(3),
input.selector4:checked ~ .content .slider > li:nth-child(4),
input.selector5:checked ~ .content .slider > li:nth-child(5),
input.selector6:checked ~ .content .slider > li:nth-child(6){
opacity: 1;}
/* bottone partecipa */
.tasto_scopri{
width:100%;
background:#eee;
padding:30px 0 30px 0;
}
.tasto_scopri h3{
width:80%;
padding:0 10%;
font-size:1.6em;
color:#000;
font-family: 'EB Garamond', serif;
}
.tasto_scopri p{
width:70%;
padding:10px 15%;
font-size:0.9em;
line-height:1.6em;
color:#222;
text-align:justify;
}
.tasto_scopri p a{
width:50%;
display:block;
padding:20px 2%;
margin:40px 23% 0 23%;
font-size:120%;
color:#ff5000;
background:#fff;
text-align:center;
outline: 2px solid #ff5000;
outline-offset: 5px;
font-family: 'EB Garamond', serif;
font-weight:700;
letter-spacing:1px;
opacity:1;
-webkit-transition: all 0.8s ease-in-out;
-moz-transition: all 0.8s ease-in-out;
-ms-transition: all 0.8s ease-in-out;
-o-transition: all 0.8s ease-in-out;
transition: all 0.8s ease-in-out; }
.tasto_scopri p a:hover{
background:#ff5000;
color:#fff;
letter-spacing:0px;
opacity:0.7;
outline: 2px solid #fff;
outline-offset: 5px;
-webkit-transition: all 0.8s ease-in-out;
-moz-transition: all 0.8s ease-in-out;
-ms-transition: all 0.8s ease-in-out;
-o-transition: all 0.8s ease-in-out;
transition: all 0.8s ease-in-out;
}
/* ======================================================================== */
/* ======================================================================== */
/* ======================================================================== */
#ombra_gallery{
background:url(../img_museo_virtuale_inconsapevolezza_quotidiana/sfondo_oscura_museo_virtuale_inconsapevolezza_quotidiana.png) repeat;
cursor:pointer;
}
#contenitore_slide{
position:absolute;
width:950px;
height:460px;
left:50%;
margin:0 0 0 -485px;
top:50px;
padding:10px;
background-color:#FFFFFF;
}
@media screen and (max-width: 840px){
.sp-slideshow { height: 345px; }
}
@media screen and (max-width: 680px){
.sp-slideshow { height: 285px; }
}
@media screen and (max-width: 560px){
.sp-slideshow { height: 235px; }
}
@media screen and (max-width: 320px){
.sp-slideshow { height: 158px; }
} | css_museo_virtuale_inconsapevolezza_quotidiana/stile_community_museo_virtuale_inconsapevolezza_quotidiana.css | @media screen and (max-width:1199px){
.gallery figure figcaption {
padding: 0 !important ;
color: #006030;
font-size: 0.8em !important;
}
figure.effect {
margin:0 0 0 0; !important;
}
figure.effect figcaption::before,
figure.effect figcaption::after {
position: absolute;
top: 0px !important;
right: 0px !important;
bottom: 0px !important ;
left: 0px !important;
content: '';
opacity: 0;
}
.tasto_scopri p a{
width:60% !important;
margin:40px 18% 0 18% !important;}
}
/* INIZIO STILI GENERALI */
/* ==========================================================================
COMMUNITY PROGETTISTI - PARTE FISSA
========================================================================== */
#community_fixed{
width:40%;
height:100%;
position:fixed;
left:0;
top:0;
background: url(../img_museo_virtuale_inconsapevolezza_quotidiana/community_progettisti.jpg) no-repeat center center #FFF;
}
#community_fixed header h1{
font-family: 'EB Garamond';
font-size:2.5em;
font-style: normal;
font-weight: 550;
margin:50px 0 0 0;
padding:0 15% 0 15%;
width:70%;
color:#000;
text-transform:uppercase;
}
#community_fixed header h2{
font-size:1.0em;
margin:0 0 0 7%;
padding:0 13% 0 15%;
width:70%;
color:#000;
font-style: normal;
}
#community_fixed p{
margin:30px 50px 0 15%;
font-size:0.85em;
line-height:1.8em;
width:65%;
text-align:justify;
padding:0 0 20px 0;
}
/* ==========================================================================
COMMUNITY PROGETTISTI - PARTE MOBILE
========================================================================== */
#conteiner{
float:right;
width:60%;
padding:0 0 70px 0;
overflow:hidden;
background-color:#033;
}
#progettisti{
width:80%;
padding:50px 10% 30px 7%;
margin:0 0 0 3%;
background-color:#fff;
}
#progettisti header h2{
font-size:1.2em;
font-variant:small-caps;
color:#777;
}
#progettisti header h3{
font-size:2.2em;
line-height:0.9em;
font-family: 'EB Garamond', serif !important;
font-variant:small-caps;
color:#033;
font-weight:600;
}
#progettisti header h4{
font-size:0.9em;
line-height:1em;
color:#222;
padding:5px 0 0 0;
font-style:italic;
}
#progettisti p{
text-align:justify;
font-size:0.9em;
line-height:1.8em;
}
#progettisti p .span_citazione{
font-size:0.8em;
line-height:1.4em;
display:block;
text-align:right !important;
font-style:italic; width:100%;
padding:20px 0 20px 0;
float:right;
}
/* ===INIZIO GALLERY=======================================================================*/
#gallery{
width:100%;
background:#033;
/* border-right: 3% solid #033;
border-left: 3% solid #033;
*/ }
ul#progettisti_gallery {
width:80%;
padding:30px 9% 50px 7%;
margin:0 1% 0 3%;
display:inline-block;
position:relative;
background-color:#fff;
}
#prog_g1, #prog_g3 { float:left; }
#prog_g2, #prog_g4 { float:right;}
/* gallery hover effect */
.gallery {
margin: 0;
}
.gallery figure {
position: relative;
overflow: hidden;
max-height: 250px;
width: 48%;
text-align: center;
cursor: pointer;
padding:0;
margin:0;
}
.gallery figure img {
position: relative;
display: block;
min-height: 100%;
max-width: 100%;
opacity: 0.8;
padding:0;
}
.gallery figure figcaption {
padding: 1%;
color: #006030;
font-size: 0.85em;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.gallery figure figcaption::before,
.gallery figure figcaption::after {
pointer-events: none;
}
.gallery figure h2 {font-weight: 500; margin: 0; color:#006030;}
.gallery figure h2 span {font-weight: 800;}
.gallery figure p {margin: 0; color:#222; }
figure.effect {
background: #fff;
margin:2% 0 1% 0; !important;
}
figure.effect img {
max-width: none;
width: -webkit-calc(100% + 20px);
width: calc(100% + 20px);
opacity: 1;
margin:0 0 0 20px;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(-25px,0,0) scale(1.12);
transform: translate3d(-25px,0,0) scale(1.12);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
figure.effect:hover img {
opacity: 0.15;
-webkit-transform: translate3d(-25px,0,0) scale(1);
transform: translate3d(-25px,0,0) scale(1);
}
/*---*/
figure.effect figcaption::before,
figure.effect figcaption::after {
position: absolute;
top: 25px;
right: 25px;
bottom: 25px;
left: 20px;
content: '';
opacity: 0;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-moz-box-shadow: 0 0 10px #ccc;
-webkit-box-shadow: 0 0 10px #ccc;
box-shadow: 0 0 10px #ccc;
}
figure.effect figcaption::before {
border-top: 2px solid #006030;
border-bottom: 2px solid #006030;
-webkit-transform: scale(0,1);
transform: scale(0,1);
}
figure.effect figcaption::after {
border-right: 2px solid #006030;
border-left: 2px solid #006030;
-webkit-transform: scale(1,0);
transform: scale(1,0);
}
figure.effect h2{
padding-top: 8% !important;
opacity:0;
-webkit-transition: opacity 0.5s, -webkit-transform 0.35s;
transition: transform 0.35s;
-webkit-transform: translate3d(0,-20px,0);
transform: translate3d(0,-20px,0);
}
figure.effect a{
width:50%;
text-align:center;
color:#222;
padding:5px 0 5px 0;
margin: 5px 25% 0 25%;
display:block;
opacity:0;
-webkit-transition: opacity 0.5s, -webkit-transform 0.35s;
transition: transform 0.35s;
-webkit-transform: translate3d(0,-20px,0);
transform: translate3d(0,-20px,0);
}
figure.effect h2:hover { opacity:1;}
figure.effect p {
margin: 15px 10% 0 10%;
width:80%;
font-size:0.85em !important;
opacity: 0;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(0,20px,0);
transform: translate3d(0,20px,0);
}
figure.effect:hover figcaption::before,
figure.effect:hover figcaption::after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
figure.effect :hover h2,
figure.effect :hover p,
figure.effect :hover a {
opacity: 1;
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
/* CONTENUTO MOSTRA */
/* MOSTRA 1 */
div.mostra{
width:100%;
margin:0 0 0 0;
}
.sp-slideshow {
position: relative;
padding:0 0 0 0;
width: 950px;
height:460px;
max-width: 950px;
height: 460px;
/* border: 10px solid #fff;
border: 10px solid rgba(255,255,255,0.9);
*/ box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.sp-content{
background: #fff url(../img_museo_virtuale_inconsapevolezza_quotidiana/mvin_sfondo_partecipa_nero.png) repeat scroll 0 0;
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.sp-parallax-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.bg_coltivarsi{
position: absolute;
bottom:0;
margin:5%;
width:90%;
border-bottom: solid 1px #9b9b9b;
}
.bg_coltivarsi > span{
margin:7% 0 0 0;
display:block;
width:30%;
float:right;
font-size:0.7em;
color:#bbb;
text-transform:uppercase;
}
.bg_coltivarsi > img{
width:15% !important;
opacity:0.2;
margin:0 0 0 1%;
float:left;
}
.sp-slideshow input {
position: absolute;
bottom: 15px;
left: 50%;
width: 9px;
height: 9px;
z-index: 1001;
cursor: pointer;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.sp-slideshow input + label {
position: absolute;
bottom: 15px;
left: 50%;
width: 8px;
height: 8px;
display: block;
z-index: 1000;
border: 2px solid #C7B299;
border: 2px solid rgba(199,178,153,0.9);
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
-webkit-transition: background-color linear 0.1s;
-moz-transition: background-color linear 0.1s;
-o-transition: background-color linear 0.1s;
-ms-transition: background-color linear 0.1s;
transition: background-color linear 0.1s;
}
.sp-slideshow input:checked + label {
background-color: #C7B299;
background-color: rgba(199,178,153,0.9);
}
.sp-selector-1, .button-label-1 {
margin-left: -36px;
}
.sp-selector-2, .button-label-2 {
margin-left: -18px;
}
.sp-selector-4, .button-label-4 {
margin-left: 18px;
}
.sp-selector-5, .button-label-5 {
margin-left: 36px;
}
.sp-selector-6, .button-label-6 {
margin-left: 54px;
}
.sp-selector-7, .button-label-7 {
margin-left: 72px;
}
.sp-arrow {
position: absolute;
top: 50%;
width: 28px;
height: 38px;
margin-top: -19px;
display: none;
opacity: 0.8;
cursor: pointer;
z-index: 1000;
background: transparent url(../img_museo_virtuale_inconsapevolezza_quotidiana/arrows.png) no-repeat;
-webkit-transition: opacity linear 0.3s;
-moz-transition: opacity linear 0.3s;
-o-transition: opacity linear 0.3s;
-ms-transition: opacity linear 0.3s;
transition: opacity linear 0.3s;
}
.sp-arrow:hover{
opacity: 1;
}
.sp-arrow:active{
margin-top: -18px;
}
.sp-selector-1:checked ~ .sp-arrow.sp-a2,
.sp-selector-2:checked ~ .sp-arrow.sp-a3,
.sp-selector-3:checked ~ .sp-arrow.sp-a4,
.sp-selector-4:checked ~ .sp-arrow.sp-a5,
.sp-selector-5:checked ~ .sp-arrow.sp-a6,
.sp-selector-6:checked ~ .sp-arrow.sp-a7{
right: 15px;
display: block;
background-position: top right;
}
.sp-selector-2:checked ~ .sp-arrow.sp-a1,
.sp-selector-3:checked ~ .sp-arrow.sp-a2,
.sp-selector-4:checked ~ .sp-arrow.sp-a3,
.sp-selector-5:checked ~ .sp-arrow.sp-a4,
.sp-selector-6:checked ~ .sp-arrow.sp-a5,
.sp-selector-7:checked ~ .sp-arrow.sp-a6{
left: 15px;
display: block;
background-position: top left;
}
.sp-slideshow input:checked ~ .sp-content {
-webkit-transition: background-position linear 0.6s, background-color linear 0.8s;
-moz-transition: background-position linear 0.6s, background-color linear 0.8s;
-o-transition: background-position linear 0.6s, background-color linear 0.8s;
-ms-transition: background-position linear 0.6s, background-color linear 0.8s;
transition: background-position linear 0.6s, background-color linear 0.8s;
}
.sp-slideshow input:checked ~ .sp-content .sp-parallax-bg .bg_coltivarsi {
-webkit-transition: background-position linear 0.7s;
-moz-transition: background-position linear 0.7s;
-o-transition: background-position linear 0.7s;
-ms-transition: background-position linear 0.7s;
transition: background-position linear 0.7s;
}
input.sp-selector-1:checked ~ .sp-content {
background-position: 0 0;
background: #f3f3f3;
}
input.sp-selector-2:checked ~ .sp-content {
background-position: -100px 0;
background-color: #ddd;
}
input.sp-selector-3:checked ~ .sp-content {
background-position: -200px 0;
background-color: #fff;
}
input.sp-selector-4:checked ~ .sp-content {
background-position: -300px 0;
background-color: #b8c0c6;
}
input.sp-selector-5:checked ~ .sp-content {
background-position: -400px 0;
background-color: #acbfb9;
}
input.sp-selector-6:checked ~ .sp-content {
background-position: -500px 0;
background-color: #FCAF70;
}
input.sp-selector-7:checked ~ .sp-content {
background-position: -600px 0;
background-color: #F00;
}
input.sp-selector-1:checked ~ .sp-content .sp-parallax-bg{
background-position: 0 0;
}
input.sp-selector-2:checked ~ .sp-content .sp-parallax-bg {
background-position: -200px 0;
}
input.sp-selector-3:checked ~ .sp-content .sp-parallax-bg {
background-position: -400px 0;
}
input.sp-selector-4:checked ~ .sp-content .sp-parallax-bg {
background-position: -600px 0;
}
input.sp-selector-5:checked ~ .sp-content .sp-parallax-bg {
background-position: -800px 0;
}
input.sp-selector-6:checked ~ .sp-content .sp-parallax-bg {
background-position: -1000px 0;
}
input.sp-selector-7:checked ~ .sp-content .sp-parallax-bg {
background-position: -1200px 0;
}
/*ppppp*/
.sp-slider {
position: relative;
left: 0;
width: 500%;
height: 100%;
list-style: none;
margin: 0;
padding: 0;
-webkit-transition: left ease-in 0.8s;
-moz-transition: left ease-in 0.8s;
-o-transition: left ease-in 0.8s;
-ms-transition: left ease-in 0.8s;
transition: left ease-in 0.8s;
}
.sp-slider > li {
width: 20%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
height: 100%;
padding: 0 60px;
float: left;
opacity: 0.4;
-webkit-transition: opacity ease-in 0.4s 0.8s;
-moz-transition: opacity ease-in 0.4s 0.8s;
-o-transition: opacity ease-in 0.4s 0.8s;
-ms-transition: opacity ease-in 0.4s 0.8s;
transition: opacity ease-in 0.4s 0.8s;
}
.sp-slider .copertina img{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
display: block;
margin: 0 auto;
padding: 100px 0 0 0;
max-height: 100%;
max-width: 100%;
}
.sp-slider > li.copertina p {
text-align: center;
color: #9b9b9b;
font-size: 0.7em;
margin:0 0 0 0;
text-height:1em;
}
.testo_mostra p {
color:#006837;
margin:70px 25% 0 25%;
background:#eee;
font-size: 0.85em;
padding:5%;
text-height:1.8em;
width:40%;
border: solid 10px #006837;
text-align:left;
}
.testo_mostra p span, .sistema_coltivarsi2 p span,.sistema_reverdece2 p span{
font-size:1.4em;
font-weight:700;
text-height:1.5em;
}
.testo_mostra img{
width:60%;
margin:-5% 0 0 3% !important;
position:relative;
}
.sistema_coltivarsi img{
margin:0 0 0 10px;
text-align:center;
width:90%;
padding: 0 5%;
}
.sistema_coltivarsi2{
float:left;
margin:90px 0 0 0;
}
.sistema_coltivarsi2 p{
position:relative;
font-size:0.85em;
color:#006837;
background:#eee;
padding:2%;
text-height:1.8em;
width:20%;
border: solid 10px #006837;
text-align:left;
}
.sistema_coltivarsi2 img{
margin: 0 0 0 0;
padding: 0 3%;
width:65%;
}
.crediti_gallery{
color:#fff;
text-align:left;
font-size:0.9em;
margin:0 0 0 0;
}
.crediti_gallery h3{
font-size:1.5em !important;
padding:0 0 5px 0;
margin:60px 0 0 0 !important;
font-weight:500;
}
.crediti_gallery h4{
font-size:0.9em !important;
text-height:1.5em;
}
.crediti_gallery div{
font-size:0.85em !important;
text-height:1.5em;
margin:7px 0 0 0;
height:35px;
}
.crediti_gallery span{
text-align:left;
}
.crediti_gallery a{
color:#eee;
margin:0 0 0 5px;
}
.crediti_gallery a:hover{
color:#006837;
}
/*MANI IN ARTE*/
.mani_in_arte{padding:0 5%; margin:20px 0 0 0; }
/*REVERDECE*/
.sistema_reverdece img{
margin:50px 0 0 -35%;
text-align:center;
position:relative;
left:50%;
width:70%;
}
.sistema_reverdece2{
margin:30px 0 0 0;
}
.sistema_reverdece2 p{
font-size:0.85em;
color:#006837;
background:#eee;
padding:2%;
text-height:1.8em;
width:70%;
border: solid 10px #006837;
text-align:left;
margin:10px 0 0 -37%;
position:relative;
left:50%;
}
.sistema_reverdece2 img{
margin:-10px 0 0 -35%;
width:70%;
position:relative;
left:50%;}
.testo_mostra p span, .sistema_coltivarsi2 p span,.sistema_reverdece2 p span {
font-size:1.4em;
font-weight:700;
text-height:1.5em;
}
input.sp-selector-1:checked ~ .sp-content .sp-slider {
left: 0;
}
input.sp-selector-2:checked ~ .sp-content .sp-slider {
left: -100%;
}
input.sp-selector-3:checked ~ .sp-content .sp-slider {
left: -200%;
}
input.sp-selector-4:checked ~ .sp-content .sp-slider {
left: -300%;
}
input.sp-selector-5:checked ~ .sp-content .sp-slider {
left: -400%;
}
input.sp-selector-1:checked ~ .sp-content .sp-slider > li:first-child,
input.sp-selector-2:checked ~ .sp-content .sp-slider > li:nth-child(2),
input.sp-selector-3:checked ~ .sp-content .sp-slider > li:nth-child(3),
input.sp-selector-4:checked ~ .sp-content .sp-slider > li:nth-child(4),
input.sp-selector-5:checked ~ .sp-content .sp-slider > li:nth-child(5)
{
opacity: 1;
}
/*MOSTRA 2*/
.content{
background: #fff url(../img_museo_virtuale_inconsapevolezza_quotidiana/mvin_sfondo_partecipa_nero.png) repeat scroll 0 0;
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.parallax_bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.bg_fieldiaries{
position: absolute;
bottom:0;
margin:5%;
width:90%;
border-bottom: solid 1px #9b9b9b;
}
.bg_fieldiaries > span{
margin:7% 0 0 0;
display:block;
width:30%;
float:right;
font-size:0.7em;
color:#bbb;
text-transform:uppercase;
}
.bg_fieldiaries > img{
width:15% !important;
opacity:0.2;
margin:0 0 0 1%;
float:left;
}
.selector1, .label1 {
margin-left: -54px;
}
.selector2, .label2 {
margin-left: -36px;
}
.selector3, .label3 {
margin-left: -18px;
}
.selector4, .label4 {
margin-left: 0;
}
.selector5, .label5 {
margin-left: 18px;
}
.selector6, .label6 {
margin-left: 36px;
}
.selector1:checked ~ .sp-arrow.a2,
.selector2:checked ~ .sp-arrow.a3,
.selector3:checked ~ .sp-arrow.a4,
.selector4:checked ~ .sp-arrow.a5,
.selector5:checked ~ .sp-arrow.a6{
right: 15px;
display: block;
background-position: top right;
}
.selector2:checked ~ .sp-arrow.a1,
.selector3:checked ~ .sp-arrow.a2,
.selector4:checked ~ .sp-arrow.a3,
.selector5:checked ~ .sp-arrow.a4,
.selector6:checked ~ .sp-arrow.a5{
left: 15px;
display: block;
background-position: top left;
}
input.selector1:checked ~ .content {
background-position: 0 0;
background: #f3f3f3;
}
input.selector2:checked ~ .content {
background-position: -100px 0;
background-color: #ddd;
}
input.selector3:checked ~ .content {
background-position: -200px 0;
background-color: #fff;
}
input.selector4:checked ~ .content {
background-position: -300px 0;
background-color: #b8c0c6;
}
input.selector5:checked ~ .content {
background-position: -400px 0;
background-color: #acbfb9;
}
input.selector6:checked ~ .content {
background-position: -500px 0;
background-color: #acbfc9;
}
input.selector1:checked ~ .content .parallax_bg{
background-position: 0 0;
}
input.selector2:checked ~ .content .parallax_bg{
background-position: -200px 0;
}
input.selector3:checked ~ .content .parallax_bg{
background-position: -400px 0;
}
input.selector4:checked ~ .content .parallax_bg{
background-position: -600px 0;
}
input.selector5:checked ~ .content .parallax_bg{
background-position: -800px 0;
}
input.selector6:checked ~ .content .parallax_bg{
background-position: -1000px 0;
}
.slider {
position: relative;
left: 0;
width: 600%;
height: 100%;
list-style: none;
margin: 0;
padding: 0;
-webkit-transition: left ease-in 0.8s;
-moz-transition: left ease-in 0.8s;
-o-transition: left ease-in 0.8s;
-ms-transition: left ease-in 0.8s;
transition: left ease-in 0.8s;
}
.slider > li {
width: 20%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
height: 100%;
padding: 0 60px;
float: left;
opacity: 0.4;
-webkit-transition: opacity ease-in 0.4s 0.8s;
-moz-transition: opacity ease-in 0.4s 0.8s;
-o-transition: opacity ease-in 0.4s 0.8s;
-ms-transition: opacity ease-in 0.4s 0.8s;
transition: opacity ease-in 0.4s 0.8s;
}
.slider .copertina_fieldiaries{
margin:30px 0 0 -80px;
max-height: 100%;
max-width: 100%;
}
.slider .copertina_fieldiaries img{
display: block;
margin: 0 auto;
padding: 90px 0 0 0;
max-height: 100%;
max-width: 100%;
}
.slider > li.copertina_fieldiaries p {
text-align: center;
color: #9b9b9b;
font-size: 0.7em;
margin:0 0 0 0;
text-height:1em;
}
.testo_fieldiaries p{
color:#006837 !important;
margin:50px 0 0 0;
background:#eee;
font-size: 0.85em !important;
padding:2%;
text-height:1.5em !important;
width:60%;
border: solid 10px #006837 !important;
text-align:left;
}
.testo_fieldiaries p span{
font-size:1.4em;
font-weight:700;
text-height:1.5em;
}
.fieldiaries{ margin:10px 0 0 -190px;}
.fieldiaries2{ margin:10px 0 0 -190px; }
.crediti_gallery2{
color:#fff;
text-align: left;
font-size:0.9em;
margin:0 0 0 -600px;
padding:0 0 0 350px !important;
}
.crediti_gallery2 div h3{
font-size:1.8em !important;
padding:0 0 5px 0;
font-weight:500;
margin:50px 0 0 0;
}
.crediti_gallery2 div{
font-size:0.85em !important;
text-height:1.5em;
margin:7px 0 0 0;
height:35px;
}
.crediti_gallery2 span{
text-align:center;
top:7px;
}
.crediti_gallery2 a{
color:#eee;
clear:both;
margin:0 0 0 5px;
}
.crediti_gallery2 a:hover{
color:#006837;
}
input.selector1:checked ~ .content .slider {
left: 0;
}
input.selector2:checked ~ .content .slider {
left: -100%;
}
input.selector3:checked ~ .content .slider {
left: -200%;
}
input.selector4:checked ~ .content .slider {
left: -300%;
}
input.selector5:checked ~ .content .slider {
left: -400%;
}
input.selector6:checked ~ .content .slider {
left: -500%;
}
input.selector1:checked ~ .content .slider > li:first-child,
input.selector2:checked ~ .content .slider > li:nth-child(2),
input.selector3:checked ~ .content .slider > li:nth-child(3),
input.selector4:checked ~ .content .slider > li:nth-child(4),
input.selector5:checked ~ .content .slider > li:nth-child(5),
input.selector6:checked ~ .content .slider > li:nth-child(6){
opacity: 1;}
/* bottone partecipa */
.tasto_scopri{
width:100%;
background:#eee;
padding:30px 0 30px 0;
}
.tasto_scopri h3{
width:80%;
padding:0 10%;
font-size:1.6em;
color:#000;
font-family: 'EB Garamond', serif;
}
.tasto_scopri p{
width:70%;
padding:10px 15%;
font-size:0.9em;
line-height:1.6em;
color:#222;
text-align:justify;
}
.tasto_scopri p a{
width:50%;
display:block;
padding:20px 2%;
margin:40px 23% 0 23%;
font-size:120%;
color:#ff5000;
background:#fff;
text-align:center;
outline: 2px solid #ff5000;
outline-offset: 5px;
font-family: 'EB Garamond', serif;
font-weight:700;
letter-spacing:1px;
opacity:1;
-webkit-transition: all 0.8s ease-in-out;
-moz-transition: all 0.8s ease-in-out;
-ms-transition: all 0.8s ease-in-out;
-o-transition: all 0.8s ease-in-out;
transition: all 0.8s ease-in-out; }
.tasto_scopri p a:hover{
background:#ff5000;
color:#fff;
letter-spacing:0px;
opacity:0.7;
outline: 2px solid #fff;
outline-offset: 5px;
-webkit-transition: all 0.8s ease-in-out;
-moz-transition: all 0.8s ease-in-out;
-ms-transition: all 0.8s ease-in-out;
-o-transition: all 0.8s ease-in-out;
transition: all 0.8s ease-in-out;
}
/* ======================================================================== */
/* ======================================================================== */
/* ======================================================================== */
#ombra_gallery{
background:url(../img_museo_virtuale_inconsapevolezza_quotidiana/sfondo_oscura_museo_virtuale_inconsapevolezza_quotidiana.png) repeat;
cursor:pointer;
}
#contenitore_slide{
position:absolute;
width:950px;
height:460px;
left:50%;
margin:0 0 0 -485px;
top:50px;
padding:10px;
background-color:#FFFFFF;
}
@media screen and (max-width: 840px){
.sp-slideshow { height: 345px; }
}
@media screen and (max-width: 680px){
.sp-slideshow { height: 285px; }
}
@media screen and (max-width: 560px){
.sp-slideshow { height: 235px; }
}
@media screen and (max-width: 320px){
.sp-slideshow { height: 158px; }
} | 0.190197 | 0.141845 |
button:focus {
outline: 1px dotted;
outline: 5px auto rgba(0, 0, 0, .2);
}
#sidebar-wrapper{
background-image: url('../images/sidebar-1.jpg');
background-size: cover;
background-position: center center;
position: relative;
font-family: "Roboto","Helvetica Neue",Arial,sans-serif;
padding: 10px 10px;
z-index: 1;
}
.container-fluid{
padding-top: 20px;
}
.list-group, .list-group-flush{
background-color: inherit;
font-size: 18px;
padding-top: 20px;
}
.list-group-item i{
margin-right: 15px;
}
.list-group-item{
margin-top: 15px;
}
.bg-light {
background-color: inherit !important;
border:none;
color: white;
}
a.bg-light:focus, a.bg-light:hover, button.bg-light:focus, button.bg-light:hover{
background-color: rgba(255, 255, 255, 0.23)!important;
color: white;
}
.sidebar-heading{
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#change,#red,#blue,#black,#green,#purple{
position: fixed;
z-index: 30;
top: 300px;
right: 10px;
width: 50px;
height: 50px;
border: none;
opacity: 0.7;
box-shadow: 2px 2px 5px #999;
font-size: 20px;
color: white;
background: rgba(0, 0, 0, .2);
z-index: 1031;
text-align: center;
}
#red{
background: #FB404B;
top: 550px;
visibility:hidden;
}
.red,.red:hover{
background: #FB404B;
color: white;
border-color: #FB404B;
}
.red:focus {
box-shadow: 0 0 0 0.2rem #FB404B;
}
#purple{
background: #EC5578;
top: 500px;
visibility:hidden;
}
.purple,.purple:hover{
background: #EC5578;
color: white;
border-color: #EC5578;
}
.purple:focus {
box-shadow: 0 0 0 0.2rem #EC5578;
}
#black{
top: 350px;
visibility:hidden;
background: rgb(28,61,61);
}
.black,.black:hover{
color: white;
background: rgb(28,61,61);
border-color: rgb(28,61,61);
}
.black:focus {
box-shadow: 0 0 0 0.2rem rgb(28,61,61);
}
#green{
background: rgb(55,187,166);
top: 400px;
visibility:hidden;
}
.green,.green:hover{
background: rgb(55,187,166);
color: white;
border-color: rgb(55,187,166);
}
.green:focus {
box-shadow: 0 0 0 0.2rem rgb(55,187,166);
}
#blue{
background: #1DC7EA;
top: 450px;
visibility:hidden;
}
.azure,.azure:hover{
background: #1DC7EA;
color: white;
border-color: #1DC7EA;
}
.azure:focus {
box-shadow: 0 0 0 0.2rem #1DC7EA;
}
.overlay{
position: absolute;
width: 100%;
height: 100%;
background: rgb(55,187,166);
background: -moz-linear-gradient(top, rgb(55,187,166) 0%, rgb(109,170,149)100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(55,187,166)), color-stop(100%, rgb(109,170,149)));
background: -webkit-linear-gradient(top, rgb(55,187,166) 0%, rgb(109,170,149) 100%);
background: -o-linear-gradient(top, rgb(55,187,166) 0%, rgb(109,170,149) 100%);
background: -ms-linear-gradient(top, rgb(55,187,166) 0%, rgb(109,170,149)100%);
background: linear-gradient(top, rgb(55,187,166) 0%, rgb(109,170,149) 100%);
background-size: 150% 150%;
z-index: -1;
opacity: 0.8;
top:0;
left: 0;
}
.o-purple{
background: #EC5578;
background: -moz-linear-gradient(top, #FB607F 0%, #EC5578 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FB607F), color-stop(100%, #EC5578));
background: -webkit-linear-gradient(top, #FB607F 0%, #EC5578 100%);
background: -o-linear-gradient(top, #FB607F 0%, #EC5578 100%);
background: -ms-linear-gradient(top, #FB607F 0%, #EC5578 100%);
background: linear-gradient(top, #FB607F 0%, #EC5578 100%);
opacity: 0.8;
}
.o-red{
background: #FB404B;
background: -moz-linear-gradient(top, #FB404B 0%, #bb0502 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FB404B), color-stop(100%, #bb0502));
background: -webkit-linear-gradient(top, #FB404B 0%, #bb0502 100%);
background: -o-linear-gradient(top, #FB404B 0%, #bb0502 100%);
background: -ms-linear-gradient(top, #FB404B 0%, #bb0502 100%);
background: linear-gradient(to bottom, #FB404B 0%, #bb0502 100%);
opacity: 0.8;
}
.o-green{
background: rgb(55,187,166);
background: -moz-linear-gradient(top, rgb(55,187,166) 0%, rgb(50,180,160) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(55,187,166)), color-stop(100%, rgb(50,180,160)));
background: -webkit-linear-gradient(top, rgb(55,187,166) 0%, rgb(50,180,160) 100%);
background: -o-linear-gradient(top, rgb(55,187,166) 0%, rgb(50,180,160) 100%);
background: -ms-linear-gradient(top, rgb(55,187,166) 0%, rgb(50,180,160) 100%);
background: linear-gradient(top, rgb(55,187,166) 0%, rgb(50,180,160) 100%);
opacity: 0.8;
}
.o-blue{
background: #1DC7EA;
background: -moz-linear-gradient(top, #1DC7EA 0%, #4091ff 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1DC7EA), color-stop(100%, #4091ff));
background: -webkit-linear-gradient(top, #1DC7EA 0%, #4091ff 100%);
background: -o-linear-gradient(top, #1DC7EA 0%, #4091ff 100%);
background: -ms-linear-gradient(top, #1DC7EA 0%, #4091ff 100%);
background: linear-gradient(to bottom, #1DC7EA 0%, #4091ff 100%);
opacity: 0.8;
}
.o-black{
background: rgb(28,61,61);
background: -moz-linear-gradient(top, rgb(41,90,90) 0%, rgb(28,61,61) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(41,90,90)), color-stop(100%, rgb(28,61,61)));
background: -webkit-linear-gradient(top, rgb(41,90,90) 0%, rgb(28,61,61) 100%);
background: -o-linear-gradient(top, rgb(41,90,90) 0%, rgb(28,61,61) 100%);
background: -ms-linear-gradient(top, rgb(41,90,90) 0%, rgb(28,61,61) 100%);
background: linear-gradient(top, rgb(41,90,90) 0%, rgb(28,61,61) 100%);
opacity: 0.8;
} | public/css/dashstyle.css | button:focus {
outline: 1px dotted;
outline: 5px auto rgba(0, 0, 0, .2);
}
#sidebar-wrapper{
background-image: url('../images/sidebar-1.jpg');
background-size: cover;
background-position: center center;
position: relative;
font-family: "Roboto","Helvetica Neue",Arial,sans-serif;
padding: 10px 10px;
z-index: 1;
}
.container-fluid{
padding-top: 20px;
}
.list-group, .list-group-flush{
background-color: inherit;
font-size: 18px;
padding-top: 20px;
}
.list-group-item i{
margin-right: 15px;
}
.list-group-item{
margin-top: 15px;
}
.bg-light {
background-color: inherit !important;
border:none;
color: white;
}
a.bg-light:focus, a.bg-light:hover, button.bg-light:focus, button.bg-light:hover{
background-color: rgba(255, 255, 255, 0.23)!important;
color: white;
}
.sidebar-heading{
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#change,#red,#blue,#black,#green,#purple{
position: fixed;
z-index: 30;
top: 300px;
right: 10px;
width: 50px;
height: 50px;
border: none;
opacity: 0.7;
box-shadow: 2px 2px 5px #999;
font-size: 20px;
color: white;
background: rgba(0, 0, 0, .2);
z-index: 1031;
text-align: center;
}
#red{
background: #FB404B;
top: 550px;
visibility:hidden;
}
.red,.red:hover{
background: #FB404B;
color: white;
border-color: #FB404B;
}
.red:focus {
box-shadow: 0 0 0 0.2rem #FB404B;
}
#purple{
background: #EC5578;
top: 500px;
visibility:hidden;
}
.purple,.purple:hover{
background: #EC5578;
color: white;
border-color: #EC5578;
}
.purple:focus {
box-shadow: 0 0 0 0.2rem #EC5578;
}
#black{
top: 350px;
visibility:hidden;
background: rgb(28,61,61);
}
.black,.black:hover{
color: white;
background: rgb(28,61,61);
border-color: rgb(28,61,61);
}
.black:focus {
box-shadow: 0 0 0 0.2rem rgb(28,61,61);
}
#green{
background: rgb(55,187,166);
top: 400px;
visibility:hidden;
}
.green,.green:hover{
background: rgb(55,187,166);
color: white;
border-color: rgb(55,187,166);
}
.green:focus {
box-shadow: 0 0 0 0.2rem rgb(55,187,166);
}
#blue{
background: #1DC7EA;
top: 450px;
visibility:hidden;
}
.azure,.azure:hover{
background: #1DC7EA;
color: white;
border-color: #1DC7EA;
}
.azure:focus {
box-shadow: 0 0 0 0.2rem #1DC7EA;
}
.overlay{
position: absolute;
width: 100%;
height: 100%;
background: rgb(55,187,166);
background: -moz-linear-gradient(top, rgb(55,187,166) 0%, rgb(109,170,149)100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(55,187,166)), color-stop(100%, rgb(109,170,149)));
background: -webkit-linear-gradient(top, rgb(55,187,166) 0%, rgb(109,170,149) 100%);
background: -o-linear-gradient(top, rgb(55,187,166) 0%, rgb(109,170,149) 100%);
background: -ms-linear-gradient(top, rgb(55,187,166) 0%, rgb(109,170,149)100%);
background: linear-gradient(top, rgb(55,187,166) 0%, rgb(109,170,149) 100%);
background-size: 150% 150%;
z-index: -1;
opacity: 0.8;
top:0;
left: 0;
}
.o-purple{
background: #EC5578;
background: -moz-linear-gradient(top, #FB607F 0%, #EC5578 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FB607F), color-stop(100%, #EC5578));
background: -webkit-linear-gradient(top, #FB607F 0%, #EC5578 100%);
background: -o-linear-gradient(top, #FB607F 0%, #EC5578 100%);
background: -ms-linear-gradient(top, #FB607F 0%, #EC5578 100%);
background: linear-gradient(top, #FB607F 0%, #EC5578 100%);
opacity: 0.8;
}
.o-red{
background: #FB404B;
background: -moz-linear-gradient(top, #FB404B 0%, #bb0502 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FB404B), color-stop(100%, #bb0502));
background: -webkit-linear-gradient(top, #FB404B 0%, #bb0502 100%);
background: -o-linear-gradient(top, #FB404B 0%, #bb0502 100%);
background: -ms-linear-gradient(top, #FB404B 0%, #bb0502 100%);
background: linear-gradient(to bottom, #FB404B 0%, #bb0502 100%);
opacity: 0.8;
}
.o-green{
background: rgb(55,187,166);
background: -moz-linear-gradient(top, rgb(55,187,166) 0%, rgb(50,180,160) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(55,187,166)), color-stop(100%, rgb(50,180,160)));
background: -webkit-linear-gradient(top, rgb(55,187,166) 0%, rgb(50,180,160) 100%);
background: -o-linear-gradient(top, rgb(55,187,166) 0%, rgb(50,180,160) 100%);
background: -ms-linear-gradient(top, rgb(55,187,166) 0%, rgb(50,180,160) 100%);
background: linear-gradient(top, rgb(55,187,166) 0%, rgb(50,180,160) 100%);
opacity: 0.8;
}
.o-blue{
background: #1DC7EA;
background: -moz-linear-gradient(top, #1DC7EA 0%, #4091ff 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1DC7EA), color-stop(100%, #4091ff));
background: -webkit-linear-gradient(top, #1DC7EA 0%, #4091ff 100%);
background: -o-linear-gradient(top, #1DC7EA 0%, #4091ff 100%);
background: -ms-linear-gradient(top, #1DC7EA 0%, #4091ff 100%);
background: linear-gradient(to bottom, #1DC7EA 0%, #4091ff 100%);
opacity: 0.8;
}
.o-black{
background: rgb(28,61,61);
background: -moz-linear-gradient(top, rgb(41,90,90) 0%, rgb(28,61,61) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(41,90,90)), color-stop(100%, rgb(28,61,61)));
background: -webkit-linear-gradient(top, rgb(41,90,90) 0%, rgb(28,61,61) 100%);
background: -o-linear-gradient(top, rgb(41,90,90) 0%, rgb(28,61,61) 100%);
background: -ms-linear-gradient(top, rgb(41,90,90) 0%, rgb(28,61,61) 100%);
background: linear-gradient(top, rgb(41,90,90) 0%, rgb(28,61,61) 100%);
opacity: 0.8;
} | 0.368292 | 0.114666 |
.row-fluid {
width: 100%;
*zoom: 1
}
.row-fluid:before,
.row-fluid:after {
display: table;
content: "";
line-height: 0
}
.row-fluid:after {
clear: both
}
.row-fluid [class*="span"] {
display: block;
width: 100%;
min-height: 30px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: left;
margin-left: 2.7624309392265194%;
*margin-left: 2.709239449864817%
}
.row-fluid [class*="span"]:first-child {
margin-left: 0
}
.row-fluid .controls-row [class*="span"]+[class*="span"] {
margin-left: 2.7624309392265194%
}
.row-fluid .span12 {
width: 100%;
*width: 99.94680851063829%
}
.row-fluid .span11 {
width: 91.43646408839778%;
*width: 91.38327259903608%
}
.row-fluid .span10 {
width: 82.87292817679558%;
*width: 82.81973668743387%
}
.row-fluid .span9 {
width: 74.30939226519337%;
*width: 74.25620077583166%
}
.row-fluid .span8 {
width: 65.74585635359117%;
*width: 65.69266486422946%
}
.row-fluid .span7 {
width: 57.18232044198895%;
*width: 57.12912895262725%
}
.row-fluid .span6 {
width: 48.61878453038674%;
*width: 48.56559304102504%
}
.row-fluid .span5 {
width: 40.05524861878453%;
*width: 40.00205712942283%
}
.row-fluid .span4 {
width: 31.491712707182323%;
*width: 31.43852121782062%
}
.row-fluid .span3 {
width: 22.92817679558011%;
*width: 22.87498530621841%
}
.row-fluid .span2 {
width: 14.3646408839779%;
*width: 14.311449394616199%
}
.row-fluid .span1 {
width: 5.801104972375691%;
*width: 5.747913483013988%
}
.row-fluid .offset12 {
margin-left: 105.52486187845304%;
*margin-left: 105.41847889972962%
}
.row-fluid .offset12:first-child {
margin-left: 102.76243093922652%;
*margin-left: 102.6560479605031%
}
.row-fluid .offset11 {
margin-left: 96.96132596685082%;
*margin-left: 96.8549429881274%
}
.row-fluid .offset11:first-child {
margin-left: 94.1988950276243%;
*margin-left: 94.09251204890089%
}
.row-fluid .offset10 {
margin-left: 88.39779005524862%;
*margin-left: 88.2914070765252%
}
.row-fluid .offset10:first-child {
margin-left: 85.6353591160221%;
*margin-left: 85.52897613729868%
}
.row-fluid .offset9 {
margin-left: 79.8342541436464%;
*margin-left: 79.72787116492299%
}
.row-fluid .offset9:first-child {
margin-left: 77.07182320441989%;
*margin-left: 76.96544022569647%
}
.row-fluid .offset8 {
margin-left: 71.2707182320442%;
*margin-left: 71.16433525332079%
}
.row-fluid .offset8:first-child {
margin-left: 68.50828729281768%;
*margin-left: 68.40190431409427%
}
.row-fluid .offset7 {
margin-left: 62.70718232044199%;
*margin-left: 62.600799341718584%
}
.row-fluid .offset7:first-child {
margin-left: 59.94475138121547%;
*margin-left: 59.838368402492065%
}
.row-fluid .offset6 {
margin-left: 54.14364640883978%;
*margin-left: 54.037263430116376%
}
.row-fluid .offset6:first-child {
margin-left: 51.38121546961326%;
*margin-left: 51.27483249088986%
}
.row-fluid .offset5 {
margin-left: 45.58011049723757%;
*margin-left: 45.47372751851417%
}
.row-fluid .offset5:first-child {
margin-left: 42.81767955801105%;
*margin-left: 42.71129657928765%
}
.row-fluid .offset4 {
margin-left: 37.01657458563536%;
*margin-left: 36.91019160691196%
}
.row-fluid .offset4:first-child {
margin-left: 34.25414364640884%;
*margin-left: 34.14776066768544%
}
.row-fluid .offset3 {
margin-left: 28.45303867403315%;
*margin-left: 28.346655695309746%
}
.row-fluid .offset3:first-child {
margin-left: 25.69060773480663%;
*margin-left: 25.584224756083227%
}
.row-fluid .offset2 {
margin-left: 19.88950276243094%;
*margin-left: 19.783119783707537%
}
.row-fluid .offset2:first-child {
margin-left: 17.12707182320442%;
*margin-left: 17.02068884448102%
}
.row-fluid .offset1 {
margin-left: 11.32596685082873%;
*margin-left: 11.219583872105325%
}
.row-fluid .offset1:first-child {
margin-left: 8.56353591160221%;
*margin-left: 8.457152932878806%
}
.submit-button {
cursor: pointer;
display: inline-block;
background-color: red;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
padding: 4px 28px;
border: 0;
font: 20px "Open Sans", sans-serif;
font-weight: 800;
color: #333333;
min-height: 39px;
border: 0
}
.submit-button a {
color: #fff
}
.submit-button:hover {
background-color: #ff1a1a
}
.button,
.small_button {
cursor: pointer;
display: inline-block;
background-color: red;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
padding: 4px 28px;
border: 0;
font: 20px "Open Sans", sans-serif;
font-weight: 800;
color: #333333;
min-height: 39px
}
.button a,
.small_button a {
color: #fff
}
.button:hover,
.small_button:hover {
background-color: #ff1a1a
}
.tiny-button {
font-size: 12px;
padding: 2px 5px;
min-height: 100%
}
.destroy-link {
background-color: #b94a48
}
.destroy-link:hover {
background-color: #c05c5a
}
.submit-link {
cursor: pointer;
border: 0;
background-color: red;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
display: inline-block;
color: white;
font: 14px "Open Sans", sans-serif;
padding: 10px 15px
}
.submit-link:hover {
text-decoration: none;
color: white;
background-color: #ff1a1a
}
.neutral-link {
background-color: #b85812
}
.neutral-link:hover {
background-color: #cf6314
}
.share-close {
float: right;
margin: -15px -15px 10px 10px;
padding: 5px;
min-height: auto;
font-size: 11px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border-radius: 0px
}
.read-more,
.read_more {
display: block;
margin-bottom: 15px;
font-weight: bold
}
.share-container .small-button {
min-height: 24px;
padding: 5px 10px;
font-size: 12px
}
.twocolumn-container {
margin-bottom: 20px
}
.twocolumn-container .left-column,
.twocolumn-container .right-column-wide {
background-color: #fff;
padding: 0px 20px;
float: left;
width: 68.2261208577%;
margin-right: 1.559454191033%;
margin-bottom: 0
}
.twocolumn-container .right-column,
.twocolumn-container .left-column-narrow {
float: left;
width: 30.214424951267%;
margin-bottom: 0
}
.twocolumn-container .right-column-wide {
margin-right: 0
}
.twocolumn-container .left-column-narrow {
margin-right: 1.559454191033%
}
header {
max-width: 27.875243664717%;
float: left;
padding: 35px 0 20px 30px
}
.site-logo header,
.site-logo header.splash {
margin-left: 0
}
.site-logo header img,
.site-logo header.splash img {
max-width: 400px
}
.header-container {
padding-bottom: 0
}
footer .footer-right {
margin-top: 0;
text-align: right
}
footer .row-fluid [class*="span"] {
min-height: 0
}
footer .find-us-on-links img {
width: 18%
}
footer .row-fluid>.span4 {
clear: none;
padding-top: 0;
margin-bottom: 0
}
footer #top-footer-row {
margin: 0 auto
}
.wrap.active {
left: 0
}
.sharetable {
display: block;
width: 487px
}
.sharetable .facebook-cell {
float: left;
text-align: left;
padding: 0 20px 0 0;
vertical-align: top;
width: 320px
}
.sharetable .twitter-cell {
float: left;
text-align: left;
padding: 0 20px 0 0;
vertical-align: top;
width: 75px
}
.sharetable .gplus-cell {
float: left;
text-align: left;
vertical-align: top;
width: 52px
}
.mobile-visible {
display: none !important
}
.desktop-visible {
display: block !important
}
.flash-share .float {
float: right
}
.menu-link {
display: none
}
nav,
.subnav {
background-color: transparent;
border-right: 0;
border-top: 0;
height: auto;
text-align: center;
position: static;
width: auto
}
nav .topnav,
.subnav .topnav {
padding: 0;
clear: both;
list-style: none;
font-size: 14px
}
nav li,
.subnav li {
display: inline-block;
margin: 0px;
position: relative;
background-color: transparent;
line-height: 84px
}
nav li a,
.subnav li a {
display: block;
width: 100%;
height: 100%;
padding: 0 25px;
color: #000;
text-decoration: none
}
nav li:last-child,
.subnav li:last-child {
margin-right: 0
}
nav li:hover,
nav li.active,
.subnav li:hover,
.subnav li.active {
border-color: transparent
}
nav li:hover a,
nav li.active a,
.subnav li:hover a,
.subnav li.active a {
color: #000
}
nav .sub,
.subnav .sub {
position: absolute;
top: 54px;
left: -1px;
z-index: 99999;
background-color: red;
padding: 8px 0 5px 0;
border-top-right-radius: 2px;
-moz-border-radius-topright: 2px;
-webkit-border-top-right-radius: 2px;
border-bottom-left-radius: 2px;
-moz-border-radius-bottomleft: 2px;
-webkit-border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
-moz-border-radius-bottomright: 2px;
-webkit-border-bottom-right-radius: 2px;
width: 200px;
display: none
}
nav .sub li,
.subnav .sub li {
width: 100%;
border: none;
color: #e0d6c8;
font-size: 13px;
line-height: 18px;
display: block;
background-color: red;
border-color: transparent;
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0
}
nav .sub li.mobile-visible,
.subnav .sub li.mobile-visible {
display: none
}
nav .sub a,
.subnav .sub a {
background: none;
padding: 5px 20px 5px 22px
}
nav .sub a:hover,
.subnav .sub a:hover {
background-color: #c00;
text-decoration: none
}
.subnav {
margin: 0 0 15px 0;
padding: 0;
float: left;
clear: both;
font-size: 13px;
max-width: 100%
}
.desktop-nav li:hover .sub {
display: block
}
.page-follow {
float: right;
margin-top: -35px
}
@media (min-width: 768px) {
#fixed-sign {
display: none
}
}
.radio-inline span,
.checkbox-inline span {
white-space: nowrap;
display: inline-block
}
.radio-inline input[type="radio"],
.radio-inline input[type="checkbox"],
.checkbox-inline input[type="radio"],
.checkbox-inline input[type="checkbox"] {
margin: 0;
display: inline-block
}
.radio-inline input[type="radio"]:checked+label,
.radio-inline input[type="checkbox"]:checked+label,
.checkbox-inline input[type="radio"]:checked+label,
.checkbox-inline input[type="checkbox"]:checked+label {
background-color: transparent;
color: #505054
}
.radio-inline label,
.checkbox-inline label {
display: block
}
.radio-inline label.radio,
.radio-inline label.checkbox,
.checkbox-inline label.radio,
.checkbox-inline label.checkbox {
position: relative;
top: 2px;
display: inline-block;
width: auto;
background-color: transparent;
font-family: "Open Sans", sans-serif;
color: #505054;
font-size: 15px;
font-weight: normal;
text-align: left;
padding: 0;
margin: 0 10px 10px 5px
}
.radio-inline label.radio .option_label,
.radio-inline label.checkbox .option_label,
.checkbox-inline label.radio .option_label,
.checkbox-inline label.checkbox .option_label {
display: inline
}
.radio-inline label.checkbox,
.checkbox-inline label.checkbox {
position: relative;
padding: 0;
height: auto;
font-size: inherit;
margin: 0
}
.radio-inline.checkbox-inline,
.checkbox-inline.checkbox-inline {
vertical-align: top
}
.radio-inline.checkbox-inline li,
.checkbox-inline.checkbox-inline li {
width: auto
}
.radio-inline.checkbox-inline li label,
.checkbox-inline.checkbox-inline li label {
width: auto
}
.radio-inline.checkbox-inline li input[type="checkbox"],
.checkbox-inline.checkbox-inline li input[type="checkbox"] {
vertical-align: middle
}
.radio.inline,
.checkbox.inline,
.inline label.radio {
display: inline-block;
margin-right: 20px;
padding-top: 5px;
margin-bottom: 10px;
vertical-align: middle
}
.radio.inline:first-child,
.checkbox.inline:first-child,
.inline label.radio:first-child {
margin-left: 0
}
input[type="checkbox"],
input[type="radio"] {
border: 0;
padding: 0;
background: none;
-moz-box-shadow: 0;
-webkit-box-shadow: 0;
box-shadow: 0
}
.cc {
padding-bottom: 10px
}
ul.membership-list {
list-style: none;
margin: 0;
padding: 0;
vertical-align: top
}
ul.membership-list li.membership {
vertical-align: top;
display: inline-block;
margin: 0 1.22% 1.22% 0;
width: 31.8%;
height: 250px
}
ul.membership-list li.membership .buy {
position: absolute;
width: 88px;
bottom: 15px;
margin-left: -44px;
left: 50%
}
.page-features {
position: relative;
margin: -30px 0 50px 0
}
.page-features .features-headline {
font-size: 20px;
padding: 15px
}
.flex-direction-nav {
top: 36%
}
.flex-prev,
.flex-next {
display: block;
height: 58px;
font-size: 25px
}
.user-session-form-container .oauth-links {
margin-bottom: 0
}
.user-session-form-container .sign-in-with-email,
.user-session-form-container .sign-up {
border-left: 1px solid #ccc;
padding-left: 2.7624309392265194%
}
.review-rules {
float: right;
font-size: 12px;
padding: 0
}
.page-user-sessions-new-wide .onecolumn-container,
.page-users-accounts-new-wide .onecolumn-container,
.page-users-password-resets-new-wide .onecolumn-container,
.page-users-passwords-new-wide .onecolumn-container {
margin: 0 auto;
margin-top: 0px;
margin-bottom: 20px;
width: 75%
}
.page-user-sessions-new-wide footer,
.page-users-accounts-new-wide footer,
.page-users-password-resets-new-wide footer,
.page-users-passwords-new-wide footer {
margin: 0 auto;
width: 100%
}
.page-pages-show-voter-registration .iframe-wrapper {
left: 0;
width: 100%
}
#event_rsvp_guests_count,
input.quantity,
#signup_donations_to_raise_amount {
width: 25%
}
.suggestion-tag-list li {
margin: 15px 15px 10px 0
}
input#donation_amount_other {
width: 30%
}
.distance .within {
position: relative;
top: 2px;
display: inline;
padding-right: 5px
}
.page-user-sessions-new-wide h2 {
font-size: 31.5px;
line-height: 35px
}
ul#page-stream li.activity span+a {
display: inline
}
ul#page-stream .activity-time {
display: inline
}
ul#page-stream .timeago {
display: inline;
padding-right: 0;
float: none;
font-size: 65%;
color: inherit
}
ul#page-stream .activity_links a {
display: inline
}
ul#page-stream .activity_content {
clear: none
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
nav {
background-color: #454545;
height: auto;
width: 16em;
position: absolute;
top: -532px;
right: 20px;
float: none;
margin: 0
}
nav ul {
margin: 0;
padding: 0
}
nav li {
list-style: none;
font-size: 15px;
display: block;
background-color: #454545
}
nav li a {
display: block;
padding: 0.8em;
color: #fff
}
nav .sub {
display: none
}
nav .sub li {
background-color: #383838
}
nav .sub li:last-child {
border-bottom: none
}
nav .sub a {
color: #ccc
}
nav li {
margin: 0;
padding: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
line-height: 21px
}
nav li.active,
nav li.drop {
background-color: #516e16;
border-bottom: 1px solid #222e09
}
nav li a {
padding: .8em
}
nav .sub {
position: static;
width: 100%;
padding: 0
}
nav .sub li {
border-bottom: 1px solid #222e09;
background-color: #415912
}
nav .sub li:last-child {
margin-bottom: 0
}
nav .sub li a {
padding: 12px
}
nav .sub li.mobile-visible {
display: block
}
.menu-link {
display: block
}
.wrap.active nav {
top: 58px
}
nav li {
padding: 10px 0;
text-align: center
}
.site-logo-hader-sub {
line-height: normal;
padding: 5px 10px
}
.menu-link-lan {
display: block
}
#topnav>li a {
font-size: 18px;
color: #fff;
text-decoration: none
}
#topnav>li.topnav_after:after {
content: ' '
}
.topnav li#home {
display: block !important
}
.dropdown {
display: none
}
.donate_btn {
padding: 10px 25px
}
.Home_lock_img {
margin-top: -10px
}
iframe[src*='youtube'] {
display: none
}
.responsive-embed-wrapper iframe {
display: block
}
.fb-like-box iframe {
display: block
}
header {
padding: 28px 0 0 0;
max-width: 78%
}
.menu-link {
margin: 17px 10px 0 0
}
.tablet-visible {
display: block
}
.desktop-visible .subnav-container {
display: none
}
.mobile_menu_free_label {
display: block
}
nav {
z-index: 9999999;
right: 17px;
background: none !important;
top: 0 !important;
position: static !important;
background: none;
width: auto !important
}
.mobile-nav {
background-color: #454545;
height: auto;
width: 16em;
position: absolute;
top: 58px;
right: 17px;
display: none;
opacity: 1;
z-index: 100000000000
}
.desktop-nav {
background-color: #454545;
height: auto;
width: 16em;
position: absolute;
top: 58px;
right: 17px;
display: none;
opacity: 1;
z-index: 100000000000
}
#menu input[type=checkbox]:checked~.mobile-nav {
display: block
}
#menu input[type=checkbox]:checked~.desktop-nav {
display: block
}
.menu-link {
display: none !important
}
.menu-link-lan li.dropdown-lan .dropdown-toggle {
display: none
}
.dropdown-lan input[type=checkbox]:checked~.dropdown-menu-lan {
display: block !important
}
}
@media only screen and (min-width: 1140px) {
.width-container {
width: 1200px;
margin: 0 auto
}
ul.membership-list {
list-style: none;
margin: 0;
padding: 0
}
ul.membership-list li.membership {
position: relative;
float: left;
text-align: center;
list-style: none;
background-color: #f3f3f3;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
padding: 15px;
display: inline-block;
margin: 0 10px 15px 0;
width: 23.983739837398%;
height: 250px
}
ul.membership-list li.membership .membership-bottom {
background-color: #444;
color: #ccc
}
ul.membership-list li.membership .membership-blurb {
padding: 15px 0;
font-size: 13px;
line-height: 16px
}
ul.membership-list li.membership .buy {
position: absolute;
width: 88px;
bottom: 15px;
margin-left: -44px;
left: 50%
}
ul.membership-list li.membership .badge {
font-size: 12px;
text-transform: uppercase
}
}
body.slug_home a {
text-decoration: none
}
body.slug_home .twocolumn-container {
margin-bottom: 0
}
body.slug_home .twocolumn-container .left-column,
body.slug_home .twocolumn-container .right-column-wide {
padding: 30px;
float: left;
width: 49%;
height: 360px;
margin-bottom: 0;
margin-right: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
border: 0
}
body.slug_home .twocolumn-container .left-column.hero,
body.slug_home .twocolumn-container .right-column-wide.hero {
background: transparent;
padding-top: 42px
}
body.slug_home .twocolumn-container .wrapit {
float: left;
width: 35%;
height: 100px;
margin: 1em
}
body.slug_home .twocolumn-container .wrapitwide {
float: left;
width: 50%;
height: 100px;
margin: 1em
}
body.slug_home .twocolumn-container .right-column,
body.slug_home .twocolumn-container .left-column-narrow {
float: left;
padding: 30px;
width: 49%;
height: 360px;
margin-bottom: 0
}
body.slug_home .twocolumn-container .right-column.hero,
body.slug_home .twocolumn-container .left-column-narrow.hero {
padding-top: 42px
}
body.slug_home .twocolumn-container .right-column-wide {
margin-right: 0
}
body.slug_home .twocolumn-container .left-column-narrow {
margin-right: 1.559454191033%
}
body.slug_home .submit-button {
padding: 4px 28px
}
body.slug_home .right-column h2>a {
color: #fff
}
.recurring-donate-right-column-box {
background-color: rgba(0, 0, 0, 0.7);
-webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
-moz-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
padding: 20px 20px 10px 20px;
min-height: 80px;
max-width: 330px;
margin: 0 auto;
float: center;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px
}
.recurring-donate-right-column-box p {
font-color: #ffffff
}
.col-sm-4 {
width: 25%;
float: left;
padding: 10px
}
body.slug_report_card a {
text-decoration: none
}
body.slug_report_card .twocolumn-container {
margin-bottom: 0
}
body.slug_report_card .twocolumn-container h3 {
color: red
}
body.slug_report_card .twocolumn-container .left-column,
body.slug_report_card .twocolumn-container .right-column-wide {
background-color: red;
padding: 30px;
float: left;
width: 49%;
height: 360px;
margin-bottom: 0;
margin-right: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
border: 0
}
body.slug_report_card .twocolumn-container .left-column.hero,
body.slug_report_card .twocolumn-container .right-column-wide.hero {
background-color: #fff;
color: red
}
body.slug_report_card .twocolumn-container .left-column.hero h2,
body.slug_report_card .twocolumn-container .left-column.hero h2>a,
body.slug_report_card .twocolumn-container .right-column-wide.hero h2,
body.slug_report_card .twocolumn-container .right-column-wide.hero h2>a {
color: red
}
body.slug_report_card .twocolumn-container .left-column.hero p,
body.slug_report_card .twocolumn-container .right-column-wide.hero p {
color: #505054;
font-size: 36px;
margin-top: .5em
}
body.slug_report_card .twocolumn-container .left-column.hero p>a,
body.slug_report_card .twocolumn-container .right-column-wide.hero p>a {
color: #505054;
font-size: 20px
}
body.slug_report_card .twocolumn-container .left-column p>a,
body.slug_report_card .twocolumn-container .right-column-wide p>a {
color: #fff;
font-size: 36px;
font-weight: 700;
line-height: 1.2em
}
body.slug_report_card .twocolumn-container .right-column,
body.slug_report_card .twocolumn-container .left-column-narrow {
background-color: rgba(0, 0, 0, 0.8);
float: left;
padding: 30px;
width: 49%;
height: 360px;
margin-bottom: 0
}
body.slug_report_card .twocolumn-container .right-column.hero,
body.slug_report_card .twocolumn-container .left-column-narrow.hero {
padding-top: 42px;
background-color: red
}
body.slug_report_card .twocolumn-container .right-column.hero h2>a,
body.slug_report_card .twocolumn-container .left-column-narrow.hero h2>a {
color: #505054
}
body.slug_report_card .twocolumn-container .right-column.hero p>a,
body.slug_report_card .twocolumn-container .left-column-narrow.hero p>a {
color: #fff
}
body.slug_report_card .twocolumn-container .right-column h2>a,
body.slug_report_card .twocolumn-container .left-column-narrow h2>a {
color: #fff
}
body.slug_report_card .twocolumn-container .right-column p>a,
body.slug_report_card .twocolumn-container .left-column-narrow p>a {
color: red;
font-size: 36px;
font-weight: 700;
line-height: 1.2em
}
body.slug_report_card .twocolumn-container .email-signup {
background-color: rgba(0, 0, 0, 0.7);
-moz-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
-webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
margin-top: 40px;
padding: 20px
}
body.slug_report_card .twocolumn-container .email-signup h1 {
color: red
}
body.slug_report_card .twocolumn-container .email-signup input.text {
width: 56%
}
body.slug_report_card .twocolumn-container .submit-button,
body.slug_report_card .twocolumn-container .submit-link {
width: 44%;
padding: 4px 18px
}
body.slug_report_card .twocolumn-container .right-column-container {
background-color: transparent;
-moz-box-shadow: 0 0 0 0;
-webkit-box-shadow: 0 0 0 0;
box-shadow: 0 0 0 0;
margin: 0;
padding: 0
}
body.slug_report_card .twocolumn-container .right-column-container h1 {
color: #000
}
body.slug_report_card .twocolumn-container .right-column-wide {
margin-right: 0
}
body.slug_report_card .twocolumn-container .left-column-narrow {
margin-right: 1.559454191033%
}
body.slug_report_card .submit-button {
padding: 4px 28px
}
body.slug_report_card .right-column h2>a {
color: #505054
}
.site-logo {
display: block
}
#stream {
display: block;
float: left
}
.form-link {
text-align: center;
font-size: 18px;
margin-top: 10px;
color: red
}
.form-link a {
font-weight: 700;
color: red
}
body {
font-family: 'Open Sans', sans-serif
}
body.page-type-signup .twocolumn-container,
body.page-type-petition .twocolumn-container,
body.page-type-feedback .twocolumn-container,
body.page-type-event .twocolumn-container,
body.page-type-volunteer-signup .twocolumn-container,
body.page-type-donate .twocolumn-container {
margin-bottom: 20px
}
body.page-type-signup .twocolumn-container .left-column,
body.page-type-signup .twocolumn-container .right-column-wide,
body.page-type-petition .twocolumn-container .left-column,
body.page-type-petition .twocolumn-container .right-column-wide,
body.page-type-feedback .twocolumn-container .left-column,
body.page-type-feedback .twocolumn-container .right-column-wide,
body.page-type-event .twocolumn-container .left-column,
body.page-type-event .twocolumn-container .right-column-wide,
body.page-type-volunteer-signup .twocolumn-container .left-column,
body.page-type-volunteer-signup .twocolumn-container .right-column-wide,
body.page-type-donate .twocolumn-container .left-column,
body.page-type-donate .twocolumn-container .right-column-wide {
background-color: #fff;
padding: 20px;
float: left;
width: 51%;
margin-right: 1.559454191033%;
margin-bottom: 0
}
body.page-type-signup .twocolumn-container .right-column,
body.page-type-signup .twocolumn-container .left-column-narrow,
body.page-type-petition .twocolumn-container .right-column,
body.page-type-petition .twocolumn-container .left-column-narrow,
body.page-type-feedback .twocolumn-container .right-column,
body.page-type-feedback .twocolumn-container .left-column-narrow,
body.page-type-event .twocolumn-container .right-column,
body.page-type-event .twocolumn-container .left-column-narrow,
body.page-type-volunteer-signup .twocolumn-container .right-column,
body.page-type-volunteer-signup .twocolumn-container .left-column-narrow,
body.page-type-donate .twocolumn-container .right-column,
body.page-type-donate .twocolumn-container .left-column-narrow {
float: left;
width: 47%;
margin-bottom: 0
}
body.page-type-signup .twocolumn-container .right-column-wide,
body.page-type-petition .twocolumn-container .right-column-wide,
body.page-type-feedback .twocolumn-container .right-column-wide,
body.page-type-event .twocolumn-container .right-column-wide,
body.page-type-volunteer-signup .twocolumn-container .right-column-wide,
body.page-type-donate .twocolumn-container .right-column-wide {
margin-right: 0
}
body.page-type-signup .twocolumn-container .left-column-narrow,
body.page-type-petition .twocolumn-container .left-column-narrow,
body.page-type-feedback .twocolumn-container .left-column-narrow,
body.page-type-event .twocolumn-container .left-column-narrow,
body.page-type-volunteer-signup .twocolumn-container .left-column-narrow,
body.page-type-donate .twocolumn-container .left-column-narrow {
margin-right: 1.559454191033%
}
body.page-type-event #side-bar-header {
font-size: 46px
}
body.slug_campaigns .excerpt-support-link a {
display: inline
}
body.page-type-donation h1 {
color: #505054
}
body.page-type-donation .headline {
padding-left: 20px
}
body.page-type-donation #intro {
background-color: #fff;
padding: 0 20px 20px;
float: left;
width: 51%;
margin-right: 1.559454191033%;
margin-bottom: 0
}
body.page-type-donation #intro p {
margin-top: 0
}
body.page-type-donation #intro img {
margin-bottom: 30px
}
body.page-type-donation h1#side-bar-header {
color: red;
font-size: 26px;
text-align: left
}
body.page-type-donation .form-wrap {
float: left;
width: 47%;
margin-bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
-moz-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
-webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
padding: 20px
}
body.page-type-donation .form-wrap label,
body.page-type-donation .form-wrap .row-fluid {
color: #ffffff
}
body.page-type-donation .form-wrap .recurring-donation-table {
width: 100%
}
body.page-type-donation .form-wrap .recurring-donation-ammount {
width: 90%;
font-size: 15px;
height: 36px;
margin-bottom: 0
}
body.page-type-donation .form-wrap .radio-inline input[type="radio"]:checked+label,
body.page-type-donation .form-wrap .radio-inline input[type="checkbox"]:checked+label,
body.page-type-donation .form-wrap .checkbox-inline input[type="radio"]:checked+label,
body.page-type-donation .form-wrap .checkbox-inline input[type="checkbox"]:checked+label {
color: #fff
}
body.page-type-donation .form-wrap .recurring-donation {
margin-bottom: 20px
}
body.page-type-donation .submit-button {
font-size: 1.1em
}
body[class*="slug_report_card"] .table-responsive {
padding: 40px 40px 0 20px;
overflow-x: hidden
}
body[class*="slug_report_card"] .badge {
display: block;
position: relative
}
body[class*="slug_report_card"] .badge img {
position: absolute;
right: 0;
top: -80px
}
.secure-icon {
display: block
}
.paypal {
color: red
}
.petition-box {
background-color: #fdc606;
padding: 10px 20px 10px;
float: right;
width: 40%;
margin-right: 1.559454191033%;
margin-bottom: 0
}
.petition-box p {
margin-top: 0
}
.petition-box-content {
background-color: #ffffff;
padding: 0;
float: left;
width: 54%;
margin-bottom: 0
}
.petition-box-content P {
margin-top: 0
}
.petition-box-update {
background-color: #333333;
padding: 10px 20px 10px;
float: right;
width: 42%;
margin-right: 1.559454191033%;
margin-bottom: 0;
background-color: #333333;
-webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.9);
-moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.9);
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.9);
margin: 0px 0px 40px 4%;
padding: 20px
}
.petition-box-update p {
margin-top: 0;
color: #ffffff
}
.petition-box-update p {
font-color: #ffffff
}
.start-campaign-text {
position: absolute;
top: 15px;
left: 65px;
text-shadow: rgba(0, 0, 0, 0.25) 0 1px 0;
font: normal 100% museo sans, sans-serif;
font-style: normal;
font-variant: normal;
font-weight: normal;
font-stretch: normal;
font-size: 20px;
line-height: normal;
font-family: 'museo sans', sans-serif;
font-size: 20px;
text-transform: uppercase;
white-space: nowrap;
color: #333333
} | css/tablet-and-desktop.css | .row-fluid {
width: 100%;
*zoom: 1
}
.row-fluid:before,
.row-fluid:after {
display: table;
content: "";
line-height: 0
}
.row-fluid:after {
clear: both
}
.row-fluid [class*="span"] {
display: block;
width: 100%;
min-height: 30px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: left;
margin-left: 2.7624309392265194%;
*margin-left: 2.709239449864817%
}
.row-fluid [class*="span"]:first-child {
margin-left: 0
}
.row-fluid .controls-row [class*="span"]+[class*="span"] {
margin-left: 2.7624309392265194%
}
.row-fluid .span12 {
width: 100%;
*width: 99.94680851063829%
}
.row-fluid .span11 {
width: 91.43646408839778%;
*width: 91.38327259903608%
}
.row-fluid .span10 {
width: 82.87292817679558%;
*width: 82.81973668743387%
}
.row-fluid .span9 {
width: 74.30939226519337%;
*width: 74.25620077583166%
}
.row-fluid .span8 {
width: 65.74585635359117%;
*width: 65.69266486422946%
}
.row-fluid .span7 {
width: 57.18232044198895%;
*width: 57.12912895262725%
}
.row-fluid .span6 {
width: 48.61878453038674%;
*width: 48.56559304102504%
}
.row-fluid .span5 {
width: 40.05524861878453%;
*width: 40.00205712942283%
}
.row-fluid .span4 {
width: 31.491712707182323%;
*width: 31.43852121782062%
}
.row-fluid .span3 {
width: 22.92817679558011%;
*width: 22.87498530621841%
}
.row-fluid .span2 {
width: 14.3646408839779%;
*width: 14.311449394616199%
}
.row-fluid .span1 {
width: 5.801104972375691%;
*width: 5.747913483013988%
}
.row-fluid .offset12 {
margin-left: 105.52486187845304%;
*margin-left: 105.41847889972962%
}
.row-fluid .offset12:first-child {
margin-left: 102.76243093922652%;
*margin-left: 102.6560479605031%
}
.row-fluid .offset11 {
margin-left: 96.96132596685082%;
*margin-left: 96.8549429881274%
}
.row-fluid .offset11:first-child {
margin-left: 94.1988950276243%;
*margin-left: 94.09251204890089%
}
.row-fluid .offset10 {
margin-left: 88.39779005524862%;
*margin-left: 88.2914070765252%
}
.row-fluid .offset10:first-child {
margin-left: 85.6353591160221%;
*margin-left: 85.52897613729868%
}
.row-fluid .offset9 {
margin-left: 79.8342541436464%;
*margin-left: 79.72787116492299%
}
.row-fluid .offset9:first-child {
margin-left: 77.07182320441989%;
*margin-left: 76.96544022569647%
}
.row-fluid .offset8 {
margin-left: 71.2707182320442%;
*margin-left: 71.16433525332079%
}
.row-fluid .offset8:first-child {
margin-left: 68.50828729281768%;
*margin-left: 68.40190431409427%
}
.row-fluid .offset7 {
margin-left: 62.70718232044199%;
*margin-left: 62.600799341718584%
}
.row-fluid .offset7:first-child {
margin-left: 59.94475138121547%;
*margin-left: 59.838368402492065%
}
.row-fluid .offset6 {
margin-left: 54.14364640883978%;
*margin-left: 54.037263430116376%
}
.row-fluid .offset6:first-child {
margin-left: 51.38121546961326%;
*margin-left: 51.27483249088986%
}
.row-fluid .offset5 {
margin-left: 45.58011049723757%;
*margin-left: 45.47372751851417%
}
.row-fluid .offset5:first-child {
margin-left: 42.81767955801105%;
*margin-left: 42.71129657928765%
}
.row-fluid .offset4 {
margin-left: 37.01657458563536%;
*margin-left: 36.91019160691196%
}
.row-fluid .offset4:first-child {
margin-left: 34.25414364640884%;
*margin-left: 34.14776066768544%
}
.row-fluid .offset3 {
margin-left: 28.45303867403315%;
*margin-left: 28.346655695309746%
}
.row-fluid .offset3:first-child {
margin-left: 25.69060773480663%;
*margin-left: 25.584224756083227%
}
.row-fluid .offset2 {
margin-left: 19.88950276243094%;
*margin-left: 19.783119783707537%
}
.row-fluid .offset2:first-child {
margin-left: 17.12707182320442%;
*margin-left: 17.02068884448102%
}
.row-fluid .offset1 {
margin-left: 11.32596685082873%;
*margin-left: 11.219583872105325%
}
.row-fluid .offset1:first-child {
margin-left: 8.56353591160221%;
*margin-left: 8.457152932878806%
}
.submit-button {
cursor: pointer;
display: inline-block;
background-color: red;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
padding: 4px 28px;
border: 0;
font: 20px "Open Sans", sans-serif;
font-weight: 800;
color: #333333;
min-height: 39px;
border: 0
}
.submit-button a {
color: #fff
}
.submit-button:hover {
background-color: #ff1a1a
}
.button,
.small_button {
cursor: pointer;
display: inline-block;
background-color: red;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
padding: 4px 28px;
border: 0;
font: 20px "Open Sans", sans-serif;
font-weight: 800;
color: #333333;
min-height: 39px
}
.button a,
.small_button a {
color: #fff
}
.button:hover,
.small_button:hover {
background-color: #ff1a1a
}
.tiny-button {
font-size: 12px;
padding: 2px 5px;
min-height: 100%
}
.destroy-link {
background-color: #b94a48
}
.destroy-link:hover {
background-color: #c05c5a
}
.submit-link {
cursor: pointer;
border: 0;
background-color: red;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
display: inline-block;
color: white;
font: 14px "Open Sans", sans-serif;
padding: 10px 15px
}
.submit-link:hover {
text-decoration: none;
color: white;
background-color: #ff1a1a
}
.neutral-link {
background-color: #b85812
}
.neutral-link:hover {
background-color: #cf6314
}
.share-close {
float: right;
margin: -15px -15px 10px 10px;
padding: 5px;
min-height: auto;
font-size: 11px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border-radius: 0px
}
.read-more,
.read_more {
display: block;
margin-bottom: 15px;
font-weight: bold
}
.share-container .small-button {
min-height: 24px;
padding: 5px 10px;
font-size: 12px
}
.twocolumn-container {
margin-bottom: 20px
}
.twocolumn-container .left-column,
.twocolumn-container .right-column-wide {
background-color: #fff;
padding: 0px 20px;
float: left;
width: 68.2261208577%;
margin-right: 1.559454191033%;
margin-bottom: 0
}
.twocolumn-container .right-column,
.twocolumn-container .left-column-narrow {
float: left;
width: 30.214424951267%;
margin-bottom: 0
}
.twocolumn-container .right-column-wide {
margin-right: 0
}
.twocolumn-container .left-column-narrow {
margin-right: 1.559454191033%
}
header {
max-width: 27.875243664717%;
float: left;
padding: 35px 0 20px 30px
}
.site-logo header,
.site-logo header.splash {
margin-left: 0
}
.site-logo header img,
.site-logo header.splash img {
max-width: 400px
}
.header-container {
padding-bottom: 0
}
footer .footer-right {
margin-top: 0;
text-align: right
}
footer .row-fluid [class*="span"] {
min-height: 0
}
footer .find-us-on-links img {
width: 18%
}
footer .row-fluid>.span4 {
clear: none;
padding-top: 0;
margin-bottom: 0
}
footer #top-footer-row {
margin: 0 auto
}
.wrap.active {
left: 0
}
.sharetable {
display: block;
width: 487px
}
.sharetable .facebook-cell {
float: left;
text-align: left;
padding: 0 20px 0 0;
vertical-align: top;
width: 320px
}
.sharetable .twitter-cell {
float: left;
text-align: left;
padding: 0 20px 0 0;
vertical-align: top;
width: 75px
}
.sharetable .gplus-cell {
float: left;
text-align: left;
vertical-align: top;
width: 52px
}
.mobile-visible {
display: none !important
}
.desktop-visible {
display: block !important
}
.flash-share .float {
float: right
}
.menu-link {
display: none
}
nav,
.subnav {
background-color: transparent;
border-right: 0;
border-top: 0;
height: auto;
text-align: center;
position: static;
width: auto
}
nav .topnav,
.subnav .topnav {
padding: 0;
clear: both;
list-style: none;
font-size: 14px
}
nav li,
.subnav li {
display: inline-block;
margin: 0px;
position: relative;
background-color: transparent;
line-height: 84px
}
nav li a,
.subnav li a {
display: block;
width: 100%;
height: 100%;
padding: 0 25px;
color: #000;
text-decoration: none
}
nav li:last-child,
.subnav li:last-child {
margin-right: 0
}
nav li:hover,
nav li.active,
.subnav li:hover,
.subnav li.active {
border-color: transparent
}
nav li:hover a,
nav li.active a,
.subnav li:hover a,
.subnav li.active a {
color: #000
}
nav .sub,
.subnav .sub {
position: absolute;
top: 54px;
left: -1px;
z-index: 99999;
background-color: red;
padding: 8px 0 5px 0;
border-top-right-radius: 2px;
-moz-border-radius-topright: 2px;
-webkit-border-top-right-radius: 2px;
border-bottom-left-radius: 2px;
-moz-border-radius-bottomleft: 2px;
-webkit-border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
-moz-border-radius-bottomright: 2px;
-webkit-border-bottom-right-radius: 2px;
width: 200px;
display: none
}
nav .sub li,
.subnav .sub li {
width: 100%;
border: none;
color: #e0d6c8;
font-size: 13px;
line-height: 18px;
display: block;
background-color: red;
border-color: transparent;
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0
}
nav .sub li.mobile-visible,
.subnav .sub li.mobile-visible {
display: none
}
nav .sub a,
.subnav .sub a {
background: none;
padding: 5px 20px 5px 22px
}
nav .sub a:hover,
.subnav .sub a:hover {
background-color: #c00;
text-decoration: none
}
.subnav {
margin: 0 0 15px 0;
padding: 0;
float: left;
clear: both;
font-size: 13px;
max-width: 100%
}
.desktop-nav li:hover .sub {
display: block
}
.page-follow {
float: right;
margin-top: -35px
}
@media (min-width: 768px) {
#fixed-sign {
display: none
}
}
.radio-inline span,
.checkbox-inline span {
white-space: nowrap;
display: inline-block
}
.radio-inline input[type="radio"],
.radio-inline input[type="checkbox"],
.checkbox-inline input[type="radio"],
.checkbox-inline input[type="checkbox"] {
margin: 0;
display: inline-block
}
.radio-inline input[type="radio"]:checked+label,
.radio-inline input[type="checkbox"]:checked+label,
.checkbox-inline input[type="radio"]:checked+label,
.checkbox-inline input[type="checkbox"]:checked+label {
background-color: transparent;
color: #505054
}
.radio-inline label,
.checkbox-inline label {
display: block
}
.radio-inline label.radio,
.radio-inline label.checkbox,
.checkbox-inline label.radio,
.checkbox-inline label.checkbox {
position: relative;
top: 2px;
display: inline-block;
width: auto;
background-color: transparent;
font-family: "Open Sans", sans-serif;
color: #505054;
font-size: 15px;
font-weight: normal;
text-align: left;
padding: 0;
margin: 0 10px 10px 5px
}
.radio-inline label.radio .option_label,
.radio-inline label.checkbox .option_label,
.checkbox-inline label.radio .option_label,
.checkbox-inline label.checkbox .option_label {
display: inline
}
.radio-inline label.checkbox,
.checkbox-inline label.checkbox {
position: relative;
padding: 0;
height: auto;
font-size: inherit;
margin: 0
}
.radio-inline.checkbox-inline,
.checkbox-inline.checkbox-inline {
vertical-align: top
}
.radio-inline.checkbox-inline li,
.checkbox-inline.checkbox-inline li {
width: auto
}
.radio-inline.checkbox-inline li label,
.checkbox-inline.checkbox-inline li label {
width: auto
}
.radio-inline.checkbox-inline li input[type="checkbox"],
.checkbox-inline.checkbox-inline li input[type="checkbox"] {
vertical-align: middle
}
.radio.inline,
.checkbox.inline,
.inline label.radio {
display: inline-block;
margin-right: 20px;
padding-top: 5px;
margin-bottom: 10px;
vertical-align: middle
}
.radio.inline:first-child,
.checkbox.inline:first-child,
.inline label.radio:first-child {
margin-left: 0
}
input[type="checkbox"],
input[type="radio"] {
border: 0;
padding: 0;
background: none;
-moz-box-shadow: 0;
-webkit-box-shadow: 0;
box-shadow: 0
}
.cc {
padding-bottom: 10px
}
ul.membership-list {
list-style: none;
margin: 0;
padding: 0;
vertical-align: top
}
ul.membership-list li.membership {
vertical-align: top;
display: inline-block;
margin: 0 1.22% 1.22% 0;
width: 31.8%;
height: 250px
}
ul.membership-list li.membership .buy {
position: absolute;
width: 88px;
bottom: 15px;
margin-left: -44px;
left: 50%
}
.page-features {
position: relative;
margin: -30px 0 50px 0
}
.page-features .features-headline {
font-size: 20px;
padding: 15px
}
.flex-direction-nav {
top: 36%
}
.flex-prev,
.flex-next {
display: block;
height: 58px;
font-size: 25px
}
.user-session-form-container .oauth-links {
margin-bottom: 0
}
.user-session-form-container .sign-in-with-email,
.user-session-form-container .sign-up {
border-left: 1px solid #ccc;
padding-left: 2.7624309392265194%
}
.review-rules {
float: right;
font-size: 12px;
padding: 0
}
.page-user-sessions-new-wide .onecolumn-container,
.page-users-accounts-new-wide .onecolumn-container,
.page-users-password-resets-new-wide .onecolumn-container,
.page-users-passwords-new-wide .onecolumn-container {
margin: 0 auto;
margin-top: 0px;
margin-bottom: 20px;
width: 75%
}
.page-user-sessions-new-wide footer,
.page-users-accounts-new-wide footer,
.page-users-password-resets-new-wide footer,
.page-users-passwords-new-wide footer {
margin: 0 auto;
width: 100%
}
.page-pages-show-voter-registration .iframe-wrapper {
left: 0;
width: 100%
}
#event_rsvp_guests_count,
input.quantity,
#signup_donations_to_raise_amount {
width: 25%
}
.suggestion-tag-list li {
margin: 15px 15px 10px 0
}
input#donation_amount_other {
width: 30%
}
.distance .within {
position: relative;
top: 2px;
display: inline;
padding-right: 5px
}
.page-user-sessions-new-wide h2 {
font-size: 31.5px;
line-height: 35px
}
ul#page-stream li.activity span+a {
display: inline
}
ul#page-stream .activity-time {
display: inline
}
ul#page-stream .timeago {
display: inline;
padding-right: 0;
float: none;
font-size: 65%;
color: inherit
}
ul#page-stream .activity_links a {
display: inline
}
ul#page-stream .activity_content {
clear: none
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
nav {
background-color: #454545;
height: auto;
width: 16em;
position: absolute;
top: -532px;
right: 20px;
float: none;
margin: 0
}
nav ul {
margin: 0;
padding: 0
}
nav li {
list-style: none;
font-size: 15px;
display: block;
background-color: #454545
}
nav li a {
display: block;
padding: 0.8em;
color: #fff
}
nav .sub {
display: none
}
nav .sub li {
background-color: #383838
}
nav .sub li:last-child {
border-bottom: none
}
nav .sub a {
color: #ccc
}
nav li {
margin: 0;
padding: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
line-height: 21px
}
nav li.active,
nav li.drop {
background-color: #516e16;
border-bottom: 1px solid #222e09
}
nav li a {
padding: .8em
}
nav .sub {
position: static;
width: 100%;
padding: 0
}
nav .sub li {
border-bottom: 1px solid #222e09;
background-color: #415912
}
nav .sub li:last-child {
margin-bottom: 0
}
nav .sub li a {
padding: 12px
}
nav .sub li.mobile-visible {
display: block
}
.menu-link {
display: block
}
.wrap.active nav {
top: 58px
}
nav li {
padding: 10px 0;
text-align: center
}
.site-logo-hader-sub {
line-height: normal;
padding: 5px 10px
}
.menu-link-lan {
display: block
}
#topnav>li a {
font-size: 18px;
color: #fff;
text-decoration: none
}
#topnav>li.topnav_after:after {
content: ' '
}
.topnav li#home {
display: block !important
}
.dropdown {
display: none
}
.donate_btn {
padding: 10px 25px
}
.Home_lock_img {
margin-top: -10px
}
iframe[src*='youtube'] {
display: none
}
.responsive-embed-wrapper iframe {
display: block
}
.fb-like-box iframe {
display: block
}
header {
padding: 28px 0 0 0;
max-width: 78%
}
.menu-link {
margin: 17px 10px 0 0
}
.tablet-visible {
display: block
}
.desktop-visible .subnav-container {
display: none
}
.mobile_menu_free_label {
display: block
}
nav {
z-index: 9999999;
right: 17px;
background: none !important;
top: 0 !important;
position: static !important;
background: none;
width: auto !important
}
.mobile-nav {
background-color: #454545;
height: auto;
width: 16em;
position: absolute;
top: 58px;
right: 17px;
display: none;
opacity: 1;
z-index: 100000000000
}
.desktop-nav {
background-color: #454545;
height: auto;
width: 16em;
position: absolute;
top: 58px;
right: 17px;
display: none;
opacity: 1;
z-index: 100000000000
}
#menu input[type=checkbox]:checked~.mobile-nav {
display: block
}
#menu input[type=checkbox]:checked~.desktop-nav {
display: block
}
.menu-link {
display: none !important
}
.menu-link-lan li.dropdown-lan .dropdown-toggle {
display: none
}
.dropdown-lan input[type=checkbox]:checked~.dropdown-menu-lan {
display: block !important
}
}
@media only screen and (min-width: 1140px) {
.width-container {
width: 1200px;
margin: 0 auto
}
ul.membership-list {
list-style: none;
margin: 0;
padding: 0
}
ul.membership-list li.membership {
position: relative;
float: left;
text-align: center;
list-style: none;
background-color: #f3f3f3;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
padding: 15px;
display: inline-block;
margin: 0 10px 15px 0;
width: 23.983739837398%;
height: 250px
}
ul.membership-list li.membership .membership-bottom {
background-color: #444;
color: #ccc
}
ul.membership-list li.membership .membership-blurb {
padding: 15px 0;
font-size: 13px;
line-height: 16px
}
ul.membership-list li.membership .buy {
position: absolute;
width: 88px;
bottom: 15px;
margin-left: -44px;
left: 50%
}
ul.membership-list li.membership .badge {
font-size: 12px;
text-transform: uppercase
}
}
body.slug_home a {
text-decoration: none
}
body.slug_home .twocolumn-container {
margin-bottom: 0
}
body.slug_home .twocolumn-container .left-column,
body.slug_home .twocolumn-container .right-column-wide {
padding: 30px;
float: left;
width: 49%;
height: 360px;
margin-bottom: 0;
margin-right: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
border: 0
}
body.slug_home .twocolumn-container .left-column.hero,
body.slug_home .twocolumn-container .right-column-wide.hero {
background: transparent;
padding-top: 42px
}
body.slug_home .twocolumn-container .wrapit {
float: left;
width: 35%;
height: 100px;
margin: 1em
}
body.slug_home .twocolumn-container .wrapitwide {
float: left;
width: 50%;
height: 100px;
margin: 1em
}
body.slug_home .twocolumn-container .right-column,
body.slug_home .twocolumn-container .left-column-narrow {
float: left;
padding: 30px;
width: 49%;
height: 360px;
margin-bottom: 0
}
body.slug_home .twocolumn-container .right-column.hero,
body.slug_home .twocolumn-container .left-column-narrow.hero {
padding-top: 42px
}
body.slug_home .twocolumn-container .right-column-wide {
margin-right: 0
}
body.slug_home .twocolumn-container .left-column-narrow {
margin-right: 1.559454191033%
}
body.slug_home .submit-button {
padding: 4px 28px
}
body.slug_home .right-column h2>a {
color: #fff
}
.recurring-donate-right-column-box {
background-color: rgba(0, 0, 0, 0.7);
-webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
-moz-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
padding: 20px 20px 10px 20px;
min-height: 80px;
max-width: 330px;
margin: 0 auto;
float: center;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px
}
.recurring-donate-right-column-box p {
font-color: #ffffff
}
.col-sm-4 {
width: 25%;
float: left;
padding: 10px
}
body.slug_report_card a {
text-decoration: none
}
body.slug_report_card .twocolumn-container {
margin-bottom: 0
}
body.slug_report_card .twocolumn-container h3 {
color: red
}
body.slug_report_card .twocolumn-container .left-column,
body.slug_report_card .twocolumn-container .right-column-wide {
background-color: red;
padding: 30px;
float: left;
width: 49%;
height: 360px;
margin-bottom: 0;
margin-right: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
border: 0
}
body.slug_report_card .twocolumn-container .left-column.hero,
body.slug_report_card .twocolumn-container .right-column-wide.hero {
background-color: #fff;
color: red
}
body.slug_report_card .twocolumn-container .left-column.hero h2,
body.slug_report_card .twocolumn-container .left-column.hero h2>a,
body.slug_report_card .twocolumn-container .right-column-wide.hero h2,
body.slug_report_card .twocolumn-container .right-column-wide.hero h2>a {
color: red
}
body.slug_report_card .twocolumn-container .left-column.hero p,
body.slug_report_card .twocolumn-container .right-column-wide.hero p {
color: #505054;
font-size: 36px;
margin-top: .5em
}
body.slug_report_card .twocolumn-container .left-column.hero p>a,
body.slug_report_card .twocolumn-container .right-column-wide.hero p>a {
color: #505054;
font-size: 20px
}
body.slug_report_card .twocolumn-container .left-column p>a,
body.slug_report_card .twocolumn-container .right-column-wide p>a {
color: #fff;
font-size: 36px;
font-weight: 700;
line-height: 1.2em
}
body.slug_report_card .twocolumn-container .right-column,
body.slug_report_card .twocolumn-container .left-column-narrow {
background-color: rgba(0, 0, 0, 0.8);
float: left;
padding: 30px;
width: 49%;
height: 360px;
margin-bottom: 0
}
body.slug_report_card .twocolumn-container .right-column.hero,
body.slug_report_card .twocolumn-container .left-column-narrow.hero {
padding-top: 42px;
background-color: red
}
body.slug_report_card .twocolumn-container .right-column.hero h2>a,
body.slug_report_card .twocolumn-container .left-column-narrow.hero h2>a {
color: #505054
}
body.slug_report_card .twocolumn-container .right-column.hero p>a,
body.slug_report_card .twocolumn-container .left-column-narrow.hero p>a {
color: #fff
}
body.slug_report_card .twocolumn-container .right-column h2>a,
body.slug_report_card .twocolumn-container .left-column-narrow h2>a {
color: #fff
}
body.slug_report_card .twocolumn-container .right-column p>a,
body.slug_report_card .twocolumn-container .left-column-narrow p>a {
color: red;
font-size: 36px;
font-weight: 700;
line-height: 1.2em
}
body.slug_report_card .twocolumn-container .email-signup {
background-color: rgba(0, 0, 0, 0.7);
-moz-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
-webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
margin-top: 40px;
padding: 20px
}
body.slug_report_card .twocolumn-container .email-signup h1 {
color: red
}
body.slug_report_card .twocolumn-container .email-signup input.text {
width: 56%
}
body.slug_report_card .twocolumn-container .submit-button,
body.slug_report_card .twocolumn-container .submit-link {
width: 44%;
padding: 4px 18px
}
body.slug_report_card .twocolumn-container .right-column-container {
background-color: transparent;
-moz-box-shadow: 0 0 0 0;
-webkit-box-shadow: 0 0 0 0;
box-shadow: 0 0 0 0;
margin: 0;
padding: 0
}
body.slug_report_card .twocolumn-container .right-column-container h1 {
color: #000
}
body.slug_report_card .twocolumn-container .right-column-wide {
margin-right: 0
}
body.slug_report_card .twocolumn-container .left-column-narrow {
margin-right: 1.559454191033%
}
body.slug_report_card .submit-button {
padding: 4px 28px
}
body.slug_report_card .right-column h2>a {
color: #505054
}
.site-logo {
display: block
}
#stream {
display: block;
float: left
}
.form-link {
text-align: center;
font-size: 18px;
margin-top: 10px;
color: red
}
.form-link a {
font-weight: 700;
color: red
}
body {
font-family: 'Open Sans', sans-serif
}
body.page-type-signup .twocolumn-container,
body.page-type-petition .twocolumn-container,
body.page-type-feedback .twocolumn-container,
body.page-type-event .twocolumn-container,
body.page-type-volunteer-signup .twocolumn-container,
body.page-type-donate .twocolumn-container {
margin-bottom: 20px
}
body.page-type-signup .twocolumn-container .left-column,
body.page-type-signup .twocolumn-container .right-column-wide,
body.page-type-petition .twocolumn-container .left-column,
body.page-type-petition .twocolumn-container .right-column-wide,
body.page-type-feedback .twocolumn-container .left-column,
body.page-type-feedback .twocolumn-container .right-column-wide,
body.page-type-event .twocolumn-container .left-column,
body.page-type-event .twocolumn-container .right-column-wide,
body.page-type-volunteer-signup .twocolumn-container .left-column,
body.page-type-volunteer-signup .twocolumn-container .right-column-wide,
body.page-type-donate .twocolumn-container .left-column,
body.page-type-donate .twocolumn-container .right-column-wide {
background-color: #fff;
padding: 20px;
float: left;
width: 51%;
margin-right: 1.559454191033%;
margin-bottom: 0
}
body.page-type-signup .twocolumn-container .right-column,
body.page-type-signup .twocolumn-container .left-column-narrow,
body.page-type-petition .twocolumn-container .right-column,
body.page-type-petition .twocolumn-container .left-column-narrow,
body.page-type-feedback .twocolumn-container .right-column,
body.page-type-feedback .twocolumn-container .left-column-narrow,
body.page-type-event .twocolumn-container .right-column,
body.page-type-event .twocolumn-container .left-column-narrow,
body.page-type-volunteer-signup .twocolumn-container .right-column,
body.page-type-volunteer-signup .twocolumn-container .left-column-narrow,
body.page-type-donate .twocolumn-container .right-column,
body.page-type-donate .twocolumn-container .left-column-narrow {
float: left;
width: 47%;
margin-bottom: 0
}
body.page-type-signup .twocolumn-container .right-column-wide,
body.page-type-petition .twocolumn-container .right-column-wide,
body.page-type-feedback .twocolumn-container .right-column-wide,
body.page-type-event .twocolumn-container .right-column-wide,
body.page-type-volunteer-signup .twocolumn-container .right-column-wide,
body.page-type-donate .twocolumn-container .right-column-wide {
margin-right: 0
}
body.page-type-signup .twocolumn-container .left-column-narrow,
body.page-type-petition .twocolumn-container .left-column-narrow,
body.page-type-feedback .twocolumn-container .left-column-narrow,
body.page-type-event .twocolumn-container .left-column-narrow,
body.page-type-volunteer-signup .twocolumn-container .left-column-narrow,
body.page-type-donate .twocolumn-container .left-column-narrow {
margin-right: 1.559454191033%
}
body.page-type-event #side-bar-header {
font-size: 46px
}
body.slug_campaigns .excerpt-support-link a {
display: inline
}
body.page-type-donation h1 {
color: #505054
}
body.page-type-donation .headline {
padding-left: 20px
}
body.page-type-donation #intro {
background-color: #fff;
padding: 0 20px 20px;
float: left;
width: 51%;
margin-right: 1.559454191033%;
margin-bottom: 0
}
body.page-type-donation #intro p {
margin-top: 0
}
body.page-type-donation #intro img {
margin-bottom: 30px
}
body.page-type-donation h1#side-bar-header {
color: red;
font-size: 26px;
text-align: left
}
body.page-type-donation .form-wrap {
float: left;
width: 47%;
margin-bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
-moz-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
-webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.9);
padding: 20px
}
body.page-type-donation .form-wrap label,
body.page-type-donation .form-wrap .row-fluid {
color: #ffffff
}
body.page-type-donation .form-wrap .recurring-donation-table {
width: 100%
}
body.page-type-donation .form-wrap .recurring-donation-ammount {
width: 90%;
font-size: 15px;
height: 36px;
margin-bottom: 0
}
body.page-type-donation .form-wrap .radio-inline input[type="radio"]:checked+label,
body.page-type-donation .form-wrap .radio-inline input[type="checkbox"]:checked+label,
body.page-type-donation .form-wrap .checkbox-inline input[type="radio"]:checked+label,
body.page-type-donation .form-wrap .checkbox-inline input[type="checkbox"]:checked+label {
color: #fff
}
body.page-type-donation .form-wrap .recurring-donation {
margin-bottom: 20px
}
body.page-type-donation .submit-button {
font-size: 1.1em
}
body[class*="slug_report_card"] .table-responsive {
padding: 40px 40px 0 20px;
overflow-x: hidden
}
body[class*="slug_report_card"] .badge {
display: block;
position: relative
}
body[class*="slug_report_card"] .badge img {
position: absolute;
right: 0;
top: -80px
}
.secure-icon {
display: block
}
.paypal {
color: red
}
.petition-box {
background-color: #fdc606;
padding: 10px 20px 10px;
float: right;
width: 40%;
margin-right: 1.559454191033%;
margin-bottom: 0
}
.petition-box p {
margin-top: 0
}
.petition-box-content {
background-color: #ffffff;
padding: 0;
float: left;
width: 54%;
margin-bottom: 0
}
.petition-box-content P {
margin-top: 0
}
.petition-box-update {
background-color: #333333;
padding: 10px 20px 10px;
float: right;
width: 42%;
margin-right: 1.559454191033%;
margin-bottom: 0;
background-color: #333333;
-webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.9);
-moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.9);
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.9);
margin: 0px 0px 40px 4%;
padding: 20px
}
.petition-box-update p {
margin-top: 0;
color: #ffffff
}
.petition-box-update p {
font-color: #ffffff
}
.start-campaign-text {
position: absolute;
top: 15px;
left: 65px;
text-shadow: rgba(0, 0, 0, 0.25) 0 1px 0;
font: normal 100% museo sans, sans-serif;
font-style: normal;
font-variant: normal;
font-weight: normal;
font-stretch: normal;
font-size: 20px;
line-height: normal;
font-family: 'museo sans', sans-serif;
font-size: 20px;
text-transform: uppercase;
white-space: nowrap;
color: #333333
} | 0.310694 | 0.113383 |
.grid-m0rt210 .col-right {
width: 210px;
margin-left: -210px;
}
.icon16, .master-header .master-search b, .master-header .master-user-box .master-cartnum-pop, .master-header .master-user-box b, .master-header .master-user-box s, .master-header .master-user-sc-pop .no-goods .no-goods-main b, .master-menu-pop .item .item-title b, .master-nav .interaction-menu h2 b, .top-nav .li-4 .mobile-icon, .top-nav .link-list-user b {
background: url(../img/common-bg.png) no-repeat
}
.icon16 {
display: inline-block;
height: 16px;
margin-right: 2px;
width: 16px
}
.icon16-1 {
left: 0;
top: 6px
}
.main, .main-service, .master-header-1, .master-nav, .slave-nav,.top-nav-1{
margin: auto;
width: 1210px;
}
.top-nav{
margin:0 auto;
width: 100%;
background: #f7f7f7;
height: 24px;
line-height: 24px
}
.top-nav-wrap {
background: #f7f7f7;
border-bottom: 1px solid #e8e8e8;
height: 24px
}
.top-nav a:hover .icon16-1 {
animation: .5s ease .2s normal both 1 running swing
}
@keyframes swing {
100%, 20%, 40%, 60%, 80% {
transform-origin: center top 0
}
20% {
transform: rotate(15deg)
}
40% {
transform: rotate(-10deg)
}
60% {
transform: rotate(5deg)
}
80% {
transform: rotate(-5deg)
}
100% {
transform: rotate(0deg)
}
}
.top-nav .link-list li .add_favorite{
color:#999;
}
.top-nav .link-list li {
float: left;
padding: 1px 13px 0 14px;
position: relative;
z-index: 3;
}
.top-nav .fl li {
padding-left: 18px;
font-size: 12px;
}
.top-nav .link-list-user li {
font-size: 12px;
}
.top-nav .link-list-user li a {
color: #999;
}
.top-nav .link-list-user b {
background-position: -22px 0;
height: 4px;
line-height: 12px;
right: 13px;
top: 11px;
width: 7px
}
.li-3:hover .pop {
display: block;
}
.top-nav .login-box {
margin-left: 32px
}
.top-nav .link-list-user .login-box a {
color: #e20000
}
.top-nav s {
border-left: 1px solid #dcdcdc;
height: 12px;
left: 0;
line-height: 0;
position: absolute;
top: 6px
}
.top-nav b {
position: absolute
}
.top-nav .link-user {
display: block
}
.top-nav .link-user-icon {
padding-right: 18px
}
.top-nav .outline {
background: #fff;
border: 1px solid #e8e8e8;
box-shadow: 0 0 4px rgba(0, 0, 0, .12);
display: none;
height: 24px;
left: 4px;
position: absolute;
top: 1px;
width: 84px;
z-index: -1
}
.top-nav .overlayout {
background: #fff;
display: none;
font-size: 0;
height: 4px;
left: 5px;
line-height: 0;
position: absolute;
top: 21px;
width: 84px;
z-index: 2
}
.top-nav .pop {
background: #fff;
border: 1px solid #e8e8e8;
box-shadow: 0 0 4px rgba(0, 0, 0, .12);
display: none;
left: 4px;
position: absolute;
top: 24px;
width: 84px;
z-index: 1
}
.top-nav .pop-user-list {
padding: 0 3px
}
.top-nav .pop-user-list li {
border-top: 1px solid #ececec;
padding: 0 6px
}
.link-list .over .pop, .top-nav .link-list .over .outline, .top-nav .link-list .over .overlayout {
display: block
}
.top-nav .link-list-user .over b {
animation: .5s ease .2s normal both 1 running rotateIn
}
@keyframes rotateIn {
0% {
transform: rotate(0deg);
transform-origin: center center 0
}
100% {
transform: rotate(-180deg);
transform-origin: center center 0
}
}
.top-nav .li-4 .link-user {
text-indent: 12px
}
.top-nav .li-4 .mobile-icon {
background-position: -39px 0;
font-size: 0;
height: 16px;
left: 10px;
line-height: 0;
position: absolute;
top: 5px;
width: 9px
}
.top-nav .li-4 .outline, .top-nav .li-4 .overlayout {
width: 96px
}
.top-nav .link-list .over .mobile-icon {
animation: 1s ease .2s normal both 1 running tada
}
@keyframes tada {
0% {
transform: scale(1)
}
10%, 20% {
transform: scale(0.9) rotate(-9deg)
}
30%, 50%, 70%, 90% {
transform: scale(1) rotate(9deg)
}
40%, 60%, 80% {
transform: scale(1) rotate(-9deg)
}
100% {
transform: scale(1) rotate(0deg)
}
}
.top-nav .mobile-pop {
left: auto;
right: 3px;
width: 336px
}
.top-nav .mobile-code {
padding: 12px
}
.top-nav .mobile-code-item {
height: 170px;
width: 145px
}
.top-nav .mobile-code-item img {
display: block;
height: 145px;
margin-bottom: 4px;
width: 145px
}
.top-nav .mobile-code-item a {
color: #fff;
display: block;
height: 21px;
line-height: 21px;
width: 145px
}
.top-nav .mobile-code-item .btn-1 {
background-position: 0 -682px
}
.top-nav .mobile-code-item .btn-2 {
background-position: 0 -705px
}
/* 顶部end */
/* logo区 */
.master-header {
height: 102px
}
.master-header .master-logo {
padding-top: 23px;
vertical-align: middle;
width: 330px
}
.master-header .master-search {
padding-top: 27px;
width: 558px
}
.master-header .master-search .search-select {
background: #e43c3f;
color: #fff;
cursor: pointer;
font-size: 14px;
font-weight: 700;
height: 36px;
line-height: 36px;
position: relative;
text-indent: 1em;
width: 105px
}
.master-header .master-search b {
background-position: -60px 0;
height: 4px;
position: absolute;
right: 16px;
top: 16px;
width: 7px
}
.master-header .master-search .search-select-pop {
background: #fff;
border: 1px solid #e43c3f;
left: 0;
overflow: hidden;
position: absolute;
top: 35px;
width: 103px
}
.master-header .master-search .search-select-list {
margin-top: -1px
}
.master-header .master-search .search-select-list li {
float: left;
height: 27px;
text-align: left
}
.master-header .master-search .search-select-list a {
border-top: 1px dashed #e7e7e7;
color: #e43c3f;
display: block;
height: 26px;
line-height: 26px;
text-align: left;
text-decoration: none;
text-indent: 1em;
width: 103px
}
.master-header .master-search .search-select-list a:hover {
background: #e43c3f;
border-top: 1px solid #e43c3f;
color: #fff
}
.master-header .master-search .master-search-input {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: #e43c3f -moz-use-text-color #e43c3f #e43c3f;
border-image: none;
border-style: solid none solid solid;
border-width: 2px 0 2px 2px;
color: #b3b3b3;
font-size: 14px;
height: 36px;
padding: 8px;
width: 396px
}
.master-header .master-search .master-search-btn {
background: #e43c3f;
border: 0;
color: #fff;
cursor: pointer;
font-size: 14px;
font-weight: 700;
height: 36px;
line-height: 36px;
text-align: center;
width: 80px
}
.master-header .master-search .master-search-adv {
display: block;
height: 28px;
line-height: 14px;
padding: 4px 0 0 12px;
font-size: 12px;
color: #999;
}
.master-header .master-search-keywords {
color: #999;
line-height: 14px;
overflow: hidden;
padding-top: 6px;
font-size: 14px;
}
.master-header .master-search-keywords a {
color: #999;
margin: 0 6px;
}
.master-header .master-search-keywords a span {
font-size: 12px;
}
.master-header .master-search-keywords a:hover {
color: #ff4848
}
.master-header .master-user {
padding-top: 31px;
width: 272px
}
.master-header .master-user-my {
position: relative;
z-index: 1
}
.master-header .master-user-box b {
background-position: -74px 0;
height: 21px;
left: 12px;
position: absolute;
top: 4px;
width: 22px
}
.master-header .master-user-box .master-user-pop b, .master-header .master-user-box .master-user-pop s {
background: 0 0;
height: auto;
left: auto;
position: static;
top: auto;
width: auto
}
.master-header .master-user-box s {
background-position: -179px 0;
height: 10px;
position: absolute;
right: 19px;
top: 10px;
width: 13px
}
.master-header .master-user-box a {
font-size: 14px;
}
.master-header .over s {
background-position: -196px 0
}
.master-header .master-user-my .over b {
background-position: -98px 0
}
.master-header .master-user-sc .master-user-box b {
background-position: -124px 0
}
.master-header .master-user-sc .over b {
background-position: -149px 0
}
.master-header .master-user-box {
background: #f7f7f7;
border: 1px solid #efefef;
height: 28px;
position: relative;
text-align: center;
width: 131px;
z-index: 2
}
.master-header .master-user-btn {
color: #666;
line-height: 28px
}
.master-header .outline {
background: #fff;
border: 1px solid #e8e8e8;
box-shadow: 0 0 4px rgba(0, 0, 0, .12);
display: none;
height: 32px;
left: 0;
position: absolute;
top: 0;
width: 129px;
z-index: -1
}
.master-header .topline {
background: #e4393c;
display: none;
font-size: 0;
height: 3px;
left: 0;
line-height: 0;
position: absolute;
top: -3px;
width: 131px
}
.master-header .overlayout {
background: #fff;
display: none;
font-size: 0;
height: 4px;
left: 1px;
line-height: 0;
position: absolute;
top: 29px;
width: 129px;
z-index: 11
}
.master-header .over .master-user-btn {
color: #e4393c;
font-weight: 700
}
.master-header .master-user-pop {
background: #fff;
border: 1px solid #e8e8e8;
box-shadow: 0 0 4px rgba(0, 0, 0, .12);
display: none;
overflow: hidden;
position: absolute;
right: 0;
top: 32px;
width: 296px;
z-index: 10
}
.master-header .over .master-user-pop, .master-header .over .outline, .master-header .over .overlayout, .master-header .over .topline {
display: block
}
.master-header .master-user-box .master-cartnum-pop {
background-position: -222px 0;
color: #fff;
height: 24px;
left: 28px;
line-height: 18px;
position: absolute;
text-indent: -4px;
top: -16px;
width: 30px
}
.master-header .master-user-sc-pop .master-user-carttotal {
height: 68px;
overflow: hidden;
padding-right: 25px;
text-align: right
}
.master-header .master-user-sc-pop .master-user-carttotal .total-num {
padding: 2px 0
}
.master-header .master-user-sc-pop .master-user-carttotal .total-num s {
color: #e4393c;
font-weight: 700;
margin: 0 6px;
text-decoration: none
}
.master-header .master-user-sc-pop .master-user-carttotal .total-num b {
color: #e4393c;
font-family: "Microsoft Yahei";
font-size: 20px;
font-weight: 700
}
/* .master-header .master-user-sc-pop .master-user-carttotal .total-active .total-active-btn, .top-nav .mobile-code-item a {
background: url(http://static.winxuancdn.com/css/v2/images/common-btn.png?20170907) no-repeat
} */
.master-header .master-user-sc-pop .master-user-carttotal .total-active .total-active-btn {
background-position: -122px -316px;
color: #fff;
display: inline-block;
height: 31px;
line-height: 31px;
text-align: center;
width: 123px
}
.master-header .user-hot h6 {
background: #f3f3f3;
border-left: 3px solid #e4393c;
font-weight: 400;
height: 20px;
line-height: 20px;
padding-left: 6px;
text-align: left
}
.master-header .user-hot .user-hot-list {
padding: 3px 0
}
.master-header .user-hot .user-hot-list li {
background-position: 12px -134px;
height: 25px;
line-height: 25px;
padding-left: 30px;
text-align: left
}
.master-header .user-hot .user-hot-list li b {
color: #e4393c;
font-weight: 400
}
.master-header .master-user-sc-pop .no-goods .no-goods-main {
line-height: 18px;
padding: 26px 0 26px 100px;
position: relative;
text-align: left
}
.master-header .master-user-sc-pop .no-goods .no-goods-main b {
background-position: -254px -33px;
height: 51px;
left: 40px;
position: absolute;
top: 18px;
width: 51px
}
/* logo区end */
.col-user-sc .title {
background: #fff;
border: 0;
height: auto;
padding-top: 6px
}
.col-user-sc .tab {
border-left: 0 none;
border-right: 0 none;
padding-left: 14px
}
.col-user-sc .tab-item {
background: #ededed;
margin-right: 12px;
width: 126px
}
.col-user-sc .current {
background: #fff
}
.col-user-sc .cont {
border: 0
}
.col-user-sc .list-base-1 {
max-height: 380px;
overflow-y: auto
}
.cell-style-cart {
height: 57px;
overflow: hidden;
padding: 9px 0 9px 3px;
text-align: left;
width: 264px
}
.cell-style-cart .img {
border: 1px solid #ddd;
height: 55px;
padding: 0;
width: 55px
}
.cell-style-cart .name {
float: left;
padding-left: 6px;
width: 110px
}
.cell-style-cart .price-n {
float: left;
font-family: "Microsoft Yahei";
height: 40px;
line-height: 18px;
overflow: hidden;
padding-top: 8px;
text-align: right;
width: 90px
}
.cell-style-cart .price-n b {
display: block;
font-size: 15px
}
.cell-style-cart .price-n .sale-num {
display: inline-block
}
.head .list {
overflow: visible!important
}
.customerUpdatePwd {
background-color: #FFFCC8;
border: 1px solid #ECD573;
border-radius: 3px;
line-height: 24px;
margin: 10px auto 0;
text-align: center;
width: 990px;
color: #000
}
.customerUpdatePwd a {
color: #F45A23
}
.top_mobileTips {
padding: 30px 0;
height: 42px;
text-align: center;
background: #FF7F00;
color: #fff;
font-size: 22px
}
.top_mobileTips .version {
color: #FFFD03
}
.top_mobileTips .download {
display: inline-block;
margin: 0 50px;
background: #2F3737;
color: #fff;
font-weight: 700;
padding: 10px 30px
}
.top_mobileTips .download:hover {
text-decoration: none
}
.temp_ads_index {
height: 60px;
min-width: 1210px;
overflow: hidden
}
.temp_ads_index a {
background-position: center center;
background-repeat: no-repeat;
display: block;
height: 60px;
width: 100%
}
.site_notice {
background: #f1f1f1;
color: #999;
height: 25px;
line-height: 25px;
text-align: center
}
.site_notice span {
color: #c91518
}
.top-nav-fixed {
width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 99999
}
.search-fixed .head-content {
background: #FFF;
box-shadow: 0 0 6px 0 #CCC;
height: 63px;
position: fixed;
width: 2000px;
z-index: 99998;
transition: top .3s ease-out 0s
}
.search-fixed .head-content .master-header {
height: 63px
}
.search-fixed .master-header .master-logo {
padding-top: 8px;
width: 349px
}
.search-fixed .master-header .master-search {
padding-top: 11px;
width: 750px
}
.search-fixed .master-header .master-search-adv, .search-fixed .master-header .master-search-keywords, .search-fixed .master-header .master-user {
display: none
}
.search-fixed .master-header .master-search .master-search-input {
border: 4px solid #E4393C;
color: #B2B2B2;
font-size: 14px;
height: 16px;
line-height: 16px;
outline: 0;
padding: 8px;
width: 644px
}
.search-fixed .master-header .master-search .master-search-btn {
background: #E4393C;
color: #FFF;
cursor: pointer;
font-size: 14px;
font-weight: 700;
height: 40px;
line-height: 40px;
text-align: center;
width: 82px
}
.master-nav-wrap {
background: #e4393c;
height: 40px;
min-width: 1210px
}
.master-nav {
background: #e4393c;
height: 40px;
line-height: 40px
}
.master-nav .interaction-menu {
height: 40px;
position: relative;
width: 210px;
z-index: 10
}
.master-nav .interaction-menu h2 a, .master-nav .interaction-menu h2 span {
background: #c91518;
color: #fff;
display: block;
font-family: "Microsoft Yahei";
font-size: 14px;
font-weight: 700;
text-align: left;
text-indent: 22px;
width: 210px
}
.master-nav .interaction-menu h2 b {
background-position: -181px -3px;
font-size: 0;
height: 5px;
line-height: 0;
position: absolute;
right: 12px;
top: 18px;
width: 9px
}
.master-nav .master-nav-list li {
float: left
}
.master-nav .master-nav-list li a {
color: #fff;
display: inline-block;
font-family: "Microsoft Yahei";
font-size: 14px;
font-weight: 700;
padding: 0 24px;
text-decoration: none
}
.master-nav .master-nav-list li a:hover {
background: #a40000
}
.master-menu-pop {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background: #fafafa;
border-color: -moz-use-text-color #c91518 #c91518;
border-image: none;
border-style: none solid solid;
border-width: 0 2px 2px;
padding-top: 2px;
position: absolute;
top: 40px;
width: 206px;
z-index: 3
}
.master-menu-pop .item {
border-bottom: 1px dotted #d6d6d6;
height: 53px;
margin: 0 6px;
overflow: hidden;
position: relative
}
.master-menu-pop .item .item-title {
overflow: hidden
}
.master-menu-pop .item .item-title b {
background-position: -330px 0;
font-size: 0;
height: 9px;
line-height: 0;
position: absolute;
right: 8px;
top: 11px;
width: 5px
}
.master-menu-pop .item h3 {
height: 24px;
line-height: 24px;
padding: 4px 0 0 2px
}
.master-menu-pop .item h3 a {
color: #333;
font-size: 12px;
font-weight: 700
}
.master-menu-pop .item .item-title-class {
height: 13px;
margin: 4px 0 4px -6px;
overflow: hidden
}
.master-menu-pop .item .item-title-class a {
border-left: 1px solid #d6d6d6;
display: block;
float: left;
height: 13px;
line-height: 14px;
padding: 0 8px
}
.interaction-menu .item-pop {
border: 1px solid #d5d5d5;
box-shadow: 0 0 4px rgba(0, 0, 0, .12);
left: 210px;
position: absolute;
top: -1px;
width: 361px;
z-index: 2
}
.master-menu-pop .over {
overflow: visible
}
.master-menu-pop .over .item-title {
background: #fff;
border: 1px solid #d5d5d5;
box-shadow: 0 0 4px rgba(0, 0, 0, .12);
height: 53px;
left: -5px;
padding-left: 4px;
position: absolute;
top: -1px;
width: 202px
}
.master-menu-pop .over .item-title b {
right: 16px
}
.master-menu-pop .over h3 a {
color: #c91518;
font-size: 14px
}
.interaction-menu .item-pop .base-nav {
background: #fff;
overflow: hidden;
padding: 12px 18px
}
.interaction-menu .item-pop .base-nav a {
border-right: 1px solid #d6d6d6;
display: inline-block;
float: left;
height: 14px;
line-height: 14px;
margin: 8px 0;
padding: 0 8px;
white-space: nowrap
}
.master-menu-pop .over .overlayout {
background: #fff;
height: 53px;
left: 200px;
position: absolute;
width: 8px;
z-index: 101
}
.master-menu-pop .item-all {
border-bottom: 0 none;
color: #c91518;
height: 29px;
line-height: 29px
}
.master-menu-pop .item-all a {
color: #c91518
}
.slave-nav-wrap {
background: #f7f7f7;
border-bottom: 1px solid #e8e8e8
}
.slave-nav {
background: #f7f7f7;
height: 30px;
overflow: hidden
}
.slave-nav .slave-nav-list li {
float: left;
padding-top: 6px
}
.slave-nav .slave-nav-list li a {
border-left: 1px solid #ebebeb;
font-family: "Microsoft Yahei";
font-size: 14px;
height: 16px;
line-height: 16px;
padding: 0 18px
}
.mod-venuebread {
height: 34px;
line-height: 34px;
color: #666;
overflow: hidden
}
.mod-venuebread div {
margin-left: -18px;
position: relative
}
.mod-venuebread div a {
color: #666;
padding: 0 6px;
margin: 0 8px
}
.mod-venuebread div a:first-child {
font-size: 18px;
font-weight: 700;
font-family: "Microsoft Yahei"
}
.mod-venueslider {
overflow: hidden
}
.mod-venueslider .col-venueslider {
height: 334px;
position: relative;
overflow: hidden;
border-top: 1px solid #edecec;
border-bottom: 1px solid #edecec
}
.mod-venueslider .tab-cont {
height: 334px;
text-align: center
}
.mod-venueslider .tab-cont img {
display: inline;
position: relative
}
.mod-venueslider .tab {
position: absolute;
right: 8px;
bottom: 12px
}
.mod-venueslider .tab .tab-item {
float: left;
width: 20px;
height: 20px;
line-height: 20px;
margin-right: 8px;
border-radius: 10px;
background: #000;
color: #fff;
text-align: center;
font-size: 14px;
cursor: pointer
}
.mod-venueslider .tab .current {
background: #db2a41
}
.mod-specialrecommend {
width: 1210px;
margin: auto auto 10px
}
.mod-specialrecommend .col-indexbig>.attach {
position: absolute;
top: 18px;
right: 0
}
.mod-specialrecommend .col-indexbig>.title {
width: 990px
}
/* * html .mod-specialrecommend .col-indexbig .title .title {
width: auto!important
}
* html .mod-specialrecommend .col-indexbig .attach {
position: absolute;
top: 18px;
right: 0
} */
/* .mod-mainmenu {
position: relative
} */
.mod-mainmenu .col-mainmenu {
width: 210px;
/* position: absolute;
top: -480px;
left: 0; */
z-index: 100
}
.mod-mainmenu .col-mainmenu .cont {
border: 2px solid #c91518;
border-top: 0 none;
height: 926px;
overflow: hidden;
background: #fff;
padding-top: 5px;
font-size: 12px;
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu {
zoom: 1;
margin: auto 6px;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAASSURBVBhXY7h27dp/EIaA//8BewsO+814adIAAAAASUVORK5CYII=) left bottom repeat-x;
padding-bottom: 6px;
padding-top: 5px
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu:after, .mod-mainmenu .col-mainmenu .cont .list-mainmenu:before {
content: '';
display: table
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu:after {
clear: both
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu dt {
height: 24px;
line-height: 24px;
overflow: hidden
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu dt a {
color: #000;
font-weight: 700;
display: inline-block;
text-decoration: none
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu dt a:hover {
color: #db2a41
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu dd {
height: 20px;
line-height: 20px;
float: left;
white-space: nowrap;
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu dd a {
color: #666;
display: inline-block;
vertical-align: middle;
white-space: nowrap
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu dd a:hover {
color: #db2a41
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu dd b {
width: 1px;
height: 12px;
margin: 0 8px;
background: #d6d6d6;
display: inline-block;
vertical-align: middle
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu-sg {
padding: 0
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu-sg dt {
height: 26px;
line-height: 26px
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu-last dt {
text-align: center
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu-last dt a {
color: #db2a41;
font-weight: 400
}
.mod-focus {
margin-bottom: 10px;
}
/* 详情页 */
/* .xiangqing{
height: 1300px;
} */
.xiangqing1{
width: 650px;
padding:0 20px;
color:#333;
font-size:14px;
}
.xiangqing1 h2{
color:black;
font-size:20px;
font-weight: 900;
margin-bottom:20px;
}
.xiangqing1 p{
font-size:16px;
color:red;
}
.xiangqing1 span,del{
display: inline-block;
width: 80px;
height: 40px;
line-height: 40px;
text-align: right;
font-size:14px;
color:#666;
}
.xiangqing1 .tehui{
color:#db2a41;
width:300px;
text-align:left;
padding-left:10px;
}
.xiangqing1 .newp{
font-size:22px;
font-weight: 900;
color:#db2a41;
}
.xiangqing1 form{
padding-top:5px;
padding-bottom:15px;
}
.xiangqing1 .jia,.jian{
width: 20px;
height: 20px;
border:1px solid #ccc;
background:#f3f3f3;
color:#666;
}
.xiangqing1 .liang{
width: 40px;
height: 20px;
text-align:center;
border:1px solid #ccc;
}
.xiangqing1 div{
width: 150px;
height: 50px;
line-height: 50px;
background:#db2a41;
color:#fff;
text-align:center;
border-radius:10px;
margin-left:10px;
}
.xiangqing1 div img{
border-radius:5px;
margin:0 5px;
}
.xiangqing1 .fuwu{
width: 400px;
font-size:14px;
padding-top:20px;
}
.nav{
margin-bottom: 30px;
}
/* 放大镜 */
.xiangqingbox{
width: 300px;
position: relative;
margin-left: 250px;
border:1px solid #ccc;
float: right;
}
.xiangqingbox img{
width: 300px;
height: 300px;
display: inline-block;
}
.tese{
width: 968px;
}
.tese_top{
height: 60px;
line-height: 60px;
border-bottom:2px solid #b3b3b3;
}
.tese_top div{
font-size:18px;
margin-left:5px;
margin-right:100px;
}
.tese_top img{
margin:16px 5px 0 5px;
}
.tese_l{
width: 968px;
margin-bottom:20px;
}
.jujiao_book{
width: 242px;
border:1px #f3f3f3 solid;
text-align: center;
padding:15px;
font-size:12px;
color:#666666;
position: relative;
}
.jujiao_book img{
width: 220px;
height: 180px;
}
.jujiao_book p{
float: left;
font-size:14px;
color:#E4393C;
height: 40px;
line-height: 40px;
}
.jujiao_book del{
float: right;
font-size:12px;
color:#999;
}
.jujiao_book .book_j{
padding-top:10px;
}
/* 购物车划出 */
.carcontent{
width: 260px;
border:1px solid #ccc;
position: absolute;
left:-130px;
top:30px;
background:#fff;
padding:20px 10px;
display: none;
}
.carcontent .no-goods-main{
font-size:14px;
color:#666;
margin:0 auto;
}
.carcontent .goods-main1{
height: 70px;
width: 230px;
margin-bottom:10px;
}
.carcontent .goods-main img{
width: 80px;
height: 60px;
float: left;
}
.carcontent .goods-main div{
float: left;
font-size:12px;
color:#666;
}
.carcontent .goods-main .m1{
width: 100px;
}
.carcontent .goods-main p{
color:#E4393C;
font-weight: 900;
}
.carcontent .goods-main span{
color:#666;
font-size:12px;
}
.master-user-box:hover .carcontent{
display: block;
}
/* 底部 */
.main-copyright{
padding:50px 0;
text-align: center;
font-size:14px;
color:#666;
}
.main-copyright a{
font-size:14px;
color:#666;
}
.base-nav{
height: 40px;
line-height: 40px;
} | src/css/xiangqing.css | .grid-m0rt210 .col-right {
width: 210px;
margin-left: -210px;
}
.icon16, .master-header .master-search b, .master-header .master-user-box .master-cartnum-pop, .master-header .master-user-box b, .master-header .master-user-box s, .master-header .master-user-sc-pop .no-goods .no-goods-main b, .master-menu-pop .item .item-title b, .master-nav .interaction-menu h2 b, .top-nav .li-4 .mobile-icon, .top-nav .link-list-user b {
background: url(../img/common-bg.png) no-repeat
}
.icon16 {
display: inline-block;
height: 16px;
margin-right: 2px;
width: 16px
}
.icon16-1 {
left: 0;
top: 6px
}
.main, .main-service, .master-header-1, .master-nav, .slave-nav,.top-nav-1{
margin: auto;
width: 1210px;
}
.top-nav{
margin:0 auto;
width: 100%;
background: #f7f7f7;
height: 24px;
line-height: 24px
}
.top-nav-wrap {
background: #f7f7f7;
border-bottom: 1px solid #e8e8e8;
height: 24px
}
.top-nav a:hover .icon16-1 {
animation: .5s ease .2s normal both 1 running swing
}
@keyframes swing {
100%, 20%, 40%, 60%, 80% {
transform-origin: center top 0
}
20% {
transform: rotate(15deg)
}
40% {
transform: rotate(-10deg)
}
60% {
transform: rotate(5deg)
}
80% {
transform: rotate(-5deg)
}
100% {
transform: rotate(0deg)
}
}
.top-nav .link-list li .add_favorite{
color:#999;
}
.top-nav .link-list li {
float: left;
padding: 1px 13px 0 14px;
position: relative;
z-index: 3;
}
.top-nav .fl li {
padding-left: 18px;
font-size: 12px;
}
.top-nav .link-list-user li {
font-size: 12px;
}
.top-nav .link-list-user li a {
color: #999;
}
.top-nav .link-list-user b {
background-position: -22px 0;
height: 4px;
line-height: 12px;
right: 13px;
top: 11px;
width: 7px
}
.li-3:hover .pop {
display: block;
}
.top-nav .login-box {
margin-left: 32px
}
.top-nav .link-list-user .login-box a {
color: #e20000
}
.top-nav s {
border-left: 1px solid #dcdcdc;
height: 12px;
left: 0;
line-height: 0;
position: absolute;
top: 6px
}
.top-nav b {
position: absolute
}
.top-nav .link-user {
display: block
}
.top-nav .link-user-icon {
padding-right: 18px
}
.top-nav .outline {
background: #fff;
border: 1px solid #e8e8e8;
box-shadow: 0 0 4px rgba(0, 0, 0, .12);
display: none;
height: 24px;
left: 4px;
position: absolute;
top: 1px;
width: 84px;
z-index: -1
}
.top-nav .overlayout {
background: #fff;
display: none;
font-size: 0;
height: 4px;
left: 5px;
line-height: 0;
position: absolute;
top: 21px;
width: 84px;
z-index: 2
}
.top-nav .pop {
background: #fff;
border: 1px solid #e8e8e8;
box-shadow: 0 0 4px rgba(0, 0, 0, .12);
display: none;
left: 4px;
position: absolute;
top: 24px;
width: 84px;
z-index: 1
}
.top-nav .pop-user-list {
padding: 0 3px
}
.top-nav .pop-user-list li {
border-top: 1px solid #ececec;
padding: 0 6px
}
.link-list .over .pop, .top-nav .link-list .over .outline, .top-nav .link-list .over .overlayout {
display: block
}
.top-nav .link-list-user .over b {
animation: .5s ease .2s normal both 1 running rotateIn
}
@keyframes rotateIn {
0% {
transform: rotate(0deg);
transform-origin: center center 0
}
100% {
transform: rotate(-180deg);
transform-origin: center center 0
}
}
.top-nav .li-4 .link-user {
text-indent: 12px
}
.top-nav .li-4 .mobile-icon {
background-position: -39px 0;
font-size: 0;
height: 16px;
left: 10px;
line-height: 0;
position: absolute;
top: 5px;
width: 9px
}
.top-nav .li-4 .outline, .top-nav .li-4 .overlayout {
width: 96px
}
.top-nav .link-list .over .mobile-icon {
animation: 1s ease .2s normal both 1 running tada
}
@keyframes tada {
0% {
transform: scale(1)
}
10%, 20% {
transform: scale(0.9) rotate(-9deg)
}
30%, 50%, 70%, 90% {
transform: scale(1) rotate(9deg)
}
40%, 60%, 80% {
transform: scale(1) rotate(-9deg)
}
100% {
transform: scale(1) rotate(0deg)
}
}
.top-nav .mobile-pop {
left: auto;
right: 3px;
width: 336px
}
.top-nav .mobile-code {
padding: 12px
}
.top-nav .mobile-code-item {
height: 170px;
width: 145px
}
.top-nav .mobile-code-item img {
display: block;
height: 145px;
margin-bottom: 4px;
width: 145px
}
.top-nav .mobile-code-item a {
color: #fff;
display: block;
height: 21px;
line-height: 21px;
width: 145px
}
.top-nav .mobile-code-item .btn-1 {
background-position: 0 -682px
}
.top-nav .mobile-code-item .btn-2 {
background-position: 0 -705px
}
/* 顶部end */
/* logo区 */
.master-header {
height: 102px
}
.master-header .master-logo {
padding-top: 23px;
vertical-align: middle;
width: 330px
}
.master-header .master-search {
padding-top: 27px;
width: 558px
}
.master-header .master-search .search-select {
background: #e43c3f;
color: #fff;
cursor: pointer;
font-size: 14px;
font-weight: 700;
height: 36px;
line-height: 36px;
position: relative;
text-indent: 1em;
width: 105px
}
.master-header .master-search b {
background-position: -60px 0;
height: 4px;
position: absolute;
right: 16px;
top: 16px;
width: 7px
}
.master-header .master-search .search-select-pop {
background: #fff;
border: 1px solid #e43c3f;
left: 0;
overflow: hidden;
position: absolute;
top: 35px;
width: 103px
}
.master-header .master-search .search-select-list {
margin-top: -1px
}
.master-header .master-search .search-select-list li {
float: left;
height: 27px;
text-align: left
}
.master-header .master-search .search-select-list a {
border-top: 1px dashed #e7e7e7;
color: #e43c3f;
display: block;
height: 26px;
line-height: 26px;
text-align: left;
text-decoration: none;
text-indent: 1em;
width: 103px
}
.master-header .master-search .search-select-list a:hover {
background: #e43c3f;
border-top: 1px solid #e43c3f;
color: #fff
}
.master-header .master-search .master-search-input {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: #e43c3f -moz-use-text-color #e43c3f #e43c3f;
border-image: none;
border-style: solid none solid solid;
border-width: 2px 0 2px 2px;
color: #b3b3b3;
font-size: 14px;
height: 36px;
padding: 8px;
width: 396px
}
.master-header .master-search .master-search-btn {
background: #e43c3f;
border: 0;
color: #fff;
cursor: pointer;
font-size: 14px;
font-weight: 700;
height: 36px;
line-height: 36px;
text-align: center;
width: 80px
}
.master-header .master-search .master-search-adv {
display: block;
height: 28px;
line-height: 14px;
padding: 4px 0 0 12px;
font-size: 12px;
color: #999;
}
.master-header .master-search-keywords {
color: #999;
line-height: 14px;
overflow: hidden;
padding-top: 6px;
font-size: 14px;
}
.master-header .master-search-keywords a {
color: #999;
margin: 0 6px;
}
.master-header .master-search-keywords a span {
font-size: 12px;
}
.master-header .master-search-keywords a:hover {
color: #ff4848
}
.master-header .master-user {
padding-top: 31px;
width: 272px
}
.master-header .master-user-my {
position: relative;
z-index: 1
}
.master-header .master-user-box b {
background-position: -74px 0;
height: 21px;
left: 12px;
position: absolute;
top: 4px;
width: 22px
}
.master-header .master-user-box .master-user-pop b, .master-header .master-user-box .master-user-pop s {
background: 0 0;
height: auto;
left: auto;
position: static;
top: auto;
width: auto
}
.master-header .master-user-box s {
background-position: -179px 0;
height: 10px;
position: absolute;
right: 19px;
top: 10px;
width: 13px
}
.master-header .master-user-box a {
font-size: 14px;
}
.master-header .over s {
background-position: -196px 0
}
.master-header .master-user-my .over b {
background-position: -98px 0
}
.master-header .master-user-sc .master-user-box b {
background-position: -124px 0
}
.master-header .master-user-sc .over b {
background-position: -149px 0
}
.master-header .master-user-box {
background: #f7f7f7;
border: 1px solid #efefef;
height: 28px;
position: relative;
text-align: center;
width: 131px;
z-index: 2
}
.master-header .master-user-btn {
color: #666;
line-height: 28px
}
.master-header .outline {
background: #fff;
border: 1px solid #e8e8e8;
box-shadow: 0 0 4px rgba(0, 0, 0, .12);
display: none;
height: 32px;
left: 0;
position: absolute;
top: 0;
width: 129px;
z-index: -1
}
.master-header .topline {
background: #e4393c;
display: none;
font-size: 0;
height: 3px;
left: 0;
line-height: 0;
position: absolute;
top: -3px;
width: 131px
}
.master-header .overlayout {
background: #fff;
display: none;
font-size: 0;
height: 4px;
left: 1px;
line-height: 0;
position: absolute;
top: 29px;
width: 129px;
z-index: 11
}
.master-header .over .master-user-btn {
color: #e4393c;
font-weight: 700
}
.master-header .master-user-pop {
background: #fff;
border: 1px solid #e8e8e8;
box-shadow: 0 0 4px rgba(0, 0, 0, .12);
display: none;
overflow: hidden;
position: absolute;
right: 0;
top: 32px;
width: 296px;
z-index: 10
}
.master-header .over .master-user-pop, .master-header .over .outline, .master-header .over .overlayout, .master-header .over .topline {
display: block
}
.master-header .master-user-box .master-cartnum-pop {
background-position: -222px 0;
color: #fff;
height: 24px;
left: 28px;
line-height: 18px;
position: absolute;
text-indent: -4px;
top: -16px;
width: 30px
}
.master-header .master-user-sc-pop .master-user-carttotal {
height: 68px;
overflow: hidden;
padding-right: 25px;
text-align: right
}
.master-header .master-user-sc-pop .master-user-carttotal .total-num {
padding: 2px 0
}
.master-header .master-user-sc-pop .master-user-carttotal .total-num s {
color: #e4393c;
font-weight: 700;
margin: 0 6px;
text-decoration: none
}
.master-header .master-user-sc-pop .master-user-carttotal .total-num b {
color: #e4393c;
font-family: "Microsoft Yahei";
font-size: 20px;
font-weight: 700
}
/* .master-header .master-user-sc-pop .master-user-carttotal .total-active .total-active-btn, .top-nav .mobile-code-item a {
background: url(http://static.winxuancdn.com/css/v2/images/common-btn.png?20170907) no-repeat
} */
.master-header .master-user-sc-pop .master-user-carttotal .total-active .total-active-btn {
background-position: -122px -316px;
color: #fff;
display: inline-block;
height: 31px;
line-height: 31px;
text-align: center;
width: 123px
}
.master-header .user-hot h6 {
background: #f3f3f3;
border-left: 3px solid #e4393c;
font-weight: 400;
height: 20px;
line-height: 20px;
padding-left: 6px;
text-align: left
}
.master-header .user-hot .user-hot-list {
padding: 3px 0
}
.master-header .user-hot .user-hot-list li {
background-position: 12px -134px;
height: 25px;
line-height: 25px;
padding-left: 30px;
text-align: left
}
.master-header .user-hot .user-hot-list li b {
color: #e4393c;
font-weight: 400
}
.master-header .master-user-sc-pop .no-goods .no-goods-main {
line-height: 18px;
padding: 26px 0 26px 100px;
position: relative;
text-align: left
}
.master-header .master-user-sc-pop .no-goods .no-goods-main b {
background-position: -254px -33px;
height: 51px;
left: 40px;
position: absolute;
top: 18px;
width: 51px
}
/* logo区end */
.col-user-sc .title {
background: #fff;
border: 0;
height: auto;
padding-top: 6px
}
.col-user-sc .tab {
border-left: 0 none;
border-right: 0 none;
padding-left: 14px
}
.col-user-sc .tab-item {
background: #ededed;
margin-right: 12px;
width: 126px
}
.col-user-sc .current {
background: #fff
}
.col-user-sc .cont {
border: 0
}
.col-user-sc .list-base-1 {
max-height: 380px;
overflow-y: auto
}
.cell-style-cart {
height: 57px;
overflow: hidden;
padding: 9px 0 9px 3px;
text-align: left;
width: 264px
}
.cell-style-cart .img {
border: 1px solid #ddd;
height: 55px;
padding: 0;
width: 55px
}
.cell-style-cart .name {
float: left;
padding-left: 6px;
width: 110px
}
.cell-style-cart .price-n {
float: left;
font-family: "Microsoft Yahei";
height: 40px;
line-height: 18px;
overflow: hidden;
padding-top: 8px;
text-align: right;
width: 90px
}
.cell-style-cart .price-n b {
display: block;
font-size: 15px
}
.cell-style-cart .price-n .sale-num {
display: inline-block
}
.head .list {
overflow: visible!important
}
.customerUpdatePwd {
background-color: #FFFCC8;
border: 1px solid #ECD573;
border-radius: 3px;
line-height: 24px;
margin: 10px auto 0;
text-align: center;
width: 990px;
color: #000
}
.customerUpdatePwd a {
color: #F45A23
}
.top_mobileTips {
padding: 30px 0;
height: 42px;
text-align: center;
background: #FF7F00;
color: #fff;
font-size: 22px
}
.top_mobileTips .version {
color: #FFFD03
}
.top_mobileTips .download {
display: inline-block;
margin: 0 50px;
background: #2F3737;
color: #fff;
font-weight: 700;
padding: 10px 30px
}
.top_mobileTips .download:hover {
text-decoration: none
}
.temp_ads_index {
height: 60px;
min-width: 1210px;
overflow: hidden
}
.temp_ads_index a {
background-position: center center;
background-repeat: no-repeat;
display: block;
height: 60px;
width: 100%
}
.site_notice {
background: #f1f1f1;
color: #999;
height: 25px;
line-height: 25px;
text-align: center
}
.site_notice span {
color: #c91518
}
.top-nav-fixed {
width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 99999
}
.search-fixed .head-content {
background: #FFF;
box-shadow: 0 0 6px 0 #CCC;
height: 63px;
position: fixed;
width: 2000px;
z-index: 99998;
transition: top .3s ease-out 0s
}
.search-fixed .head-content .master-header {
height: 63px
}
.search-fixed .master-header .master-logo {
padding-top: 8px;
width: 349px
}
.search-fixed .master-header .master-search {
padding-top: 11px;
width: 750px
}
.search-fixed .master-header .master-search-adv, .search-fixed .master-header .master-search-keywords, .search-fixed .master-header .master-user {
display: none
}
.search-fixed .master-header .master-search .master-search-input {
border: 4px solid #E4393C;
color: #B2B2B2;
font-size: 14px;
height: 16px;
line-height: 16px;
outline: 0;
padding: 8px;
width: 644px
}
.search-fixed .master-header .master-search .master-search-btn {
background: #E4393C;
color: #FFF;
cursor: pointer;
font-size: 14px;
font-weight: 700;
height: 40px;
line-height: 40px;
text-align: center;
width: 82px
}
.master-nav-wrap {
background: #e4393c;
height: 40px;
min-width: 1210px
}
.master-nav {
background: #e4393c;
height: 40px;
line-height: 40px
}
.master-nav .interaction-menu {
height: 40px;
position: relative;
width: 210px;
z-index: 10
}
.master-nav .interaction-menu h2 a, .master-nav .interaction-menu h2 span {
background: #c91518;
color: #fff;
display: block;
font-family: "Microsoft Yahei";
font-size: 14px;
font-weight: 700;
text-align: left;
text-indent: 22px;
width: 210px
}
.master-nav .interaction-menu h2 b {
background-position: -181px -3px;
font-size: 0;
height: 5px;
line-height: 0;
position: absolute;
right: 12px;
top: 18px;
width: 9px
}
.master-nav .master-nav-list li {
float: left
}
.master-nav .master-nav-list li a {
color: #fff;
display: inline-block;
font-family: "Microsoft Yahei";
font-size: 14px;
font-weight: 700;
padding: 0 24px;
text-decoration: none
}
.master-nav .master-nav-list li a:hover {
background: #a40000
}
.master-menu-pop {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background: #fafafa;
border-color: -moz-use-text-color #c91518 #c91518;
border-image: none;
border-style: none solid solid;
border-width: 0 2px 2px;
padding-top: 2px;
position: absolute;
top: 40px;
width: 206px;
z-index: 3
}
.master-menu-pop .item {
border-bottom: 1px dotted #d6d6d6;
height: 53px;
margin: 0 6px;
overflow: hidden;
position: relative
}
.master-menu-pop .item .item-title {
overflow: hidden
}
.master-menu-pop .item .item-title b {
background-position: -330px 0;
font-size: 0;
height: 9px;
line-height: 0;
position: absolute;
right: 8px;
top: 11px;
width: 5px
}
.master-menu-pop .item h3 {
height: 24px;
line-height: 24px;
padding: 4px 0 0 2px
}
.master-menu-pop .item h3 a {
color: #333;
font-size: 12px;
font-weight: 700
}
.master-menu-pop .item .item-title-class {
height: 13px;
margin: 4px 0 4px -6px;
overflow: hidden
}
.master-menu-pop .item .item-title-class a {
border-left: 1px solid #d6d6d6;
display: block;
float: left;
height: 13px;
line-height: 14px;
padding: 0 8px
}
.interaction-menu .item-pop {
border: 1px solid #d5d5d5;
box-shadow: 0 0 4px rgba(0, 0, 0, .12);
left: 210px;
position: absolute;
top: -1px;
width: 361px;
z-index: 2
}
.master-menu-pop .over {
overflow: visible
}
.master-menu-pop .over .item-title {
background: #fff;
border: 1px solid #d5d5d5;
box-shadow: 0 0 4px rgba(0, 0, 0, .12);
height: 53px;
left: -5px;
padding-left: 4px;
position: absolute;
top: -1px;
width: 202px
}
.master-menu-pop .over .item-title b {
right: 16px
}
.master-menu-pop .over h3 a {
color: #c91518;
font-size: 14px
}
.interaction-menu .item-pop .base-nav {
background: #fff;
overflow: hidden;
padding: 12px 18px
}
.interaction-menu .item-pop .base-nav a {
border-right: 1px solid #d6d6d6;
display: inline-block;
float: left;
height: 14px;
line-height: 14px;
margin: 8px 0;
padding: 0 8px;
white-space: nowrap
}
.master-menu-pop .over .overlayout {
background: #fff;
height: 53px;
left: 200px;
position: absolute;
width: 8px;
z-index: 101
}
.master-menu-pop .item-all {
border-bottom: 0 none;
color: #c91518;
height: 29px;
line-height: 29px
}
.master-menu-pop .item-all a {
color: #c91518
}
.slave-nav-wrap {
background: #f7f7f7;
border-bottom: 1px solid #e8e8e8
}
.slave-nav {
background: #f7f7f7;
height: 30px;
overflow: hidden
}
.slave-nav .slave-nav-list li {
float: left;
padding-top: 6px
}
.slave-nav .slave-nav-list li a {
border-left: 1px solid #ebebeb;
font-family: "Microsoft Yahei";
font-size: 14px;
height: 16px;
line-height: 16px;
padding: 0 18px
}
.mod-venuebread {
height: 34px;
line-height: 34px;
color: #666;
overflow: hidden
}
.mod-venuebread div {
margin-left: -18px;
position: relative
}
.mod-venuebread div a {
color: #666;
padding: 0 6px;
margin: 0 8px
}
.mod-venuebread div a:first-child {
font-size: 18px;
font-weight: 700;
font-family: "Microsoft Yahei"
}
.mod-venueslider {
overflow: hidden
}
.mod-venueslider .col-venueslider {
height: 334px;
position: relative;
overflow: hidden;
border-top: 1px solid #edecec;
border-bottom: 1px solid #edecec
}
.mod-venueslider .tab-cont {
height: 334px;
text-align: center
}
.mod-venueslider .tab-cont img {
display: inline;
position: relative
}
.mod-venueslider .tab {
position: absolute;
right: 8px;
bottom: 12px
}
.mod-venueslider .tab .tab-item {
float: left;
width: 20px;
height: 20px;
line-height: 20px;
margin-right: 8px;
border-radius: 10px;
background: #000;
color: #fff;
text-align: center;
font-size: 14px;
cursor: pointer
}
.mod-venueslider .tab .current {
background: #db2a41
}
.mod-specialrecommend {
width: 1210px;
margin: auto auto 10px
}
.mod-specialrecommend .col-indexbig>.attach {
position: absolute;
top: 18px;
right: 0
}
.mod-specialrecommend .col-indexbig>.title {
width: 990px
}
/* * html .mod-specialrecommend .col-indexbig .title .title {
width: auto!important
}
* html .mod-specialrecommend .col-indexbig .attach {
position: absolute;
top: 18px;
right: 0
} */
/* .mod-mainmenu {
position: relative
} */
.mod-mainmenu .col-mainmenu {
width: 210px;
/* position: absolute;
top: -480px;
left: 0; */
z-index: 100
}
.mod-mainmenu .col-mainmenu .cont {
border: 2px solid #c91518;
border-top: 0 none;
height: 926px;
overflow: hidden;
background: #fff;
padding-top: 5px;
font-size: 12px;
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu {
zoom: 1;
margin: auto 6px;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAASSURBVBhXY7h27dp/EIaA//8BewsO+814adIAAAAASUVORK5CYII=) left bottom repeat-x;
padding-bottom: 6px;
padding-top: 5px
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu:after, .mod-mainmenu .col-mainmenu .cont .list-mainmenu:before {
content: '';
display: table
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu:after {
clear: both
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu dt {
height: 24px;
line-height: 24px;
overflow: hidden
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu dt a {
color: #000;
font-weight: 700;
display: inline-block;
text-decoration: none
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu dt a:hover {
color: #db2a41
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu dd {
height: 20px;
line-height: 20px;
float: left;
white-space: nowrap;
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu dd a {
color: #666;
display: inline-block;
vertical-align: middle;
white-space: nowrap
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu dd a:hover {
color: #db2a41
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu dd b {
width: 1px;
height: 12px;
margin: 0 8px;
background: #d6d6d6;
display: inline-block;
vertical-align: middle
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu-sg {
padding: 0
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu-sg dt {
height: 26px;
line-height: 26px
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu-last dt {
text-align: center
}
.mod-mainmenu .col-mainmenu .cont .list-mainmenu-last dt a {
color: #db2a41;
font-weight: 400
}
.mod-focus {
margin-bottom: 10px;
}
/* 详情页 */
/* .xiangqing{
height: 1300px;
} */
.xiangqing1{
width: 650px;
padding:0 20px;
color:#333;
font-size:14px;
}
.xiangqing1 h2{
color:black;
font-size:20px;
font-weight: 900;
margin-bottom:20px;
}
.xiangqing1 p{
font-size:16px;
color:red;
}
.xiangqing1 span,del{
display: inline-block;
width: 80px;
height: 40px;
line-height: 40px;
text-align: right;
font-size:14px;
color:#666;
}
.xiangqing1 .tehui{
color:#db2a41;
width:300px;
text-align:left;
padding-left:10px;
}
.xiangqing1 .newp{
font-size:22px;
font-weight: 900;
color:#db2a41;
}
.xiangqing1 form{
padding-top:5px;
padding-bottom:15px;
}
.xiangqing1 .jia,.jian{
width: 20px;
height: 20px;
border:1px solid #ccc;
background:#f3f3f3;
color:#666;
}
.xiangqing1 .liang{
width: 40px;
height: 20px;
text-align:center;
border:1px solid #ccc;
}
.xiangqing1 div{
width: 150px;
height: 50px;
line-height: 50px;
background:#db2a41;
color:#fff;
text-align:center;
border-radius:10px;
margin-left:10px;
}
.xiangqing1 div img{
border-radius:5px;
margin:0 5px;
}
.xiangqing1 .fuwu{
width: 400px;
font-size:14px;
padding-top:20px;
}
.nav{
margin-bottom: 30px;
}
/* 放大镜 */
.xiangqingbox{
width: 300px;
position: relative;
margin-left: 250px;
border:1px solid #ccc;
float: right;
}
.xiangqingbox img{
width: 300px;
height: 300px;
display: inline-block;
}
.tese{
width: 968px;
}
.tese_top{
height: 60px;
line-height: 60px;
border-bottom:2px solid #b3b3b3;
}
.tese_top div{
font-size:18px;
margin-left:5px;
margin-right:100px;
}
.tese_top img{
margin:16px 5px 0 5px;
}
.tese_l{
width: 968px;
margin-bottom:20px;
}
.jujiao_book{
width: 242px;
border:1px #f3f3f3 solid;
text-align: center;
padding:15px;
font-size:12px;
color:#666666;
position: relative;
}
.jujiao_book img{
width: 220px;
height: 180px;
}
.jujiao_book p{
float: left;
font-size:14px;
color:#E4393C;
height: 40px;
line-height: 40px;
}
.jujiao_book del{
float: right;
font-size:12px;
color:#999;
}
.jujiao_book .book_j{
padding-top:10px;
}
/* 购物车划出 */
.carcontent{
width: 260px;
border:1px solid #ccc;
position: absolute;
left:-130px;
top:30px;
background:#fff;
padding:20px 10px;
display: none;
}
.carcontent .no-goods-main{
font-size:14px;
color:#666;
margin:0 auto;
}
.carcontent .goods-main1{
height: 70px;
width: 230px;
margin-bottom:10px;
}
.carcontent .goods-main img{
width: 80px;
height: 60px;
float: left;
}
.carcontent .goods-main div{
float: left;
font-size:12px;
color:#666;
}
.carcontent .goods-main .m1{
width: 100px;
}
.carcontent .goods-main p{
color:#E4393C;
font-weight: 900;
}
.carcontent .goods-main span{
color:#666;
font-size:12px;
}
.master-user-box:hover .carcontent{
display: block;
}
/* 底部 */
.main-copyright{
padding:50px 0;
text-align: center;
font-size:14px;
color:#666;
}
.main-copyright a{
font-size:14px;
color:#666;
}
.base-nav{
height: 40px;
line-height: 40px;
} | 0.52902 | 0.073264 |
*{
box-sizing: border-box;
}
html{
/* image from unsplash.com author <NAME> @picoftasty */
background: center no-repeat url(https://images.unsplash.com/photo-1552247064-3c20191acba6?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=1080&fit=max&ixid=eyJhcHBfaWQiOjF9);
/* background-size: 100% 100%; */
background-size: cover;
/* height: 300vh; */
background-attachment: fixed;
color: rgb(1, 48, 48);
/* opacity: 0.8; */
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
header {
grid-area: header;
}
.hero{
grid-area: hero;
}
.advert{
grid-area: advert;
}
.body{
grid-area: body;
}
.sidebar{
background: lightgoldenrodyellow;
grid-area: sidebar;
}
.footer{
background: lightgray;
grid-area: footer;
}
.wrapper{
display: grid;
/* grid-template-columns: repeat(7, 1fr); */
grid-template-columns: 1fr;
width: 100%;
margin: 0 auto;
min-width: 320px;
max-width: 414px;
font-size: 1em;
min-height: 300px;
grid-gap: 0.5em;
/* grid-auto-rows: minmax(100px, auto); */
grid-template-rows: 1fr auto auto auto 30px;
grid-template-areas:
"header"
"hero"
"advert"
"body"
/* "sidebar" */
"footer";
}
.header{
display: grid;
grid-gap:0.5em;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr auto;
grid-template-areas:
"brand brand"
"navigation tools";
}
.header1{
background: lightpink;
grid-area: brand;
}
.header2{
background: lightpink;
grid-area: navigation;
}
.header3{
background: pink;
grid-area: tools;
}
.logo-img{
width:8rem;
height: auto;
display: block;
margin: 0 auto;
}
.nav{
display: flex;
justify-content: space-between;
margin-right: 0.5em;
list-style-type: none;
}
.nav-li:hover {
background-color: rgb(138, 96, 96);
color: white;
cursor: pointer;
}
.header3{
display: flex;
justify-content: center;
}
.header3 input[type=text]{
width: auto;
padding: 6px;
margin-top: 8px;
font-size: 17px;
border: none;
}
/* button {
background-color: rgb(241, 148, 203);
color: white;
padding: 10px 25px;
text-align: center;
text-decoration: none;
font-size: 16px;
cursor: pointer;
} */
.header2 .header3{
display: flex;
flex-wrap: wrap;
overflow: hidden;
}
.hero{
display: grid;
grid-gap:0.5em;
grid-template-columns: 1fr;
grid-template-rows: 5fr;
background: #f1e0fa;
grid-template-areas:
"call";
}
.hero1{
grid-area: feature;
}
.hero2{
grid-area: call;
}
.hero1{
display: none;
}
.advert{
display: none;
}
.strawberry-cake{
/* width: 320px; */
width: 100%;
object-fit: cover;
height: auto;
display: block;
margin: auto;
}
.MC-img{
width: 100%;
height: 90px;
display: block;
margin: 0 auto;
}
.body{
display: grid;
grid-gap:0.5em;
grid-template-columns: 1fr;
grid-template-rows: 110px auto auto;
grid-template-areas:
"body1"
"body2"
"body3";
}
.body1{
background: lightgreen;
grid-area: body1;
}
.body2{
background: lightgreen;
grid-area: body2;
}
.body3{
background: lightskyblue;
grid-area: body3;
}
ul> li{
cursor: pointer;
display: inline;
list-style-type: none;
}
h2{
text-align: center;
}
ol{
list-style-position: inside;
}
li:hover{
background: whitesmoke;
}
.button-enrool{
text-align: center;
color: aliceblue;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 1em;
font-style: oblique;
}
button {
width: 10rem;
border-radius: 20px;
padding: 0.5rem 1rem;
font-size: 1.3em;
}
button:hover{
background-color: #d2b8df;
border-color: #a992af;
border-width: 5px;
cursor: pointer;
}
.body{
text-align: center;
}
.sidebar{
display: none;
}
.footer{
text-align: center;
padding: 0.5em;
}
/* Med devices (desktops, 768px and up) */
@media (min-width: 768px) {
.wrapper{
grid-template-columns: auto;
width: 100%;
margin: 0 auto;
min-width: 768px;
max-width: 1024px;
grid-gap: 0.5em;
/* grid-template-rows: auto auto auto auto 50px; */
grid-template-areas:
"header"
"hero"
"advert"
"body"
"sidebar"
"footer";
}
.header{
grid-gap:0.5em;
grid-template-columns: auto;
grid-template-rows: auto auto 1fr;
grid-template-areas:
"brand navigation tools";
}
.header2{
padding-top: 40px;
}
.header3{
align-items: center;
}
.advert{
display: none;
}
.hero{
grid-gap:1em;
grid-template-columns: 1fr;
grid-template-rows: auto auto;
grid-template-areas:
"feature"
"call";
}
.hero1{
display: contents;
text-align: center;
}
.strawberry-cake{
width: 100%;
height: auto;
}
.body{
grid-gap:1em;
grid-template-columns: auto auto;
grid-template-rows: 110px auto;
grid-template-areas:
"body1 body2"
"body3 body3";
}
.MC-img{
width: 100%;
height: 110px;
}
.sidebar{
grid-gap:0.5em;
grid-template-columns: auto;
grid-template-rows: auto;
grid-template-areas:
"sidebar";
}
.sidebar{
display: contents;
}
.sidebar> p {
background-color: #e4d5e7;
text-align: center;
padding: 1em;
}
}
/* Extra Large devices (desktops, 992px and up) */
@media (min-width: 1200px) {
.wrapper{
font-weight: 700;
font-size: 2em;
/* grid-template-columns: auto 200px; */
grid-template-columns: 70% 30%;
width: 100%;
margin: 0 auto;
max-width: 2560px;
grid-gap: 0.5em;
/* grid-template-rows: auto auto auto 50px; */
/* grid-template-rows: 20% 30% 30% 20%; */
grid-template-areas:
"header header"
"hero advert"
"body sidebar"
"footer footer";
}
/* .header{
grid-gap:0.5em;
grid-template-columns: auto auto auto;
grid-template-rows: auto;
grid-template-areas:
"brand navigation tools";
}
.header2{
padding-top: 40px;
}
.header3{
align-items: center;
}
.header{
grid-column: 1 / span 3;
grid-row: 1/ span 1;
}
.hero{
grid-gap:1em;
grid-template-columns: 1fr auto;
grid-template-rows: auto;
grid-template-areas:
"feature call";
}
.hero{
grid-column: 1 / span 1;
grid-row: 2/ span 2;
} */
.advert{
grid-area: advert;
}
.advert{
display: contents;
display: block;
}
.advert{
/* image source unsplash.com author Curology Custom skincare */
background: center no-repeat url(https://images.unsplash.com/photo-1556228720-195a672e8a03?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=1080&fit=max&ixid=eyJhcHBfaWQiOjF9);
background-size: cover;
}
.body2{
display: none;
}
.body{
grid-column: 1 / span 2;
grid-row: 3 / 3;
}
.body1{
grid-column: 1 / span 1;
grid-row: 3 / 3;
}
.body3{
grid-column: 2 / span 2;
grid-row: 3 / 3;
}
.body{
grid-gap: 0.5em;
grid-template-columns: 30% 62%;
grid-template-rows: auto;
grid-template-areas:
"body1 body3";
}
button {
width: 17rem;
border-radius: 22px;
padding: 0.7rem 1.2rem;
font-size: 1.5em;
}
.sidebar{
display: block;
width: 100%;
margin-top: 1em;
background: #e4d5e7;
}
} | styles/style.css | *{
box-sizing: border-box;
}
html{
/* image from unsplash.com author <NAME> @picoftasty */
background: center no-repeat url(https://images.unsplash.com/photo-1552247064-3c20191acba6?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=1080&fit=max&ixid=eyJhcHBfaWQiOjF9);
/* background-size: 100% 100%; */
background-size: cover;
/* height: 300vh; */
background-attachment: fixed;
color: rgb(1, 48, 48);
/* opacity: 0.8; */
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
header {
grid-area: header;
}
.hero{
grid-area: hero;
}
.advert{
grid-area: advert;
}
.body{
grid-area: body;
}
.sidebar{
background: lightgoldenrodyellow;
grid-area: sidebar;
}
.footer{
background: lightgray;
grid-area: footer;
}
.wrapper{
display: grid;
/* grid-template-columns: repeat(7, 1fr); */
grid-template-columns: 1fr;
width: 100%;
margin: 0 auto;
min-width: 320px;
max-width: 414px;
font-size: 1em;
min-height: 300px;
grid-gap: 0.5em;
/* grid-auto-rows: minmax(100px, auto); */
grid-template-rows: 1fr auto auto auto 30px;
grid-template-areas:
"header"
"hero"
"advert"
"body"
/* "sidebar" */
"footer";
}
.header{
display: grid;
grid-gap:0.5em;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr auto;
grid-template-areas:
"brand brand"
"navigation tools";
}
.header1{
background: lightpink;
grid-area: brand;
}
.header2{
background: lightpink;
grid-area: navigation;
}
.header3{
background: pink;
grid-area: tools;
}
.logo-img{
width:8rem;
height: auto;
display: block;
margin: 0 auto;
}
.nav{
display: flex;
justify-content: space-between;
margin-right: 0.5em;
list-style-type: none;
}
.nav-li:hover {
background-color: rgb(138, 96, 96);
color: white;
cursor: pointer;
}
.header3{
display: flex;
justify-content: center;
}
.header3 input[type=text]{
width: auto;
padding: 6px;
margin-top: 8px;
font-size: 17px;
border: none;
}
/* button {
background-color: rgb(241, 148, 203);
color: white;
padding: 10px 25px;
text-align: center;
text-decoration: none;
font-size: 16px;
cursor: pointer;
} */
.header2 .header3{
display: flex;
flex-wrap: wrap;
overflow: hidden;
}
.hero{
display: grid;
grid-gap:0.5em;
grid-template-columns: 1fr;
grid-template-rows: 5fr;
background: #f1e0fa;
grid-template-areas:
"call";
}
.hero1{
grid-area: feature;
}
.hero2{
grid-area: call;
}
.hero1{
display: none;
}
.advert{
display: none;
}
.strawberry-cake{
/* width: 320px; */
width: 100%;
object-fit: cover;
height: auto;
display: block;
margin: auto;
}
.MC-img{
width: 100%;
height: 90px;
display: block;
margin: 0 auto;
}
.body{
display: grid;
grid-gap:0.5em;
grid-template-columns: 1fr;
grid-template-rows: 110px auto auto;
grid-template-areas:
"body1"
"body2"
"body3";
}
.body1{
background: lightgreen;
grid-area: body1;
}
.body2{
background: lightgreen;
grid-area: body2;
}
.body3{
background: lightskyblue;
grid-area: body3;
}
ul> li{
cursor: pointer;
display: inline;
list-style-type: none;
}
h2{
text-align: center;
}
ol{
list-style-position: inside;
}
li:hover{
background: whitesmoke;
}
.button-enrool{
text-align: center;
color: aliceblue;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 1em;
font-style: oblique;
}
button {
width: 10rem;
border-radius: 20px;
padding: 0.5rem 1rem;
font-size: 1.3em;
}
button:hover{
background-color: #d2b8df;
border-color: #a992af;
border-width: 5px;
cursor: pointer;
}
.body{
text-align: center;
}
.sidebar{
display: none;
}
.footer{
text-align: center;
padding: 0.5em;
}
/* Med devices (desktops, 768px and up) */
@media (min-width: 768px) {
.wrapper{
grid-template-columns: auto;
width: 100%;
margin: 0 auto;
min-width: 768px;
max-width: 1024px;
grid-gap: 0.5em;
/* grid-template-rows: auto auto auto auto 50px; */
grid-template-areas:
"header"
"hero"
"advert"
"body"
"sidebar"
"footer";
}
.header{
grid-gap:0.5em;
grid-template-columns: auto;
grid-template-rows: auto auto 1fr;
grid-template-areas:
"brand navigation tools";
}
.header2{
padding-top: 40px;
}
.header3{
align-items: center;
}
.advert{
display: none;
}
.hero{
grid-gap:1em;
grid-template-columns: 1fr;
grid-template-rows: auto auto;
grid-template-areas:
"feature"
"call";
}
.hero1{
display: contents;
text-align: center;
}
.strawberry-cake{
width: 100%;
height: auto;
}
.body{
grid-gap:1em;
grid-template-columns: auto auto;
grid-template-rows: 110px auto;
grid-template-areas:
"body1 body2"
"body3 body3";
}
.MC-img{
width: 100%;
height: 110px;
}
.sidebar{
grid-gap:0.5em;
grid-template-columns: auto;
grid-template-rows: auto;
grid-template-areas:
"sidebar";
}
.sidebar{
display: contents;
}
.sidebar> p {
background-color: #e4d5e7;
text-align: center;
padding: 1em;
}
}
/* Extra Large devices (desktops, 992px and up) */
@media (min-width: 1200px) {
.wrapper{
font-weight: 700;
font-size: 2em;
/* grid-template-columns: auto 200px; */
grid-template-columns: 70% 30%;
width: 100%;
margin: 0 auto;
max-width: 2560px;
grid-gap: 0.5em;
/* grid-template-rows: auto auto auto 50px; */
/* grid-template-rows: 20% 30% 30% 20%; */
grid-template-areas:
"header header"
"hero advert"
"body sidebar"
"footer footer";
}
/* .header{
grid-gap:0.5em;
grid-template-columns: auto auto auto;
grid-template-rows: auto;
grid-template-areas:
"brand navigation tools";
}
.header2{
padding-top: 40px;
}
.header3{
align-items: center;
}
.header{
grid-column: 1 / span 3;
grid-row: 1/ span 1;
}
.hero{
grid-gap:1em;
grid-template-columns: 1fr auto;
grid-template-rows: auto;
grid-template-areas:
"feature call";
}
.hero{
grid-column: 1 / span 1;
grid-row: 2/ span 2;
} */
.advert{
grid-area: advert;
}
.advert{
display: contents;
display: block;
}
.advert{
/* image source unsplash.com author Curology Custom skincare */
background: center no-repeat url(https://images.unsplash.com/photo-1556228720-195a672e8a03?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=1080&fit=max&ixid=eyJhcHBfaWQiOjF9);
background-size: cover;
}
.body2{
display: none;
}
.body{
grid-column: 1 / span 2;
grid-row: 3 / 3;
}
.body1{
grid-column: 1 / span 1;
grid-row: 3 / 3;
}
.body3{
grid-column: 2 / span 2;
grid-row: 3 / 3;
}
.body{
grid-gap: 0.5em;
grid-template-columns: 30% 62%;
grid-template-rows: auto;
grid-template-areas:
"body1 body3";
}
button {
width: 17rem;
border-radius: 22px;
padding: 0.7rem 1.2rem;
font-size: 1.5em;
}
.sidebar{
display: block;
width: 100%;
margin-top: 1em;
background: #e4d5e7;
}
} | 0.523177 | 0.109801 |
@media only screen and (max-width: 767px) {
body {
font-size: 14px;
}
h1 {
font-size: 35px;
}
h2 {
font-size: 28px;
}
h3 {
font-weight: 600;
font-size: 19px;
}
h4 {
font-size: 17px;
}
.ptb-50 {
padding-top: 25px;
padding-bottom: 25px;
}
.ptb-100 {
padding-top: 50px;
padding-bottom: 50px;
}
.pt-100 {
padding-top: 50px;
}
.pb-100 {
padding-bottom: 50px;
}
.ptb-70 {
padding-top: 20px;
padding-bottom: 20px;
}
.pt-70 {
padding-top: 20px;
}
.pb-70 {
padding-bottom: 20px;
}
.no-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
p {
font-size: 14px;
}
.btn-primary,
.btn-secondary {
padding: 10px 20px;
font-size: 14px;
}
/*section-title*/
.section-title {
max-width: 100%;
text-align: center;
margin-bottom: 40px;
}
.section-title::before {
content: unset;
}
.section-title h2 {
font-size: 28px;
padding: unset;
margin-top: -5px;
margin-bottom: 10px;
}
.section-title p {
font-size: 14px;
}
.header-area .top-header-area {
padding: 15px 0;
}
.header-area .top-header-area .contact-info {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-bottom: 13px;
margin-top: -3px;
display: none;
}
.header-area .top-header-area .contact-info .content i {
font-size: 14px;
}
.header-area .top-header-area .side-option {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.header-area .top-header-area .side-option .item {
margin-left: 0;
margin-right: 6px;
padding: 0;
}
.header-area .top-header-area .side-option .item .btn-search {
padding: 6px 12px;
}
.header-area .top-header-area .side-option .btn-secondary {
padding: 7px 12px;
font-size: 12px;
}
.search-box {
max-width: 260px;
}
.home-banner-area .banner-content {
text-align: center;
margin: auto;
max-width: 512px;
}
.home-banner-area .banner-content h1 {
font-size: 30px;
margin: 15px 0;
}
.home-banner-area .banner-content p {
font-size: 14px;
margin-bottom: 20px;
}
.home-banner-area .pr-0 {
padding-right: 15px !important;
}
.home-banner-area .banner-slider {
max-width: 512px;
margin-left: auto;
margin-right: auto;
margin-top: 25px;
}
.home-banner-area .banner-slider .slider-item .content {
padding: 28px;
}
.home-banner-area .banner-slider .slider-item .content h3 {
margin-top: 10px;
}
.home-banner-area .banner-slider .slider-item .content .review {
margin-bottom: 5px;
}
.home-banner-area .banner-slider .owl-nav {
top: 15px;
left: 15px;
}
.home-banner-area .owl-dots {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-bottom: 30px;
}
.home-banner-area .owl-dots .owl-dot {
max-width: 56px;
}
.home-banner-area .owl-dots .owl-dot:last-child {
margin-right: 0;
}
.home-banner-area.ptb-70 {
padding-top: 50px;
}
.home-banner-area.home-style-two {
padding-bottom: 50px;
background: #f9f8fe;
margin-bottom: 50px;
border-bottom: 1px solid #dadada;
}
.home-banner-area.home-style-two .banner-content {
padding: 40px 15px;
}
.home-banner-area.home-style-two .bg-shape {
display: none !important;
}
.home-banner-area.home-style-two .search-form {
top: 0;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav button[class*=owl-] {
top: 25%;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav .owl-prev {
left: 15px;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav .owl-next {
right: 15px;
}
.home-banner-area.home-style-two .owl-carousel .owl-item img {
padding: 20px;
padding-bottom: 0;
}
.home-banner-area.home-style-three {
background: #ffffff;
}
.home-banner-area.home-style-three .search-form {
position: relative;
margin-left: 15px;
margin-right: 15px;
bottom: 0;
margin-top: 30px;
}
.home-banner-area.home-style-three .banner-content {
padding: 60px 0 120px;
}
.home-banner-area.home-style-three .owl-carousel .owl-nav button[class*=owl-] {
position: unset;
}
.home-banner-area.home-style-three .owl-carousel .owl-nav {
position: absolute;
bottom: 25px;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.about-section .video-content .video-image img {
height: auto;
}
.about-section .shape {
display: none;
}
.about-section.about-style-two h2 {
margin-top: -10px;
}
.about-section.about-style-three .about-content {
text-align: left;
}
.about-section.about-style-three .about-content h6 {
margin-left: 0;
}
.about-section.about-style-three .about-content .col-lg-10 {
padding-left: 0;
}
.video-section {
padding: 90px 0;
}
.video-section .video-btn {
width: 60px;
height: 60px;
}
.destination-section .item-single .content {
max-width: 100%;
left: 0;
padding: 16px 16px;
}
.home-banner-area.home-style-two .search-form .btn-search::after,
.home-banner-area.home-style-three .search-form .btn-search::after {
content: 'Search';
}
.owl-carousel .owl-nav button[class*=owl-] {
width: 30px;
height: 40px;
}
.testimonial-section .testimonial-slider {
padding-bottom: 0;
padding: 20px 15px 15px;
}
.testimonial-section .testimonial-slider .slider-item {
padding: 0;
}
.testimonial-section .testimonial-slider .slider-item .client-img {
position: unset;
}
.testimonial-section .testimonial-slider .slider-item .client-img img {
max-width: 70px;
margin: auto;
margin-bottom: 20px;
}
.testimonial-section .testimonial-slider .slider-item .content {
text-align: center;
}
.testimonial-section .testimonial-slider .slider-item .content .quote i {
right: 0;
top: 0;
font-size: 40px;
}
.testimonial-section .testimonial-slider .slider-item .content .review {
margin-top: 0;
margin-bottom: 10px;
}
.testimonial-section .testimonial-slider .slider-item .content .client-info {
margin-bottom: 15px;
}
.testimonial-section .testimonial-slider .owl-nav {
position: unset;
text-align: center;
line-height: 0;
}
.testimonial-section .testimonial-slider::after {
display: none;
}
.testimonial-section .clients-img {
display: none;
}
.tours-section .tours-slider .owl-nav {
position: unset;
text-align: center;
margin-top: 30px;
}
.tours-section .item-single .content {
padding: 8px 16px;
}
.tours-section .item-single .content h3 {
margin-top: 5px;
margin-bottom: 0px;
}
.tours-section .item-single .content .review.mb-15 {
margin-bottom: 8px;
}
.tours-section .item-single .content p {
font-style: 14px;
margin-bottom: 10px;
}
.tours-section .item-single .content .list {
margin-top: 10px;
}
.tours-section .item-single .content .list li:last-child {
font-size: 16px;
}
.tours-section .row.no-wrap .col {
padding-right: 15px;
}
.tours-section .slider-item .content .list li:last-child,
.offers-section .item-single .content .list li:last-child,
.recent-tours-section .item-single .list li:last-child {
font-size: 16px;
}
.blog-section .item-single.item-big .content {
padding: 15px 12px;
}
.blog-section .item-single.item-big .content h3 {
font-size: 18px;
}
.blog-section .item-single.item-big .content .author {
margin-bottom: 15px;
}
.blog-section .item-single.item-big .content .info-list li {
margin-right: 10px;
font-size: 12px;
}
.blog-section .item-single .content h3 {
font-size: 18px;
}
.blog-section .item-single .content .list {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.footer-area h5 {
margin-bottom: 20px;
}
.video-btn {
width: 54px;
height: 54px;
}
.video-btn i {
font-size: 20px;
}
.video-btn::after, .video-btn::before {
border-width: 1px;
}
.blog-details-section .widget-area .widget-article .article-item .content h3 {
font-size: 15px;
}
.blog-details-section .widget-area .widget-article .article-item .content .author span {
font-size: 12px;
}
.pagination {
margin-top: 10px;
}
.page-title-area .page-title-content h1 {
margin-bottom: 5px;
}
.team-section .social-link a {
margin-bottom: 8px;
}
.faq-section .panel-group .panel-title a {
padding-right: 50px;
}
.blog-section.blog-style-three .social-link {
margin-bottom: 20px;
}
.blog-style-three .widget-area .widget-article .article-item .content h3 {
font-size: 14px;
}
.blog-style-three .widget-area .widget-article .article-item .content .author span {
font-size: 12px;
}
.main-form {
padding-left: 0;
padding-right: 0;
}
.main-form form {
padding: 25px 12px;
}
.main-form .link a,
.main-form .checkbox label {
font-size: 12px;
}
.contact-section .info-content {
padding: 0 15px;
}
.contact-section .info-content .sub-title {
margin-bottom: 10px;
margin-top: -5px;
}
.terms-of-services .widget-area, .privacy-policy .widget-area {
margin-top: 30px;
}
.booking-section .booking-form .content h3 {
font-size: 22px;
}
.booking-section .booking-form {
padding: 0;
}
.booking-section .info-content {
padding: 0;
}
.error-area .error-content h3 {
font-size: 28px;
}
.coming-soon-section .coming-soon-box {
padding: 30px 12px;
}
.coming-soon-section .coming-soon-box #timer div:first-child {
margin-bottom: 15px;
}
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
.blog-section .item-single.item-big .content .info-list {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.blog-section .item-single.item-big .content .list {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.header-area .top-header-area .side-option .item {
margin: 10px;
}
.tours-section .owl-carousel .owl-stage-outer {
overflow: unset;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
body {
font-size: 15px;
}
h2 {
font-size: 35px;
}
h3 {
font-size: 18px;
}
.ptb-50 {
padding-top: 40px;
padding-bottom: 40px;
}
.ptb-100 {
padding-top: 90px;
padding-bottom: 90px;
}
.pt-100 {
padding-top: 90px;
}
.pb-100 {
padding-bottom: 90px;
}
.ptb-70 {
padding-top: 60px;
padding-bottom: 60px;
}
.pt-70 {
padding-top: 60px;
}
.pb-70 {
padding-bottom: 60px;
}
.no-wrap {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
p {
font-size: 15px;
}
.section-title h2 {
font-size: 35px;
}
.header-area .top-header-area {
padding: 15px 0;
}
.header-area .top-header-area .contact-info {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
margin-bottom: 13px;
margin-top: -3px;
}
.header-area .top-header-area .contact-info .content i {
font-size: 14px;
}
.header-area .top-header-area .side-option {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.header-area .top-header-area .side-option .item {
margin-left: 0;
margin-right: 6px;
padding: 0;
}
.header-area .top-header-area .side-option .item .btn-search {
padding: 11px 16px;
}
.header-area .top-header-area .side-option .btn-secondary {
padding: 10px 16px;
}
.home-banner-area .banner-content {
text-align: center;
margin: auto;
max-width: 696px;
}
.home-banner-area .banner-content h1 {
font-size: 45px;
}
.home-banner-area .pr-0 {
padding-right: 15px !important;
}
.home-banner-area .banner-slider {
max-width: 696px;
margin-left: auto;
margin-right: auto;
margin-top: 25px;
}
.home-banner-area .banner-slider .slider-item .content {
padding: 60px;
}
.home-banner-area .banner-slider .slider-item .content i {
vertical-align: -2px;
}
.home-banner-area .banner-slider .owl-nav {
top: 15px;
left: 15px;
}
.home-banner-area .owl-dots {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-bottom: 30px;
}
.home-banner-area .owl-dots .owl-dot:last-child {
margin-right: 0;
}
.home-banner-area.ptb-70 {
padding-top: 90px;
}
.home-banner-area.home-style-two {
padding-bottom: 50px;
}
.home-banner-area.home-style-two .banner-content {
padding: 40px 15px;
margin: auto;
}
.home-banner-area.home-style-two .banner-image {
margin: auto;
}
.home-banner-area.home-style-two .bg-shape {
display: none !important;
}
.home-banner-area.home-style-two .search-form {
top: 0;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav button[class*=owl-] {
top: 25%;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav .owl-prev {
left: 40px;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav .owl-next {
right: 40px;
}
.home-banner-area.home-style-two .owl-carousel .owl-item img {
padding: 20px;
padding-bottom: 0;
}
.home-banner-area.home-style-two .search-form {
margin-top: 60px;
}
.home-banner-area.home-style-two .search-form .btn-search::after,
.home-banner-area.home-style-three .search-form .btn-search::after {
content: 'Search';
}
.home-banner-area.home-style-three {
background: #ffffff;
}
.home-banner-area.home-style-three .search-form {
position: relative;
margin-left: 15px;
margin-right: 15px;
bottom: 0;
margin-top: 30px;
}
.home-banner-area.home-style-three .banner-content {
padding: 60px 0 145px;
}
.home-banner-area.home-style-three .owl-carousel .owl-nav button[class*=owl-] {
position: unset;
}
.home-banner-area.home-style-three .owl-carousel .owl-nav {
position: absolute;
bottom: 25px;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.home-banner-area.home-style-three .search-form {
margin-top: 60px;
}
.about-section.about-style-two h2 {
margin-top: -10px;
}
.about-section.about-style-three .about-content .content-list {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.about-section.about-style-three .about-content .content-list h6 {
max-width: unset;
margin-top: 5px;
}
.testimonial-section .testimonial-slider .slider-item {
padding-left: 30px;
}
.testimonial-section .testimonial-slider .slider-item .content .quote i {
right: 0;
top: 0;
font-size: 80px;
}
.testimonial-section .testimonial-slider .slider-item .content .review {
margin-top: 0;
margin-bottom: 10px;
}
.testimonial-section .testimonial-slider .slider-item .content .client-info {
margin-bottom: 20px;
}
.testimonial-section .clients-img .image {
max-width: 43px !important;
}
.testimonial-section .clients-img .image-1 {
top: 32%;
left: 2%;
}
.testimonial-section .clients-img .image-2 {
top: 53%;
left: 6%;
}
.testimonial-section .clients-img .image-3 {
left: 4%;
bottom: 6%;
}
.testimonial-section .clients-img .image-4 {
top: 31%;
right: 5%;
}
.testimonial-section .clients-img .image-5 {
top: unset;
right: 26%;
bottom: 5%;
}
.about-section .shape {
display: none;
}
.tours-section .tours-slider .owl-nav {
position: unset;
text-align: center;
margin-top: 30px;
}
.tours-section .row.no-wrap .col {
padding-right: 15px;
}
.tours-section .row.no-wrap .col-auto {
margin-left: auto;
margin-right: auto;
}
.blog-details-section .blog-details-desc {
padding-right: 0;
}
.destinations-details-section .destination-details-desc {
padding-right: 0;
}
.contact-section .content {
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.terms-of-services .widget-area, .privacy-policy .widget-area {
margin-top: 30px;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
body {
font-size: 15px;
}
h3 {
font-size: 18px;
}
.header-area .top-header-area {
padding: 15px 0;
}
.header-area .top-header-area .contact-info {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
.header-area .top-header-area .contact-info .content i {
font-size: 14px;
}
.header-area .top-header-area .side-option .item {
margin-left: 0;
margin-right: 6px;
padding: 0;
}
.header-area .top-header-area .side-option .item .btn-search {
padding: 11px 16px;
}
.header-area .top-header-area .side-option .btn-secondary {
padding: 10px 16px;
}
.home-banner-area .banner-content {
max-width: 452px;
}
.home-banner-area .banner-content h1 {
font-size: 50px;
}
.home-banner-area .banner-content p {
margin-bottom: 20px;
}
.home-banner-area .banner-slider .slider-item .content {
padding: 80px;
}
.home-banner-area .banner-slider .slider-item .content i {
vertical-align: -2px;
}
.home-banner-area .banner-slider .owl-nav {
top: 15px;
left: 15px;
}
.home-banner-area .owl-dots .owl-dot {
min-width: 40px;
}
.home-banner-area.home-style-two .banner-content {
padding-right: 100px;
padding-top: 100px;
padding-bottom: 160px;
}
.home-banner-area.home-style-two {
padding-bottom: 60px;
}
.home-banner-area.home-style-two .search-form {
top: -40px;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav .owl-prev {
left: 20px;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav .owl-next {
right: 20px;
}
.home-banner-area.home-style-three .banner-content {
margin: auto;
text-align: center;
max-width: 554px;
}
.home-banner-area.home-style-three .search-form {
max-width: 934px;
}
.home-banner-area.home-style-three .owl-carousel .owl-nav .owl-next {
right: 45px;
}
.home-banner-area.home-style-three .owl-carousel .owl-nav .owl-prev {
left: 45px;
}
.destination-section .item-single .content {
padding: 16px 12px;
}
.destination-section .item-single .content h3 {
font-size: 18px;
}
.about-section.about-style-three .content-list {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.about-section.about-style-three .content-list h6 {
margin-top: 5px;
}
.destination-style-two .item-single .content p {
font-size: 14px;
}
.testimonial-section .clients-img .image-1 {
left: 8%;
}
.testimonial-section .testimonial-slider .slider-item .content {
padding-left: 45px;
}
.testimonial-section .clients-img .image-4 {
right: 10%;
}
.blog-section .item-single .content {
padding: 18px 12px;
}
.blog-section .item-single .content h3 {
font-size: 16px;
}
.blog-section .item-single .info-list li {
font-size: 14px;
}
.blog-section .item-single .list li span {
font-size: 14px;
}
.blog-details-section .blog-details-desc {
padding-right: 20px;
}
.destinations-details-section .destination-details-desc {
padding-right: 20px;
}
.team-section img {
width: 100%;
}
.contact-section .content {
max-width: 360px;
margin-left: auto;
}
}
/*# sourceMappingURL=responsive.css.map */ | public/frontend/assets/css/responsive.css | @media only screen and (max-width: 767px) {
body {
font-size: 14px;
}
h1 {
font-size: 35px;
}
h2 {
font-size: 28px;
}
h3 {
font-weight: 600;
font-size: 19px;
}
h4 {
font-size: 17px;
}
.ptb-50 {
padding-top: 25px;
padding-bottom: 25px;
}
.ptb-100 {
padding-top: 50px;
padding-bottom: 50px;
}
.pt-100 {
padding-top: 50px;
}
.pb-100 {
padding-bottom: 50px;
}
.ptb-70 {
padding-top: 20px;
padding-bottom: 20px;
}
.pt-70 {
padding-top: 20px;
}
.pb-70 {
padding-bottom: 20px;
}
.no-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
p {
font-size: 14px;
}
.btn-primary,
.btn-secondary {
padding: 10px 20px;
font-size: 14px;
}
/*section-title*/
.section-title {
max-width: 100%;
text-align: center;
margin-bottom: 40px;
}
.section-title::before {
content: unset;
}
.section-title h2 {
font-size: 28px;
padding: unset;
margin-top: -5px;
margin-bottom: 10px;
}
.section-title p {
font-size: 14px;
}
.header-area .top-header-area {
padding: 15px 0;
}
.header-area .top-header-area .contact-info {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-bottom: 13px;
margin-top: -3px;
display: none;
}
.header-area .top-header-area .contact-info .content i {
font-size: 14px;
}
.header-area .top-header-area .side-option {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.header-area .top-header-area .side-option .item {
margin-left: 0;
margin-right: 6px;
padding: 0;
}
.header-area .top-header-area .side-option .item .btn-search {
padding: 6px 12px;
}
.header-area .top-header-area .side-option .btn-secondary {
padding: 7px 12px;
font-size: 12px;
}
.search-box {
max-width: 260px;
}
.home-banner-area .banner-content {
text-align: center;
margin: auto;
max-width: 512px;
}
.home-banner-area .banner-content h1 {
font-size: 30px;
margin: 15px 0;
}
.home-banner-area .banner-content p {
font-size: 14px;
margin-bottom: 20px;
}
.home-banner-area .pr-0 {
padding-right: 15px !important;
}
.home-banner-area .banner-slider {
max-width: 512px;
margin-left: auto;
margin-right: auto;
margin-top: 25px;
}
.home-banner-area .banner-slider .slider-item .content {
padding: 28px;
}
.home-banner-area .banner-slider .slider-item .content h3 {
margin-top: 10px;
}
.home-banner-area .banner-slider .slider-item .content .review {
margin-bottom: 5px;
}
.home-banner-area .banner-slider .owl-nav {
top: 15px;
left: 15px;
}
.home-banner-area .owl-dots {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-bottom: 30px;
}
.home-banner-area .owl-dots .owl-dot {
max-width: 56px;
}
.home-banner-area .owl-dots .owl-dot:last-child {
margin-right: 0;
}
.home-banner-area.ptb-70 {
padding-top: 50px;
}
.home-banner-area.home-style-two {
padding-bottom: 50px;
background: #f9f8fe;
margin-bottom: 50px;
border-bottom: 1px solid #dadada;
}
.home-banner-area.home-style-two .banner-content {
padding: 40px 15px;
}
.home-banner-area.home-style-two .bg-shape {
display: none !important;
}
.home-banner-area.home-style-two .search-form {
top: 0;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav button[class*=owl-] {
top: 25%;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav .owl-prev {
left: 15px;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav .owl-next {
right: 15px;
}
.home-banner-area.home-style-two .owl-carousel .owl-item img {
padding: 20px;
padding-bottom: 0;
}
.home-banner-area.home-style-three {
background: #ffffff;
}
.home-banner-area.home-style-three .search-form {
position: relative;
margin-left: 15px;
margin-right: 15px;
bottom: 0;
margin-top: 30px;
}
.home-banner-area.home-style-three .banner-content {
padding: 60px 0 120px;
}
.home-banner-area.home-style-three .owl-carousel .owl-nav button[class*=owl-] {
position: unset;
}
.home-banner-area.home-style-three .owl-carousel .owl-nav {
position: absolute;
bottom: 25px;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.about-section .video-content .video-image img {
height: auto;
}
.about-section .shape {
display: none;
}
.about-section.about-style-two h2 {
margin-top: -10px;
}
.about-section.about-style-three .about-content {
text-align: left;
}
.about-section.about-style-three .about-content h6 {
margin-left: 0;
}
.about-section.about-style-three .about-content .col-lg-10 {
padding-left: 0;
}
.video-section {
padding: 90px 0;
}
.video-section .video-btn {
width: 60px;
height: 60px;
}
.destination-section .item-single .content {
max-width: 100%;
left: 0;
padding: 16px 16px;
}
.home-banner-area.home-style-two .search-form .btn-search::after,
.home-banner-area.home-style-three .search-form .btn-search::after {
content: 'Search';
}
.owl-carousel .owl-nav button[class*=owl-] {
width: 30px;
height: 40px;
}
.testimonial-section .testimonial-slider {
padding-bottom: 0;
padding: 20px 15px 15px;
}
.testimonial-section .testimonial-slider .slider-item {
padding: 0;
}
.testimonial-section .testimonial-slider .slider-item .client-img {
position: unset;
}
.testimonial-section .testimonial-slider .slider-item .client-img img {
max-width: 70px;
margin: auto;
margin-bottom: 20px;
}
.testimonial-section .testimonial-slider .slider-item .content {
text-align: center;
}
.testimonial-section .testimonial-slider .slider-item .content .quote i {
right: 0;
top: 0;
font-size: 40px;
}
.testimonial-section .testimonial-slider .slider-item .content .review {
margin-top: 0;
margin-bottom: 10px;
}
.testimonial-section .testimonial-slider .slider-item .content .client-info {
margin-bottom: 15px;
}
.testimonial-section .testimonial-slider .owl-nav {
position: unset;
text-align: center;
line-height: 0;
}
.testimonial-section .testimonial-slider::after {
display: none;
}
.testimonial-section .clients-img {
display: none;
}
.tours-section .tours-slider .owl-nav {
position: unset;
text-align: center;
margin-top: 30px;
}
.tours-section .item-single .content {
padding: 8px 16px;
}
.tours-section .item-single .content h3 {
margin-top: 5px;
margin-bottom: 0px;
}
.tours-section .item-single .content .review.mb-15 {
margin-bottom: 8px;
}
.tours-section .item-single .content p {
font-style: 14px;
margin-bottom: 10px;
}
.tours-section .item-single .content .list {
margin-top: 10px;
}
.tours-section .item-single .content .list li:last-child {
font-size: 16px;
}
.tours-section .row.no-wrap .col {
padding-right: 15px;
}
.tours-section .slider-item .content .list li:last-child,
.offers-section .item-single .content .list li:last-child,
.recent-tours-section .item-single .list li:last-child {
font-size: 16px;
}
.blog-section .item-single.item-big .content {
padding: 15px 12px;
}
.blog-section .item-single.item-big .content h3 {
font-size: 18px;
}
.blog-section .item-single.item-big .content .author {
margin-bottom: 15px;
}
.blog-section .item-single.item-big .content .info-list li {
margin-right: 10px;
font-size: 12px;
}
.blog-section .item-single .content h3 {
font-size: 18px;
}
.blog-section .item-single .content .list {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.footer-area h5 {
margin-bottom: 20px;
}
.video-btn {
width: 54px;
height: 54px;
}
.video-btn i {
font-size: 20px;
}
.video-btn::after, .video-btn::before {
border-width: 1px;
}
.blog-details-section .widget-area .widget-article .article-item .content h3 {
font-size: 15px;
}
.blog-details-section .widget-area .widget-article .article-item .content .author span {
font-size: 12px;
}
.pagination {
margin-top: 10px;
}
.page-title-area .page-title-content h1 {
margin-bottom: 5px;
}
.team-section .social-link a {
margin-bottom: 8px;
}
.faq-section .panel-group .panel-title a {
padding-right: 50px;
}
.blog-section.blog-style-three .social-link {
margin-bottom: 20px;
}
.blog-style-three .widget-area .widget-article .article-item .content h3 {
font-size: 14px;
}
.blog-style-three .widget-area .widget-article .article-item .content .author span {
font-size: 12px;
}
.main-form {
padding-left: 0;
padding-right: 0;
}
.main-form form {
padding: 25px 12px;
}
.main-form .link a,
.main-form .checkbox label {
font-size: 12px;
}
.contact-section .info-content {
padding: 0 15px;
}
.contact-section .info-content .sub-title {
margin-bottom: 10px;
margin-top: -5px;
}
.terms-of-services .widget-area, .privacy-policy .widget-area {
margin-top: 30px;
}
.booking-section .booking-form .content h3 {
font-size: 22px;
}
.booking-section .booking-form {
padding: 0;
}
.booking-section .info-content {
padding: 0;
}
.error-area .error-content h3 {
font-size: 28px;
}
.coming-soon-section .coming-soon-box {
padding: 30px 12px;
}
.coming-soon-section .coming-soon-box #timer div:first-child {
margin-bottom: 15px;
}
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
.blog-section .item-single.item-big .content .info-list {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.blog-section .item-single.item-big .content .list {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.header-area .top-header-area .side-option .item {
margin: 10px;
}
.tours-section .owl-carousel .owl-stage-outer {
overflow: unset;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
body {
font-size: 15px;
}
h2 {
font-size: 35px;
}
h3 {
font-size: 18px;
}
.ptb-50 {
padding-top: 40px;
padding-bottom: 40px;
}
.ptb-100 {
padding-top: 90px;
padding-bottom: 90px;
}
.pt-100 {
padding-top: 90px;
}
.pb-100 {
padding-bottom: 90px;
}
.ptb-70 {
padding-top: 60px;
padding-bottom: 60px;
}
.pt-70 {
padding-top: 60px;
}
.pb-70 {
padding-bottom: 60px;
}
.no-wrap {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
p {
font-size: 15px;
}
.section-title h2 {
font-size: 35px;
}
.header-area .top-header-area {
padding: 15px 0;
}
.header-area .top-header-area .contact-info {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
margin-bottom: 13px;
margin-top: -3px;
}
.header-area .top-header-area .contact-info .content i {
font-size: 14px;
}
.header-area .top-header-area .side-option {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.header-area .top-header-area .side-option .item {
margin-left: 0;
margin-right: 6px;
padding: 0;
}
.header-area .top-header-area .side-option .item .btn-search {
padding: 11px 16px;
}
.header-area .top-header-area .side-option .btn-secondary {
padding: 10px 16px;
}
.home-banner-area .banner-content {
text-align: center;
margin: auto;
max-width: 696px;
}
.home-banner-area .banner-content h1 {
font-size: 45px;
}
.home-banner-area .pr-0 {
padding-right: 15px !important;
}
.home-banner-area .banner-slider {
max-width: 696px;
margin-left: auto;
margin-right: auto;
margin-top: 25px;
}
.home-banner-area .banner-slider .slider-item .content {
padding: 60px;
}
.home-banner-area .banner-slider .slider-item .content i {
vertical-align: -2px;
}
.home-banner-area .banner-slider .owl-nav {
top: 15px;
left: 15px;
}
.home-banner-area .owl-dots {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-bottom: 30px;
}
.home-banner-area .owl-dots .owl-dot:last-child {
margin-right: 0;
}
.home-banner-area.ptb-70 {
padding-top: 90px;
}
.home-banner-area.home-style-two {
padding-bottom: 50px;
}
.home-banner-area.home-style-two .banner-content {
padding: 40px 15px;
margin: auto;
}
.home-banner-area.home-style-two .banner-image {
margin: auto;
}
.home-banner-area.home-style-two .bg-shape {
display: none !important;
}
.home-banner-area.home-style-two .search-form {
top: 0;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav button[class*=owl-] {
top: 25%;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav .owl-prev {
left: 40px;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav .owl-next {
right: 40px;
}
.home-banner-area.home-style-two .owl-carousel .owl-item img {
padding: 20px;
padding-bottom: 0;
}
.home-banner-area.home-style-two .search-form {
margin-top: 60px;
}
.home-banner-area.home-style-two .search-form .btn-search::after,
.home-banner-area.home-style-three .search-form .btn-search::after {
content: 'Search';
}
.home-banner-area.home-style-three {
background: #ffffff;
}
.home-banner-area.home-style-three .search-form {
position: relative;
margin-left: 15px;
margin-right: 15px;
bottom: 0;
margin-top: 30px;
}
.home-banner-area.home-style-three .banner-content {
padding: 60px 0 145px;
}
.home-banner-area.home-style-three .owl-carousel .owl-nav button[class*=owl-] {
position: unset;
}
.home-banner-area.home-style-three .owl-carousel .owl-nav {
position: absolute;
bottom: 25px;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.home-banner-area.home-style-three .search-form {
margin-top: 60px;
}
.about-section.about-style-two h2 {
margin-top: -10px;
}
.about-section.about-style-three .about-content .content-list {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.about-section.about-style-three .about-content .content-list h6 {
max-width: unset;
margin-top: 5px;
}
.testimonial-section .testimonial-slider .slider-item {
padding-left: 30px;
}
.testimonial-section .testimonial-slider .slider-item .content .quote i {
right: 0;
top: 0;
font-size: 80px;
}
.testimonial-section .testimonial-slider .slider-item .content .review {
margin-top: 0;
margin-bottom: 10px;
}
.testimonial-section .testimonial-slider .slider-item .content .client-info {
margin-bottom: 20px;
}
.testimonial-section .clients-img .image {
max-width: 43px !important;
}
.testimonial-section .clients-img .image-1 {
top: 32%;
left: 2%;
}
.testimonial-section .clients-img .image-2 {
top: 53%;
left: 6%;
}
.testimonial-section .clients-img .image-3 {
left: 4%;
bottom: 6%;
}
.testimonial-section .clients-img .image-4 {
top: 31%;
right: 5%;
}
.testimonial-section .clients-img .image-5 {
top: unset;
right: 26%;
bottom: 5%;
}
.about-section .shape {
display: none;
}
.tours-section .tours-slider .owl-nav {
position: unset;
text-align: center;
margin-top: 30px;
}
.tours-section .row.no-wrap .col {
padding-right: 15px;
}
.tours-section .row.no-wrap .col-auto {
margin-left: auto;
margin-right: auto;
}
.blog-details-section .blog-details-desc {
padding-right: 0;
}
.destinations-details-section .destination-details-desc {
padding-right: 0;
}
.contact-section .content {
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.terms-of-services .widget-area, .privacy-policy .widget-area {
margin-top: 30px;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
body {
font-size: 15px;
}
h3 {
font-size: 18px;
}
.header-area .top-header-area {
padding: 15px 0;
}
.header-area .top-header-area .contact-info {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
.header-area .top-header-area .contact-info .content i {
font-size: 14px;
}
.header-area .top-header-area .side-option .item {
margin-left: 0;
margin-right: 6px;
padding: 0;
}
.header-area .top-header-area .side-option .item .btn-search {
padding: 11px 16px;
}
.header-area .top-header-area .side-option .btn-secondary {
padding: 10px 16px;
}
.home-banner-area .banner-content {
max-width: 452px;
}
.home-banner-area .banner-content h1 {
font-size: 50px;
}
.home-banner-area .banner-content p {
margin-bottom: 20px;
}
.home-banner-area .banner-slider .slider-item .content {
padding: 80px;
}
.home-banner-area .banner-slider .slider-item .content i {
vertical-align: -2px;
}
.home-banner-area .banner-slider .owl-nav {
top: 15px;
left: 15px;
}
.home-banner-area .owl-dots .owl-dot {
min-width: 40px;
}
.home-banner-area.home-style-two .banner-content {
padding-right: 100px;
padding-top: 100px;
padding-bottom: 160px;
}
.home-banner-area.home-style-two {
padding-bottom: 60px;
}
.home-banner-area.home-style-two .search-form {
top: -40px;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav .owl-prev {
left: 20px;
}
.home-banner-area.home-style-two .owl-carousel .owl-nav .owl-next {
right: 20px;
}
.home-banner-area.home-style-three .banner-content {
margin: auto;
text-align: center;
max-width: 554px;
}
.home-banner-area.home-style-three .search-form {
max-width: 934px;
}
.home-banner-area.home-style-three .owl-carousel .owl-nav .owl-next {
right: 45px;
}
.home-banner-area.home-style-three .owl-carousel .owl-nav .owl-prev {
left: 45px;
}
.destination-section .item-single .content {
padding: 16px 12px;
}
.destination-section .item-single .content h3 {
font-size: 18px;
}
.about-section.about-style-three .content-list {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.about-section.about-style-three .content-list h6 {
margin-top: 5px;
}
.destination-style-two .item-single .content p {
font-size: 14px;
}
.testimonial-section .clients-img .image-1 {
left: 8%;
}
.testimonial-section .testimonial-slider .slider-item .content {
padding-left: 45px;
}
.testimonial-section .clients-img .image-4 {
right: 10%;
}
.blog-section .item-single .content {
padding: 18px 12px;
}
.blog-section .item-single .content h3 {
font-size: 16px;
}
.blog-section .item-single .info-list li {
font-size: 14px;
}
.blog-section .item-single .list li span {
font-size: 14px;
}
.blog-details-section .blog-details-desc {
padding-right: 20px;
}
.destinations-details-section .destination-details-desc {
padding-right: 20px;
}
.team-section img {
width: 100%;
}
.contact-section .content {
max-width: 360px;
margin-left: auto;
}
}
/*# sourceMappingURL=responsive.css.map */ | 0.26693 | 0.095139 |
@charset "UTF-8";
/*!
* jQuery contextMenu - Plugin for simple contextMenu handling
*
* Version: v2.9.2
*
* Authors: <NAME> (SWIS.nl), <NAME>, <NAME> (patches for FF)
* Web: http://swisnl.github.io/jQuery-contextMenu/
*
* Copyright (c) 2011-2020 SWIS BV and contributors
*
* Licensed under
* MIT License http://www.opensource.org/licenses/mit-license
*
* Date: 2020-05-13T13:55:37.023Z
*/
@-webkit-keyframes cm-spin {
0% {
-webkit-transform: translateY(-50%) rotate(0deg);
transform: translateY(-50%) rotate(0deg);
}
100% {
-webkit-transform: translateY(-50%) rotate(359deg);
transform: translateY(-50%) rotate(359deg);
}
}
@-o-keyframes cm-spin {
0% {
-webkit-transform: translateY(-50%) rotate(0deg);
-o-transform: translateY(-50%) rotate(0deg);
transform: translateY(-50%) rotate(0deg);
}
100% {
-webkit-transform: translateY(-50%) rotate(359deg);
-o-transform: translateY(-50%) rotate(359deg);
transform: translateY(-50%) rotate(359deg);
}
}
@keyframes cm-spin {
0% {
-webkit-transform: translateY(-50%) rotate(0deg);
-o-transform: translateY(-50%) rotate(0deg);
transform: translateY(-50%) rotate(0deg);
}
100% {
-webkit-transform: translateY(-50%) rotate(359deg);
-o-transform: translateY(-50%) rotate(359deg);
transform: translateY(-50%) rotate(359deg);
}
}
.bpbm-context-menu-icon-add:before {
content: "\EA01";
}
.bpbm-context-menu-icon-copy:before {
content: "\EA02";
}
.bpbm-context-menu-icon-cut:before {
content: "\EA03";
}
.bpbm-context-menu-icon-delete:before {
content: "\EA04";
}
.bpbm-context-menu-icon-edit:before {
content: "\EA05";
}
.bpbm-context-menu-icon-loading:before {
content: "\EA06";
}
.bpbm-context-menu-icon-paste:before {
content: "\EA07";
}
.bpbm-context-menu-icon-quit:before {
content: "\EA08";
}
.bpbm-context-menu-icon::before {
position: absolute;
top: 50%;
left: 0;
width: 2em;
font-family: "context-menu-icons";
font-size: 1em;
font-style: normal;
font-weight: normal;
line-height: 1;
color: #21759b;
text-align: center;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.bpbm-context-menu-icon.bpbm-context-menu-hover:before {
color: #fff;
}
.bpbm-context-menu-icon.bpbm-context-menu-disabled::before {
color: #bbb;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon-loading:before {
-webkit-animation: cm-spin 2s infinite;
-o-animation: cm-spin 2s infinite;
animation: cm-spin 2s infinite;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa {
display: list-item;
font-family: inherit;
line-height: inherit;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa::before {
position: absolute;
top: 50%;
left: 0;
width: 2em;
font-family: FontAwesome;
font-size: 1em;
font-style: normal;
font-weight: normal;
line-height: 1;
color: #21759b;
text-align: center;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa.bpbm-context-menu-hover:before {
color: #fff;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa.bpbm-context-menu-disabled::before {
color: #bbb;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa5 {
display: list-item;
font-family: inherit;
line-height: inherit;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa5 i, .bpbm-context-menu-icon.bpbm-context-menu-icon--fa5 svg {
position: absolute;
top: .3em;
left: .5em;
color: #21759b;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa5.bpbm-context-menu-hover > i, .bpbm-context-menu-icon.bpbm-context-menu-icon--fa5.bpbm-context-menu-hover > svg {
color: #fff;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa5.bpbm-context-menu-disabled i, .bpbm-context-menu-icon.bpbm-context-menu-icon--fa5.bpbm-context-menu-disabled svg {
color: #bbb;
}
.bpbm-context-menu-list {
position: absolute !important;
display: inline-block;
min-width: 13em;
max-width: 26em;
padding: 0.25em 0 !important;
margin: 0.3em;
font-family: inherit;
list-style-type: none;
background: #fff !important;
border: 1px solid #e8e8e8 !important;
border-radius: 0.2em !important;
box-shadow: 0 1px 1px rgb(0 0 0 / 8%) !important;
font-size: 15px;
line-height: 21px;
}
.bpbm-context-menu-item {
position: relative;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
padding: .2em 2em;
color: #2f2f2f;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: #fff;
}
.bpbm-context-menu-separator {
padding: 0;
margin: .35em 0;
border-bottom: 1px solid #e6e6e6;
}
.bpbm-context-menu-item > label > input,
.bpbm-context-menu-item > label > textarea {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
.bpbm-context-menu-item.bpbm-context-menu-hover {
color: #fff;
cursor: pointer;
background-color: #21759b;
}
.bpbm-context-menu-item.bpbm-context-menu-disabled {
color: #bbb;
cursor: default;
background-color: #fff;
}
.bpbm-context-menu-input.bpbm-context-menu-hover {
color: #2f2f2f;
cursor: default;
}
.bpbm-context-menu-submenu:after {
position: absolute;
top: 50%;
right: .5em;
z-index: 1;
width: 0;
height: 0;
content: '';
border-color: transparent transparent transparent #2f2f2f;
border-style: solid;
border-width: .25em 0 .25em .25em;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
/**
* Inputs
*/
.bpbm-context-menu-item.bpbm-context-menu-input {
padding: .3em .6em;
}
/* vertically align inside labels */
.bpbm-context-menu-input > label > * {
vertical-align: top;
}
/* position checkboxes and radios as icons */
.bpbm-context-menu-input > label > input[type="checkbox"],
.bpbm-context-menu-input > label > input[type="radio"] {
position: relative;
top: .12em;
margin-right: .4em;
}
.bpbm-context-menu-input > label {
margin: 0;
}
.bpbm-context-menu-input > label,
.bpbm-context-menu-input > label > input[type="text"],
.bpbm-context-menu-input > label > textarea,
.bpbm-context-menu-input > label > select {
display: block;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.bpbm-context-menu-input > label > textarea {
height: 7em;
}
.bpbm-context-menu-item > .bpbm-context-menu-list {
top: .3em;
/* re-positioned by js */
right: -.3em;
display: none;
}
.bpbm-context-menu-item.bpbm-context-menu-visible > .bpbm-context-menu-list {
display: block;
}
.bpbm-context-menu-accesskey {
text-decoration: underline;
} | wordpress/wp-content/plugins/bp-better-messages/assets/css/jquery.contextMenu.css | @charset "UTF-8";
/*!
* jQuery contextMenu - Plugin for simple contextMenu handling
*
* Version: v2.9.2
*
* Authors: <NAME> (SWIS.nl), <NAME>, <NAME> (patches for FF)
* Web: http://swisnl.github.io/jQuery-contextMenu/
*
* Copyright (c) 2011-2020 SWIS BV and contributors
*
* Licensed under
* MIT License http://www.opensource.org/licenses/mit-license
*
* Date: 2020-05-13T13:55:37.023Z
*/
@-webkit-keyframes cm-spin {
0% {
-webkit-transform: translateY(-50%) rotate(0deg);
transform: translateY(-50%) rotate(0deg);
}
100% {
-webkit-transform: translateY(-50%) rotate(359deg);
transform: translateY(-50%) rotate(359deg);
}
}
@-o-keyframes cm-spin {
0% {
-webkit-transform: translateY(-50%) rotate(0deg);
-o-transform: translateY(-50%) rotate(0deg);
transform: translateY(-50%) rotate(0deg);
}
100% {
-webkit-transform: translateY(-50%) rotate(359deg);
-o-transform: translateY(-50%) rotate(359deg);
transform: translateY(-50%) rotate(359deg);
}
}
@keyframes cm-spin {
0% {
-webkit-transform: translateY(-50%) rotate(0deg);
-o-transform: translateY(-50%) rotate(0deg);
transform: translateY(-50%) rotate(0deg);
}
100% {
-webkit-transform: translateY(-50%) rotate(359deg);
-o-transform: translateY(-50%) rotate(359deg);
transform: translateY(-50%) rotate(359deg);
}
}
.bpbm-context-menu-icon-add:before {
content: "\EA01";
}
.bpbm-context-menu-icon-copy:before {
content: "\EA02";
}
.bpbm-context-menu-icon-cut:before {
content: "\EA03";
}
.bpbm-context-menu-icon-delete:before {
content: "\EA04";
}
.bpbm-context-menu-icon-edit:before {
content: "\EA05";
}
.bpbm-context-menu-icon-loading:before {
content: "\EA06";
}
.bpbm-context-menu-icon-paste:before {
content: "\EA07";
}
.bpbm-context-menu-icon-quit:before {
content: "\EA08";
}
.bpbm-context-menu-icon::before {
position: absolute;
top: 50%;
left: 0;
width: 2em;
font-family: "context-menu-icons";
font-size: 1em;
font-style: normal;
font-weight: normal;
line-height: 1;
color: #21759b;
text-align: center;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.bpbm-context-menu-icon.bpbm-context-menu-hover:before {
color: #fff;
}
.bpbm-context-menu-icon.bpbm-context-menu-disabled::before {
color: #bbb;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon-loading:before {
-webkit-animation: cm-spin 2s infinite;
-o-animation: cm-spin 2s infinite;
animation: cm-spin 2s infinite;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa {
display: list-item;
font-family: inherit;
line-height: inherit;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa::before {
position: absolute;
top: 50%;
left: 0;
width: 2em;
font-family: FontAwesome;
font-size: 1em;
font-style: normal;
font-weight: normal;
line-height: 1;
color: #21759b;
text-align: center;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa.bpbm-context-menu-hover:before {
color: #fff;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa.bpbm-context-menu-disabled::before {
color: #bbb;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa5 {
display: list-item;
font-family: inherit;
line-height: inherit;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa5 i, .bpbm-context-menu-icon.bpbm-context-menu-icon--fa5 svg {
position: absolute;
top: .3em;
left: .5em;
color: #21759b;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa5.bpbm-context-menu-hover > i, .bpbm-context-menu-icon.bpbm-context-menu-icon--fa5.bpbm-context-menu-hover > svg {
color: #fff;
}
.bpbm-context-menu-icon.bpbm-context-menu-icon--fa5.bpbm-context-menu-disabled i, .bpbm-context-menu-icon.bpbm-context-menu-icon--fa5.bpbm-context-menu-disabled svg {
color: #bbb;
}
.bpbm-context-menu-list {
position: absolute !important;
display: inline-block;
min-width: 13em;
max-width: 26em;
padding: 0.25em 0 !important;
margin: 0.3em;
font-family: inherit;
list-style-type: none;
background: #fff !important;
border: 1px solid #e8e8e8 !important;
border-radius: 0.2em !important;
box-shadow: 0 1px 1px rgb(0 0 0 / 8%) !important;
font-size: 15px;
line-height: 21px;
}
.bpbm-context-menu-item {
position: relative;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
padding: .2em 2em;
color: #2f2f2f;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: #fff;
}
.bpbm-context-menu-separator {
padding: 0;
margin: .35em 0;
border-bottom: 1px solid #e6e6e6;
}
.bpbm-context-menu-item > label > input,
.bpbm-context-menu-item > label > textarea {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
.bpbm-context-menu-item.bpbm-context-menu-hover {
color: #fff;
cursor: pointer;
background-color: #21759b;
}
.bpbm-context-menu-item.bpbm-context-menu-disabled {
color: #bbb;
cursor: default;
background-color: #fff;
}
.bpbm-context-menu-input.bpbm-context-menu-hover {
color: #2f2f2f;
cursor: default;
}
.bpbm-context-menu-submenu:after {
position: absolute;
top: 50%;
right: .5em;
z-index: 1;
width: 0;
height: 0;
content: '';
border-color: transparent transparent transparent #2f2f2f;
border-style: solid;
border-width: .25em 0 .25em .25em;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
/**
* Inputs
*/
.bpbm-context-menu-item.bpbm-context-menu-input {
padding: .3em .6em;
}
/* vertically align inside labels */
.bpbm-context-menu-input > label > * {
vertical-align: top;
}
/* position checkboxes and radios as icons */
.bpbm-context-menu-input > label > input[type="checkbox"],
.bpbm-context-menu-input > label > input[type="radio"] {
position: relative;
top: .12em;
margin-right: .4em;
}
.bpbm-context-menu-input > label {
margin: 0;
}
.bpbm-context-menu-input > label,
.bpbm-context-menu-input > label > input[type="text"],
.bpbm-context-menu-input > label > textarea,
.bpbm-context-menu-input > label > select {
display: block;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.bpbm-context-menu-input > label > textarea {
height: 7em;
}
.bpbm-context-menu-item > .bpbm-context-menu-list {
top: .3em;
/* re-positioned by js */
right: -.3em;
display: none;
}
.bpbm-context-menu-item.bpbm-context-menu-visible > .bpbm-context-menu-list {
display: block;
}
.bpbm-context-menu-accesskey {
text-decoration: underline;
} | 0.422386 | 0.061848 |
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
.resource-icon {
width: 32px;
height: 32px;
}
.resource-icon-css {
background-image: url(../images/chrome-devtools/resourceCSSIcon.png);
}
.resource-icon-document {
background-image: url(../images/chrome-devtools/resourceDocumentIcon.png);
}
.resource-icon-js {
background-image: url(../images/chrome-devtools/resourceJSIcon.png);
}
.resource-icon-plain {
background-image: url(../images/chrome-devtools/resourcePlainIcon.png);
}
.resource-icon-executable {
background-image: url(../images/resourceExecutableIcon.png);
}
.resource-icon-flash {
background-image: url(../images/resourceFlashIcon.png);
}
.resource-icon-image {
background-image: url(../images/resourceImageIcon.png);
}
.resource-icon-java {
background-image: url(../images/resourceJavaIcon.png);
}
.resource-icon-not-modified {
background-image: url(../images/resourceNotModifiedIcon.png);
}
.resource-icon-redirect {
background-image: url(../images/resourceRedirectIcon.png);
}
html,
body,
#container {
height: 100%;
margin: 0;
overflow: hidden;
}
#container {
display: flex;
flex-direction: column;
}
#container > header,
#container > footer,
#container > .eventlog {
flex: 0 0 auto;
}
.main-view {
flex: 1 1 auto;
display: flex;
flex-direction: row;
outline: 0;
}
.main-view.vertical {
flex-direction: column;
}
.main-view .flow-detail,
.main-view .flow-table {
flex: 1 1 auto;
}
.splitter {
flex: 0 0 1px;
background-color: #aaa;
position: relative;
}
.splitter > div {
position: absolute;
}
.splitter.splitter-x {
cursor: col-resize;
}
.splitter.splitter-x > div {
margin-left: -1px;
width: 4px;
height: 100%;
}
.splitter.splitter-y {
cursor: row-resize;
}
.splitter.splitter-y > div {
margin-top: -1px;
height: 4px;
width: 100%;
}
.nav-tabs {
border-bottom: solid #a6a6a6 1px;
}
.nav-tabs a {
display: inline-block;
border: solid transparent 1px;
text-decoration: none;
}
.nav-tabs a.active {
background-color: white;
border-color: #a6a6a6;
border-bottom-color: white;
}
.nav-tabs a.special {
color: white;
background-color: #396cad;
border-bottom-color: #396cad;
}
.nav-tabs a.special:hover {
background-color: #5386c6;
}
.nav-tabs-lg a {
padding: 3px 14px;
margin: 0 2px -1px;
}
.nav-tabs-sm a {
padding: 0px 7px;
margin: 2px 2px -1px;
}
.nav-tabs-sm a.nav-action {
float: right;
padding: 0;
margin: 1px 0 0px;
}
header {
background-color: white;
}
header .title-bar {
line-height: 25px;
text-align: center;
}
header .menu {
padding: 10px;
border-bottom: solid #a6a6a6 1px;
}
.menu-row {
margin-left: -2.5px;
margin-right: -2.5px;
}
.filter-input {
position: relative;
min-height: 1px;
padding-left: 2.5px;
padding-right: 2.5px;
}
@media (min-width: 992px) {
.filter-input {
float: left;
width: 25%;
}
}
.filter-input .popover {
top: 27px;
display: block;
max-width: none;
}
.filter-input .popover .popover-content {
max-height: 500px;
overflow-y: auto;
}
.flow-table {
width: 100%;
overflow: auto;
}
.flow-table table {
width: 100%;
table-layout: fixed;
}
.flow-table thead {
background-color: #F2F2F2;
line-height: 23px;
}
.flow-table th {
font-weight: normal;
box-shadow: 0 1px 0 #a6a6a6;
}
.flow-table tr {
cursor: pointer;
}
.flow-table tr:nth-child(even) {
background-color: rgba(0, 0, 0, 0.05);
}
.flow-table tr.selected {
background-color: rgba(193, 215, 235, 0.5) !important;
}
.flow-table tr.highlighted {
background-color: rgba(255, 204, 0, 0.4);
}
.flow-table tr.highlighted:nth-child(even) {
background-color: rgba(255, 204, 0, 0.5);
}
.flow-table td {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.flow-table tr.intercepted:not(.has-response) .col-path,
.flow-table tr.intercepted:not(.has-response) .col-method {
color: #ff8000;
}
.flow-table tr.intercepted.has-response .col-status,
.flow-table tr.intercepted.has-response .col-size,
.flow-table tr.intercepted.has-response .col-time {
color: #ff8000;
}
.flow-table .fa {
line-height: inherit;
}
.flow-table .fa.pull-right {
margin-left: 0;
}
.flow-table .col-tls {
width: 10px;
}
.flow-table .col-tls-https {
background-color: rgba(0, 185, 0, 0.5);
}
.flow-table .col-icon {
width: 32px;
}
.flow-table .col-path .fa-repeat {
color: green;
}
.flow-table .col-path .fa-pause {
color: #ff8000;
}
.flow-table .col-method {
width: 60px;
}
.flow-table .col-status {
width: 50px;
}
.flow-table .col-size {
width: 70px;
}
.flow-table .col-time {
width: 50px;
}
.flow-table td.col-time,
.flow-table td.col-size {
text-align: right;
}
.flow-detail {
width: 100%;
overflow: auto;
}
.flow-detail nav {
background-color: #F2F2F2;
}
.flow-detail section {
padding: 5px 12px;
}
.flow-detail .first-line {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
background-color: #428bca;
color: white;
margin: 0 -8px;
padding: 4px 8px;
border-radius: 5px;
word-break: break-all;
max-height: 100px;
overflow-y: auto;
}
.flow-detail table {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
width: 100%;
table-layout: fixed;
word-break: break-all;
}
.flow-detail table tr:not(:first-child) {
border-top: 1px solid #f7f7f7;
}
.flow-detail table td {
vertical-align: top;
}
.connection-table td:first-child {
width: 50%;
padding-right: 1em;
}
.header-table .header-name {
width: 33%;
padding-right: 1em;
}
.connection-table td,
.timing-table td {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.eventlog {
height: 200px;
flex: 0 0 auto;
display: flex;
flex-direction: column;
}
.eventlog > div {
background-color: #F2F2F2;
padding: 0 5px;
flex: 0 0 auto;
}
.eventlog > pre {
flex: 1 1 auto;
margin: 0;
border-radius: 0;
overflow-x: auto;
overflow-y: scroll;
background-color: #fcfcfc;
}
.eventlog .fa-close {
cursor: pointer;
float: right;
color: grey;
padding: 3px 0;
padding-left: 10px;
}
.eventlog .fa-close:hover {
color: black;
}
.eventlog .label {
cursor: pointer;
vertical-align: middle;
display: inline-block;
margin-top: -2px;
margin-left: 3px;
}
footer {
box-shadow: 0 -1px 3px lightgray;
padding: 0px 10px 3px;
}
/*# sourceMappingURL=../css/app.css.map */ | bp-revok/python/lib/python2.7/site-packages/mitmproxy-0.11.3-py2.7.egg/libmproxy/web/static/css/app.css | html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
.resource-icon {
width: 32px;
height: 32px;
}
.resource-icon-css {
background-image: url(../images/chrome-devtools/resourceCSSIcon.png);
}
.resource-icon-document {
background-image: url(../images/chrome-devtools/resourceDocumentIcon.png);
}
.resource-icon-js {
background-image: url(../images/chrome-devtools/resourceJSIcon.png);
}
.resource-icon-plain {
background-image: url(../images/chrome-devtools/resourcePlainIcon.png);
}
.resource-icon-executable {
background-image: url(../images/resourceExecutableIcon.png);
}
.resource-icon-flash {
background-image: url(../images/resourceFlashIcon.png);
}
.resource-icon-image {
background-image: url(../images/resourceImageIcon.png);
}
.resource-icon-java {
background-image: url(../images/resourceJavaIcon.png);
}
.resource-icon-not-modified {
background-image: url(../images/resourceNotModifiedIcon.png);
}
.resource-icon-redirect {
background-image: url(../images/resourceRedirectIcon.png);
}
html,
body,
#container {
height: 100%;
margin: 0;
overflow: hidden;
}
#container {
display: flex;
flex-direction: column;
}
#container > header,
#container > footer,
#container > .eventlog {
flex: 0 0 auto;
}
.main-view {
flex: 1 1 auto;
display: flex;
flex-direction: row;
outline: 0;
}
.main-view.vertical {
flex-direction: column;
}
.main-view .flow-detail,
.main-view .flow-table {
flex: 1 1 auto;
}
.splitter {
flex: 0 0 1px;
background-color: #aaa;
position: relative;
}
.splitter > div {
position: absolute;
}
.splitter.splitter-x {
cursor: col-resize;
}
.splitter.splitter-x > div {
margin-left: -1px;
width: 4px;
height: 100%;
}
.splitter.splitter-y {
cursor: row-resize;
}
.splitter.splitter-y > div {
margin-top: -1px;
height: 4px;
width: 100%;
}
.nav-tabs {
border-bottom: solid #a6a6a6 1px;
}
.nav-tabs a {
display: inline-block;
border: solid transparent 1px;
text-decoration: none;
}
.nav-tabs a.active {
background-color: white;
border-color: #a6a6a6;
border-bottom-color: white;
}
.nav-tabs a.special {
color: white;
background-color: #396cad;
border-bottom-color: #396cad;
}
.nav-tabs a.special:hover {
background-color: #5386c6;
}
.nav-tabs-lg a {
padding: 3px 14px;
margin: 0 2px -1px;
}
.nav-tabs-sm a {
padding: 0px 7px;
margin: 2px 2px -1px;
}
.nav-tabs-sm a.nav-action {
float: right;
padding: 0;
margin: 1px 0 0px;
}
header {
background-color: white;
}
header .title-bar {
line-height: 25px;
text-align: center;
}
header .menu {
padding: 10px;
border-bottom: solid #a6a6a6 1px;
}
.menu-row {
margin-left: -2.5px;
margin-right: -2.5px;
}
.filter-input {
position: relative;
min-height: 1px;
padding-left: 2.5px;
padding-right: 2.5px;
}
@media (min-width: 992px) {
.filter-input {
float: left;
width: 25%;
}
}
.filter-input .popover {
top: 27px;
display: block;
max-width: none;
}
.filter-input .popover .popover-content {
max-height: 500px;
overflow-y: auto;
}
.flow-table {
width: 100%;
overflow: auto;
}
.flow-table table {
width: 100%;
table-layout: fixed;
}
.flow-table thead {
background-color: #F2F2F2;
line-height: 23px;
}
.flow-table th {
font-weight: normal;
box-shadow: 0 1px 0 #a6a6a6;
}
.flow-table tr {
cursor: pointer;
}
.flow-table tr:nth-child(even) {
background-color: rgba(0, 0, 0, 0.05);
}
.flow-table tr.selected {
background-color: rgba(193, 215, 235, 0.5) !important;
}
.flow-table tr.highlighted {
background-color: rgba(255, 204, 0, 0.4);
}
.flow-table tr.highlighted:nth-child(even) {
background-color: rgba(255, 204, 0, 0.5);
}
.flow-table td {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.flow-table tr.intercepted:not(.has-response) .col-path,
.flow-table tr.intercepted:not(.has-response) .col-method {
color: #ff8000;
}
.flow-table tr.intercepted.has-response .col-status,
.flow-table tr.intercepted.has-response .col-size,
.flow-table tr.intercepted.has-response .col-time {
color: #ff8000;
}
.flow-table .fa {
line-height: inherit;
}
.flow-table .fa.pull-right {
margin-left: 0;
}
.flow-table .col-tls {
width: 10px;
}
.flow-table .col-tls-https {
background-color: rgba(0, 185, 0, 0.5);
}
.flow-table .col-icon {
width: 32px;
}
.flow-table .col-path .fa-repeat {
color: green;
}
.flow-table .col-path .fa-pause {
color: #ff8000;
}
.flow-table .col-method {
width: 60px;
}
.flow-table .col-status {
width: 50px;
}
.flow-table .col-size {
width: 70px;
}
.flow-table .col-time {
width: 50px;
}
.flow-table td.col-time,
.flow-table td.col-size {
text-align: right;
}
.flow-detail {
width: 100%;
overflow: auto;
}
.flow-detail nav {
background-color: #F2F2F2;
}
.flow-detail section {
padding: 5px 12px;
}
.flow-detail .first-line {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
background-color: #428bca;
color: white;
margin: 0 -8px;
padding: 4px 8px;
border-radius: 5px;
word-break: break-all;
max-height: 100px;
overflow-y: auto;
}
.flow-detail table {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
width: 100%;
table-layout: fixed;
word-break: break-all;
}
.flow-detail table tr:not(:first-child) {
border-top: 1px solid #f7f7f7;
}
.flow-detail table td {
vertical-align: top;
}
.connection-table td:first-child {
width: 50%;
padding-right: 1em;
}
.header-table .header-name {
width: 33%;
padding-right: 1em;
}
.connection-table td,
.timing-table td {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.eventlog {
height: 200px;
flex: 0 0 auto;
display: flex;
flex-direction: column;
}
.eventlog > div {
background-color: #F2F2F2;
padding: 0 5px;
flex: 0 0 auto;
}
.eventlog > pre {
flex: 1 1 auto;
margin: 0;
border-radius: 0;
overflow-x: auto;
overflow-y: scroll;
background-color: #fcfcfc;
}
.eventlog .fa-close {
cursor: pointer;
float: right;
color: grey;
padding: 3px 0;
padding-left: 10px;
}
.eventlog .fa-close:hover {
color: black;
}
.eventlog .label {
cursor: pointer;
vertical-align: middle;
display: inline-block;
margin-top: -2px;
margin-left: 3px;
}
footer {
box-shadow: 0 -1px 3px lightgray;
padding: 0px 10px 3px;
}
/*# sourceMappingURL=../css/app.css.map */ | 0.501953 | 0.113727 |
@charset "UTF-8";
.useScrollBar::-webkit-scrollbar {
width: 10px;
margin-right: 2px;
}
.useScrollBar::-webkit-scrollbar-track {
/*box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);*/
background-color: rgba(0, 0, 0, 0.15);
}
.useScrollBar::-webkit-scrollbar-thumb {
background-color: darkgrey;
outline: 1px solid slategrey;
}
/* Login Module */
body:not(.login) #loginModule {
visibility: hidden;
opacity: 0;
}
#loginModule {
background-color: rgba(33, 38, 41, var(--window-transparency));
box-shadow: inset 0 0 0px var(--window-border) rgba(255, 255, 255, 0.15),
inset 0 var(--header-height) 0 0 rgba(255, 255, 255, 0.05);
border-radius: inherit;
}
body.login .windowTitle .windowTitleText {
color: rgba(255, 255, 255, 0.8);
}
body.login .windowTitle .windowBtns div[class$="Btn"]::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f00d";
color: rgba(255, 255, 255, 0.3);
font-size: 0.6em;
transition: 100ms;
}
body.login .windowTitle .windowBtns div[class$="Btn"]:hover::before {
color: rgba(255, 255, 255, 0.8);
}
#loginModule .loginArt div.circle1 {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(#e91e63 0 1%, #ffc107 42% 100%);
clip-path: circle(11% at 30% 10%);
}
#loginModule .loginArt div.circle2 {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(#e91e63 0 42%, #ffc107 95% 100%);
clip-path: circle(10% at 63% 75%);
}
#loginModule .loginArt div.circle3 {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(#f00, #f0f);
clip-path: circle(15% at 90% 70%);
}
#loginModule .loginArt div.circle4 {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(#e91e63, #2196f3);
clip-path: circle(10% at 10% 90%);
}
#loginModule .loginFormContainer {
box-sizing: border-box;
justify-content: flex-start;
}
#loginModule .loginFormContainer h2 {
margin-top: 120px;
margin-bottom: 25px;
color: rgba(255, 255, 255, 0.8);
}
#loginModule .loginFormContainer .loginForm {
height: 300px;
}
#loginForm .dynamicInput input[type="text"],
#loginForm .dynamicInput input[type="password"],
#loginForm .dynamicInput input[type="email"] {
padding: 8px;
background-color: rgba(255, 255, 255, 0.075);
border-radius: 5px;
color: #cacaca;
outline: none;
border: 0;
width: 200px;
}
#loginForm .dynamicInput {
height: 31px;
margin: 10px 0;
transition: var(--transition-time);
margin-left: 13px;
}
#loginForm .dynamicInput.disabled input {
pointer-events: none;
color: #fff;
background-color: rgba(255, 255, 255, 0.05);
}
#loginForm .dynamicInput.showEditBtn {
margin-left: 23px;
}
#loginForm .dynamicInput .edit {
margin-left: 0px;
opacity: 0;
visibility: hidden;
cursor: pointer;
width: 13px;
transition: var(--transition-time);
}
#loginForm .dynamicInput.showEditBtn .edit {
margin-left: 10px;
cursor: pointer;
width: 13px;
opacity: 1;
visibility: visible;
}
#loginForm .edit:hover::before {
color: #2196f3;
}
#loginForm .edit::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f304";
font-size: 0.8em;
transition: var(--transition-time);
}
#loginForm .dynamicInput.hide {
height: 0px;
visibility: hidden;
opacity: 0;
}
#loginForm .dynamicInput span {
margin: 15px;
text-align: center;
font-size: 10pt;
}
#loginForm input[type="submit"] {
background-color: #2196f3;
padding: 8px 12px;
margin: 20px 0;
border-radius: 7.5px;
font-size: 10pt;
color: #fff;
border: 0;
outline: 0;
cursor: pointer;
transition: var(--transition-time);
}
#loginForm input[type="submit"]:hover {
background-color: #1b81d4;
}
/* Control Panel */
body.login #controlPanel {
visibility: hidden;
opacity: 0;
}
nav {
display: none;
height: 100%;
width: 60px;
background-color: rgba(6, 6, 6, 0.8);
position: fixed;
top: 0;
left: 0;
padding: 5px 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
padding-top: calc(var(--header-padding) + 5px);
}
nav img {
height: 40px;
width: 40px;
border-radius: 50%;
margin: 5px 10px;
background-color: rgba(255, 255, 255, 0.5);
object-fit: cover;
}
nav a {
height: 40px;
width: 40px;
border-radius: 50%;
margin: 10px 10px;
background-color: rgba(255, 255, 255, 0.3);
object-fit: cover;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: rgba(255, 255, 255, 0.8);
font-weight: 300;
overflow: hidden;
transition: 200ms;
}
nav a:not(.active) {
opacity: 0.75;
}
nav a.active {
opacity: 1;
border-radius: 40%;
cursor: default;
background-color: #7289da;
}
nav a.active div {
opacity: 1;
border-radius: 40%;
}
nav a:hover {
background-color: #7289da;
border-radius: 40%;
opacity: 1;
}
nav a div {
transition: 200ms;
}
nav a:hover div {
border-radius: 40%;
}
nav > a:nth-child(1)::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f500";
}
nav > a:nth-child(1) {
opacity: 1;
}
nav hr {
height: 2px;
width: 50%;
margin: 10px 25%;
border: 0;
background-color: rgba(255, 255, 255, 0.3);
}
nav a div {
height: 40px;
width: 40px;
position: absolute;
background-size: cover;
background-position: center center;
overflow: hidden;
border-radius: 50%;
}
nav a#addRemServer::before {
content: "+";
color: #87da72;
font-size: 2em;
}
nav a#addRemServer:hover {
background-color: #87da72;
}
nav a#addRemServer:hover::before {
content: "+";
color: rgba(255, 255, 255, 1);
font-size: 2em;
}
header {
height: 100%;
width: 240px;
background-color: rgba(43, 49, 55, var(--window-transparency));
position: fixed;
top: 0;
left: 0;
/*left: 60px;*/
padding-top: calc(var(--header-padding) + 5px);
box-sizing: border-box;
}
header .serverHeader {
width: 100%;
/*border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
padding: 20px;
padding-right: 20px;
font-weight: bold;
box-sizing: border-box;
color: #fff;
}
header .serverHeader::before { content: "Welcome "; }
header .serverHeader::after { content: "!"; }
header .serverHeader i {
float: right;
height: 16px;
width: 16px;
font-size: 1.3em;
color: rgba(0, 0, 0, 0.5);
transition: 100ms;
cursor: pointer;
}
header .serverHeader i:hover {
color: rgba(255, 255, 255, 0.8);
}
header .serverContent {
width: 100%;
height: calc(100% - 63px);
padding: 20px;
padding-top: 5px;
box-sizing: border-box;
overflow-y: scroll;
overflow-x: hidden;
background-color: rgba(0, 0, 0, 0.15);
}
.serverContent:empty::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
font-size: 2em;
content: "\f06a";
color: #fff;
opacity: 0.5;
width: 100%;
height: 40%;
box-sizing: border-box;
margin-left: 4px;
padding-bottom: 5px;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
text-align: center;
}
.serverContent:empty::after {
content: "No modules loaded";
color: #fff;
opacity: 0.5;
width: 100%;
height: auto;
box-sizing: border-box;
margin-left: 4px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
text-align: center;
}
header .serverContent .catergory:nth-child(1) {
margin-top: 10px;
}
header .serverContent .catergory {
color: rgba(255, 255, 255, 0.5);
text-transform: uppercase;
font-size: 9pt;
margin-top: 25px;
transition: 100ms;
overflow: hidden;
}
header .serverContent .catergory.hide .channel {
display: none;
}
header .serverContent .catergory.hide .channel.active {
display: block;
}
header .serverContent .catergory .title {
transition: 100ms;
cursor: pointer;
}
header .serverContent .catergory .title:hover {
color: rgba(255, 255, 255, 0.7);
}
header .serverContent .catergory .channelUnreadCount {
float: right;
}
header .serverContent .catergory .channel {
transition: 100ms;
padding: 5px 10px;
border-radius: 5px;
box-sizing: border-box;
cursor: pointer;
margin: 5px 0;
color: rgba(255, 255, 255, 0.6);
text-transform: initial;
font-size: 10pt;
}
header .serverContent .catergory .channel:hover {
background-color: rgba(255, 255, 255, 0.2);
color: rgba(255, 255, 255, 1);
}
header .serverContent .catergory .channel.active {
background-color: rgba(255, 255, 255, 0.2);
color: rgba(255, 255, 255, 1);
font-weight: 800;
cursor: default;
}
header .serverContent .catergory .channel::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: attr(icon-name);/*"\f292";*/
padding-right: 5px;
}
/* obsolete
header .serverContent .catergory .channel.overview::before { content: "\f015"; }
header .serverContent .catergory .channel.systemStatus::before { content: "\f200"; }
header .serverContent .catergory .channel.networkActivity::before { content: "\f550"; }
header .serverContent .catergory .channel.onboardGS::before { content: "\f0a0"; }
header .serverContent .catergory .channel.analytics::before { content: "\f201"; }
header .serverContent .catergory .channel.configuration::before { content: "\f0ad"; }
header .serverContent .catergory .channel.userManagement::before { content: "\f4fe"; }
header .serverContent .catergory .channel.serverManagement::before { content: "\f085"; }
header .serverContent .catergory .channel.terminal::before { content: "\f120"; }
header .serverContent .catergory .channel.logs::before { content: "\f07b"; }
*/
content {
height: 100%;
width: calc(100% - 240px); /* calc(100% - 60px - 240px) */
background-color: #fff;
position: fixed;
top: 0;
left: 240px; /* calc(60px + 240px) */
transition: 100ms;
padding-top: calc(var(--header-padding) + 5px);
box-sizing: border-box;
}
.openNotifs content {
width: calc(100% - 240px - 240px); /* calc(100% - 60px - 240px - 240px) */
}
.centerizeVertically {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.centerizeHorizontally {
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
}
content .channelHeader {
width: 100%;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding: 20px;
padding-right: 0;
font-weight: 600;
box-sizing: border-box;
color: #000;
}
content .channelHeader > i {
margin-right: 10px;
opacity: 0.6;
transition: var(--transition-time);
cursor: pointer;
display: none;
}
content .channelHeader > i:hover {
opacity: 1;
}
content .channelHeader .channelName::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: attr(icon-name);
padding-right: 5px;
}
content .channelHeader .channelName:empty:before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f054";
padding-right: 5px;
opacity: 0.5;
}
content .channelHeader .channelName:empty::after {
content: "Select Module";
opacity: 0.5;
}
content .channelHeader #savedChannelToggle {
color: rgba(0, 0, 0, 0.5);
display: inline;
margin: 5px;
font-size: 11pt;
}
content .channelHeader #savedChannelToggle i {
position: absolute;
transition: 100ms;
top: 24px;
}
content .channelHeader #savedChannelToggle:hover {
color: gold;
cursor: pointer;
}
content .channelHeader #savedChannelToggle i.checkmark {
color: gold;
}
content .channelHeader #savedChannelToggle:not(.isChecked) i.checkmark {
visibility: hidden;
opacity: 0;
}
content .channelHeader .rightSide {
float: right;
color: rgba(0, 0, 0, 0.6);
}
content .channelHeader .rightSide > i {
height: 16px;
width: 16px;
padding: 0 10px;
transition: 200ms;
}
content .channelHeader .rightSide > i:hover {
color: rgba(0, 0, 0, 0.9);
cursor: pointer;
}
content .channelHeader .rightSide .searchField {
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 5px;
margin-right: 10px;
}
content .channelHeader .rightSide .searchField table {
height: 100%;
width: 100%;
}
content .channelHeader .rightSide .searchField input[type="text"] {
border: 0;
font-size: 10pt;
outline: none;
height: 100%;
width: 100%;
margin-left: 5px;
color: rgba(0, 0, 0, 0.5);
}
content .channelHeader .rightSide .searchField button[type="submit"] {
border: 0;
background: none;
height: 100%;
width: 100%;
outline: none;
color: rgba(0, 0, 0, 0.5);
transition: 200ms;
cursor: pointer;
}
content .channelHeader .rightSide .searchField button[type="submit"]:hover {
color: rgba(0, 0, 0, 0.75);
}
content .channelHeader .rightSide .notifCount {
margin-right: 15px;
font-size: 11pt;
transition: 100ms;
cursor: pointer;
}
.openNotifs content .channelHeader .rightSide .notifCount {
color: rgba(0, 0, 0, 0.9);
}
content .channelHeader .rightSide .notifCount::before {
font-family: "Font Awesome 5 Pro";
font-weight: 400;
content: "\f0f3";
/*content: "\f007";*/
padding-right: 5px;
}
content .channelHeader .rightSide .notifCount:hover {
color: rgba(0, 0, 0, 0.9);
}
content .channelHeader .rightSide .notifCount i {
margin-right: 5px;
}
content .channelHeader .headerMenu {
position: absolute;
width: 160px;
height: 0px;
overflow: hidden;
border-radius: 5px;
box-shadow: 0 0 5px rgb(0 0 0 / 50%);
right: 5px;
top: 55px;
background-color: #fff;
transition: 100ms ease-out;
}
content .channelHeader .headerMenu.show {
height: calc(38px * 3);
}
content .channelHeader .headerMenu a {
box-sizing: border-box;
height: auto;
padding: 7.5px 10px;
padding-left: 0;
display: block;
width: calc(100% - 30px);
text-decoration: none;
color: rgba(0, 0, 0, 0.65);
border-top: 1px solid rgba(0, 0, 0, 0.1);
opacity: 0.8;
transition: var(--transition-time);
}
content .channelHeader .headerMenu a:hover {
opacity: 1;
}
content .channelHeader .headerMenu a:nth-child(1) {
border-top: 1px solid rgba(0, 0, 0, 0);
}
content .channelHeader .headerMenu a::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f0da";
padding-right: 10px;
}
content .channelHeader .headerMenu a:nth-child(1)::before { content: "\f2bd"; }
content .channelHeader .headerMenu a:nth-child(2)::before { content: "\f013"; }
content .channelHeader .headerMenu a:nth-child(3)::before { content: "\f2f5"; }
content .channelContent {
height: calc(100% - 63px); /* calc(100% - 63px - 59px) */
width: 100%;
overflow-y: auto;
padding: 10px 25px;
box-sizing: border-box;
background-color: #fafafc;
overflow: hidden scroll;
transition: 250ms;
font-family: "Open Sans Light";
}
.announcements .announceWarning {
background-color: #fac048;
border-radius: 5px;
margin-bottom: 10px;
padding: 10px 15.5px;
padding-left: 27.5px;
}
.announcements .announceWarning i {
margin: 5px 0;
transform: translateX(-10px);
}
.announcements .announceWarning i.close {
float: right;
transition: 200ms;
opacity: 0.3;
position: absolute;
/* top: 0; */
right: 52px;
}
.announceWarning i.close:hover {
opacity: 0.5;
cursor: pointer;
}
.CPPanel {
display: none;
opacity: 0;
}
.CPPanel.show {
display: block;
opacity: 1;
animation-name: CPPanelEntrance;
animation-duration: 300ms;
}
@keyframes CPPanelEntrance {
0% {
opacity: 0;
transform: translateX(-15px);
}
100% {
opacity: 1;
transform: translateX(0px);
}
}
.EntrancePage {
position: absolute;
height: 100%;
box-sizing: border-box;
padding-bottom: 25vh;
width: 100%;
opacity: 0;
visibility: none;
display: none;
transition: var(--transition-time);
}
.EntrancePage.show {
opacity: 0.6;
visibility: visible;
display: flex;
}
.EntrancePage > div { margin-bottom: 8px; }
.EntrancePage > div::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f07b";
font-size: 2em;
}
.EntrancePage > span::before {
content: "Select Module";
}
.ModuleUnloadedWarn {
position: absolute;
height: 100%;
box-sizing: border-box;
padding-bottom: 25vh;
width: 100%;
opacity: 0;
visibility: none;
display: none;
transition: var(--transition-time);
}
.ModuleUnloadedWarn.show {
opacity: 0.6;
visibility: visible;
display: flex;
}
.ModuleUnloadedWarn > div { margin-bottom: 15px; }
.ModuleUnloadedWarn > div::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f019";
font-size: 2em;
}
.ModuleUnloadedWarn > span::before {
content: "Module not found";
}
.channelContent .CPPanel h2 {
color: #404246;
font-family: "Open Sans Light" ,sans-serif;
font-weight: 300;
font-size: 1.8em;
line-height: 0.8em;
margin: 21px 0 21px;
word-break: break-word;
}
.channelContent .CPPanel > a {
font-size: 1.2em;
}
.channelContent .CPPanel > .details {
color: #686a6e;
font-size: .9em;
margin: 8px 0;
}
.channelContent .CPPanel a {
color: #488bfa;
text-decoration: none;
}
.channelContent .CPPanel a:hover {
text-decoration: underline;
}
.hasPopup {
position: relative;
display: inline-block;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* The actual popup */
.hasPopup .popup {
visibility: hidden;
/*width: 160px;*/
background-color: rgba(32, 33, 36, 0.7);
backdrop-filter: blur(5px);
color: #fff;
text-align: center;
border-radius: 6px;
padding: 12px 12px;
position: absolute;
z-index: 1;
bottom: 105%;
/*left: 50%;*/
/*margin-left: -80px;*/
opacity: 0;
transition: 150ms;
font-family: "Open Sans Light";
font-size: 11pt;
}
/* Popup arrow */
.hasPopup .popup::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: rgba(32, 33, 36, 0.7) transparent transparent transparent;
}
/* Toggle this class - hide and show the popup */
.hasPopup .show {
visibility: visible;
opacity: 1;
bottom: 125%;
}
content .channelContent .channelChats {
min-height: 100%;
width: 100%;
justify-content: flex-end;
padding: 5px;
box-sizing: border-box;
overflow-y: auto;
}
content .channelContent .chatEntry {
width: 100%;
margin: 5px;
padding: 0 15px;
padding-right: 60px;
box-sizing: border-box;
}
content .channelContent .chatEntry > span:nth-child(1) {
color: #000;
font-weight: bold;
cursor: pointer;
}
content .channelContent .chatEntry > span:nth-child(1):hover {
text-decoration: underline;
}
content .channelContent .chatEntry > span:not(:nth-child(1)) {
color: rgba(0, 0, 0, 0.5);
font-size: 0.9em;
}
content .channelContent .chatEntry div {
color: rgba(0, 0, 0, 0.8);
}
content .channelContent .chatEntry div a {
color: #00baff;
text-decoration: none;
}
content .channelContent .chatEntry .fileAttachment .fileDetails {
flex: 1;
width: 100%;
text-decoration: none;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding-left: 10px;
display: flex;
align-items: flex-start;
justify-content: center;
flex-direction: column;
transform: translateY(2px);
}
content .channelContent .chatEntry div .fileDetails .fileSize {
color: rgba(0, 0, 0, 0.55);
font-size: 0.8em;
}
content .channelContent .chatEntry div a:hover {
text-decoration: underline;
}
content .channelContent .chatEntry .fileAttachment {
background-color: rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 5px;
padding: 10px;
font-weight: 600;
box-sizing: border-box;
margin: 5px 1px;
max-width: 480px;
display: flex;
align-items: center;
justify-content: flex-start;
flex-direction: row;
}
content .channelContent .chatEntry img.fileAttachment,
content .channelContent .chatEntry video.fileAttachment {
padding: 0;
overflow: hidden;
max-height: 300px;
border: 1px solid rgb(0, 0, 0, 0.2);
box-shadow: 0 0 5px rgb(0, 0, 0, 0.5);
height: 300px;
background-color: rgba(0, 0, 0, 0.8);
}
content .channelContent .chatEntry .fileAttachment a {
color: #000;
font-weight: 400;
line-height: 0.95;
}
content .channelContent .chatEntry .fileAttachment a.downloadBtn {
float: right;
text-decoration: none;
margin-right: 5px;
}
content .channelContent .chatEntry .fileAttachment a.downloadBtn::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f019";
cursor: pointer;
font-size: 1em;
color:rgba(0, 0, 0, 0.75);
}
content .channelContent .chatEntry .fileAttachment::before {
font-family: "Font Awesome 5 Pro";
font-weight: 400;
content: "\f15b";
cursor: pointer;
font-size: 1.8em;
}
/* Chat input field */
.channelInput { display: none; }
content .channelInput {
display: none;
width: 100%;
border-top: 1px solid rgba(0, 0, 0, 0.2);
padding: 10px;
padding-right: 0;
font-weight: bold;
box-sizing: border-box;
position: absolute;
bottom: 0;
color: #000;
overflow: hidden;
max-height: 59px;
}
content .channelInput .attachBtn label::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f0c6";
cursor: pointer;
}
content .channelInput .attachBtn input[type=file]:not([value=""]) {
color: green;
}
content .channelInput .attachBtn {
padding-left: 5px;
padding-right: 10px;
}
content .channelInput .attachBtn .detachFileBtn {
height: 20px;
width: 18px;
position: absolute;
top: 20px;
cursor: pointer;
transition: 100ms;
opacity: 1;
}
content .channelInput .attachBtn .detachFileBtn.disabled {
visibility: hidden;
opacity: 0;
}
content .channelInput .attachBtn .detachFileBtn .dot {
height: 7.5px;
width: 7.5px;
position: absolute;
bottom: 0;
right: 0;
background-color: #00baff;
border-radius: 50%;
transition: 100ms;
}
content .channelInput .attachBtn .detachFileBtn:hover .dot {
background-color: #f00;
}
content .channelInput .inputField {
width: 100%;
}
content .channelInput div {
height: 100%;
width: 100%;
display: flex;
}
content .channelInput textarea {
background-color: rgba(255, 255, 255, 0.15);
color: #000;
border-radius: 5px;
border: 0;
margin: 0;
outline: 0;
width: 100%;
box-sizing: border-box;
font-size: 11pt;
resize: none;
font-family: inherit;
}
content .channelInput textarea::placeholder {
color: rgba(0, 0, 0, 0.5);
}
content .channelInput button[type="submit"] {
background-color: rgba(0, 0, 0, 0);
color: rgba(0, 0, 0, 0.5);
border: 0;
margin: 0;
cursor: pointer;
transition: 100ms;
padding: 10px;
}
content .channelInput button[type="submit"]::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f1d8";
}
content .channelInput button[type="submit"]:hover {
color: #87da72;
}
content .channelInput .addEmojiBtn::before {
font-family: "Font Awesome 5 Pro";
font-weight: 400;
content: "\f118";
padding-right: 10px;
padding-left: 10px;
font-size: 13pt;
}
/* Member List box */
aside {
position: fixed;
width: 240px;
overflow: hidden;
top: 0;
right: -100%;
transition: 100ms;
height: 100%;
background-color: #fff;
box-sizing: border-box;
}
.openNotifs aside {
right: 0%;
}
aside .header {
width: 100%;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding: 20px;
padding-right: 0;
font-weight: 600;
box-sizing: border-box;
color: #000;
border-left: 2px solid rgba(0, 0, 0, 0.15);
padding-top: calc(var(--header-padding) + 25px);
}
aside .header > i {
display: inline-block;
opacity: 0.6;
transition: var(--transition-time);
margin-right: 15px;
display: none;
}
aside .header > i:hover {
opacity: 1;
}
aside .content {
height: calc(100% - 63px);
width: 100%;
justify-content: flex-end;
padding: 7.5px;
box-sizing: border-box;
overflow-y: auto;
border-left: 2px solid rgba(0, 0, 0, 0.15);
background-color: rgba(0, 0, 0, 0.05);
}
aside .content:empty::before {
font-family: 'Open Sans', sans-serif;
font-weight: 600;
color: #000;
opacity: 0.6;
content: "Your all caught up!";
display: flex;
justify-content: center;
}
aside .content .entry {
height: auto;
padding: 5px 10px;
box-sizing: border-box;
font-weight: 600;
color: rgba(0, 0, 0, 0.7);
transition: 100ms;
cursor: pointer;
}
aside .content .entry:hover {
color: rgba(0, 0, 0, 1);
}
::selection {
background-color: rgba(168, 206, 255, 0.45);
}
.card {
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 6px;
width: 400px;
margin-bottom: 12px;
margin-right: 12px;
float: left;
min-height: 120px;
}
.card .head {
padding: 0;
width: 100%;
background-color:rgba(0, 0, 0, 0.03);
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
padding: 6px 12px;
color: #121212;
box-sizing: border-box;
}
.card .head > i {
margin-right: 12px;
}
.card > div:not(.head) {
width: 100%;
padding: 12px 20px;
box-sizing: border-box;
}
.progressBar {
width: 100%;
height: 10px;
background-color: rgba(0, 0, 0, 0.1);
border-radius: 5px;
margin: 12px 0;
overflow: hidden;
}
.progressBar > div {
height: 100%;
width: 100%;
background-color: #00c57c;
border-radius: 5px;
}
.lightBlue { color: #3498db; }
.orange { color: #f26c63; }
.greenBlue { color: #4d9db3; }
.green { color: #4edb34; }
.gold { color: goldenrod; }
.borderOverlay {
pointer-events: none;
box-shadow: inset 0 0 0 var(--window-border) rgba(0, 0, 0, 0.25),
inset 0 calc(var(--header-height) + var(--header-padding)) 0 0 rgba(0, 0, 0, 0.05);
}
#notifsList .notif {
width: 100%;
margin: 10px 0;
box-sizing: border-box;
background-color: #fff;
height: 50px;
border-radius: 10px;
overflow: hidden;
cursor: pointer;
transition: var(--transition-time);
outline: 1px solid rgba(0, 0, 0, 0.1);
}
#notifsList .notif:hover {
background-color: rgb(225, 225, 225);
}
.notif:before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
color: rgba(0, 0, 0, 0.3);
height: 100%;
width: 35px;
content: '\f0f3';
display: inline-flex;
float: left;
justify-content: center;
align-items: center;
background-color: rgba(0, 0, 0, 0.1);
}
.notif.info:before {
content: "\f129";
background-color: rgba(8, 156, 255, 0.2);
}
.notif.warn:before {
content: "\f12a";
background-color: rgba(255, 165, 0, 0.4);
}
.notif.error:before {
content: "\f00d";
background-color: rgba(255, 0, 0, 0.4);
}
.notif.success:before {
content: "\f00c";
background-color: rgba(50, 205, 50, 0.4);
}
#notifsList .notif div {
height: 100%;
width: calc(100% - 35px);
color: #000;
float: left;
}
#notifsList .notif div > h4 {
box-sizing: border-box;
font-weight: bold;
text-overflow: ellipsis;
position: relative;
overflow: hidden;
width: 100%;
padding: 4px 10px;
font-size: 10pt;
max-width: 100%;
display: block;
white-space: nowrap;
margin: 0;
font-weight: bold;
}
#notifsList .notif div > p {
box-sizing: border-box;
font-weight: bold;
text-overflow: ellipsis;
position: relative;
overflow: hidden;
width: 100%;
padding: 0 10px;
font-size: 10pt;
max-width: 100%;
display: block;
white-space: nowrap;
margin: 0;
color: rgba(0, 0, 0, 0.5)
} | src/styles/appDefault.css | @charset "UTF-8";
.useScrollBar::-webkit-scrollbar {
width: 10px;
margin-right: 2px;
}
.useScrollBar::-webkit-scrollbar-track {
/*box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);*/
background-color: rgba(0, 0, 0, 0.15);
}
.useScrollBar::-webkit-scrollbar-thumb {
background-color: darkgrey;
outline: 1px solid slategrey;
}
/* Login Module */
body:not(.login) #loginModule {
visibility: hidden;
opacity: 0;
}
#loginModule {
background-color: rgba(33, 38, 41, var(--window-transparency));
box-shadow: inset 0 0 0px var(--window-border) rgba(255, 255, 255, 0.15),
inset 0 var(--header-height) 0 0 rgba(255, 255, 255, 0.05);
border-radius: inherit;
}
body.login .windowTitle .windowTitleText {
color: rgba(255, 255, 255, 0.8);
}
body.login .windowTitle .windowBtns div[class$="Btn"]::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f00d";
color: rgba(255, 255, 255, 0.3);
font-size: 0.6em;
transition: 100ms;
}
body.login .windowTitle .windowBtns div[class$="Btn"]:hover::before {
color: rgba(255, 255, 255, 0.8);
}
#loginModule .loginArt div.circle1 {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(#e91e63 0 1%, #ffc107 42% 100%);
clip-path: circle(11% at 30% 10%);
}
#loginModule .loginArt div.circle2 {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(#e91e63 0 42%, #ffc107 95% 100%);
clip-path: circle(10% at 63% 75%);
}
#loginModule .loginArt div.circle3 {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(#f00, #f0f);
clip-path: circle(15% at 90% 70%);
}
#loginModule .loginArt div.circle4 {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(#e91e63, #2196f3);
clip-path: circle(10% at 10% 90%);
}
#loginModule .loginFormContainer {
box-sizing: border-box;
justify-content: flex-start;
}
#loginModule .loginFormContainer h2 {
margin-top: 120px;
margin-bottom: 25px;
color: rgba(255, 255, 255, 0.8);
}
#loginModule .loginFormContainer .loginForm {
height: 300px;
}
#loginForm .dynamicInput input[type="text"],
#loginForm .dynamicInput input[type="password"],
#loginForm .dynamicInput input[type="email"] {
padding: 8px;
background-color: rgba(255, 255, 255, 0.075);
border-radius: 5px;
color: #cacaca;
outline: none;
border: 0;
width: 200px;
}
#loginForm .dynamicInput {
height: 31px;
margin: 10px 0;
transition: var(--transition-time);
margin-left: 13px;
}
#loginForm .dynamicInput.disabled input {
pointer-events: none;
color: #fff;
background-color: rgba(255, 255, 255, 0.05);
}
#loginForm .dynamicInput.showEditBtn {
margin-left: 23px;
}
#loginForm .dynamicInput .edit {
margin-left: 0px;
opacity: 0;
visibility: hidden;
cursor: pointer;
width: 13px;
transition: var(--transition-time);
}
#loginForm .dynamicInput.showEditBtn .edit {
margin-left: 10px;
cursor: pointer;
width: 13px;
opacity: 1;
visibility: visible;
}
#loginForm .edit:hover::before {
color: #2196f3;
}
#loginForm .edit::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f304";
font-size: 0.8em;
transition: var(--transition-time);
}
#loginForm .dynamicInput.hide {
height: 0px;
visibility: hidden;
opacity: 0;
}
#loginForm .dynamicInput span {
margin: 15px;
text-align: center;
font-size: 10pt;
}
#loginForm input[type="submit"] {
background-color: #2196f3;
padding: 8px 12px;
margin: 20px 0;
border-radius: 7.5px;
font-size: 10pt;
color: #fff;
border: 0;
outline: 0;
cursor: pointer;
transition: var(--transition-time);
}
#loginForm input[type="submit"]:hover {
background-color: #1b81d4;
}
/* Control Panel */
body.login #controlPanel {
visibility: hidden;
opacity: 0;
}
nav {
display: none;
height: 100%;
width: 60px;
background-color: rgba(6, 6, 6, 0.8);
position: fixed;
top: 0;
left: 0;
padding: 5px 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
padding-top: calc(var(--header-padding) + 5px);
}
nav img {
height: 40px;
width: 40px;
border-radius: 50%;
margin: 5px 10px;
background-color: rgba(255, 255, 255, 0.5);
object-fit: cover;
}
nav a {
height: 40px;
width: 40px;
border-radius: 50%;
margin: 10px 10px;
background-color: rgba(255, 255, 255, 0.3);
object-fit: cover;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: rgba(255, 255, 255, 0.8);
font-weight: 300;
overflow: hidden;
transition: 200ms;
}
nav a:not(.active) {
opacity: 0.75;
}
nav a.active {
opacity: 1;
border-radius: 40%;
cursor: default;
background-color: #7289da;
}
nav a.active div {
opacity: 1;
border-radius: 40%;
}
nav a:hover {
background-color: #7289da;
border-radius: 40%;
opacity: 1;
}
nav a div {
transition: 200ms;
}
nav a:hover div {
border-radius: 40%;
}
nav > a:nth-child(1)::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f500";
}
nav > a:nth-child(1) {
opacity: 1;
}
nav hr {
height: 2px;
width: 50%;
margin: 10px 25%;
border: 0;
background-color: rgba(255, 255, 255, 0.3);
}
nav a div {
height: 40px;
width: 40px;
position: absolute;
background-size: cover;
background-position: center center;
overflow: hidden;
border-radius: 50%;
}
nav a#addRemServer::before {
content: "+";
color: #87da72;
font-size: 2em;
}
nav a#addRemServer:hover {
background-color: #87da72;
}
nav a#addRemServer:hover::before {
content: "+";
color: rgba(255, 255, 255, 1);
font-size: 2em;
}
header {
height: 100%;
width: 240px;
background-color: rgba(43, 49, 55, var(--window-transparency));
position: fixed;
top: 0;
left: 0;
/*left: 60px;*/
padding-top: calc(var(--header-padding) + 5px);
box-sizing: border-box;
}
header .serverHeader {
width: 100%;
/*border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
padding: 20px;
padding-right: 20px;
font-weight: bold;
box-sizing: border-box;
color: #fff;
}
header .serverHeader::before { content: "Welcome "; }
header .serverHeader::after { content: "!"; }
header .serverHeader i {
float: right;
height: 16px;
width: 16px;
font-size: 1.3em;
color: rgba(0, 0, 0, 0.5);
transition: 100ms;
cursor: pointer;
}
header .serverHeader i:hover {
color: rgba(255, 255, 255, 0.8);
}
header .serverContent {
width: 100%;
height: calc(100% - 63px);
padding: 20px;
padding-top: 5px;
box-sizing: border-box;
overflow-y: scroll;
overflow-x: hidden;
background-color: rgba(0, 0, 0, 0.15);
}
.serverContent:empty::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
font-size: 2em;
content: "\f06a";
color: #fff;
opacity: 0.5;
width: 100%;
height: 40%;
box-sizing: border-box;
margin-left: 4px;
padding-bottom: 5px;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
text-align: center;
}
.serverContent:empty::after {
content: "No modules loaded";
color: #fff;
opacity: 0.5;
width: 100%;
height: auto;
box-sizing: border-box;
margin-left: 4px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
text-align: center;
}
header .serverContent .catergory:nth-child(1) {
margin-top: 10px;
}
header .serverContent .catergory {
color: rgba(255, 255, 255, 0.5);
text-transform: uppercase;
font-size: 9pt;
margin-top: 25px;
transition: 100ms;
overflow: hidden;
}
header .serverContent .catergory.hide .channel {
display: none;
}
header .serverContent .catergory.hide .channel.active {
display: block;
}
header .serverContent .catergory .title {
transition: 100ms;
cursor: pointer;
}
header .serverContent .catergory .title:hover {
color: rgba(255, 255, 255, 0.7);
}
header .serverContent .catergory .channelUnreadCount {
float: right;
}
header .serverContent .catergory .channel {
transition: 100ms;
padding: 5px 10px;
border-radius: 5px;
box-sizing: border-box;
cursor: pointer;
margin: 5px 0;
color: rgba(255, 255, 255, 0.6);
text-transform: initial;
font-size: 10pt;
}
header .serverContent .catergory .channel:hover {
background-color: rgba(255, 255, 255, 0.2);
color: rgba(255, 255, 255, 1);
}
header .serverContent .catergory .channel.active {
background-color: rgba(255, 255, 255, 0.2);
color: rgba(255, 255, 255, 1);
font-weight: 800;
cursor: default;
}
header .serverContent .catergory .channel::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: attr(icon-name);/*"\f292";*/
padding-right: 5px;
}
/* obsolete
header .serverContent .catergory .channel.overview::before { content: "\f015"; }
header .serverContent .catergory .channel.systemStatus::before { content: "\f200"; }
header .serverContent .catergory .channel.networkActivity::before { content: "\f550"; }
header .serverContent .catergory .channel.onboardGS::before { content: "\f0a0"; }
header .serverContent .catergory .channel.analytics::before { content: "\f201"; }
header .serverContent .catergory .channel.configuration::before { content: "\f0ad"; }
header .serverContent .catergory .channel.userManagement::before { content: "\f4fe"; }
header .serverContent .catergory .channel.serverManagement::before { content: "\f085"; }
header .serverContent .catergory .channel.terminal::before { content: "\f120"; }
header .serverContent .catergory .channel.logs::before { content: "\f07b"; }
*/
content {
height: 100%;
width: calc(100% - 240px); /* calc(100% - 60px - 240px) */
background-color: #fff;
position: fixed;
top: 0;
left: 240px; /* calc(60px + 240px) */
transition: 100ms;
padding-top: calc(var(--header-padding) + 5px);
box-sizing: border-box;
}
.openNotifs content {
width: calc(100% - 240px - 240px); /* calc(100% - 60px - 240px - 240px) */
}
.centerizeVertically {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.centerizeHorizontally {
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
}
content .channelHeader {
width: 100%;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding: 20px;
padding-right: 0;
font-weight: 600;
box-sizing: border-box;
color: #000;
}
content .channelHeader > i {
margin-right: 10px;
opacity: 0.6;
transition: var(--transition-time);
cursor: pointer;
display: none;
}
content .channelHeader > i:hover {
opacity: 1;
}
content .channelHeader .channelName::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: attr(icon-name);
padding-right: 5px;
}
content .channelHeader .channelName:empty:before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f054";
padding-right: 5px;
opacity: 0.5;
}
content .channelHeader .channelName:empty::after {
content: "Select Module";
opacity: 0.5;
}
content .channelHeader #savedChannelToggle {
color: rgba(0, 0, 0, 0.5);
display: inline;
margin: 5px;
font-size: 11pt;
}
content .channelHeader #savedChannelToggle i {
position: absolute;
transition: 100ms;
top: 24px;
}
content .channelHeader #savedChannelToggle:hover {
color: gold;
cursor: pointer;
}
content .channelHeader #savedChannelToggle i.checkmark {
color: gold;
}
content .channelHeader #savedChannelToggle:not(.isChecked) i.checkmark {
visibility: hidden;
opacity: 0;
}
content .channelHeader .rightSide {
float: right;
color: rgba(0, 0, 0, 0.6);
}
content .channelHeader .rightSide > i {
height: 16px;
width: 16px;
padding: 0 10px;
transition: 200ms;
}
content .channelHeader .rightSide > i:hover {
color: rgba(0, 0, 0, 0.9);
cursor: pointer;
}
content .channelHeader .rightSide .searchField {
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 5px;
margin-right: 10px;
}
content .channelHeader .rightSide .searchField table {
height: 100%;
width: 100%;
}
content .channelHeader .rightSide .searchField input[type="text"] {
border: 0;
font-size: 10pt;
outline: none;
height: 100%;
width: 100%;
margin-left: 5px;
color: rgba(0, 0, 0, 0.5);
}
content .channelHeader .rightSide .searchField button[type="submit"] {
border: 0;
background: none;
height: 100%;
width: 100%;
outline: none;
color: rgba(0, 0, 0, 0.5);
transition: 200ms;
cursor: pointer;
}
content .channelHeader .rightSide .searchField button[type="submit"]:hover {
color: rgba(0, 0, 0, 0.75);
}
content .channelHeader .rightSide .notifCount {
margin-right: 15px;
font-size: 11pt;
transition: 100ms;
cursor: pointer;
}
.openNotifs content .channelHeader .rightSide .notifCount {
color: rgba(0, 0, 0, 0.9);
}
content .channelHeader .rightSide .notifCount::before {
font-family: "Font Awesome 5 Pro";
font-weight: 400;
content: "\f0f3";
/*content: "\f007";*/
padding-right: 5px;
}
content .channelHeader .rightSide .notifCount:hover {
color: rgba(0, 0, 0, 0.9);
}
content .channelHeader .rightSide .notifCount i {
margin-right: 5px;
}
content .channelHeader .headerMenu {
position: absolute;
width: 160px;
height: 0px;
overflow: hidden;
border-radius: 5px;
box-shadow: 0 0 5px rgb(0 0 0 / 50%);
right: 5px;
top: 55px;
background-color: #fff;
transition: 100ms ease-out;
}
content .channelHeader .headerMenu.show {
height: calc(38px * 3);
}
content .channelHeader .headerMenu a {
box-sizing: border-box;
height: auto;
padding: 7.5px 10px;
padding-left: 0;
display: block;
width: calc(100% - 30px);
text-decoration: none;
color: rgba(0, 0, 0, 0.65);
border-top: 1px solid rgba(0, 0, 0, 0.1);
opacity: 0.8;
transition: var(--transition-time);
}
content .channelHeader .headerMenu a:hover {
opacity: 1;
}
content .channelHeader .headerMenu a:nth-child(1) {
border-top: 1px solid rgba(0, 0, 0, 0);
}
content .channelHeader .headerMenu a::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f0da";
padding-right: 10px;
}
content .channelHeader .headerMenu a:nth-child(1)::before { content: "\f2bd"; }
content .channelHeader .headerMenu a:nth-child(2)::before { content: "\f013"; }
content .channelHeader .headerMenu a:nth-child(3)::before { content: "\f2f5"; }
content .channelContent {
height: calc(100% - 63px); /* calc(100% - 63px - 59px) */
width: 100%;
overflow-y: auto;
padding: 10px 25px;
box-sizing: border-box;
background-color: #fafafc;
overflow: hidden scroll;
transition: 250ms;
font-family: "Open Sans Light";
}
.announcements .announceWarning {
background-color: #fac048;
border-radius: 5px;
margin-bottom: 10px;
padding: 10px 15.5px;
padding-left: 27.5px;
}
.announcements .announceWarning i {
margin: 5px 0;
transform: translateX(-10px);
}
.announcements .announceWarning i.close {
float: right;
transition: 200ms;
opacity: 0.3;
position: absolute;
/* top: 0; */
right: 52px;
}
.announceWarning i.close:hover {
opacity: 0.5;
cursor: pointer;
}
.CPPanel {
display: none;
opacity: 0;
}
.CPPanel.show {
display: block;
opacity: 1;
animation-name: CPPanelEntrance;
animation-duration: 300ms;
}
@keyframes CPPanelEntrance {
0% {
opacity: 0;
transform: translateX(-15px);
}
100% {
opacity: 1;
transform: translateX(0px);
}
}
.EntrancePage {
position: absolute;
height: 100%;
box-sizing: border-box;
padding-bottom: 25vh;
width: 100%;
opacity: 0;
visibility: none;
display: none;
transition: var(--transition-time);
}
.EntrancePage.show {
opacity: 0.6;
visibility: visible;
display: flex;
}
.EntrancePage > div { margin-bottom: 8px; }
.EntrancePage > div::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f07b";
font-size: 2em;
}
.EntrancePage > span::before {
content: "Select Module";
}
.ModuleUnloadedWarn {
position: absolute;
height: 100%;
box-sizing: border-box;
padding-bottom: 25vh;
width: 100%;
opacity: 0;
visibility: none;
display: none;
transition: var(--transition-time);
}
.ModuleUnloadedWarn.show {
opacity: 0.6;
visibility: visible;
display: flex;
}
.ModuleUnloadedWarn > div { margin-bottom: 15px; }
.ModuleUnloadedWarn > div::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f019";
font-size: 2em;
}
.ModuleUnloadedWarn > span::before {
content: "Module not found";
}
.channelContent .CPPanel h2 {
color: #404246;
font-family: "Open Sans Light" ,sans-serif;
font-weight: 300;
font-size: 1.8em;
line-height: 0.8em;
margin: 21px 0 21px;
word-break: break-word;
}
.channelContent .CPPanel > a {
font-size: 1.2em;
}
.channelContent .CPPanel > .details {
color: #686a6e;
font-size: .9em;
margin: 8px 0;
}
.channelContent .CPPanel a {
color: #488bfa;
text-decoration: none;
}
.channelContent .CPPanel a:hover {
text-decoration: underline;
}
.hasPopup {
position: relative;
display: inline-block;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* The actual popup */
.hasPopup .popup {
visibility: hidden;
/*width: 160px;*/
background-color: rgba(32, 33, 36, 0.7);
backdrop-filter: blur(5px);
color: #fff;
text-align: center;
border-radius: 6px;
padding: 12px 12px;
position: absolute;
z-index: 1;
bottom: 105%;
/*left: 50%;*/
/*margin-left: -80px;*/
opacity: 0;
transition: 150ms;
font-family: "Open Sans Light";
font-size: 11pt;
}
/* Popup arrow */
.hasPopup .popup::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: rgba(32, 33, 36, 0.7) transparent transparent transparent;
}
/* Toggle this class - hide and show the popup */
.hasPopup .show {
visibility: visible;
opacity: 1;
bottom: 125%;
}
content .channelContent .channelChats {
min-height: 100%;
width: 100%;
justify-content: flex-end;
padding: 5px;
box-sizing: border-box;
overflow-y: auto;
}
content .channelContent .chatEntry {
width: 100%;
margin: 5px;
padding: 0 15px;
padding-right: 60px;
box-sizing: border-box;
}
content .channelContent .chatEntry > span:nth-child(1) {
color: #000;
font-weight: bold;
cursor: pointer;
}
content .channelContent .chatEntry > span:nth-child(1):hover {
text-decoration: underline;
}
content .channelContent .chatEntry > span:not(:nth-child(1)) {
color: rgba(0, 0, 0, 0.5);
font-size: 0.9em;
}
content .channelContent .chatEntry div {
color: rgba(0, 0, 0, 0.8);
}
content .channelContent .chatEntry div a {
color: #00baff;
text-decoration: none;
}
content .channelContent .chatEntry .fileAttachment .fileDetails {
flex: 1;
width: 100%;
text-decoration: none;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding-left: 10px;
display: flex;
align-items: flex-start;
justify-content: center;
flex-direction: column;
transform: translateY(2px);
}
content .channelContent .chatEntry div .fileDetails .fileSize {
color: rgba(0, 0, 0, 0.55);
font-size: 0.8em;
}
content .channelContent .chatEntry div a:hover {
text-decoration: underline;
}
content .channelContent .chatEntry .fileAttachment {
background-color: rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 5px;
padding: 10px;
font-weight: 600;
box-sizing: border-box;
margin: 5px 1px;
max-width: 480px;
display: flex;
align-items: center;
justify-content: flex-start;
flex-direction: row;
}
content .channelContent .chatEntry img.fileAttachment,
content .channelContent .chatEntry video.fileAttachment {
padding: 0;
overflow: hidden;
max-height: 300px;
border: 1px solid rgb(0, 0, 0, 0.2);
box-shadow: 0 0 5px rgb(0, 0, 0, 0.5);
height: 300px;
background-color: rgba(0, 0, 0, 0.8);
}
content .channelContent .chatEntry .fileAttachment a {
color: #000;
font-weight: 400;
line-height: 0.95;
}
content .channelContent .chatEntry .fileAttachment a.downloadBtn {
float: right;
text-decoration: none;
margin-right: 5px;
}
content .channelContent .chatEntry .fileAttachment a.downloadBtn::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f019";
cursor: pointer;
font-size: 1em;
color:rgba(0, 0, 0, 0.75);
}
content .channelContent .chatEntry .fileAttachment::before {
font-family: "Font Awesome 5 Pro";
font-weight: 400;
content: "\f15b";
cursor: pointer;
font-size: 1.8em;
}
/* Chat input field */
.channelInput { display: none; }
content .channelInput {
display: none;
width: 100%;
border-top: 1px solid rgba(0, 0, 0, 0.2);
padding: 10px;
padding-right: 0;
font-weight: bold;
box-sizing: border-box;
position: absolute;
bottom: 0;
color: #000;
overflow: hidden;
max-height: 59px;
}
content .channelInput .attachBtn label::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f0c6";
cursor: pointer;
}
content .channelInput .attachBtn input[type=file]:not([value=""]) {
color: green;
}
content .channelInput .attachBtn {
padding-left: 5px;
padding-right: 10px;
}
content .channelInput .attachBtn .detachFileBtn {
height: 20px;
width: 18px;
position: absolute;
top: 20px;
cursor: pointer;
transition: 100ms;
opacity: 1;
}
content .channelInput .attachBtn .detachFileBtn.disabled {
visibility: hidden;
opacity: 0;
}
content .channelInput .attachBtn .detachFileBtn .dot {
height: 7.5px;
width: 7.5px;
position: absolute;
bottom: 0;
right: 0;
background-color: #00baff;
border-radius: 50%;
transition: 100ms;
}
content .channelInput .attachBtn .detachFileBtn:hover .dot {
background-color: #f00;
}
content .channelInput .inputField {
width: 100%;
}
content .channelInput div {
height: 100%;
width: 100%;
display: flex;
}
content .channelInput textarea {
background-color: rgba(255, 255, 255, 0.15);
color: #000;
border-radius: 5px;
border: 0;
margin: 0;
outline: 0;
width: 100%;
box-sizing: border-box;
font-size: 11pt;
resize: none;
font-family: inherit;
}
content .channelInput textarea::placeholder {
color: rgba(0, 0, 0, 0.5);
}
content .channelInput button[type="submit"] {
background-color: rgba(0, 0, 0, 0);
color: rgba(0, 0, 0, 0.5);
border: 0;
margin: 0;
cursor: pointer;
transition: 100ms;
padding: 10px;
}
content .channelInput button[type="submit"]::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f1d8";
}
content .channelInput button[type="submit"]:hover {
color: #87da72;
}
content .channelInput .addEmojiBtn::before {
font-family: "Font Awesome 5 Pro";
font-weight: 400;
content: "\f118";
padding-right: 10px;
padding-left: 10px;
font-size: 13pt;
}
/* Member List box */
aside {
position: fixed;
width: 240px;
overflow: hidden;
top: 0;
right: -100%;
transition: 100ms;
height: 100%;
background-color: #fff;
box-sizing: border-box;
}
.openNotifs aside {
right: 0%;
}
aside .header {
width: 100%;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding: 20px;
padding-right: 0;
font-weight: 600;
box-sizing: border-box;
color: #000;
border-left: 2px solid rgba(0, 0, 0, 0.15);
padding-top: calc(var(--header-padding) + 25px);
}
aside .header > i {
display: inline-block;
opacity: 0.6;
transition: var(--transition-time);
margin-right: 15px;
display: none;
}
aside .header > i:hover {
opacity: 1;
}
aside .content {
height: calc(100% - 63px);
width: 100%;
justify-content: flex-end;
padding: 7.5px;
box-sizing: border-box;
overflow-y: auto;
border-left: 2px solid rgba(0, 0, 0, 0.15);
background-color: rgba(0, 0, 0, 0.05);
}
aside .content:empty::before {
font-family: 'Open Sans', sans-serif;
font-weight: 600;
color: #000;
opacity: 0.6;
content: "Your all caught up!";
display: flex;
justify-content: center;
}
aside .content .entry {
height: auto;
padding: 5px 10px;
box-sizing: border-box;
font-weight: 600;
color: rgba(0, 0, 0, 0.7);
transition: 100ms;
cursor: pointer;
}
aside .content .entry:hover {
color: rgba(0, 0, 0, 1);
}
::selection {
background-color: rgba(168, 206, 255, 0.45);
}
.card {
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 6px;
width: 400px;
margin-bottom: 12px;
margin-right: 12px;
float: left;
min-height: 120px;
}
.card .head {
padding: 0;
width: 100%;
background-color:rgba(0, 0, 0, 0.03);
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
padding: 6px 12px;
color: #121212;
box-sizing: border-box;
}
.card .head > i {
margin-right: 12px;
}
.card > div:not(.head) {
width: 100%;
padding: 12px 20px;
box-sizing: border-box;
}
.progressBar {
width: 100%;
height: 10px;
background-color: rgba(0, 0, 0, 0.1);
border-radius: 5px;
margin: 12px 0;
overflow: hidden;
}
.progressBar > div {
height: 100%;
width: 100%;
background-color: #00c57c;
border-radius: 5px;
}
.lightBlue { color: #3498db; }
.orange { color: #f26c63; }
.greenBlue { color: #4d9db3; }
.green { color: #4edb34; }
.gold { color: goldenrod; }
.borderOverlay {
pointer-events: none;
box-shadow: inset 0 0 0 var(--window-border) rgba(0, 0, 0, 0.25),
inset 0 calc(var(--header-height) + var(--header-padding)) 0 0 rgba(0, 0, 0, 0.05);
}
#notifsList .notif {
width: 100%;
margin: 10px 0;
box-sizing: border-box;
background-color: #fff;
height: 50px;
border-radius: 10px;
overflow: hidden;
cursor: pointer;
transition: var(--transition-time);
outline: 1px solid rgba(0, 0, 0, 0.1);
}
#notifsList .notif:hover {
background-color: rgb(225, 225, 225);
}
.notif:before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
color: rgba(0, 0, 0, 0.3);
height: 100%;
width: 35px;
content: '\f0f3';
display: inline-flex;
float: left;
justify-content: center;
align-items: center;
background-color: rgba(0, 0, 0, 0.1);
}
.notif.info:before {
content: "\f129";
background-color: rgba(8, 156, 255, 0.2);
}
.notif.warn:before {
content: "\f12a";
background-color: rgba(255, 165, 0, 0.4);
}
.notif.error:before {
content: "\f00d";
background-color: rgba(255, 0, 0, 0.4);
}
.notif.success:before {
content: "\f00c";
background-color: rgba(50, 205, 50, 0.4);
}
#notifsList .notif div {
height: 100%;
width: calc(100% - 35px);
color: #000;
float: left;
}
#notifsList .notif div > h4 {
box-sizing: border-box;
font-weight: bold;
text-overflow: ellipsis;
position: relative;
overflow: hidden;
width: 100%;
padding: 4px 10px;
font-size: 10pt;
max-width: 100%;
display: block;
white-space: nowrap;
margin: 0;
font-weight: bold;
}
#notifsList .notif div > p {
box-sizing: border-box;
font-weight: bold;
text-overflow: ellipsis;
position: relative;
overflow: hidden;
width: 100%;
padding: 0 10px;
font-size: 10pt;
max-width: 100%;
display: block;
white-space: nowrap;
margin: 0;
color: rgba(0, 0, 0, 0.5)
} | 0.302803 | 0.053999 |
a.btn {
color:#585858;
position:absolute;
padding:2px;
cursor:pointer;
text-decoration:none;
font:11px "Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight:700;
text-align:center;
-webkit-border-radius:3px;
-moz-border-radius:3px;
border-radius:3px;
border:1px solid #DFDFDF;
background:#f9f9f9;
min-width: 10px;
background:-moz-linear-gradient(top,#f9f9f9 0%,#ececec 100%);
background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#f9f9f9),color-stop(100%,#ececec));
background:-webkit-linear-gradient(top,#f9f9f9 0%,#ececec 100%);
background:-o-linear-gradient(top,#f9f9f9 0%,#ececec 100%);
background:-ms-linear-gradient(top,#f9f9f9 0%,#ececec 100%);
background:linear-gradient(top,#f9f9f9 0%,#ececec 100%);
}
a.btn:hover {
color:#585858;
background:#fcfcfc;
}
.modulebuttons {
display:none;
position:absolute;
right:3px;
}
.modulebuttons.main{
top:20px;
display: block;
}
.modulebuttons a.btn {
display:inline;
position:relative;
margin:0;
height:14px;
-webkit-border-radius:0;
-moz-border-radius:0;
border-radius:0;
border-right:1px solid #f9f9f8;
}
.modulebuttons a:first-child {
-webkit-border-top-left-radius:3px;
-webkit-border-bottom-left-radius:3px;
-moz-border-radius-topleft:3px;
-moz-border-radius-bottomleft:3px;
border-top-left-radius:3px;
border-bottom-left-radius:3px;
}
.modulebuttons a:last-child {
-webkit-border-top-right-radius:3px;
-webkit-border-bottom-right-radius:3px;
-moz-border-radius-topright:3px;
-moz-border-radius-bottomright:3px;
border-top-right-radius:3px;
border-bottom-right-radius:3px;
border-right:1px solid #DFDFDF;
}
#moduleselector {
margin:0;
margin-top:5px;
list-style:none;
padding:0;
position:absolute;
right:12px;
width:130px;
display:none;
}
#moduleselector li {
height:inherit;
list-style-type:none;
margin:0;
padding:0;
}
#moduleselector li a.btn {
display:block;
width:118px;
white-space:nowrap;
overflow:hidden;
font-size:10px;
line-height:1;
padding:3px;
margin:0 2px;
float:left;
position:relative;
cursor:pointer;
z-index:20;
border:0;
-webkit-border-radius:0;
-moz-border-radius:0;
border-radius:0;
border:1px solid #DFDFDF;
border-top:1px solid #F9F9F9;
text-align:center;
box-shadow:0 2px 4px rgba(0,0,0,0.2);
-moz-box-shadow:0 2px 4px rgba(0,0,0,0.2);
-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2);
text-overflow:ellipsis;
}
#moduleselector li a.btn:hover {
background:#F9F9F9;
}
#moduleselector li:first-child,#moduleselector li:first-child a.btn {
-webkit-border-top-left-radius:3px;
-webkit-border-top-right-radius:3px;
-moz-border-radius-topleft:3px;
-moz-border-radius-topright:3px;
border-top-left-radius:3px;
border-top-right-radius:3px;
border-top:0;
}
#moduleselector li:last-child,#moduleselector li:last-child a.btn {
-webkit-border-bottom-right-radius:3px;
-webkit-border-bottom-left-radius:3px;
-moz-border-radius-bottomright:3px;
-moz-border-radius-bottomleft:3px;
border-bottom-right-radius:3px;
border-bottom-left-radius:3px;
}
.module {
display:block;
}
.module:hover {
background-image:url(../img/modulebg.png);
}
.module:hover .modulebuttons,.ie .module .modulebuttons {
display:block;
}
.module:nth-child(2) .modulebuttons a.up {
display:none;
}
.module:last-child .modulebuttons a.down {
display:none;
}
.mymail-highlight {
-webkit-box-shadow:0 0 0 4px rgba(112,112,112,0.1);
-moz-box-shadow:0 0 0 4px rgba(112,112,112,0.1);
box-shadow:0 0 0 4px rgba(112,112,112,0.1);
}
td {
background-image:none!important;
} | js/myMail/assets/css/editor-style.css | a.btn {
color:#585858;
position:absolute;
padding:2px;
cursor:pointer;
text-decoration:none;
font:11px "Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight:700;
text-align:center;
-webkit-border-radius:3px;
-moz-border-radius:3px;
border-radius:3px;
border:1px solid #DFDFDF;
background:#f9f9f9;
min-width: 10px;
background:-moz-linear-gradient(top,#f9f9f9 0%,#ececec 100%);
background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#f9f9f9),color-stop(100%,#ececec));
background:-webkit-linear-gradient(top,#f9f9f9 0%,#ececec 100%);
background:-o-linear-gradient(top,#f9f9f9 0%,#ececec 100%);
background:-ms-linear-gradient(top,#f9f9f9 0%,#ececec 100%);
background:linear-gradient(top,#f9f9f9 0%,#ececec 100%);
}
a.btn:hover {
color:#585858;
background:#fcfcfc;
}
.modulebuttons {
display:none;
position:absolute;
right:3px;
}
.modulebuttons.main{
top:20px;
display: block;
}
.modulebuttons a.btn {
display:inline;
position:relative;
margin:0;
height:14px;
-webkit-border-radius:0;
-moz-border-radius:0;
border-radius:0;
border-right:1px solid #f9f9f8;
}
.modulebuttons a:first-child {
-webkit-border-top-left-radius:3px;
-webkit-border-bottom-left-radius:3px;
-moz-border-radius-topleft:3px;
-moz-border-radius-bottomleft:3px;
border-top-left-radius:3px;
border-bottom-left-radius:3px;
}
.modulebuttons a:last-child {
-webkit-border-top-right-radius:3px;
-webkit-border-bottom-right-radius:3px;
-moz-border-radius-topright:3px;
-moz-border-radius-bottomright:3px;
border-top-right-radius:3px;
border-bottom-right-radius:3px;
border-right:1px solid #DFDFDF;
}
#moduleselector {
margin:0;
margin-top:5px;
list-style:none;
padding:0;
position:absolute;
right:12px;
width:130px;
display:none;
}
#moduleselector li {
height:inherit;
list-style-type:none;
margin:0;
padding:0;
}
#moduleselector li a.btn {
display:block;
width:118px;
white-space:nowrap;
overflow:hidden;
font-size:10px;
line-height:1;
padding:3px;
margin:0 2px;
float:left;
position:relative;
cursor:pointer;
z-index:20;
border:0;
-webkit-border-radius:0;
-moz-border-radius:0;
border-radius:0;
border:1px solid #DFDFDF;
border-top:1px solid #F9F9F9;
text-align:center;
box-shadow:0 2px 4px rgba(0,0,0,0.2);
-moz-box-shadow:0 2px 4px rgba(0,0,0,0.2);
-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2);
text-overflow:ellipsis;
}
#moduleselector li a.btn:hover {
background:#F9F9F9;
}
#moduleselector li:first-child,#moduleselector li:first-child a.btn {
-webkit-border-top-left-radius:3px;
-webkit-border-top-right-radius:3px;
-moz-border-radius-topleft:3px;
-moz-border-radius-topright:3px;
border-top-left-radius:3px;
border-top-right-radius:3px;
border-top:0;
}
#moduleselector li:last-child,#moduleselector li:last-child a.btn {
-webkit-border-bottom-right-radius:3px;
-webkit-border-bottom-left-radius:3px;
-moz-border-radius-bottomright:3px;
-moz-border-radius-bottomleft:3px;
border-bottom-right-radius:3px;
border-bottom-left-radius:3px;
}
.module {
display:block;
}
.module:hover {
background-image:url(../img/modulebg.png);
}
.module:hover .modulebuttons,.ie .module .modulebuttons {
display:block;
}
.module:nth-child(2) .modulebuttons a.up {
display:none;
}
.module:last-child .modulebuttons a.down {
display:none;
}
.mymail-highlight {
-webkit-box-shadow:0 0 0 4px rgba(112,112,112,0.1);
-moz-box-shadow:0 0 0 4px rgba(112,112,112,0.1);
box-shadow:0 0 0 4px rgba(112,112,112,0.1);
}
td {
background-image:none!important;
} | 0.205057 | 0.065038 |
@font-face {
font-family: "roboto";
src: url(fonts/Roboto-Light.ttf);
}
@font-face {
font-family: "roboto_bold";
scr: url(fonts/Roboto-Bold.ttf);
}
body {
width: 876px;
height: 627px;
background-image: url(img/bgс.png);
background-size: 100%;
margin: 0 auto;
}
.container {
width: 100%;
clear: both;
padding: 10px 35px 65px 65px;
}
.menu {
margin-top: 0px;
margin-left: 160px;
}
.menu__item {
display: inline-block;
list-style-type: none;
padding: 10px 20px 10px 20px;
font-family: "roboto";
color: white;
font-size: 12px;
}
.logo {
padding-top: 20px;
float: left;
}
/*container::before
container::after*/
/*.burger {
float: right;
margin-top: 0;
}*/
.product {
width: 752px;
height: 428px;
position: relative;
}
.card2 {
top: 0px;
left: -40px;
z-index: -1;
width: 900px;
height: 428px;
}
.card3 {
position: absolute;
top: 0px;
left: 0px;
z-index: -2;
width: 800px;
height: 428px;
}
.card-main {
position: absolute;
top: 0;
left: 0;
}
.product__name {
text-transform: uppercase;
color: white;
font-family: "roboto";
font-size: 70px;
position: absolute;
top: 60px;
left: 50px;
font-family: "roboto_bold";
}
.main-shoes {
position: absolute;
top: 85px;
left: 70px;
}
.product__information {
width: 250px;
height: 428px;
background-color: #fff;
position: absolute;
top: 0px;
right: -40px;
padding: 45px 30px 75px 30px;
box-sizing: border-box;
}
.slogan {
text-transform: uppercase;
font-size: 22px;
font-family: "roboto";
}
.new {
text-transform: uppercase;
background-color: #ffa60d;
color: white;
padding: 5px;
margin: 0;
}
.prise {
font-family: "roboto";
color: #000000;
font-size: 22px;/* Приближение из-за подстановки шрифтов */
font-weight: 300;
text-align: left;
padding: 0;
margin: 0;
}
.size {
color: black;
padding: 0;
}
.size__items {
list-style-type: none;
float: left;
padding-left: 0;
padding: 10px;
}
.size__items:hover {
border: 2px black solid;
}
.add {
background-color: #a200b8;
text-transform: uppercase;
padding: 7px;
border: none;
}
.wish {
border: #000000 1px solid;
padding: 7px 7px 7px 7px;
text-transform: uppercase;
margin-top: 20px;
} | 12/1/style.css | @font-face {
font-family: "roboto";
src: url(fonts/Roboto-Light.ttf);
}
@font-face {
font-family: "roboto_bold";
scr: url(fonts/Roboto-Bold.ttf);
}
body {
width: 876px;
height: 627px;
background-image: url(img/bgс.png);
background-size: 100%;
margin: 0 auto;
}
.container {
width: 100%;
clear: both;
padding: 10px 35px 65px 65px;
}
.menu {
margin-top: 0px;
margin-left: 160px;
}
.menu__item {
display: inline-block;
list-style-type: none;
padding: 10px 20px 10px 20px;
font-family: "roboto";
color: white;
font-size: 12px;
}
.logo {
padding-top: 20px;
float: left;
}
/*container::before
container::after*/
/*.burger {
float: right;
margin-top: 0;
}*/
.product {
width: 752px;
height: 428px;
position: relative;
}
.card2 {
top: 0px;
left: -40px;
z-index: -1;
width: 900px;
height: 428px;
}
.card3 {
position: absolute;
top: 0px;
left: 0px;
z-index: -2;
width: 800px;
height: 428px;
}
.card-main {
position: absolute;
top: 0;
left: 0;
}
.product__name {
text-transform: uppercase;
color: white;
font-family: "roboto";
font-size: 70px;
position: absolute;
top: 60px;
left: 50px;
font-family: "roboto_bold";
}
.main-shoes {
position: absolute;
top: 85px;
left: 70px;
}
.product__information {
width: 250px;
height: 428px;
background-color: #fff;
position: absolute;
top: 0px;
right: -40px;
padding: 45px 30px 75px 30px;
box-sizing: border-box;
}
.slogan {
text-transform: uppercase;
font-size: 22px;
font-family: "roboto";
}
.new {
text-transform: uppercase;
background-color: #ffa60d;
color: white;
padding: 5px;
margin: 0;
}
.prise {
font-family: "roboto";
color: #000000;
font-size: 22px;/* Приближение из-за подстановки шрифтов */
font-weight: 300;
text-align: left;
padding: 0;
margin: 0;
}
.size {
color: black;
padding: 0;
}
.size__items {
list-style-type: none;
float: left;
padding-left: 0;
padding: 10px;
}
.size__items:hover {
border: 2px black solid;
}
.add {
background-color: #a200b8;
text-transform: uppercase;
padding: 7px;
border: none;
}
.wish {
border: #000000 1px solid;
padding: 7px 7px 7px 7px;
text-transform: uppercase;
margin-top: 20px;
} | 0.400984 | 0.073099 |
img {
border: none;
background: rgba(255, 255, 255, 0);
box-shadow: none;
}
a,
button,
input {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
outline: none;
}
* {
margin: 0;
padding: 0;
font-family: "微软雅黑";
}
ul {
list-style: none;
}
a {
text-decoration: none;
color: #000;
outline: none
}
input[type=button],
input[type=submit],
input[type=file],
button {
cursor: pointer;
-webkit-appearance: none;
}
input {
font-family: "微软雅黑";
appearance: none;
border: none;
border-radius: 0;
background-color: rgba(0, 0, 0, 0);
-webkit-border-radius: 0;
-webkit-border: none;
outline: none
}
textarea {
outline: none;
resize: none;
font-family: "微软雅黑";
appearance: none;
border: none;
border-radius: 0;
-webkit-border-radius: 0;
-webkit-border: none;
-webkit-appearance: none;
text-align: center;
}
:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: #999;
}
::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
color: #999;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
color: #999;
}
select {
width: 100%;
height: 50px;
font-size: 16px;
/*Chrome同Firefox与IE里面的右侧三角显示的样式不同*/
border: none;
/*将默认的select选择框样式清除*/
outline: none;
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
padding-right: 14px;
background-color: rgba(0, 0, 0, 0);
background-image: url(../img_bak/triangle-down-B.png);
background-repeat: no-repeat;
background-size: 10px 10px;
background-position: right center;
/*如果要加入自定义图片, 就增加这个属性 background: url或者在html中直接加入图标也行*/
}
/*---------------*/
.divHide {
display: none;
}
.colorRed {
color: #f50000;
}
.colorWhite {
color: #ffffff;
}
.colorOrange {
color: #ED5C14;
}
.colorGrey {
color: #999999;
}
.colorBlue {
color: blue;
}
.colorBlack {
color: black;
}
.bkcolorGREY {
background-color: #F4F4F4;
}
.bkcolorBLUE {
background-color: blue;
}
.bkcolorORANGE {
background-color: #ED5C14;
}
.bkcolorBlak{
background: #161a23;
}
.inpttext {
width: 100%;
height: 100%;
font-size: 16px;
}
.inptbtn {
width: 100%;
height: 100%;
font-size: 16px;
text-align: center;
}
.textBold {
font-weight: bold;
}
.step {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background-color: #f4f4f4;
overflow: hidden;
}
.step>div {
background-color: #ed5c14;
}
.step-01 {
width: 12.5%;
}
.step-02 {
width: 25%;
}
.step-03 {
width: 37.5%;
}
.step-04 {
width: 50%;
}
.step-05 {
width: 62.5%;
}
.step-06 {
width: 75%;
}
.step-07 {
width: 87.5%;
}
.step-08 {
width: 100%;
}
.title-b {
padding: 10px;
font-size: 20px;
height: 30px;
line-height: 30px;
font-weight: bold;
}
.spanTJ {
display: inline-block;
height: 14px;
line-height: 14px;
padding: 0px 3px;
border-radius: 2px;
margin-left: 5px;
font-size: 8px;
}
/*正式样式*/
.banner {
width: 100%;
overflow: hidden;
}
.banner>img {
width: 100%;
}
.title {
padding: 10px;
overflow: hidden;
}
.title>div {
float: left;
height: 40px;
line-height: 40px;
font-size: 24px;
}
.logo {
width: 40px;
margin-right: 10px;
overflow: hidden;
}
.logo img {
width: 100%;
height: 100%;
}
.process {
padding-left: 10px;
padding-right: 10px;
}
.process-top {
margin-left: 30px;
width: 20px;
overflow: hidden;
}
.process-top img {
width: 100%;
}
.process-bow {
width: 100%;
height: 6px;
background-color: #ebebeb;
border-radius: 20px;
}
.process-bow div {
width: 20%;
height: 6px;
background-color: #ed5c14;
border-radius: 20px;
}
.title-name {
margin-top: 10px;
padding: 10px;
font-size: 16px;
}
.phone {
padding: 0px 10px;
height: 50px;
background-color: #f4f4f4;
position: relative;
overflow: hidden;
}
.phone-country {
position: absolute;
left: 10px;
top: 0;
width: 80px;
overflow: hidden;
}
.phone-country>select {
width: 80px;
background-image: url(../img/triangle-down.png);
}
.phone-num {
margin-left: 95px;
height: 100%;
}
.phone-num input {
width: 100%;
height: 100%;
font-size: 16px;
background-color: #f4f4f4;
margin-right: 175px;
}
.phone-btn {
position: absolute;
right: 0;
top: 0;
overflow: hidden;
}
.phone-btn {
position: absolute;
right: 10px;
top: 0;
height: 100%;
overflow: hidden;
}
.phone-btn>input {
background-color: #f4f4f4;
font-size: 16px;
color: #ed5c14;
height: 100%;
}
.phone-btn>div {
line-height: 50px;
font-size: 16px;
color: #999;
height: 100%;
}
.errors {
padding: 10px;
position: relative;
overflow: hidden;
}
.errors-img {
position: absolute;
top: 9px;
left: 10px;
overflow: hidden;
}
.errors-img>img {
width: 14px;
height: 14px;
}
.errors-text {
margin-left: 18px;
font-size: 12px;
line-height: 18px;
}
.errors-text02 {
font-size: 12px;
padding: 5px 10px;
}
.rule-01 {
padding: 5px 10px;
position: relative;
overflow: hidden;
}
.rule-01-left {
position: absolute;
top: 5px;
left: 10px;
width: 20px;
height: 20px;
overflow: hidden;
}
.rule-01-left>img {
width: 100%;
height: 100%;
}
.rule-01-right {
margin-left: 24px;
font-size: 14px;
line-height: 20px;
color: #999;
}
.box-01 {
padding-bottom: 50px;
margin-top: 75px;
border-top: 5px solid #f4f4f4;
text-align: center;
}
.box-01-bth {
margin: 40px 10px 20px 10px;
height: 40px;
border-radius: 3px;
background-color: #ed5c14;
overflow: hidden;
}
.box-01-a {
font-size: 12px;
color: #999;
}
/*-----*/
.box-select {
position: relative;
overflow: hidden;
height: 50px;
border-bottom: solid 1px #e4e2e2;
}
.box-select-left {
position: absolute;
top: 0;
left: 10px;
line-height: 50px;
font-size: 16px;
color: #515151;
}
.box-select-right {
margin-left: 140px;
margin-right: 10px;
overflow: hidden;
}
.box-select-right>select {
background-color: #fff;
}
.box-select02 {
margin-left: 10px;
position: relative;
overflow: hidden;
height: 50px;
border-bottom: solid 1px #e4e2e2;
}
.box-select02-left {
position: absolute;
top: 0;
left: 0;
line-height: 50px;
width: 130px;
font-size: 16px;
color: #515151;
}
.box-select02-right {
height: 100%;
margin-left: 140px;
margin-right: 10px;
overflow: hidden;
}
.bow-bth-01 {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
overflow: hidden;
}
.text-01 {
padding: 0px 10px;
line-height: 20px;
position: relative;
overflow: hidden;
}
.text-01>input[type="checkbox"] {
position: absolute;
top: 18px;
left: 0;
width: 14px;
height: 14px;
text-align: center;
vertical-align: middle;
line-height: 14px;
margin-right: 10px;
position: relative;
border: none;
-webkit-appearance: none;
/*去除默认样式*/
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
-ms-appearance: none;
}
.text-01>input[type="checkbox"]::before {
content: "";
position: absolute;
top: 0;
left: 0;
background: #fff;
width: 100%;
height: 100%;
border: none;
border-radius: none;
background-image: url(../img/square-line.png);
background-repeat: no-repeat;
background-size: 14px 14px;
background-position: center;
}
.text-01>input[type="checkbox"]:checked::before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
background: #fff;
border-radius: none;
background-image: url(../img/select-square.png);
background-repeat: no-repeat;
background-size: 14px 14px;
outline: none;
background-position: center;
}
.text-01>label {
font-size: 12px;
display: block;
margin-left: 24px;
overflow: hidden;
}
.text-02 {
padding: 0px 10px;
font-size: 14px;
}
.matop {
margin-top: 10px;
}
/*---*/
.maleft {
margin-left: 10px;
}
.maright {
margin-right: 10px;
}
.mabottomt {
margin-bottom: 10px;
}
.matop {
margin-top: 10px;
}
.matop30 {
margin-top: 30px;
}
.IDcard {
margin-top: 20px;
overflow: hidden;
}
.IDcard-box {
position: relative;
margin: 0 auto;
width: 240px;
height: 144px;
overflow: hidden;
background-color: #f1f1f1;
border-radius: 5px;
border: solid 1px #e4e2e2;
text-align: center;
}
.IDcard-box-img {
height: 144px;
}
.IDcard-box-img-02 {
margin-top: 10px;
width: 220px;
height: 124px;
}
.file0 {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
}
.statement {
position: absolute;
top: 0;
right: 0;
width: 75px;
height: 75px;
}
.statement>img {
width: 100%;
height: 100%;
}
.camera {
position: absolute;
bottom: 5px;
right: 5px;
width: 40px;
height: 40px;
border-radius: 150px;
background-color: rgba(0, 0, 0, 0.5);
overflow: hidden;
text-align: center;
}
.camera>img {
margin-top: 5px;
width: 30px;
height: 30px;
}
.passpot-requirement{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding-bottom: 30px;
overflow: hidden;
background-color: #FFFFFF;
}
.requirement {
margin-top: 60px;
overflow: hidden;
}
.requirement>ul {
margin-top: 10px;
margin-right: 10px;
overflow: hidden;
}
.requirement>ul>li {
float: left;
width: 25%;
overflow: hidden;
}
.requirement>ul>li>div {
margin-left: 10px;
overflow: hidden;
}
.requirement-box01 {
overflow: hidden;
}
.requirement-box01>img {
width: 100%;
}
.requirement-box02 {
margin-top: 5px;
text-align: center;
font-size: 12px;
}
.requirement-box02>img {
width: 12px;
height: 12x;
margin-right: 5px;
margin-bottom: -1px;
}
.tow-btn {
position: relative;
padding: 30px 10px 50px 10px;
overflow: hidden;
}
.left-btn {
position: absolute;
top: 30px;
left: 10px;
height: 40px;
width: 150px;
border: solid 1px #e4e2e2;
box-sizing: border-box;
background-color: #FFFFFF;
}
.right-btn {
margin-left: 160px;
height: 40px;
}
.right-btn>input {
background-color: #ED5C14;
color: #FFFFFF;
}
/*----*/
.alert01 {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
overflow: hidden;
}
.alert01-box {
position: absolute;
top: 50%;
left: 50%;
margin-left: -150px;
border-radius: 10px;
width: 300px;
background-color: #FFFFFF;
}
.alert01-title {
padding-top: 20px;
margin-bottom: 20px;
font-size: 18px;
font-weight: bold;
text-align: center;
}
.alert01-content {
padding: 0px 20px;
margin-bottom: 20px;
}
.alert01-bth01 {
border-top: solid 1px #E4E2E2;
height: 50px;
overflow: hidden;
}
.alert01-bth02 {
border-top: solid 1px #E4E2E2;
height: 50px;
overflow: hidden;
}
.alert01-bth02>input {
float: left;
width: 50%;
height: 30px;
margin-top: 10px;
}
.alert01-bth02>input:first-of-type {
border-right: solid 1px #E4E2E2;
margin-left: -1px;
}
/*------------*/
.tips-01 {
margin: 20px;
position: relative;
overflow: hidden;
}
.tips-01-left {
position: absolute;
top: 0;
left: 0;
width: 50px;
height: 50px;
border-radius: 50px;
background-color: #ED5C14;
text-align: center;
overflow: hidden;
}
.tips-01-left>img {
margin-top: 10px;
width: 30px;
height: 30px;
}
.tips-01-right {
margin-left: 60px;
font-size: 14px;
line-height: 25px;
}
.tips-Bold {
font-weight: bold;
font-size: 18px;
}
.tips-box {
padding-bottom: 20px;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
text-align: center;
font-size: 14px;
background-color: #FFFFFF;
}
.tips-box .box-01-bth {
margin-bottom: 10px;
}
/*-----*/
.box-textarea {
margin-left: 10px;
position: relative;
overflow: hidden;
border-bottom: solid 1px #e4e2e2;
}
.box-textarea-left {
position: absolute;
top: 0;
left: 0;
height: 50px;
line-height: 50px;
font-size: 16px;
color: #515151;
}
.box-textarea-right {
margin-left: 140px;
margin-right: 10px;
overflow: hidden;
}
.box-textarea-right>textarea {
padding: 10px 0px;
text-align: left;
width: 100%;
font-size: 16px;
line-height: 24px;
min-height: 48px;
overflow: hidden;
}
.box-select02-right>select option {
color: #000000;
}
.padBottom {
padding-bottom: 2px;
}
/*--------*/
.selectImg {
background-image: url(../img/triangle-down.png);
}
.padBottom82 {
padding-bottom: 92px;
}
.addIncome {
padding: 10px;
font-size: 14px;
overflow: hidden;
}
.addIncome>div>img {
width: 14px;
margin-right: 5px;
margin-bottom: -2px;
}
.addIncome-left {
float: left;
}
.addIncome-right {
float: right;
}
.boxAlert01 {
padding: 10px;
font-size: 16px;
line-height: 40px;
margin-left: 20px;
margin-right: 20px;
border-radius: 5px;
overflow: hidden;
background-color: #F1F1F1;
}
.boxAlert01>img {
height: 18px;
margin-bottom: -3px;
margin-right: 5px;
}
/*--------*/
.box-select03 {
margin-left: 10px;
position: relative;
overflow: hidden;
height: 50px;
border-bottom: solid 1px #e4e2e2;
}
.box-select03-left {
position: absolute;
top: 0;
left: 0;
line-height: 50px;
font-size: 16px;
color: #515151;
}
.box-select03-right {
height: 100%;
margin-left: 140px;
margin-right: 10px;
overflow: hidden;
}
.imgText {
background-image: url(../img/triangle-down-B.png);
background-position: right center;
background-repeat: no-repeat;
background-size: 10px 10px;
height: 100%;
line-height: 50px;
font-size: 16px;
overflow: hidden;
}
.imgText>div {
float: left;
overflow: hidden;
}
.imgText-icon {
margin-right: 5px;
margin-top: 15px;
width: 20px;
height: 20px;
border-radius: 40px;
text-align: center;
}
.imgText-icon>img {
width: 16px;
margin-bottom: 12px;
}
.boxAlert02 {
position: relative;
padding: 10px 10px;
border-top: solid 1px #E4E2E2;
overflow: hidden;
}
.iconAlert {
position: absolute;
top: 10px;
left: 10px;
width: 30px;
height: 30px;
text-align: center;
border-radius: 30px;
overflow: hidden;
}
.iconAlert>img {
margin-top: 5px;
width: 20px;
height: 20px;
}
.textAlert {
margin-left: 40px;
}
.textAlert>div:first-of-type {
font-size: 18px;
line-height: 30px;
}
.textAlert>div:last-of-type {
font-size: 14px;
margin-right: 30px;
}
.inputRadio {
position: absolute;
top: 10px;
right: 10px;
}
.inputRadio>input[type="radio"] {
position: absolute;
top: 0;
left: 0;
width: 20px;
height: 20px;
text-align: center;
vertical-align: middle;
line-height: 20px;
position: relative;
border: none;
-webkit-appearance: none;
/*去除默认样式*/
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
-ms-appearance: none;
}
.inputRadio>input[type="radio"]::before {
content: "";
position: absolute;
top: 0;
left: 0;
background: #fff;
width: 100%;
height: 100%;
border: none;
border-radius: none;
background-image: url(../img/unselected.png);
background-repeat: no-repeat;
background-size: 20px 20px;
background-position: center;
}
.inputRadio>input[type="radio"]:checked::before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
background: #fff;
border-radius: none;
background-image: url(../img/select-g.png);
background-repeat: no-repeat;
background-size: 20px 20px;
outline: none;
background-position: center;
}
.text-03 {
margin-left: 10px;
margin-right: 10px;
font-size: 16px;
}
.imgText-icon02 {
margin-left: 5px;
margin-left: 5px;
margin-bottom: -2px;
width: 16px;
}
.radioTow {
padding: 10px;
overflow: hidden;
}
.radioTow>li {
float: left;
width: 50%;
height: 50px;
line-height: 50px;
text-align: center;
}
.radioTow>li>input[type="radio"] {
position: absolute;
top: -1px;
left: -5px;
width: 20px;
height: 20px;
text-align: center;
vertical-align: middle;
line-height: 20px;
position: relative;
border: none;
-webkit-appearance: none;
/*去除默认样式*/
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
-ms-appearance: none;
}
.radioTow>li>input[type="radio"]::before {
content: "";
position: absolute;
top: 0;
left: 0;
background: #fff;
width: 100%;
height: 100%;
border: none;
border-radius: none;
background-image: url(../img/unselected.png);
background-repeat: no-repeat;
background-size: 20px 20px;
background-position: center;
}
.radioTow>li>input[type="radio"]:checked::before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
background: #fff;
border-radius: none;
background-image: url(../img/select-g.png);
background-repeat: no-repeat;
background-size: 20px 20px;
outline: none;
background-position: center;
}
.box-select04 {
margin-left: 10px;
position: relative;
overflow: hidden;
height: 50px;
border-bottom: solid 1px #e4e2e2;
}
.box-select04-left {
position: absolute;
top: 0;
left: 0;
width: 130px;
font-size: 16px;
color: #515151;
}
.box-select04-right {
height: 50px;
margin-left: 140px;
margin-right: 10px;
overflow: hidden;
}
.box-select04-right>select option {
color: #000000;
}
/*---------------------*/
.box-02 {
position: relative;
margin: 0 10px;
border-radius: 5px;
border: solid 1px #E4E2E2;
}
.box-02>.inputRadio>input[type="radio"] {
position: absolute;
top: -1px;
left: -5px;
width: 20px;
height: 20px;
text-align: center;
vertical-align: middle;
line-height: 20px;
position: relative;
border: none;
-webkit-appearance: none;
/*去除默认样式*/
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
-ms-appearance: none;
}
.box-02>.inputRadio>input[type="radio"]::before {
content: "";
position: absolute;
top: 0;
left: 0;
background: #F4F4F4;
width: 100%;
height: 100%;
border: none;
border-radius: none;
background-image: url(../img/unselected.png);
background-repeat: no-repeat;
background-size: 20px 20px;
background-position: center;
}
.box-02>.inputRadio>input[type="radio"]:checked::before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
background: #F4F4F4;
border-radius: none;
background-image: url(../img/select-g.png);
background-repeat: no-repeat;
background-size: 20px 20px;
outline: none;
background-position: center;
}
.QI-box {
position: relative;
margin: 0px 10px;
padding: 15px 0px;
border-bottom: solid 1px #E4E2E2;
overflow: hidden;
}
.QI-box>li:first-of-type {
position: absolute;
top: 50%;
left: 0;
margin-top: -25px;
width: 150px;
text-align: center;
}
.QI {
margin: 0 auto;
width: 30px;
height: 30px;
border-radius: 3px;
overflow: hidden;
}
.QI>img {
width: 100%;
height: 100%;
}
.QIneme {
font-size: 16px;
}
.text-04 {
line-height: 26px;
font-size: 16px;
}
.QI-box>li:last-of-type {
margin-left: 150px;
}
.borBottom {
border-bottom: solid 1px #E4E2E2;
}
.text-05 {
font-size: 12px;
}
.box-02>ul:last-of-type {
border: none;
}
/*------------*/
.commissionBox {
position: relative;
margin: 0 10px;
height: 170px;
border: solid 1px #E4E2E2;
background-image: url(../img/add-b.png);
background-position: center;
background-repeat: no-repeat;
background-size: 40px 40px;
}
.commissionBox>.text-06 {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
z-index: 2;
}
.text-06 {
height: 30px;
line-height: 30px;
text-align: center;
font-size: 14px;
}
.commission {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #FFFFFF;
overflow: hidden;
}
.commission>img {
width: 100%;
height: 100%;
}
.commissionAlert {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #FFFFFF;
overflow: hidden;
z-index: 9;
}
.commissionAlertBox {
height: 100%;
margin-left: 100px;
}
.commissionAlert-btn {
position: absolute;
top: 50%;
left: 0;
margin-top: -45px;
margin-left: -100px;
transform: rotate(90deg);
-ms-transform: rotate(90deg);
/* IE 9 */
-moz-transform: rotate(90deg);
/* Firefox */
-webkit-transform: rotate(90deg);
/* Safari 和 Chrome */
-o-transform: rotate(90deg);
/* Opera */
}
.commissionAlert-btn>ul {
width: 300px;
margin: 0 auto;
padding-bottom: 10px;
overflow: hidden;
}
.commissionAlert-btn>ul>li {
float: left;
margin-top: 10px;
width: 140px;
height: 40px;
overflow: hidden;
}
.commissionAlert-btn>ul>li:first-of-type {
border: solid 1px #E4E2E2;
background-color: #FFFFFF;
box-sizing: border-box;
margin-right: 20px;
}
.commissionAlert-btn>ul>li:last-of-type {
background-color: #ED5C14;
box-sizing: border-box;
}
/*------------------*/
.endBox01{
margin: 20px 10px;
text-align: center;
font-size: 20px;
font-weight: bold;
}
.endBox01 > img{
width: 80px;
}
.textCnt{
text-align: center;
}
.endBox02{
margin-left: 20px;
}
.endBox02 > li:first-of-type{
padding-left: 20px;
font-size: 16px;
background-image: url(../img/circular-line.png);
background-position: left center;
background-repeat: no-repeat;
background-size: 10px 10px;
}
.endBox02 > li:last-of-type{
padding-left: 15px;
height: 50px;
line-height: 30px;
font-size: 12px;
margin-left: 5px;
border-left: solid 1px #ED5C14;
box-sizing: border-box;
}
.endBox03{
margin-left: 20px;
}
.endBox03 > li:first-of-type{
padding-left: 20px;
font-size: 16px;
background-image: url(../img/circular.png);
background-position: left center;
background-repeat: no-repeat;
background-size: 10px 10px;
}
.endBox03 > li:last-of-type{
padding-left: 15px;
height: 50px;
line-height: 30px;
font-size: 12px;
margin-left: 5px;
border-left: solid 1px #E4E2E2;
box-sizing: border-box;
}
/*---------订单类型说明----------*/
.explain-body{
background-color: #F4F4F4;
width: 100%;
line-height: 20px;
color: #333333;
overflow: hidden;
padding-bottom: 10px;
}
.exp-box{
background-color: #FFFFFF;
padding: 10px;
border-bottom: solid 1px #E6E6E6;
margin-bottom: 10px;
}
.exp-box h3{
height: 20px;
line-height: 20px;
font-size: 20px;
font-weight: 400;
padding:0px 10px;
border-left: solid 4px #ED5C14;
margin: 20px 0;
overflow: hidden;
}
.exp-p{
font-size: 12px;
color: #666666;
}
.exp-box h4{
font-size: 12px;
color: #666666;
}
.exp-ul{
font-size: 12px;
color: #666666;
}
.exp-span{
margin-left: 6px;
margin-right: 6px;
}
.exp-picture{
text-align: center;
padding: 20px 0px;
}
.exp-picture>img{
width: 75%;
border-radius: 6px;
border: solid 1px #e6e6e6;
}
/*--------转入资金---------*/
.by-box{
padding: 10px;
width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.banner-box{
width: 100%;
overflow: hidden;
}
.banner-box>a{
position: relative;
display: block;
width: 100%;
border-radius: 5px;
overflow: hidden;
}
.banner-img{
display: block;
padding: 0px;
margin: 0px;
width: 100%;
}
.banner-logo{
position: absolute;
top: 22%;
left: 10px;
height: 24%;
}
.banner-logo>img{
height: 100%;
}
.banner-text{
position: absolute;
bottom: 22%;
left: 10px;
height: 20%;
}
.banner-text>img{
height: 100%;
}
.rec-title{
font-size: 18px;
line-height: 60px;
color: #333333;
}
.rec-a{
border-radius: 5px;
border: solid 1px #E6E6E6;
box-sizing: border-box;
overflow: hidden;
}
.rec-a>a{
display: block;
position: relative;
padding: 20px 10px;
overflow: hidden;
}
.rec-a>a .lf{
position: absolute;
top: 50%;
left: 10px;
margin-top: -25px;
width: 50px;
height: 50px;
overflow: hidden;
}
.rec-a>a .lf>img{
width: 100%;
height: 100%;
}
.rec-a>a .cnt{
margin-left: 60px;
margin-right: 30px;
}
.rec-a>a .cnt>.til{
font-size: 16px;
color: #333333;
}
.rec-a>a .cnt>.text{
font-size: 12px;
color: #666666;
}
.rec-a>a .rig{
position: absolute;
top: 50%;
right: 10px;
margin-top: -10px;
width: 20px;
height: 20px;
overflow: hidden;
}
.rec-a>a .rig>img{
width: 100%;
height: 100%;
}
.rec-remarks{
font-size: 12px;
color: #666666;
}
.rec-remarks>strong{
color: #333333;
}
.navlf{
position: fixed;
right: 10px;
bottom: 20px;
width: 60px;
height: 60px;
border-radius: 60px;
background-color: #FFFFFF;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
overflow: hidden;
z-index: 1;
}
.navlf.act{
height: 180px;
animation-name: DH01;
animation-duration: 0.2s;
}
.navlf.onact{
height: 60px;
animation-name: DH02;
animation-duration: 0.2s;
}
@keyframes DH01{
0% {
height: 60px;
}
100% {
height: 180px;
}
}
@keyframes DH02{
0% {
height: 180px;
}
100% {
height: 60px;
}
}
.navlf>li{
height: 60px;
text-align: center;
overflow: hidden;
}
.navlf>li:nth-of-type(2){
margin-top: 15px;
}
.navlf>li>a>div:first-of-type{
height: 31px;
}
.navlf>li>a>div:first-of-type>img{
margin-top: 5px;
height: 26px;
}
.navlf>li>a>div:last-of-type{
font-size: 12px;
color: #333333;
}
.navlf>.off{
height: 40px;
}
.navlf>.off>a{
display: block;
width: 100%;
height: 100%;
overflow: hidden;
}
.navlf>.off>a>img{
margin-top: 12px;
width: 16px;
}
/*----------通知收款------------*/
.rec-box>h2,
.rec-box>div,
.rec-box>ul{
padding: 0px 10px;
}
.rec-ul{
position: relative;
overflow: hidden;
}
.rec-ul>li{
border-bottom: solid 1px #E6E6E6;
}
.rec-ul>li:first-of-type{
position: absolute;
top: 0px;
left: 10px;
height: 60px;
line-height: 60px;
width: 100px;
font-size: 16px;
color: #333333;
}
.rec-ul>li:last-of-type{
margin-left: 100px;
padding-left: 10px;
overflow: hidden;
}
.rec-ul>li:last-of-type>input{
width: 100%;
height: 60px;
line-height: 60px;
text-align: left;
font-size: 16px;
padding: 0px 10px;
box-sizing: border-box;
color: #333333;
}
.rec-ul>li:last-of-type>input.sel{
color: #999999;
}
.rec-ul>li:last-of-type>input[type=button]{
background-image: url(../img/triangle-down-B.png);
background-position: right center;
background-repeat: no-repeat;
background-size: 14px 14px;
}
.wor-text{
display: none;
line-height: 30px;
font-size: 12px;
color: #ED5C14;
background-color: #fcf0e4;
overflow: hidden;
}
.rec-box.wor .wor-text{
display: block;
}
.wor-text>img{
height: 16px;
margin-right: 5px;
margin-bottom: -2px;
}
.rec-box .rec-remarks.bkcolorGREY{
line-height: 30px;
}
.rec-box.wor .rec-remarks.bkcolorGREY{
display: none;
}
.rec-bth{
position: fixed;
left: 10%;
bottom: 20px;
width: 80%;
height: 6%;
border-radius: 100px;
background-color: #ED5C14;
overflow: hidden;
z-index: 1;
}
.rec-bth>input{
width: 100%;
height: 100%;
font-size: 16px;
color: #FFFFFF;
}
.rec-alt{
display: none;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: hidden;
background-color: rgba(0,0,0,0.2);
z-index: 2;
}
.rec-alt.act{
display: block;
}
.rec-alt>.box{
position: absolute;
left: 0;
bottom: 0;
width: 100%;
border-radius: 12px 12px 0px 0px;
background-color: #FFFFFF;
}
.rec-alt>.box>.top{
position: relative;
line-height: 60px;
font-size: 18px;
text-align: center;
overflow: hidden;
}
.rec-alt>.box>.top>.off{
position: absolute;
top: 0px;
left: 0px;
width: 60px;
height: 60px;
font-size: 16px;
color: #666666;
}
.tab-nav{
overflow: hidden;
}
.tab-nav>li{
float: left;
height: 60px;
line-height: 60px;
text-align: center;
width: 50%;
font-size: 16px;
color: #666666;
border-bottom: solid 2px #E6E6E6;
overflow: hidden;
}
.tab-nav>li.act{
color: #ED5C14;
border-color: #ED5C14;
}
.tab-box{
max-height: 260px;
padding-bottom: 20px;
overflow-x: hidden;
}
.tab-list{
display: none;
padding: 0px 10px;
overflow: hidden;
}
.tab-list.act{
display: block;
}
.tab-list>input{
display: block;
width: 100%;
height: 50px;
text-align: left;
font-size: 16px;
}
.tab-list>input.act{
color: #ED5C14;
background-image: url(../img/icon_act.png);
background-position: right center;
background-repeat: no-repeat;
background-size: 16px 16px;
}
.rec-alt .list{
border-top: solid 1px #E6E6E6;
padding-left: 10px;
padding-right: 10px;
max-height: 260px;
padding-bottom: 20px;
overflow-x: hidden;
}
.rec-alt .list>input{
display: block;
width: 100%;
height: 50px;
text-align: left;
font-size: 16px;
}
.rec-alt .list>input.act{
color: #ED5C14;
background-image: url(../img/icon_act.png);
background-position: right center;
background-repeat: no-repeat;
background-size: 16px 16px;
}
.box02{
position: absolute;
left: 50%;
top: 50%;
width: 80%;
max-width: 300px;
text-align: center;
transform: translate(-50%, -50%);
border-radius: 12px;
background-color: #FFFFFF;
padding: 20px;
box-sizing: border-box;
overflow: hidden;
}
.box02 .picture>img{
width: 30%;
}
.box02 .rec-remarks{
line-height: 20px;
padding: 15px 10px;
}
.box02 .bthbox{
padding: 0px 10px;
box-sizing: border-box;
overflow: hidden;
}
.box02 .bthbox>input{
display: block;
width: 100%;
height: 50px;
font-size: 16px;
color: #FFFFFF;
border-radius: 5px;
background-color: #ED5C14;
}
/*------入金记录-------*/
.rec-table{
width: 100%;
color: rgba(255,255,255,0.8);
}
.rec-table tr th,
.rec-table tr td{
border-bottom: solid 1px #0e121b;
}
.rec-table th,
.rec-table td{
text-align: left;
font-size: 16px;
font-weight: normal;
padding: 15px 10px 15px 0px;
box-sizing: border-box;
}
.rec-table tr th:first-of-type,
.rec-table tr td:first-of-type{
min-width: 120px;
padding-left: 10px;
}
.rec-table tr th:last-of-type,
.rec-table tr td:last-of-type{
min-width: 80px;
text-align: right;
}
.rec-table tr:last-of-type td{
border-bottom:none;
}
.p-day{
font-size: 16px;
}
.p-time{
line-height: 24px;
font-size: 12px;
}
.box03{
position: absolute;
left: 50%;
top: 50%;
width: 80%;
text-align: center;
transform: translate(-50%, -50%);
border-radius: 12px;
background-color: #FFFFFF;
padding: 10px;
box-sizing: border-box;
overflow: hidden;
}
.rec-alt.bakcolor04{
background-color: rgba(0,0,0,0.4);
}
.box03.bkcolorBlak{
background: #202633;
padding-bottom: 50px;
}
.box03.bkcolorBlak h2{
font-size: 20px;
color: rgba(255,255,255,0.8);
padding-bottom: 15px;
}
.alt-table{
width: 100%;
color: rgba(255,255,255,0.8);
text-align: left;
font-size: 14px;
overflow: hidden;
}
.alt-table tr td{
padding-bottom: 15px;
box-sizing: border-box;
}
.alt-table tr td:first-of-type{
min-width: 60px;
}
.alt-table tr td:last-of-type{
text-align: right;
padding-left: 10px;
}
.box03 .bthbox{
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 50px;
border-top: solid 1px #0e121b;
}
.box03 .bthbox>input{
display: block;
width: 100%;
height: 50px;
font-size: 16px;
border-radius: 5px;
color: #ED5C14;
} | frontend/web/css/css.css |
img {
border: none;
background: rgba(255, 255, 255, 0);
box-shadow: none;
}
a,
button,
input {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
outline: none;
}
* {
margin: 0;
padding: 0;
font-family: "微软雅黑";
}
ul {
list-style: none;
}
a {
text-decoration: none;
color: #000;
outline: none
}
input[type=button],
input[type=submit],
input[type=file],
button {
cursor: pointer;
-webkit-appearance: none;
}
input {
font-family: "微软雅黑";
appearance: none;
border: none;
border-radius: 0;
background-color: rgba(0, 0, 0, 0);
-webkit-border-radius: 0;
-webkit-border: none;
outline: none
}
textarea {
outline: none;
resize: none;
font-family: "微软雅黑";
appearance: none;
border: none;
border-radius: 0;
-webkit-border-radius: 0;
-webkit-border: none;
-webkit-appearance: none;
text-align: center;
}
:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: #999;
}
::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
color: #999;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
color: #999;
}
select {
width: 100%;
height: 50px;
font-size: 16px;
/*Chrome同Firefox与IE里面的右侧三角显示的样式不同*/
border: none;
/*将默认的select选择框样式清除*/
outline: none;
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
padding-right: 14px;
background-color: rgba(0, 0, 0, 0);
background-image: url(../img_bak/triangle-down-B.png);
background-repeat: no-repeat;
background-size: 10px 10px;
background-position: right center;
/*如果要加入自定义图片, 就增加这个属性 background: url或者在html中直接加入图标也行*/
}
/*---------------*/
.divHide {
display: none;
}
.colorRed {
color: #f50000;
}
.colorWhite {
color: #ffffff;
}
.colorOrange {
color: #ED5C14;
}
.colorGrey {
color: #999999;
}
.colorBlue {
color: blue;
}
.colorBlack {
color: black;
}
.bkcolorGREY {
background-color: #F4F4F4;
}
.bkcolorBLUE {
background-color: blue;
}
.bkcolorORANGE {
background-color: #ED5C14;
}
.bkcolorBlak{
background: #161a23;
}
.inpttext {
width: 100%;
height: 100%;
font-size: 16px;
}
.inptbtn {
width: 100%;
height: 100%;
font-size: 16px;
text-align: center;
}
.textBold {
font-weight: bold;
}
.step {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background-color: #f4f4f4;
overflow: hidden;
}
.step>div {
background-color: #ed5c14;
}
.step-01 {
width: 12.5%;
}
.step-02 {
width: 25%;
}
.step-03 {
width: 37.5%;
}
.step-04 {
width: 50%;
}
.step-05 {
width: 62.5%;
}
.step-06 {
width: 75%;
}
.step-07 {
width: 87.5%;
}
.step-08 {
width: 100%;
}
.title-b {
padding: 10px;
font-size: 20px;
height: 30px;
line-height: 30px;
font-weight: bold;
}
.spanTJ {
display: inline-block;
height: 14px;
line-height: 14px;
padding: 0px 3px;
border-radius: 2px;
margin-left: 5px;
font-size: 8px;
}
/*正式样式*/
.banner {
width: 100%;
overflow: hidden;
}
.banner>img {
width: 100%;
}
.title {
padding: 10px;
overflow: hidden;
}
.title>div {
float: left;
height: 40px;
line-height: 40px;
font-size: 24px;
}
.logo {
width: 40px;
margin-right: 10px;
overflow: hidden;
}
.logo img {
width: 100%;
height: 100%;
}
.process {
padding-left: 10px;
padding-right: 10px;
}
.process-top {
margin-left: 30px;
width: 20px;
overflow: hidden;
}
.process-top img {
width: 100%;
}
.process-bow {
width: 100%;
height: 6px;
background-color: #ebebeb;
border-radius: 20px;
}
.process-bow div {
width: 20%;
height: 6px;
background-color: #ed5c14;
border-radius: 20px;
}
.title-name {
margin-top: 10px;
padding: 10px;
font-size: 16px;
}
.phone {
padding: 0px 10px;
height: 50px;
background-color: #f4f4f4;
position: relative;
overflow: hidden;
}
.phone-country {
position: absolute;
left: 10px;
top: 0;
width: 80px;
overflow: hidden;
}
.phone-country>select {
width: 80px;
background-image: url(../img/triangle-down.png);
}
.phone-num {
margin-left: 95px;
height: 100%;
}
.phone-num input {
width: 100%;
height: 100%;
font-size: 16px;
background-color: #f4f4f4;
margin-right: 175px;
}
.phone-btn {
position: absolute;
right: 0;
top: 0;
overflow: hidden;
}
.phone-btn {
position: absolute;
right: 10px;
top: 0;
height: 100%;
overflow: hidden;
}
.phone-btn>input {
background-color: #f4f4f4;
font-size: 16px;
color: #ed5c14;
height: 100%;
}
.phone-btn>div {
line-height: 50px;
font-size: 16px;
color: #999;
height: 100%;
}
.errors {
padding: 10px;
position: relative;
overflow: hidden;
}
.errors-img {
position: absolute;
top: 9px;
left: 10px;
overflow: hidden;
}
.errors-img>img {
width: 14px;
height: 14px;
}
.errors-text {
margin-left: 18px;
font-size: 12px;
line-height: 18px;
}
.errors-text02 {
font-size: 12px;
padding: 5px 10px;
}
.rule-01 {
padding: 5px 10px;
position: relative;
overflow: hidden;
}
.rule-01-left {
position: absolute;
top: 5px;
left: 10px;
width: 20px;
height: 20px;
overflow: hidden;
}
.rule-01-left>img {
width: 100%;
height: 100%;
}
.rule-01-right {
margin-left: 24px;
font-size: 14px;
line-height: 20px;
color: #999;
}
.box-01 {
padding-bottom: 50px;
margin-top: 75px;
border-top: 5px solid #f4f4f4;
text-align: center;
}
.box-01-bth {
margin: 40px 10px 20px 10px;
height: 40px;
border-radius: 3px;
background-color: #ed5c14;
overflow: hidden;
}
.box-01-a {
font-size: 12px;
color: #999;
}
/*-----*/
.box-select {
position: relative;
overflow: hidden;
height: 50px;
border-bottom: solid 1px #e4e2e2;
}
.box-select-left {
position: absolute;
top: 0;
left: 10px;
line-height: 50px;
font-size: 16px;
color: #515151;
}
.box-select-right {
margin-left: 140px;
margin-right: 10px;
overflow: hidden;
}
.box-select-right>select {
background-color: #fff;
}
.box-select02 {
margin-left: 10px;
position: relative;
overflow: hidden;
height: 50px;
border-bottom: solid 1px #e4e2e2;
}
.box-select02-left {
position: absolute;
top: 0;
left: 0;
line-height: 50px;
width: 130px;
font-size: 16px;
color: #515151;
}
.box-select02-right {
height: 100%;
margin-left: 140px;
margin-right: 10px;
overflow: hidden;
}
.bow-bth-01 {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
overflow: hidden;
}
.text-01 {
padding: 0px 10px;
line-height: 20px;
position: relative;
overflow: hidden;
}
.text-01>input[type="checkbox"] {
position: absolute;
top: 18px;
left: 0;
width: 14px;
height: 14px;
text-align: center;
vertical-align: middle;
line-height: 14px;
margin-right: 10px;
position: relative;
border: none;
-webkit-appearance: none;
/*去除默认样式*/
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
-ms-appearance: none;
}
.text-01>input[type="checkbox"]::before {
content: "";
position: absolute;
top: 0;
left: 0;
background: #fff;
width: 100%;
height: 100%;
border: none;
border-radius: none;
background-image: url(../img/square-line.png);
background-repeat: no-repeat;
background-size: 14px 14px;
background-position: center;
}
.text-01>input[type="checkbox"]:checked::before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
background: #fff;
border-radius: none;
background-image: url(../img/select-square.png);
background-repeat: no-repeat;
background-size: 14px 14px;
outline: none;
background-position: center;
}
.text-01>label {
font-size: 12px;
display: block;
margin-left: 24px;
overflow: hidden;
}
.text-02 {
padding: 0px 10px;
font-size: 14px;
}
.matop {
margin-top: 10px;
}
/*---*/
.maleft {
margin-left: 10px;
}
.maright {
margin-right: 10px;
}
.mabottomt {
margin-bottom: 10px;
}
.matop {
margin-top: 10px;
}
.matop30 {
margin-top: 30px;
}
.IDcard {
margin-top: 20px;
overflow: hidden;
}
.IDcard-box {
position: relative;
margin: 0 auto;
width: 240px;
height: 144px;
overflow: hidden;
background-color: #f1f1f1;
border-radius: 5px;
border: solid 1px #e4e2e2;
text-align: center;
}
.IDcard-box-img {
height: 144px;
}
.IDcard-box-img-02 {
margin-top: 10px;
width: 220px;
height: 124px;
}
.file0 {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
}
.statement {
position: absolute;
top: 0;
right: 0;
width: 75px;
height: 75px;
}
.statement>img {
width: 100%;
height: 100%;
}
.camera {
position: absolute;
bottom: 5px;
right: 5px;
width: 40px;
height: 40px;
border-radius: 150px;
background-color: rgba(0, 0, 0, 0.5);
overflow: hidden;
text-align: center;
}
.camera>img {
margin-top: 5px;
width: 30px;
height: 30px;
}
.passpot-requirement{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding-bottom: 30px;
overflow: hidden;
background-color: #FFFFFF;
}
.requirement {
margin-top: 60px;
overflow: hidden;
}
.requirement>ul {
margin-top: 10px;
margin-right: 10px;
overflow: hidden;
}
.requirement>ul>li {
float: left;
width: 25%;
overflow: hidden;
}
.requirement>ul>li>div {
margin-left: 10px;
overflow: hidden;
}
.requirement-box01 {
overflow: hidden;
}
.requirement-box01>img {
width: 100%;
}
.requirement-box02 {
margin-top: 5px;
text-align: center;
font-size: 12px;
}
.requirement-box02>img {
width: 12px;
height: 12x;
margin-right: 5px;
margin-bottom: -1px;
}
.tow-btn {
position: relative;
padding: 30px 10px 50px 10px;
overflow: hidden;
}
.left-btn {
position: absolute;
top: 30px;
left: 10px;
height: 40px;
width: 150px;
border: solid 1px #e4e2e2;
box-sizing: border-box;
background-color: #FFFFFF;
}
.right-btn {
margin-left: 160px;
height: 40px;
}
.right-btn>input {
background-color: #ED5C14;
color: #FFFFFF;
}
/*----*/
.alert01 {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
overflow: hidden;
}
.alert01-box {
position: absolute;
top: 50%;
left: 50%;
margin-left: -150px;
border-radius: 10px;
width: 300px;
background-color: #FFFFFF;
}
.alert01-title {
padding-top: 20px;
margin-bottom: 20px;
font-size: 18px;
font-weight: bold;
text-align: center;
}
.alert01-content {
padding: 0px 20px;
margin-bottom: 20px;
}
.alert01-bth01 {
border-top: solid 1px #E4E2E2;
height: 50px;
overflow: hidden;
}
.alert01-bth02 {
border-top: solid 1px #E4E2E2;
height: 50px;
overflow: hidden;
}
.alert01-bth02>input {
float: left;
width: 50%;
height: 30px;
margin-top: 10px;
}
.alert01-bth02>input:first-of-type {
border-right: solid 1px #E4E2E2;
margin-left: -1px;
}
/*------------*/
.tips-01 {
margin: 20px;
position: relative;
overflow: hidden;
}
.tips-01-left {
position: absolute;
top: 0;
left: 0;
width: 50px;
height: 50px;
border-radius: 50px;
background-color: #ED5C14;
text-align: center;
overflow: hidden;
}
.tips-01-left>img {
margin-top: 10px;
width: 30px;
height: 30px;
}
.tips-01-right {
margin-left: 60px;
font-size: 14px;
line-height: 25px;
}
.tips-Bold {
font-weight: bold;
font-size: 18px;
}
.tips-box {
padding-bottom: 20px;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
text-align: center;
font-size: 14px;
background-color: #FFFFFF;
}
.tips-box .box-01-bth {
margin-bottom: 10px;
}
/*-----*/
.box-textarea {
margin-left: 10px;
position: relative;
overflow: hidden;
border-bottom: solid 1px #e4e2e2;
}
.box-textarea-left {
position: absolute;
top: 0;
left: 0;
height: 50px;
line-height: 50px;
font-size: 16px;
color: #515151;
}
.box-textarea-right {
margin-left: 140px;
margin-right: 10px;
overflow: hidden;
}
.box-textarea-right>textarea {
padding: 10px 0px;
text-align: left;
width: 100%;
font-size: 16px;
line-height: 24px;
min-height: 48px;
overflow: hidden;
}
.box-select02-right>select option {
color: #000000;
}
.padBottom {
padding-bottom: 2px;
}
/*--------*/
.selectImg {
background-image: url(../img/triangle-down.png);
}
.padBottom82 {
padding-bottom: 92px;
}
.addIncome {
padding: 10px;
font-size: 14px;
overflow: hidden;
}
.addIncome>div>img {
width: 14px;
margin-right: 5px;
margin-bottom: -2px;
}
.addIncome-left {
float: left;
}
.addIncome-right {
float: right;
}
.boxAlert01 {
padding: 10px;
font-size: 16px;
line-height: 40px;
margin-left: 20px;
margin-right: 20px;
border-radius: 5px;
overflow: hidden;
background-color: #F1F1F1;
}
.boxAlert01>img {
height: 18px;
margin-bottom: -3px;
margin-right: 5px;
}
/*--------*/
.box-select03 {
margin-left: 10px;
position: relative;
overflow: hidden;
height: 50px;
border-bottom: solid 1px #e4e2e2;
}
.box-select03-left {
position: absolute;
top: 0;
left: 0;
line-height: 50px;
font-size: 16px;
color: #515151;
}
.box-select03-right {
height: 100%;
margin-left: 140px;
margin-right: 10px;
overflow: hidden;
}
.imgText {
background-image: url(../img/triangle-down-B.png);
background-position: right center;
background-repeat: no-repeat;
background-size: 10px 10px;
height: 100%;
line-height: 50px;
font-size: 16px;
overflow: hidden;
}
.imgText>div {
float: left;
overflow: hidden;
}
.imgText-icon {
margin-right: 5px;
margin-top: 15px;
width: 20px;
height: 20px;
border-radius: 40px;
text-align: center;
}
.imgText-icon>img {
width: 16px;
margin-bottom: 12px;
}
.boxAlert02 {
position: relative;
padding: 10px 10px;
border-top: solid 1px #E4E2E2;
overflow: hidden;
}
.iconAlert {
position: absolute;
top: 10px;
left: 10px;
width: 30px;
height: 30px;
text-align: center;
border-radius: 30px;
overflow: hidden;
}
.iconAlert>img {
margin-top: 5px;
width: 20px;
height: 20px;
}
.textAlert {
margin-left: 40px;
}
.textAlert>div:first-of-type {
font-size: 18px;
line-height: 30px;
}
.textAlert>div:last-of-type {
font-size: 14px;
margin-right: 30px;
}
.inputRadio {
position: absolute;
top: 10px;
right: 10px;
}
.inputRadio>input[type="radio"] {
position: absolute;
top: 0;
left: 0;
width: 20px;
height: 20px;
text-align: center;
vertical-align: middle;
line-height: 20px;
position: relative;
border: none;
-webkit-appearance: none;
/*去除默认样式*/
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
-ms-appearance: none;
}
.inputRadio>input[type="radio"]::before {
content: "";
position: absolute;
top: 0;
left: 0;
background: #fff;
width: 100%;
height: 100%;
border: none;
border-radius: none;
background-image: url(../img/unselected.png);
background-repeat: no-repeat;
background-size: 20px 20px;
background-position: center;
}
.inputRadio>input[type="radio"]:checked::before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
background: #fff;
border-radius: none;
background-image: url(../img/select-g.png);
background-repeat: no-repeat;
background-size: 20px 20px;
outline: none;
background-position: center;
}
.text-03 {
margin-left: 10px;
margin-right: 10px;
font-size: 16px;
}
.imgText-icon02 {
margin-left: 5px;
margin-left: 5px;
margin-bottom: -2px;
width: 16px;
}
.radioTow {
padding: 10px;
overflow: hidden;
}
.radioTow>li {
float: left;
width: 50%;
height: 50px;
line-height: 50px;
text-align: center;
}
.radioTow>li>input[type="radio"] {
position: absolute;
top: -1px;
left: -5px;
width: 20px;
height: 20px;
text-align: center;
vertical-align: middle;
line-height: 20px;
position: relative;
border: none;
-webkit-appearance: none;
/*去除默认样式*/
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
-ms-appearance: none;
}
.radioTow>li>input[type="radio"]::before {
content: "";
position: absolute;
top: 0;
left: 0;
background: #fff;
width: 100%;
height: 100%;
border: none;
border-radius: none;
background-image: url(../img/unselected.png);
background-repeat: no-repeat;
background-size: 20px 20px;
background-position: center;
}
.radioTow>li>input[type="radio"]:checked::before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
background: #fff;
border-radius: none;
background-image: url(../img/select-g.png);
background-repeat: no-repeat;
background-size: 20px 20px;
outline: none;
background-position: center;
}
.box-select04 {
margin-left: 10px;
position: relative;
overflow: hidden;
height: 50px;
border-bottom: solid 1px #e4e2e2;
}
.box-select04-left {
position: absolute;
top: 0;
left: 0;
width: 130px;
font-size: 16px;
color: #515151;
}
.box-select04-right {
height: 50px;
margin-left: 140px;
margin-right: 10px;
overflow: hidden;
}
.box-select04-right>select option {
color: #000000;
}
/*---------------------*/
.box-02 {
position: relative;
margin: 0 10px;
border-radius: 5px;
border: solid 1px #E4E2E2;
}
.box-02>.inputRadio>input[type="radio"] {
position: absolute;
top: -1px;
left: -5px;
width: 20px;
height: 20px;
text-align: center;
vertical-align: middle;
line-height: 20px;
position: relative;
border: none;
-webkit-appearance: none;
/*去除默认样式*/
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
-ms-appearance: none;
}
.box-02>.inputRadio>input[type="radio"]::before {
content: "";
position: absolute;
top: 0;
left: 0;
background: #F4F4F4;
width: 100%;
height: 100%;
border: none;
border-radius: none;
background-image: url(../img/unselected.png);
background-repeat: no-repeat;
background-size: 20px 20px;
background-position: center;
}
.box-02>.inputRadio>input[type="radio"]:checked::before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
background: #F4F4F4;
border-radius: none;
background-image: url(../img/select-g.png);
background-repeat: no-repeat;
background-size: 20px 20px;
outline: none;
background-position: center;
}
.QI-box {
position: relative;
margin: 0px 10px;
padding: 15px 0px;
border-bottom: solid 1px #E4E2E2;
overflow: hidden;
}
.QI-box>li:first-of-type {
position: absolute;
top: 50%;
left: 0;
margin-top: -25px;
width: 150px;
text-align: center;
}
.QI {
margin: 0 auto;
width: 30px;
height: 30px;
border-radius: 3px;
overflow: hidden;
}
.QI>img {
width: 100%;
height: 100%;
}
.QIneme {
font-size: 16px;
}
.text-04 {
line-height: 26px;
font-size: 16px;
}
.QI-box>li:last-of-type {
margin-left: 150px;
}
.borBottom {
border-bottom: solid 1px #E4E2E2;
}
.text-05 {
font-size: 12px;
}
.box-02>ul:last-of-type {
border: none;
}
/*------------*/
.commissionBox {
position: relative;
margin: 0 10px;
height: 170px;
border: solid 1px #E4E2E2;
background-image: url(../img/add-b.png);
background-position: center;
background-repeat: no-repeat;
background-size: 40px 40px;
}
.commissionBox>.text-06 {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
z-index: 2;
}
.text-06 {
height: 30px;
line-height: 30px;
text-align: center;
font-size: 14px;
}
.commission {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #FFFFFF;
overflow: hidden;
}
.commission>img {
width: 100%;
height: 100%;
}
.commissionAlert {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #FFFFFF;
overflow: hidden;
z-index: 9;
}
.commissionAlertBox {
height: 100%;
margin-left: 100px;
}
.commissionAlert-btn {
position: absolute;
top: 50%;
left: 0;
margin-top: -45px;
margin-left: -100px;
transform: rotate(90deg);
-ms-transform: rotate(90deg);
/* IE 9 */
-moz-transform: rotate(90deg);
/* Firefox */
-webkit-transform: rotate(90deg);
/* Safari 和 Chrome */
-o-transform: rotate(90deg);
/* Opera */
}
.commissionAlert-btn>ul {
width: 300px;
margin: 0 auto;
padding-bottom: 10px;
overflow: hidden;
}
.commissionAlert-btn>ul>li {
float: left;
margin-top: 10px;
width: 140px;
height: 40px;
overflow: hidden;
}
.commissionAlert-btn>ul>li:first-of-type {
border: solid 1px #E4E2E2;
background-color: #FFFFFF;
box-sizing: border-box;
margin-right: 20px;
}
.commissionAlert-btn>ul>li:last-of-type {
background-color: #ED5C14;
box-sizing: border-box;
}
/*------------------*/
.endBox01{
margin: 20px 10px;
text-align: center;
font-size: 20px;
font-weight: bold;
}
.endBox01 > img{
width: 80px;
}
.textCnt{
text-align: center;
}
.endBox02{
margin-left: 20px;
}
.endBox02 > li:first-of-type{
padding-left: 20px;
font-size: 16px;
background-image: url(../img/circular-line.png);
background-position: left center;
background-repeat: no-repeat;
background-size: 10px 10px;
}
.endBox02 > li:last-of-type{
padding-left: 15px;
height: 50px;
line-height: 30px;
font-size: 12px;
margin-left: 5px;
border-left: solid 1px #ED5C14;
box-sizing: border-box;
}
.endBox03{
margin-left: 20px;
}
.endBox03 > li:first-of-type{
padding-left: 20px;
font-size: 16px;
background-image: url(../img/circular.png);
background-position: left center;
background-repeat: no-repeat;
background-size: 10px 10px;
}
.endBox03 > li:last-of-type{
padding-left: 15px;
height: 50px;
line-height: 30px;
font-size: 12px;
margin-left: 5px;
border-left: solid 1px #E4E2E2;
box-sizing: border-box;
}
/*---------订单类型说明----------*/
.explain-body{
background-color: #F4F4F4;
width: 100%;
line-height: 20px;
color: #333333;
overflow: hidden;
padding-bottom: 10px;
}
.exp-box{
background-color: #FFFFFF;
padding: 10px;
border-bottom: solid 1px #E6E6E6;
margin-bottom: 10px;
}
.exp-box h3{
height: 20px;
line-height: 20px;
font-size: 20px;
font-weight: 400;
padding:0px 10px;
border-left: solid 4px #ED5C14;
margin: 20px 0;
overflow: hidden;
}
.exp-p{
font-size: 12px;
color: #666666;
}
.exp-box h4{
font-size: 12px;
color: #666666;
}
.exp-ul{
font-size: 12px;
color: #666666;
}
.exp-span{
margin-left: 6px;
margin-right: 6px;
}
.exp-picture{
text-align: center;
padding: 20px 0px;
}
.exp-picture>img{
width: 75%;
border-radius: 6px;
border: solid 1px #e6e6e6;
}
/*--------转入资金---------*/
.by-box{
padding: 10px;
width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.banner-box{
width: 100%;
overflow: hidden;
}
.banner-box>a{
position: relative;
display: block;
width: 100%;
border-radius: 5px;
overflow: hidden;
}
.banner-img{
display: block;
padding: 0px;
margin: 0px;
width: 100%;
}
.banner-logo{
position: absolute;
top: 22%;
left: 10px;
height: 24%;
}
.banner-logo>img{
height: 100%;
}
.banner-text{
position: absolute;
bottom: 22%;
left: 10px;
height: 20%;
}
.banner-text>img{
height: 100%;
}
.rec-title{
font-size: 18px;
line-height: 60px;
color: #333333;
}
.rec-a{
border-radius: 5px;
border: solid 1px #E6E6E6;
box-sizing: border-box;
overflow: hidden;
}
.rec-a>a{
display: block;
position: relative;
padding: 20px 10px;
overflow: hidden;
}
.rec-a>a .lf{
position: absolute;
top: 50%;
left: 10px;
margin-top: -25px;
width: 50px;
height: 50px;
overflow: hidden;
}
.rec-a>a .lf>img{
width: 100%;
height: 100%;
}
.rec-a>a .cnt{
margin-left: 60px;
margin-right: 30px;
}
.rec-a>a .cnt>.til{
font-size: 16px;
color: #333333;
}
.rec-a>a .cnt>.text{
font-size: 12px;
color: #666666;
}
.rec-a>a .rig{
position: absolute;
top: 50%;
right: 10px;
margin-top: -10px;
width: 20px;
height: 20px;
overflow: hidden;
}
.rec-a>a .rig>img{
width: 100%;
height: 100%;
}
.rec-remarks{
font-size: 12px;
color: #666666;
}
.rec-remarks>strong{
color: #333333;
}
.navlf{
position: fixed;
right: 10px;
bottom: 20px;
width: 60px;
height: 60px;
border-radius: 60px;
background-color: #FFFFFF;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
overflow: hidden;
z-index: 1;
}
.navlf.act{
height: 180px;
animation-name: DH01;
animation-duration: 0.2s;
}
.navlf.onact{
height: 60px;
animation-name: DH02;
animation-duration: 0.2s;
}
@keyframes DH01{
0% {
height: 60px;
}
100% {
height: 180px;
}
}
@keyframes DH02{
0% {
height: 180px;
}
100% {
height: 60px;
}
}
.navlf>li{
height: 60px;
text-align: center;
overflow: hidden;
}
.navlf>li:nth-of-type(2){
margin-top: 15px;
}
.navlf>li>a>div:first-of-type{
height: 31px;
}
.navlf>li>a>div:first-of-type>img{
margin-top: 5px;
height: 26px;
}
.navlf>li>a>div:last-of-type{
font-size: 12px;
color: #333333;
}
.navlf>.off{
height: 40px;
}
.navlf>.off>a{
display: block;
width: 100%;
height: 100%;
overflow: hidden;
}
.navlf>.off>a>img{
margin-top: 12px;
width: 16px;
}
/*----------通知收款------------*/
.rec-box>h2,
.rec-box>div,
.rec-box>ul{
padding: 0px 10px;
}
.rec-ul{
position: relative;
overflow: hidden;
}
.rec-ul>li{
border-bottom: solid 1px #E6E6E6;
}
.rec-ul>li:first-of-type{
position: absolute;
top: 0px;
left: 10px;
height: 60px;
line-height: 60px;
width: 100px;
font-size: 16px;
color: #333333;
}
.rec-ul>li:last-of-type{
margin-left: 100px;
padding-left: 10px;
overflow: hidden;
}
.rec-ul>li:last-of-type>input{
width: 100%;
height: 60px;
line-height: 60px;
text-align: left;
font-size: 16px;
padding: 0px 10px;
box-sizing: border-box;
color: #333333;
}
.rec-ul>li:last-of-type>input.sel{
color: #999999;
}
.rec-ul>li:last-of-type>input[type=button]{
background-image: url(../img/triangle-down-B.png);
background-position: right center;
background-repeat: no-repeat;
background-size: 14px 14px;
}
.wor-text{
display: none;
line-height: 30px;
font-size: 12px;
color: #ED5C14;
background-color: #fcf0e4;
overflow: hidden;
}
.rec-box.wor .wor-text{
display: block;
}
.wor-text>img{
height: 16px;
margin-right: 5px;
margin-bottom: -2px;
}
.rec-box .rec-remarks.bkcolorGREY{
line-height: 30px;
}
.rec-box.wor .rec-remarks.bkcolorGREY{
display: none;
}
.rec-bth{
position: fixed;
left: 10%;
bottom: 20px;
width: 80%;
height: 6%;
border-radius: 100px;
background-color: #ED5C14;
overflow: hidden;
z-index: 1;
}
.rec-bth>input{
width: 100%;
height: 100%;
font-size: 16px;
color: #FFFFFF;
}
.rec-alt{
display: none;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: hidden;
background-color: rgba(0,0,0,0.2);
z-index: 2;
}
.rec-alt.act{
display: block;
}
.rec-alt>.box{
position: absolute;
left: 0;
bottom: 0;
width: 100%;
border-radius: 12px 12px 0px 0px;
background-color: #FFFFFF;
}
.rec-alt>.box>.top{
position: relative;
line-height: 60px;
font-size: 18px;
text-align: center;
overflow: hidden;
}
.rec-alt>.box>.top>.off{
position: absolute;
top: 0px;
left: 0px;
width: 60px;
height: 60px;
font-size: 16px;
color: #666666;
}
.tab-nav{
overflow: hidden;
}
.tab-nav>li{
float: left;
height: 60px;
line-height: 60px;
text-align: center;
width: 50%;
font-size: 16px;
color: #666666;
border-bottom: solid 2px #E6E6E6;
overflow: hidden;
}
.tab-nav>li.act{
color: #ED5C14;
border-color: #ED5C14;
}
.tab-box{
max-height: 260px;
padding-bottom: 20px;
overflow-x: hidden;
}
.tab-list{
display: none;
padding: 0px 10px;
overflow: hidden;
}
.tab-list.act{
display: block;
}
.tab-list>input{
display: block;
width: 100%;
height: 50px;
text-align: left;
font-size: 16px;
}
.tab-list>input.act{
color: #ED5C14;
background-image: url(../img/icon_act.png);
background-position: right center;
background-repeat: no-repeat;
background-size: 16px 16px;
}
.rec-alt .list{
border-top: solid 1px #E6E6E6;
padding-left: 10px;
padding-right: 10px;
max-height: 260px;
padding-bottom: 20px;
overflow-x: hidden;
}
.rec-alt .list>input{
display: block;
width: 100%;
height: 50px;
text-align: left;
font-size: 16px;
}
.rec-alt .list>input.act{
color: #ED5C14;
background-image: url(../img/icon_act.png);
background-position: right center;
background-repeat: no-repeat;
background-size: 16px 16px;
}
.box02{
position: absolute;
left: 50%;
top: 50%;
width: 80%;
max-width: 300px;
text-align: center;
transform: translate(-50%, -50%);
border-radius: 12px;
background-color: #FFFFFF;
padding: 20px;
box-sizing: border-box;
overflow: hidden;
}
.box02 .picture>img{
width: 30%;
}
.box02 .rec-remarks{
line-height: 20px;
padding: 15px 10px;
}
.box02 .bthbox{
padding: 0px 10px;
box-sizing: border-box;
overflow: hidden;
}
.box02 .bthbox>input{
display: block;
width: 100%;
height: 50px;
font-size: 16px;
color: #FFFFFF;
border-radius: 5px;
background-color: #ED5C14;
}
/*------入金记录-------*/
.rec-table{
width: 100%;
color: rgba(255,255,255,0.8);
}
.rec-table tr th,
.rec-table tr td{
border-bottom: solid 1px #0e121b;
}
.rec-table th,
.rec-table td{
text-align: left;
font-size: 16px;
font-weight: normal;
padding: 15px 10px 15px 0px;
box-sizing: border-box;
}
.rec-table tr th:first-of-type,
.rec-table tr td:first-of-type{
min-width: 120px;
padding-left: 10px;
}
.rec-table tr th:last-of-type,
.rec-table tr td:last-of-type{
min-width: 80px;
text-align: right;
}
.rec-table tr:last-of-type td{
border-bottom:none;
}
.p-day{
font-size: 16px;
}
.p-time{
line-height: 24px;
font-size: 12px;
}
.box03{
position: absolute;
left: 50%;
top: 50%;
width: 80%;
text-align: center;
transform: translate(-50%, -50%);
border-radius: 12px;
background-color: #FFFFFF;
padding: 10px;
box-sizing: border-box;
overflow: hidden;
}
.rec-alt.bakcolor04{
background-color: rgba(0,0,0,0.4);
}
.box03.bkcolorBlak{
background: #202633;
padding-bottom: 50px;
}
.box03.bkcolorBlak h2{
font-size: 20px;
color: rgba(255,255,255,0.8);
padding-bottom: 15px;
}
.alt-table{
width: 100%;
color: rgba(255,255,255,0.8);
text-align: left;
font-size: 14px;
overflow: hidden;
}
.alt-table tr td{
padding-bottom: 15px;
box-sizing: border-box;
}
.alt-table tr td:first-of-type{
min-width: 60px;
}
.alt-table tr td:last-of-type{
text-align: right;
padding-left: 10px;
}
.box03 .bthbox{
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 50px;
border-top: solid 1px #0e121b;
}
.box03 .bthbox>input{
display: block;
width: 100%;
height: 50px;
font-size: 16px;
border-radius: 5px;
color: #ED5C14;
} | 0.287668 | 0.050611 |
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
margin: 0;
padding: 0;
text-decoration: none;
color: #1D3461;
font-family: 'swap', 'Helvetica Neue', sans-serif;
}
body{
background-color: #F6E8EA;
}
header{
background-color: white;
display: grid;
list-style: none;
padding: 5px;
grid-template-columns: 1fr 2fr 1fr 1fr 1fr 1fr 1fr 1fr ;
}
#search{
width: 20px;
}
#logo{
height: 50px;
}
form{
line-height: 50px;
}
input{
width: 230px;
height: 35px;
border-radius: 3px;
border: none;
background-color: #EEF3F8;
padding-left: 50px;
}
#icon{
width: 20px;
position: absolute;
}
li{
font-size: 12px;
color: #1D3461;
text-align: center;
}
svg{
position: relative;
height: 30px;
width: 30px;
left: 50%;
transform: translate( -50% );
fill: #77a6e9;
}
#svg1, #li1{
color: #53daa4f1;
fill: #53daa4f1;
}
a:hover li{
color: #26C485;
}
a:hover svg{
fill: #26C485;
}
a.menu{
display: inline-block;
list-style: none;
}
#patrocinado{
margin-top: 10px;
margin-right: 50px;
border-radius: 5px;
position: fixed;
right: 0;
width: 150px;
height: 85vh;
object-fit: cover;
}
h4{
position: fixed;
color: #26C485;
margin-top: 10px;
margin-right: 50px;
right: 0;
width: 150px;
text-align: center;
font-weight: normal;
}
article:hover h2 {
color: #c4747a;
}
section{
margin-top: 10px;
margin-left: 50px;
width: 80%;
}
aside:hover h4{
color: #F6E8EA;
font-weight: 500;
}
article{
display: inline-block;
border-radius: 3px;
width: 320px;
height: 300px;
box-shadow: 1px 1px 5px gray;
margin-right: 10px;
margin-bottom: 10px;
}
.photoparty{
position: relative;
width: 100%;
height: 80%;
object-fit: cover;
border-radius: 3px 3px 0 0;
}
footer{
position: absolute;
bottom: 1;
width: 100%;
background-color: #3185FC;
text-align: center;
color: #3185FC;
}
h2{
width: 100%;
height: 10%;
text-align: center;
font-size: 100%;
color: #77a6e9;
}
.refresh{
display: inline-block;
font-size: 0.5em;
width: 98%;
text-align: end;
}
@media (max-width:792px){
li{
font-size: 50%;
}
input{
width: 100%;
padding-left: 5px;
}
}
@media (max-width:915px) and (min-width:501px){
aside{
display: none;
}
section{
width: 99%;
margin: 05px;
}
article{
width: 45%;
}
}
@media (max-width:501px){
aside{
display: none;
}
section{
width: 99%;
margin: 05px;
}
li{
display: none ;
}
svg{
height: 30px;
top: 50%;
position: relative;
transform: translate(0, -50%);
}
article{
width: 90%;
margin-top: 5px;
position: relative;
left: 50%;
transform: translate(-50%);
}
header{
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr ;
}
}
@media (max-width:1257px) and (min-width:1000px){
article{
width: 30%;
}
}
#s4:hover{
fill: #26C485;
}
#m4:hover > #s4 {
color: #26C485;
fill: #26C485;
}
#linklogo{
grid-column: 1;
}
form{
grid-column: 2;
}
#menu1{
grid-column: 3;
}
#menu2{
grid-column: 4;
}
#menu3{
grid-column: 5;
}
#menu4{
grid-column: 6;
}
#menu5{
grid-column: 7;
} | stylePC.css | @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
margin: 0;
padding: 0;
text-decoration: none;
color: #1D3461;
font-family: 'swap', 'Helvetica Neue', sans-serif;
}
body{
background-color: #F6E8EA;
}
header{
background-color: white;
display: grid;
list-style: none;
padding: 5px;
grid-template-columns: 1fr 2fr 1fr 1fr 1fr 1fr 1fr 1fr ;
}
#search{
width: 20px;
}
#logo{
height: 50px;
}
form{
line-height: 50px;
}
input{
width: 230px;
height: 35px;
border-radius: 3px;
border: none;
background-color: #EEF3F8;
padding-left: 50px;
}
#icon{
width: 20px;
position: absolute;
}
li{
font-size: 12px;
color: #1D3461;
text-align: center;
}
svg{
position: relative;
height: 30px;
width: 30px;
left: 50%;
transform: translate( -50% );
fill: #77a6e9;
}
#svg1, #li1{
color: #53daa4f1;
fill: #53daa4f1;
}
a:hover li{
color: #26C485;
}
a:hover svg{
fill: #26C485;
}
a.menu{
display: inline-block;
list-style: none;
}
#patrocinado{
margin-top: 10px;
margin-right: 50px;
border-radius: 5px;
position: fixed;
right: 0;
width: 150px;
height: 85vh;
object-fit: cover;
}
h4{
position: fixed;
color: #26C485;
margin-top: 10px;
margin-right: 50px;
right: 0;
width: 150px;
text-align: center;
font-weight: normal;
}
article:hover h2 {
color: #c4747a;
}
section{
margin-top: 10px;
margin-left: 50px;
width: 80%;
}
aside:hover h4{
color: #F6E8EA;
font-weight: 500;
}
article{
display: inline-block;
border-radius: 3px;
width: 320px;
height: 300px;
box-shadow: 1px 1px 5px gray;
margin-right: 10px;
margin-bottom: 10px;
}
.photoparty{
position: relative;
width: 100%;
height: 80%;
object-fit: cover;
border-radius: 3px 3px 0 0;
}
footer{
position: absolute;
bottom: 1;
width: 100%;
background-color: #3185FC;
text-align: center;
color: #3185FC;
}
h2{
width: 100%;
height: 10%;
text-align: center;
font-size: 100%;
color: #77a6e9;
}
.refresh{
display: inline-block;
font-size: 0.5em;
width: 98%;
text-align: end;
}
@media (max-width:792px){
li{
font-size: 50%;
}
input{
width: 100%;
padding-left: 5px;
}
}
@media (max-width:915px) and (min-width:501px){
aside{
display: none;
}
section{
width: 99%;
margin: 05px;
}
article{
width: 45%;
}
}
@media (max-width:501px){
aside{
display: none;
}
section{
width: 99%;
margin: 05px;
}
li{
display: none ;
}
svg{
height: 30px;
top: 50%;
position: relative;
transform: translate(0, -50%);
}
article{
width: 90%;
margin-top: 5px;
position: relative;
left: 50%;
transform: translate(-50%);
}
header{
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr ;
}
}
@media (max-width:1257px) and (min-width:1000px){
article{
width: 30%;
}
}
#s4:hover{
fill: #26C485;
}
#m4:hover > #s4 {
color: #26C485;
fill: #26C485;
}
#linklogo{
grid-column: 1;
}
form{
grid-column: 2;
}
#menu1{
grid-column: 3;
}
#menu2{
grid-column: 4;
}
#menu3{
grid-column: 5;
}
#menu4{
grid-column: 6;
}
#menu5{
grid-column: 7;
} | 0.301362 | 0.08886 |
.ui-organigram {
position: relative;
}
.ui-organigram .controls {
position: absolute;
bottom: 15px;
right: 15px;
width: 35px;
height: 70px;
}
.ui-organigram .control {
width: 30px;
height: 30px;
cursor: pointer;
}
.ui-organigram .control.zoom-in {
background-image: url("#{resource['primefaces:organigram/zoom-in.png']}");
}
.ui-organigram .control.zoom-out {
background-image: url("#{resource['primefaces:organigram/zoom-out.png']}");
}
.ui-organigram > ul {
display: none;
}
.ui-organigram .target {
overflow: auto;
position: relative;
height: 100%;
}
.ui-organigram .target > * {
overflow: hidden;
padding: 5px;
max-width: 100%;
}
.ui-organigram .line {
height: 20px;
width: 2px;
border-color: black;
border-style: solid;
border-width: 0px;
}
.ui-organigram .line.small {
height: 10px;
font-size: 0px;
}
.ui-organigram .line.down {
background-color: black;
margin: 0px auto;
}
.ui-organigram .line.top {
border-top-width: 2px;
}
.ui-organigram .line.left {
border-right-width: 1px;
}
.ui-organigram .line.right {
border-left-width: 1px;
}
.ui-organigram td {
text-align: center;
vertical-align: top;
padding: 0;
margin: 0;
}
.ui-organigram tr {
padding: 0;
margin: 0;
}
.ui-organigram .ui-organigram-node {
width: 110px;
min-height: 20px;
margin: 0 2px;
padding: 2px;
position: relative;
display: inline-block;
font-size: 14px;
color: white;
-webkit-box-shadow: 3px 3px 6px -4px rgba(0,0,0,0.75);
-moz-box-shadow: 3px 3px 6px -4px rgba(0,0,0,0.75);
box-shadow: 3px 3px 6px -4px rgba(0,0,0,0.75);
background: #9c53e0;
background: -moz-linear-gradient(top, #9c53e0 0%, #8a2be2 100%);
background: -webkit-linear-gradient(top, #9c53e0 0%,#8a2be2 100%);
background: linear-gradient(to bottom, #9c53e0 0%,#8a2be2 100%);
}
.ui-organigram .ui-organigram-icon-container {
width: 100%;
height: 16px;
}
.ui-organigram .ui-organigram-node .ui-organigram-icon {
display: inline-block;
margin-top: -1px;
}
.ui-organigram .ui-organigram-node .ui-organigram-icon.left {
float: left;
}
.ui-organigram .ui-organigram-node .ui-organigram-icon.right {
float: right;
}
.ui-organigram .ui-organigram-node .ui-organigram-node-content {
clear: both;
word-wrap: break-word;
}
.ui-organigram .ui-organigram-node.draggable {
cursor: pointer;
}
.ui-organigram .ui-organigram-node.selectable {
cursor: pointer;
}
.ui-organigram .ui-organigram-node.drag-active {
opacity: 0.6;
}
.ui-organigram .ui-organigram-node.drop-hover {
opacity: 1;
}
.ui-organigram .ui-organigram-node.selected {
-webkit-box-shadow: inset 0px 0px 30px -5px rgba(0,0,0,0.75);
-moz-box-shadow: inset 0px 0px 30px -5px rgba(0,0,0,0.75);
box-shadow: inset 0px 0px 30px -5px rgba(0,0,0,0.75);
}
.ui-organigram .ui-organigram-node.level-1 {
background: #02a7f2;
background: -moz-linear-gradient(top, #02a7f2 0%, #0289d2 100%);
background: -webkit-linear-gradient(top, #02a7f2 0%,#0289d2 100%);
background: linear-gradient(to bottom, #02a7f2 0%,#0289d2 100%);
}
.ui-organigram .ui-organigram-node.level-2 {
background: #ffc86b;
background: -moz-linear-gradient(top, #ffc86b 0%, #ffac1e 100%);
background: -webkit-linear-gradient(top, #ffc86b 0%,#ffac1e 100%);
background: linear-gradient(to bottom, #ffc86b 0%,#ffac1e 100%);
}
.ui-organigram .ui-organigram-node.level-3 {
background: #88c048;
background: -moz-linear-gradient(top, #88c048 0%, #69a038 100%);
background: -webkit-linear-gradient(top, #88c048 0%,#69a038 100%);
background: linear-gradient(to bottom, #88c048 0%,#69a038 100%);
}
.ui-organigram .ui-organigram-node.level-4 {
background: #f77a31;
background: -moz-linear-gradient(top, #f77a31 0%, #d82d1e 100%);
background: -webkit-linear-gradient(top, #f77a31 0%,#d82d1e 100%);
background: linear-gradient(to bottom, #f77a31 0%,#d82d1e 100%);
}
.ui-organigram .ui-organigram-node .expander {
cursor: pointer;
float: right;
} | primefaces/src/main/resources/META-INF/resources/primefaces/organigram/organigram.css | .ui-organigram {
position: relative;
}
.ui-organigram .controls {
position: absolute;
bottom: 15px;
right: 15px;
width: 35px;
height: 70px;
}
.ui-organigram .control {
width: 30px;
height: 30px;
cursor: pointer;
}
.ui-organigram .control.zoom-in {
background-image: url("#{resource['primefaces:organigram/zoom-in.png']}");
}
.ui-organigram .control.zoom-out {
background-image: url("#{resource['primefaces:organigram/zoom-out.png']}");
}
.ui-organigram > ul {
display: none;
}
.ui-organigram .target {
overflow: auto;
position: relative;
height: 100%;
}
.ui-organigram .target > * {
overflow: hidden;
padding: 5px;
max-width: 100%;
}
.ui-organigram .line {
height: 20px;
width: 2px;
border-color: black;
border-style: solid;
border-width: 0px;
}
.ui-organigram .line.small {
height: 10px;
font-size: 0px;
}
.ui-organigram .line.down {
background-color: black;
margin: 0px auto;
}
.ui-organigram .line.top {
border-top-width: 2px;
}
.ui-organigram .line.left {
border-right-width: 1px;
}
.ui-organigram .line.right {
border-left-width: 1px;
}
.ui-organigram td {
text-align: center;
vertical-align: top;
padding: 0;
margin: 0;
}
.ui-organigram tr {
padding: 0;
margin: 0;
}
.ui-organigram .ui-organigram-node {
width: 110px;
min-height: 20px;
margin: 0 2px;
padding: 2px;
position: relative;
display: inline-block;
font-size: 14px;
color: white;
-webkit-box-shadow: 3px 3px 6px -4px rgba(0,0,0,0.75);
-moz-box-shadow: 3px 3px 6px -4px rgba(0,0,0,0.75);
box-shadow: 3px 3px 6px -4px rgba(0,0,0,0.75);
background: #9c53e0;
background: -moz-linear-gradient(top, #9c53e0 0%, #8a2be2 100%);
background: -webkit-linear-gradient(top, #9c53e0 0%,#8a2be2 100%);
background: linear-gradient(to bottom, #9c53e0 0%,#8a2be2 100%);
}
.ui-organigram .ui-organigram-icon-container {
width: 100%;
height: 16px;
}
.ui-organigram .ui-organigram-node .ui-organigram-icon {
display: inline-block;
margin-top: -1px;
}
.ui-organigram .ui-organigram-node .ui-organigram-icon.left {
float: left;
}
.ui-organigram .ui-organigram-node .ui-organigram-icon.right {
float: right;
}
.ui-organigram .ui-organigram-node .ui-organigram-node-content {
clear: both;
word-wrap: break-word;
}
.ui-organigram .ui-organigram-node.draggable {
cursor: pointer;
}
.ui-organigram .ui-organigram-node.selectable {
cursor: pointer;
}
.ui-organigram .ui-organigram-node.drag-active {
opacity: 0.6;
}
.ui-organigram .ui-organigram-node.drop-hover {
opacity: 1;
}
.ui-organigram .ui-organigram-node.selected {
-webkit-box-shadow: inset 0px 0px 30px -5px rgba(0,0,0,0.75);
-moz-box-shadow: inset 0px 0px 30px -5px rgba(0,0,0,0.75);
box-shadow: inset 0px 0px 30px -5px rgba(0,0,0,0.75);
}
.ui-organigram .ui-organigram-node.level-1 {
background: #02a7f2;
background: -moz-linear-gradient(top, #02a7f2 0%, #0289d2 100%);
background: -webkit-linear-gradient(top, #02a7f2 0%,#0289d2 100%);
background: linear-gradient(to bottom, #02a7f2 0%,#0289d2 100%);
}
.ui-organigram .ui-organigram-node.level-2 {
background: #ffc86b;
background: -moz-linear-gradient(top, #ffc86b 0%, #ffac1e 100%);
background: -webkit-linear-gradient(top, #ffc86b 0%,#ffac1e 100%);
background: linear-gradient(to bottom, #ffc86b 0%,#ffac1e 100%);
}
.ui-organigram .ui-organigram-node.level-3 {
background: #88c048;
background: -moz-linear-gradient(top, #88c048 0%, #69a038 100%);
background: -webkit-linear-gradient(top, #88c048 0%,#69a038 100%);
background: linear-gradient(to bottom, #88c048 0%,#69a038 100%);
}
.ui-organigram .ui-organigram-node.level-4 {
background: #f77a31;
background: -moz-linear-gradient(top, #f77a31 0%, #d82d1e 100%);
background: -webkit-linear-gradient(top, #f77a31 0%,#d82d1e 100%);
background: linear-gradient(to bottom, #f77a31 0%,#d82d1e 100%);
}
.ui-organigram .ui-organigram-node .expander {
cursor: pointer;
float: right;
} | 0.468547 | 0.09782 |
* Environment for all styles (variables, additions, etc).
*/
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.content,
.entry-content,
.mce-content-body {
counter-reset: h2;
}
.content h2,
.entry-content h2,
.mce-content-body h2 {
counter-reset: h3;
}
.content h3,
.entry-content h3,
.mce-content-body h3 {
counter-reset: h4;
}
.content h4,
.entry-content h4,
.mce-content-body h4 {
counter-reset: h5;
}
.content h5,
.entry-content h5,
.mce-content-body h5 {
counter-reset: h6;
}
.pk-list-styled,
.pk-list-positive,
.pk-list-negative {
line-height: 1.5;
list-style: none;
font-size: 1rem;
}
.pk-list-styled:not(:first-child),
.pk-list-positive:not(:first-child),
.pk-list-negative:not(:first-child) {
margin-top: 1.5rem;
}
.pk-list-styled:not(:last-child),
.pk-list-positive:not(:last-child),
.pk-list-negative:not(:last-child) {
margin-bottom: 1.5rem;
}
.pk-list-styled li:not(:first-child),
.pk-list-positive li:not(:first-child),
.pk-list-negative li:not(:first-child) {
margin-top: 0.5rem;
}
.pk-list-styled > li,
.pk-list-positive > li,
.pk-list-negative > li {
position: relative;
padding-left: 2.5rem;
}
.pk-list-styled > li:before,
.pk-list-positive > li:before,
.pk-list-negative > li:before {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: absolute;
left: 0;
top: 0;
}
ol.pk-list-styled,
ol.pk-list-positive,
ol.pk-list-negative {
counter-reset: ol;
}
ol.pk-list-styled > li:before,
ol.pk-list-positive > li:before,
ol.pk-list-negative > li:before {
width: 1.5rem;
height: 1.5rem;
content: counter(ol);
counter-increment: ol;
color: #495057;
font-size: 0.875rem;
font-weight: 600;
background-color: #e9ecef;
border-radius: 50%;
line-height: 1;
}
ul.pk-list-styled > li:before {
content: '';
width: 0.25rem;
height: 0.25rem;
background: #ced4da;
margin-top: 0.75rem;
left: 1rem;
}
ol.pk-list-styled ul,
ol.pk-list-styled ol,
ul.pk-list-styled ol,
ul.pk-list-styled ul {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
padding-left: 0;
font-size: 0.875rem;
}
ol.pk-list-styled ul > li:not(:first-child),
ol.pk-list-styled ol > li:not(:first-child),
ul.pk-list-styled ol > li:not(:first-child),
ul.pk-list-styled ul > li:not(:first-child) {
margin-top: 0.25rem;
}
ol.pk-list-positive > li:before {
background-color: #28a745;
color: #fff;
}
ol.pk-list-negative > li:before {
background-color: #dc3545;
color: #fff;
}
ul.pk-list-positive > li:before,
ul.pk-list-negative > li:before {
width: 1.5rem;
font-family: 'powerkit-icons';
}
ul.pk-list-positive > li:before {
content: "\e912";
color: #28a745;
}
ul.pk-list-negative > li:before {
content: "\e913";
color: #dc3545;
}
.pk-heading-numbered {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.pk-heading-numbered:before {
margin-right: 1rem;
}
h2.pk-heading-numbered:before {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 2.5rem;
-webkit-box-flex: 0;
-ms-flex: 0 0 2.5rem;
flex: 0 0 2.5rem;
border-radius: 50%;
background: #ced4da;
color: white;
counter-increment: h2;
content: counter(h2);
}
h3.pk-heading-numbered:before {
counter-increment: h3;
content: counter(h3);
}
h2.pk-heading-numbered ~ h3.pk-heading-numbered:before {
content: counter(h2) "." counter(h3);
}
h4.pk-heading-numbered:before {
counter-increment: h4;
content: counter(h4);
}
h3.pk-heading-numbered ~ h4.pk-heading-numbered:before {
content: counter(h3) "." counter(h4);
}
h2.pk-heading-numbered ~ h3.pk-heading-numbered ~ h4.pk-heading-numbered:before {
content: counter(h2) "." counter(h3) "." counter(h4);
}
h5.pk-heading-numbered:before {
counter-increment: h5;
content: counter(h5);
}
h4.pk-heading-numbered ~ h5.pk-heading-numbered:before {
content: counter(h4) "." counter(h5);
}
h3.pk-heading-numbered ~ h4.pk-heading-numbered ~ h5.pk-heading-numbered:before {
content: counter(h3) "." counter(h4) "." counter(h5);
}
h2.pk-heading-numbered ~ h3.pk-heading-numbered ~ h4.pk-heading-numbered ~ h5.pk-heading-numbered:before {
content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5);
}
h6.pk-heading-numbered:before {
counter-increment: h6;
content: counter(h6);
}
h5.pk-heading-numbered ~ h6.pk-heading-numbered:before {
content: counter(h5) "." counter(h6);
}
h4.pk-heading-numbered ~ h5.pk-heading-numbered ~ h6.pk-heading-numbered:before {
content: counter(h4) "." counter(h5) "." counter(h6);
}
h3.pk-heading-numbered ~ h4.pk-heading-numbered ~ h5.pk-heading-numbered ~ h6.pk-heading-numbered:before {
content: counter(h3) "." counter(h4) "." counter(h5) "." counter(h6);
}
h2.pk-heading-numbered ~ h3.pk-heading-numbered ~ h4.pk-heading-numbered ~ h5.pk-heading-numbered ~ h6.pk-heading-numbered:before {
content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6);
}
.content .pk-dropcap,
.entry-content .pk-dropcap,
.mce-content-body .pk-dropcap {
text-align: left;
}
.content .pk-dropcap:after,
.entry-content .pk-dropcap:after,
.mce-content-body .pk-dropcap:after {
content: "";
display: table;
clear: both;
padding-top: 14px;
}
.content .pk-dropcap:first-letter,
.entry-content .pk-dropcap:first-letter,
.mce-content-body .pk-dropcap:first-letter {
display: block;
float: left;
margin-top: 0.5rem;
margin-right: 2rem;
margin-bottom: 1rem;
color: black;
font-size: 2.5rem;
line-height: 1;
text-align: center;
}
.content .pk-dropcap-bg-inverse:first-letter,
.entry-content .pk-dropcap-bg-inverse:first-letter,
.mce-content-body .pk-dropcap-bg-inverse:first-letter {
padding: 0.5rem 1rem;
background: black;
color: #fff;
}
.content .pk-dropcap-bg-light:first-letter,
.entry-content .pk-dropcap-bg-light:first-letter,
.mce-content-body .pk-dropcap-bg-light:first-letter {
padding: 0.5rem 1rem;
background: #f8f9fa;
}
.content .pk-dropcap-borders:first-letter,
.entry-content .pk-dropcap-borders:first-letter,
.mce-content-body .pk-dropcap-borders:first-letter {
margin-top: 0.25rem;
padding: 0.5rem 1rem;
border: 1px solid #dee2e6;
}
.content .pk-dropcap-border-right:first-letter,
.entry-content .pk-dropcap-border-right:first-letter,
.mce-content-body .pk-dropcap-border-right:first-letter {
padding-right: 2rem;
border-right: 1px solid #dee2e6;
border-radius: 0;
}
.content .pk-callout,
.entry-content .pk-callout,
.mce-content-body .pk-callout {
font-size: 1.25rem;
font-weight: 600;
}
.content .pk-content-block,
.entry-content .pk-content-block,
.mce-content-body .pk-content-block {
margin-bottom: 2rem;
}
.content .pk-content-block > *:last-child,
.entry-content .pk-content-block > *:last-child,
.mce-content-body .pk-content-block > *:last-child {
margin-bottom: 0;
}
.content .pk-block-alignment-left,
.entry-content .pk-block-alignment-left,
.mce-content-body .pk-block-alignment-left {
float: left;
max-width: 50%;
margin-right: 2rem;
}
.content .pk-block-alignment-right,
.entry-content .pk-block-alignment-right,
.mce-content-body .pk-block-alignment-right {
float: right;
max-width: 50%;
margin-left: 2rem;
}
.content .pk-block-border-left,
.entry-content .pk-block-border-left,
.mce-content-body .pk-block-border-left {
padding-left: 2rem;
border-left: 1px solid #dee2e6;
}
.content .pk-block-border-right,
.entry-content .pk-block-border-right,
.mce-content-body .pk-block-border-right {
padding-right: 2rem;
border-right: 1px solid #dee2e6;
}
.content .pk-block-border-top:before,
.entry-content .pk-block-border-top:before,
.mce-content-body .pk-block-border-top:before {
background-color: #dee2e6;
display: block;
width: 4rem;
height: 1px;
margin: 2rem auto;
content: "";
}
.content .pk-block-border-bottom:after,
.entry-content .pk-block-border-bottom:after,
.mce-content-body .pk-block-border-bottom:after {
background-color: #dee2e6;
display: block;
width: 4rem;
height: 1px;
margin: 2rem auto;
content: "";
}
.content .pk-block-border-all,
.entry-content .pk-block-border-all,
.mce-content-body .pk-block-border-all {
padding: 2rem;
border: 1px solid #dee2e6;
}
.content .pk-block-bg-light,
.entry-content .pk-block-bg-light,
.mce-content-body .pk-block-bg-light {
background: #f8f9fa;
padding: 2rem;
}
.content .pk-block-bg-inverse,
.entry-content .pk-block-bg-inverse,
.mce-content-body .pk-block-bg-inverse {
background: black;
padding: 2rem;
color: #fff;
}
.content .pk-block-bg .pk-alert,
.entry-content .pk-block-bg .pk-alert,
.mce-content-body .pk-block-bg .pk-alert {
background-color: white;
}
.content .pk-block-bg .pk-subscribe-form-wrap form,
.entry-content .pk-block-bg .pk-subscribe-form-wrap form,
.mce-content-body .pk-block-bg .pk-subscribe-form-wrap form {
-webkit-box-shadow: none;
box-shadow: none;
}
.content .pk-block-shadows,
.entry-content .pk-block-shadows,
.mce-content-body .pk-block-shadows {
padding: 2rem;
-webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.075);
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.075);
}
@media (max-width: 767.98px) {
.content .pk-content-block,
.entry-content .pk-content-block,
.mce-content-body .pk-content-block {
float: none;
width: 100%;
max-width: 100%;
border-left: none;
border-right: none;
margin-left: 0;
margin-right: 0;
}
} | blog/wp-content/plugins/powerkit/modules/content-formatting/public/css/public-powerkit-content-formatting.css | * Environment for all styles (variables, additions, etc).
*/
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.content,
.entry-content,
.mce-content-body {
counter-reset: h2;
}
.content h2,
.entry-content h2,
.mce-content-body h2 {
counter-reset: h3;
}
.content h3,
.entry-content h3,
.mce-content-body h3 {
counter-reset: h4;
}
.content h4,
.entry-content h4,
.mce-content-body h4 {
counter-reset: h5;
}
.content h5,
.entry-content h5,
.mce-content-body h5 {
counter-reset: h6;
}
.pk-list-styled,
.pk-list-positive,
.pk-list-negative {
line-height: 1.5;
list-style: none;
font-size: 1rem;
}
.pk-list-styled:not(:first-child),
.pk-list-positive:not(:first-child),
.pk-list-negative:not(:first-child) {
margin-top: 1.5rem;
}
.pk-list-styled:not(:last-child),
.pk-list-positive:not(:last-child),
.pk-list-negative:not(:last-child) {
margin-bottom: 1.5rem;
}
.pk-list-styled li:not(:first-child),
.pk-list-positive li:not(:first-child),
.pk-list-negative li:not(:first-child) {
margin-top: 0.5rem;
}
.pk-list-styled > li,
.pk-list-positive > li,
.pk-list-negative > li {
position: relative;
padding-left: 2.5rem;
}
.pk-list-styled > li:before,
.pk-list-positive > li:before,
.pk-list-negative > li:before {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: absolute;
left: 0;
top: 0;
}
ol.pk-list-styled,
ol.pk-list-positive,
ol.pk-list-negative {
counter-reset: ol;
}
ol.pk-list-styled > li:before,
ol.pk-list-positive > li:before,
ol.pk-list-negative > li:before {
width: 1.5rem;
height: 1.5rem;
content: counter(ol);
counter-increment: ol;
color: #495057;
font-size: 0.875rem;
font-weight: 600;
background-color: #e9ecef;
border-radius: 50%;
line-height: 1;
}
ul.pk-list-styled > li:before {
content: '';
width: 0.25rem;
height: 0.25rem;
background: #ced4da;
margin-top: 0.75rem;
left: 1rem;
}
ol.pk-list-styled ul,
ol.pk-list-styled ol,
ul.pk-list-styled ol,
ul.pk-list-styled ul {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
padding-left: 0;
font-size: 0.875rem;
}
ol.pk-list-styled ul > li:not(:first-child),
ol.pk-list-styled ol > li:not(:first-child),
ul.pk-list-styled ol > li:not(:first-child),
ul.pk-list-styled ul > li:not(:first-child) {
margin-top: 0.25rem;
}
ol.pk-list-positive > li:before {
background-color: #28a745;
color: #fff;
}
ol.pk-list-negative > li:before {
background-color: #dc3545;
color: #fff;
}
ul.pk-list-positive > li:before,
ul.pk-list-negative > li:before {
width: 1.5rem;
font-family: 'powerkit-icons';
}
ul.pk-list-positive > li:before {
content: "\e912";
color: #28a745;
}
ul.pk-list-negative > li:before {
content: "\e913";
color: #dc3545;
}
.pk-heading-numbered {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.pk-heading-numbered:before {
margin-right: 1rem;
}
h2.pk-heading-numbered:before {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 2.5rem;
-webkit-box-flex: 0;
-ms-flex: 0 0 2.5rem;
flex: 0 0 2.5rem;
border-radius: 50%;
background: #ced4da;
color: white;
counter-increment: h2;
content: counter(h2);
}
h3.pk-heading-numbered:before {
counter-increment: h3;
content: counter(h3);
}
h2.pk-heading-numbered ~ h3.pk-heading-numbered:before {
content: counter(h2) "." counter(h3);
}
h4.pk-heading-numbered:before {
counter-increment: h4;
content: counter(h4);
}
h3.pk-heading-numbered ~ h4.pk-heading-numbered:before {
content: counter(h3) "." counter(h4);
}
h2.pk-heading-numbered ~ h3.pk-heading-numbered ~ h4.pk-heading-numbered:before {
content: counter(h2) "." counter(h3) "." counter(h4);
}
h5.pk-heading-numbered:before {
counter-increment: h5;
content: counter(h5);
}
h4.pk-heading-numbered ~ h5.pk-heading-numbered:before {
content: counter(h4) "." counter(h5);
}
h3.pk-heading-numbered ~ h4.pk-heading-numbered ~ h5.pk-heading-numbered:before {
content: counter(h3) "." counter(h4) "." counter(h5);
}
h2.pk-heading-numbered ~ h3.pk-heading-numbered ~ h4.pk-heading-numbered ~ h5.pk-heading-numbered:before {
content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5);
}
h6.pk-heading-numbered:before {
counter-increment: h6;
content: counter(h6);
}
h5.pk-heading-numbered ~ h6.pk-heading-numbered:before {
content: counter(h5) "." counter(h6);
}
h4.pk-heading-numbered ~ h5.pk-heading-numbered ~ h6.pk-heading-numbered:before {
content: counter(h4) "." counter(h5) "." counter(h6);
}
h3.pk-heading-numbered ~ h4.pk-heading-numbered ~ h5.pk-heading-numbered ~ h6.pk-heading-numbered:before {
content: counter(h3) "." counter(h4) "." counter(h5) "." counter(h6);
}
h2.pk-heading-numbered ~ h3.pk-heading-numbered ~ h4.pk-heading-numbered ~ h5.pk-heading-numbered ~ h6.pk-heading-numbered:before {
content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6);
}
.content .pk-dropcap,
.entry-content .pk-dropcap,
.mce-content-body .pk-dropcap {
text-align: left;
}
.content .pk-dropcap:after,
.entry-content .pk-dropcap:after,
.mce-content-body .pk-dropcap:after {
content: "";
display: table;
clear: both;
padding-top: 14px;
}
.content .pk-dropcap:first-letter,
.entry-content .pk-dropcap:first-letter,
.mce-content-body .pk-dropcap:first-letter {
display: block;
float: left;
margin-top: 0.5rem;
margin-right: 2rem;
margin-bottom: 1rem;
color: black;
font-size: 2.5rem;
line-height: 1;
text-align: center;
}
.content .pk-dropcap-bg-inverse:first-letter,
.entry-content .pk-dropcap-bg-inverse:first-letter,
.mce-content-body .pk-dropcap-bg-inverse:first-letter {
padding: 0.5rem 1rem;
background: black;
color: #fff;
}
.content .pk-dropcap-bg-light:first-letter,
.entry-content .pk-dropcap-bg-light:first-letter,
.mce-content-body .pk-dropcap-bg-light:first-letter {
padding: 0.5rem 1rem;
background: #f8f9fa;
}
.content .pk-dropcap-borders:first-letter,
.entry-content .pk-dropcap-borders:first-letter,
.mce-content-body .pk-dropcap-borders:first-letter {
margin-top: 0.25rem;
padding: 0.5rem 1rem;
border: 1px solid #dee2e6;
}
.content .pk-dropcap-border-right:first-letter,
.entry-content .pk-dropcap-border-right:first-letter,
.mce-content-body .pk-dropcap-border-right:first-letter {
padding-right: 2rem;
border-right: 1px solid #dee2e6;
border-radius: 0;
}
.content .pk-callout,
.entry-content .pk-callout,
.mce-content-body .pk-callout {
font-size: 1.25rem;
font-weight: 600;
}
.content .pk-content-block,
.entry-content .pk-content-block,
.mce-content-body .pk-content-block {
margin-bottom: 2rem;
}
.content .pk-content-block > *:last-child,
.entry-content .pk-content-block > *:last-child,
.mce-content-body .pk-content-block > *:last-child {
margin-bottom: 0;
}
.content .pk-block-alignment-left,
.entry-content .pk-block-alignment-left,
.mce-content-body .pk-block-alignment-left {
float: left;
max-width: 50%;
margin-right: 2rem;
}
.content .pk-block-alignment-right,
.entry-content .pk-block-alignment-right,
.mce-content-body .pk-block-alignment-right {
float: right;
max-width: 50%;
margin-left: 2rem;
}
.content .pk-block-border-left,
.entry-content .pk-block-border-left,
.mce-content-body .pk-block-border-left {
padding-left: 2rem;
border-left: 1px solid #dee2e6;
}
.content .pk-block-border-right,
.entry-content .pk-block-border-right,
.mce-content-body .pk-block-border-right {
padding-right: 2rem;
border-right: 1px solid #dee2e6;
}
.content .pk-block-border-top:before,
.entry-content .pk-block-border-top:before,
.mce-content-body .pk-block-border-top:before {
background-color: #dee2e6;
display: block;
width: 4rem;
height: 1px;
margin: 2rem auto;
content: "";
}
.content .pk-block-border-bottom:after,
.entry-content .pk-block-border-bottom:after,
.mce-content-body .pk-block-border-bottom:after {
background-color: #dee2e6;
display: block;
width: 4rem;
height: 1px;
margin: 2rem auto;
content: "";
}
.content .pk-block-border-all,
.entry-content .pk-block-border-all,
.mce-content-body .pk-block-border-all {
padding: 2rem;
border: 1px solid #dee2e6;
}
.content .pk-block-bg-light,
.entry-content .pk-block-bg-light,
.mce-content-body .pk-block-bg-light {
background: #f8f9fa;
padding: 2rem;
}
.content .pk-block-bg-inverse,
.entry-content .pk-block-bg-inverse,
.mce-content-body .pk-block-bg-inverse {
background: black;
padding: 2rem;
color: #fff;
}
.content .pk-block-bg .pk-alert,
.entry-content .pk-block-bg .pk-alert,
.mce-content-body .pk-block-bg .pk-alert {
background-color: white;
}
.content .pk-block-bg .pk-subscribe-form-wrap form,
.entry-content .pk-block-bg .pk-subscribe-form-wrap form,
.mce-content-body .pk-block-bg .pk-subscribe-form-wrap form {
-webkit-box-shadow: none;
box-shadow: none;
}
.content .pk-block-shadows,
.entry-content .pk-block-shadows,
.mce-content-body .pk-block-shadows {
padding: 2rem;
-webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.075);
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.075);
}
@media (max-width: 767.98px) {
.content .pk-content-block,
.entry-content .pk-content-block,
.mce-content-body .pk-content-block {
float: none;
width: 100%;
max-width: 100%;
border-left: none;
border-right: none;
margin-left: 0;
margin-right: 0;
}
} | 0.35421 | 0.057838 |
@import url(https://fonts.googleapis.com/css?family=Dancing+Script);
@media (min-width: 600px) {
.jumbotron{
margin-bottom: 100px;
}
.author{
margin-left: 70%;
margin-top: 20px;
margin-bottom: -40px;
max-height: 2px;
}
}
#event{
margin-left: auto;
margin-right: auto;
padding: 20px;
}
.card{
margin-left: 10px;
margin-right: 10px;
margin-bottom: 20px;
}
nav ul {
overflow: hidden;
text-align: right;
float: right;
}
@media only screen and (max-width: 766px) {
nav ul {
float: left;
text-align: center;
width: 100%;
}
}
@media only screen and (max-width: 766px) {
nav ul li {
width: 100%;
padding: 7px 0;
margin: 0;
}
}
a {
text-decoration: none;
}
h1 {
font-size: 30px;
line-height: 1.8;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
}
p {
margin-bottom: 20px;
font-size: 17px;
line-height: 2;
}
.content {
padding-top: 50px ;
}
@media only screen and (min-width: 766px) {
.hero {
position: relative;
text-align: center;
color: #fff;
margin-top: -10em;
margin-bottom: 5em;
font-family: "Montserrat", sans-serif;
}
}
.hero a{
margin-left: 10px;
margin-right: 10px;
}
@font-face {
font-family: 'Sketch Block';
src: url('http://tangledindesign.com/codepen/fonts/sketch_block-webfont.eot');
src: url('http://tangledindesign.com/codepen/fonts/sketch_block-webfont.eot?#iefix') format('embedded-opentype'),
url('http://tangledindesign.com/codepen/fonts/sketch_block-webfont.woff') format('woff'),
url('http://tangledindesign.com/codepen/fonts/sketch_block-webfont.ttf') format('truetype'),
url('http://tangledindesign.com/codepen/fonts/sketch_block-webfont.svg#SketchBlockBold') format('svg');
}
@font-face {
font-family: 'CallunaRegular';
src: url('http://tangledindesign.com/codepen/fonts/Calluna-Regular-webfont.eot');
src: url('http://tangledindesign.com/codepen/fonts/Calluna-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('http://tangledindesign.com/codepen/fonts/Calluna-Regular-webfont.woff') format('woff'),
url('http://tangledindesign.com/codepen/fonts/Calluna-Regular-webfont.ttf') format('truetype'),
url('http://tangledindesign.com/codepen/fonts/Calluna-Regular-webfont.svg#CallunaRegular') format('svg');
}
blockquote {
width: auto;
font: 1.5em CallunaRegular;
letter-spacing: .075em;
float: left;
padding: 45px 0 30px 25px;
margin: 0;
}
@media only screen and (max-width: 766px) {
blockquote {
padding-bottom: 80px;
margin-top: -40px;
margin-bottom: -20px;
}
}
blockquote strong {
font: 1.5em "Sketch Block";
color: black;
}
@media only screen and (min-width: 766px) {
#sv-text{
margin-left: 120px;
}
}
#sv-text{
font-size: 1.1em;
}
.btn{
max-width: 150px;
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
}
.btn-padding{
margin-left: 20px;
margin-right: 20px;
}
#box{
background:none;
width: auto;
max-width: 400px;
min-width: 250px;
height: auto;
border: solid black 1px;
border-radius: 5px;
margin: 2% auto;
padding: 2%;
}
i{
margin-left: 5px;
}
#paper-img{
max-height: 300px;
}
@media only screen and (max-width: 766px) {
#paper-img{
max-height: 200px;
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
#crime{
height: 400px;
width: auto;
}
#crime_text{
margin-left:20px;
margin-right:20px;
}
}
@media (min-width: 800px) {
.col-md-3{
margin-left: -230px;
}
}
hr{
min-width: 80%;
height: 2px;
}
.card2{
width: 100%;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
padding: 10px;
}
.carousel-caption{
font-family: 'Dancing Script', cursive;
font-size: 2.3em;
}
#date{
border: solid white 1px;
padding: 5px;
max-width: 300px;
margin-left: auto;
margin-right: auto;
}
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px white inset !important;
}
button{
background-color: #0265C9;
color: white;
border-radius: 5px;
padding: :10px;
min-width: 130px;
cursor: pointer;
border: solid 1px;
margin-bottom: 10px;
}
.coming{
border: solid black 1px;
padding: 5px;
max-width: 300px;
margin-left: auto;
margin-right: auto;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
} | public/css/master.css | @import url(https://fonts.googleapis.com/css?family=Dancing+Script);
@media (min-width: 600px) {
.jumbotron{
margin-bottom: 100px;
}
.author{
margin-left: 70%;
margin-top: 20px;
margin-bottom: -40px;
max-height: 2px;
}
}
#event{
margin-left: auto;
margin-right: auto;
padding: 20px;
}
.card{
margin-left: 10px;
margin-right: 10px;
margin-bottom: 20px;
}
nav ul {
overflow: hidden;
text-align: right;
float: right;
}
@media only screen and (max-width: 766px) {
nav ul {
float: left;
text-align: center;
width: 100%;
}
}
@media only screen and (max-width: 766px) {
nav ul li {
width: 100%;
padding: 7px 0;
margin: 0;
}
}
a {
text-decoration: none;
}
h1 {
font-size: 30px;
line-height: 1.8;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
}
p {
margin-bottom: 20px;
font-size: 17px;
line-height: 2;
}
.content {
padding-top: 50px ;
}
@media only screen and (min-width: 766px) {
.hero {
position: relative;
text-align: center;
color: #fff;
margin-top: -10em;
margin-bottom: 5em;
font-family: "Montserrat", sans-serif;
}
}
.hero a{
margin-left: 10px;
margin-right: 10px;
}
@font-face {
font-family: 'Sketch Block';
src: url('http://tangledindesign.com/codepen/fonts/sketch_block-webfont.eot');
src: url('http://tangledindesign.com/codepen/fonts/sketch_block-webfont.eot?#iefix') format('embedded-opentype'),
url('http://tangledindesign.com/codepen/fonts/sketch_block-webfont.woff') format('woff'),
url('http://tangledindesign.com/codepen/fonts/sketch_block-webfont.ttf') format('truetype'),
url('http://tangledindesign.com/codepen/fonts/sketch_block-webfont.svg#SketchBlockBold') format('svg');
}
@font-face {
font-family: 'CallunaRegular';
src: url('http://tangledindesign.com/codepen/fonts/Calluna-Regular-webfont.eot');
src: url('http://tangledindesign.com/codepen/fonts/Calluna-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('http://tangledindesign.com/codepen/fonts/Calluna-Regular-webfont.woff') format('woff'),
url('http://tangledindesign.com/codepen/fonts/Calluna-Regular-webfont.ttf') format('truetype'),
url('http://tangledindesign.com/codepen/fonts/Calluna-Regular-webfont.svg#CallunaRegular') format('svg');
}
blockquote {
width: auto;
font: 1.5em CallunaRegular;
letter-spacing: .075em;
float: left;
padding: 45px 0 30px 25px;
margin: 0;
}
@media only screen and (max-width: 766px) {
blockquote {
padding-bottom: 80px;
margin-top: -40px;
margin-bottom: -20px;
}
}
blockquote strong {
font: 1.5em "Sketch Block";
color: black;
}
@media only screen and (min-width: 766px) {
#sv-text{
margin-left: 120px;
}
}
#sv-text{
font-size: 1.1em;
}
.btn{
max-width: 150px;
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
}
.btn-padding{
margin-left: 20px;
margin-right: 20px;
}
#box{
background:none;
width: auto;
max-width: 400px;
min-width: 250px;
height: auto;
border: solid black 1px;
border-radius: 5px;
margin: 2% auto;
padding: 2%;
}
i{
margin-left: 5px;
}
#paper-img{
max-height: 300px;
}
@media only screen and (max-width: 766px) {
#paper-img{
max-height: 200px;
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
#crime{
height: 400px;
width: auto;
}
#crime_text{
margin-left:20px;
margin-right:20px;
}
}
@media (min-width: 800px) {
.col-md-3{
margin-left: -230px;
}
}
hr{
min-width: 80%;
height: 2px;
}
.card2{
width: 100%;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
padding: 10px;
}
.carousel-caption{
font-family: 'Dancing Script', cursive;
font-size: 2.3em;
}
#date{
border: solid white 1px;
padding: 5px;
max-width: 300px;
margin-left: auto;
margin-right: auto;
}
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px white inset !important;
}
button{
background-color: #0265C9;
color: white;
border-radius: 5px;
padding: :10px;
min-width: 130px;
cursor: pointer;
border: solid 1px;
margin-bottom: 10px;
}
.coming{
border: solid black 1px;
padding: 5px;
max-width: 300px;
margin-left: auto;
margin-right: auto;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
} | 0.41324 | 0.096791 |
@charset "utf-8";
/* CSS Document */
/* 番茄家族css —— 番茄馒头 */
/* z-index以100进行递增,为100的整数倍 */
/* textarea自动缩进padding:5px*/
html,body {
text-size-adjust:none;
-webkit-text-size-adjust:none;
}
body,ul,ul li,h1,h2,h3,h4,h5,img,p,a,ol,em,dd,i{border:none; list-style:none; outline:medium; margin:0; padding:0; font-weight:normal;font-style:normal; text-decoration:none; font-family:微软雅黑; font-size:12px;} /*格式化css样式,需要其他的请自行添加*/
.clear{clear:both;} /*清除样式*/
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px white inset;
border: 1px solid #CCC!important;
}
textarea{
resize: none;
}
input,textarea{outline:medium;} /*清除webkit浏览器选中边框样式*/
a,a:link,a:hover{ text-decoration:none;color: #000000;}
a{cursor:pointer}
.body-hidden-white{ width:100%; height:100%; position:absolute;z-index:250; display:none;background-image:url(../images/w_bg.png);}
.body-hidden-block{ width:100%; height:100%; position:absolute;z-index:250; background:url(../images/hidden_bg.png); display:none;}
.red {color: red;}
/*表单样式*/
form{ margin:0; padding:0;border:0;}
input{ font-size:16px;}
input,span.select-box{ border:1px solid #cdcdcd;}
span.select-box{ display:block; background:#FFF; line-height:40px; color:#999; font-size:16px;text-indent:130px;}
span.min-select-box{ font-size:14px; text-indent:20px; text-align:left; border:0}
textarea{border:1px solid #cdcdcd;padding:5px;}
dd{ width:98px; height:40px; position:absolute; left:1px; top:1px; color:#b7b7b7; text-align:center; font-size:14px; line-height:40px; border-right:1px dotted #c9c9c9; background:#FFF;}
input.date{ color:#999; font-size:16px; text-indent:130px;}
em.date-ico{ display:block; width:24px; height:24px; position:absolute; background:url(../images/style.png) no-repeat 0 -228px #FFF; top:9px; right:9px;}
em.down-select{display:block; width:24px; height:24px; position:absolute; background:url(../images/style.png) no-repeat 0 -732px #FFF; top:9px; right:9px; cursor:pointer;}
em.down-select-table{display:block; width:24px; height:24px; background:url(../images/style.png) no-repeat 0 -732px; position:absolute; right:10px; top:7px; cursor:pointer;}
input.search{ width:177px; height:31px; border-radius:20px; border:1px solid #cdcdcd; text-indent:10px; font-size:12px;}
input.search-button{ width:25px; height:29px; float:right; border:0; background:url(../images/style.png) no-repeat scroll 0 -561px; position:absolute; top:8px; right:5px;cursor:pointer}
input.search-button:hover{background:url(../images/style.png) no-repeat scroll -117px -561px;}
.select-tab {
margin-top: 18px;
margin-left: 20px;
}
input.down-select-add{border:0; text-indent:10px; font-size:14px;}
em.down-select-add{ position:absolute; width:35px; height:35px; right:2px; top:2px; background:url(../images/style.png) no-repeat scroll 8px -77px #619739; border-radius:3px;}
input.customer-name,input.customer-phone{ width:60%; float:left; margin-left:-2px; font-size:14px;}
input.customer-phone{ width:38%; text-indent:5px; font-size:14px;}
input.check-code{ width:120px; text-indent:10px; font-size:16px;}
input[type=checkbox]{ position:relative;bottom:-2px;width:16px; height:16px; margin:0}
span.choice input[type=radio]{ width:16px; height:16px; margin:0; margin-top:20px; position:relative; top:3px;}
.team2 input[type=radio]{ width:16px; height:16px; margin:0;position:relative; top:3px; }
.team2 textarea{ width:315px; height:100px;resize:none;}
input.add-bumen{ width:97%; height:29px; margin:0; padding:0; text-indent:5px}
/*谷歌CSS3定义滚动条*/
/*---滚动条默认显示样式--*/
::-webkit-scrollbar-thumb{background-color:#545454; height:50px; outline-offset:0px; outline:none; -webkit-border-radius:10px; border: 0px solid #fff;}
/*---鼠标点击滚动条显示样式--*/
::-webkit-scrollbar-thumb:hover{ background-color:#1b1b1b;height:50px; -webkit-border-radius:10px;}
/*---滚动条大小--*/
::-webkit-scrollbar{width:8px;height:8px ;}
/*---滚动框背景样式--*/
::-webkit-scrollbar-track-piece{background:#ededed; -webkit-border-radius:0;}
/*公用样式*/
i.block-font{ color:#333}
.search-box{ width:177px; height:31px; float:right; margin:0 25px 0 0; position:relative}
/*分页列表样式*/
.page-list{ width:100%; height:82px; float:left;}
.page-list ul{ width:100%; height:100%; margin:0 auto; display:block;}
.page-list ul li{ background:#f2f2f2; border-radius:2px; border:1px solid #e2e2e2; text-align:center; height:21px; line-height:21px; padding:0 8px 0 8px; width:auto; float:left; margin:20px 0 0 8px;cursor: default;}
.page-list ul li:hover{ background:#D70007; color:#FFF}
.page-list ul li.active{background:#D70007; color:#FFF}
/*公用表格样式*/
li.percent15{ width:15%}
li.percent20{ width:20%;}
li.percent25{ width:25%;}
li.percent30{ width:30%;}
/* 背景 */
.bg1{ background:url(../images/bg_green.jpg) repeat; background-size: cover;}
.bg2{ background:url(../images/bg_yellow.jpg) repeat;background-size:cover;}
/*布局*/
.container{ position:relative; height:100%;overflow:auto;}
.container-left{ position:relative; float:left; width:15%; height:100%; background:rgba(255,255,255,0.25) repeat; overflow: auto;}
.container-right{ position:relative; float:left; width:85%; height:100%; background:#ffffff;overflow: auto;}
/*公用按钮*/
a.red-button-add,a.editor-button,a.del-button,a.green-button-add{ width:108px; height:33px; background:url(../images/style.png) no-repeat scroll 10px -78px #d70007; border-radius:3px; display:block; color:#FFF; text-align:center; line-height:33px; font-weight:bolder; text-indent:10px;}
a.red-button-add:hover{ background:url(../images/style.png) no-repeat scroll 10px -78px #c60006;}
a.green-button-add{ background:#70a847}
a.green-button-add{ background:#62933e}
a.green-button-ok{ display:block; width:100%; height:35px; border-radius:2px; text-align:center; line-height:35px; color:#FFF; background:#70a847; font-size:16px; margin-bottom:15px; margin-top: 15px;}
a.green-button-ok:hover{ background:#62933e;}
a.green-button-return{ display:block; width:108px; height:33px; border-radius:2px; text-align:center; line-height:33px; color:#FFF; background:#70a847; font-size:16px}
a.green-button-return:hover{background:#62933e;}
a.editor-button,a.del-button{ width:60px; height:23px; float:right; line-height:23px; background:url(../images/style.png) no-repeat scroll 4px -165px #70a847;}
a.editor-button:hover{background:url(../images/style.png) no-repeat scroll 4px -165px #62933e;}
a.del-button{background:url(../images/style.png) no-repeat scroll 4px -107px #d70007;}
a.del-button:hover{background:url(../images/style.png) no-repeat scroll 4px -107px #c60006;}
em.add-ico,em.del-ico{ background:url(../images/style.png) no-repeat scroll -132px -677px; display:block; width:24px; height:24px; float:left;}
em.del-ico{ background:url(../images/style.png) no-repeat scroll -161px -677px;}
em.phone-ico,em.qq-ico{background:url(../images/style.png) no-repeat scroll -232px -725px; width:18px; height:19px; display:block; float:left; position:relative; top:6px; margin-left:15px;}
em.qq-ico{background:url(../images/style.png) no-repeat scroll -232px -680px;}
a.audit-pass-button,a.audit-nopass-button,a.reset-button{ width:80px; height:28px; border-radius:2px; display:block; float:left; margin:20px 0 0 12px; background:url(../images/style.png) no-repeat scroll 10px -134px #70a847; text-align:center; color:#FFF; line-height:30px; text-indent:15px;}
a.audit-nopass-button{ background:url(../images/style.png) no-repeat scroll 10px -104px #d81117}
a.audit-pass-button:hover{background:url(../images/style.png) no-repeat scroll 10px -134px #62933e}
a.audit-nopass-button:hover{background:url(../images/style.png) no-repeat scroll 10px -104px #c60006}
a.reset-button{background:url(../images/style.png) no-repeat scroll -210px -103px #70a847;}
a.reset-button:hover{background:url(../images/style.png) no-repeat scroll -210px -103px #62933e;}
a.login-button{ width:100%; display:block; height:40px; background:#F90; border-radius:3px; text-align:center; font-size:16px; line-height:40px; color:#FFF; position:relative; top:-15px;}
a.login-button:hover{ background:#ff8400}
/*错误提示*/
em.error-tips{ display:block; color:#ca0207; width:99%; height:auto; text-indent:30px; line-height:30px; position:absolute; top:100%; background:url(../images/style.png) no-repeat scroll -230px -416px #fde2aa; border:1px solid #ffcc00;}
/*定位-自动居中*/
.center-box{ position:absolute; width:0; height:0; top:15%; left:50%; z-index:300}
.center-box-in{ background:#f2f2f2; border-radius:5px; border:1px solid #d5d8da;
-webkit-box-shadow:0 0 9px #b5b5b5;
-moz-box-shadow:0 0 9px #b5b5b5;
box-shadow:0 0 9px #b5b5b5;
}
.center-box-in a.close-window{ width:24px; height:31px; background:url(../images/style.png) no-repeat scroll 1px -102px #70a847; display:block; position:absolute; z-index:9999; right:1%;}
.center-box-in a.close-window:hover{ background-color:#5d8f39}
.center-box-in h1{ width:100%; height:50px; text-align:center; font-size:16px; line-height:50px; color:#70a847;}
.center-box-in ul{ width:94%; height:auto; margin:0 0 0 5%; float:left}
.center-box-in ul li{ width:100%; height:auto; float:left; position:relative;margin-top: 15px;}
/*定位-下拉选择*/
.center-box-in ol{ width:224px; right:0; max-height:180px; overflow:auto; background:#fff; border:1px solid #cdcdcd; position:absolute; z-index:200;
-webkit-box-shadow:0 0 9px #b5b5b5;
-moz-box-shadow:0 0 9px #b5b5b5;
box-shadow:0 0 9px #b5b5b5;}
.center-box-in ol li{width:100%; height:40px; border-bottom:1px solid #cdcdcd; margin:0px; text-align:center; font-size:16px; line-height:40px; color:#999; cursor:pointer;}
.center-box-in ol li:hover{ background:#eaeaea}
ol.min-select-box li{ font-size:14px;}
/*左边内容区*/
.logo{ float:left; height:48px; width:100%; margin:17px 0 15px 0; background:url(../images/style.png) scroll 10px 0 no-repeat;}
.login-content{ float:left; height:77px; width:205px; background:#fff;border-radius: 4px;margin:5px;}
.login-photo{ float:left; width:36px; height:100%; background:url(../images/style.png) no-repeat scroll -111px -463px; margin-left:5px;}
.login-phone{ float:left; width:150px; height:30px; text-indent:10px; line-height:45px; font-size:14px;}
.login-content a{ float:left;height:38px;line-height:36px; text-indent:25px; color:#ff6600}
.login-content a:hover{ color:#8b3800}
.login-content a.change-password{ background:url(../images/style.png) no-repeat scroll -220px -213px;}
.login-content a.logout{background:url(../images/style.png) no-repeat scroll -223px -241px;}
.nav{ float:left; width:205px; height:auto; margin-top:30px;}
.nav a{ color:#FFF;}
.nav a:hover{ color:#FFDE32}
.nav ul{width:100px;margin-left:5px;}
.nav ul li{ position:relative; float:left; padding: 0 45px; height:37px; font-size:14px; line-height:37px;}
.nav ul li.select{ /*background:url(../images/style.png) no-repeat scroll 0 -283px;*/background: #3B3D39;border-radius:20px;box-shadow: 2px 2px 5px 5px #373935 inset;-moz-box-shadow: 2px 2px 5px 5px #373935 inset; -webkit-box-shadow: 2px 2px 5px 5px #373935 inset;}
.nav ul li a{ float:left; height:100%; width:108px; text-align:center;}
.nav ul li a.today-will-do{ background:url(../images/style.png) no-repeat scroll -221px -45px;}
.nav ul li a.guest-data{background:url(../images/style.png) no-repeat scroll -221px -70px;}
.nav ul li a.reset-password{background:url(../images/style.png) no-repeat scroll -221px -99px;}
.nav ul li a.inn-audit{background:url(../images/style.png) no-repeat scroll -221px -128px;}
.nav ul li a.team-management{background:url(../images/style.png) no-repeat scroll -221px -157px;}
.nav ul li a.inn-inform{background:url(../images/style.png) no-repeat scroll -221px -184px;}
.nav ul li a.inn-hot{background:url(../images/style.png) no-repeat scroll -221px -758px;}
.nav ul li a.inn-count{background:url(../images/style.png) no-repeat scroll -221px -796px;}
.nav ul li a.inn-checkList{background:url(../images/style.png) no-repeat scroll -221px -899px;}
.nav ul li a.inn-manage{background:url(../images/style.png) no-repeat scroll -221px -967px;}
.nav ul li a.inn-article{background:url(../images/style.png) no-repeat scroll -221px -996px;}
.nav ul li a.inn-print{background:url(../images/style.png) no-repeat scroll -221px -865px;}
.nav ul li a.inn-xzbb{background:url(../images/style.png) no-repeat scroll -221px -939px;}
.nav ul li em{ position:absolute; top:14px; left:160px; width:10px; height:10px; background:url(../images/style.png) no-repeat scroll -6px -58px;}
/*右边头部区域*/
.header{ position:relative; float:left; height:66px; width:100%; background:#f2f2f2; border-bottom:solid 1px #d5d8da;border-radius:0 5px 0 0;padding-bottom:35px;}
.header h1{ position:relative; float:left; height:100%; width:100%; font-size:16px; text-indent:20px; line-height:66px;}
.header-button-box{ position:absolute; height:50%;top:40px; right:0; z-index:1;}
.header-button-box1{ position:absolute; height:40px;top:70px; left:0; z-index:1;}
.header-button-box a.date{ width:140px; height:100%; float:right; font-size:16px; background:url(../images/style.png) no-repeat scroll 100px -711px; line-height:66px; color:#999; display:block;}
.header-button-box a.date:hover{ color:#666}
.header-button-box a.add{ float:right; margin:18px 20px 0 0;}
.header-button-box a.date input{ text-indent:5px; margin-top:13px; background:none; border:0; color:#666}
/*活跃报表*/
.header-button-box span.choice{ width:200px; height:100%; float:right; display:block;}
.header-button-box span.choice a{ display:block; width:80px; height:28px; float:left; margin:20px 10px 0 0; font-size:12px; text-align:center; line-height:28px; color:#FFF; border-radius:2px; background:#70a847;}
.header-button-box span.choice a.choice:hover{ background:#62933e}
.header-button-box span.choice a.default{ background:#bbbbbb;}
.header-button-box span.choice a.default:hover{background:#a5a5a5;}
/*---------右边内容区域-----------*/
.content{ height:747px; width:100%; overflow:auto;}
.content2{ height:675px; width:100%; overflow:auto; border-bottom:1px solid #d5d8da;}/*content2表示下面有分页,无分页使用content*/
/*今日待办*/
.content ul.today-will-do-ul li{ width:100%; height:64px; position:relative; float:left; border-bottom:1px solid #d5d8da;}
.content ul.today-will-do-ul li h1,.content ul.today-will-do-ul li p{ width:100%; height:50%; float:left; text-indent:20px; line-height:40px;}
.content ul.today-will-do-ul li p{ color:#a6a6a6; font-size:12px; line-height:32px;}
.content ul.today-will-do-ul li h1 a{color:#424242; font-size:16px;}
.content ul.today-will-do-ul li h1 a:hover{ color:#000}
.content ul.today-will-do-ul li span{ display:block; width:120px; height:100%; position:absolute; right:0; background:#FFF; border-left:1px solid #d5d8da; z-index:100;}
.content ul.today-will-do-ul li span a.complete-button{ width:68px; height:25px; background:#70a847; color:#FFF; text-align:center; line-height:25px; display:block; float:left; margin-top:20px; margin-left:30px; border-radius:20px;}
.content ul.today-will-do-ul li span a.complete-button:hover{ background:#619839;}
.add-will-do{ position:relative; width:362px; height:522px; left:-181px; top:-261px; overflow:hidden;}
.add-will-do textarea{resize:none; width:312px; height:163px;}
/*客栈通知*/
.content ul.inn-inform li{ width:100%; height:auto; border-bottom:1px solid #d5d8da; float:left;}
.content ul.inn-inform li h1{ width:100%; height:45px; font-size:16px; color:#424242; text-indent:20px; line-height:45px; float:left;}
.content ul.inn-inform li h1 span{ font-size:12px; float:right; margin-right:20px; color:#696969}
.content ul.inn-inform li h1 span em{ font-size:14px; color:#333}
.content ul.inn-inform li h1 span em.have-send{color:#3a6619}
.content ul.inn-inform li h1 span em.no-send{color:#d70007}
.content ul.inn-inform li p{ width:auto; float:left; padding:0 0 10px 20px; color:#a6a6a6}
.content ul.inn-inform li span.link-box{ width:100%; height:40px; line-height:30px; float:left; text-indent:20px; position:relative;}
.content ul.inn-inform li a.inform-link{ color:#d70007}
.content ul.inn-inform li a.inform-link:hover{ color:#7e0004;}
.content ul.inn-inform li a.del-button,.content ul.inn-inform li a.editor-button{ margin:2px 20px 0 0;}
/*成员管理*/
.team{ position:relative; width:362px; height:430px; left:-181px;}
.content2 a{ color:#03C}
.content2 a:hover{ color:#09C}
.content2 ul{ width:100%; height:35px; border-bottom:1px solid #d5d8da;}
.content2 ul.table-header{ background:#e8e8e8;}
.content2 ul.table-header1{width: 1850px;}
.table-header-ol{ position:absolute; left:-38px;top:20px;z-index:101; background:#FFF; width:200px; height:auto; max-height:200px; overflow:auto; overflow-x:hidden; border:1px solid #d5d8da;
-webkit-box-shadow:0 0 9px #b5b5b5;
-moz-box-shadow:0 0 9px #b5b5b5;
box-shadow:0 0 9px #b5b5b5;
}
.area-new{position: absolute;top:22px;left:138px;font-size: 14px;width: 66px;}
.date-choose{margin-top:-18px;height: 65px;position: absolute;top: 18px;left: 450px;font-size: 14px}
.date-choose em{position: absolute;right: 0;top:30%!important;z-index: 0;}
.date-choose .cursor{height: 65px;width: 102px;line-height:65px;display: inline-block;position: relative;}
.date-choose .cursor span{cursor:pointer;height: 60px;width: 97px;
display: inline-block;
position: relative;
z-index: 10;
}
.date-choose button{background-color: #6a6a6a;color: #fff;border: none;padding: 8px 12px;outline: none;cursor: pointer;border-radius: 4px;}
.area-new em,.date-choose em{background-image:url(../images/style.png);background-position:0 -732px;width: 26px;height: 26px;display: inline-block;vertical-align: middle;top:0;}
.table-header-ol li{ width:100%; height:40px; line-height:40px;border-bottom:1px solid #d5d8da; cursor:pointer;text-align: center;}
.table-header-ol li:hover{ background:#EAEAEA}
.content2 ul li{ float:left; height:35px; border-left:1px solid #d5d8da; margin-left:-1px; text-align:center; line-height:35px; position:relative; overflow:hidden}
.content2 ul:first-child li{overflow:visible;}
input[name="sysUserCode"].sysUserCode{
text-indent: 20px;
line-height: 20px;
}
/*添加部门*/
.team2{ position:relative; width:560px; height:450px; left:-280px;}
.team2 .team2-right{ width:360px; float:right;height:450px;}
.team2 .team2-left{ width:190px; float:left;height:440px;border-right:1px solid #d5d8da; overflow:scroll; margin-left:-1px;}
/*权限管理弹窗*/
.root-set{position:relative; width:600px; height:500px; left:-135px; top:-150px; overflow:auto; overflow-x:hidden}
.root-set ul li{ width:120px; height:28px; margin-bottom:10px;}
.root-set ul li a{ height:25px; line-height:25px; font-size:14px; width:80px;}
.root-set ul li.select-all{ color:#c60006}
.root-set ul li input{ position:relative; top:4px; margin-right:5px;}
.root-set ul.bumen{ margin-bottom:15px;border:1px solid #d5d8da;}
.root-set ul.bumen li{ width:100%; margin:0; height:30px; border-bottom:0; text-align:center;}
.root-set ul.bumen li span{ width:50%; float:left; height:30px; line-height:30px;border-left:1px solid #d5d8da; border-bottom:1px solid #d5d8da; margin-left:-1px;}
.root-set ul.bumen li.header span{ background:#ededed}
.root-set ul li input.add-bumen{ margin:0; top:0; font-size:12px;}
.root-set ul.bumen li span em.add{ position:absolute; width:22px; height:22px; background:#690; border-radius:2px; left:92px; top:5px; color:#FFF; font-weight:bolder; font-size:14px; line-height:22px;}
.root-set ul.bumen li span em.add:hover{ background:#518950}
.root-set ul.bumen li span.add-bumen{width:100%;}
.root-set ul.bumen li span.add-bumen a{ color:#037900}
.root-set ul li.select-button{ width:220px; color:#F00}
.root-set ul li.select-button a.green-button-ok{ width:100px; display:inline-block; float:right;}
/*管辖区域弹窗*/
.root-area{width:280px; height:300px; left:-140px; top:-150px;}
.root-area ul li{ width:80px;}
.position-new{position: absolute!important;left: 0;background-color: #fff;z-index: 100;}
.position-new1{position: absolute!important;left: 100px;background-color: #fff;z-index: 100;}
.position-head{position: absolute!important;left: 0;background-color: #e8e8e8;z-index: 100;}
.position-head1{position: absolute!important;left: 100px;background-color: #e8e8e8;z-index: 100;}
/*活跃报表*/
.hot-inn{ overflow-x:auto;overflow-y: hidden;}
.hot-inn ul{ width:1850px; height:30px; float:left;}
.hot-inn ul li{float:left; height:30px; width:51px; border-right:1px solid #d5d8da; text-align:center; line-height:30px; position:relative;}
.hot-inn ul li em.down-select-table{ top:10px;}
.hot-inn ul li.hot-table-innArea{ width:100px;}
.hot-inn ul li.hot-table-innName{ width:136px;}
.hot-inn ul li.yuding-inn{ background:#62933e;font-weight:bolder}/* 预定操作 */
.hot-inn ul li.ruzhu-inn{ background:#ffa800;font-weight:bolder}/* 入住操作 */
.hot-inn ul li.ruzhu-inn i{font-weight:bolder}
.hot-inn ul li.login-inn{ background:#6a6a6a;font-weight:bolder}
.hot-inn ul.table-header,.hot-inn ul.table-header li{position:relative;height:45px; line-height:45px;}
.hot-inn ul.table-header{position: static;}
.hot-inn ul.table-header li.down{cursor: pointer;}
.hot-inn ul.table-header li.active{background-color: #6a6a6a;color: #fff;}
.hot-inn ul.table-header li ol li{ line-height:35px;}
/*客户资料*/
.customer-window{position:relative; width:362px; height:542px; left:-181px; top:-271px; overflow:auto}
span.mark-difficult{ background:url(../images/style.png) no-repeat scroll -1px -607px;}
span.mark-competition{ background:url(../images/style.png) no-repeat scroll -139px -607px;}
span.mark-pass{ background:url(../images/style.png) no-repeat scroll -208px -607px;}
span.mark-no{ background:url(../images/style.png) no-repeat scroll -69px -607px;}
.content2 ul.customer-information{ width:100%; height:auto; float:left; border-bottom:0;}
.content2 ul.customer-information li{ width:100%; height:86px; border-bottom:1px solid #d5d8da;}
.content2 ul.customer-information li span{ width:42px; height:42px; color:#FFF; position:absolute; top:10px; left:10px;}
.content2 ul.customer-information li h1{ width:100%; height:30px; font-size:16px; text-align:left; line-height:30px; margin-top:8px; text-indent:70px;}
.content2 ul.customer-information li p{ width:100%; height:20px; line-height:20px; float:left; text-align:left; text-indent:70px; color:#a6a6a6; overflow:hidden;}
.customer-window a.add-del-customer{ width:40%; margin-right:10%; height:100%; display:block; color:#616161; text-indent: 5px; line-height: 24px; float:left;}
.customer-window a.add-del-customer:hover{ color:#000}
/*客栈审核*/
.audit-window{ position:relative; width:286px; /*height:167px;*/ left:-143px; overflow:hidden; width: 516px;}
.audit-window h2{ width:100%; height:60px; float:left; text-align:center; line-height:80px; font-size:18px; background:url(../images/style.png) no-repeat scroll -160px -459px; text-indent:30px;}
.audit-window p{ width:100%; height:38px; float:left; text-align:center; color:#c60006; font-size:14px; margin-top:10px;}
.audit-window span{ width:85%; height:50px; float:left; margin-left:15%;}
.audit-window span a{ margin-top:10px;}
.close{
position: absolute;
right: 0;
top: 0;
width: 30px;
height: 30px;
line-height: 30px;
background: #000;
opacity: 0.5;
-moz-opacity:0.5;
filter: alpha(opacity=50);
text-align: center;
cursor: pointer;
color: #fff;
}
.content ul.today-will-do-ul li i{ float:left; font-size:14px; text-align:left; text-indent:10px;}
.content ul.today-will-do-ul li span.audit{width:200px;}
/*无任何权限时*/
.welcome-tips{ width:200px; height:200px; margin:300px auto; background:url(../images/logo.png) no-repeat;}
/*登陆界面*/
.login{ width:390px; height:335px; position:relative; overflow:hidden; left:-195px; background:url(../images/login_bg.png) repeat; border:0;}
.login h1{ color:#F90;}
.login ul li span{ width:80px; height:44px; float:right; margin-left:10px; line-height:75px;}
.login ul li span a{ color:#0FC}
.login ul li img{width:120px; height:44px}
.login ul li input.check-code{ position:relative; top:-17px; margin-right:15px;}
.login ul li em.error-tips{ top:26px; width:349px}
input[name="j_username"],input[name="j_password"],input[name="sysUserCode"],input[name="sysUserName"],input[name="sysUserPwd"],input[name="mobile"],input[name="sysUserPwd_confirm"],input[name="parentName"],input[name="sysRoleName"]{ line-height: 40px; width: 100%; }
input[name="sysUserCode"],input[name="sysUserName"],input[name="sysUserPwd"],input[name="mobile"],input[name="sysUserPwd_confirm"],input[name="parentName"],input[name="sysRoleName"]{
text-indent: 108px;
}
input[name="j_captcha"]{ line-height: 40px;}
/*修改个人密码*/
.user-reset-password{ position:relative; width:300px; height:260px; left:-150px;}
.team2-left ul li{ margin-bottom:0px;}
/*客栈数据*/
.content2 table.room-date{ width:100%;}
.content2 table.room-date tr{ height:35px;}
.content2 table.room-date tr th{ height:35px; border-left: 1px solid #d5d8da; background:#e8e8e8;margin-left: -1px; border-bottom: 1px solid #d5d8da;}
.content2 table.room-date tr td{ text-align:center;border-left: 1px solid #d5d8da;margin-left: -1px; border-bottom: 1px solid #d5d8da;}
.select-area{ width:100%; height:35px;}
.select-area ul{ width:100%; height:100%; background:#CCC;}
.select-area ul li{ height:100%; float:left; padding:0 30px 0 30px; line-height:35px; border-right:1px solid #d5d8da; cursor:pointer;}
.select-area ul li:hover{ background:#09F; color:#FFF;}
.select-area ul li.on{ background:#f2f2f2; color:#333}
.select-area-room{overflow:hidden; height:645px;}
.header p.head-tips{width:100%; height:100%; line-height:67px; text-indent:15px; font-size:14px;}
.header p.head-tips i{color:#FF0000; font-size:14px;}
/*报表统计*/
.inn-count table{border-collapse: collapse;width: 100%;}
.inn-count table th,.inn-count table td{border: 1px solid #D5D8DA;width: 5%;}
.inn-count .table{position: relative;top:-70px}
.inn-count .table .thead{position: absolute;top:70px;background: #FFFFFF;width: 97%;margin:0 1.5%;padding-top: 20px;}
.inn-count .table .tbody{padding-top: 192px;overflow: auto;height: 409px;width: 97.8%;margin:0 0.7% 0 1.5%;}
.inn-count .table .tbody table td{text-align: center;}
.inn-count .info{padding-left: 40px;margin-top: -50px;}
.info h1{font-size: 14px;color:red}
.info ol li{list-style: decimal;padding: 5px 0;}
/*对账*/
.duizhang .date-date{padding-top: 13px;display: inline-block;width: 250px;}
.duizhang .date-date span{line-height: 66px;text-align: center;padding: 0 10px;}
.duizhang{width: 550px;}
.duizhang select{outline: none;border: 1px solid #cdcdcd;height: 31px;}
.duizhang .search-box{float: none;display: inline-block;}
.inn-cehckList table{border-collapse: collapse;font-size: 12px;width: 100%;}
.inn-cehckList table th,.inn-cehckList table td{border: 1px solid #D5D8DA;width:8% ;text-align: center;height: 30px;}
.inn-cehckList table td a{margin: 0}
.inn-cehckList table th:first-child,.inn-cehckList table td:first-child{width: 18%;}
.confirmEnd{width:275px;height: 130px;}
.acount{margin: 20px 20px 0;}
.acount span{color: #FF0000;font-weight: bold;}
.acount .no{color: #1B1B1B;font-weight: normal;margin-left: 15px;}
.duizhang-table table th,.duizhang-table table td{width: 8.3%;}
.duizhang-table table td div{border-bottom: 1px solid #D5D8DA;}
.duizhang-table table td .last{border: none;}
/*番茄小站报表统计*/
.fqxz_bbtj .date{text-align: right;padding: 15px 10px;}
.fqxz_bbtj table td{text-align: center;}
/*库存管理*/
.kz-table{width: 100%;text-align: center;border-collapse: collapse;}
.kz-table td,.kz-table th{padding: 5px;border: 1px solid #D5D8DA;}
.kz-table .active{background-color: #6a6a6a;color: #fff;}
.kz-table .name{color: #70a847;cursor: pointer;}
.kz-table .name:hover{text-decoration: underline;}
.kz-table .done{background-color: #545454;color: #fff;padding: 5px 8px;border-radius: 3px;cursor: default;}
.kz-table .un{background-color: #70a847;color: #fff;padding: 5px 23px;border-radius: 3px;cursor: pointer;}
.kc{width: auto;}
/*
.kc-btn{margin-top: 17px;padding: 8px 2px;background-color: #62933e;cursor: pointer;border: none;color: #fff;border-radius: 3px;font-weight: bold;margin-left: 15px;}
*/
.kc-btn {
float: left;
width: 100px;
margin-top: 10px;
text-align: center;
list-style: none;
height: 40px;
line-height: 40px;
border : 1px solid #d5d8da;
border-left: none;
color: #fff;
background: #62933E;
font-family: "微软雅黑";
cursor: pointer;
font-size: 12px;
}
.kc-btn:first-child {
border-left: 1px solid #d5d8da;
}
/*
.kc-active{background-color: #fff;color: #62933e;}
*/
.kc-active {
background-color: #fff;
color: #62933E;
}
.kc-table { min-width: 950px; }
.kz-table .oper{width: 15%;}
.kz-table .oper a:nth-child(2){margin-right: 10px;}
.kz-table .check{color: #70a847;}
.kz-table .delete{color: #d81117;margin-left: 10px;}
.kz-table select { width: 50px;}
.kc-p{position: absolute;bottom:0;margin-left: 10px;}
.addinn input{text-indent: 20px;width: 80%;margin-top: 20px;}
.addinn .error-tips{color: red;text-align: center;}
.addinn span{margin-top: 50px;margin-left: 90px;}
.addinn1{width: 320px;}
.addinn1 p{color: #000000;margin-top: 20px;}
.addinn1 .input{width: 88px;height: 25px;text-indent: 12px;}
.addinn1 p em{color: #d81117;font-size: 14px;margin: 0 2px;}
.addinn1 div{margin-left: 60px;margin-bottom: 20px;}
.addinn1 input{margin-left: 10px;}
.innChe{width: 420px;}
.innChe table{margin: 10px;}
.innChe table th,.innChe table td{padding: 8px;}
.innChe span{margin: 0;float: none;height: auto;}
.innChe hr{height: 0;}
/*文章管理*/
.kz-table td:first-child{max-width: 140px;}
.article-title{margin: 90px 30px;clear: both;}
.article-title textarea{width: 95%;height: 50px;}
.article-content{margin-top: -40px;max-height: 408px;}
.article-submit{text-align: center;}
.article-submit button{padding: 10px 24px;font-size: 14px;color: #fff;background-color: #70a847;border: none;cursor: pointer;}
.article-submit button:hover{background-color: #62933e;}
.article-edit-title{text-align: center;font-size: 16px;padding: 90px 0 20px;border-bottom: solid 1px #d5d8da;}
.article-edit-content p{font-size: 14px;line-height: 150%;margin-bottom: 10px;text-indent: 28px;padding: 10px 40px 0;}
.article-img-wrap{text-align: center;}
.article-link{padding: 20px 40px;}
.article-link a{margin: 0 10px;color: #70a847;}
.noPlus{background-image: none!important;text-indent: 0!important;}
/*.article-content .input{display: inline-block;width: 150px;height: 30px;text-indent: 10px;margin:0 20px;}*/
.hh td{text-align: center;}
.hh td>div{width: 80px;}
/**/
.title{
font-size: 16px;
padding: 20px;
}
.select-consignment{
text-align: center;
}
.select-consignment label{
padding-right: 20px;
}
input[name='consignment']{
width:15px;
height:15px;
}
.select-consignment{
margin: 20px;
}
.nextStep{
width: 200px;
height: 30px;
margin: 20px;
}
.center,.warmmessage{
text-align: center;
}
.warmmessage{
padding-bottom: 20px;
}
.btn-submit button,.btn-enterOrcansel button{width:100px;height:30px;padding-right:20px;}
/*客栈管理*/
#scale{
width:200px;
height: 30px;
line-height: 30px;
text-indent: 20px;
}
#innName1,#innName3{
text-align: center;
font-size: 16px;
padding: 10px;
}
#enter-soldout{
margin-left: 30px;
font-size: 16px;
padding: 20px;
}
.remark{
margin-left: 30px;
}
.remark>textarea{
width: 380px;
height: 100px;
}
.btn-enterOrcansel{
text-align: center;
margin-top: 20px;
}
#setChannelMsg>h2{
font-weight: bold;
}
.inn-search{
float: right;
}
.tab{
float: left;
width: 100%;
}
.inn-search,.tab{
margin-top:10px;
margin-bottom:10px;
}
.search-area{
position:relative;
float: left;
margin:10px 0 10px 15px;
}
.search-button-style{
right:175px;
display: none;
}
.btngroup{
float: left;
margin-top: 8px;
}
.windowBg,.windowBg1,.windowBg2,#dialogBlackBg{
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
display: none;
z-index: 2;
}
.dialoag-content{
position: relative;
width: 350px;
height: auto;
margin:15px;
background: #fff;
margin: 200px auto;
}
.dialoag-content>div{
margin-left: 15px;
}
.dialoag-bottom{
padding-top:10px;
}
.dialoag-bottom>p{
line-height: 32px;
text-align: center;
}
.dialoag-bottom>p:first-child{
}
/*.dialoag-bottom>p:nth-of-type(2){
display:none;
}*/
.dialoag-bottom>p:last-child{
color: red;
}
.dialoag-bottom>p>button{
width: 100px;
height: 32px;
}
.dialoag-content>p:first-child{
font-size: 14px;
}
.dialoag-content>p{
padding: 15px 0 0 15px;
}
.area-search-btn{
padding:5px 15px;
border: 1px solid #ccc;
position:absolute;
top:2px;
left:200px;
width:140px;
}
.select-closeroomtime{
margin-top:15px;
}
.select-closeroomtime>div>p{
margin-top: 10px;
position: relative;
}
.addtime{
margin-bottom: 15px;
}
.delete-line{
position: absolute;
left: -5px;
display: none;
width: 70%;
overflow: hidden;
}
.start-time,.end-time{
width: 100px;
height: 22px;
text-indent: 15px;
font-size: 12px;
}
.revert-time{
display: none;
}
.revert-time,.delete-time{
margin-left: 15px;
}
.windowBg2>div{
width:50px;
height:50px;
margin:300px auto;
}
/*渠道管理*/
/*#editChannelForm>table tr{
line-height: 30px;
}*/
.chnnel-name{
margin: 0 !important;
}
.chnnel-name>dt,.chnnel-name>dd{
display: table-cell !important;
vertical-align : middle !important;
}
.chnnel-name>dd{
position: relative !important;
width: 195px !important;
height: 28px !important;
background: none !important;
border :none !important;
text-align: left !important;
color: #000 !important;
line-height: 28px !important;
}
.chnnel-name>dd>span{
position: relative;
width: 85px;
margin: 8px 0 10px 5px;
height: 20px;
}
.chnnel-name>dd>span>em{
position:absolute;
right: -5px;
top: -10px;
width: 15px;
height: 15px;
line-height: 15px;
background: red;
color: #fff;
border-radius: 50%;
text-indent: 2px;
cursor: pointer;
}
.chnnel-name>dd>span>select{
width: 85px;
}
.add-area{
width: 60px;
height: 18px;
line-height: 18px;
margin-left: 10px;
margin-top: 8px;
text-align: center;
display: inline-block;
background: #fff;
border: 1px solid #ccc;
cursor: pointer;
}
/*移除对话框*/
.btn-submit{
margin-top: 20px;
}
.remove-reason{
position: relative;
padding-left: 145px;
}
.remove-reason span{
position: absolute;
left:30px;
top:0;
}
.remove-reason textarea{
width:250px;
height: 100px;
}
.enterRemove2{
display:none;
}
/*table*/
.table {
width: 100%;
max-width: 100%;
border: 1px solid #e0e0e0;
table-layout: fixed;
}
.table > thead,
.table .table-head {
background: #f2f2f2;
}
.table > thead > tr,
.table .table-head {
line-height: 40px;
font-weight: 700;
}
.table > thead > tr.table-white {
background-color: white;
}
.table > thead > tr > th {
text-align: left;
vertical-align: middle;
}
.table > thead > tr,
.table > tbody > tr {
border-top: 1px solid #e0e0e0;
height: 30px;
line-height: 30px;
}
.table > thead > tr > td,
.table > thead > tr > th,
.table > tbody > tr > td,
.table > tbody > tr > th {
padding: 5px;
line-height: 1.42857143;
vertical-align: middle;
word-break: break-all;
text-align: left;
border-right: 1px solid #e0e0e0;
text-align: center;
}
.table-hover > tbody > tr:hover {
background-color: #f5f5f5;
} | src/main/webapp/css/style.css | @charset "utf-8";
/* CSS Document */
/* 番茄家族css —— 番茄馒头 */
/* z-index以100进行递增,为100的整数倍 */
/* textarea自动缩进padding:5px*/
html,body {
text-size-adjust:none;
-webkit-text-size-adjust:none;
}
body,ul,ul li,h1,h2,h3,h4,h5,img,p,a,ol,em,dd,i{border:none; list-style:none; outline:medium; margin:0; padding:0; font-weight:normal;font-style:normal; text-decoration:none; font-family:微软雅黑; font-size:12px;} /*格式化css样式,需要其他的请自行添加*/
.clear{clear:both;} /*清除样式*/
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px white inset;
border: 1px solid #CCC!important;
}
textarea{
resize: none;
}
input,textarea{outline:medium;} /*清除webkit浏览器选中边框样式*/
a,a:link,a:hover{ text-decoration:none;color: #000000;}
a{cursor:pointer}
.body-hidden-white{ width:100%; height:100%; position:absolute;z-index:250; display:none;background-image:url(../images/w_bg.png);}
.body-hidden-block{ width:100%; height:100%; position:absolute;z-index:250; background:url(../images/hidden_bg.png); display:none;}
.red {color: red;}
/*表单样式*/
form{ margin:0; padding:0;border:0;}
input{ font-size:16px;}
input,span.select-box{ border:1px solid #cdcdcd;}
span.select-box{ display:block; background:#FFF; line-height:40px; color:#999; font-size:16px;text-indent:130px;}
span.min-select-box{ font-size:14px; text-indent:20px; text-align:left; border:0}
textarea{border:1px solid #cdcdcd;padding:5px;}
dd{ width:98px; height:40px; position:absolute; left:1px; top:1px; color:#b7b7b7; text-align:center; font-size:14px; line-height:40px; border-right:1px dotted #c9c9c9; background:#FFF;}
input.date{ color:#999; font-size:16px; text-indent:130px;}
em.date-ico{ display:block; width:24px; height:24px; position:absolute; background:url(../images/style.png) no-repeat 0 -228px #FFF; top:9px; right:9px;}
em.down-select{display:block; width:24px; height:24px; position:absolute; background:url(../images/style.png) no-repeat 0 -732px #FFF; top:9px; right:9px; cursor:pointer;}
em.down-select-table{display:block; width:24px; height:24px; background:url(../images/style.png) no-repeat 0 -732px; position:absolute; right:10px; top:7px; cursor:pointer;}
input.search{ width:177px; height:31px; border-radius:20px; border:1px solid #cdcdcd; text-indent:10px; font-size:12px;}
input.search-button{ width:25px; height:29px; float:right; border:0; background:url(../images/style.png) no-repeat scroll 0 -561px; position:absolute; top:8px; right:5px;cursor:pointer}
input.search-button:hover{background:url(../images/style.png) no-repeat scroll -117px -561px;}
.select-tab {
margin-top: 18px;
margin-left: 20px;
}
input.down-select-add{border:0; text-indent:10px; font-size:14px;}
em.down-select-add{ position:absolute; width:35px; height:35px; right:2px; top:2px; background:url(../images/style.png) no-repeat scroll 8px -77px #619739; border-radius:3px;}
input.customer-name,input.customer-phone{ width:60%; float:left; margin-left:-2px; font-size:14px;}
input.customer-phone{ width:38%; text-indent:5px; font-size:14px;}
input.check-code{ width:120px; text-indent:10px; font-size:16px;}
input[type=checkbox]{ position:relative;bottom:-2px;width:16px; height:16px; margin:0}
span.choice input[type=radio]{ width:16px; height:16px; margin:0; margin-top:20px; position:relative; top:3px;}
.team2 input[type=radio]{ width:16px; height:16px; margin:0;position:relative; top:3px; }
.team2 textarea{ width:315px; height:100px;resize:none;}
input.add-bumen{ width:97%; height:29px; margin:0; padding:0; text-indent:5px}
/*谷歌CSS3定义滚动条*/
/*---滚动条默认显示样式--*/
::-webkit-scrollbar-thumb{background-color:#545454; height:50px; outline-offset:0px; outline:none; -webkit-border-radius:10px; border: 0px solid #fff;}
/*---鼠标点击滚动条显示样式--*/
::-webkit-scrollbar-thumb:hover{ background-color:#1b1b1b;height:50px; -webkit-border-radius:10px;}
/*---滚动条大小--*/
::-webkit-scrollbar{width:8px;height:8px ;}
/*---滚动框背景样式--*/
::-webkit-scrollbar-track-piece{background:#ededed; -webkit-border-radius:0;}
/*公用样式*/
i.block-font{ color:#333}
.search-box{ width:177px; height:31px; float:right; margin:0 25px 0 0; position:relative}
/*分页列表样式*/
.page-list{ width:100%; height:82px; float:left;}
.page-list ul{ width:100%; height:100%; margin:0 auto; display:block;}
.page-list ul li{ background:#f2f2f2; border-radius:2px; border:1px solid #e2e2e2; text-align:center; height:21px; line-height:21px; padding:0 8px 0 8px; width:auto; float:left; margin:20px 0 0 8px;cursor: default;}
.page-list ul li:hover{ background:#D70007; color:#FFF}
.page-list ul li.active{background:#D70007; color:#FFF}
/*公用表格样式*/
li.percent15{ width:15%}
li.percent20{ width:20%;}
li.percent25{ width:25%;}
li.percent30{ width:30%;}
/* 背景 */
.bg1{ background:url(../images/bg_green.jpg) repeat; background-size: cover;}
.bg2{ background:url(../images/bg_yellow.jpg) repeat;background-size:cover;}
/*布局*/
.container{ position:relative; height:100%;overflow:auto;}
.container-left{ position:relative; float:left; width:15%; height:100%; background:rgba(255,255,255,0.25) repeat; overflow: auto;}
.container-right{ position:relative; float:left; width:85%; height:100%; background:#ffffff;overflow: auto;}
/*公用按钮*/
a.red-button-add,a.editor-button,a.del-button,a.green-button-add{ width:108px; height:33px; background:url(../images/style.png) no-repeat scroll 10px -78px #d70007; border-radius:3px; display:block; color:#FFF; text-align:center; line-height:33px; font-weight:bolder; text-indent:10px;}
a.red-button-add:hover{ background:url(../images/style.png) no-repeat scroll 10px -78px #c60006;}
a.green-button-add{ background:#70a847}
a.green-button-add{ background:#62933e}
a.green-button-ok{ display:block; width:100%; height:35px; border-radius:2px; text-align:center; line-height:35px; color:#FFF; background:#70a847; font-size:16px; margin-bottom:15px; margin-top: 15px;}
a.green-button-ok:hover{ background:#62933e;}
a.green-button-return{ display:block; width:108px; height:33px; border-radius:2px; text-align:center; line-height:33px; color:#FFF; background:#70a847; font-size:16px}
a.green-button-return:hover{background:#62933e;}
a.editor-button,a.del-button{ width:60px; height:23px; float:right; line-height:23px; background:url(../images/style.png) no-repeat scroll 4px -165px #70a847;}
a.editor-button:hover{background:url(../images/style.png) no-repeat scroll 4px -165px #62933e;}
a.del-button{background:url(../images/style.png) no-repeat scroll 4px -107px #d70007;}
a.del-button:hover{background:url(../images/style.png) no-repeat scroll 4px -107px #c60006;}
em.add-ico,em.del-ico{ background:url(../images/style.png) no-repeat scroll -132px -677px; display:block; width:24px; height:24px; float:left;}
em.del-ico{ background:url(../images/style.png) no-repeat scroll -161px -677px;}
em.phone-ico,em.qq-ico{background:url(../images/style.png) no-repeat scroll -232px -725px; width:18px; height:19px; display:block; float:left; position:relative; top:6px; margin-left:15px;}
em.qq-ico{background:url(../images/style.png) no-repeat scroll -232px -680px;}
a.audit-pass-button,a.audit-nopass-button,a.reset-button{ width:80px; height:28px; border-radius:2px; display:block; float:left; margin:20px 0 0 12px; background:url(../images/style.png) no-repeat scroll 10px -134px #70a847; text-align:center; color:#FFF; line-height:30px; text-indent:15px;}
a.audit-nopass-button{ background:url(../images/style.png) no-repeat scroll 10px -104px #d81117}
a.audit-pass-button:hover{background:url(../images/style.png) no-repeat scroll 10px -134px #62933e}
a.audit-nopass-button:hover{background:url(../images/style.png) no-repeat scroll 10px -104px #c60006}
a.reset-button{background:url(../images/style.png) no-repeat scroll -210px -103px #70a847;}
a.reset-button:hover{background:url(../images/style.png) no-repeat scroll -210px -103px #62933e;}
a.login-button{ width:100%; display:block; height:40px; background:#F90; border-radius:3px; text-align:center; font-size:16px; line-height:40px; color:#FFF; position:relative; top:-15px;}
a.login-button:hover{ background:#ff8400}
/*错误提示*/
em.error-tips{ display:block; color:#ca0207; width:99%; height:auto; text-indent:30px; line-height:30px; position:absolute; top:100%; background:url(../images/style.png) no-repeat scroll -230px -416px #fde2aa; border:1px solid #ffcc00;}
/*定位-自动居中*/
.center-box{ position:absolute; width:0; height:0; top:15%; left:50%; z-index:300}
.center-box-in{ background:#f2f2f2; border-radius:5px; border:1px solid #d5d8da;
-webkit-box-shadow:0 0 9px #b5b5b5;
-moz-box-shadow:0 0 9px #b5b5b5;
box-shadow:0 0 9px #b5b5b5;
}
.center-box-in a.close-window{ width:24px; height:31px; background:url(../images/style.png) no-repeat scroll 1px -102px #70a847; display:block; position:absolute; z-index:9999; right:1%;}
.center-box-in a.close-window:hover{ background-color:#5d8f39}
.center-box-in h1{ width:100%; height:50px; text-align:center; font-size:16px; line-height:50px; color:#70a847;}
.center-box-in ul{ width:94%; height:auto; margin:0 0 0 5%; float:left}
.center-box-in ul li{ width:100%; height:auto; float:left; position:relative;margin-top: 15px;}
/*定位-下拉选择*/
.center-box-in ol{ width:224px; right:0; max-height:180px; overflow:auto; background:#fff; border:1px solid #cdcdcd; position:absolute; z-index:200;
-webkit-box-shadow:0 0 9px #b5b5b5;
-moz-box-shadow:0 0 9px #b5b5b5;
box-shadow:0 0 9px #b5b5b5;}
.center-box-in ol li{width:100%; height:40px; border-bottom:1px solid #cdcdcd; margin:0px; text-align:center; font-size:16px; line-height:40px; color:#999; cursor:pointer;}
.center-box-in ol li:hover{ background:#eaeaea}
ol.min-select-box li{ font-size:14px;}
/*左边内容区*/
.logo{ float:left; height:48px; width:100%; margin:17px 0 15px 0; background:url(../images/style.png) scroll 10px 0 no-repeat;}
.login-content{ float:left; height:77px; width:205px; background:#fff;border-radius: 4px;margin:5px;}
.login-photo{ float:left; width:36px; height:100%; background:url(../images/style.png) no-repeat scroll -111px -463px; margin-left:5px;}
.login-phone{ float:left; width:150px; height:30px; text-indent:10px; line-height:45px; font-size:14px;}
.login-content a{ float:left;height:38px;line-height:36px; text-indent:25px; color:#ff6600}
.login-content a:hover{ color:#8b3800}
.login-content a.change-password{ background:url(../images/style.png) no-repeat scroll -220px -213px;}
.login-content a.logout{background:url(../images/style.png) no-repeat scroll -223px -241px;}
.nav{ float:left; width:205px; height:auto; margin-top:30px;}
.nav a{ color:#FFF;}
.nav a:hover{ color:#FFDE32}
.nav ul{width:100px;margin-left:5px;}
.nav ul li{ position:relative; float:left; padding: 0 45px; height:37px; font-size:14px; line-height:37px;}
.nav ul li.select{ /*background:url(../images/style.png) no-repeat scroll 0 -283px;*/background: #3B3D39;border-radius:20px;box-shadow: 2px 2px 5px 5px #373935 inset;-moz-box-shadow: 2px 2px 5px 5px #373935 inset; -webkit-box-shadow: 2px 2px 5px 5px #373935 inset;}
.nav ul li a{ float:left; height:100%; width:108px; text-align:center;}
.nav ul li a.today-will-do{ background:url(../images/style.png) no-repeat scroll -221px -45px;}
.nav ul li a.guest-data{background:url(../images/style.png) no-repeat scroll -221px -70px;}
.nav ul li a.reset-password{background:url(../images/style.png) no-repeat scroll -221px -99px;}
.nav ul li a.inn-audit{background:url(../images/style.png) no-repeat scroll -221px -128px;}
.nav ul li a.team-management{background:url(../images/style.png) no-repeat scroll -221px -157px;}
.nav ul li a.inn-inform{background:url(../images/style.png) no-repeat scroll -221px -184px;}
.nav ul li a.inn-hot{background:url(../images/style.png) no-repeat scroll -221px -758px;}
.nav ul li a.inn-count{background:url(../images/style.png) no-repeat scroll -221px -796px;}
.nav ul li a.inn-checkList{background:url(../images/style.png) no-repeat scroll -221px -899px;}
.nav ul li a.inn-manage{background:url(../images/style.png) no-repeat scroll -221px -967px;}
.nav ul li a.inn-article{background:url(../images/style.png) no-repeat scroll -221px -996px;}
.nav ul li a.inn-print{background:url(../images/style.png) no-repeat scroll -221px -865px;}
.nav ul li a.inn-xzbb{background:url(../images/style.png) no-repeat scroll -221px -939px;}
.nav ul li em{ position:absolute; top:14px; left:160px; width:10px; height:10px; background:url(../images/style.png) no-repeat scroll -6px -58px;}
/*右边头部区域*/
.header{ position:relative; float:left; height:66px; width:100%; background:#f2f2f2; border-bottom:solid 1px #d5d8da;border-radius:0 5px 0 0;padding-bottom:35px;}
.header h1{ position:relative; float:left; height:100%; width:100%; font-size:16px; text-indent:20px; line-height:66px;}
.header-button-box{ position:absolute; height:50%;top:40px; right:0; z-index:1;}
.header-button-box1{ position:absolute; height:40px;top:70px; left:0; z-index:1;}
.header-button-box a.date{ width:140px; height:100%; float:right; font-size:16px; background:url(../images/style.png) no-repeat scroll 100px -711px; line-height:66px; color:#999; display:block;}
.header-button-box a.date:hover{ color:#666}
.header-button-box a.add{ float:right; margin:18px 20px 0 0;}
.header-button-box a.date input{ text-indent:5px; margin-top:13px; background:none; border:0; color:#666}
/*活跃报表*/
.header-button-box span.choice{ width:200px; height:100%; float:right; display:block;}
.header-button-box span.choice a{ display:block; width:80px; height:28px; float:left; margin:20px 10px 0 0; font-size:12px; text-align:center; line-height:28px; color:#FFF; border-radius:2px; background:#70a847;}
.header-button-box span.choice a.choice:hover{ background:#62933e}
.header-button-box span.choice a.default{ background:#bbbbbb;}
.header-button-box span.choice a.default:hover{background:#a5a5a5;}
/*---------右边内容区域-----------*/
.content{ height:747px; width:100%; overflow:auto;}
.content2{ height:675px; width:100%; overflow:auto; border-bottom:1px solid #d5d8da;}/*content2表示下面有分页,无分页使用content*/
/*今日待办*/
.content ul.today-will-do-ul li{ width:100%; height:64px; position:relative; float:left; border-bottom:1px solid #d5d8da;}
.content ul.today-will-do-ul li h1,.content ul.today-will-do-ul li p{ width:100%; height:50%; float:left; text-indent:20px; line-height:40px;}
.content ul.today-will-do-ul li p{ color:#a6a6a6; font-size:12px; line-height:32px;}
.content ul.today-will-do-ul li h1 a{color:#424242; font-size:16px;}
.content ul.today-will-do-ul li h1 a:hover{ color:#000}
.content ul.today-will-do-ul li span{ display:block; width:120px; height:100%; position:absolute; right:0; background:#FFF; border-left:1px solid #d5d8da; z-index:100;}
.content ul.today-will-do-ul li span a.complete-button{ width:68px; height:25px; background:#70a847; color:#FFF; text-align:center; line-height:25px; display:block; float:left; margin-top:20px; margin-left:30px; border-radius:20px;}
.content ul.today-will-do-ul li span a.complete-button:hover{ background:#619839;}
.add-will-do{ position:relative; width:362px; height:522px; left:-181px; top:-261px; overflow:hidden;}
.add-will-do textarea{resize:none; width:312px; height:163px;}
/*客栈通知*/
.content ul.inn-inform li{ width:100%; height:auto; border-bottom:1px solid #d5d8da; float:left;}
.content ul.inn-inform li h1{ width:100%; height:45px; font-size:16px; color:#424242; text-indent:20px; line-height:45px; float:left;}
.content ul.inn-inform li h1 span{ font-size:12px; float:right; margin-right:20px; color:#696969}
.content ul.inn-inform li h1 span em{ font-size:14px; color:#333}
.content ul.inn-inform li h1 span em.have-send{color:#3a6619}
.content ul.inn-inform li h1 span em.no-send{color:#d70007}
.content ul.inn-inform li p{ width:auto; float:left; padding:0 0 10px 20px; color:#a6a6a6}
.content ul.inn-inform li span.link-box{ width:100%; height:40px; line-height:30px; float:left; text-indent:20px; position:relative;}
.content ul.inn-inform li a.inform-link{ color:#d70007}
.content ul.inn-inform li a.inform-link:hover{ color:#7e0004;}
.content ul.inn-inform li a.del-button,.content ul.inn-inform li a.editor-button{ margin:2px 20px 0 0;}
/*成员管理*/
.team{ position:relative; width:362px; height:430px; left:-181px;}
.content2 a{ color:#03C}
.content2 a:hover{ color:#09C}
.content2 ul{ width:100%; height:35px; border-bottom:1px solid #d5d8da;}
.content2 ul.table-header{ background:#e8e8e8;}
.content2 ul.table-header1{width: 1850px;}
.table-header-ol{ position:absolute; left:-38px;top:20px;z-index:101; background:#FFF; width:200px; height:auto; max-height:200px; overflow:auto; overflow-x:hidden; border:1px solid #d5d8da;
-webkit-box-shadow:0 0 9px #b5b5b5;
-moz-box-shadow:0 0 9px #b5b5b5;
box-shadow:0 0 9px #b5b5b5;
}
.area-new{position: absolute;top:22px;left:138px;font-size: 14px;width: 66px;}
.date-choose{margin-top:-18px;height: 65px;position: absolute;top: 18px;left: 450px;font-size: 14px}
.date-choose em{position: absolute;right: 0;top:30%!important;z-index: 0;}
.date-choose .cursor{height: 65px;width: 102px;line-height:65px;display: inline-block;position: relative;}
.date-choose .cursor span{cursor:pointer;height: 60px;width: 97px;
display: inline-block;
position: relative;
z-index: 10;
}
.date-choose button{background-color: #6a6a6a;color: #fff;border: none;padding: 8px 12px;outline: none;cursor: pointer;border-radius: 4px;}
.area-new em,.date-choose em{background-image:url(../images/style.png);background-position:0 -732px;width: 26px;height: 26px;display: inline-block;vertical-align: middle;top:0;}
.table-header-ol li{ width:100%; height:40px; line-height:40px;border-bottom:1px solid #d5d8da; cursor:pointer;text-align: center;}
.table-header-ol li:hover{ background:#EAEAEA}
.content2 ul li{ float:left; height:35px; border-left:1px solid #d5d8da; margin-left:-1px; text-align:center; line-height:35px; position:relative; overflow:hidden}
.content2 ul:first-child li{overflow:visible;}
input[name="sysUserCode"].sysUserCode{
text-indent: 20px;
line-height: 20px;
}
/*添加部门*/
.team2{ position:relative; width:560px; height:450px; left:-280px;}
.team2 .team2-right{ width:360px; float:right;height:450px;}
.team2 .team2-left{ width:190px; float:left;height:440px;border-right:1px solid #d5d8da; overflow:scroll; margin-left:-1px;}
/*权限管理弹窗*/
.root-set{position:relative; width:600px; height:500px; left:-135px; top:-150px; overflow:auto; overflow-x:hidden}
.root-set ul li{ width:120px; height:28px; margin-bottom:10px;}
.root-set ul li a{ height:25px; line-height:25px; font-size:14px; width:80px;}
.root-set ul li.select-all{ color:#c60006}
.root-set ul li input{ position:relative; top:4px; margin-right:5px;}
.root-set ul.bumen{ margin-bottom:15px;border:1px solid #d5d8da;}
.root-set ul.bumen li{ width:100%; margin:0; height:30px; border-bottom:0; text-align:center;}
.root-set ul.bumen li span{ width:50%; float:left; height:30px; line-height:30px;border-left:1px solid #d5d8da; border-bottom:1px solid #d5d8da; margin-left:-1px;}
.root-set ul.bumen li.header span{ background:#ededed}
.root-set ul li input.add-bumen{ margin:0; top:0; font-size:12px;}
.root-set ul.bumen li span em.add{ position:absolute; width:22px; height:22px; background:#690; border-radius:2px; left:92px; top:5px; color:#FFF; font-weight:bolder; font-size:14px; line-height:22px;}
.root-set ul.bumen li span em.add:hover{ background:#518950}
.root-set ul.bumen li span.add-bumen{width:100%;}
.root-set ul.bumen li span.add-bumen a{ color:#037900}
.root-set ul li.select-button{ width:220px; color:#F00}
.root-set ul li.select-button a.green-button-ok{ width:100px; display:inline-block; float:right;}
/*管辖区域弹窗*/
.root-area{width:280px; height:300px; left:-140px; top:-150px;}
.root-area ul li{ width:80px;}
.position-new{position: absolute!important;left: 0;background-color: #fff;z-index: 100;}
.position-new1{position: absolute!important;left: 100px;background-color: #fff;z-index: 100;}
.position-head{position: absolute!important;left: 0;background-color: #e8e8e8;z-index: 100;}
.position-head1{position: absolute!important;left: 100px;background-color: #e8e8e8;z-index: 100;}
/*活跃报表*/
.hot-inn{ overflow-x:auto;overflow-y: hidden;}
.hot-inn ul{ width:1850px; height:30px; float:left;}
.hot-inn ul li{float:left; height:30px; width:51px; border-right:1px solid #d5d8da; text-align:center; line-height:30px; position:relative;}
.hot-inn ul li em.down-select-table{ top:10px;}
.hot-inn ul li.hot-table-innArea{ width:100px;}
.hot-inn ul li.hot-table-innName{ width:136px;}
.hot-inn ul li.yuding-inn{ background:#62933e;font-weight:bolder}/* 预定操作 */
.hot-inn ul li.ruzhu-inn{ background:#ffa800;font-weight:bolder}/* 入住操作 */
.hot-inn ul li.ruzhu-inn i{font-weight:bolder}
.hot-inn ul li.login-inn{ background:#6a6a6a;font-weight:bolder}
.hot-inn ul.table-header,.hot-inn ul.table-header li{position:relative;height:45px; line-height:45px;}
.hot-inn ul.table-header{position: static;}
.hot-inn ul.table-header li.down{cursor: pointer;}
.hot-inn ul.table-header li.active{background-color: #6a6a6a;color: #fff;}
.hot-inn ul.table-header li ol li{ line-height:35px;}
/*客户资料*/
.customer-window{position:relative; width:362px; height:542px; left:-181px; top:-271px; overflow:auto}
span.mark-difficult{ background:url(../images/style.png) no-repeat scroll -1px -607px;}
span.mark-competition{ background:url(../images/style.png) no-repeat scroll -139px -607px;}
span.mark-pass{ background:url(../images/style.png) no-repeat scroll -208px -607px;}
span.mark-no{ background:url(../images/style.png) no-repeat scroll -69px -607px;}
.content2 ul.customer-information{ width:100%; height:auto; float:left; border-bottom:0;}
.content2 ul.customer-information li{ width:100%; height:86px; border-bottom:1px solid #d5d8da;}
.content2 ul.customer-information li span{ width:42px; height:42px; color:#FFF; position:absolute; top:10px; left:10px;}
.content2 ul.customer-information li h1{ width:100%; height:30px; font-size:16px; text-align:left; line-height:30px; margin-top:8px; text-indent:70px;}
.content2 ul.customer-information li p{ width:100%; height:20px; line-height:20px; float:left; text-align:left; text-indent:70px; color:#a6a6a6; overflow:hidden;}
.customer-window a.add-del-customer{ width:40%; margin-right:10%; height:100%; display:block; color:#616161; text-indent: 5px; line-height: 24px; float:left;}
.customer-window a.add-del-customer:hover{ color:#000}
/*客栈审核*/
.audit-window{ position:relative; width:286px; /*height:167px;*/ left:-143px; overflow:hidden; width: 516px;}
.audit-window h2{ width:100%; height:60px; float:left; text-align:center; line-height:80px; font-size:18px; background:url(../images/style.png) no-repeat scroll -160px -459px; text-indent:30px;}
.audit-window p{ width:100%; height:38px; float:left; text-align:center; color:#c60006; font-size:14px; margin-top:10px;}
.audit-window span{ width:85%; height:50px; float:left; margin-left:15%;}
.audit-window span a{ margin-top:10px;}
.close{
position: absolute;
right: 0;
top: 0;
width: 30px;
height: 30px;
line-height: 30px;
background: #000;
opacity: 0.5;
-moz-opacity:0.5;
filter: alpha(opacity=50);
text-align: center;
cursor: pointer;
color: #fff;
}
.content ul.today-will-do-ul li i{ float:left; font-size:14px; text-align:left; text-indent:10px;}
.content ul.today-will-do-ul li span.audit{width:200px;}
/*无任何权限时*/
.welcome-tips{ width:200px; height:200px; margin:300px auto; background:url(../images/logo.png) no-repeat;}
/*登陆界面*/
.login{ width:390px; height:335px; position:relative; overflow:hidden; left:-195px; background:url(../images/login_bg.png) repeat; border:0;}
.login h1{ color:#F90;}
.login ul li span{ width:80px; height:44px; float:right; margin-left:10px; line-height:75px;}
.login ul li span a{ color:#0FC}
.login ul li img{width:120px; height:44px}
.login ul li input.check-code{ position:relative; top:-17px; margin-right:15px;}
.login ul li em.error-tips{ top:26px; width:349px}
input[name="j_username"],input[name="j_password"],input[name="sysUserCode"],input[name="sysUserName"],input[name="sysUserPwd"],input[name="mobile"],input[name="sysUserPwd_confirm"],input[name="parentName"],input[name="sysRoleName"]{ line-height: 40px; width: 100%; }
input[name="sysUserCode"],input[name="sysUserName"],input[name="sysUserPwd"],input[name="mobile"],input[name="sysUserPwd_confirm"],input[name="parentName"],input[name="sysRoleName"]{
text-indent: 108px;
}
input[name="j_captcha"]{ line-height: 40px;}
/*修改个人密码*/
.user-reset-password{ position:relative; width:300px; height:260px; left:-150px;}
.team2-left ul li{ margin-bottom:0px;}
/*客栈数据*/
.content2 table.room-date{ width:100%;}
.content2 table.room-date tr{ height:35px;}
.content2 table.room-date tr th{ height:35px; border-left: 1px solid #d5d8da; background:#e8e8e8;margin-left: -1px; border-bottom: 1px solid #d5d8da;}
.content2 table.room-date tr td{ text-align:center;border-left: 1px solid #d5d8da;margin-left: -1px; border-bottom: 1px solid #d5d8da;}
.select-area{ width:100%; height:35px;}
.select-area ul{ width:100%; height:100%; background:#CCC;}
.select-area ul li{ height:100%; float:left; padding:0 30px 0 30px; line-height:35px; border-right:1px solid #d5d8da; cursor:pointer;}
.select-area ul li:hover{ background:#09F; color:#FFF;}
.select-area ul li.on{ background:#f2f2f2; color:#333}
.select-area-room{overflow:hidden; height:645px;}
.header p.head-tips{width:100%; height:100%; line-height:67px; text-indent:15px; font-size:14px;}
.header p.head-tips i{color:#FF0000; font-size:14px;}
/*报表统计*/
.inn-count table{border-collapse: collapse;width: 100%;}
.inn-count table th,.inn-count table td{border: 1px solid #D5D8DA;width: 5%;}
.inn-count .table{position: relative;top:-70px}
.inn-count .table .thead{position: absolute;top:70px;background: #FFFFFF;width: 97%;margin:0 1.5%;padding-top: 20px;}
.inn-count .table .tbody{padding-top: 192px;overflow: auto;height: 409px;width: 97.8%;margin:0 0.7% 0 1.5%;}
.inn-count .table .tbody table td{text-align: center;}
.inn-count .info{padding-left: 40px;margin-top: -50px;}
.info h1{font-size: 14px;color:red}
.info ol li{list-style: decimal;padding: 5px 0;}
/*对账*/
.duizhang .date-date{padding-top: 13px;display: inline-block;width: 250px;}
.duizhang .date-date span{line-height: 66px;text-align: center;padding: 0 10px;}
.duizhang{width: 550px;}
.duizhang select{outline: none;border: 1px solid #cdcdcd;height: 31px;}
.duizhang .search-box{float: none;display: inline-block;}
.inn-cehckList table{border-collapse: collapse;font-size: 12px;width: 100%;}
.inn-cehckList table th,.inn-cehckList table td{border: 1px solid #D5D8DA;width:8% ;text-align: center;height: 30px;}
.inn-cehckList table td a{margin: 0}
.inn-cehckList table th:first-child,.inn-cehckList table td:first-child{width: 18%;}
.confirmEnd{width:275px;height: 130px;}
.acount{margin: 20px 20px 0;}
.acount span{color: #FF0000;font-weight: bold;}
.acount .no{color: #1B1B1B;font-weight: normal;margin-left: 15px;}
.duizhang-table table th,.duizhang-table table td{width: 8.3%;}
.duizhang-table table td div{border-bottom: 1px solid #D5D8DA;}
.duizhang-table table td .last{border: none;}
/*番茄小站报表统计*/
.fqxz_bbtj .date{text-align: right;padding: 15px 10px;}
.fqxz_bbtj table td{text-align: center;}
/*库存管理*/
.kz-table{width: 100%;text-align: center;border-collapse: collapse;}
.kz-table td,.kz-table th{padding: 5px;border: 1px solid #D5D8DA;}
.kz-table .active{background-color: #6a6a6a;color: #fff;}
.kz-table .name{color: #70a847;cursor: pointer;}
.kz-table .name:hover{text-decoration: underline;}
.kz-table .done{background-color: #545454;color: #fff;padding: 5px 8px;border-radius: 3px;cursor: default;}
.kz-table .un{background-color: #70a847;color: #fff;padding: 5px 23px;border-radius: 3px;cursor: pointer;}
.kc{width: auto;}
/*
.kc-btn{margin-top: 17px;padding: 8px 2px;background-color: #62933e;cursor: pointer;border: none;color: #fff;border-radius: 3px;font-weight: bold;margin-left: 15px;}
*/
.kc-btn {
float: left;
width: 100px;
margin-top: 10px;
text-align: center;
list-style: none;
height: 40px;
line-height: 40px;
border : 1px solid #d5d8da;
border-left: none;
color: #fff;
background: #62933E;
font-family: "微软雅黑";
cursor: pointer;
font-size: 12px;
}
.kc-btn:first-child {
border-left: 1px solid #d5d8da;
}
/*
.kc-active{background-color: #fff;color: #62933e;}
*/
.kc-active {
background-color: #fff;
color: #62933E;
}
.kc-table { min-width: 950px; }
.kz-table .oper{width: 15%;}
.kz-table .oper a:nth-child(2){margin-right: 10px;}
.kz-table .check{color: #70a847;}
.kz-table .delete{color: #d81117;margin-left: 10px;}
.kz-table select { width: 50px;}
.kc-p{position: absolute;bottom:0;margin-left: 10px;}
.addinn input{text-indent: 20px;width: 80%;margin-top: 20px;}
.addinn .error-tips{color: red;text-align: center;}
.addinn span{margin-top: 50px;margin-left: 90px;}
.addinn1{width: 320px;}
.addinn1 p{color: #000000;margin-top: 20px;}
.addinn1 .input{width: 88px;height: 25px;text-indent: 12px;}
.addinn1 p em{color: #d81117;font-size: 14px;margin: 0 2px;}
.addinn1 div{margin-left: 60px;margin-bottom: 20px;}
.addinn1 input{margin-left: 10px;}
.innChe{width: 420px;}
.innChe table{margin: 10px;}
.innChe table th,.innChe table td{padding: 8px;}
.innChe span{margin: 0;float: none;height: auto;}
.innChe hr{height: 0;}
/*文章管理*/
.kz-table td:first-child{max-width: 140px;}
.article-title{margin: 90px 30px;clear: both;}
.article-title textarea{width: 95%;height: 50px;}
.article-content{margin-top: -40px;max-height: 408px;}
.article-submit{text-align: center;}
.article-submit button{padding: 10px 24px;font-size: 14px;color: #fff;background-color: #70a847;border: none;cursor: pointer;}
.article-submit button:hover{background-color: #62933e;}
.article-edit-title{text-align: center;font-size: 16px;padding: 90px 0 20px;border-bottom: solid 1px #d5d8da;}
.article-edit-content p{font-size: 14px;line-height: 150%;margin-bottom: 10px;text-indent: 28px;padding: 10px 40px 0;}
.article-img-wrap{text-align: center;}
.article-link{padding: 20px 40px;}
.article-link a{margin: 0 10px;color: #70a847;}
.noPlus{background-image: none!important;text-indent: 0!important;}
/*.article-content .input{display: inline-block;width: 150px;height: 30px;text-indent: 10px;margin:0 20px;}*/
.hh td{text-align: center;}
.hh td>div{width: 80px;}
/**/
.title{
font-size: 16px;
padding: 20px;
}
.select-consignment{
text-align: center;
}
.select-consignment label{
padding-right: 20px;
}
input[name='consignment']{
width:15px;
height:15px;
}
.select-consignment{
margin: 20px;
}
.nextStep{
width: 200px;
height: 30px;
margin: 20px;
}
.center,.warmmessage{
text-align: center;
}
.warmmessage{
padding-bottom: 20px;
}
.btn-submit button,.btn-enterOrcansel button{width:100px;height:30px;padding-right:20px;}
/*客栈管理*/
#scale{
width:200px;
height: 30px;
line-height: 30px;
text-indent: 20px;
}
#innName1,#innName3{
text-align: center;
font-size: 16px;
padding: 10px;
}
#enter-soldout{
margin-left: 30px;
font-size: 16px;
padding: 20px;
}
.remark{
margin-left: 30px;
}
.remark>textarea{
width: 380px;
height: 100px;
}
.btn-enterOrcansel{
text-align: center;
margin-top: 20px;
}
#setChannelMsg>h2{
font-weight: bold;
}
.inn-search{
float: right;
}
.tab{
float: left;
width: 100%;
}
.inn-search,.tab{
margin-top:10px;
margin-bottom:10px;
}
.search-area{
position:relative;
float: left;
margin:10px 0 10px 15px;
}
.search-button-style{
right:175px;
display: none;
}
.btngroup{
float: left;
margin-top: 8px;
}
.windowBg,.windowBg1,.windowBg2,#dialogBlackBg{
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
display: none;
z-index: 2;
}
.dialoag-content{
position: relative;
width: 350px;
height: auto;
margin:15px;
background: #fff;
margin: 200px auto;
}
.dialoag-content>div{
margin-left: 15px;
}
.dialoag-bottom{
padding-top:10px;
}
.dialoag-bottom>p{
line-height: 32px;
text-align: center;
}
.dialoag-bottom>p:first-child{
}
/*.dialoag-bottom>p:nth-of-type(2){
display:none;
}*/
.dialoag-bottom>p:last-child{
color: red;
}
.dialoag-bottom>p>button{
width: 100px;
height: 32px;
}
.dialoag-content>p:first-child{
font-size: 14px;
}
.dialoag-content>p{
padding: 15px 0 0 15px;
}
.area-search-btn{
padding:5px 15px;
border: 1px solid #ccc;
position:absolute;
top:2px;
left:200px;
width:140px;
}
.select-closeroomtime{
margin-top:15px;
}
.select-closeroomtime>div>p{
margin-top: 10px;
position: relative;
}
.addtime{
margin-bottom: 15px;
}
.delete-line{
position: absolute;
left: -5px;
display: none;
width: 70%;
overflow: hidden;
}
.start-time,.end-time{
width: 100px;
height: 22px;
text-indent: 15px;
font-size: 12px;
}
.revert-time{
display: none;
}
.revert-time,.delete-time{
margin-left: 15px;
}
.windowBg2>div{
width:50px;
height:50px;
margin:300px auto;
}
/*渠道管理*/
/*#editChannelForm>table tr{
line-height: 30px;
}*/
.chnnel-name{
margin: 0 !important;
}
.chnnel-name>dt,.chnnel-name>dd{
display: table-cell !important;
vertical-align : middle !important;
}
.chnnel-name>dd{
position: relative !important;
width: 195px !important;
height: 28px !important;
background: none !important;
border :none !important;
text-align: left !important;
color: #000 !important;
line-height: 28px !important;
}
.chnnel-name>dd>span{
position: relative;
width: 85px;
margin: 8px 0 10px 5px;
height: 20px;
}
.chnnel-name>dd>span>em{
position:absolute;
right: -5px;
top: -10px;
width: 15px;
height: 15px;
line-height: 15px;
background: red;
color: #fff;
border-radius: 50%;
text-indent: 2px;
cursor: pointer;
}
.chnnel-name>dd>span>select{
width: 85px;
}
.add-area{
width: 60px;
height: 18px;
line-height: 18px;
margin-left: 10px;
margin-top: 8px;
text-align: center;
display: inline-block;
background: #fff;
border: 1px solid #ccc;
cursor: pointer;
}
/*移除对话框*/
.btn-submit{
margin-top: 20px;
}
.remove-reason{
position: relative;
padding-left: 145px;
}
.remove-reason span{
position: absolute;
left:30px;
top:0;
}
.remove-reason textarea{
width:250px;
height: 100px;
}
.enterRemove2{
display:none;
}
/*table*/
.table {
width: 100%;
max-width: 100%;
border: 1px solid #e0e0e0;
table-layout: fixed;
}
.table > thead,
.table .table-head {
background: #f2f2f2;
}
.table > thead > tr,
.table .table-head {
line-height: 40px;
font-weight: 700;
}
.table > thead > tr.table-white {
background-color: white;
}
.table > thead > tr > th {
text-align: left;
vertical-align: middle;
}
.table > thead > tr,
.table > tbody > tr {
border-top: 1px solid #e0e0e0;
height: 30px;
line-height: 30px;
}
.table > thead > tr > td,
.table > thead > tr > th,
.table > tbody > tr > td,
.table > tbody > tr > th {
padding: 5px;
line-height: 1.42857143;
vertical-align: middle;
word-break: break-all;
text-align: left;
border-right: 1px solid #e0e0e0;
text-align: center;
}
.table-hover > tbody > tr:hover {
background-color: #f5f5f5;
} | 0.244904 | 0.077622 |
body {
color: #555
}
a {
cursor: pointer;
color: inherit;
text-decoration: none;
line-height: inherit;
-webkit-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
-moz-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
-o-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease
}
a:visited,
.alink:visited {
color: inherit
}
a:focus,
a:hover {
text-decoration: none
}
a:active,
.alink:active {
color: inherit;
text-decoration: none
}
a:hover,
.alink:hover {
color: #c99947
}
img {
height: auto
}
h1,
h2,
h3,
h4,
h5 {
font-weight: 600;
margin-top: 0;
color: #222
}
.secondary-font-family {
font-family: Montserrat, sans-serif
}
button,
a.action.primary {
border-radius: 0
}
button {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 0;
height: 40px;
line-height: 36px;
padding: 0 15px;
font-size: 12px;
text-transform: uppercase;
transition: all .3s ease;
font-family: Montserrat, sans-serif
}
button:hover {
background-color: #c99947;
border-color: #c99947;
color: #fff
}
button:focus {
outline: none !important
}
button.disabled,
button[disabled],
fieldset[disabled] button {
opacity: .5 !important;
cursor: default !important
}
button.dark {
background-color: #222;
border-color: #222;
color: #fff;
padding-left: 30px;
padding-right: 30px;
font-size: 12px;
font-weight: 600
}
button.dark:hover {
background-color: #c99947;
border-color: #c99947;
color: #fff
}
input[type="text"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="email"],
textarea {
border: 0;
padding: 8px 20px;
font-size: inherit;
line-height: inherit;
color: inherit;
font-weight: inherit;
max-width: 100%;
border-radius: 0 !important;
background: 0 0;
box-shadow: 0 0 0 1px #e5e5e5 inset;
-webkit-appearance: none;
-moz-appearance: none;
outline: 0;
margin: 0
}
input[type="text"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="email"] {
height: 40px
}
input[type="radio"] {
margin-top: 4px
}
.text-primary,
.theme-color {
color: #c99947 !important
}
@-webkit-keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
animation-timing-function: cubic-bezier(.755, .05, .855, .06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0)
}
70% {
-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
animation-timing-function: cubic-bezier(.755, .05, .855, .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 {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
animation-timing-function: cubic-bezier(.755, .05, .855, .06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0)
}
70% {
-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
animation-timing-function: cubic-bezier(.755, .05, .855, .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 {
from,
50%,
to {
opacity: 1
}
25%,
75% {
opacity: 0
}
}
@keyframes flash {
from,
50%,
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, .75, 1);
transform: scale3d(1.25, .75, 1)
}
40% {
-webkit-transform: scale3d(.75, 1.25, 1);
transform: scale3d(.75, 1.25, 1)
}
50% {
-webkit-transform: scale3d(1.15, .85, 1);
transform: scale3d(1.15, .85, 1)
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1)
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .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, .75, 1);
transform: scale3d(1.25, .75, 1)
}
40% {
-webkit-transform: scale3d(.75, 1.25, 1);
transform: scale3d(.75, 1.25, 1)
}
50% {
-webkit-transform: scale3d(1.15, .85, 1);
transform: scale3d(1.15, .85, 1)
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1)
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .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, 0);
transform: rotate3d(0, 0, 1, 0)
}
}
@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, 0);
transform: rotate3d(0, 0, 1, 0)
}
}
.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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes wobble {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble
}
@-webkit-keyframes jello {
from,
11.1%,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
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(-.78125deg) skewY(-.78125deg);
transform: skewX(-.78125deg) skewY(-.78125deg)
}
77.7% {
-webkit-transform: skewX(.390625deg) skewY(.390625deg);
transform: skewX(.390625deg) skewY(.390625deg)
}
88.8% {
-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
transform: skewX(-.1953125deg) skewY(-.1953125deg)
}
}
@keyframes jello {
from,
11.1%,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
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(-.78125deg) skewY(-.78125deg);
transform: skewX(-.78125deg) skewY(-.78125deg)
}
77.7% {
-webkit-transform: skewX(.390625deg) skewY(.390625deg);
transform: skewX(.390625deg) skewY(.390625deg)
}
88.8% {
-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
transform: skewX(-.1953125deg) skewY(-.1953125deg)
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center
}
@-webkit-keyframes heartBeat {
0% {
-webkit-transform: scale(1);
transform: scale(1)
}
14% {
-webkit-transform: scale(1.3);
transform: scale(1.3)
}
28% {
-webkit-transform: scale(1);
transform: scale(1)
}
42% {
-webkit-transform: scale(1.3);
transform: scale(1.3)
}
70% {
-webkit-transform: scale(1);
transform: scale(1)
}
}
@keyframes heartBeat {
0% {
-webkit-transform: scale(1);
transform: scale(1)
}
14% {
-webkit-transform: scale(1.3);
transform: scale(1.3)
}
28% {
-webkit-transform: scale(1);
transform: scale(1)
}
42% {
-webkit-transform: scale(1.3);
transform: scale(1.3)
}
70% {
-webkit-transform: scale(1);
transform: scale(1)
}
}
.heartBeat {
-webkit-animation-name: heartBeat;
animation-name: heartBeat;
-webkit-animation-duration: 1.3s;
animation-duration: 1.3s;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
@-webkit-keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1)
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .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(.97, .97, .97);
transform: scale3d(.97, .97, .97)
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
@keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1)
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .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(.97, .97, .97);
transform: scale3d(.97, .97, .97)
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
.bounceIn {
-webkit-animation-duration: .75s;
animation-duration: .75s;
-webkit-animation-name: bounceIn;
animation-name: bounceIn
}
@-webkit-keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3e3px, 0);
transform: translate3d(0, -3e3px, 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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3e3px, 0);
transform: translate3d(0, -3e3px, 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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown
}
@-webkit-keyframes bounceInLeft {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3e3px, 0, 0);
transform: translate3d(-3e3px, 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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes bounceInLeft {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3e3px, 0, 0);
transform: translate3d(-3e3px, 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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft
}
@-webkit-keyframes bounceInRight {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(3e3px, 0, 0);
transform: translate3d(3e3px, 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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes bounceInRight {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(3e3px, 0, 0);
transform: translate3d(3e3px, 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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight
}
@-webkit-keyframes bounceInUp {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3e3px, 0);
transform: translate3d(0, 3e3px, 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 {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3e3px, 0);
transform: translate3d(0, 3e3px, 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(.9, .9, .9);
transform: scale3d(.9, .9, .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(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .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(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
}
.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
-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, 2e3px, 0);
transform: translate3d(0, 2e3px, 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, 2e3px, 0);
transform: translate3d(0, 2e3px, 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(-2e3px, 0, 0);
transform: translate3d(-2e3px, 0, 0)
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(-2e3px, 0, 0);
transform: translate3d(-2e3px, 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(2e3px, 0, 0);
transform: translate3d(2e3px, 0, 0)
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(2e3px, 0, 0);
transform: translate3d(2e3px, 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, -2e3px, 0);
transform: translate3d(0, -2e3px, 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, -2e3px, 0);
transform: translate3d(0, -2e3px, 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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2e3px, 0);
transform: translate3d(0, -2e3px, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2e3px, 0);
transform: translate3d(0, -2e3px, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2e3px, 0, 0);
transform: translate3d(-2e3px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2e3px, 0, 0);
transform: translate3d(-2e3px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2e3px, 0, 0);
transform: translate3d(2e3px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2e3px, 0, 0);
transform: translate3d(2e3px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2e3px, 0);
transform: translate3d(0, 2e3px, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2e3px, 0);
transform: translate3d(0, 2e3px, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.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, 2e3px, 0);
transform: translate3d(0, 2e3px, 0)
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2e3px, 0);
transform: translate3d(0, 2e3px, 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(-2e3px, 0, 0);
transform: translate3d(-2e3px, 0, 0)
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(-2e3px, 0, 0);
transform: translate3d(-2e3px, 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(2e3px, 0, 0);
transform: translate3d(2e3px, 0, 0)
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(2e3px, 0, 0);
transform: translate3d(2e3px, 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, -2e3px, 0);
transform: translate3d(0, -2e3px, 0)
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2e3px, 0);
transform: translate3d(0, -2e3px, 0)
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
40% {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) scale3d(1, 1, 1) 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(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
to {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
40% {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) scale3d(1, 1, 1) 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(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
to {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
-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-duration: .75s;
animation-duration: .75s;
-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-animation-duration: .75s;
animation-duration: .75s;
-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)
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@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)
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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-duration: 2s;
animation-duration: 2s;
-webkit-animation-name: hinge;
animation-name: hinge
}
@-webkit-keyframes jackInTheBox {
from {
opacity: 0;
-webkit-transform: scale(.1) rotate(30deg);
transform: scale(.1) rotate(30deg);
-webkit-transform-origin: center bottom;
transform-origin: center bottom
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg)
}
70% {
-webkit-transform: rotate(3deg);
transform: rotate(3deg)
}
to {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1)
}
}
@keyframes jackInTheBox {
from {
opacity: 0;
-webkit-transform: scale(.1) rotate(30deg);
transform: scale(.1) rotate(30deg);
-webkit-transform-origin: center bottom;
transform-origin: center bottom
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg)
}
70% {
-webkit-transform: rotate(3deg);
transform: rotate(3deg)
}
to {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1)
}
}
.jackInTheBox {
-webkit-animation-name: jackInTheBox;
animation-name: jackInTheBox
}
@-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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.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(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
50% {
opacity: 1
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
50% {
opacity: 1
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1e3px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1e3px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1e3px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1e3px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1e3px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1e3px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1e3px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1e3px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1e3px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1e3px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1e3px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1e3px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp
}
@-webkit-keyframes zoomOut {
from {
opacity: 1
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
to {
opacity: 0
}
}
@keyframes zoomOut {
from {
opacity: 1
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
to {
opacity: 0
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2e3px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2e3px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2e3px, 0, 0);
transform: scale(.1) translate3d(-2e3px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2e3px, 0, 0);
transform: scale(.1) translate3d(-2e3px, 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(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2e3px, 0, 0);
transform: scale(.1) translate3d(2e3px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2e3px, 0, 0);
transform: scale(.1) translate3d(2e3px, 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(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2e3px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2e3px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .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
}
.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.delay-1s {
-webkit-animation-delay: 1s;
animation-delay: 1s
}
.animated.delay-2s {
-webkit-animation-delay: 2s;
animation-delay: 2s
}
.animated.delay-3s {
-webkit-animation-delay: 3s;
animation-delay: 3s
}
.animated.delay-4s {
-webkit-animation-delay: 4s;
animation-delay: 4s
}
.animated.delay-5s {
-webkit-animation-delay: 5s;
animation-delay: 5s
}
.animated.fast {
-webkit-animation-duration: 800ms;
animation-duration: 800ms
}
.animated.faster {
-webkit-animation-duration: 500ms;
animation-duration: 500ms
}
.animated.slow {
-webkit-animation-duration: 2s;
animation-duration: 2s
}
.animated.slower {
-webkit-animation-duration: 3s;
animation-duration: 3s
}
@media(prefers-reduced-motion) {
.animated {
-webkit-animation: unset !important;
animation: unset !important;
-webkit-transition: none !important;
transition: none !important
}
}
.page-main {
padding-left: 15px;
padding-right: 15px
}
.columns .column.main {
padding-bottom: 0
}
@media (min-width: 1200px) {
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
max-width: 1200px
}
}
@media (max-width: 991px) {
.breadcrumbs,
.page-wrapper>.widget,
.page-wrapper>.page-bottom,
.block.category.event,
.page-main {
max-width: 720px;
margin-left: auto;
margin-right: auto;
width: 100%
}
}
@media (max-width: 767px) {
.breadcrumbs,
.page-wrapper>.widget,
.page-wrapper>.page-bottom,
.block.category.event,
.page-main {
max-width: 540px
}
}
.action.primary {
height: 38px;
line-height: 38px;
border: 0;
text-align: center;
padding: 0 30px;
background-color: #222;
color: #fff;
border-radius: 0;
transition: all .3s ease;
text-transform: uppercase;
font-size: 12px;
font-family: Montserrat, sans-serif
}
.action.primary:visited,
.action.primary:focus {
background-color: #222;
color: #fff;
border: 0
}
.action.primary:hover {
background-color: #c99947;
border: 0
}
.box-settings {
position: relative
}
.box-settings .settings-wrapper {
position: absolute;
cursor: default;
top: 100%;
right: 0;
z-index: 999;
visibility: hidden;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease, visibility 0.4s linear 0s;
-moz-transition: opacity 0.4s ease, -moz-transform 0.4s ease, visibility 0.4s linear 0s;
-ms-transition: opacity 0.4s ease, -ms-transform 0.4s ease, visibility 0.4s linear 0s;
-o-transition: opacity 0.4s ease, -o-transform 0.4s ease, visibility 0.4s linear 0s;
transition: opacity .4s ease, transform .4s ease, visibility .4s linear 0s;
-webkit-transform: translateY(20px);
-moz-transform: translateY(20px);
-ms-transform: translateY(20px);
-o-transform: translateY(20px);
transform: translateY(20px)
}
.box-settings.open .settings-wrapper,
.box-settings:hover .settings-wrapper {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
opacity: 1;
filter: alpha(opacity=100);
visibility: inherit
}
.box-settings .setting-content {
background: #fff;
text-align: left;
width: 290px;
float: left;
padding: 25px;
padding-top: 13px;
border: 1px solid #ccc;
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19)
}
.box-settings .setting-content .switcher {
display: block;
border-bottom: 1px dotted #ccc;
padding-top: 12px;
padding-bottom: 20px;
margin: 0
}
.switcher .switcher-options {
list-style: none;
padding: 0;
margin: 0
}
.switcher .switcher-label {
display: block;
font-size: 11px;
text-transform: uppercase;
color: #333;
margin-bottom: 7px
}
.switcher .switcher-options>li {
display: inline-block;
vertical-align: middle;
margin-right: 2px
}
.switcher-currency .switcher-options>li>* {
background-color: #eee;
color: #333;
padding: 0 15px;
display: inline-block;
font-size: 12px;
line-height: 20px;
font-family: Montserrat;
font-weight: 600;
transition: all .3s
}
.switcher-currency .switcher-options>li>span,
.switcher-currency .switcher-options>li>a:hover {
background-color: #4f4f4f;
color: #fff
}
.switcher-language .switcher-options>li img {
transition: all .3s
}
.switcher-language .switcher-options>li>span>img,
.switcher-language .switcher-options>li>a:hover>img {
box-shadow: 0 0 2px 1px #4f4f4f
}
.box-settings ul.header.links {
padding: 0 0 0 17px;
margin: 15px 0 0;
font-size: 14px;
line-height: 24px;
color: #555
}
.box-settings ul.header.links a:hover {
color: #c99947
}
.top-bar {
position: relative;
z-index: 6
}
@media (min-width: 992px) {
.page-header .nav-sections .switcher {
display: none
}
}
.logo {
margin: 0;
z-index: 1
}
.logo .sticky-logo {
display: none
}
.block-search {
float: right;
padding-left: 15px;
position: relative;
width: 250px;
z-index: 4;
margin: 0
}
.block-search .label {
display: none
}
.block-search input {
height: 50px;
box-shadow: none !important;
padding: 13px 30px 13px 0;
border: 0;
background-color: #fff;
font-size: 13px;
line-height: inherit;
text-align: inherit;
color: inherit !important;
position: static;
margin: 0
}
.block-search .action.search.disabled,
.block-search .action.search[disabled],
fieldset[disabled] .block-search .action.search {
pointer-events: none;
opacity: .5
}
.block-search .action.search {
display: inline-block;
background-image: none;
background: none;
-moz-box-sizing: border-box;
border: 0;
box-shadow: none;
margin: 0;
text-decoration: none;
text-shadow: none;
font-weight: 400;
position: absolute;
top: 0;
z-index: 1;
line-height: 24px;
padding: 14px 0;
right: 0;
height: 50px;
font-size: 23px
}
.block-search .action.search:before {
display: none
}
.block-search .action.search>span {
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px
}
.box-settings>span.icon {
font-size: 24px;
color: #222;
font-weight: 400;
line-height: 50px;
width: 36px;
text-align: right;
cursor: pointer;
transition: all .3s ease
}
.box-settings>span.icon:hover {
color: #c99947
}
.minicart-wrapper .action.showcart:before,
.minicart-wrapper .action.showcart.active:before {
font-family: Pe-icon-7-stroke, sans-serif;
content: "\e66e"
}
.block-search .control {
border: 0;
margin: 0
}
.nav-toggle:before,
.nav-toggle:hover:before {
color: inherit
}
.breadcrumbs {
padding: 12px 15px;
margin-bottom: 20px
}
.breadcrumbs .items {
font-size: 14px;
font-family: Montserrat;
font-weight: 400;
color: inherit;
line-height: 26px
}
.breadcrumbs a,
.breadcrumbs a:visited {
color: #222
}
.breadcrumbs a:hover {
color: #c99947;
text-decoration: none
}
.breadcrumbs .item:not(:last-child):after {
content: '/';
font-family: Montserrat;
font-size: 14px;
line-height: 26px;
padding: 0 5px
}
.page-main>.page-title-wrapper {
display: none
}
.filter-options .filter-options-title {
color: #222;
font-family: Montserrat;
font-size: 15px;
font-weight: 600;
line-height: 24px;
padding: 3px 0;
margin-bottom: 15px;
border: 0
}
.toolbar .limiter-text {
display: none
}
.toolbar .limiter-options {
margin-right: 0
}
.toolbar-products~.toolbar-products {
border-top: 1px solid #e5e5e5;
padding: 0;
padding-top: 25px
}
.pages .pagination {
background: transparent
}
.pages .item {
font-family: Montserrat;
font-size: 16px;
font-weight: 600;
margin: 0;
min-width: 33px;
color: #222
}
.pages .item.current .page-numbers>span.label+span {
display: inline-block;
border-bottom: 1px solid;
line-height: 18px
}
.pages .item a,
.pages a.page:visited {
color: inherit
}
.pages .item a:hover {
color: #c99947
}
.pages .action.next,
.pages .action.prev {
margin: 0;
border: 0
}
.pages .action.next:before,
.pages .action.prev:before {
content: '\f30b';
font-family: 'Font Awesome 5 Free';
font-weight: 600;
font-size: 16px;
line-height: 30px
}
.pages .action.prev:before {
content: '\f30a'
}
.pages .action.prev:before,
.pages .action.prev:visited:before,
.pages .action.next:before,
.pages .action.next:visited:before {
color: inherit
}
.pages .action.next:hover:before,
.pages .action.prev:hover:before {
color: #c99947
}
.pages .action.next>span,
.pages .action.prev>span {
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px
}
strong.modes-label {
display: none
}
.sorter-action:hover:before,
.modes-mode:hover:before {
color: #c99947
}
.sorter-action:before,
.modes-mode:before {
color: #999
}
.modes-mode.active:before {
color: #222
}
@media (max-width: 767px) {
.minicart-wrapper {
margin-top: 0
}
}
.product-image-photo {
position: static
}
#totop {
position: fixed;
bottom: 100px;
right: 30px;
width: 40px;
height: 40px;
font-size: 16px;
line-height: 40px;
text-align: center;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
overflow: hidden;
z-index: 9;
color: #fff;
background-color: #222;
font-weight: 400
}
#totop:not(.backIn) {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0)
}
#totop:hover {
background-color: #c99947
}
.product.data.items>.item.content {
border: 0;
padding: 20px 0
}
.product.info.detailed .product.attribute.description p {
margin-bottom: 20px
}
.product.info.detailed .product.attribute.description {
font-size: 14px
}
.product.info.detailed .additional-attributes>tbody>tr>th,
.product.info.detailed .additional-attributes>tfoot>tr>th {
color: #555;
font-weight: 600;
font-size: 14px
}
.product.info.detailed .additional-attributes>tbody>tr>th,
.product.info.detailed .additional-attributes>tfoot>tr>th,
.product.info.detailed .additional-attributes>tbody>tr>td,
.product.info.detailed .additional-attributes>tfoot>tr>td {
font-size: 14px
}
.review-list .block-title strong {
font-family: Montserrat, sans-serif;
font-size: 20px;
font-weight: 600;
color: #222
}
.review-title {
font-weight: 600;
font-size: 16px
}
.fieldset .review-legend.legend {
font-size: 20px;
font-weight: 600;
font-family: Montserrat, sans-serif;
color: #222
}
.fieldset>.field:not(.choice)>.label {
font-size: 15px;
font-weight: 600;
color: #222;
float: none;
margin-bottom: 5px;
padding: 0;
text-align: left;
width: auto
}
.fieldset>.field:not(.choice)>.control {
float: none;
width: auto
}
.fieldset>.legend {
margin-left: 0
}
.abs-margin-for-forms-desktop,
.fieldset .legend,
.column:not(.sidebar-main) form .actions-toolbar,
.column:not(.sidebar-additional) form .actions-toolbar,
.login-container .fieldset:after {
margin-left: 0
}
.review-field-ratings .review-field-rating .control {
padding-top: 5px
}
.review-ratings .rating-label,
.review-field-ratings .review-field-rating .label {
display: none
}
.review-control-vote label:before {
font-family: 'Font Awesome 5 Free';
color: #c99947
}
.review-control-vote .rating-1:before {
content: '\f005';
font-size: 16px;
letter-spacing: 1px
}
.review-control-vote .rating-2:before {
content: '\f005''\f005';
font-size: 16px;
letter-spacing: 1px
}
.review-control-vote .rating-3:before {
content: '\f005''\f005''\f005';
font-size: 16px;
letter-spacing: 1px
}
.review-control-vote .rating-4:before {
content: '\f005''\f005''\f005''\f005';
font-size: 16px;
letter-spacing: 1px
}
.review-control-vote .rating-5:before {
content: '\f005''\f005''\f005''\f005''\f005';
font-size: 16px;
letter-spacing: 1px
}
.review-control-vote:before {
font-family: 'Font Awesome 5 Free';
content: '\f005''\f005''\f005''\f005''\f005';
font-size: 16px;
letter-spacing: 1px
}
.review-form .action.submit.primary {
position: relative;
display: inline-block;
vertical-align: top;
font-family: Montserrat, sans-serif;
font-size: 12px;
line-height: 24px;
font-weight: 600;
text-transform: uppercase;
padding: 8px 30px;
border: 0;
background-color: #222;
color: #fff;
text-align: center;
cursor: pointer;
border-radius: 0;
-webkit-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
-moz-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
-o-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease
}
.review-form .action.submit.primary:focus,
.review-form .action.submit.primary:active {
border: 0;
background-color: #222;
color: #fff
}
.review-form .action.submit.primary:hover {
border: 0;
background-color: #c99947;
color: #fff
}
#tab-label-reviews-title .counter:before {
content: '('
}
#tab-label-reviews-title .counter:after {
content: ')'
}
.product.data.items>.item.title>.switch {
height: auto;
padding: 0;
border: 0;
line-height: 28px;
border-bottom: 2px solid transparent;
text-transform: uppercase;
background-color: transparent;
font-family: Montserrat, sans-serif;
font-size: 14px;
font-weight: 600;
color: #999
}
.product.data.items>.item.title.active>.switch,
.product.data.items>.item.title.active>.switch:focus,
.product.data.items>.item.title.active>.switch:hover {
padding-bottom: 0;
border-bottom: 2px solid
}
.product.data.items>.item.title>.switch:hover {
color: #c99947;
background-color: transparent !important
}
.product.data.items>.item.title:not(.disabled)>.switch:active,
.product.data.items>.item.title.active>.switch,
.product.data.items>.item.title.active>.switch:focus,
.product.data.items>.item.title.active>.switch:hover {
padding-bottom: 0
}
@media (min-width: 992px) {
.product.data.items>.item.title {
margin: 0;
margin-left: 30px
}
.product.data.items>.item.title:first-child {
margin-left: 0
}
}
.catalog-product-view .column.main>.block,
.column.main .block.crosssell {
border-top: 1px solid #e5e5e5;
padding-top: 30px
}
.catalog-product-view .column.main>.block .title,
.column.main .block.crosssell .title {
text-align: center;
display: block;
color: #222
}
.catalog-product-view .column.main>.block .title strong,
.column.main .block.crosssell .title strong {
display: inline-block;
vertical-align: top;
font-size: 24px;
line-height: 36px;
position: relative;
margin: 0;
padding: 0 15px 6px;
font-family: Montserrat, sans-serif;
text-transform: uppercase;
font-weight: 600
}
.catalog-product-view .column.main>.block .title strong:before,
.column.main .block.crosssell .title strong:before {
position: absolute;
content: '';
left: 0;
top: 17px;
width: 50px;
height: 2px;
background-color: #c99947;
z-index: -1
}
.block.upsell .product-item-details .product-item-actions,
.field.choice.related {
margin-top: 15px
}
.field.choice.related input[type="checkbox"] {
margin-top: -4px
}
.field.choice.related .label {
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
font-family: Montserrat, sans-serif;
color: #222
}
.page-product-downloadable .product-options-bottom>div {
display: inline-block;
vertical-align: middle;
width: auto;
margin-bottom: 10px
}
.bundle-actions .action.primary,
.bundle-options-container .block-bundle-summary .box-tocart .action.primary,
.form-address-edit .actions-toolbar .action.primary,
.multicheckout .action.primary,
.cart-container .checkout-methods-items .action.primary,
.block-minicart .block-content>.actions>.primary .action.primary,
.methods-shipping .actions-toolbar .action.primary,
.block-authentication .action.action-register,
.block-authentication .action.action-login,
.checkout-payment-method .payment-method-content>.actions-toolbar>.primary .action.primary {
padding: 0 30px;
font-size: 12px
}
.bundle-options-container .legend.title {
font-family: Montserrat, sans-serif;
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
color: #222
}
.bundle-options-container .nested .field.qty {
display: block;
text-align: left;
margin-bottom: 20px
}
.bundle-info .product-image-photo {
position: absolute
}
.bundle-options-container .block-bundle-summary {
background-color: transparent;
border: 1px solid #e5e5e5;
padding: 20px
}
.bundle-options-container .block-bundle-summary>.title {
margin-bottom: 20px
}
.bundle-options-container .block-bundle-summary>.title>strong {
font-family: Montserrat, sans-serif;
font-weight: 600;
font-size: 16px;
text-transform: uppercase;
color: #222
}
.bundle-options-container .block-bundle-summary .product-details .product.name {
font-family: Montserrat, sans-serif;
font-size: 12px;
font-weight: 600;
color: #222;
text-transform: uppercase
}
.product-add-form .fieldset>.field:not(.choice)>.label,
.product-add-form .fieldset .fields>.field:not(.choice)>.label {
display: none
}
.bundle-options-container .block-bundle-summary .field.qty .control .input-text.qty {
width: 92px;
height: 38px
}
.bundle-options-container .block-bundle-summary .field.qty,
.bundle-options-container .block-bundle-summary .box-tocart .actions {
vertical-align: middle;
margin-right: 10px
}
.bundle-options-container .block-bundle-summary .bundle-summary>.subtitle {
font-family: Montserrat, sans-serif;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
color: #222
}
.bundle-options-container .block-bundle-summary .bundle-summary {
font-size: 12px
}
.table:not(.cart):not(.totals)>thead>tr>th,
.table:not(.cart):not(.totals)>thead>tr>td {
font-family: Montserrat, sans-serif;
font-weight: 600;
font-size: 14px;
text-transform: uppercase
}
.table.grouped .product-item-name {
font-family: Montserrat, sans-serif;
font-size: 12px;
text-transform: uppercase;
font-weight: 600
}
.product-info-main .table.grouped .price-box .price-wrapper .price {
font-size: 16px
}
.product-info-main .price-box .old-price .price-wrapper .price,
.product-options-bottom .price-box .old-price .price-wrapper .price {
color: #aaa;
font-size: 20px
}
.old-price .price {
color: #aaa !important;
display: inline-block;
font-weight: 400 !important;
transform: scale(0.85)
}
.product-options-bottom .box-tocart {
margin-top: 10px
}
@media (max-width: 991px) {
.abs-button-responsive-smaller,
.product-info-main .box-tocart .actions .action.tocart {
width: auto
}
}
.fotorama__arr--next .fotorama__arr__arr {
text-align: center;
line-height: 80px;
background: none
}
.fotorama__arr--next .fotorama__arr__arr:before {
content: '\f054';
font-family: 'Font Awesome 5 Free';
font-size: 30px;
font-weight: 600
}
.fotorama__arr--prev .fotorama__arr__arr {
text-align: center;
line-height: 80px;
background: none
}
.fotorama__arr--prev .fotorama__arr__arr:before {
content: '\f053';
font-family: 'Font Awesome 5 Free';
font-size: 30px;
font-weight: 600
}
.fotorama__arr {
width: 40px
}
.fotorama--fullscreen .fotorama__arr {
width: 80px
}
.fotorama__arr,
.fotorama__thumb__arr,
.fotorama__arr:hover,
.fotorama__thumb__arr:hover,
.fotorama__arr:active,
.fotorama__thumb__arr:active {
background: none
}
.fotorama--fullscreen .fotorama__fullscreen-icon,
.fotorama__fullscreen .fotorama__zoom-in,
.fotorama__fullscreen .fotorama__zoom-out {
background: none;
text-align: center;
line-height: 80px
}
.fotorama--fullscreen .fotorama__fullscreen-icon:before {
content: '\f00d';
font-family: 'Font Awesome 5 Free';
font-size: 30px;
font-weight: 600
}
.fotorama__fullscreen .fotorama__zoom-in:before {
content: '\f00e';
font-family: 'Font Awesome 5 Free';
font-size: 30px;
font-weight: 600
}
.fotorama__fullscreen .fotorama__zoom-out:before {
content: '\f010';
font-family: 'Font Awesome 5 Free';
font-size: 30px;
font-weight: 600
}
.fotorama__thumb-border {
border-color: #c99947
}
.fotorama__arr--next .fotorama__arr__arr:hover,
.fotorama__arr--prev .fotorama__arr__arr:hover,
.fotorama--fullscreen .fotorama__fullscreen-icon:hover,
.fotorama__fullscreen .fotorama__zoom-in:hover,
.fotorama__fullscreen .fotorama__zoom-out:hover {
color: #c99947
}
.modal-popup.confirm .modal-inner-wrap .modal-content {
padding: 30px;
border: 0
}
.modal-popup .action-close {
padding: 4px
}
.modal-popup .modal-footer {
padding: 10px
}
.minicart-items .product-item-details .price {
font-weight: 600;
color: #222
}
.minicart-wrapper .block-minicart {
font-family: Montserrat, sans-serif
}
.checkout-index-index .page-main>.page-title-wrapper,
.checkout-onepage-success .page-main>.page-title-wrapper {
display: block;
height: auto;
width: auto;
clip: auto;
position: static
}
body[class*="customer-account"] .page-title-wrapper {
display: block;
text-align: left;
margin: 0
}
.checkout-index-index .page-main>.page-title-wrapper .page-title,
.checkout-onepage-success .page-main>.page-title-wrapper .page-title,
body[class*="customer-account"] .page-main>.page-title-wrapper .page-title {
font-weight: 600;
color: #222;
padding: 50px 0;
text-transform: uppercase;
display: block;
font-size: 24px;
line-height: 36px;
margin-bottom: 0
}
.authentication-wrapper {
margin-top: -88px
}
.action.action-auth-toggle {
color: #222;
font-family: Montserrat, sans-serif;
font-weight: 600
}
.modal-content {
border: 0;
box-shadow: none
}
.modal-custom .action-close {
margin: 0
}
.modal-header {
margin: 0;
border: 0
}
.block-authentication .block-title {
display: none
}
.block-authentication .block[class] .field .control,
.block-authentication .block[class] .field .label {
text-transform: uppercase;
font-size: 12px;
margin-bottom: 10px
}
.block-authentication .fieldset>.field {
margin-bottom: 0
}
.authentication-dropdown {
border-color: #e5e5e5;
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19)
}
.block-authentication .actions-toolbar {
margin: 0 !important
}
.block-authentication .actions-toolbar>.secondary {
padding: 0;
margin: 0
}
.actions-toolbar .secondary a.action {
margin: 0;
line-height: 40px;
text-transform: uppercase;
font-family: Montserrat, sans-serif;
font-weight: 600;
font-size: 10px
}
.minicart-items .product-item-name {
font-family: Montserrat, sans-serif;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
color: #222
}
.payment-option.discount-code {
border: 3px dashed #aaa;
padding: 10px 20px 80px;
text-align: center;
height: 200px
}
.checkout-payment-method .payment-option.discount-code .payment-option-title {
pointer-events: none;
text-align: left;
margin-bottom: 39px;
border: 0;
padding: 0
}
.checkout-payment-method .payment-option.discount-code .payment-option-title .action-toggle {
font-family: playfair display, sans-serif;
font-size: 18px;
line-height: 30px;
font-style: italic;
text-align: left;
color: #222;
font-weight: 600
}
.checkout-payment-method .payment-option.discount-code .payment-option-title .action-toggle:before,
.checkout-payment-method .payment-option.discount-code .payment-option-title .action-toggle:after {
display: none
}
.payment-option.discount-code .payment-option-content {
display: block !important
}
.checkout-payment-method .form-discount {
margin: 0 auto
}
.opc-block-shipping-information .shipping-information-title .action-edit {
height: 28px;
top: -4px
}
.opc-block-shipping-information .shipping-information-title .action-edit:before {
color: #222
}
.opc-block-shipping-information .shipping-information-title .action-edit:hover:before {
color: #c99947
}
.checkout-index-index .opc-wrapper .step-title,
.checkout-index-index .opc-block-shipping-information .shipping-information-title,
.checkout-index-index .opc-block-summary>.title,
.checkout-index-index .checkout-agreements-items .checkout-agreements-item-title {
font-family: Montserrat, sans-serif;
font-weight: 600;
font-size: 14px
}
.checkout-billing-address .actions-toolbar .action-cancel {
margin-top: 0;
font-family: Montserrat, sans-serif;
font-size: 12px;
font-weight: 600;
color: #222
}
.checkout-billing-address .actions-toolbar .action-cancel:hover {
color: #c99947;
text-decoration: none
}
.account.page-layout-2columns-left .sidebar-additional {
display: none
}
.abs-account-blocks .block-title>strong,
.block-giftregistry-results .block-title>strong,
.block-giftregistry-shared-items .block-title>strong,
.block-wishlist-search-results .block-title>strong,
.block-reorder .block-title>strong,
.block-compare .block-title>strong,
.widget .block-title>strong,
.block-wishlist .block-title>strong,
.multicheckout .block-title>strong,
.paypal-review .block .block-title>strong,
.magento-rma-guest-returns .column.main .block:not(.widget) .block-title>strong,
[class^='sales-guest-'] .column.main .block:not(.widget) .block-title>strong,
.sales-guest-view .column.main .block:not(.widget) .block-title>strong,
.account .column.main .block:not(.widget) .block-title>strong,
.fieldset>.legend {
font-family: Montserrat, sans-serif;
font-weight: 600;
color: #222;
text-transform: uppercase
}
.box-settings ul.header.links a.compare.no-display {
display: inherit !important
}
.plus-zoom::after,
.plus-zoom::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto;
width: 100%;
height: 100%;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease;
z-index: 2
}
.plus-zoom:hover::before {
width: 0;
background-color: rgba(255, 255, 255, .5)
}
.plus-zoom:hover::after {
height: 0;
background-color: rgba(255, 255, 255, .5)
}
.overlay-cross::after,
.overlay-cross::before,
.overlay-horizontal::after,
.overlay-horizontal::before,
.overlay-plus::after,
.overlay-plus::before,
.overlay-vertical::after,
.overlay-vertical::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
margin: auto;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease;
z-index: 2;
background-color: rgba(255, 255, 255, .15)
}
.overlay-plus::after,
.overlay-plus::before {
top: 0;
bottom: 0;
left: 0;
right: 0
}
.overlay-plus:not(:hover)::before {
width: 0
}
.overlay-plus:not(:hover)::after {
height: 0
}
.overlay-cross::before {
top: 0;
left: 0
}
.overlay-cross::after {
bottom: 0;
right: 0
}
.overlay-cross:not(:hover)::after,
.overlay-cross:not(:hover)::before {
width: 0;
height: 0
}
.overlay-horizontal::before {
top: 0;
left: 0;
bottom: 0
}
.overlay-horizontal::after {
top: 0;
right: 0;
bottom: 0
}
.overlay-horizontal:not(:hover)::after,
.overlay-horizontal:not(:hover)::before {
width: 0
}
.overlay-vertical::before {
top: 0;
left: 0;
right: 0
}
.overlay-vertical::after {
left: 0;
right: 0;
bottom: 0
}
.overlay-vertical:not(:hover)::after,
.overlay-vertical:not(:hover)::before {
height: 0
}
.border-zoom {
overflow: hidden
}
.border-zoom::after,
.border-zoom::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease;
z-index: 2;
opacity: 0
}
.border-zoom::before {
background-color: #000
}
.border-zoom::after {
top: -15px;
bottom: -15px;
left: -15px;
right: -15px;
border: 2px solid #fff
}
.border-zoom:hover::before {
opacity: .3
}
.border-zoom:hover::after {
top: 15px;
bottom: 15px;
left: 15px;
right: 15px;
opacity: 1
}
.border-scale {
background-color: #000
}
.border-scale figure.not-image,
.border-scale img {
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.border-scale:hover figure.not-image,
.border-scale:hover img {
opacity: .7
}
.border-scale::after,
.border-scale::before {
content: '';
position: absolute;
z-index: 2;
border: solid #fff;
top: 15px;
bottom: 15px;
left: 15px;
right: 15px;
margin: auto;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
.border-scale::before {
border-width: 2px 0
}
.border-scale::after {
border-width: 0 2px
}
.border-scale:not(:hover)::before {
left: 50%;
right: 50%
}
.border-scale:not(:hover)::after {
top: 50%;
bottom: 50%
}
.border-plus {
background-color: #000
}
.border-plus figure.not-image,
.border-plus img {
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.border-plus:hover figure.not-image,
.border-plus:hover img {
opacity: .7
}
.border-plus::after,
.border-plus::before {
content: '';
position: absolute;
z-index: 2;
border: solid #fff;
margin: auto;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
.border-plus::before {
top: 15px;
bottom: 15px;
left: 30px;
right: 30px;
border-width: 0 2px
}
.border-plus::after {
top: 30px;
bottom: 30px;
left: 15px;
right: 15px;
border-width: 2px 0
}
.border-plus:not(:hover)::before {
left: 50%;
right: 50%;
opacity: 0
}
.border-plus:not(:hover)::after {
top: 50%;
bottom: 50%;
opacity: 0
}
.boutique-iconbox .icon {
display: inline-block;
vertical-align: top
}
.boutique-iconbox .icon img {
display: inline-block !important;
vertical-align: top
}
@-webkit-keyframes kt_shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
17%,
50%,
83% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0)
}
33%,
67% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0)
}
}
@keyframes kt_shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
17%,
50%,
83% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0)
}
33%,
67% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0)
}
}
.boutique-iconbox .icon>*:before {
display: inline-block
}
.boutique-iconbox.style-01 {
position: relative;
overflow: hidden
}
.boutique-iconbox.style-01::after,
.boutique-iconbox.style-01::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
border-style: dashed;
margin: auto;
-webkit-transition: all .4s ease;
-moz-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease
}
.boutique-iconbox.style-01::before {
width: 0;
border-width: 1px 0
}
.boutique-iconbox.style-01::after {
height: 0;
border-width: 0 1px
}
.boutique-iconbox.style-01:hover::before {
width: 100%
}
.boutique-iconbox.style-01:hover::after {
height: 100%
}
.boutique-iconbox.style-01 .iconbox-inner {
font-size: 0;
line-height: 0;
padding: 50px 30px;
border: 1px dashed #ddd;
text-align: center
}
.boutique-iconbox.style-01 .iconbox-inner>* {
display: inline-block;
vertical-align: middle;
position: relative;
z-index: 1
}
.boutique-iconbox.style-01 .icon-wrap {
width: 30px;
font-size: 30px;
line-height: 1
}
.boutique-iconbox.style-01 .icon img {
max-width: 30px;
max-height: 30px
}
.boutique-iconbox.style-01 .content {
max-width: calc(100% - 30px);
padding-left: 15px
}
.boutique-iconbox.style-01 .title {
font-size: 12px;
line-height: 20px;
margin-bottom: 0;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease
}
.boutique-iconbox.style-01:hover .title {
color: inherit
}
.boutique-iconbox:not(.style-04) .fa-truck::before,
.boutique-iconbox:not(.style-04) .flaticon-boat::before,
.boutique-iconbox:not(.style-04) .flaticon-clock::before,
.boutique-iconbox:not(.style-04) .flaticon-plane::before,
.boutique-iconbox:not(.style-04) .flaticon-reload::before {
-webkit-transition: transform .5s ease, opacity .5s ease;
-moz-transition: transform .5s ease, opacity .5s ease;
-o-transition: transform .5s ease, opacity .5s ease;
transition: transform .5s ease, opacity .5s ease
}
.boutique-iconbox.style-02:hover .fa-truck::before {
-webkit-transform: translate(-70px, 0);
-moz-transform: translate(-70px, 0);
-ms-transform: translate(-70px, 0);
-o-transform: translate(-70px, 0);
transform: translate(-70px, 0)
}
.boutique-iconbox:not(.style-04):not(.style-02):hover .fa-truck::before {
-webkit-transform: translate(120px, 0);
-moz-transform: translate(120px, 0);
-ms-transform: translate(120px, 0);
-o-transform: translate(120px, 0);
transform: translate(120px, 0)
}
.boutique-iconbox.style-01:hover .flaticon-plane::before,
.boutique-iconbox.style-03:hover .flaticon-plane::before,
.boutique-iconbox.style-06:hover .flaticon-plane::before {
-webkit-transform: translate(50px, -90px);
-moz-transform: translate(50px, -90px);
-ms-transform: translate(50px, -90px);
-o-transform: translate(50px, -90px);
transform: translate(50px, -90px)
}
.boutique-iconbox:not(.style-04):not(.style-01):not(.style-03):not(.style-06):hover .flaticon-plane::before {
-webkit-transform: translate(30px, -50px);
-moz-transform: translate(30px, -50px);
-ms-transform: translate(30px, -50px);
-o-transform: translate(30px, -50px);
transform: translate(30px, -50px)
}
.boutique-iconbox:not(.style-04):hover .flaticon-reload::before {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg)
}
.boutique-iconbox:not(.style-04):hover .flaticon-clock::before {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg)
}
.boutique-iconbox:not(.style-04):hover .flaticon-boat::before {
opacity: 0;
-webkit-transform: scale(1.8);
-moz-transform: scale(1.8);
-ms-transform: scale(1.8);
-o-transform: scale(1.8);
transform: scale(1.8)
}
.boutique-iconbox:not(.style-04):hover .icon>:not(.fa-truck):not(.flaticon-plane):not(.flaticon-reload):not(.flaticon-clock):not(.flaticon-boat)::before,
.boutique-iconbox:not(.style-04):hover .icon>figure {
-webkit-animation: kt_shake .5s linear;
-o-animation: kt_shake .5s linear;
animation: kt_shake .5s linear
}
@media(max-width: 1199px) and (min-width:992px) {
.boutique-iconbox.style-01 .iconbox-inner {
padding: 50px 15px
}
}
@media(max-width: 479px) {
.boutique-iconbox.style-01 .iconbox-inner {
padding: 50px 15px
}
}
.boutique-iconbox.style-02 {
text-align: center
}
.boutique-iconbox.style-02 .icon-wrap {
display: inline-block;
vertical-align: top;
width: 80px;
font-size: 35px;
line-height: 36px;
margin-bottom: 20px;
position: relative;
color: #c99947;
-webkit-transition: color .2s ease;
-moz-transition: color .2s ease;
-o-transition: color .2s ease;
transition: color .2s ease
}
.boutique-iconbox.style-02 .icon-wrap::before {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
content: '';
border: 2px solid;
opacity: .8
}
.boutique-iconbox.style-02 .icon {
display: block;
position: relative;
overflow: hidden;
padding: 16px 0
}
.boutique-iconbox.style-02 .icon::after,
.boutique-iconbox.style-02 .icon::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
border-style: solid;
margin: auto;
-webkit-transition: all .4s ease;
-moz-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease
}
.boutique-iconbox.style-02 .icon::before {
width: 0;
border-width: 2px 0
}
.boutique-iconbox.style-02 .icon::after {
height: 0;
border-width: 0 2px
}
.boutique-iconbox.style-02:hover .icon::before {
width: 100%
}
.boutique-iconbox.style-02:hover .icon::after {
height: 100%
}
.boutique-iconbox.style-02 .icon img {
max-width: 35px;
max-height: 36px
}
.boutique-iconbox.style-02 .title {
font-size: 18px;
line-height: 30px;
font-weight: 400;
color: #fff;
margin-bottom: 2px;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease
}
.boutique-iconbox.style-02 .title span {
font-weight: 600
}
.boutique-iconbox.style-02 .desc {
font-family: playfair display, sans-serif;
font-style: italic;
margin-bottom: 0;
color: #c99947;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease
}
.boutique-iconbox.style-02 .iconbox-inner:hover .desc,
.boutique-iconbox.style-02 .iconbox-inner:hover .icon {
color: #fff
}
.boutique-iconbox.style-02 .iconbox-inner:hover .title {
color: #c99947
}
.boutique-iconbox.style-03 {
overflow: hidden;
padding: 40px 0
}
.boutique-iconbox.style-03 .iconbox-inner {
font-size: 0;
line-height: 0;
text-align: center
}
.boutique-iconbox.style-03 .iconbox-inner>* {
display: inline-block;
vertical-align: middle;
text-align: left
}
.boutique-iconbox.style-03 .icon-wrap {
width: 60px;
font-size: 35px;
line-height: 36px
}
.boutique-iconbox.style-03 .icon img {
max-width: 35px;
max-height: 36px
}
.boutique-iconbox.style-03 .content {
max-width: calc(100% - 60px)
}
.boutique-iconbox.style-03 .title {
font-size: 18px;
line-height: 30px;
font-weight: 400;
margin-bottom: 0
}
.boutique-iconbox.style-03 .title span {
font-weight: 600
}
.boutique-iconbox.style-03 .desc {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 24px;
font-style: italic;
margin-bottom: 0
}
@media(max-width: 1199px) {
.boutique-iconbox.style-03 {
padding: 35px 0
}
.boutique-iconbox.style-03 .icon-wrap {
width: 50px
}
.boutique-iconbox.style-03 .content {
max-width: calc(100% - 50px)
}
}
@media(max-width: 991px) {
.boutique-iconbox.style-03 {
padding: 25px 0
}
}
.boutique-iconbox.style-04 .iconbox-inner::after,
.boutique-iconbox.style-04 .iconbox-inner::before {
display: table;
content: '';
clear: both
}
.boutique-iconbox.style-04 .icon-wrap {
display: inline-block;
vertical-align: top;
float: left;
width: 39px;
font-size: 18px;
color: #999
}
.boutique-iconbox.style-04 .content {
display: inline-block;
vertical-align: top;
width: calc(100% - 39px)
}
.boutique-iconbox.style-04 .title {
font-family: inherit;
font-size: inherit;
line-height: inherit;
font-weight: inherit;
color: inherit;
margin: 0
}
.boutique-iconbox.style-05 {
text-align: center;
overflow: hidden;
padding: 10px 0
}
.boutique-iconbox.style-05 .iconbox-inner {
font-size: 0;
line-height: 0
}
.boutique-iconbox.style-05 .iconbox-inner>* {
display: inline-block;
vertical-align: middle;
text-align: left
}
.boutique-iconbox.style-05 .iconbox-inner .icon-wrap {
width: 30px;
font-size: 26px;
line-height: 30px;
margin-right: 15px
}
.boutique-iconbox.style-05 .iconbox-inner .content {
max-width: calc(100% - 45px)
}
.boutique-iconbox.style-05 .iconbox-inner .title {
font-family: inherit;
font-size: 13px;
line-height: 20px;
padding: 5px 0;
letter-spacing: .05em;
margin-bottom: 0;
font-weight: 400
}
.boutique-iconbox.style-05 .iconbox-inner .title span {
text-decoration: underline
}
.boutique-iconbox.style-05.light .icon-wrap {
color: #ddd
}
.boutique-iconbox.style-05.light .title {
color: #999
}
.boutique-iconbox.style-06 {
border: 2px solid #eee;
text-align: center;
padding: 30px;
overflow: hidden
}
.boutique-iconbox.style-06 .icon-wrap {
display: block;
font-size: 36px;
line-height: 50px
}
.boutique-iconbox.style-06 .title {
font-size: 13px;
line-height: 24px;
letter-spacing: .05em;
font-weight: 500;
margin-bottom: 0
}
.boutique-iconbox.style-07 {
text-align: center;
font-family: Oswald, sans-serif;
font-weight: 300;
padding: 24px 30px;
overflow: hidden
}
.boutique-iconbox.style-07 .iconbox-inner {
font-size: 0;
line-height: 0
}
.boutique-iconbox.style-07 .iconbox-inner>* {
display: inline-block;
vertical-align: top;
font-size: 14px;
line-height: 24px
}
.boutique-iconbox.style-07 .icon-wrap {
width: 28px;
margin-right: 10px;
font-size: 22px;
line-height: 30px
}
.boutique-iconbox.style-07 .content {
padding: 3px 0;
max-width: calc(100% - 38px)
}
.boutique-iconbox.style-07 .content>* {
display: inline-block;
vertical-align: top
}
.boutique-iconbox.style-07 .title {
font-size: 18px;
line-height: inherit;
font-family: inherit;
font-weight: 400;
letter-spacing: .05em;
margin: 0 5px 0 0
}
.boutique-iconbox.style-07 .desc {
margin: 2px 0 -2px
}
.boutique-iconbox.style-08 {
text-align: center;
border: 3px solid #ddd;
padding: 5px 10px
}
.boutique-iconbox.style-08 .iconbox-inner {
font-size: 0;
line-height: 0
}
.boutique-iconbox.style-08 .iconbox-inner>* {
display: inline-block;
vertical-align: middle
}
.boutique-iconbox.style-08 .icon-wrap {
font-size: 24px;
line-height: 30px;
width: 30px
}
.boutique-iconbox.style-08 .icon-wrap a {
display: block
}
.boutique-iconbox.style-08 .content {
max-width: calc(100% - 30px)
}
.boutique-iconbox.style-08 .title {
font-size: 13px;
line-height: 20px;
letter-spacing: .05em;
margin: 0
}
.boutique-iconbox.style-08 .title a {
padding: 0 5px
}
.boutique-iconbox.style-08.light {
border: 2px solid #333
}
.boutique-iconbox.style-08.light .icon-wrap {
color: #ddd
}
.boutique-iconbox.style-08.light .title {
color: #aaa
}
.boutique-iconbox.style-09,
.boutique-iconbox.style-10 {
position: relative;
text-align: center
}
.boutique-iconbox.style-09:not(:hover)::before,
.boutique-iconbox.style-10:not(:hover)::before {
-webkit-transform: translate(5px, 5px);
-moz-transform: translate(5px, 5px);
-ms-transform: translate(5px, 5px);
-o-transform: translate(5px, 5px);
transform: translate(5px, 5px)
}
.boutique-iconbox.style-09::before,
.boutique-iconbox.style-10::before {
position: absolute;
content: '';
top: 0;
left: 0;
bottom: 0;
right: 0;
border: 3px solid #ddd;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease
}
.boutique-iconbox.style-09 .iconbox-inner,
.boutique-iconbox.style-10 .iconbox-inner {
position: relative;
background-color: #fff;
padding: 14px;
-webkit-transition: background-color .2s ease;
-moz-transition: background-color .2s ease;
-o-transition: background-color .2s ease;
transition: background-color .2s ease
}
.boutique-iconbox.style-09 .iconbox-inner>a,
.boutique-iconbox.style-10 .iconbox-inner>a {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0
}
.boutique-iconbox.style-09 .icon-wrap,
.boutique-iconbox.style-10 .icon-wrap {
display: inline;
margin: 0 5px
}
.boutique-iconbox.style-09 .icon-wrap a,
.boutique-iconbox.style-09 .title a,
.boutique-iconbox.style-10 .icon-wrap a,
.boutique-iconbox.style-10 .title a {
color: inherit
}
.boutique-iconbox.style-09 .content,
.boutique-iconbox.style-10 .content {
display: inline;
margin: 0 5px
}
.boutique-iconbox.style-09 .title,
.boutique-iconbox.style-10 .title {
display: inline;
font-size: 14px;
line-height: 24px;
font-weight: 600;
margin: 0
}
.boutique-iconbox.style-09 .title span,
.boutique-iconbox.style-10 .title span {
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease
}
.boutique-iconbox.style-09 .iconbox-inner:hover .title span {
color: #fff
}
.boutique-iconbox.style-10::before {
border: 0;
background-color: #fff
}
.boutique-iconbox.style-10 .iconbox-inner {
padding: 10px 14px;
background-color: transparent
}
.boutique-iconbox.style-10 .title {
color: #fff
}
.boutique-iconbox.style-11 .icon-wrap {
display: inline-block;
vertical-align: bottom;
width: 40px
}
.boutique-iconbox.style-11 .icon {
font-size: 32px;
line-height: 32px
}
.boutique-iconbox.style-11 .content {
display: inline;
vertical-align: bottom
}
.boutique-iconbox.style-11 .title {
display: inline;
font-size: 14px;
line-height: 24px;
font-weight: 400;
margin: 0
}
.boutique-iconbox.style-12 {
text-align: center
}
.boutique-iconbox.style-12 .icon {
font-size: 36px;
line-height: 50px;
margin-bottom: 14px
}
.boutique-iconbox.style-12 .title {
display: inline-block;
vertical-align: top;
font-size: 15px;
line-height: 24px;
letter-spacing: .05em;
position: relative;
margin-bottom: 0
}
.boutique-iconbox.style-12 .title::before {
position: absolute;
content: '';
bottom: 0;
left: 0;
right: 0;
border-top: 2px solid;
opacity: .5
}
.boutique-iconbox.style-01:before,
.boutique-iconbox.style-01:after {
border-color: #c99947
}
.boutique-iconbox.style-01:hover a {
color: #c99947
}
.boutique-iconbox.style-01 .content {
font-family: Montserrat, sans-serif;
color: #222
}
.footer-top {
padding-top: 60px
}
.footer-middle {
background-color: #0b0b0b;
padding-top: 74px;
padding-bottom: 30px;
text-align: center
}
.footer-middle>.container>.row>div {
margin-bottom: 30px
}
.footer-links {
padding: 0;
margin: 0;
list-style: none;
color: #aaa
}
.footer-links.horizontal {
color: #555;
font-size: 13px;
font-family: Montserrat, sans-serif;
line-height: 24px
}
.footer-links.horizontal li {
display: inline-block;
vertical-align: middle
}
.footer-links.horizontal li:not(:first-child):before {
content: '';
border-left: 1px solid #555;
height: 12px;
display: inline-block;
vertical-align: middle;
margin: 0 5px
}
.footer-links.horizontal li a {
display: inline-block;
vertical-align: middle;
padding: 3px 0
}
.footer-social-icons>a {
display: inline-block;
width: 44px;
text-align: center;
color: #222;
border-radius: 50%;
background-color: #fff;
line-height: 44px;
margin: 0 3px;
font-size: 18px
}
.footer-social-icons>a:hover {
background-color: #c99947;
color: #fff
}
.footer-bottom {
background-color: #0b0b0b;
padding-bottom: 25px
}
.footer-bottom-divider {
border-top: 1px solid #191919;
margin-bottom: 25px
}
.footer-payments {
text-align: center
}
.footer-payments>a {
display: inline-block;
vertical-align: middle;
opacity: .3;
transition: all .3s ease
}
.footer-payments>a:hover {
opacity: 1
}
.boutique-demolink {
margin-bottom: 28px
}
.boutique-demolink a {
display: block
}
.boutique-demolink .image {
background-color: #fff;
padding: 5px;
-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .15);
-moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .15);
box-shadow: 0 0 15px 0 rgba(0, 0, 0, .15);
margin-bottom: 16px;
-webkit-transition: box-shadow .2s ease-out;
-moz-transition: box-shadow .2s ease-out;
-o-transition: box-shadow .2s ease-out;
transition: box-shadow .2s ease-out
}
.boutique-demolink.coming-soon img {
opacity: .5
}
.boutique-demolink .image:hover {
-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .5);
-moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .5);
box-shadow: 0 0 15px 0 rgba(0, 0, 0, .5)
}
.boutique-demolink .title {
font-size: 14px;
margin: 0;
color: #000;
text-align: center;
font-family: Montserrat, sans-serif
}
.demos-wapper.demos {
margin: 30px 15px 0
}
.demos-wapper .demo-click {
margin: 20px 0 50px
}
a.button.demo-click {
position: relative;
display: inline-block !important;
vertical-align: top;
font-size: 12px !important;
line-height: 24px !important;
font-weight: 600 !important;
text-transform: uppercase;
padding: 8px 30px !important;
border: 0;
background-color: #222 !important;
color: #fff !important;
text-align: center;
cursor: pointer;
border-radius: 0;
font-family: Montserrat, sans-serif
}
a.button.demo-click:hover {
background-color: #c99947 !important;
color: #fff !important;
text-decoration: none !important
}
@media (max-width: 991px) {
.skynetch-megamenu.navigation li.level0.fullwidth.mobile-show .menu-top-block {
display: block
}
}
.cms-noroute-index .column.main {
text-align: center;
padding: 80px 0 100px
}
.cms-noroute-index .column.main>.page-title {
font-size: 168px;
line-height: 1;
padding: 0;
color: #999;
margin-bottom: 40px;
text-transform: uppercase;
font-family: Montserrat, sans-serif
}
.cms-noroute-index .column.main>.title {
font-size: 26px;
line-height: 36px;
margin-bottom: 15px;
font-family: Montserrat, sans-serif;
color: #222
}
.cms-noroute-index .column.main>.subtitle {
font-size: 13px;
line-height: 24px;
color: inherit;
margin-bottom: 40px;
font-family: Montserrat, sans-serif
}
.cms-noroute-index .column.main a.button {
position: relative;
display: inline-block;
vertical-align: top;
font-size: 14px;
line-height: 24px;
font-weight: 600;
text-transform: uppercase;
padding: 8px 30px;
border: 1px solid #e5e5e5;
background-color: transparent;
color: #222;
text-align: center;
cursor: pointer;
border-radius: 0;
transition: all .2s ease;
font-family: Montserrat, sans-serif
}
.cms-noroute-index .column.main a.button:hover {
border-color: #c99947;
background-color: #c99947;
color: #fff
}
.message.info.empty h2 {
font-family: Montserrat, sans-serif;
font-weight: 600
}
.message.info.empty a.black {
color: #222;
font-family: Montserrat, sans-serif;
font-weight: 600;
font-size: 12px
}
.message.info.empty a.black:hover {
color: #c99947
}
.toolbar-products {
margin-bottom: 15px
}
.swatch-attribute-selected-option {
margin-bottom: 5px;
display: inline-block;
vertical-align: middle
}
.swatch-attribute.size .swatch-option,
.swatch-attribute.manufacturer .swatch-option {
background-color: #fff
}
.boutique-custom-heading.style-01 {
text-align: center;
margin-bottom: 20px
}
.boutique-custom-heading.style-01 .title {
display: inline-block;
vertical-align: top;
font-size: 24px;
line-height: 36px;
position: relative;
margin: 0;
padding: 0 15px 6px
}
.boutique-custom-heading.style-01 .title::before {
position: absolute;
content: '';
left: 0;
top: 17px;
width: 50px;
height: 2px;
background-color: #c99947
}
.boutique-custom-heading.style-01 .title .text {
position: relative
}
.boutique-custom-heading.style-01 .subtitle {
font-family: playfair display, sans-serif;
font-style: italic;
margin: 0;
padding-bottom: 6px
}
@media(max-width: 479px) {
.boutique-custom-heading.style-01 .title {
font-size: 22px;
line-height: 34px
}
}
.boutique-custom-heading.style-02 {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 24px;
font-style: italic;
padding: 0 0 0 50px;
position: relative
}
.boutique-custom-heading.style-02::before {
position: absolute;
content: '';
top: 20px;
bottom: 20px;
left: 0;
width: 2px;
background-color: #c99947
}
.boutique-custom-heading.style-02 .title {
font-family: inherit;
font-size: inherit;
line-height: inherit;
font-weight: inherit;
color: inherit;
margin-bottom: 0
}
.boutique-custom-heading.style-02 .title::after,
.boutique-custom-heading.style-02 .title::before {
display: inline-block;
vertical-align: top;
content: '“';
font-size: 80px;
font-style: normal;
opacity: .1
}
.boutique-custom-heading.style-02 .title::before {
margin: 14px -10px -14px -29px
}
.boutique-custom-heading.style-02 .title::after {
margin: -12px 0 0 -10px;
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg)
}
@media(max-width: 991px) {
.boutique-custom-heading.style-02 {
padding-left: 40px
}
}
.boutique-custom-heading.style-03 {
border: 1px dashed #ddd;
background-repeat: no-repeat;
background-position: left 17% bottom;
text-align: center;
padding: 28px 30px
}
.boutique-custom-heading.style-03 .title {
font-size: 13px;
line-height: inherit;
margin: 0
}
.boutique-custom-heading.style-04 {
text-align: center;
margin-bottom: 20px
}
.boutique-custom-heading.style-04 .subtitle {
font-family: playfair display, sans-serif;
font-style: italic;
font-size: 14px;
line-height: 24px;
color: #aaa;
margin-bottom: 0
}
.boutique-custom-heading.style-04 .title {
font-size: 24px;
line-height: 36px;
margin-bottom: 0
}
.boutique-custom-heading.style-04 figure {
font-size: 0;
line-height: 0;
margin-top: 10px
}
.boutique-custom-heading.style-05 .title {
display: inline-block;
vertical-align: top;
font-size: 35px;
line-height: 50px;
color: #fff;
background-position: left 40px center;
background-repeat: no-repeat;
padding: 60px 0;
position: relative;
max-width: calc(100% - 40px);
letter-spacing: .15em
}
.boutique-custom-heading.style-05 .title::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
border: 3px solid;
opacity: .5
}
.boutique-custom-heading.style-05 .title .text {
margin: 0 -40px 0 40px
}
@media(max-width: 1199px) {
.boutique-custom-heading.style-05 .title {
font-size: 32px;
line-height: 45px;
padding: 55px 0;
max-width: calc(100% - 35px);
background-position: left 35px center
}
.boutique-custom-heading.style-05 .title .text {
margin: 0 -35px 0 35px
}
}
@media(max-width: 767px) {
.boutique-custom-heading.style-05 .title {
max-width: calc(100% - 30px);
background-position: left 30px center
}
.boutique-custom-heading.style-05 .title .text {
margin: 0 -30px 0 30px
}
}
@media(max-width: 479px) {
.boutique-custom-heading.style-05 .title {
font-size: 28px;
line-height: 40px;
padding: 50px 0;
max-width: calc(100% - 25px);
background-position: left 25px center
}
.boutique-custom-heading.style-05 .title .text {
margin: 0 -25px 0 25px
}
}
.boutique-custom-heading.style-06 {
text-align: center;
font-size: 0;
line-height: 0
}
.boutique-custom-heading.style-06 .title {
display: inline-block;
vertical-align: middle;
background-position: center center;
background-repeat: no-repeat;
font-size: 24px;
line-height: 36px;
letter-spacing: .05em;
padding: 10px 15px 10px calc(15px+.05em);
margin: 0
}
.boutique-custom-heading.style-06::after,
.boutique-custom-heading.style-06::before {
display: inline-block;
vertical-align: middle;
content: '';
width: 22px;
height: 1px;
background-color: #c99947
}
.boutique-custom-heading.style-07 {
text-align: center;
font-size: 0;
line-height: 0
}
.boutique-custom-heading.style-07 .title {
font-family: Montserrat, sans-serif;
font-size: 30px;
line-height: 34px;
letter-spacing: .01em;
margin-bottom: 0
}
.boutique-custom-heading.style-07 .subtitle {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 20px;
font-style: italic;
letter-spacing: .06em;
margin-bottom: 0
}
.boutique-custom-heading.style-07::after {
display: inline-block;
vertical-align: top;
content: '';
width: 47px;
height: 2px;
margin-top: 8px;
background-color: #c99947
}
.boutique-custom-heading.style-08 {
text-align: center
}
.boutique-custom-heading.style-08::after {
display: inline-block;
vertical-align: top;
content: '';
width: 30px;
height: 2px;
margin: 11px 0;
background-color: #c99947
}
.boutique-custom-heading.style-08 .title {
font-size: 25px;
line-height: 32px;
margin-bottom: 0
}
.boutique-custom-heading.style-08 .subtitle {
margin-bottom: 5px
}
.boutique-custom-heading.style-08.light {
color: #ccc
}
.boutique-custom-heading.style-08.light::after {
background-color: #fff
}
.background-zoom {
overflow: hidden
}
.effect {
position: relative
}
.boutique-single-image a {
border: 0;
outline: 0
}
.boutique-single-image .boutique-single-image-wrapper {
display: inline-block;
vertical-align: top;
max-width: 100%
}
.boutique-single-image img {
height: auto;
max-width: 100%;
vertical-align: top
}
.background-zoom .image-effect,
.background-zoom img {
transition: all .5s ease
}
.background-zoom:hover .image-effect,
.background-zoom:hover img {
transform: scale(1.1)
}
.blog-item .post-inner,
.post-item .post-inner {
position: relative
}
.blog-item .post-inner::after,
.blog-item .post-inner::before,
.post-item .post-inner::after,
.post-item .post-inner::before {
display: table;
content: '';
clear: both
}
.blog-item .post-thumb,
.post-item .post-thumb {
display: inline-block;
vertical-align: top;
max-width: 100%;
position: relative
}
.blog-item .thumb-link,
.post-item .thumb-link {
display: block;
position: relative;
overflow: hidden
}
.blog-item .thumb-link img,
.post-item .thumb-link img {
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
.blog-item .thumb-link:hover img,
.post-item .thumb-link:hover img {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1)
}
.blog-item .meta-data,
.post-item .meta-data {
font-size: 13px;
margin-bottom: 7px
}
.blog-item .meta-data>*,
.post-item .meta-data>* {
display: inline-block;
vertical-align: top
}
.blog-item .meta-data>:not(:last-child)::after,
.post-item .meta-data>:not(:last-child)::after {
display: inline-block;
vertical-align: top;
opacity: .2;
margin: -1px 6px 1px;
content: '|'
}
.blog-item .meta-data>*>.icon,
.post-item .meta-data>*>.icon {
margin-right: 2px
}
.blog-item .meta-data .comment .text,
.post-item .meta-data .comment .text {
display: none
}
.blog-item .post-category ul,
.blog-item .post-tags ul,
.post-item .post-category ul,
.post-item .post-tags ul {
display: inline-block;
vertical-align: top;
list-style: none;
padding: 0;
margin-bottom: 0
}
.blog-item .post-category ul li,
.blog-item .post-tags ul li,
.post-item .post-category ul li,
.post-item .post-tags ul li {
display: inline-block;
vertical-align: top;
margin: 0
}
.blog-item .post-category ul li:not(:last-child)::after,
.blog-item .post-tags ul li:not(:last-child)::after,
.post-item .post-category ul li:not(:last-child)::after,
.post-item .post-tags ul li:not(:last-child)::after {
content: ',';
margin-right: 2px
}
.post-item .post-excerpt {
margin-bottom: 14px
}
.post-item .post-excerpt :last-child {
margin-bottom: 0
}
.post-item .readmore {
display: inline-block;
vertical-align: top;
font-size: 12px;
font-weight: 600;
text-transform: uppercase
}
.post-item.style-01 .post-title {
font-size: 14px;
line-height: 24px;
text-transform: uppercase;
margin-bottom: 6px
}
.post-item.style-01 .post-thumb {
margin-bottom: 14px
}
.site-content.blog-page,
.site-content.post-single {
padding-top: 50px
}
.site-content.blog-page .page-title,
.site-content.post-single .page-title {
padding-top: 0
}
.blog-content .post-item {
margin-bottom: 50px
}
.blog-content.kute-boutique-isotope {
margin-left: -15px;
margin-right: -15px
}
.blog-content.kute-boutique-isotope .post-item.isotope-item {
padding-left: 15px;
padding-right: 15px
}
@media(min-width: 768px) {
.site-content.blog-page.style-list .blog-content .post-item .post-thumb {
float: left;
width: 370px;
margin: 0 30px 0 0
}
.site-content.blog-page.style-list .blog-content .post-item .post-info {
overflow: hidden
}
}
.boutique-blog .boutique-custom-heading.style-01 {
margin-bottom: 43px
}
.blog-item .border-plus::before {
border-width: 0 1px
}
.blog-item .border-plus::after {
border-width: 1px 0
}
.blog-item.style-01 .post-inner {
font-size: 0;
line-height: 0;
max-width: 570px;
margin: auto
}
.blog-item.style-01 .post-inner>* {
display: inline-block;
vertical-align: middle;
font-size: 14px;
line-height: 24px;
width: 50%
}
.blog-item.style-01 .post-info {
padding-right: 15px
}
.blog-item.style-01 .post-thumb {
padding-left: 15px
}
.blog-item.style-01 .post-thumb::after {
position: absolute;
content: '';
top: calc(50% - 18px);
left: 14px;
border-left: 16px solid #fff;
border-top: 18px solid transparent;
border-bottom: 18px solid transparent
}
.blog-item.style-01 .post-title,
.blog-item.style-02 .post-title {
font-size: 18px;
line-height: 30px;
text-transform: uppercase;
margin-bottom: 15px
}
.blog-item.style-01 .meta-data,
.blog-item.style-02 .meta-data {
margin-bottom: 0
}
.blog-item.style-01 .blog-date {
margin-bottom: 15px
}
.blog-item.style-01 .blog-date a,
.blog-item.style-02 .blog-date a {
display: inline-block;
vertical-align: top
}
.blog-item.style-01 .blog-date .day,
.blog-item.style-02 .blog-date .day {
display: inline-block;
vertical-align: top;
font-size: 60px;
font-weight: 300;
line-height: 1
}
.blog-item.style-01 .blog-date .month-year,
.blog-item.style-02 .blog-date .month-year {
display: inline-block;
vertical-align: top;
font-size: 13px;
line-height: 16px;
text-transform: uppercase;
padding: 5px 0 5px 10px
}
.blog-item.style-01 .blog-date .month,
.blog-item.style-01 .blog-date .year,
.blog-item.style-02 .blog-date .month,
.blog-item.style-02 .blog-date .year {
display: block
}
@media(max-width: 479px) {
.blog-item.style-01 .blog-date {
margin-bottom: 10px
}
.blog-item.style-01 .blog-date .day,
.blog-item.style-02 .blog-date .day {
font-size: 50px
}
.blog-item.style-01 .blog-date .month-year,
.blog-item.style-02 .blog-date .month-year {
font-size: 12px;
line-height: 14px;
padding: 4px 0 4px 5px
}
.blog-item.style-01 .post-title {
font-size: 14px;
line-height: 24px;
margin-bottom: 10px
}
.blog-item.style-01 .post-thumb {
padding-left: 0
}
.blog-item.style-01 .post-thumb::after {
left: -1px
}
}
.blog-item.style-02 .post-thumb {
margin-bottom: 15px
}
.blog-item.style-02 .blog-date {
position: absolute;
top: 10px;
left: 10px
}
.blog-item.style-02 .blog-date a {
padding: 7px 12px;
color: #fff;
position: relative;
background-color: #c99947
}
.blog-item.style-02 .blog-date a::after {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.blog-item.style-02 .blog-date a:hover::after {
background-color: rgba(255, 255, 255, .3)
}
.blog-item.style-03 {
font-family: Montserrat, sans-serif
}
.blog-item.style-03 .post-title {
font-size: 14px;
line-height: 24px;
letter-spacing: .1em;
text-transform: uppercase;
margin-bottom: 16px
}
.blog-item.style-03 .post-thumb {
margin-bottom: 15px
}
.blog-item.style-03 .thumb-link::before,
.blog-item.style-07 .thumb-link::before {
height: 1px;
border: 0;
background-color: #fff;
width: 25px
}
.blog-item.style-03 .thumb-link:not(:hover)::before,
.blog-item.style-07 .thumb-link:not(:hover)::before {
-webkit-transform: scale(2, 1);
-moz-transform: scale(2, 1);
-ms-transform: scale(2, 1);
-o-transform: scale(2, 1);
transform: scale(2, 1)
}
.blog-item.style-03 .thumb-link::after,
.blog-item.style-07 .thumb-link::after {
width: 1px;
border: 0;
background-color: #fff;
height: 25px
}
.blog-item.style-03 .thumb-link:not(:hover)::after,
.blog-item.style-07 .thumb-link:not(:hover)::after {
-webkit-transform: scale(1, 2);
-moz-transform: scale(1, 2);
-ms-transform: scale(1, 2);
-o-transform: scale(1, 2);
transform: scale(1, 2)
}
.blog-item.style-03 .meta-data {
font-size: 12px;
color: #666;
margin-bottom: 3px
}
.blog-item.style-03 .meta-data .author {
color: #c99947
}
.blog-item.style-03 .meta-data>:not(:last-child)::after {
content: '-';
opacity: .8;
margin: 0 1px
}
.blog-item.style-03 .post-excerpt {
font-size: 13px;
line-height: 22px
}
.blog-item.style-04 .post-inner {
font-size: 0;
line-height: 0;
max-width: 570px;
margin: auto
}
.blog-item.style-04 .post-inner>* {
display: inline-block;
vertical-align: middle;
font-size: 14px;
line-height: 24px
}
.blog-item.style-04 .post-thumb {
width: calc(50% - 15px)
}
.blog-item.style-04 .post-info {
margin-left: -30px;
width: calc(50% + 45px);
position: relative;
padding: 30px 30px 25px 60px
}
.blog-item.style-04 .post-info::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
border: 5px solid #c99947;
opacity: .5
}
.blog-item.style-04 .post-info>* {
position: relative
}
.blog-item.style-04 .post-title {
font-size: 18px;
line-height: 24px;
text-transform: uppercase;
margin-bottom: 35px
}
.blog-item.style-04 .blog-date {
margin-bottom: 7px
}
.blog-item.style-04 .blog-date a,
.blog-item.style-07 .blog-date a {
display: inline-block;
vertical-align: top
}
.blog-item.style-04 .blog-date .day,
.blog-item.style-07 .blog-date .day {
display: inline-block;
vertical-align: top;
font-size: 48px;
font-weight: 200;
line-height: 1
}
.blog-item.style-04 .blog-date .month-year,
.blog-item.style-07 .blog-date .month-year {
display: inline-block;
vertical-align: top;
font-size: 13px;
line-height: 16px;
text-transform: uppercase;
padding: 12px 0 0 3px
}
.blog-item.style-04 .blog-date .month,
.blog-item.style-04 .blog-date .year,
.blog-item.style-07 .blog-date .month,
.blog-item.style-07 .blog-date .year {
display: block
}
.blog-item.style-04 .meta-data {
color: inherit
}
@media(max-width: 479px) {
.blog-item.style-04 .post-thumb {
width: 50%
}
.blog-item.style-04 .post-info {
margin-left: -20px;
width: calc(50% + 20px);
padding: 30px 15px 25px 40px
}
.blog-item.style-04 .post-title {
font-size: 14px;
line-height: 24px;
margin-bottom: 20px
}
}
.blog-item.style-05 {
text-align: center
}
.blog-item.style-05 .post-inner {
display: inline-block;
vertical-align: top;
max-width: 100%
}
.blog-item.style-05 .post-info {
position: absolute;
bottom: 10px;
left: 10px;
right: 10px;
background-color: rgba(255, 255, 255, .9);
z-index: 2;
padding: 20px 15px 16px
}
.blog-item.style-05 .meta-data {
font-size: 10px;
line-height: 24px;
text-transform: uppercase;
letter-spacing: .1em;
margin-bottom: 0
}
.blog-item.style-05 .meta-data>:not(:last-child)::after {
content: '';
opacity: .5;
width: 2px;
height: 2px;
border: 1px solid;
vertical-align: middle;
margin: 0 2px
}
.blog-item.style-05 .blog-date a>* {
display: inline-block;
vertical-align: top
}
.blog-item.style-05 .blog-date a .day {
font-size: 24px;
font-weight: 700;
margin: -4px 0 4px
}
.blog-item.style-05 .blog-date a .cross {
font-size: 18px;
margin: -2px 0 2px 2px
}
.blog-item.style-05 .post-title {
font-size: 14px;
line-height: 24px;
text-transform: uppercase;
letter-spacing: .1em;
margin-bottom: 0
}
.blog-item.style-05 .readmore {
display: inline-block;
vertical-align: top;
font-size: 12px;
line-height: 24px;
text-transform: uppercase;
font-weight: 600;
text-decoration: underline
}
.blog-item.style-05 .readmore .icon {
display: none
}
.blog-item.style-05 .post-category ul li a:hover,
.blog-item.style-05 .readmore:hover {
opacity: .7
}
@media(min-width: 1200px) {
.blog-item.style-05 .post-inner:not(:hover) .post-info {
opacity: 0;
visibility: hidden;
-webkit-transform: scale(.5);
-moz-transform: scale(.5);
-ms-transform: scale(.5);
-o-transform: scale(.5);
transform: scale(.5)
}
.blog-item.style-05 .post-info {
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
}
.blog-item.style-06 .post-inner {
display: table;
width: 100%;
box-shadow: 0 0 0 1px #f3f3f3 inset
}
.blog-item.style-06 .post-inner>* {
display: table-cell;
vertical-align: middle;
max-width: 100%
}
.blog-item.style-06 .post-thumb {
width: 370px
}
.blog-item.style-06 .post-info {
padding: 15px 30px
}
.blog-item.style-06 .post-category {
font-size: 10px;
line-height: 20px;
font-weight: 600;
text-transform: uppercase;
color: #888;
letter-spacing: .15em;
margin-bottom: 4px
}
.blog-item.style-06 .post-title {
font-size: 14px;
line-height: 24px;
font-family: playfair display, sans-serif;
font-style: italic;
font-weight: 400;
margin-bottom: 11px
}
.blog-item.style-06 .meta-data>*>.icon {
color: inherit;
opacity: .4
}
.blog-item.style-06 .post-excerpt {
margin-bottom: 33px;
line-height: 24px
}
.blog-item.style-06 .readmore {
font-family: playfair display, sans-serif;
font-size: 13px;
line-height: 24px
}
.blog-item.style-06 .readmore:not(:hover) {
color: #888
}
.blog-item.style-06 .readmore .icon {
display: inline-block;
vertical-align: top;
opacity: .5;
margin: 1px 0 -1px 3px
}
.blog-item.style-06 .readmore .icon::before {
content: "\f18e"
}
@media(max-width: 1499px) and (min-width:1200px) {
.blog-item.style-06 .post-thumb {
width: 300px
}
.blog-item.style-06 .post-info {
padding: 10px 20px
}
.blog-item.style-06 .post-category {
margin-bottom: 2px
}
.blog-item.style-06 .post-title {
margin-bottom: 8px
}
.blog-item .meta-data,
.post-item .meta-data {
margin-bottom: 5px
}
.blog-item.style-06 .post-excerpt {
margin-bottom: 15px
}
}
@media(max-width: 767px) {
.blog-item.style-06 .post-inner {
display: block
}
.blog-item.style-06 .post-thumb {
display: block;
margin: auto
}
.blog-item.style-06 .post-info {
display: block;
padding: 30px
}
}
.blog-item.style-07 .post-thumb {
margin-bottom: 18px
}
.blog-item.style-07 .blog-date {
display: inline-block;
vertical-align: top;
float: left
}
.blog-item.style-07 .post-title {
font-size: 14px;
line-height: 24px;
min-height: 55px;
text-transform: uppercase;
overflow: hidden;
position: relative;
padding: 7px 0 0 30px;
margin-bottom: 13px
}
.blog-item.style-07 .post-title::before {
position: absolute;
content: '';
top: 10px;
bottom: 5px;
left: 15px;
border-left: 1px solid
}
.blog-item.style-07 .meta-data {
margin: 0;
color: #999
}
.blog-item.style-08 .post-inner {
display: table;
width: 100%;
max-width: 570px;
position: relative;
background-color: #fff;
box-shadow: 0 0 0 1px #f3f3f3;
color: #666;
text-align: center;
margin: 0 auto
}
.blog-item.style-08 .post-inner>* {
display: table-cell;
vertical-align: middle
}
.blog-item.style-08 .post-thumb {
width: 270px
}
.blog-item.style-08 .post-info {
width: calc(100% - 270px);
padding: 60px 20px 15px
}
.blog-item.style-08 .post-info>* {
max-width: 190px;
margin-left: auto;
margin-right: auto
}
.blog-item.style-08 .blog-date a {
display: inline-block;
vertical-align: top;
font-size: 13px;
line-height: 20px;
margin-bottom: 10px
}
.blog-item.style-08 .post-title {
font-size: 14px;
line-height: 22px;
letter-spacing: .05em;
min-height: 134px;
margin-bottom: 30px
}
.blog-item.style-08 .readmore,
.blog-item.style-09 .readmore {
display: inline-block;
vertical-align: top;
font-size: 13px;
line-height: 18px;
border-bottom: 1px solid #bdbdbd;
box-shadow: 0 -1px #dfdfdf inset
}
.blog-item.style-08 .readmore:hover,
.blog-item.style-09 .readmore:hover {
border-bottom: 1px solid
}
.blog-item.style-08 .readmore .icon {
display: none
}
@media(max-width: 1199px) and (min-width:992px) {
.blog-item.style-08 .post-inner>* {
width: 50%
}
.blog-item.style-08 .post-info {
padding: 30px 15px 15px
}
}
@media(max-width: 767px) {
.blog-item.style-08 .post-inner>* {
width: 50%
}
.blog-item.style-08 .post-info {
padding: 45px 20px 15px
}
}
@media(max-width: 479px) {
.blog-item.style-08 .post-inner {
display: block;
max-width: 270px
}
.blog-item.style-08 .post-inner>* {
display: block;
width: auto
}
.blog-item.style-08 .post-info {
padding: 20px 15px 15px
}
.blog-item.style-08 .post-title {
min-height: 88px;
margin-bottom: 20px
}
}
.blog-item.style-09 .post-inner {
background-color: #fff;
text-align: center
}
.blog-item.style-09 .post-info {
padding: 0 30px 25px;
position: relative
}
.blog-item.style-09 .blog-date a {
display: inline-block;
vertical-align: top;
font-size: 13px;
line-height: 20px;
padding: 6px 12px;
color: #fff;
margin-top: -16px;
margin-bottom: 10px
}
.blog-item.style-09 .post-title {
font-size: 14px;
line-height: 22px;
letter-spacing: .05em;
margin-bottom: 0;
padding-bottom: 5px
}
.blog-item.style-09 .post-excerpt {
font-size: 12px;
line-height: 22px;
margin-bottom: 0;
padding-bottom: 30px
}
.blog-item.style-09 .readmore {
border-bottom: 2px solid #7f7f7f;
box-shadow: none;
font-weight: 500;
text-transform: uppercase;
font-size: 12px
}
.blog-item.style-09 .readmore .icon {
display: none
}
@media(max-width: 1199px) {
.blog-item.style-09 .post-info {
padding: 0 20px 20px
}
}
.blog-item.style-10 .post-inner {
text-align: center;
position: relative
}
.blog-item.style-10 .post-thumb {
margin-bottom: 13px
}
.blog-item.style-10 .blog-date {
position: absolute;
top: 10px;
left: 10px;
z-index: 2
}
.blog-item.style-10 .blog-date a {
display: inline-block;
vertical-align: top;
font-size: 13px;
line-height: 24px;
color: #fff;
padding: 4px 15px
}
.blog-item.style-10 .post-title {
font-size: 16px;
line-height: 24px;
letter-spacing: .05em;
margin-bottom: 4px
}
.blog-item.style-10 .post-excerpt {
font-size: 13px;
line-height: 23px;
margin-bottom: 6px
}
.blog-item.style-10 .comment {
color: #aaa
}
.blog-item.style-11 {
text-align: center
}
.blog-item.style-11 .post-inner {
display: inline-block;
vertical-align: top;
max-width: 100%;
position: relative
}
.blog-item.style-11 .post-info {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
border: 3px solid #222;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center;
padding: 70px 50px 30px;
background-color: rgba(255, 255, 255, .5)
}
.blog-item.style-11 .blog-date {
display: inline-block;
vertical-align: top;
font-size: 14px;
line-height: 24px;
margin-bottom: 6px
}
.blog-item.style-11 .post-title {
font-size: 18px;
line-height: 24px;
margin-bottom: 57px
}
.blog-item.style-11 .readmore {
font-size: 14px;
line-height: 20px;
color: #111;
letter-spacing: .05em;
box-shadow: none;
border-bottom: 3px solid #7f7f7f
}
.blog-item.style-11 .readmore:hover {
opacity: .7
}
.blog-item.style-11 .readmore .icon {
display: none
}
@media(min-width: 1200px) {
.blog-item.style-11 .post-info {
-webkit-transition: all .4s ease;
-moz-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease;
background-color: #fff
}
.blog-item.style-11 .post-inner:not(:hover) .post-info {
opacity: 0;
-webkit-transform: scale(.9);
-moz-transform: scale(.9);
-ms-transform: scale(.9);
-o-transform: scale(.9);
transform: scale(.9)
}
}
@media(max-width: 1199px) {
.blog-item.style-11 .post-info {
padding: 50px 30px 30px
}
.blog-item.style-11 .post-title {
margin-bottom: 47px
}
}
@media(max-width: 767px) {
.blog-item.style-11 .post-info {
padding: 30px 20px 20px
}
.blog-item.style-11 .post-title {
margin-bottom: 35px
}
}
a.canvas-toggle {
width: 30px;
height: 30px;
background-color: #222;
display: block;
position: absolute;
right: 0;
top: 0;
color: #fff;
transition: all .3s ease
}
a.canvas-toggle:hover {
background-color: #c99947;
color: #fff
}
.canvas-toggle::after,
.canvas-toggle::before {
position: absolute;
content: '';
top: 15px;
right: 15px;
width: 6px;
height: 6px;
border-top: 1px solid;
border-right: 1px solid;
-webkit-transform-origin: right top;
-moz-transform-origin: right top;
-ms-transform-origin: right top;
-o-transform-origin: right top;
transform-origin: right top;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.canvas-toggle::after {
right: 16px;
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
-ms-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
transform: rotate(-135deg)
}
.canvas-closed {
transform: translateX(-100%)
}
.canvas-header.right-side.boutique-custommenu {
position: fixed;
z-index: 5;
right: 0;
top: 0;
left: auto;
bottom: 0;
width: 345px;
background-color: rgba(0, 0, 0, 0.5);
transition: all .3s ease;
padding-top: 80px;
padding-bottom: 80px
}
.canvas-header.right-side.boutique-custommenu.canvas-closed {
z-index: 4
}
@media (max-width: 1499px) {
.canvas-header.right-side.boutique-custommenu {
padding-top: 50px;
padding-bottom: 50px;
width: 320px
}
}
.canvas-header.right-side a.canvas-toggle {
left: 0
}
.canvas-closed.right-side {
transform: translateX(100%)
}
.canvas-header.right-side.canvas-closed a.canvas-toggle {
left: -30px;
transform: rotate(180deg)
}
.canvas-closed>.canvas-toggle::after,
.canvas-closed>.canvas-toggle::before {
position: absolute;
content: '';
top: 15px;
right: 15px;
width: 6px;
height: 6px;
border-top: 1px solid;
border-right: 1px solid;
-webkit-transform-origin: right top;
-moz-transform-origin: right top;
-ms-transform-origin: right top;
-o-transform-origin: right top;
transform-origin: right top;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.canvas-closed>.canvas-toggle::after {
right: 11px;
-webkit-transform: rotate(-135deg) scale(-1);
-moz-transform: rotate(-135deg) scale(-1);
-ms-transform: rotate(-135deg) scale(-1);
-o-transform: rotate(-135deg) scale(-1);
transform: rotate(-135deg) scale(-1)
}
.nav-out-side .owl-carousel .owl-nav .owl-prev,
.nav-out-side .owl-carousel .owl-nav .owl-next {
font-size: 30px;
line-height: 30px;
height: 30px;
width: 30px;
text-align: center;
position: absolute;
top: 50%;
margin-top: -15px;
transition: all .3s ease;
transform: scale(0);
box-sizing: content-box
}
.nav-out-side .owl-carousel:hover .owl-nav .owl-prev,
.nav-out-side .owl-carousel:hover .owl-nav .owl-next {
transform: scale(1)
}
.nav-out-side .owl-carousel .owl-nav .owl-prev:not(:hover),
.nav-out-side .owl-carousel .owl-nav .owl-next:not(:hover) {
opacity: .7
}
.nav-out-side .owl-carousel .owl-nav .owl-prev {
left: -35px;
padding-right: 5px !important
}
.nav-out-side .owl-carousel .owl-nav .owl-next {
right: -35px;
padding-left: 5px !important
}
@media (min-width: 1200px) {
.nav-out-side .owl-carousel .owl-nav .owl-prev {
left: -50px;
padding-right: 20px !important
}
.nav-out-side .owl-carousel .owl-nav .owl-next {
right: -50px;
padding-left: 20px !important
}
}
.nav-in-side .owl-carousel .owl-nav .owl-prev,
.nav-in-side .owl-carousel .owl-nav .owl-next {
font-size: 12px;
line-height: 30px;
height: 30px;
width: 30px;
text-align: center;
position: absolute;
top: 50%;
margin-top: -15px;
transition: all .3s ease;
transform: scale(0);
color: #fff;
background-color: #222
}
.nav-in-side .owl-carousel:hover .owl-nav .owl-prev,
.nav-in-side .owl-carousel:hover .owl-nav .owl-next {
transform: scale(1)
}
.nav-in-side .owl-carousel .owl-nav .owl-prev:not(:hover),
.nav-in-side .owl-carousel .owl-nav .owl-next:not(:hover) {
opacity: .7
}
.nav-in-side .owl-carousel .owl-nav .owl-prev {
left: 0
}
.nav-in-side .owl-carousel .owl-nav .owl-next {
right: 0
}
.nav-in-side .owl-carousel .owl-nav .owl-prev:hover,
.nav-in-side .owl-carousel .owl-nav .owl-next:hover {
background-color: #c99947
}
.nav-top-right .owl-nav>button:hover {
background-color: #222;
color: #fff
}
.nav-top-right .owl-nav>button {
width: 36px;
height: 36px;
background-color: transparent;
box-shadow: 0 0 0 1px #e5e5e5 inset;
margin-left: 5px
}
.nav-top-right .owl-nav {
position: absolute;
right: 0;
top: -46px
}
.nav-bottom-left .owl-carousel {
padding-bottom: 70px
}
.nav-bottom-left .owl-nav>button:hover {
background-color: #222;
color: #fff
}
.nav-bottom-left .owl-nav>button {
width: 36px;
height: 36px;
background-color: transparent;
box-shadow: 0 0 0 1px #e5e5e5 inset;
margin-left: 5px
}
.nav-bottom-left .owl-nav {
position: absolute;
left: 0;
bottom: 0
}
.nav-top-center .owl-carousel {
padding-top: 55px
}
.nav-top-center .owl-nav>button:hover {
background-color: #222;
color: #fff
}
.nav-top-center .owl-nav>button {
width: 36px;
height: 36px;
background-color: transparent;
box-shadow: 0 0 0 1px #e5e5e5 inset;
margin-left: 5px
}
.nav-top-center .owl-nav {
position: absolute;
top: 0;
width: 100%;
text-align: center
}
.nav-top-center .owl-nav button.owl-next:before {
content: '';
width: 40px;
display: block;
border-top: 1px dashed #666;
position: absolute;
right: 100%;
top: 50%
}
.nav-top-center .owl-nav button.owl-next {
margin-left: 40px;
position: relative
}
.blog-item .meta-data>*>.icon {
color: #c99947
}
.boutique-brand {
text-align: center
}
.boutique-brand .brand-item a {
display: inline-block;
vertical-align: top;
max-width: 100%
}
.flashlight::after,
.flashlight::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
background-color: #000;
z-index: 2
}
.flashlight::before {
left: 0;
width: 100%
}
.flashlight::after {
right: 0;
width: 0;
opacity: .5
}
.flashlight:hover::before {
width: 0;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
.flashlight:hover::after {
width: 100%;
-webkit-transition: all .8s ease;
-moz-transition: all .8s ease;
-o-transition: all .8s ease;
transition: all .8s ease
}
.bounce-in:hover figure.not-image,
.bounce-in:hover img {
-webkit-animation: bounceIn .5s ease;
-o-animation: bounceIn .5s ease;
animation: bounceIn .5s ease
}
@media(min-width: 1025px) {
.faded-in figure.not-image,
.faded-in img {
-webkit-transition: opacity .2s ease;
-moz-transition: opacity .2s ease;
-o-transition: opacity .2s ease;
transition: opacity .2s ease
}
.faded-in:not(:hover) figure.not-image,
.faded-in:not(:hover) img {
opacity: .3
}
}
.boutique-newsletter.open-modal {
-webkit-animation: none;
-o-animation: none;
animation: none
}
.boutique-newsletter .mc4wp-form-fields {
position: relative
}
.boutique-newsletter .text-field {
font-weight: inherit;
color: inherit;
margin: 0
}
.boutique-newsletter .input-text,
.boutique-newsletter .submit-newsletter {
position: relative;
z-index: 1
}
.boutique-newsletter .input-focus {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease
}
.boutique-newsletter .radio-field {
display: inline-block;
vertical-align: top;
font-size: 14px;
line-height: 24px;
cursor: pointer;
font-weight: 500;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease
}
.boutique-newsletter .input-radio {
vertical-align: middle;
margin: -1px 2px 0 0
}
.boutique-newsletter .discount .text-primary {
display: inline-block;
vertical-align: bottom;
font-size: 18px;
line-height: 32px;
font-weight: 900;
letter-spacing: .2em;
margin: 0 5px
}
.boutique-newsletter .discount .text-primary span {
font-size: 30px;
margin: -4px 0 4px
}
.boutique-newsletter .discount .desc {
display: inline-block;
vertical-align: bottom;
font-size: 14px;
line-height: 30px;
font-weight: 700;
letter-spacing: .05em;
margin: 0 5px
}
.boutique-newsletter.style-01 {
text-align: center
}
.boutique-newsletter.style-01 .boutique-custom-heading.style-01 {
margin-bottom: 38px
}
.boutique-newsletter.style-01 .newsletter-inner {
font-size: 0;
line-height: 0
}
.boutique-newsletter.style-01 .newsletter-inner>* {
display: inline-block;
vertical-align: middle;
font-size: 14px;
line-height: 24px;
width: 100%;
position: relative
}
.boutique-newsletter.style-01 .newsletter-video {
width: 57.3%
}
.boutique-newsletter.style-01 .thumb {
display: inline-block;
vertical-align: top;
position: relative;
max-width: 100%
}
.boutique-newsletter.style-01 .thumb::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.boutique-newsletter.style-01 .newsletter-inner:hover .thumb::before {
background-color: rgba(0, 0, 0, .5)
}
.boutique-newsletter.style-01 .button-play {
position: absolute;
top: calc(50% - 30px);
left: calc(50% - 30px);
width: 60px;
border: 3px solid;
font-size: 0;
line-height: 0;
border-radius: 50%;
padding: 0 0 0 4px;
background-color: transparent;
color: #fff
}
.boutique-newsletter.style-01 .button-play:hover,
.boutique-newsletter.style-01 .newsletter-info::before {
color: #c99947
}
.boutique-newsletter.style-01 .button-play::before {
font-family: "Font Awesome 5 Free";
content: "\f04b";
font-size: 20px;
line-height: 54px;
font-weight: 600
}
.boutique-newsletter.style-01 .newsletter-video~.newsletter-info {
width: 42.7%
}
.boutique-newsletter.style-01 .newsletter-video~.newsletter-info::before {
margin-left: -136px
}
.boutique-newsletter.style-01 .newsletter-info::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
border: 6px solid
}
.boutique-newsletter.style-01 .newsletter-info>* {
position: relative
}
.boutique-newsletter.style-01 .info-inner {
height: 280px;
padding: 30px 30px 50px;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center
}
.boutique-newsletter.style-01 .mc4wp-form,
.boutique-newsletter.style-02 .mc4wp-form,
.boutique-newsletter.style-04 .mc4wp-form,
.boutique-newsletter.style-05 .mc4wp-form,
.boutique-newsletter.style-07 .mc4wp-form,
.boutique-newsletter.style-10 .mc4wp-form {
display: inline-block;
vertical-align: top;
width: 100%;
max-width: 370px
}
.boutique-newsletter.style-01 .mc4wp-form-fields,
.boutique-newsletter.style-02 .mc4wp-form-fields,
.boutique-newsletter.style-04 .mc4wp-form-fields,
.boutique-newsletter.style-05 .mc4wp-form-fields,
.boutique-newsletter.style-07 .mc4wp-form-fields,
.boutique-newsletter.style-10 .mc4wp-form-fields {
display: table;
width: 100%
}
.boutique-newsletter.style-01 .mc4wp-form-fields>*,
.boutique-newsletter.style-02 .mc4wp-form-fields>*,
.boutique-newsletter.style-04 .mc4wp-form-fields>*,
.boutique-newsletter.style-05 .mc4wp-form-fields>*,
.boutique-newsletter.style-07 .mc4wp-form-fields>*,
.boutique-newsletter.style-10 .mc4wp-form-fields>* {
display: table-cell;
vertical-align: top
}
.boutique-newsletter.style-01 .text-field,
.boutique-newsletter.style-02 .text-field,
.boutique-newsletter.style-04 .text-field,
.boutique-newsletter.style-05 .text-field,
.boutique-newsletter.style-07 .text-field,
.boutique-newsletter.style-10 .text-field {
width: 100%
}
.boutique-newsletter.style-01 .input-text,
.boutique-newsletter.style-02 .input-text,
.boutique-newsletter.style-04 .input-text,
.boutique-newsletter.style-05 .input-text,
.boutique-newsletter.style-07 .input-text,
.boutique-newsletter.style-10 .input-text {
width: 100%
}
.boutique-newsletter.style-01 .submit-newsletter,
.boutique-newsletter.style-02 .submit-newsletter,
.boutique-newsletter.style-04 .submit-newsletter,
.boutique-newsletter.style-05 .submit-newsletter,
.boutique-newsletter.style-07 .submit-newsletter,
.boutique-newsletter.style-10 .submit-newsletter {
white-space: nowrap;
height: 26px;
line-height: 26px;
border: 0
}
.boutique-newsletter.style-01 .input-text,
.boutique-newsletter.style-02 .input-text,
.boutique-newsletter.style-04 .input-text,
.boutique-newsletter.style-05 .input-text,
.boutique-newsletter.style-10 .input-text {
box-shadow: none;
font-size: 13px;
padding: 1px 10px;
height: 26px;
width: 100%
}
.boutique-newsletter.style-01 .submit-newsletter,
.boutique-newsletter.style-02 .submit-newsletter,
.boutique-newsletter.style-04 .submit-newsletter,
.boutique-newsletter.style-05 .submit-newsletter,
.boutique-newsletter.style-10 .submit-newsletter {
background-color: transparent;
padding: 1px 10px
}
.boutique-newsletter.style-01 .input-focus,
.boutique-newsletter.style-02 .input-focus,
.boutique-newsletter.style-04 .input-focus,
.boutique-newsletter.style-05 .input-focus,
.boutique-newsletter.style-10 .input-focus {
border-bottom: 1px solid #e5e5e5
}
.boutique-newsletter.style-01 .input-text::-webkit-input-placeholder,
.boutique-newsletter.style-02 .input-text::-webkit-input-placeholder,
.boutique-newsletter.style-04 .input-text::-webkit-input-placeholder {
color: #aaa
}
.boutique-newsletter.style-01 .input-text:-moz-placeholder,
.boutique-newsletter.style-02 .input-text:-moz-placeholder,
.boutique-newsletter.style-04 .input-text:-moz-placeholder {
color: #aaa
}
.boutique-newsletter.style-01 .input-text::-moz-placeholder,
.boutique-newsletter.style-02 .input-text::-moz-placeholder,
.boutique-newsletter.style-04 .input-text::-moz-placeholder {
color: #aaa
}
.boutique-newsletter.style-01 .input-text:-ms-input-placeholder,
.boutique-newsletter.style-02 .input-text:-ms-input-placeholder,
.boutique-newsletter.style-04 .input-text:-ms-input-placeholder {
color: #aaa
}
@media(max-width: 1199px) {
.boutique-newsletter.style-01 .newsletter-video {
width: 60%
}
.boutique-newsletter.style-01 .newsletter-video~.newsletter-info {
width: 40%
}
.boutique-newsletter.style-01 .info-inner {
min-height: 260px
}
}
@media(max-width: 991px) {
.boutique-newsletter.style-01 .newsletter-video {
width: 100%
}
.boutique-newsletter.style-01 .newsletter-video~.newsletter-info {
width: calc(100% - 30px);
max-width: 570px
}
.boutique-newsletter.style-01 .newsletter-video~.newsletter-info::before {
margin: -80px 0 0
}
}
@media(max-width: 767px) {
.boutique-newsletter.style-01 .newsletter-video~.newsletter-info::before {
margin: -50px 0 0
}
}
@media(max-width: 479px) {
.boutique-newsletter.style-01 .newsletter-video~.newsletter-info::before {
margin: -30px 0 0
}
}
.boutique-newsletter.style-02 {
text-align: center;
padding: 20px;
border: 6px solid #c99947;
min-height: 282px;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center
}
.boutique-newsletter.style-02 .boutique-custom-heading.style-01 {
margin-bottom: 60px
}
.boutique-newsletter.style-03 .text-field {
width: 100%;
position: relative;
margin-bottom: 10px;
background-color: #fff
}
.boutique-newsletter.style-03 .input-text {
width: 100%;
box-shadow: none
}
.boutique-newsletter.style-03 .input-focus {
border: 2px solid #ddd
}
.boutique-newsletter.style-04 {
border: 1px dashed #ddd;
padding: 30px 70px
}
.boutique-newsletter.style-04 .boutique-custom-heading.style-01 {
padding: 16px 30px 12px
}
.boutique-newsletter.style-04 .content {
text-align: center;
padding: 8px 30px
}
.boutique-newsletter.style-04 .content-inner {
display: inline-block;
vertical-align: top;
max-width: 445px
}
.boutique-newsletter.style-04 .mc4wp-form {
text-align: left;
display: block;
max-width: inherit
}
.boutique-newsletter.style-04 .discount {
margin-top: 22px
}
@media(min-width: 768px) {
.boutique-newsletter.style-04 .newsletter-inner {
font-size: 0;
line-height: 0
}
.boutique-newsletter.style-04 .newsletter-inner>* {
font-size: 14px;
line-height: 24px
}
.boutique-newsletter.style-04 .boutique-custom-heading.style-01 {
display: inline-block;
vertical-align: middle;
width: 38.5%;
margin: 0;
border-right: 1px solid #e5e5e5
}
.boutique-newsletter.style-04 .boutique-custom-heading.style-01~.content {
display: inline-block;
vertical-align: middle;
width: 61.5%
}
}
@media(max-width: 1199px) {
.boutique-newsletter.style-04 {
padding: 30px
}
.boutique-newsletter.style-04 .content,
.boutique-newsletter.style-04 .boutique-custom-heading.style-01 {
padding-left: 20px;
padding-right: 20px
}
}
@media(max-width: 991px) {
.boutique-newsletter.style-04 {
padding: 30px 0
}
}
@media(max-width: 767px) {
.boutique-newsletter.style-04 {
padding: 50px 15px
}
.boutique-newsletter.style-04 .content,
.boutique-newsletter.style-04 .boutique-custom-heading.style-01 {
padding: 0
}
}
.boutique-newsletter.style-05 {
padding: 25px 68px;
border: 1px dashed #ddd
}
.boutique-newsletter.style-05 .newsletter-inner {
font-size: 0;
line-height: 0
}
.boutique-newsletter.style-05 .content {
font-size: 14px;
line-height: 24px
}
.boutique-newsletter.style-05 .boutique-custom-heading.style-07 {
display: inline-block;
vertical-align: middle;
width: 34%;
padding: 0 30px 6px;
text-align: inherit
}
.boutique-newsletter.style-05 .boutique-custom-heading.style-07~.content {
display: inline-block;
vertical-align: middle;
width: 66%;
padding: 0 30px 12px
}
.boutique-newsletter.style-05 .mc4wp-form {
max-width: inherit
}
.boutique-newsletter.style-05 .input-text,
.boutique-newsletter.style-10 .input-text {
padding: 6px 20px;
height: 36px
}
.boutique-newsletter.style-05 .submit-newsletter,
.boutique-newsletter.style-10 .submit-newsletter {
padding: 6px 20px;
font-size: 14px;
letter-spacing: .1em
}
@media(max-width: 1199px) {
.boutique-newsletter.style-05 {
padding: 25px 30px
}
.boutique-newsletter.style-05 .boutique-custom-heading.style-07 {
width: 40%;
padding: 0 20px 6px
}
.boutique-newsletter.style-05 .boutique-custom-heading.style-07~.content {
width: 60%;
padding: 0 20px 12px
}
}
@media(max-width: 991px) {
.boutique-newsletter.style-05 {
padding: 25px 15px
}
.boutique-newsletter.style-05 .boutique-custom-heading.style-07 {
width: 46%;
padding: 0 15px 6px
}
.boutique-newsletter.style-05 .boutique-custom-heading.style-07~.content {
width: 54%;
padding: 0 15px 12px
}
}
@media(max-width: 767px) {
.boutique-newsletter.style-05 .boutique-custom-heading.style-07 {
width: 100%
}
.boutique-newsletter.style-05 .boutique-custom-heading.style-07~.content {
width: 100%
}
}
@media(max-width: 479px) {
.boutique-newsletter.style-05 {
padding: 25px 0
}
}
.boutique-newsletter.style-06 .boutique-custom-heading.style-08 {
margin-bottom: 15px
}
.boutique-newsletter.style-06 .discount {
text-align: center;
padding: 15px 0
}
.boutique-newsletter.style-06 .discount .text-primary {
display: block;
font-size: 36px;
line-height: 1;
letter-spacing: 0;
margin: 0
}
.boutique-newsletter.style-06 .discount .text-primary span {
font-size: 60px;
margin: 0
}
.boutique-newsletter.style-06 .discount .desc {
display: block;
font-size: 18px;
line-height: 20px;
font-weight: 600;
letter-spacing: 0;
color: #fff;
text-align: right;
margin: 0
}
.boutique-newsletter.style-06 .mc4wp-form {
padding: 15px 0
}
.boutique-newsletter.style-06 .mc4wp-form-fields {
background-color: #fff
}
.boutique-newsletter.style-06 .text-field {
width: 100%
}
.boutique-newsletter.style-06 .input-text {
width: 100%;
padding: 10px 76px 10px 20px;
height: 44px;
box-shadow: none
}
.boutique-newsletter.style-06 .input-focus {
border: 1px solid #e5e5e5
}
.boutique-newsletter.style-06 .submit-newsletter {
position: absolute;
top: 0;
right: 0;
bottom: 0;
padding: 0;
font-size: 0;
line-height: 0;
border: 0;
width: 56px;
text-align: center;
background-color: transparent;
color: inherit;
font-weight: 400;
height: 44px
}
.boutique-newsletter.style-06 .submit-newsletter::before {
font-family: Pe-icon-7-stroke, sans-serif;
content: "\e66c";
font-size: 27px;
line-height: 44px;
margin-left: 3px
}
.boutique-newsletter.style-06 .submit-newsletter::after {
position: absolute;
content: '';
top: 9px;
bottom: 9px;
left: 0;
border-left: 1px solid #e5e5e5
}
@media(min-width: 768px) {
.boutique-newsletter.style-06 .content {
display: table;
width: 100%
}
.boutique-newsletter.style-06 .content>* {
display: table-cell;
vertical-align: middle;
width: 50%
}
.boutique-newsletter.style-06 .content>:not(:last-child) {
padding-right: 15px
}
.boutique-newsletter.style-06 .content>:not(:first-child) {
padding-left: 15px
}
}
.boutique-newsletter.style-07 .boutique-custom-heading.style-01 {
text-align: inherit
}
.boutique-newsletter.style-07 .input-text {
box-shadow: none
}
.boutique-newsletter.style-07 .submit-newsletter {
padding-left: 15px;
padding-right: 15px;
background-color: #222;
color: #fff;
height: 40px
}
.boutique-newsletter.style-07 .submit-newsletter:hover {
background-color: #c99947
}
.boutique-newsletter.style-07 .input-focus {
border: 1px solid #ccc;
right: 1px
}
.boutique-newsletter.style-07.light {
color: #888
}
.boutique-newsletter.style-07.light .input-focus {
border-color: #555
}
.boutique-newsletter.style-07.light .submit-newsletter:not(:hover) {
background-color: #fff
}
.boutique-newsletter.style-08 .input-focus {
border-color: #ddd
}
.boutique-newsletter.style-08 .submit-newsletter:not(:hover) {
background-color: transparent;
box-shadow: 1px 0 #ddd inset;
color: #222
}
.boutique-newsletter.style-08.light .submit-newsletter:not(:hover) {
background-color: transparent;
color: #fff !important;
box-shadow: 1px 0 #555 inset
}
.boutique-newsletter.style-09 {
padding: 72px 50px 73px
}
.boutique-newsletter.style-09 .newsletter-inner {
display: table;
width: 100%
}
.boutique-newsletter.style-09 .newsletter-inner>* {
display: table-cell;
vertical-align: middle;
padding: 0 50px
}
.boutique-newsletter.style-09 .block-title {
width: 38%;
text-align: center
}
.boutique-newsletter.style-09 .content {
width: 62%
}
.boutique-newsletter.style-09 .subtitle {
font-size: 14px;
line-height: 24px;
font-family: playfair display, sans-serif;
color: #bbb;
font-style: italic;
margin-bottom: 0
}
.boutique-newsletter.style-09 .title {
font-size: 24px;
line-height: 36px;
margin-bottom: 0;
color: #fff;
letter-spacing: .15em
}
.boutique-newsletter.style-09 .mc4wp-form-fields {
display: table;
width: 100%
}
.boutique-newsletter.style-09 .mc4wp-form-fields>* {
display: table-cell;
vertical-align: top
}
.boutique-newsletter.style-09 .text-field {
width: 100%
}
.boutique-newsletter.style-09 .input-text {
width: 100%;
box-shadow: none;
padding: 10px 0 10px 20px;
height: 44px;
color: #ccc;
font-size: 13px;
font-style: italic
}
.boutique-newsletter.style-09 .submit-newsletter {
white-space: nowrap;
font-size: 10px;
letter-spacing: .15em;
background-color: transparent;
padding: 10px 20px;
border: 0;
box-shadow: none;
line-height: 24px
}
.boutique-newsletter.style-09 .submit-newsletter:not(:hover) {
color: #fff
}
.boutique-newsletter.style-09 .input-focus {
border: 1px solid rgba(255, 255, 255, .2)
}
@media(max-width: 1199px) {
.boutique-newsletter.style-09,
.boutique-newsletter.style-09 .newsletter-inner>* {
padding-left: 25px;
padding-right: 25px
}
.boutique-newsletter.style-09 .block-title {
width: 40%
}
.boutique-newsletter.style-09 .content {
width: 60%
}
}
@media(max-width: 991px) {
.boutique-newsletter.style-09 {
padding-left: 0;
padding-right: 0
}
.boutique-newsletter.style-09 .newsletter-inner>* {
padding-left: 20px;
padding-right: 20px
}
.boutique-newsletter.style-09 .block-title {
width: 45%
}
.boutique-newsletter.style-09 .content {
width: 55%
}
.boutique-newsletter.style-09 .title {
letter-spacing: .1em
}
}
@media(max-width: 767px) {
.boutique-newsletter.style-09 .newsletter-inner {
display: block
}
.boutique-newsletter.style-09 .newsletter-inner>* {
display: block;
width: auto;
padding: 10px 0
}
}
.boutique-newsletter.style-10 {
padding: 15px 75px 28px;
background-color: #f9f9f9;
text-align: center;
min-height: 300px;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center
}
.boutique-newsletter.style-10 .boutique-custom-heading.style-01 {
margin-bottom: 5px;
text-align: inherit
}
.boutique-newsletter.style-10 .discount {
margin-bottom: 34px
}
.boutique-newsletter.style-10 .mc4wp-form {
max-width: inherit
}
@media(max-width: 1199px) {
.boutique-newsletter.style-10 {
min-height: 241px;
padding: 19px 50px 29px
}
.boutique-newsletter.style-10 .boutique-custom-heading.style-01 .subtitle,
.boutique-newsletter.style-10 .boutique-custom-heading.style-01 .title {
padding-bottom: 3px
}
.boutique-newsletter.style-10 .discount {
margin-bottom: 20px
}
.boutique-newsletter.style-10 .boutique-newsletter .discount .desc {
line-height: 24px
}
}
@media(max-width: 991px) {
.boutique-newsletter.style-10 {
padding: 19px 30px 29px
}
}
@media(max-width: 479px) {
.boutique-newsletter.style-10 {
padding: 19px 15px 29px
}
}
.boutique-newsletter.style-11 .newsletter-inner>* {
padding: 5px 0
}
.boutique-newsletter.style-11:not(.style-13) .block-title {
text-align: center;
margin-bottom: 35px
}
.boutique-newsletter.style-11 .title {
font-size: 24px;
line-height: 30px;
margin-bottom: 0
}
.boutique-newsletter.style-11 .subtitle {
font-size: 14px;
line-height: 20px;
margin-bottom: 0
}
.boutique-newsletter.style-11 .text-field {
width: 100%
}
.boutique-newsletter.style-11 .input-text {
font-size: 13px;
width: 100%;
height: 30px;
padding: 3px 40px 3px 10px;
box-shadow: none
}
.boutique-newsletter.style-11 .input-focus {
border-bottom: 2px solid #969696;
bottom: 2px
}
.boutique-newsletter.style-11 .submit-newsletter {
position: absolute;
top: 0;
right: 0;
bottom: 0;
font-size: 0;
line-height: 0;
font-weight: 400;
padding: 0 10px;
background-color: transparent;
color: inherit;
border: 0;
height: 26px;
box-shadow: none
}
.boutique-newsletter.style-11 .submit-newsletter:hover {
background-color: transparent;
color: #c99947
}
.boutique-newsletter.style-11 .submit-newsletter::before {
display: block;
font-family: Flaticon, sans-serif;
content: '\f105';
font-size: 16px;
line-height: 30px
}
.boutique-newsletter.style-12 .text-field {
width: 100%
}
.boutique-newsletter.style-12 .input-text {
width: 100%;
height: 44px;
padding: 10px 44px 10px 20px;
box-shadow: none
}
.boutique-newsletter.style-12 .input-focus {
border: 1px solid #e5e5e5
}
.boutique-newsletter.style-12 .submit-newsletter {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 44px;
font-size: 0;
line-height: 0;
color: #888;
font-weight: 400;
padding: 0;
background-color: transparent;
border: 0;
height: 44px;
box-shadow: none
}
.boutique-newsletter.style-12 .submit-newsletter:hover {
background-color: transparent
}
.boutique-newsletter.style-12 .submit-newsletter::before {
display: block;
font-family: "Font Awesome 5 Free";
content: '\f105';
font-size: 16px;
line-height: 44px;
font-weight: 600
}
@media(min-width: 768px) {
.boutique-newsletter.style-13 .newsletter-inner {
display: table;
width: 100%;
max-width: 800px;
margin: auto
}
.boutique-newsletter.style-13 .newsletter-inner>* {
display: table-cell;
vertical-align: middle;
width: 50%;
padding: 5px 15px
}
}
.boutique-newsletter.style-14 .text-field,
.boutique-newsletter.style-15 .text-field {
display: block;
position: relative;
margin-bottom: 10px
}
.boutique-newsletter.style-14 .input-text,
.boutique-newsletter.style-15 .input-text {
width: 100%;
box-shadow: none;
font-size: 13px;
padding-top: 10px;
padding-bottom: 10px;
height: 44px
}
.boutique-newsletter.style-14 .input-focus,
.boutique-newsletter.style-15 .input-focus {
border: 2px solid #ddd
}
.boutique-newsletter.style-14 .radio-field {
margin: 10px 0
}
.boutique-newsletter.style-14 .radio-field:not(:last-child) {
margin-right: 13px
}
.boutique-newsletter.style-14 .submit-newsletter {
width: 100%;
border: 3px solid;
font-size: 14px;
line-height: 24px;
margin: 18px 0
}
.boutique-newsletter.style-14 .submit-newsletter:not(:hover):not(:focus) {
background-color: #fff
}
.boutique-newsletter.style-14 .submit-newsletter::after {
display: inline-block;
vertical-align: top;
font-family: "Font Awesome 5 Free";
content: '\f0da';
margin-left: 5px
}
.boutique-newsletter.style-15 .block-title {
padding-bottom: 8px
}
.boutique-newsletter.style-15 .block-title .title {
font-size: 16px;
line-height: 30px;
margin-bottom: 15px
}
.boutique-newsletter.style-15 .block-title .subtitle {
margin-bottom: 15px
}
.boutique-newsletter.style-15 .submit-newsletter {
width: 100%;
font-size: 14px;
padding: 10px 20px
}
.boutique-newsletter.style-15.light,
.boutique-newsletter.style-16.light,
.boutique-newsletter.style-17.light {
color: #aaa
}
.boutique-newsletter.style-15.light .block-title .title,
.boutique-newsletter.style-16.light .block-title .title,
.boutique-newsletter.style-17.light .block-title .title {
color: #fff
}
.boutique-newsletter.style-15.light .input-focus {
border-color: #666
}
.boutique-newsletter.style-15.light .submit-newsletter:not(:hover):not(:focus) {
background-color: #fff
}
.boutique-newsletter.style-16 {
text-align: center
}
.boutique-newsletter.style-16 .block-title {
padding-bottom: 50px
}
.boutique-newsletter.style-16 .block-title .title {
font-size: 30px;
line-height: 36px;
margin-bottom: 12px
}
.boutique-newsletter.style-16 .block-title .subtitle {
font-size: 14px;
line-height: 24px;
margin-bottom: 15px
}
.boutique-newsletter.style-16 .mc4wp-form-fields {
position: relative;
max-width: 370px;
margin: auto
}
.boutique-newsletter.style-16 .text-field,
.boutique-newsletter.style-17 .text-field {
width: 100%;
position: relative
}
.boutique-newsletter.style-16 .input-text,
.boutique-newsletter.style-17 .input-text {
width: 100%;
box-shadow: none;
padding-left: 0;
padding-right: 24px
}
.boutique-newsletter.style-16 .input-focus,
.boutique-newsletter.style-17 .input-focus {
border-bottom: 2px solid
}
.boutique-newsletter.style-16 .submit-newsletter,
.boutique-newsletter.style-17 .submit-newsletter {
position: absolute;
top: 0;
bottom: 0;
right: 0;
width: 24px;
text-align: right;
background-color: transparent;
padding: 0;
font-size: 0;
line-height: 0;
font-weight: 400
}
.boutique-newsletter.style-16 .submit-newsletter::before,
.boutique-newsletter.style-17 .submit-newsletter::before {
font-family: "Font Awesome 5 Free";
content: "\f061";
font-size: 16px;
line-height: 40px
}
.boutique-newsletter.style-16.light .input-focus,
.boutique-newsletter.style-17.light .input-focus {
border-color: #fff
}
.boutique-newsletter.style-16.light .submit-newsletter,
.boutique-newsletter.style-17.light .submit-newsletter {
color: #fff
}
@media(max-width: 1199px) {
.boutique-newsletter.style-16 .block-title {
padding-bottom: 42px
}
}
@media(max-width: 991px) {
.boutique-newsletter.style-16 .block-title {
padding-bottom: 34px
}
}
@media(max-width: 767px) {
.boutique-newsletter.style-16 .block-title {
padding-bottom: 26px
}
}
.boutique-newsletter.style-17 .block-title .title {
font-size: 16px;
line-height: 30px;
margin-bottom: 15px
}
.boutique-newsletter.style-17 .mc4wp-form-fields {
position: relative;
max-width: 370px
}
.boutique-newsletter .input-text:focus~.input-focus {
border-color: #c99947
}
.boutique-newsletter button:hover {
color: #c99947
}
div.mage-error[generated] {
height: 0;
text-align: center
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
background: transparent;
width: auto
}
.mfp-popup-video .mfp-iframe-holder .mfp-content {
width: 100%
}
.mfp-popup-video .mfp-iframe-scaler iframe {
opacity: 1
}
.boutique-custommenu ul {
list-style: none;
padding: 0;
margin-bottom: 0
}
.boutique-custommenu .owl-carousel>.menu-item {
float: left
}
.boutique-custommenu ul li>a {
display: block;
position: relative
}
.boutique-custommenu ul li>a .icon img {
display: inline-block !important;
vertical-align: bottom;
width: auto
}
.boutique-custommenu.light {
color: #aaa
}
.boutique-custommenu.light .widget .widget-title,
.boutique-custommenu.light .widget .widgettitle {
color: #fff
}
.boutique-custommenu.style-02 ul li,
.boutique-custommenu.style-06 ul li {
border: 0;
min-height: inherit;
padding: 3px 0
}
.boutique-custommenu.style-02 .menu>li:first-child,
.boutique-custommenu.style-06 .menu>li:first-child {
min-height: inherit
}
.boutique-custommenu.style-02 ul ul,
.boutique-custommenu.style-06 ul ul {
margin: 3px 0 -3px
}
.boutique-custommenu.style-03,
.boutique-custommenu.style-08 {
font-size: 0;
line-height: 0;
text-align: center;
padding: 60px 0 30px
}
.boutique-custommenu.style-03 .menu,
.boutique-custommenu.style-03 .boutique-custom-heading.style-01,
.boutique-custommenu.style-08 .menu,
.boutique-custommenu.style-08 .boutique-custom-heading.style-01 {
display: inline-block;
vertical-align: middle;
font-size: 14px;
line-height: 24px;
padding: 0 30px;
margin-bottom: 30px
}
.boutique-custommenu.style-03 .boutique-custom-heading.style-01,
.boutique-custommenu.style-08 .boutique-custom-heading.style-01 {
width: 38%
}
.boutique-custommenu.style-03 .menu,
.boutique-custommenu.style-08 .menu {
width: 100%
}
.boutique-custommenu.style-03 .boutique-menu-wapper,
.boutique-custommenu.style-08 .boutique-menu-wapper {
display: inline
}
.boutique-custommenu.style-03 .boutique-custom-heading~.menu,
.boutique-custommenu.style-03 .boutique-custom-heading~.boutique-menu-wapper>.menu,
.boutique-custommenu.style-08 .boutique-custom-heading~.menu,
.boutique-custommenu.style-08 .boutique-custom-heading~.boutique-menu-wapper>.menu {
width: 62%
}
.boutique-custommenu.style-03 .menu-item>a,
.boutique-custommenu.style-05 .menu-item>a {
display: inline-block;
vertical-align: top;
width: 133px;
height: 133px;
border: 1px dashed #ccc;
text-align: center;
font-size: 11px;
line-height: 24px;
text-transform: uppercase;
font-weight: 600;
border-radius: 90px;
padding: 28px 15px 34px
}
.boutique-custommenu.style-03 .menu-item>a:hover,
.boutique-custommenu.style-05 .menu-item>a:hover {
border: 1px dashed
}
.boutique-custommenu.style-03 .menu-item>a .icon,
.boutique-custommenu.style-04 .menu-item>a .icon,
.boutique-custommenu.style-05 .menu-item>a .icon,
.boutique-custommenu.style-08 .menu-item>a .icon {
display: block !important;
width: auto;
height: auto;
font-size: 40px;
line-height: 45px;
margin: auto
}
.boutique-custommenu.style-03 .menu-item>a img,
.boutique-custommenu.style-04 .menu-item>a img,
.boutique-custommenu.style-05 .menu-item>a img,
.boutique-custommenu.style-08 .menu-item>a img {
max-width: 101px;
max-height: 45px
}
.boutique-custommenu.style-03 .menu-item>a .label-image,
.boutique-custommenu.style-04 .menu-item>a .label-image,
.boutique-custommenu.style-05 .menu-item>a .label-image,
.boutique-custommenu.style-08 .menu-item>a .label-image {
position: absolute;
top: -10px;
right: -10px
}
.boutique-custommenu.style-03.light,
.boutique-custommenu.style-04.light,
.boutique-custommenu.style-05.light {
color: #eee
}
.boutique-custommenu.style-03.light .boutique-custom-heading.style-01 .title,
.boutique-custommenu.style-04.light .custommenu-inner>.title,
.boutique-custommenu.style-05.light .custommenu-inner>.title {
color: #fff
}
.boutique-custommenu.style-03.light .boutique-custom-heading.style-01 .subtitle,
.boutique-custommenu.style-04.light .custommenu-inner>.subtitle,
.boutique-custommenu.style-05.light .custommenu-inner>.subtitle {
color: #aaa
}
.boutique-custommenu.style-03.light .menu-item>a:not(:hover),
.boutique-custommenu.style-04.light .menu-item>a:not(:hover),
.boutique-custommenu.style-05.light .menu-item>a:not(:hover) {
border-color: #444
}
.boutique-custommenu.light .owl-nav button.owl-next,
.boutique-custommenu.light .owl-nav button.owl-prev,
.boutique-custommenu.light button.owl-dot {
border: 1px solid #444;
width: 10px;
height: 10px;
margin: 0 4px;
transition: all .3s ease
}
.boutique-custommenu.light .owl-nav button.owl-next:hover,
.boutique-custommenu.light .owl-nav button.owl-prev:hover,
.boutique-custommenu.light button.owl-dot:hover,
.boutique-custommenu.light .owl-nav button.owl-next.active,
.boutique-custommenu.light .owl-nav button.owl-prev.active,
.boutique-custommenu.light button.owl-dot.active {
border: 0;
background-color: #eee
}
@media(max-width: 1199px) {
.boutique-custommenu.style-03 .boutique-custom-heading.style-01 {
width: 42%
}
.boutique-custommenu.style-03 .boutique-custom-heading~.menu,
.boutique-custommenu.style-03 .boutique-custom-heading~.boutique-menu-wapper>.menu {
width: 58%
}
}
@media(max-width: 991px) {
.boutique-custommenu.style-03 .boutique-custom-heading.style-01,
.boutique-custommenu.style-03 .boutique-custom-heading~.menu,
.boutique-custommenu.style-03 .boutique-custom-heading~.boutique-menu-wapper>.menu {
width: 50%
}
}
@media(max-width: 767px) {
.boutique-custommenu.style-03 .boutique-custom-heading.style-01,
.boutique-custommenu.style-03 .boutique-custom-heading~.menu,
.boutique-custommenu.style-03 .boutique-custom-heading~.boutique-menu-wapper>.menu {
width: 100%
}
.boutique-custommenu.style-03 .menu,
.boutique-custommenu.style-03 .boutique-custom-heading.style-01 {
padding: 0 10px
}
}
.boutique-custommenu.style-04,
.boutique-custommenu.style-05 {
text-align: center;
padding: 31px 25px 20px
}
.boutique-custommenu.style-04 .custommenu-inner>.title,
.boutique-custommenu.style-05 .custommenu-inner>.title {
font-size: 24px;
line-height: 36px;
position: relative;
margin-bottom: 13px
}
.boutique-custommenu.style-04 .custommenu-inner>.title::after,
.boutique-custommenu.style-05 .custommenu-inner>.title::after {
display: block;
content: '';
width: 50px;
height: 2px;
margin: 1px auto 0;
background-color: #c99947
}
.boutique-custommenu.style-04 .custommenu-inner>.subtitle,
.boutique-custommenu.style-05 .custommenu-inner>.subtitle {
font-family: playfair display, sans-serif;
font-style: italic;
font-size: 14px;
line-height: 24px;
margin-bottom: 10px
}
.boutique-custommenu.style-04 .menu-item {
padding: 0 10px
}
.boutique-custommenu.style-04 .menu-item>a {
font-size: 11px;
line-height: 24px;
text-transform: uppercase;
font-weight: 600;
border-bottom: 1px dashed #ddd;
margin-bottom: -1px;
padding: 22px 0
}
.boutique-custommenu.style-04 .menu-item>a:hover {
border-bottom: 1px dashed
}
.boutique-custommenu.style-05 .custommenu-inner .menu {
margin-top: 45px
}
.boutique-custommenu.posi-absolute,
.boutique-custommenu.posi-fixed {
position: fixed;
top: 0;
left: 0;
right: auto;
bottom: 0;
width: 345px;
max-width: 100%;
padding: 70px 0 80px;
z-index: 100000;
background-color: #fff;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.boutique-custommenu.posi-absolute {
position: absolute;
background-color: rgba(255, 255, 255, .8);
z-index: 3
}
.boutique-custommenu.posi-absolute.posi-end,
.boutique-custommenu.posi-fixed.posi-end {
left: auto;
right: 0
}
.boutique-custommenu.posi-absolute.light {
background-color: rgba(0, 0, 0, .8)
}
.boutique-custommenu.posi-fixed.light {
background-color: #000
}
.boutique-custommenu.posi-absolute .custommenu-inner,
.boutique-custommenu.posi-fixed .custommenu-inner {
padding: 0 50px
}
.boutique-custommenu.posi-absolute .custommenu-close,
.boutique-custommenu.posi-fixed .custommenu-close {
position: absolute;
top: 0;
left: auto;
right: 0;
font-size: 0;
line-height: 0;
width: 30px;
height: 30px;
padding: 0;
border: 0;
text-align: center;
background-color: #e5e5e5;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.boutique-custommenu.posi-absolute.posi-end .custommenu-close,
.boutique-custommenu.posi-fixed.posi-end .custommenu-close {
left: 0;
right: auto
}
.boutique-custommenu.posi-absolute .custommenu-close:hover,
.boutique-custommenu.posi-absolute.light .custommenu-close:not(:hover),
.boutique-custommenu.posi-fixed .custommenu-close:hover,
.boutique-custommenu.posi-fixed.light .custommenu-close:not(:hover) {
color: #fff
}
.boutique-custommenu.posi-absolute .custommenu-close::after,
.boutique-custommenu.posi-absolute .custommenu-close::before,
.boutique-custommenu.posi-fixed .custommenu-close::after,
.boutique-custommenu.posi-fixed .custommenu-close::before {
position: absolute;
content: '';
top: 15px;
right: 15px;
width: 6px;
height: 6px;
border-top: 1px solid;
border-right: 1px solid;
-webkit-transform-origin: right top;
-moz-transform-origin: right top;
-ms-transform-origin: right top;
-o-transform-origin: right top;
transform-origin: right top;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: transform .3s ease;
-moz-transition: transform .3s ease;
-o-transition: transform .3s ease;
transition: transform .3s ease
}
.boutique-custommenu.posi-absolute .custommenu-close::after,
.boutique-custommenu.posi-fixed .custommenu-close::after {
right: 16px;
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
-ms-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
transform: rotate(-135deg)
}
@media(min-width: 1200px) {
.boutique-custommenu.posi-fixed:not(.open) {
z-index: 100001
}
.boutique-custommenu.posi-absolute.posi-end.open,
.boutique-custommenu.posi-fixed.posi-end.open {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.boutique-custommenu.posi-absolute.posi-end.open .custommenu-close,
.boutique-custommenu.posi-fixed.posi-end.open .custommenu-close {
left: -30px
}
.boutique-custommenu.posi-absolute.posi-end.open .custommenu-close::before,
.boutique-custommenu.posi-fixed.posi-end.open .custommenu-close::before {
right: 20px;
-webkit-transform: rotate(45deg) scale(-1);
-moz-transform: rotate(45deg) scale(-1);
-ms-transform: rotate(45deg) scale(-1);
-o-transform: rotate(45deg) scale(-1);
transform: rotate(45deg) scale(-1)
}
.boutique-custommenu.posi-absolute.posi-start.open,
.boutique-custommenu.posi-fixed.posi-start.open {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.boutique-custommenu.posi-absolute.posi-start.open .custommenu-close,
.boutique-custommenu.posi-fixed.posi-start.open .custommenu-close {
right: -30px
}
.boutique-custommenu.posi-absolute.posi-start.open .custommenu-close::after,
.boutique-custommenu.posi-fixed.posi-start.open .custommenu-close::after {
right: 10px;
-webkit-transform: rotate(-135deg) scale(-1);
-moz-transform: rotate(-135deg) scale(-1);
-ms-transform: rotate(-135deg) scale(-1);
-o-transform: rotate(-135deg) scale(-1);
transform: rotate(-135deg) scale(-1)
}
.boutique-custommenu.posi-absolute .header-control>:nth-child(2)>a,
.boutique-custommenu.posi-fixed .header-control>:nth-child(2)>a {
padding-left: 0
}
}
@media(max-width: 1499px) {
.boutique-custommenu.posi-absolute,
.boutique-custommenu.posi-fixed {
width: 320px;
padding: 40px 0 50px
}
.boutique-custommenu.posi-absolute .custommenu-inner,
.boutique-custommenu.posi-fixed .custommenu-inner {
padding: 0 40px
}
.boutique-custommenu.style-05 .custommenu-inner .menu {
margin-top: 35px
}
}
@media(max-width: 1199px) {
.boutique-custommenu.posi-absolute .custommenu-inner,
.boutique-custommenu.posi-fixed .custommenu-inner {
max-height: 100%;
overflow-x: hidden;
-webkit-overflow-scrolling: touch
}
.boutique-custommenu.posi-fixed.open {
z-index: 100001
}
.boutique-custommenu.posi-absolute.posi-end:not(.open),
.boutique-custommenu.posi-fixed.posi-end:not(.open) {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.boutique-custommenu.posi-absolute.posi-end:not(.open) .custommenu-close,
.boutique-custommenu.posi-fixed.posi-end:not(.open) .custommenu-close {
left: -30px
}
.boutique-custommenu.posi-absolute.posi-end:not(.open) .custommenu-close::before,
.boutique-custommenu.posi-fixed.posi-end:not(.open) .custommenu-close::before {
right: 20px;
-webkit-transform: rotate(45deg) scale(-1);
-moz-transform: rotate(45deg) scale(-1);
-ms-transform: rotate(45deg) scale(-1);
-o-transform: rotate(45deg) scale(-1);
transform: rotate(45deg) scale(-1)
}
.boutique-custommenu.posi-absolute.posi-start:not(.open),
.boutique-custommenu.posi-fixed.posi-start:not(.open) {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.boutique-custommenu.posi-absolute.posi-start:not(.open) .custommenu-close,
.boutique-custommenu.posi-fixed.posi-start:not(.open) .custommenu-close {
right: -30px
}
.boutique-custommenu.posi-absolute.posi-start:not(.open) .custommenu-close::after,
.boutique-custommenu.posi-fixed.posi-start:not(.open) .custommenu-close::after {
right: 10px;
-webkit-transform: rotate(-135deg) scale(-1);
-moz-transform: rotate(-135deg) scale(-1);
-ms-transform: rotate(-135deg) scale(-1);
-o-transform: rotate(-135deg) scale(-1);
transform: rotate(-135deg) scale(-1)
}
}
.boutique-custommenu.posi-absolute {
width: 260px;
padding: 35px 0 30px;
z-index: 8
}
.boutique-custommenu.posi-absolute .custommenu-inner {
padding: 0 30px
}
.boutique-custommenu.style-06 ul li>a::before {
content: '';
display: inline-block;
vertical-align: middle;
width: 4px;
height: 4px;
border: 2px solid;
border-radius: 50%;
margin: 0 12px 2px 0
}
.boutique-custommenu.style-07 ul li,
.boutique-custommenu.style-10 ul li,
.boutique-custommenu.style-11 ul li {
padding: 0;
min-height: inherit;
border: 0
}
.boutique-custommenu.style-07 ul ul,
.boutique-custommenu.style-10 ul ul,
.boutique-custommenu.style-11 ul ul {
margin: 0;
padding: 0
}
.boutique-custommenu.style-07 .menu>li:first-child,
.boutique-custommenu.style-10 .menu>li:first-child,
.boutique-custommenu.style-11 .menu>li:first-child {
min-height: inherit
}
.boutique-custommenu.style-07>.widget_nav_menu>.menu,
.boutique-custommenu.style-07>.widget_nav_menu>.boutique-menu-wapper>.menu,
.boutique-custommenu.style-10>.widget_nav_menu>.menu,
.boutique-custommenu.style-10>.widget_nav_menu>.boutique-menu-wapper>.menu,
.boutique-custommenu.style-11>.widget_nav_menu>.menu,
.boutique-custommenu.style-11>.widget_nav_menu>.boutique-menu-wapper>.menu {
margin: 0 -7px
}
.boutique-custommenu.style-07>.widget_nav_menu>.menu>li,
.boutique-custommenu.style-07>.widget_nav_menu>.boutique-menu-wapper>.menu>li,
.boutique-custommenu.style-10>.widget_nav_menu>.menu>li,
.boutique-custommenu.style-10>.widget_nav_menu>.boutique-menu-wapper>.menu>li,
.boutique-custommenu.style-11>.widget_nav_menu>.menu>li,
.boutique-custommenu.style-11>.widget_nav_menu>.boutique-menu-wapper>.menu>li {
display: inline-block;
vertical-align: top;
margin: 0 7px;
position: relative;
border: 0
}
.boutique-custommenu.style-07>.widget_nav_menu>.menu>li>a,
.boutique-custommenu.style-07>.widget_nav_menu>.boutique-menu-wapper>.menu>li>a,
.boutique-custommenu.style-10>.widget_nav_menu>.menu>li>a,
.boutique-custommenu.style-10>.widget_nav_menu>.boutique-menu-wapper>.menu>li>a,
.boutique-custommenu.style-11>.widget_nav_menu>.menu>li>a,
.boutique-custommenu.style-11>.widget_nav_menu>.boutique-menu-wapper>.menu>li>a {
padding: 3px 0
}
.boutique-custommenu.style-07>.widget_nav_menu>.menu>li:not(:last-child)::after,
.boutique-custommenu.style-07>.widget_nav_menu>.boutique-menu-wapper>.menu>li:not(:last-child)::after {
content: '';
position: absolute;
top: 9px;
bottom: 0;
right: -9px;
border-right: 1px solid;
height: 12px
}
.boutique-custommenu.style-08 {
padding: 45px 0 10px
}
.boutique-custommenu.style-08 .menu {
padding: 0
}
.boutique-custommenu.style-08 .menu-item {
font-size: 12px;
line-height: 24px;
text-transform: uppercase;
letter-spacing: .15em;
font-weight: 600;
position: relative
}
.boutique-custommenu.style-08 .menu-item>a .icon {
margin-bottom: 15px
}
.boutique-custommenu.style-08 .menu-item::after {
position: absolute;
content: '';
top: 5px;
bottom: 5px;
right: -1px;
border-right: 1px solid #e5e5e5
}
.boutique-custommenu.style-09 {
text-align: center
}
.boutique-custommenu.style-09 .menu-item>a {
display: inline-block;
vertical-align: top;
max-width: 100%;
position: relative;
overflow: hidden
}
.boutique-custommenu.style-09 .menu-item>a::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
z-index: 1
}
.boutique-custommenu.style-09 .menu-item>a:hover::before {
background-color: rgba(255, 255, 255, .5)
}
.boutique-custommenu.style-09.light .menu-item>a:hover::before {
background-color: rgba(0, 0, 0, .5)
}
.boutique-custommenu.style-09 .menu-item>a .label-image {
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
.boutique-custommenu.style-09 .menu-item>a:hover .label-image {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1)
}
.boutique-custommenu.style-09.light .menu-item>a .text-title {
color: #fff
}
.boutique-custommenu.style-09 .menu-item>a .text-title {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center;
font-size: 18px;
line-height: 30px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .15em;
z-index: 1
}
.boutique-custommenu.style-09 .menu-item>a .icon {
display: block;
letter-spacing: 0;
margin: 0 auto 20px;
font-size: 38px;
line-height: 42px;
width: 66px;
height: 66px;
border: 2px solid;
border-radius: 50%;
position: relative
}
.boutique-custommenu.style-09 .menu-item>a .icon img,
.boutique-custommenu.style-09 .menu-item>a .icon::before {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center;
margin: auto
}
.boutique-custommenu.style-09 .menu-item>a .icon img {
max-height: 42px
}
@media(min-width: 480px) {
.boutique-custommenu.style-10>.widget_nav_menu>.menu,
.boutique-custommenu.style-10>.widget_nav_menu>.boutique-menu-wapper>.menu,
.boutique-custommenu.style-11>.widget_nav_menu>.menu,
.boutique-custommenu.style-11>.widget_nav_menu>.boutique-menu-wapper>.menu {
margin: 0 -15px
}
.boutique-custommenu.style-10>.widget_nav_menu>.menu>li,
.boutique-custommenu.style-10>.widget_nav_menu>.boutique-menu-wapper>.menu>li,
.boutique-custommenu.style-11>.widget_nav_menu>.menu>li,
.boutique-custommenu.style-11>.widget_nav_menu>.boutique-menu-wapper>.menu>li {
margin: 0 15px
}
}
.boutique-custommenu.style-11>.widget_nav_menu>.menu>li>a,
.boutique-custommenu.style-11>.widget_nav_menu>.boutique-menu-wapper>.menu>li>a {
font-weight: 600;
text-transform: uppercase
}
.boutique-custommenu.style-11.light>.widget_nav_menu>.menu>li:not(.current-menu-parent):not(.current-menu-item):not(.current_page_item)>a:not(:hover),
.boutique-custommenu.style-11.light>.widget_nav_menu>.boutique-menu-wapper>.menu>li:not(.current-menu-parent):not(.current-menu-item):not(.current_page_item)>a:not(:hover) {
color: #fff
}
.boutique-custommenu.style-12 {
font-size: 16px;
line-height: 24px;
font-weight: 500
}
.boutique-custommenu.style-12 .widget .widget-title,
.boutique-custommenu.style-12 .widget .widgettitle {
font-size: 16px;
line-height: 30px;
padding: 0
}
.boutique-custommenu.style-12 .widget_nav_menu ul li {
border-top: 0;
min-height: inherit
}
.boutique-custommenu.style-12 .widget_nav_menu ul li:first-child {
min-height: inherit
}
.boutique-products::after,
.boutique-products::before {
display: table;
content: '';
clear: both
}
.boutique-products .boutique-custom-heading.style-01 {
margin-bottom: 43px
}
.boutique-products .button-products {
text-align: center;
border: 1px solid #e5e5e5;
padding: 20px 15px
}
.boutique-products .button-products .button {
background-color: transparent;
font-size: 12px;
line-height: 24px;
padding: 3px 0;
text-decoration: underline
}
.boutique-products .button-products .button:not(:hover) {
color: inherit
}
.boutique-products.has-banner {
border: 1px solid #e5e5e5
}
.boutique-products.banner-after .banner-product {
float: right
}
.boutique-products .banner-product {
display: inline-block;
vertical-align: top;
float: left;
width: 270px;
position: relative;
background-color: #000;
overflow: hidden;
margin: -1px 0 -1px -1px
}
.boutique-products .banner-product img {
opacity: .5;
width: 100%;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
.boutique-products .banner-product:hover img {
opacity: .3;
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1)
}
.boutique-products .banner-product .head {
position: absolute;
top: 0;
left: 0;
right: 0;
padding: 40px 30px
}
.boutique-products .banner-product .title {
font-size: 21px;
line-height: 30px;
color: #eee;
margin-bottom: 0
}
.boutique-products .banner-product .subtitle {
font-family: playfair display, sans-serif;
font-style: italic;
font-size: 14px;
line-height: 24px;
color: #ddd
}
.boutique-products .banner-product .foot {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 30px
}
.boutique-products .banner-product .link {
display: inline-block;
vertical-align: top;
font-size: 12px;
line-height: 24px;
font-weight: 600;
text-transform: uppercase;
position: relative;
padding: 3px 0;
text-decoration: underline
}
.boutique-products .banner-product .link:not(:hover) {
color: #eee
}
.boutique-products .banner-product .link::after {
position: absolute;
content: '';
bottom: 8px;
left: 0;
right: 0
}
.boutique-products .banner-product~.products-container {
display: inline-block;
vertical-align: top;
width: calc(100% - 268px);
padding: 15px 30px 5px;
margin: -1px -1px -1px 0
}
@media(max-width: 1199px) {
.boutique-products .banner-product {
width: 240px
}
.boutique-products .banner-product~.products-container {
width: calc(100% - 238px)
}
}
@media(max-width: 767px) {
.boutique-products .banner-product {
width: calc(100% + 2px);
margin: -1px -1px 0
}
.boutique-products .banner-product~.products-container {
width: calc(100% + 2px);
padding: 25px 25px 30px;
margin: 0 -1px -1px
}
}
@media(max-width: 479px) {
.boutique-products .banner-product~.products-container {
padding: 15px 15px 25px
}
}
.boutique-tab {
position: relative
}
.boutique-tab .tabs-head::after,
.boutique-tab .tabs-head::before {
display: table;
content: '';
clear: both
}
.boutique-tab .tab-panel {
opacity: 0;
visibility: hidden;
height: 0;
overflow: hidden
}
.boutique-tab .tab-panel.active {
opacity: 1;
visibility: visible;
height: auto;
overflow: visible
}
.boutique-tab .tabs {
list-style: none;
padding: 0;
margin-bottom: 0;
font-size: 0;
line-height: 0
}
.boutique-tab .tabs li {
display: inline-block;
vertical-align: middle;
font-size: 16px;
line-height: 30px;
font-weight: 600;
max-width: 100%;
color: #222;
font-family: Montserrat, sans-serif
}
.boutique-tab .tabs li a {
display: block;
position: relative
}
.boutique-tab.style-01 .tabs {
text-align: center;
margin: 0 -15px 30px;
padding-bottom: 10px
}
.boutique-tab.style-01 .tabs li {
margin: 0 18px
}
.boutique-tab.style-01 .tabs li a {
padding-bottom: 8px;
position: relative
}
.boutique-tab.style-01 .tabs li a::before {
position: absolute;
content: '';
bottom: 0;
left: 20px;
right: 20px;
width: 0;
border-bottom: 2px solid;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.boutique-tab.style-01 .tabs li.active a::before {
width: calc(100% - 40px);
border-color: #c99947
}
@media(max-width: 767px) {
.boutique-tab.style-01 .tabs,
.boutique-tab.style-03 .tabs {
white-space: nowrap;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
position: relative;
z-index: 1
}
}
.boutique-tab.style-02 .tabs-head {
margin-bottom: 60px
}
.boutique-tab.style-02 .tabs {
text-align: center;
background-position: center center;
background-size: contain;
background-repeat: no-repeat;
white-space: nowrap;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
padding: 10px 0;
position: relative;
z-index: 1
}
.boutique-tab.style-02 .tabs li {
white-space: normal;
line-height: 36px
}
.boutique-tab.style-02 .tabs li.active {
font-size: 24px
}
.boutique-tab.style-02 .tabs li:not(.active) {
color: #666
}
.boutique-tab.style-02 .tabs li:not(:last-child)::after {
display: inline-block;
vertical-align: middle;
content: '';
width: 22px;
border-top: 1px solid #c99947;
margin: 0 12px
}
.boutique-tab.style-02 .tabs li a {
display: inline-block;
vertical-align: top
}
.boutique-tab.style-03 .tabs-head {
border-bottom: 1px solid #ddd;
margin-bottom: 30px
}
.boutique-tab.style-03 .tabs-head .boutique-custom-heading.style-01 {
display: inline-block;
vertical-align: top;
text-align: inherit;
margin: 0 30px 0 0
}
.boutique-tab.style-03 .tabs {
display: inline-block;
vertical-align: top;
float: right;
padding: 6px 0;
margin: 0 -12px
}
.boutique-tab.style-03 .tabs li {
font-size: 14px;
line-height: 24px;
font-weight: inherit;
padding: 3px 12px;
position: relative;
margin: 0
}
.boutique-tab.style-03 .tabs li.active a {
color: #c99947
}
.boutique-tab.style-03 .tabs li:not(:last-child)::after {
position: absolute;
content: '';
top: 0;
bottom: 0;
right: -1px;
height: 14px;
margin: auto;
border-right: 1px solid
}
.boutique-tab.style-04 .tabs {
text-align: center;
white-space: nowrap;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
margin-bottom: 20px;
position: relative;
z-index: 1
}
.boutique-tab.style-04 .tabs li {
font-size: 24px;
line-height: 36px
}
.boutique-tab.style-04 .tabs li:not(:last-child)::after {
display: inline-block;
vertical-align: top;
content: '';
width: 7px;
height: 7px;
border-radius: 50%;
background-color: #999;
margin: 14px 15px 15px
}
.boutique-tab.style-04 .tabs li:not(.active) {
color: #999
}
.boutique-tab.style-04 .tabs li a {
display: inline-block;
vertical-align: top
}
.boutique-tab.style-05 .tabs-head {
margin-bottom: 60px
}
.boutique-tab.style-05 .tabs {
text-align: center;
margin: 0 -15px
}
.boutique-tab.style-05 .tabs li {
font-size: 24px;
line-height: 34px;
letter-spacing: .05em;
font-weight: 600;
margin: 0 20px
}
.boutique-tab.style-05 .tabs li:not(.active):not(:hover) a {
color: #aaa
}
.boutique-tab.style-05 .tabs li a::before {
position: absolute;
left: 0;
right: 0;
bottom: 0;
content: '';
width: 100%;
border-top: 3px solid #4e4e4e;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.boutique-tab.style-05 .tabs li:not(.active) a::before {
width: 0
}
.boutique-banner {
text-align: center
}
.boutique-banner .button {
position: relative;
display: inline-block;
vertical-align: top;
font-family: Montserrat, sans-serif;
font-size: 12px;
line-height: 24px;
font-weight: 600;
text-transform: uppercase;
padding: 8px 30px;
border: 0;
background-color: #c99947;
color: #fff;
text-align: center;
cursor: pointer;
border-radius: 0;
-webkit-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
-moz-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
-o-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease
}
.boutique-banner .banner-inner {
display: inline-block;
vertical-align: top;
max-width: 100%;
position: relative;
text-align: center
}
.boutique-banner .banner-inner>.thumb-link {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 3
}
.boutique-banner .thumb {
position: relative;
overflow: hidden;
z-index: auto
}
.boutique-banner .thumb~.content {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center;
background-color: transparent;
z-index: auto
}
.boutique-banner .content {
padding: 30px
}
.boutique-banner .content>* {
position: relative;
z-index: 3
}
@media(max-width: 1199px) and (min-width:992px) {
.boutique-banner .thumb~.content {
padding: 20px 15px
}
}
@media(max-width: 479px) {
.boutique-banner .thumb~.content {
padding: 20px 15px
}
}
.boutique-banner.style-01 .thumb~.content {
padding-top: 100px
}
.boutique-banner.style-01 .title {
font-size: 36px;
line-height: 43px;
font-weight: 700;
color: #fff;
margin-bottom: 3px
}
.boutique-banner.style-01 .subtitle {
font-family: playfair display, sans-serif;
font-style: italic;
color: #fff;
font-size: 16px;
line-height: 30px;
margin-bottom: 40px
}
.boutique-banner.style-01 .button {
padding: 11px 24px
}
.boutique-banner.style-01 .button:hover {
opacity: .7
}
@media(max-width: 479px) {
.boutique-banner.style-01 .title {
font-size: 32px;
line-height: 38px
}
.boutique-banner.style-01 .thumb~.content {
padding-top: 60px
}
.boutique-banner.style-01 .subtitle {
font-size: 14px;
line-height: 26px;
margin-bottom: 30px
}
}
.boutique-banner.style-02 .title {
font-size: 24px;
line-height: 36px;
font-weight: 700;
color: #fff;
margin-bottom: 0
}
.boutique-banner.style-03 .content {
max-width: 300px
}
.boutique-banner.style-03 .subtitle {
font-family: LaCompagnie, sans-serif;
font-size: 48px;
line-height: 30px;
font-style: italic;
margin-bottom: 0
}
.boutique-banner.style-03 .title {
font-size: 24px;
line-height: 26px;
margin-bottom: 0
}
@media(max-width: 1199px) and (min-width:992px) {
.boutique-banner.style-03 .content {
max-width: 250px
}
}
.boutique-banner.style-04 .content {
padding-bottom: 170px
}
.boutique-banner.style-04 .subtitle {
font-family: LaCompagnie, sans-serif;
font-size: 36px;
line-height: 1;
font-style: italic;
letter-spacing: .05em;
margin-bottom: 0
}
.boutique-banner.style-04 .title {
font-size: 22px;
line-height: 26px;
color: #fff;
margin-bottom: 0
}
.boutique-banner.style-04 .content>div {
position: absolute;
bottom: 30px;
left: 0;
right: 0;
padding: 0 30px
}
.boutique-banner.style-04 .button {
background-color: transparent;
padding: 3px 0;
text-decoration: underline
}
.boutique-banner.style-05 .banner-logo {
margin-bottom: 5px
}
.boutique-banner.style-05 .banner-logo img {
display: inline-block !important;
vertical-align: top;
width: auto
}
.boutique-banner.style-05 .subtitle {
font-family: LaCompagnie, sans-serif;
font-size: 48px;
line-height: 36px;
margin-bottom: 0;
color: #c99947
}
.boutique-banner.style-05 .title {
font-size: 24px;
line-height: 30px;
color: #fff;
margin-bottom: 125px
}
.boutique-banner.style-05 .button:hover {
color: #c99947
}
.boutique-banner.style-05 .button,
.boutique-banner.style-06 .button,
.boutique-banner.style-07 .button {
font-size: 14px;
line-height: 24px;
padding: 3px 0;
background-color: transparent;
text-decoration: underline
}
.boutique-banner.style-06 .background-zoom .thumb::after,
.boutique-banner.style-06 .plus-zoom .thumb::after,
.boutique-banner.style-06 .rotate-left .thumb::after,
.boutique-banner.style-06 .rotate-right .thumb::after {
opacity: .6
}
.boutique-banner.style-06 .thumb::after {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
opacity: .3;
background-color: #222
}
.boutique-banner.style-06 .subtitle {
font-family: LaCompagnie, sans-serif;
font-size: 60px;
line-height: 46px;
margin-bottom: 6px;
color: #c99947
}
.boutique-banner.style-06 .title {
font-size: 24px;
line-height: 30px;
color: #fff;
margin-bottom: 30px
}
@media(min-width: 1200px) {
.boutique-banner.style-06:not(:hover) .background-zoom .thumb::after,
.boutique-banner.style-06:not(:hover) .plus-zoom .thumb::after,
.boutique-banner.style-06:not(:hover) .rotate-left .thumb::after,
.boutique-banner.style-06:not(:hover) .rotate-right .thumb::after,
.boutique-banner.style-06:not(:hover) .thumb::after {
opacity: 0
}
.boutique-banner.style-06:not(:hover) .thumb~.content .content-inner {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0)
}
.boutique-banner.style-06 .thumb~.content .content-inner {
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
}
.boutique-banner.style-07 .subtitle {
font-family: LaCompagnie, sans-serif;
font-size: 60px;
line-height: 46px;
font-style: italic;
margin-bottom: 5px;
color: #fff
}
.boutique-banner.style-07 .title {
font-size: 24px;
line-height: 36px;
font-weight: 700;
color: #fff;
margin-bottom: 28px
}
.boutique-banner.style-08,
.boutique-banner.style-08 .banner-inner {
font-family: Montserrat, sans-serif;
text-align: inherit
}
.boutique-banner.style-08::after,
.boutique-banner.style-08::before {
display: table;
content: '';
clear: both
}
.boutique-banner.style-08 .content {
background-color: transparent;
padding: 0
}
.boutique-banner.style-08 .content-inner {
padding: 50px 50px 70px;
overflow: hidden;
border: 3px solid #c99947
}
.boutique-banner.style-08 .block-head {
font-size: 0;
line-height: 0;
margin-bottom: 25px
}
.boutique-banner.style-08 .discount {
display: inline-block;
vertical-align: middle;
width: 92px;
height: 92px;
border-radius: 90px;
color: #fff;
font-family: playfair display, sans-serif;
font-size: 36px;
line-height: 82px;
font-weight: 700;
text-align: center;
position: relative;
font-style: italic;
background-color: #c99947
}
.boutique-banner.style-08 .discount>* {
display: inline-block;
vertical-align: top;
font-weight: 400
}
.boutique-banner.style-08 .discount span:first-child {
font-size: 24px;
line-height: 90px
}
.boutique-banner.style-08 .discount span:last-child {
font-size: 18px;
line-height: 98px
}
.boutique-banner.style-08 .discount::before {
position: absolute;
content: '';
left: calc(50% - 1px);
bottom: calc(100% - 2px);
height: 1e3px;
width: 2px;
background-color: inherit
}
.boutique-banner.style-08 .discount~.block-title {
display: inline-block;
vertical-align: middle;
width: calc(100% - 92px);
padding-left: 25px
}
.boutique-banner.style-08 .block-title::after {
display: block;
content: '';
width: 46px;
height: 2px;
margin: 9px 0;
background-color: #c99947
}
.boutique-banner.style-08 .title {
font-size: 48px;
line-height: 52px;
font-weight: 700;
letter-spacing: .1em;
margin-bottom: 0
}
.boutique-banner.style-08 .subtitle {
font-family: playfair display, sans-serif;
font-size: 30px;
line-height: 32px;
font-weight: 700;
font-style: italic;
margin-bottom: 0;
color: #c99947
}
.boutique-banner.style-08 .desc {
font-size: 13px;
margin-bottom: 30px
}
.boutique-banner.style-08 .button-wrap {
text-align: right
}
.boutique-banner.style-08 .button {
padding: 3px 15px;
font-size: 11px;
float: right
}
.boutique-banner.style-08 .button:not(:hover) {
background-color: #222
}
.boutique-banner.style-08.has-thumb .thumb {
width: 320px;
max-width: 100%
}
@media(min-width: 768px) {
.boutique-banner.style-08.has-thumb .banner-inner {
display: table;
width: 100%
}
.boutique-banner.style-08.has-thumb .banner-inner>* {
display: table-cell;
vertical-align: middle
}
.boutique-banner.style-08.has-thumb.content-left .content-inner {
margin-right: -50px;
padding-right: 100px
}
.boutique-banner.style-08.has-thumb.content-right .content-inner {
margin-left: -50px;
padding-left: 100px
}
.boutique-banner.style-08.has-thumb.content-right .banner-inner {
direction: rtl
}
.boutique-banner.style-08.has-thumb.content-right .banner-inner>* {
direction: ltr
}
}
@media(max-width: 1199px) and (min-width:768px) {
.boutique-banner.style-08.has-thumb.content-left .content-inner {
margin-right: -35px;
padding-right: 70px
}
.boutique-banner.style-08.has-thumb.content-right .content-inner {
margin-left: -35px;
padding-left: 70px
}
}
@media(max-width: 1199px) {
.boutique-banner.style-08 .content-inner {
padding: 35px 35px 50px
}
.boutique-banner.style-08 .block-head {
margin-bottom: 20px
}
.boutique-banner.style-08 .discount {
width: 80px;
height: 80px;
font-size: 32px;
line-height: 72px
}
.boutique-banner.style-08 .discount span:first-child {
font-size: 20px;
line-height: 80px
}
.boutique-banner.style-08 .discount span:last-child {
font-size: 16px;
line-height: 84px
}
.boutique-banner.style-08 .discount~.block-title {
width: calc(100% - 80px);
padding-left: 20px
}
.boutique-banner.style-08 .title {
font-size: 38px;
line-height: 42px;
letter-spacing: .07em
}
.boutique-banner.style-08 .subtitle {
font-size: 24px;
line-height: 26px
}
.boutique-banner.style-08 .desc {
margin-bottom: 25px
}
.boutique-banner.style-08.has-thumb .thumb {
width: 270px
}
}
@media(max-width: 767px) {
.boutique-banner.style-08 .content-inner {
margin-bottom: -35px;
padding-bottom: 80px
}
.boutique-banner.style-08.has-thumb .thumb {
max-width: calc(100% - 60px);
margin: 0 30px
}
.boutique-banner.style-08.has-thumb.content-left .thumb {
float: right
}
.boutique-banner.style-08.has-thumb.content-right .thumb {
float: left
}
}
@media(max-width: 479px) {
.boutique-banner.style-08 .content-inner {
padding: 30px 20px 70px
}
.boutique-banner.style-08 .discount~.block-title {
display: block;
padding: 15px 0 0;
width: auto
}
}
.boutique-banner.style-09 .banner-inner {
display: block;
font-family: Montserrat, sans-serif
}
.boutique-banner.style-09 .content {
background-color: transparent;
padding: 35px 15px;
border: 3px solid #c99947;
font-size: 0;
line-height: 0;
text-align: center;
position: relative;
z-index: 3
}
.boutique-banner.style-09 .title {
font-size: 18px;
line-height: 24px;
margin-bottom: 0
}
.boutique-banner.style-09 .subtitle {
font-family: playfair display, sans-serif;
font-size: 16px;
line-height: 22px;
font-weight: 600;
letter-spacing: .07em;
font-style: italic;
margin-bottom: 0;
color: #c99947
}
.boutique-banner.style-09 .content::after {
display: inline-block;
vertical-align: top;
content: '';
width: 52px;
height: 2px;
margin: 9px 0;
background-color: #c99947
}
.boutique-banner.style-09.has-thumb .content {
margin-bottom: -35px;
padding-bottom: 65px
}
.boutique-banner.style-09 .thumb {
display: inline-block;
vertical-align: top;
max-width: calc(100% - 30px)
}
.boutique-banner.style-09.has-thumb.content-left .banner-inner {
text-align: right
}
.boutique-banner.style-09.has-thumb.content-right .banner-inner {
text-align: left
}
.boutique-banner.style-09.has-thumb.content-left .content {
margin-right: 30px
}
.boutique-banner.style-09.has-thumb.content-right .content {
margin-left: 30px
}
.boutique-banner.style-10 .banner-inner,
.boutique-banner.style-12 .banner-inner {
display: block
}
.boutique-banner.style-10 .content {
background-color: transparent;
padding: 0
}
.boutique-banner.style-10 .content-inner {
position: relative;
padding: 70px 15px
}
.boutique-banner.style-10 .content-inner::before {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
content: '';
border: 5px solid #c99947;
opacity: .5
}
.boutique-banner.style-10 .content-inner>* {
position: relative
}
.boutique-banner.style-10 .subtitle,
.boutique-banner.style-12 .subtitle {
font-family: LaCompagnie, sans-serif;
font-size: 48px;
line-height: 40px;
margin-bottom: 0;
color: #c99947
}
.boutique-banner.style-10 .title,
.boutique-banner.style-12 .title {
font-size: 20px;
line-height: 30px;
margin-bottom: 2px
}
.boutique-banner.style-10 .desc,
.boutique-banner.style-12 .button {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 26px;
font-weight: 700;
font-style: italic;
margin-bottom: 0
}
.boutique-banner.style-10.has-thumb .thumb {
display: inline-block;
vertical-align: top;
width: 280px;
max-width: calc(100% - 40px)
}
.boutique-banner.style-10.has-thumb .content-inner::before {
right: -20px
}
@media(min-width: 768px) {
.boutique-banner.style-10.has-thumb .banner-inner {
display: table;
width: 100%
}
.boutique-banner.style-10.has-thumb .banner-inner>* {
display: table-cell;
vertical-align: middle
}
.boutique-banner.style-10.has-thumb.content-left .content-inner {
margin-right: -50px;
padding-right: 100px
}
.boutique-banner.style-10.has-thumb.content-right .content-inner {
margin-left: -50px;
padding-left: 100px
}
.boutique-banner.style-10.has-thumb.content-right .banner-inner {
direction: rtl
}
.boutique-banner.style-10.has-thumb.content-right .banner-inner>* {
direction: ltr
}
}
@media(max-width: 1199px) {
.boutique-banner.style-10.has-thumb .thumb {
width: 219px
}
.boutique-banner.style-10 .content-inner {
padding: 45px 15px
}
.boutique-banner.style-10 .content-inner::before {
border-width: 4px
}
.boutique-banner.style-10 .title,
.boutique-banner.style-12 .title {
font-size: 18px;
line-height: 28px
}
}
@media(max-width: 991px) {
.boutique-banner.style-10.has-thumb .thumb {
width: 227px
}
}
@media(max-width: 767px) {
.boutique-banner.style-10.has-thumb .content-inner::before {
right: 0;
bottom: -20px
}
}
.boutique-banner.style-11 {
text-align: inherit
}
.boutique-banner.style-11 .banner-inner {
display: block;
text-align: inherit
}
.boutique-banner.style-11 .product-item {
font-size: 0;
line-height: 0
}
.boutique-banner.style-11 .product-item>* {
display: inline-block;
vertical-align: middle;
font-size: 14px;
line-height: 24px
}
.boutique-banner.style-11 .product-thumb {
width: 470px
}
.boutique-banner.style-11 .product-info {
width: calc(100% - 470px);
padding: 30px 0 30px 60px
}
.boutique-banner.style-11 .product-item.right {
direction: rtl
}
.boutique-banner.style-11 .product-item.right>* {
direction: ltr
}
.boutique-banner.style-11 .product-item.right .product-info {
padding: 30px 60px 30px 0
}
.boutique-banner.style-11 .product-title {
font-size: 28px;
line-height: 42px;
text-transform: uppercase;
margin-bottom: 4px
}
.boutique-banner.style-11 .post-excerpt {
font-size: 18px;
line-height: 30px;
font-weight: 300;
margin-bottom: 45px
}
.boutique-banner.style-11 .post-excerpt :last-child {
margin-bottom: 0
}
.boutique-banner.style-11 .price {
font-size: 24px;
line-height: 30px;
margin-bottom: 20px
}
.boutique-banner.style-11 .quantity,
.boutique-banner.style-11 .yith-wcwl-add-to-wishlist,
.boutique-banner.style-11 a.compare {
display: none !important
}
.boutique-banner.style-11 .added_to_cart,
.boutique-banner.style-11 .single_add_to_cart_button {
background-color: transparent;
font-size: 14px;
line-height: 24px;
padding: 3px 0;
text-decoration: underline;
margin-top: 30px
}
.boutique-banner.style-11 .cart:not(.variations_form)::before,
.boutique-banner.style-11 .woocommerce-variation-add-to-cart::before {
display: inline-block;
vertical-align: top;
font-family: Pe-icon-7-stroke, sans-serif;
content: "\e66e";
font-size: 25px;
font-weight: 400;
text-decoration: none;
padding: 2px 7px 4px 0;
margin: 30px 0 0
}
.boutique-banner.style-11 table.variations {
margin-bottom: 28px
}
.boutique-banner.style-11 table.variations td.label {
display: none
}
.boutique-banner.style-11 table.variations td.value {
display: inline-block;
vertical-align: top;
width: 100%
}
.boutique-banner.style-11 table.variations .variable-items-wrapper {
margin: -10px
}
.boutique-banner.style-11 table.variations .variable-item {
margin: 10px !important;
border-radius: 90px !important;
overflow: hidden
}
.boutique-banner.style-11 table.variations .color-variable-item,
.boutique-banner.style-11 table.variations .image-variable-item {
width: 40px !important;
height: 40px !important
}
.boutique-banner.style-11 table.variations .button-variable-item {
min-width: 40px !important;
width: auto !important;
height: auto !important;
padding: 0 5px !important;
line-height: 38px
}
.boutique-banner.style-11 .single_variation_wrap .woocommerce-variation-price {
display: none !important
}
@media(max-width: 1199px) {
.boutique-banner.style-11 .product-info {
padding: 30px 0 30px 30px
}
.boutique-banner.style-11 .product-item.right .product-info {
padding: 30px 30px 30px 0
}
}
@media(max-width: 991px) {
.boutique-banner.style-11 .product-info,
.boutique-banner.style-11 .product-thumb {
width: 50%
}
.boutique-banner.style-11 .product-title {
font-size: 24px;
line-height: 36px
}
.boutique-banner.style-11 .post-excerpt {
font-size: 16px;
line-height: 27px;
margin-bottom: 35px
}
.boutique-banner.style-11 .price {
font-size: 20px;
margin-bottom: 15px
}
.boutique-banner.style-11 table.variations .variable-items-wrapper {
margin: -7px
}
.boutique-banner.style-11 table.variations .variable-item {
margin: 7px !important
}
.boutique-banner.style-11 table.variations .color-variable-item,
.boutique-banner.style-11 table.variations .image-variable-item {
width: 32px !important;
height: 32px !important
}
.boutique-banner.style-11 table.variations .button-variable-item {
min-width: 32px !important;
line-height: 30px
}
}
@media(max-width: 767px) {
.boutique-banner.style-11 .product-info,
.boutique-banner.style-11 .product-thumb {
display: block;
width: auto
}
.boutique-banner.style-11 .product-info,
.boutique-banner.style-11 .product-item.right .product-info {
padding: 30px 0
}
}
.boutique-banner.style-12 {
border: 1px solid #c99947;
padding: 75px 15px
}
.boutique-banner.style-12 .content {
background-color: transparent;
padding: 0
}
.boutique-banner.style-12 .button {
background-color: transparent;
padding: 0;
text-decoration: underline;
text-transform: none
}
@media(max-width: 1199px) {
.boutique-banner.style-12 {
padding: 45px 15px
}
}
@media(max-width: 991px) {
.boutique-banner.style-12 {
padding: 50px 15px 49px
}
}
.boutique-banner.style-13 {
padding: 0 0 0 165px;
text-align: inherit
}
.boutique-banner.style-13 .banner-inner {
display: block;
text-align: inherit
}
.boutique-banner.style-13 .banner-inner::after,
.boutique-banner.style-13 .banner-inner::before {
display: table;
content: '';
clear: both
}
.boutique-banner.style-13 .banner-inner>* {
display: inline-block;
vertical-align: top;
max-width: 100%
}
.boutique-banner.style-13 .gallery-banner {
float: left;
width: 762px;
max-width: calc(100% - 859px);
padding: 20px 30px 20px 0
}
.boutique-banner.style-13 .gallery-thumb {
float: right;
width: 859px;
text-align: center
}
.boutique-banner.style-13 .gallery-thumb figure {
display: inline-block;
vertical-align: top;
max-width: 100%
}
.boutique-banner.style-13 .gallery-slide {
max-width: 732px
}
.boutique-banner.style-13 .gallery-item {
padding: 0;
font-style: inherit;
color: #444;
margin: 0;
cursor: pointer;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
text-align: center
}
.boutique-banner.style-13 .gallery-item .text {
display: block;
letter-spacing: .15em;
font-size: 10px;
line-height: 20px;
font-weight: 600;
margin-top: 13px
}
.boutique-banner.style-13 .gallery-item .image {
display: inline-block;
vertical-align: top;
max-width: 100%;
position: relative;
overflow: hidden;
background-color: #000
}
.boutique-banner.style-13 .gallery-item img {
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
.boutique-banner.style-13 .gallery-item:hover img {
opacity: .5;
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1)
}
.boutique-banner.style-13 .gallery-item .image::after,
.boutique-banner.style-13 .gallery-item .image::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 30px;
height: 2px;
background-color: #fff;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
z-index: 1
}
.boutique-banner.style-13 .gallery-item .image::after {
width: 2px;
height: 30px
}
.boutique-banner.style-13 .gallery-item:not(:hover) .image::after,
.boutique-banner.style-13 .gallery-item:not(:hover) .image::before {
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
opacity: 0
}
.boutique-banner.style-13 .gallery-head {
padding-bottom: 56px
}
.boutique-banner.style-13 .subtitle {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 24px;
font-style: italic;
color: #aaa;
margin-bottom: 7px
}
.boutique-banner.style-13 .title {
font-size: 29px;
line-height: 42px;
letter-spacing: .1em;
margin-bottom: 4px
}
.boutique-banner.style-13 .desc {
margin-bottom: 10px
}
.boutique-banner.style-13 .gallery-title {
font-size: 14px;
line-height: 24px;
letter-spacing: .15em;
margin-bottom: 30px
}
.boutique-banner.style-13 .gallery-title::after {
display: block;
content: '';
width: 48px;
height: 2px;
background-color: #f7593f;
margin-top: 13px
}
@media(max-width: 1499px) {
.boutique-banner.style-13 {
padding: 0 0 0 30px
}
}
@media(max-width: 1199px) {
.boutique-banner.style-13 {
padding: 0 30px
}
.boutique-banner.style-13 .gallery-banner {
width: 100%;
max-width: 100%;
padding-right: 0
}
.boutique-banner.style-13 .gallery-thumb {
width: 100%
}
}
@media(max-width: 991px) {
.boutique-banner.style-13 {
padding: 0 0 0 15px
}
}
.boutique-banner.style-14 .thumb img {
position: relative;
max-width: inherit;
margin-left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%)
}
.boutique-banner.style-14 .content {
left: auto;
max-width: 270px;
padding: 30px 20px 20px;
text-align: left
}
.boutique-banner.style-14 .title {
font-size: 24px;
line-height: 30px;
margin-bottom: 5px
}
.boutique-banner.style-14 .subtitle {
font-size: 13px;
line-height: 18px;
color: #666;
margin-bottom: 30px
}
.boutique-banner.style-14 .button {
font-size: 12px;
line-height: 20px;
letter-spacing: .05em;
border-bottom: 2px solid #767676;
background-color: transparent;
padding: 0
}
.boutique-banner.style-14 .button:hover {
background-color: transparent;
border-bottom: 2px solid
}
@media(max-width: 1199px) {
.boutique-banner.style-14 .content {
max-width: 260px;
margin-left: auto;
padding: 20px 15px 15px
}
}
@media(max-width: 1199px) and (min-width:992px) {
.boutique-banner.style-14 .thumb img {
max-height: 230px
}
}
@media(max-width: 991px) and (min-width:768px) {
.boutique-banner.style-14 .thumb img {
max-height: 210px
}
}
.boutique-banner.style-15 .thumb {
display: block
}
.boutique-banner.style-15 .thumb~.content {
padding: 0;
bottom: auto;
right: auto;
-webkit-transform: rotate(90deg) translateX(80px);
-moz-transform: rotate(90deg) translateX(80px);
-ms-transform: rotate(90deg) translateX(80px);
-o-transform: rotate(90deg) translateX(80px);
transform: rotate(90deg) translateX(80px)
}
.boutique-banner.style-15.content-left .thumb~.content {
top: 0;
left: calc(100% + 30px);
-webkit-transform-origin: left top;
-moz-transform-origin: left top;
-ms-transform-origin: left top;
-o-transform-origin: left top;
transform-origin: left top
}
.boutique-banner.style-15.content-right .thumb~.content {
top: -30px;
left: -30px;
-webkit-transform-origin: left bottom;
-moz-transform-origin: left bottom;
-ms-transform-origin: left bottom;
-o-transform-origin: left bottom;
transform-origin: left bottom
}
.boutique-banner.style-15 .title {
font-size: 14px;
line-height: 20px;
letter-spacing: .1em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 80px;
margin: -5px 0 15px
}
.boutique-banner.style-15 .thumb::after {
position: absolute;
bottom: 0;
left: 0;
width: 60px;
font-size: 16px;
line-height: 60px;
background-color: #fff;
text-align: center;
font-family: Flaticon, sans-serif;
content: '\f105'
}
@media(min-width: 992px) {
.boutique-banner.style-15.content-right .title {
margin: 15px 0 -5px
}
}
@media(max-width: 1199px) {
.boutique-banner.style-15 .thumb~.content {
-webkit-transform: rotate(90deg) translateX(50px);
-moz-transform: rotate(90deg) translateX(50px);
-ms-transform: rotate(90deg) translateX(50px);
-o-transform: rotate(90deg) translateX(50px);
transform: rotate(90deg) translateX(50px)
}
}
@media(max-width: 991px) {
.boutique-banner.style-15 .banner-inner {
max-width: calc(100% - 30px)
}
.boutique-banner.style-15 .thumb~.content {
-webkit-transform: rotate(90deg) translateX(15px);
-moz-transform: rotate(90deg) translateX(15px);
-ms-transform: rotate(90deg) translateX(15px);
-o-transform: rotate(90deg) translateX(15px);
transform: rotate(90deg) translateX(15px);
max-width: 100%
}
.boutique-banner.style-15 .title {
font-size: 12px;
margin: 5px 0
}
}
.boutique-banner.style-16 .thumb~.content {
right: auto;
max-width: calc(100% - 60px);
text-align: left
}
.boutique-banner.style-16.content-top .thumb~.content {
top: 5px;
bottom: auto
}
.boutique-banner.style-16.content-mid .thumb~.content {
top: 50%;
bottom: auto;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%)
}
.boutique-banner.style-16.content-bot .thumb~.content {
top: auto;
bottom: 5px
}
.boutique-banner.style-16 .title {
font-size: 18px;
line-height: 24px;
margin-bottom: 0
}
.boutique-banner.style-16 .subtitle {
font-size: 12px;
line-height: 20px;
letter-spacing: .05em;
color: #888;
margin-bottom: 0
}
.boutique-banner.style-17 .subtitle {
font-size: 18px;
line-height: 30px;
font-family: playfair display, sans-serif;
font-style: italic;
color: #fff;
margin-bottom: 18px
}
.boutique-banner.style-17 .title {
font-size: 36px;
line-height: 50px;
color: #fff;
letter-spacing: .25em;
margin-right: -.25em;
margin-bottom: 28px
}
.boutique-banner.style-17 .button {
letter-spacing: .15em;
padding: 13px calc(30px - .15em) 13px 30px
}
.boutique-banner.style-17 .button:not(:hover) {
background-color: transparent;
box-shadow: 0 0 0 2px #fff inset
}
@media(max-width: 767px) {
.boutique-banner.style-17 .thumb img {
position: relative;
max-width: inherit;
margin-left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%)
}
}
.boutique-banner.style-18 {
text-align: inherit
}
.boutique-banner.style-18 .banner-inner {
display: block;
padding: 80px 160px;
text-align: inherit
}
.boutique-banner.style-18 .thumb {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0
}
.boutique-banner.style-18 .thumb figure {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-position: center center;
background-size: cover
}
.boutique-banner.style-18 .content {
position: relative;
max-width: 360px;
margin-left: auto;
padding: 86px 60px 93px;
background-color: #fff;
opacity: 1
}
.boutique-banner.style-18 .title {
font-size: 30px;
line-height: 37px;
margin-bottom: 8px
}
.boutique-banner.style-18 .subtitle {
font-size: 14px;
line-height: 24px;
margin-bottom: 22px
}
.boutique-banner.style-18 .button {
font-size: 14px;
border: 3px solid
}
.boutique-banner.style-18 .button:not(:hover):not(:focus) {
background-color: #fff
}
@media(max-width: 1199px) {
.boutique-banner.style-18 .banner-inner {
padding: 80px 100px
}
}
@media(max-width: 991px) {
.boutique-banner.style-18 .banner-inner {
padding: 80px 55px
}
}
@media(max-width: 767px) {
.boutique-banner.style-18 .banner-inner {
padding: 60px 30px
}
}
@media(max-width: 479px) {
.boutique-banner.style-18 .banner-inner {
padding: 60px 15px
}
.boutique-banner.style-18 .content {
padding: 40px 20px 50px
}
.boutique-banner.style-18 .title {
font-size: 26px;
line-height: 32px
}
.boutique-banner.style-18 .subtitle {
font-size: 13px;
line-height: 20px;
margin-bottom: 20px
}
}
.boutique-banner.style-19 {
text-align: inherit
}
.boutique-banner.style-19 .banner-inner {
display: block;
text-align: inherit
}
.boutique-banner.style-19 .thumb {
display: inline-block;
vertical-align: top;
max-width: 70%;
overflow: hidden
}
.boutique-banner.style-19 .thumb~.content {
left: auto;
width: 43%;
max-width: 385px
}
.boutique-banner.style-19 .content {
padding: 15px 15px 20px;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center
}
.boutique-banner.style-19 .title {
font-size: 26px;
line-height: 32px;
margin-bottom: 16px
}
.boutique-banner.style-19 .subtitle {
font-size: 14px;
line-height: 24px;
margin-bottom: 46px
}
@media(max-width: 767px) {
.boutique-banner.style-19 {
text-align: center
}
.boutique-banner.style-19 .thumb {
max-width: inherit
}
.boutique-banner.style-19 .thumb~.content {
position: static;
width: auto;
max-width: inherit
}
.boutique-banner.style-19 .title {
margin-bottom: 10px
}
.boutique-banner.style-19 .subtitle {
margin-bottom: 25px
}
}
.boutique-container.rows-space-0 .row-item,
.boutique-custommenu.rows-space-0 .row-item,
.rows-space-0 {
margin-bottom: 0
}
.boutique-container.rows-space-10 .row-item,
.boutique-custommenu.rows-space-10 .row-item,
.rows-space-10 {
margin-bottom: 10px
}
.boutique-container.rows-space-20 .row-item,
.boutique-custommenu.rows-space-20 .row-item,
.rows-space-20 {
margin-bottom: 20px
}
.boutique-container.rows-space-30 .row-item,
.boutique-custommenu.rows-space-30 .row-item,
.rows-space-30 {
margin-bottom: 30px
}
.boutique-container.rows-space-40 .row-item,
.boutique-custommenu.rows-space-40 .row-item,
.rows-space-40 {
margin-bottom: 40px
}
.boutique-container.rows-space-50 .row-item,
.boutique-custommenu.rows-space-50 .row-item,
.rows-space-50 {
margin-bottom: 50px
}
.boutique-container.rows-space-60 .row-item,
.boutique-custommenu.rows-space-60 .row-item,
.rows-space-60 {
margin-bottom: 60px
}
.boutique-container.rows-space-70 .row-item,
.boutique-custommenu.rows-space-70 .row-item,
.rows-space-70 {
margin-bottom: 70px
}
.boutique-container.rows-space-80 .row-item,
.boutique-custommenu.rows-space-80 .row-item,
.rows-space-80 {
margin-bottom: 80px
}
.boutique-container.rows-space-90 .row-item,
.boutique-custommenu.rows-space-90 .row-item,
.rows-space-90 {
margin-bottom: 90px
}
.boutique-container.rows-space-100 .row-item,
.boutique-custommenu.rows-space-100 .row-item,
.rows-space-100 {
margin-bottom: 100px
}
.boutique-container[class*=" rows-space-"],
.boutique-container[class^=rows-space-],
.boutique-custommenu[class*=" rows-space-"],
.boutique-custommenu[class^=rows-space-] {
margin-bottom: 0
}
.boutique-social-icons>a {
display: inline-block;
width: 36px;
text-align: center;
color: #222;
border-radius: 50%;
background-color: #fff;
line-height: 36px;
margin: 0 2px;
font-size: 18px
}
.boutique-social-icons>a:hover {
background-color: #c99947;
color: #fff
}
@media (min-width: 992px) {
.nav-sections {
background-color: transparent
}
}
.boutique-specified-product {
display: flex;
align-items: center;
justify-content: space-between
}
.boutique-specified-product .product-photo-container {
flex: 0 0 470px
}
.boutique-specified-product .product-item-details {
padding-left: 60px;
font-size: 14px;
line-height: 24px;
text-align: left;
padding-top: 30px;
padding-bottom: 30px
}
.boutique-specified-product.boutique-right-image .product-item-details {
order: -1;
padding-left: 0;
padding-right: 60px
}
.boutique-specified-product .product-item-name {
font-size: 28px;
line-height: 42px;
text-transform: uppercase;
margin-bottom: 4px;
font-weight: 600;
display: block
}
.boutique-specified-product .product-item-description {
font-size: 18px;
line-height: 30px;
font-weight: 300;
margin-bottom: 45px
}
.boutique-specified-product .price-box {
margin-bottom: 20px
}
.boutique-specified-product .price-box .price {
font-size: 24px;
line-height: 30px
}
.boutique-specified-product .action.tocart {
background-color: transparent;
font-size: 14px;
line-height: 24px;
padding: 3px 0;
margin-top: 30px;
background: none !important;
box-shadow: none;
color: #222
}
.boutique-specified-product .action.tocart:before {
display: inline-block;
vertical-align: middle;
font-family: Pe-icon-7-stroke, sans-serif;
content: "\e66e";
font-size: 25px;
font-weight: 400;
text-decoration: none;
padding: 2px 7px 4px 0;
color: #222
}
.boutique-specified-product .action.tocart>span {
text-decoration: underline
}
.boutique-specified-product .action.tocart:hover {
color: #c99947
}
@media (max-width: 991px) {
.boutique-specified-product .product-photo-container {
flex: 0 0 50%
}
}
@media (max-width: 767px) {
.boutique-specified-product {
flex-direction: column
}
.boutique-specified-product .product-item-details,
.boutique-specified-product.boutique-right-image .product-item-details {
padding-left: 0;
padding-right: 0;
order: unset
}
.boutique-specified-product .product-photo-container {
flex: 0 0 100%
}
}
.header-custom-category-menu {
list-style: none;
padding: 0;
margin: 0 -15px
}
.header-custom-category-menu li {
display: inline-block;
vertical-align: middle;
margin: 0 15px
}
.header-custom-category-menu a {
display: flex;
width: 133px;
height: 133px;
border: 1px dashed #ccc;
text-align: center;
font-size: 11px;
line-height: 24px;
text-transform: uppercase;
font-weight: 600;
border-radius: 90px;
padding: 28px 15px 34px;
align-items: center;
flex-direction: column;
justify-content: center;
transition: all .3s
}
.header-custom-category-menu a:hover {
color: #c99947;
border-color: #c99947
}
@media (max-width: 1199px) {
.header-custom-category-menu a {
width: 110px;
height: 110px;
padding: 24px 10px 29px;
font-size: 10px;
line-height: 20px
}
.header-custom-category-menu a img {
max-height: 35px;
width: auto
}
.header-custom-category-menu {
margin: 0 -7px
}
.header-custom-category-menu li {
margin: 0 7px
}
}
@media (max-width: 991px) {
.header-custom-category-menu {
white-space: nowrap
}
.header-custom-category-menu a {
width: 90px;
height: 90px;
padding: 14px 10px 19px
}
}
.header-custom-category-menu.style02 {
text-align: center;
padding: 15px 0;
margin: 0;
white-space: nowrap
}
.header-custom-category-menu.style02 li {
margin: 25px
}
.header-custom-category-menu.style02 a {
width: auto;
height: auto;
border-radius: unset;
border: 0;
padding: 0;
flex-direction: unset;
font-family: Montserrat, sans-serif
}
.header-custom-category-menu.style02 figure {
width: 100px;
height: 100px;
border: 1px dashed #ccc;
border-radius: 90px;
line-height: 98px;
margin-right: 20px;
transition: all .3s ease
}
.header-custom-category-menu.style02 a:hover figure {
border-color: #c99947
}
@media (max-width: 991px) {
.header-custom-category-menu.style02 li {
margin: 15px
}
.header-custom-category-menu.style02 figure {
width: 80px;
height: 80px;
line-height: 78px;
margin-right: 12px
}
}
.header-social-icons>a {
margin: 0 3px;
font-size: 14px
}
.header-social-icons>a:not(:hover) {
color: #888
}
.button-products {
text-align: center;
border: 1px solid #e5e5e5;
padding: 20px 15px
}
.button-products>a {
font-family: Montserrat, sans-serif;
font-weight: 600;
font-size: 12px;
border-bottom: 1px solid;
line-height: 24px
}
.boutique-parallax {
background-position: center;
background-size: cover
}
@media (min-width: 1200px) {
.boutique-parallax {
background-attachment: fixed
}
}
.boutique-person.style-01 .thumb-avatar {
margin-bottom: 14px
}
.boutique-person.style-01 .thumb-avatar a {
display: inline-block;
vertical-align: top;
max-width: 100%
}
.boutique-person.style-01 .name {
font-size: 15px;
line-height: 24px;
margin-bottom: 3px
}
.boutique-person.style-01 .positions {
font-family: playfair display, sans-serif;
font-size: 13px;
line-height: 24px;
font-style: italic;
margin-bottom: 0
}
.boutique-person.style-02 {
text-align: center
}
.boutique-person.style-02 .desc {
font-family: playfair display, sans-serif;
font-size: 13px;
line-height: 24px;
font-style: italic;
margin-bottom: 46px
}
.boutique-person.style-02 .name {
font-size: 15px;
line-height: 24px;
margin-bottom: 3px
}
.boutique-person.style-02 .positions {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 24px;
margin-bottom: 0
}
.boutique-person.style-03 {
text-align: center
}
.boutique-person.style-03 .second-slide {
display: inline-block;
vertical-align: top;
max-width: 270px;
margin-bottom: 24px
}
.boutique-person.style-03 .person-thumb {
border-radius: 50%;
overflow: hidden;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
cursor: pointer
}
.boutique-person.style-03 .person-thumb:not(:hover):not(.slick-current) {
opacity: .7
}
.boutique-person.style-03 .desc {
font-size: 13px;
color: #fff;
letter-spacing: .1em;
margin-bottom: 8px;
line-height: 24px
}
.boutique-person.style-03 .name {
font-family: playfair display, sans-serif;
font-size: 18px;
line-height: 30px;
font-weight: 700;
font-style: italic;
color: #fff;
margin-bottom: 0
}
.boutique-person.style-03 .name a::before {
display: inline-block;
vertical-align: top;
content: '-';
margin-right: 3px
}
.boutique-person.style-03 .name a::after {
display: inline-block;
vertical-align: top;
content: '-';
margin-left: 3px
}
.boutique-person.style-03 .main-slide {
padding: 0 50px
}
.boutique-person.style-03 .main-slide .slick-arrow {
top: -15px;
font-size: 10px;
width: 32px;
border: 1px solid transparent;
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none
}
.boutique-person.style-03 .main-slide .slick-arrow:not(:hover) {
background-color: transparent;
border: 1px solid
}
.boutique-person.style-03 .main-slide .slick-arrow.prev {
left: -15px
}
.boutique-person.style-03 .main-slide .slick-arrow.next {
right: -15px
}
@media(min-width: 1200px) {
.boutique-person.style-03:not(:hover) .main-slide .slick-arrow {
opacity: 0
}
.boutique-person.style-03 .main-slide .slick-arrow.prev {
left: -32px
}
.boutique-person.style-03 .main-slide .slick-arrow.next {
right: -32px
}
}
@media(max-width: 767px) {
.boutique-person.style-03 .main-slide {
padding: 0 30px
}
}
@media(max-width: 479px) {
.boutique-person.style-03 .main-slide {
padding: 0 20px
}
}
.boutique-person.style-04 {
color: #fff
}
.boutique-person.style-04 .inner::after,
.boutique-person.style-04 .inner::before {
display: table;
content: '';
clear: both
}
.boutique-person.style-04 .thumb-avatar {
display: inline-block;
vertical-align: top;
max-width: 110px;
float: left
}
.boutique-person.style-04 .thumb-avatar a {
display: block;
border-radius: 50%;
border: 5px solid rgba(255, 255, 255, .7);
overflow: hidden
}
.boutique-person.style-04 .content-person {
display: inline-block;
vertical-align: top;
width: calc(100% - 110px);
padding: 20px 110px 0;
position: relative
}
.boutique-person.style-04 .content-person::after,
.boutique-person.style-04 .content-person::before {
position: absolute;
font-size: 100px;
line-height: 1;
font-weight: 700;
opacity: .3
}
.boutique-person.style-04 .content-person::before {
content: '“';
top: 9px;
left: 35px
}
.boutique-person.style-04 .content-person::after {
content: '”';
right: 35px;
bottom: 0
}
.boutique-person.style-04 .desc {
margin-bottom: 23px;
line-height: 24px
}
.boutique-person.style-04 .name {
color: inherit;
font-size: 12px;
line-height: 24px;
text-transform: uppercase;
margin-bottom: 0
}
.boutique-person.style-04 .name a::before {
content: '-'
}
.boutique-person.style-04 .name a::after {
content: '-'
}
@media(max-width: 767px) {
.boutique-person.style-04 .thumb-avatar {
width: 80px
}
.boutique-person.style-04 .thumb-avatar a {
border-width: 3px
}
.boutique-person.style-04 .content-person {
width: calc(100% - 80px);
padding: 13px 50px 0 75px
}
.boutique-person.style-04 .content-person::before {
font-size: 80px;
top: 6px;
left: 20px
}
.boutique-person.style-04 .content-person::after {
font-size: 80px;
right: 0
}
}
@media(max-width: 479px) {
.boutique-person.style-04 .content-person {
width: 100%;
padding: 15px 40px 0 45px
}
.boutique-person.style-04 .content-person::before {
font-size: 70px;
left: 0
}
.boutique-person.style-04 .content-person::after {
font-size: 70px
}
}
.boutique-person.style-05 {
text-align: center;
margin-bottom: 35px
}
.boutique-person.style-05 .desc {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 24px;
font-style: italic;
padding-top: 5px;
margin-bottom: 45px
}
.boutique-person.style-05 .desc::after,
.boutique-person.style-05 .desc::before {
display: inline-block;
vertical-align: top;
font-family: Georgia, sans-serif;
content: '“';
font-size: 120px;
font-style: normal;
opacity: .1;
margin: 33px -60px -33px 10px
}
.boutique-person.style-05 .desc::after {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
margin: -33px 10px 33px -60px
}
.boutique-person.style-05 .name {
font-size: 15px;
line-height: 24px;
margin-bottom: 2px
}
.boutique-person.style-05 .positions {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 24px;
color: #888;
margin-bottom: 0
}
@media(max-width: 991px) {
.boutique-person.style-05 .desc br {
display: none
}
}
.slick-slider {
overflow: visible
}
.slick-list {
padding: 0
}
.slick-track {
margin-left: 0
}
.slick-slide>.row-item>* {
vertical-align: top
}
.slick-slider .slick-arrow {
display: inline-block;
position: absolute;
width: 30px;
font-size: 18px;
line-height: 30px;
z-index: 2;
cursor: pointer;
text-align: center;
color: #fff;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.slick-slider .slick-arrow:not(:hover) {
opacity: .7
}
.slick-slider .slick-arrow:hover {
background-color: #c99947
}
.slick-slider .slick-arrow.prev {
top: calc(50% - 15px);
left: 0;
-webkit-transform-origin: left;
-moz-transform-origin: left;
-ms-transform-origin: left;
-o-transform-origin: left;
transform-origin: left
}
.slick-slider .slick-arrow.next {
top: calc(50% - 15px);
right: 0;
-webkit-transform-origin: right;
-moz-transform-origin: right;
-ms-transform-origin: right;
-o-transform-origin: right;
transform-origin: right
}
.slick-slider.slick-vertical .slick-slide {
border: 0
}
.slick-slider.slick-vertical .slick-arrow.prev {
top: 0;
left: calc(50% - 15px);
-webkit-transform-origin: top;
-moz-transform-origin: top;
-ms-transform-origin: top;
-o-transform-origin: top;
transform-origin: top
}
.slick-slider.slick-vertical .slick-arrow.next {
top: auto;
bottom: 0;
left: calc(50% - 15px);
right: auto;
-webkit-transform-origin: bottom;
-moz-transform-origin: bottom;
-ms-transform-origin: bottom;
-o-transform-origin: bottom;
transform-origin: bottom
}
@media(min-width: 768px) {
.slick-slider:not(:hover) .slick-arrow {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0)
}
}
@media(max-width: 479px) {
.slick-slider .slick-arrow {
width: 24px;
font-size: 14px;
line-height: 24px
}
}
.slick-slider.nav-bottom-left>.slick-arrow,
.slick-slider.nav-top-right>.slick-arrow {
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
width: 36px;
line-height: 36px
}
.slick-slider.nav-bottom-left>.slick-arrow:not(:hover),
.slick-slider.nav-top-right>.slick-arrow:not(:hover) {
opacity: 1;
background-color: transparent;
box-shadow: 0 0 0 1px #e5e5e5 inset;
color: inherit
}
.slick-slider.nav-top-right>.slick-arrow.prev {
top: -64px;
left: auto;
right: 41px
}
.slick-slider.nav-top-right>.slick-arrow.next {
top: -64px
}
div.nav-top-right>.boutique-custom-heading.style-01 {
text-align: inherit;
padding-right: 90px;
margin-bottom: 22px
}
div .slick-slider.nav-top-center {
padding-top: 70px
}
.slick-slider.nav-top-center>.slick-arrow {
width: 35px;
background-color: transparent;
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none
}
.slick-slider.nav-top-center>.slick-arrow:not(:hover) {
color: inherit;
box-shadow: 0 0 0 1px #aaa inset
}
.slick-slider.nav-top-center>.slick-arrow::before {
line-height: 32px
}
.slick-slider.nav-top-center>.slick-arrow:hover {
color: #fff
}
.slick-slider.nav-top-center>.slick-arrow.prev {
top: 0;
left: calc(50% - 55px)
}
.slick-slider.nav-top-center>.slick-arrow.next {
top: 0;
right: calc(50% - 55px)
}
.slick-slider.nav-top-center>.slick-arrow.prev::after {
position: absolute;
content: '';
top: 50%;
left: 100%;
border-top: 1px dashed #666;
width: 40px
}
div .slick-slider.nav-bottom-left {
padding-bottom: 70px
}
.slick-slider.nav-bottom-left>.slick-arrow.prev {
top: auto;
bottom: 0
}
.slick-slider.nav-bottom-left>.slick-arrow.next {
top: auto;
left: 41px;
right: auto;
bottom: 0
}
.slick-slider.nav-out-side>.slick-arrow {
width: 35px;
font-size: 32px;
background-color: transparent;
color: #999
}
.product-item .product-thumb .slick-arrow {
font-size: 26px;
background-color: transparent;
color: #999
}
.product-item .product-thumb .slick-arrow:hover,
.slick-slider.nav-out-side>.slick-arrow:hover {
background-color: transparent
}
.slick-slider.nav-out-side>.slick-arrow.prev {
left: -35px
}
.slick-slider.nav-out-side>.slick-arrow.next {
right: -35px
}
@media(min-width: 1230px) {
.slick-slider.nav-out-side>.slick-arrow {
width: 50px;
font-size: 43px
}
.slick-slider.nav-out-side>.slick-arrow.prev {
padding-right: 15px;
left: -50px
}
.slick-slider.nav-out-side>.slick-arrow.next {
padding-left: 15px;
right: -50px
}
}
@media(max-width: 991px) {
.slick-slider.nav-out-side>.slick-arrow {
width: 20px;
font-size: 26px
}
.slick-slider.nav-out-side>.slick-arrow.prev {
left: -20px
}
.slick-slider.nav-out-side>.slick-arrow.next {
right: -20px
}
}
@media(max-width: 767px) {
.slick-slider.nav-out-side>.slick-arrow.prev {
left: -18px
}
.slick-slider.nav-out-side>.slick-arrow.next {
right: -18px
}
}
.slick-dots {
list-style: none;
padding: 0;
text-align: center;
font-size: 0;
line-height: 0;
margin: 5px -4px 0
}
.slick-dots li {
display: inline-block;
vertical-align: top;
margin: 5px 4px 0;
cursor: pointer
}
.slick-dots li button {
display: block;
opacity: 1;
padding: 0;
font-size: inherit;
line-height: inherit;
overflow: hidden;
width: 10px;
height: 10px;
background-color: transparent;
border: 1px solid #ccc
}
.slick-dots li.slick-active button,
.slick-dots li:hover button {
background-color: #000;
border-color: transparent
}
.footer-tagcloud {
margin: 0 -5px -10px
}
.footer-tagcloud a {
display: inline-block;
vertical-align: top;
font-size: 13px !important;
padding: 2px 10px;
border: 1px solid #ddd;
margin: 0 5px 10px;
line-height: 24px
}
.footer-tagcloud a:hover {
background-color: #c99947;
border-color: transparent;
color: #fff
}
.custom-plus-icon,
.custom-plus-icon-small {
position: relative
}
.custom-plus-icon-small::after,
.custom-plus-icon::after {
position: absolute;
top: calc(50% - 10px);
left: calc(100% - 10px);
width: 20px;
height: 20px;
content: '+';
font-size: 30px;
line-height: 20px;
text-align: center;
color: #c99947;
font-weight: 600
}
@media(max-width: 991px) {
.custom-plus-icon-small::after,
.custom-plus-icon::after {
top: calc(100% - 10px);
left: calc(50% - 10px)
}
.boutique-notice-block {
display: none
}
}
.custom-plus-icon-small::after {
font-size: 18px;
color: #333
}
.custom-underline {
position: relative
}
.custom-underline::after {
position: absolute;
content: '';
bottom: 16px;
left: 0;
right: 0;
width: 42px;
border-bottom: 1px solid;
margin: auto
}
.boutique-flickr .row,
.boutique-instagram .row {
margin: 0 -5px
}
.boutique-flickr .row [class*=" col-"],
.boutique-flickr .row [class^=col-],
.boutique-instagram .row [class*=" col-"],
.boutique-instagram .row [class^=col-] {
padding: 0 5px;
margin-bottom: 10px
}
.boutique-flickr .thumb-flickr,
.boutique-instagram .thumb-instagram {
display: inline-block;
vertical-align: top;
max-width: 100%;
position: relative;
background-color: #000
}
.boutique-flickr .thumb-flickr img,
.boutique-instagram .thumb-instagram img {
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.boutique-flickr .thumb-flickr::after,
.boutique-flickr .thumb-flickr::before,
.boutique-instagram .thumb-instagram::after,
.boutique-instagram .thumb-instagram::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: #fff;
width: 1px;
height: 20px;
margin: auto;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
z-index: 1
}
.boutique-flickr .thumb-flickr::after,
.boutique-instagram .thumb-instagram::after {
width: 20px;
height: 1px
}
.boutique-flickr .thumb-flickr:hover img,
.boutique-instagram .thumb-instagram:hover img {
opacity: .5
}
.boutique-flickr .thumb-flickr:not(:hover)::before,
.boutique-instagram .thumb-instagram:not(:hover)::before {
opacity: 0;
-webkit-transform: scale(1, 2);
-moz-transform: scale(1, 2);
-ms-transform: scale(1, 2);
-o-transform: scale(1, 2);
transform: scale(1, 2)
}
.boutique-flickr .thumb-flickr:not(:hover)::after,
.boutique-instagram .thumb-instagram:not(:hover)::after {
opacity: 0;
-webkit-transform: scale(2, 1);
-moz-transform: scale(2, 1);
-ms-transform: scale(2, 1);
-o-transform: scale(2, 1);
transform: scale(2, 1)
}
.products-grid .product-item-info.type5 {
margin-left: -15px;
margin-right: -15px
}
.boutique-custommenu.canvas-header.left-absolute {
background-color: rgba(0, 0, 0, .8);
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 260px;
transition: all .3s ease;
z-index: 2
}
.boutique-custommenu.canvas-header.left-absolute.canvas-closed a.canvas-toggle {
transform: translateX(100%)
}
.boutique-single-image a.button-play {
position: absolute;
top: calc(50% - 30px);
left: calc(50% - 30px);
width: 60px;
border: 3px solid;
font-size: 0;
line-height: 0;
border-radius: 50%;
padding: 0 0 0 4px;
background-color: transparent;
color: #fff;
z-index: 2;
text-align: center
}
.boutique-single-image a.button-play::before {
font-family: "Font Awesome 5 Free";
content: "\f04b";
font-size: 20px;
line-height: 54px;
font-weight: 600
}
.boutique-single-image a.button-play:hover {
color: #c99947
}
.revert-x {
transform: scaleX(-1)
}
.overflow-content {
overflow: hidden
}
.overflow-content .owl-carousel .owl-stage-outer {
overflow: visible
}
.product-item.style-07 .thumb-link::after {
display: none
}
.products-grid .product-item-info.type7 .product-item-details .product-item-name {
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis
}
.overflow-content .owl-carousel .owl-stage-outer:after {
content: '';
background-color: #000;
position: absolute;
top: 15px;
bottom: 86px;
left: 100%;
width: 1e3%;
opacity: .2;
z-index: 2
}
.overflow-content .owl-carousel .owl-stage-outer:before {
content: '';
background-color: #000;
position: absolute;
top: 15px;
bottom: 86px;
right: 100%;
width: 1e3%;
opacity: .2;
z-index: 2
}
.boutique-video.style-01 .inner {
position: relative;
padding: 7px;
box-shadow: 0 0 0 1px #e5e5e5 inset;
color: #c99947
}
.boutique-video.style-01 .inner::after,
.boutique-video.style-01 .inner::before,
.boutique-video.style-01 .inner>span::after,
.boutique-video.style-01 .inner>span::before {
position: absolute;
content: '';
width: 44px;
height: 44px;
border-style: solid
}
.boutique-video.style-01 .inner::before {
top: 0;
left: 0;
border-width: 2px 0 0 2px
}
.boutique-video.style-01 .inner::after {
top: 0;
right: 0;
border-width: 2px 2px 0 0
}
.boutique-video.style-01 .inner>span::before {
bottom: 0;
left: 0;
border-width: 0 0 2px 2px
}
.boutique-video.style-01 .inner>span::after {
bottom: 0;
right: 0;
border-width: 0 2px 2px 0
}
.small-list .product-items .product-item-info {
display: flex;
margin: 0
}
.small-list .product-items .product-item-info .product-item-photo {
position: static;
flex: 0 0 70px
}
.small-list .product-items .product-item-info .product-item-details {
margin: 0;
padding: 0 0 0 20px;
text-align: left;
flex: 1
}
.small-list .products.list .product.name a {
font-size: 13px;
text-transform: uppercase;
font-family: Montserrat, sans-serif;
font-weight: 600
}
.small-list .products.list .product-reviews-summary {
margin: 0
}
.small-list .products.list .product-items .price-box {
margin: 7px 0 0
}
.small-list .product-items .product-item:first-child {
padding-top: 0;
border-top: 0
}
.small-list .product-items .product-item {
margin: 0;
padding: 20px 0;
border-top: 1px solid #e5e5e5
}
.small-list .products.list .product.name a:hover {
color: #c99947
}
.boutique-progress.vc_progress_bar .progress-item {
font-size: 0;
line-height: 0;
margin-bottom: 40px
}
.boutique-progress.vc_progress_bar .progress-item>h4 {
display: inline-block;
vertical-align: middle;
width: 200px;
font-size: 12px;
line-height: 18px;
margin: 0;
padding-right: 30px
}
.boutique-progress.vc_progress_bar .vc_general {
display: inline-block;
vertical-align: middle;
width: calc(100% - 200px);
height: 36px;
background-color: #e5e5e5;
border-radius: 0;
box-shadow: none;
margin: 0
}
.boutique-progress.vc_progress_bar .vc_general .vc_bar {
border-radius: inherit;
margin: 0
}
.boutique-progress.vc_progress_bar .vc_general .vc_bar.animated {
display: none
}
.boutique-progress.vc_progress_bar .vc_general .vc_label_units {
position: absolute;
top: 0;
bottom: 0;
right: 30px;
font-size: 12px;
line-height: 18px;
height: 18px;
font-weight: 600;
margin: auto;
z-index: 1
}
@media(max-width: 767px) {
.boutique-progress.vc_progress_bar .progress-item>h4 {
display: block;
width: auto;
padding: 0 0 10px
}
.boutique-progress.vc_progress_bar .vc_general {
display: block;
width: auto
}
}
.vc_progress_bar .vc_single_bar {
background: #f7f7f7;
position: relative;
margin-bottom: 11.66666667px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px
}
.vc_progress_bar .vc_single_bar:last-child {
margin-bottom: 0
}
.vc_progress_bar .vc_single_bar .vc_label {
display: block;
padding: .5em 1em;
position: relative;
z-index: 1
}
.vc_progress_bar .vc_single_bar .vc_bar {
display: block;
position: absolute;
height: 100%;
background-color: #c99947;
width: 0;
top: 0;
left: 0;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
transition: width 1s linear;
-moz-transition: width 1s linear;
-webkit-transition: width 1s linear;
-o-transition: width 1s linear
}
.dot-circle .owl-dots {
text-align: center;
margin-top: 68px
}
.dot-circle .owl-dots .owl-dot {
width: 12px;
height: 12px;
background-color: rgba(0, 0, 0, .2);
display: inline-block;
border-radius: 10px;
margin: 0 5px
}
.dot-circle .owl-dots .owl-dot.active,
.dot-circle .owl-dots .owl-dot:hover {
background-color: #000
}
.page-layout-1column .columns {
display: block
}
.page-layout-1column .block.filter .filter-title {
display: none
}
.page-layout-1column .toolbar-products {
padding: 0
}
@media (min-width: 992px) {
.page-layout-1column .block.filter .filter-options-content {
position: absolute;
left: 15px;
z-index: 4;
background-color: #fff;
right: 15px;
padding: 10px;
box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.15)
}
.page-layout-1column .block.filter .filter-options .filter-options-item {
position: relative;
margin-bottom: 0
}
}
@media (min-width: 1200px) {
.col-xl-3-custom {
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%
}
}
.products.list.products-list .product-item {
margin-bottom: 30px
}
.products-list.products.list .product-item-info {
margin: 0
}
.products-list.products.list .product-item-info .product-item-details {
padding-left: 30px
}
.products-list.products.list .product-item-info .product-photo-container {
padding: 0
}
.skynetch-dailydeal {
text-align: left
}
.skynetch-dailydeal .number-wrapper {
text-align: center;
background-color: #e5e5e5;
padding: 10px;
color: #333;
font-family: Montserrat, sans-serif
}
.skynetch-dailydeal .countdowncontainer {
box-shadow: none;
padding: 0
}
.skynetch-dailydeal .number-wrapper>.number {
font-size: 18px;
font-weight: 400
}
.skynetch-dailydeal .caption {
color: #333;
font-size: 13px;
font-weight: 400;
margin-top: 2px
}
.products-grid .product-item-info.type10 .product-item-inner {
position: static
}
.catalog-product-view .skynetch-dailydeal .dailydeal-label {
display: none
}
.products-grid .product-item-info.type5 .product-item-inner .skynetch-dailydeal-wrapper {
margin: 0;
margin-top: 55px;
margin-bottom: -10px
}
.product-item-info.type8 {
padding: 10px 11px 5px;
background-color: #fff;
box-shadow: 0 0 0 1px #f3f3f3 inset
}
.switcher-language span.current-language {
color: #c99947
}
.switcher>.switcher-current {
display: none
}
.boutique-categories.style-01,
.boutique-categories.style-02 {
text-align: center
}
.boutique-categories.style-01 .category-inner,
.boutique-categories.style-02 .category-inner {
display: inline-block;
vertical-align: top;
max-width: 100%;
position: relative;
overflow: hidden
}
.boutique-categories.style-01 .category-inner>.thumb-link,
.boutique-categories.style-02 .category-inner>.thumb-link {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-transition: all .4s ease;
-moz-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease;
z-index: 3
}
.boutique-categories.style-01 .category-inner:hover>.thumb-link,
.boutique-categories.style-02 .category-inner:hover>.thumb-link {
background-color: rgba(0, 0, 0, .2)
}
.boutique-categories.style-01 .content>*,
.boutique-categories.style-02 .content>* {
position: relative;
z-index: 3;
-webkit-transition: all .4s ease;
-moz-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease
}
.boutique-categories.style-01 .content {
position: absolute;
left: 0;
right: 0;
bottom: 0
}
.boutique-categories.style-01 .category-inner:hover .content>* {
-webkit-transform: translateY(-20px);
-moz-transform: translateY(-20px);
-ms-transform: translateY(-20px);
-o-transform: translateY(-20px);
transform: translateY(-20px)
}
.boutique-categories.style-01 .content {
padding: 25px 30px 35px
}
.boutique-categories.style-01 .title {
font-size: 18px;
line-height: 24px;
margin-bottom: 1px
}
.boutique-categories.style-01 .count {
font-size: 13px;
line-height: 16px;
color: #666;
margin-bottom: 0
}
.boutique-categories.style-01 .count span {
display: inline-block;
vertical-align: top;
border-bottom: 2px solid #a8a8a8
}
.boutique-categories.style-02.title-top .category-inner:hover .content>* {
-webkit-transform: translate(20px, 20px);
-moz-transform: translate(20px, 20px);
-ms-transform: translate(20px, 20px);
-o-transform: translate(20px, 20px);
transform: translate(20px, 20px)
}
.boutique-categories.style-02.title-bottom .category-inner:hover .content>* {
-webkit-transform: translate(20px, -20px);
-moz-transform: translate(20px, -20px);
-ms-transform: translate(20px, -20px);
-o-transform: translate(20px, -20px);
transform: translate(20px, -20px)
}
.boutique-categories.style-02.title-top .content {
position: absolute;
left: 0;
right: 0;
top: 0
}
.boutique-categories.style-02.title-bottom .content {
position: absolute;
left: 0;
right: 0;
bottom: 0
}
.boutique-categories.style-02 .content {
text-align: left;
padding: 60px
}
.boutique-categories.style-02 .title {
font-size: 30px;
line-height: 36px;
margin-bottom: 6px
}
.boutique-categories.style-02 .count {
display: inline-block;
vertical-align: top;
font-size: 16px;
line-height: 22px;
border-bottom: 2px solid rgba(0, 0, 0, .8);
margin: 0
}
.boutique-categories.style-02 .count span {
font-weight: 600;
color: #222
}
.background-slide {
overflow: hidden
}
.background-slide figure.not-image,
.background-slide img,
.wpb_single_image .background-slide figure.not-image,
.wpb_single_image .background-slide img {
position: relative;
width: calc(100% + 60px);
max-width: calc(100% + 60px);
left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%);
-webkit-transition: all .4s ease;
-moz-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease
}
.background-slide:hover figure.not-image,
.background-slide:hover img,
.wpb_single_image .background-slide:hover figure.not-image,
.wpb_single_image .background-slide:hover img {
margin-left: 30px
}
.rotate-left,
.rotate-right {
overflow: hidden
}
.rotate-left figure.not-image,
.rotate-left img,
.rotate-right figure.not-image,
.rotate-right img {
-webkit-transition: all .7s ease;
-moz-transition: all .7s ease;
-o-transition: all .7s ease;
transition: all .7s ease
}
.rotate-left:hover figure.not-image,
.rotate-left:hover img {
-webkit-transform: scale(1.2) rotate(-5deg);
-moz-transform: scale(1.2) rotate(-5deg);
-ms-transform: scale(1.2) rotate(-5deg);
-o-transform: scale(1.2) rotate(-5deg);
transform: scale(1.2) rotate(-5deg)
}
.rotate-right:hover figure.not-image,
.rotate-right:hover img {
-webkit-transform: scale(1.2) rotate(5deg);
-moz-transform: scale(1.2) rotate(5deg);
-ms-transform: scale(1.2) rotate(5deg);
-o-transform: scale(1.2) rotate(5deg);
transform: scale(1.2) rotate(5deg)
}
.btn-dark {
background-color: #222;
padding-left: 30px;
padding-right: 30px
}
.btn-dark:hover {
background-color: #c99947;
border-color: #c99947
}
.newsletter-logo {
text-align: center;
margin: 20px 0
}
.subscribe-bottom {
margin-top: 20px
}
#newsletter_popup {
width: 425px;
height: 340px;
padding: 24px
}
#newsletter_popup button:hover {
background-color: transparent;
border: 0
}
.page-header {
border: 0;
margin: 0;
z-index: 5
}
.page-header .logo {
padding: 15px 50px;
float: none;
display: block;
border-right: 1px solid rgba(136, 136, 136, .3);
max-width: none;
width: max-content
}
.cms-noroute-index .header-main-wrapper {
box-shadow: 0 1px #e5e5e5
}
#search_mini_form {
float: none;
width: auto
}
.block-search .control {
padding: 0
}
.block-search .nested {
display: none
}
.top-right>* {
display: inline-block;
vertical-align: middle
}
.header-main-wrapper {
padding: 0;
display: flex;
align-items: center;
justify-content: space-between;
position: relative
}
.header-main {
background-color: #000;
transition: transform .3s ease;
border-bottom: 1px solid rgba(136, 136, 136, .3)
}
.skynetch-megamenu li.level0:hover>a {
background: transparent;
color: #c99947
}
.header-right {
display: flex;
align-items: center;
justify-content: flex-end;
padding: 0 15px;
max-width: 100%;
flex: 1
}
.box-search {
position: relative
}
.box-search>span.icon {
font-size: 24px;
color: #eee;
font-weight: 400;
line-height: 60px;
text-align: right;
cursor: pointer;
transition: all .3s ease;
padding: 0 45px;
border-right: 1px solid rgba(136, 136, 136, .3)
}
.box-search>span.icon:hover {
color: #c99947
}
.block-search {
float: none;
padding: 0;
box-shadow: 0 0 0 1px #e5e5e5 inset;
position: absolute;
right: 0;
top: 100%;
z-index: 999;
visibility: hidden;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease, visibility 0.4s linear 0s;
-moz-transition: opacity 0.4s ease, -moz-transform 0.4s ease, visibility 0.4s linear 0s;
-ms-transition: opacity 0.4s ease, -ms-transform 0.4s ease, visibility 0.4s linear 0s;
-o-transition: opacity 0.4s ease, -o-transform 0.4s ease, visibility 0.4s linear 0s;
transition: opacity .4s ease, transform .4s ease, visibility .4s linear 0s;
-webkit-transform: translateY(20px);
-moz-transform: translateY(20px);
-ms-transform: translateY(20px);
-o-transform: translateY(20px);
transform: translateY(20px)
}
.box-search:hover .block-search {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
opacity: 1;
filter: alpha(opacity=100);
visibility: inherit
}
.block-search input {
padding: 13px 50px 13px 20px;
background-color: #fff
}
.block-search .action.search {
right: 20px
}
.block-search .action.search:hover {
color: #c99947
}
.box-settings>span.icon {
color: #eee;
width: auto;
padding: 0 45px;
line-height: 60px
}
.minicart-wrapper .action.showcart:before,
.minicart-wrapper .action.showcart.active:before {
font-size: 24px;
line-height: 60px;
padding: 0 5px 0 0;
color: #eee
}
.minicart-wrapper .action.showcart:hover:before,
.minicart-wrapper .action.showcart.active:hover:before {
color: #c99947
}
.minicart-wrapper .action.showcart .counter.qty {
position: absolute;
left: calc(50% - 2px);
bottom: calc(50% - 2px);
min-width: 18px;
height: 18px;
color: #fff;
border-radius: 90px;
font-size: 12px;
line-height: 18px;
text-align: center;
padding: 0 3px;
background-color: #c99947;
margin: 0
}
.skynetch-megamenu.navigation>ul {
position: static;
padding: 0
}
.nav-toggle {
position: static;
color: #eee
}
.navigation .level0.active>.level-top,
.navigation .level0.has-active>.level-top {
border: 0;
color: #c99947
}
.top-right .minicart-wrapper .action.showcart {
width: auto;
height: auto;
border: 0;
padding: 0;
margin-left: 0
}
.top-right .minicart-wrapper .action.showcart>span.text {
display: none
}
.top-right .minicart-wrapper .action.showcart:before,
.top-right .minicart-wrapper .action.showcart.active:before {
font-size: 24px;
line-height: 50px
}
.top-right .minicart-wrapper .action.showcart .counter.qty {
top: 8px;
left: 11px
}
.page-header.boutique-header_sticky .header-main {
position: fixed;
width: 100%;
left: 0;
top: 0;
box-shadow: 0 0 15px rgba(0, 0, 0, .2);
z-index: 4;
opacity: 1
}
.page-header.boutique-header_sticky.boutique-header_sticky-hide .header-main {
transform: translateY(-100%);
opacity: 0
}
.page-header.boutique-header_sticky .header-main-wrapper {
padding: 0
}
.page-header.boutique-header_sticky .logo img {
max-height: 100%
}
.menu-wrapper {
flex: 1
}
.minicart-wrapper {
padding: 0 45px;
border-right: 1px solid rgba(136, 136, 136, .3);
margin: 0
}
@media (min-width: 1200px) {
.skynetch-megamenu.navigation>ul {
margin: 0 -22px
}
.skynetch-megamenu.navigation li.level0 {
margin: 0 22px
}
}
@media (min-width: 1500px) {
.page-header .logo-wrapper {
width: 345px
}
.menu-wrapper {
position: relative
}
}
@media (max-width: 1499px) {
.box-search>span.icon,
.minicart-wrapper,
.box-settings>span.icon {
padding: 0 15px
}
}
@media (max-width: 991px) {
.menu-wrapper {
flex: unset
}
.nav-sections-item-title:not([aria-controls="store.menu"]) {
display: none
}
.nav-sections-item-title[aria-controls="store.menu"] {
width: 100%;
border: 0;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
font-family: Montserrat;
padding: 10px 0;
height: 50px;
line-height: 30px;
border-bottom: 1px solid #eee;
color: #222
}
.skynetch-megamenu.navigation>ul {
padding: 0 30px
}
.navigation .level0 {
font-size: 12px;
border-top: 1px dotted #ddd
}
.navigation .level0:first-child {
border-top: 0
}
.navigation .level0>.level-top {
font-weight: 600;
font-family: Montserrat;
color: #222;
line-height: 2;
padding: 8px 0
}
.navigation li.level0:last-child {
border-bottom: 0
}
.nav-sections-item-content {
margin-top: 45px
}
.navigation .parent .level-top:after {
right: 0;
top: 0;
font-size: 30px;
line-height: 40px
}
.navigation .submenu .container {
max-width: 100%;
padding: 0
}
.navigation .submenu.opened {
padding: 15px 0
}
.box-search>span.icon,
.minicart-wrapper,
.box-settings>span.icon {
padding: 0;
border: 0;
margin-left: 15px
}
.skynetch-megamenu.navigation>ul {
padding: 0 30px
}
}
@media (max-width: 767px) {
.logo-wrapper {
max-width: 140px
}
.page-header .logo {
padding: 15px;
max-width: 100%;
border: 0
}
}
.page-main {
padding-bottom: 70px
}
.boutique-notice-block {
line-height: 50px
}
.boutique-notice-block a {
font-size: 13px;
font-family: Montserrat, sans-serif;
display: inline-block
}
.boutique-notice-block .header-social-icons a {
font-size: 14px
}
.footer-middle,
.footer-bottom {
background-color: #f0f0f0
}
.footer-bottom-divider {
border-color: #e5e5e5
}
.footer-links {
color: #555;
font-size: 13px;
line-height: 20px
}
.footer-social-icons {
margin: 0 -3px
}
.footer-social-icons>a {
width: 36px;
height: 36px;
line-height: 36px;
margin: 0 3px 10px;
border-radius: 0
}
.footer-social-icons>a:not(:hover) {
box-shadow: 0 0 0 1px #ddd inset;
background-color: transparent;
color: #666
}
.footer-middle {
text-align: left;
font-family: Montserrat, sans-serif;
font-size: 13px;
line-height: 24px
}
.footer-links a:before {
content: '';
display: inline-block;
vertical-align: middle;
width: 4px;
height: 4px;
border: 2px solid;
border-radius: 50%;
margin: 0 12px 2px 0
} | en/assets/css/admin/css1.css | body {
color: #555
}
a {
cursor: pointer;
color: inherit;
text-decoration: none;
line-height: inherit;
-webkit-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
-moz-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
-o-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease
}
a:visited,
.alink:visited {
color: inherit
}
a:focus,
a:hover {
text-decoration: none
}
a:active,
.alink:active {
color: inherit;
text-decoration: none
}
a:hover,
.alink:hover {
color: #c99947
}
img {
height: auto
}
h1,
h2,
h3,
h4,
h5 {
font-weight: 600;
margin-top: 0;
color: #222
}
.secondary-font-family {
font-family: Montserrat, sans-serif
}
button,
a.action.primary {
border-radius: 0
}
button {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 0;
height: 40px;
line-height: 36px;
padding: 0 15px;
font-size: 12px;
text-transform: uppercase;
transition: all .3s ease;
font-family: Montserrat, sans-serif
}
button:hover {
background-color: #c99947;
border-color: #c99947;
color: #fff
}
button:focus {
outline: none !important
}
button.disabled,
button[disabled],
fieldset[disabled] button {
opacity: .5 !important;
cursor: default !important
}
button.dark {
background-color: #222;
border-color: #222;
color: #fff;
padding-left: 30px;
padding-right: 30px;
font-size: 12px;
font-weight: 600
}
button.dark:hover {
background-color: #c99947;
border-color: #c99947;
color: #fff
}
input[type="text"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="email"],
textarea {
border: 0;
padding: 8px 20px;
font-size: inherit;
line-height: inherit;
color: inherit;
font-weight: inherit;
max-width: 100%;
border-radius: 0 !important;
background: 0 0;
box-shadow: 0 0 0 1px #e5e5e5 inset;
-webkit-appearance: none;
-moz-appearance: none;
outline: 0;
margin: 0
}
input[type="text"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="email"] {
height: 40px
}
input[type="radio"] {
margin-top: 4px
}
.text-primary,
.theme-color {
color: #c99947 !important
}
@-webkit-keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
animation-timing-function: cubic-bezier(.755, .05, .855, .06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0)
}
70% {
-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
animation-timing-function: cubic-bezier(.755, .05, .855, .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 {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
animation-timing-function: cubic-bezier(.755, .05, .855, .06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0)
}
70% {
-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
animation-timing-function: cubic-bezier(.755, .05, .855, .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 {
from,
50%,
to {
opacity: 1
}
25%,
75% {
opacity: 0
}
}
@keyframes flash {
from,
50%,
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, .75, 1);
transform: scale3d(1.25, .75, 1)
}
40% {
-webkit-transform: scale3d(.75, 1.25, 1);
transform: scale3d(.75, 1.25, 1)
}
50% {
-webkit-transform: scale3d(1.15, .85, 1);
transform: scale3d(1.15, .85, 1)
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1)
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .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, .75, 1);
transform: scale3d(1.25, .75, 1)
}
40% {
-webkit-transform: scale3d(.75, 1.25, 1);
transform: scale3d(.75, 1.25, 1)
}
50% {
-webkit-transform: scale3d(1.15, .85, 1);
transform: scale3d(1.15, .85, 1)
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1)
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .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, 0);
transform: rotate3d(0, 0, 1, 0)
}
}
@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, 0);
transform: rotate3d(0, 0, 1, 0)
}
}
.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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes wobble {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble
}
@-webkit-keyframes jello {
from,
11.1%,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
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(-.78125deg) skewY(-.78125deg);
transform: skewX(-.78125deg) skewY(-.78125deg)
}
77.7% {
-webkit-transform: skewX(.390625deg) skewY(.390625deg);
transform: skewX(.390625deg) skewY(.390625deg)
}
88.8% {
-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
transform: skewX(-.1953125deg) skewY(-.1953125deg)
}
}
@keyframes jello {
from,
11.1%,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
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(-.78125deg) skewY(-.78125deg);
transform: skewX(-.78125deg) skewY(-.78125deg)
}
77.7% {
-webkit-transform: skewX(.390625deg) skewY(.390625deg);
transform: skewX(.390625deg) skewY(.390625deg)
}
88.8% {
-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
transform: skewX(-.1953125deg) skewY(-.1953125deg)
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center
}
@-webkit-keyframes heartBeat {
0% {
-webkit-transform: scale(1);
transform: scale(1)
}
14% {
-webkit-transform: scale(1.3);
transform: scale(1.3)
}
28% {
-webkit-transform: scale(1);
transform: scale(1)
}
42% {
-webkit-transform: scale(1.3);
transform: scale(1.3)
}
70% {
-webkit-transform: scale(1);
transform: scale(1)
}
}
@keyframes heartBeat {
0% {
-webkit-transform: scale(1);
transform: scale(1)
}
14% {
-webkit-transform: scale(1.3);
transform: scale(1.3)
}
28% {
-webkit-transform: scale(1);
transform: scale(1)
}
42% {
-webkit-transform: scale(1.3);
transform: scale(1.3)
}
70% {
-webkit-transform: scale(1);
transform: scale(1)
}
}
.heartBeat {
-webkit-animation-name: heartBeat;
animation-name: heartBeat;
-webkit-animation-duration: 1.3s;
animation-duration: 1.3s;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
@-webkit-keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1)
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .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(.97, .97, .97);
transform: scale3d(.97, .97, .97)
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
@keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1)
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .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(.97, .97, .97);
transform: scale3d(.97, .97, .97)
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
.bounceIn {
-webkit-animation-duration: .75s;
animation-duration: .75s;
-webkit-animation-name: bounceIn;
animation-name: bounceIn
}
@-webkit-keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3e3px, 0);
transform: translate3d(0, -3e3px, 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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3e3px, 0);
transform: translate3d(0, -3e3px, 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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown
}
@-webkit-keyframes bounceInLeft {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3e3px, 0, 0);
transform: translate3d(-3e3px, 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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes bounceInLeft {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3e3px, 0, 0);
transform: translate3d(-3e3px, 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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft
}
@-webkit-keyframes bounceInRight {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(3e3px, 0, 0);
transform: translate3d(3e3px, 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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes bounceInRight {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(3e3px, 0, 0);
transform: translate3d(3e3px, 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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight
}
@-webkit-keyframes bounceInUp {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3e3px, 0);
transform: translate3d(0, 3e3px, 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 {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3e3px, 0);
transform: translate3d(0, 3e3px, 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(.9, .9, .9);
transform: scale3d(.9, .9, .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(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .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(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
}
.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
-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, 2e3px, 0);
transform: translate3d(0, 2e3px, 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, 2e3px, 0);
transform: translate3d(0, 2e3px, 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(-2e3px, 0, 0);
transform: translate3d(-2e3px, 0, 0)
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(-2e3px, 0, 0);
transform: translate3d(-2e3px, 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(2e3px, 0, 0);
transform: translate3d(2e3px, 0, 0)
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(2e3px, 0, 0);
transform: translate3d(2e3px, 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, -2e3px, 0);
transform: translate3d(0, -2e3px, 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, -2e3px, 0);
transform: translate3d(0, -2e3px, 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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2e3px, 0);
transform: translate3d(0, -2e3px, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2e3px, 0);
transform: translate3d(0, -2e3px, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2e3px, 0, 0);
transform: translate3d(-2e3px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2e3px, 0, 0);
transform: translate3d(-2e3px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2e3px, 0, 0);
transform: translate3d(2e3px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2e3px, 0, 0);
transform: translate3d(2e3px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2e3px, 0);
transform: translate3d(0, 2e3px, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2e3px, 0);
transform: translate3d(0, 2e3px, 0)
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.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, 2e3px, 0);
transform: translate3d(0, 2e3px, 0)
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2e3px, 0);
transform: translate3d(0, 2e3px, 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(-2e3px, 0, 0);
transform: translate3d(-2e3px, 0, 0)
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(-2e3px, 0, 0);
transform: translate3d(-2e3px, 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(2e3px, 0, 0);
transform: translate3d(2e3px, 0, 0)
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(2e3px, 0, 0);
transform: translate3d(2e3px, 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, -2e3px, 0);
transform: translate3d(0, -2e3px, 0)
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2e3px, 0);
transform: translate3d(0, -2e3px, 0)
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
40% {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) scale3d(1, 1, 1) 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(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
to {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
40% {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) scale3d(1, 1, 1) 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(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
to {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
-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-duration: .75s;
animation-duration: .75s;
-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-animation-duration: .75s;
animation-duration: .75s;
-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)
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@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)
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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-duration: 2s;
animation-duration: 2s;
-webkit-animation-name: hinge;
animation-name: hinge
}
@-webkit-keyframes jackInTheBox {
from {
opacity: 0;
-webkit-transform: scale(.1) rotate(30deg);
transform: scale(.1) rotate(30deg);
-webkit-transform-origin: center bottom;
transform-origin: center bottom
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg)
}
70% {
-webkit-transform: rotate(3deg);
transform: rotate(3deg)
}
to {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1)
}
}
@keyframes jackInTheBox {
from {
opacity: 0;
-webkit-transform: scale(.1) rotate(30deg);
transform: scale(.1) rotate(30deg);
-webkit-transform-origin: center bottom;
transform-origin: center bottom
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg)
}
70% {
-webkit-transform: rotate(3deg);
transform: rotate(3deg)
}
to {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1)
}
}
.jackInTheBox {
-webkit-animation-name: jackInTheBox;
animation-name: jackInTheBox
}
@-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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.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(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
50% {
opacity: 1
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
50% {
opacity: 1
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1e3px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1e3px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1e3px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1e3px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1e3px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1e3px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1e3px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1e3px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1e3px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1e3px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1e3px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1e3px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp
}
@-webkit-keyframes zoomOut {
from {
opacity: 1
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
to {
opacity: 0
}
}
@keyframes zoomOut {
from {
opacity: 1
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3)
}
to {
opacity: 0
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2e3px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2e3px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2e3px, 0, 0);
transform: scale(.1) translate3d(-2e3px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2e3px, 0, 0);
transform: scale(.1) translate3d(-2e3px, 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(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2e3px, 0, 0);
transform: scale(.1) translate3d(2e3px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2e3px, 0, 0);
transform: scale(.1) translate3d(2e3px, 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(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2e3px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2e3px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2e3px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
animation-timing-function: cubic-bezier(.175, .885, .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
}
.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.delay-1s {
-webkit-animation-delay: 1s;
animation-delay: 1s
}
.animated.delay-2s {
-webkit-animation-delay: 2s;
animation-delay: 2s
}
.animated.delay-3s {
-webkit-animation-delay: 3s;
animation-delay: 3s
}
.animated.delay-4s {
-webkit-animation-delay: 4s;
animation-delay: 4s
}
.animated.delay-5s {
-webkit-animation-delay: 5s;
animation-delay: 5s
}
.animated.fast {
-webkit-animation-duration: 800ms;
animation-duration: 800ms
}
.animated.faster {
-webkit-animation-duration: 500ms;
animation-duration: 500ms
}
.animated.slow {
-webkit-animation-duration: 2s;
animation-duration: 2s
}
.animated.slower {
-webkit-animation-duration: 3s;
animation-duration: 3s
}
@media(prefers-reduced-motion) {
.animated {
-webkit-animation: unset !important;
animation: unset !important;
-webkit-transition: none !important;
transition: none !important
}
}
.page-main {
padding-left: 15px;
padding-right: 15px
}
.columns .column.main {
padding-bottom: 0
}
@media (min-width: 1200px) {
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
max-width: 1200px
}
}
@media (max-width: 991px) {
.breadcrumbs,
.page-wrapper>.widget,
.page-wrapper>.page-bottom,
.block.category.event,
.page-main {
max-width: 720px;
margin-left: auto;
margin-right: auto;
width: 100%
}
}
@media (max-width: 767px) {
.breadcrumbs,
.page-wrapper>.widget,
.page-wrapper>.page-bottom,
.block.category.event,
.page-main {
max-width: 540px
}
}
.action.primary {
height: 38px;
line-height: 38px;
border: 0;
text-align: center;
padding: 0 30px;
background-color: #222;
color: #fff;
border-radius: 0;
transition: all .3s ease;
text-transform: uppercase;
font-size: 12px;
font-family: Montserrat, sans-serif
}
.action.primary:visited,
.action.primary:focus {
background-color: #222;
color: #fff;
border: 0
}
.action.primary:hover {
background-color: #c99947;
border: 0
}
.box-settings {
position: relative
}
.box-settings .settings-wrapper {
position: absolute;
cursor: default;
top: 100%;
right: 0;
z-index: 999;
visibility: hidden;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease, visibility 0.4s linear 0s;
-moz-transition: opacity 0.4s ease, -moz-transform 0.4s ease, visibility 0.4s linear 0s;
-ms-transition: opacity 0.4s ease, -ms-transform 0.4s ease, visibility 0.4s linear 0s;
-o-transition: opacity 0.4s ease, -o-transform 0.4s ease, visibility 0.4s linear 0s;
transition: opacity .4s ease, transform .4s ease, visibility .4s linear 0s;
-webkit-transform: translateY(20px);
-moz-transform: translateY(20px);
-ms-transform: translateY(20px);
-o-transform: translateY(20px);
transform: translateY(20px)
}
.box-settings.open .settings-wrapper,
.box-settings:hover .settings-wrapper {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
opacity: 1;
filter: alpha(opacity=100);
visibility: inherit
}
.box-settings .setting-content {
background: #fff;
text-align: left;
width: 290px;
float: left;
padding: 25px;
padding-top: 13px;
border: 1px solid #ccc;
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19)
}
.box-settings .setting-content .switcher {
display: block;
border-bottom: 1px dotted #ccc;
padding-top: 12px;
padding-bottom: 20px;
margin: 0
}
.switcher .switcher-options {
list-style: none;
padding: 0;
margin: 0
}
.switcher .switcher-label {
display: block;
font-size: 11px;
text-transform: uppercase;
color: #333;
margin-bottom: 7px
}
.switcher .switcher-options>li {
display: inline-block;
vertical-align: middle;
margin-right: 2px
}
.switcher-currency .switcher-options>li>* {
background-color: #eee;
color: #333;
padding: 0 15px;
display: inline-block;
font-size: 12px;
line-height: 20px;
font-family: Montserrat;
font-weight: 600;
transition: all .3s
}
.switcher-currency .switcher-options>li>span,
.switcher-currency .switcher-options>li>a:hover {
background-color: #4f4f4f;
color: #fff
}
.switcher-language .switcher-options>li img {
transition: all .3s
}
.switcher-language .switcher-options>li>span>img,
.switcher-language .switcher-options>li>a:hover>img {
box-shadow: 0 0 2px 1px #4f4f4f
}
.box-settings ul.header.links {
padding: 0 0 0 17px;
margin: 15px 0 0;
font-size: 14px;
line-height: 24px;
color: #555
}
.box-settings ul.header.links a:hover {
color: #c99947
}
.top-bar {
position: relative;
z-index: 6
}
@media (min-width: 992px) {
.page-header .nav-sections .switcher {
display: none
}
}
.logo {
margin: 0;
z-index: 1
}
.logo .sticky-logo {
display: none
}
.block-search {
float: right;
padding-left: 15px;
position: relative;
width: 250px;
z-index: 4;
margin: 0
}
.block-search .label {
display: none
}
.block-search input {
height: 50px;
box-shadow: none !important;
padding: 13px 30px 13px 0;
border: 0;
background-color: #fff;
font-size: 13px;
line-height: inherit;
text-align: inherit;
color: inherit !important;
position: static;
margin: 0
}
.block-search .action.search.disabled,
.block-search .action.search[disabled],
fieldset[disabled] .block-search .action.search {
pointer-events: none;
opacity: .5
}
.block-search .action.search {
display: inline-block;
background-image: none;
background: none;
-moz-box-sizing: border-box;
border: 0;
box-shadow: none;
margin: 0;
text-decoration: none;
text-shadow: none;
font-weight: 400;
position: absolute;
top: 0;
z-index: 1;
line-height: 24px;
padding: 14px 0;
right: 0;
height: 50px;
font-size: 23px
}
.block-search .action.search:before {
display: none
}
.block-search .action.search>span {
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px
}
.box-settings>span.icon {
font-size: 24px;
color: #222;
font-weight: 400;
line-height: 50px;
width: 36px;
text-align: right;
cursor: pointer;
transition: all .3s ease
}
.box-settings>span.icon:hover {
color: #c99947
}
.minicart-wrapper .action.showcart:before,
.minicart-wrapper .action.showcart.active:before {
font-family: Pe-icon-7-stroke, sans-serif;
content: "\e66e"
}
.block-search .control {
border: 0;
margin: 0
}
.nav-toggle:before,
.nav-toggle:hover:before {
color: inherit
}
.breadcrumbs {
padding: 12px 15px;
margin-bottom: 20px
}
.breadcrumbs .items {
font-size: 14px;
font-family: Montserrat;
font-weight: 400;
color: inherit;
line-height: 26px
}
.breadcrumbs a,
.breadcrumbs a:visited {
color: #222
}
.breadcrumbs a:hover {
color: #c99947;
text-decoration: none
}
.breadcrumbs .item:not(:last-child):after {
content: '/';
font-family: Montserrat;
font-size: 14px;
line-height: 26px;
padding: 0 5px
}
.page-main>.page-title-wrapper {
display: none
}
.filter-options .filter-options-title {
color: #222;
font-family: Montserrat;
font-size: 15px;
font-weight: 600;
line-height: 24px;
padding: 3px 0;
margin-bottom: 15px;
border: 0
}
.toolbar .limiter-text {
display: none
}
.toolbar .limiter-options {
margin-right: 0
}
.toolbar-products~.toolbar-products {
border-top: 1px solid #e5e5e5;
padding: 0;
padding-top: 25px
}
.pages .pagination {
background: transparent
}
.pages .item {
font-family: Montserrat;
font-size: 16px;
font-weight: 600;
margin: 0;
min-width: 33px;
color: #222
}
.pages .item.current .page-numbers>span.label+span {
display: inline-block;
border-bottom: 1px solid;
line-height: 18px
}
.pages .item a,
.pages a.page:visited {
color: inherit
}
.pages .item a:hover {
color: #c99947
}
.pages .action.next,
.pages .action.prev {
margin: 0;
border: 0
}
.pages .action.next:before,
.pages .action.prev:before {
content: '\f30b';
font-family: 'Font Awesome 5 Free';
font-weight: 600;
font-size: 16px;
line-height: 30px
}
.pages .action.prev:before {
content: '\f30a'
}
.pages .action.prev:before,
.pages .action.prev:visited:before,
.pages .action.next:before,
.pages .action.next:visited:before {
color: inherit
}
.pages .action.next:hover:before,
.pages .action.prev:hover:before {
color: #c99947
}
.pages .action.next>span,
.pages .action.prev>span {
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px
}
strong.modes-label {
display: none
}
.sorter-action:hover:before,
.modes-mode:hover:before {
color: #c99947
}
.sorter-action:before,
.modes-mode:before {
color: #999
}
.modes-mode.active:before {
color: #222
}
@media (max-width: 767px) {
.minicart-wrapper {
margin-top: 0
}
}
.product-image-photo {
position: static
}
#totop {
position: fixed;
bottom: 100px;
right: 30px;
width: 40px;
height: 40px;
font-size: 16px;
line-height: 40px;
text-align: center;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
overflow: hidden;
z-index: 9;
color: #fff;
background-color: #222;
font-weight: 400
}
#totop:not(.backIn) {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0)
}
#totop:hover {
background-color: #c99947
}
.product.data.items>.item.content {
border: 0;
padding: 20px 0
}
.product.info.detailed .product.attribute.description p {
margin-bottom: 20px
}
.product.info.detailed .product.attribute.description {
font-size: 14px
}
.product.info.detailed .additional-attributes>tbody>tr>th,
.product.info.detailed .additional-attributes>tfoot>tr>th {
color: #555;
font-weight: 600;
font-size: 14px
}
.product.info.detailed .additional-attributes>tbody>tr>th,
.product.info.detailed .additional-attributes>tfoot>tr>th,
.product.info.detailed .additional-attributes>tbody>tr>td,
.product.info.detailed .additional-attributes>tfoot>tr>td {
font-size: 14px
}
.review-list .block-title strong {
font-family: Montserrat, sans-serif;
font-size: 20px;
font-weight: 600;
color: #222
}
.review-title {
font-weight: 600;
font-size: 16px
}
.fieldset .review-legend.legend {
font-size: 20px;
font-weight: 600;
font-family: Montserrat, sans-serif;
color: #222
}
.fieldset>.field:not(.choice)>.label {
font-size: 15px;
font-weight: 600;
color: #222;
float: none;
margin-bottom: 5px;
padding: 0;
text-align: left;
width: auto
}
.fieldset>.field:not(.choice)>.control {
float: none;
width: auto
}
.fieldset>.legend {
margin-left: 0
}
.abs-margin-for-forms-desktop,
.fieldset .legend,
.column:not(.sidebar-main) form .actions-toolbar,
.column:not(.sidebar-additional) form .actions-toolbar,
.login-container .fieldset:after {
margin-left: 0
}
.review-field-ratings .review-field-rating .control {
padding-top: 5px
}
.review-ratings .rating-label,
.review-field-ratings .review-field-rating .label {
display: none
}
.review-control-vote label:before {
font-family: 'Font Awesome 5 Free';
color: #c99947
}
.review-control-vote .rating-1:before {
content: '\f005';
font-size: 16px;
letter-spacing: 1px
}
.review-control-vote .rating-2:before {
content: '\f005''\f005';
font-size: 16px;
letter-spacing: 1px
}
.review-control-vote .rating-3:before {
content: '\f005''\f005''\f005';
font-size: 16px;
letter-spacing: 1px
}
.review-control-vote .rating-4:before {
content: '\f005''\f005''\f005''\f005';
font-size: 16px;
letter-spacing: 1px
}
.review-control-vote .rating-5:before {
content: '\f005''\f005''\f005''\f005''\f005';
font-size: 16px;
letter-spacing: 1px
}
.review-control-vote:before {
font-family: 'Font Awesome 5 Free';
content: '\f005''\f005''\f005''\f005''\f005';
font-size: 16px;
letter-spacing: 1px
}
.review-form .action.submit.primary {
position: relative;
display: inline-block;
vertical-align: top;
font-family: Montserrat, sans-serif;
font-size: 12px;
line-height: 24px;
font-weight: 600;
text-transform: uppercase;
padding: 8px 30px;
border: 0;
background-color: #222;
color: #fff;
text-align: center;
cursor: pointer;
border-radius: 0;
-webkit-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
-moz-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
-o-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease
}
.review-form .action.submit.primary:focus,
.review-form .action.submit.primary:active {
border: 0;
background-color: #222;
color: #fff
}
.review-form .action.submit.primary:hover {
border: 0;
background-color: #c99947;
color: #fff
}
#tab-label-reviews-title .counter:before {
content: '('
}
#tab-label-reviews-title .counter:after {
content: ')'
}
.product.data.items>.item.title>.switch {
height: auto;
padding: 0;
border: 0;
line-height: 28px;
border-bottom: 2px solid transparent;
text-transform: uppercase;
background-color: transparent;
font-family: Montserrat, sans-serif;
font-size: 14px;
font-weight: 600;
color: #999
}
.product.data.items>.item.title.active>.switch,
.product.data.items>.item.title.active>.switch:focus,
.product.data.items>.item.title.active>.switch:hover {
padding-bottom: 0;
border-bottom: 2px solid
}
.product.data.items>.item.title>.switch:hover {
color: #c99947;
background-color: transparent !important
}
.product.data.items>.item.title:not(.disabled)>.switch:active,
.product.data.items>.item.title.active>.switch,
.product.data.items>.item.title.active>.switch:focus,
.product.data.items>.item.title.active>.switch:hover {
padding-bottom: 0
}
@media (min-width: 992px) {
.product.data.items>.item.title {
margin: 0;
margin-left: 30px
}
.product.data.items>.item.title:first-child {
margin-left: 0
}
}
.catalog-product-view .column.main>.block,
.column.main .block.crosssell {
border-top: 1px solid #e5e5e5;
padding-top: 30px
}
.catalog-product-view .column.main>.block .title,
.column.main .block.crosssell .title {
text-align: center;
display: block;
color: #222
}
.catalog-product-view .column.main>.block .title strong,
.column.main .block.crosssell .title strong {
display: inline-block;
vertical-align: top;
font-size: 24px;
line-height: 36px;
position: relative;
margin: 0;
padding: 0 15px 6px;
font-family: Montserrat, sans-serif;
text-transform: uppercase;
font-weight: 600
}
.catalog-product-view .column.main>.block .title strong:before,
.column.main .block.crosssell .title strong:before {
position: absolute;
content: '';
left: 0;
top: 17px;
width: 50px;
height: 2px;
background-color: #c99947;
z-index: -1
}
.block.upsell .product-item-details .product-item-actions,
.field.choice.related {
margin-top: 15px
}
.field.choice.related input[type="checkbox"] {
margin-top: -4px
}
.field.choice.related .label {
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
font-family: Montserrat, sans-serif;
color: #222
}
.page-product-downloadable .product-options-bottom>div {
display: inline-block;
vertical-align: middle;
width: auto;
margin-bottom: 10px
}
.bundle-actions .action.primary,
.bundle-options-container .block-bundle-summary .box-tocart .action.primary,
.form-address-edit .actions-toolbar .action.primary,
.multicheckout .action.primary,
.cart-container .checkout-methods-items .action.primary,
.block-minicart .block-content>.actions>.primary .action.primary,
.methods-shipping .actions-toolbar .action.primary,
.block-authentication .action.action-register,
.block-authentication .action.action-login,
.checkout-payment-method .payment-method-content>.actions-toolbar>.primary .action.primary {
padding: 0 30px;
font-size: 12px
}
.bundle-options-container .legend.title {
font-family: Montserrat, sans-serif;
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
color: #222
}
.bundle-options-container .nested .field.qty {
display: block;
text-align: left;
margin-bottom: 20px
}
.bundle-info .product-image-photo {
position: absolute
}
.bundle-options-container .block-bundle-summary {
background-color: transparent;
border: 1px solid #e5e5e5;
padding: 20px
}
.bundle-options-container .block-bundle-summary>.title {
margin-bottom: 20px
}
.bundle-options-container .block-bundle-summary>.title>strong {
font-family: Montserrat, sans-serif;
font-weight: 600;
font-size: 16px;
text-transform: uppercase;
color: #222
}
.bundle-options-container .block-bundle-summary .product-details .product.name {
font-family: Montserrat, sans-serif;
font-size: 12px;
font-weight: 600;
color: #222;
text-transform: uppercase
}
.product-add-form .fieldset>.field:not(.choice)>.label,
.product-add-form .fieldset .fields>.field:not(.choice)>.label {
display: none
}
.bundle-options-container .block-bundle-summary .field.qty .control .input-text.qty {
width: 92px;
height: 38px
}
.bundle-options-container .block-bundle-summary .field.qty,
.bundle-options-container .block-bundle-summary .box-tocart .actions {
vertical-align: middle;
margin-right: 10px
}
.bundle-options-container .block-bundle-summary .bundle-summary>.subtitle {
font-family: Montserrat, sans-serif;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
color: #222
}
.bundle-options-container .block-bundle-summary .bundle-summary {
font-size: 12px
}
.table:not(.cart):not(.totals)>thead>tr>th,
.table:not(.cart):not(.totals)>thead>tr>td {
font-family: Montserrat, sans-serif;
font-weight: 600;
font-size: 14px;
text-transform: uppercase
}
.table.grouped .product-item-name {
font-family: Montserrat, sans-serif;
font-size: 12px;
text-transform: uppercase;
font-weight: 600
}
.product-info-main .table.grouped .price-box .price-wrapper .price {
font-size: 16px
}
.product-info-main .price-box .old-price .price-wrapper .price,
.product-options-bottom .price-box .old-price .price-wrapper .price {
color: #aaa;
font-size: 20px
}
.old-price .price {
color: #aaa !important;
display: inline-block;
font-weight: 400 !important;
transform: scale(0.85)
}
.product-options-bottom .box-tocart {
margin-top: 10px
}
@media (max-width: 991px) {
.abs-button-responsive-smaller,
.product-info-main .box-tocart .actions .action.tocart {
width: auto
}
}
.fotorama__arr--next .fotorama__arr__arr {
text-align: center;
line-height: 80px;
background: none
}
.fotorama__arr--next .fotorama__arr__arr:before {
content: '\f054';
font-family: 'Font Awesome 5 Free';
font-size: 30px;
font-weight: 600
}
.fotorama__arr--prev .fotorama__arr__arr {
text-align: center;
line-height: 80px;
background: none
}
.fotorama__arr--prev .fotorama__arr__arr:before {
content: '\f053';
font-family: 'Font Awesome 5 Free';
font-size: 30px;
font-weight: 600
}
.fotorama__arr {
width: 40px
}
.fotorama--fullscreen .fotorama__arr {
width: 80px
}
.fotorama__arr,
.fotorama__thumb__arr,
.fotorama__arr:hover,
.fotorama__thumb__arr:hover,
.fotorama__arr:active,
.fotorama__thumb__arr:active {
background: none
}
.fotorama--fullscreen .fotorama__fullscreen-icon,
.fotorama__fullscreen .fotorama__zoom-in,
.fotorama__fullscreen .fotorama__zoom-out {
background: none;
text-align: center;
line-height: 80px
}
.fotorama--fullscreen .fotorama__fullscreen-icon:before {
content: '\f00d';
font-family: 'Font Awesome 5 Free';
font-size: 30px;
font-weight: 600
}
.fotorama__fullscreen .fotorama__zoom-in:before {
content: '\f00e';
font-family: 'Font Awesome 5 Free';
font-size: 30px;
font-weight: 600
}
.fotorama__fullscreen .fotorama__zoom-out:before {
content: '\f010';
font-family: 'Font Awesome 5 Free';
font-size: 30px;
font-weight: 600
}
.fotorama__thumb-border {
border-color: #c99947
}
.fotorama__arr--next .fotorama__arr__arr:hover,
.fotorama__arr--prev .fotorama__arr__arr:hover,
.fotorama--fullscreen .fotorama__fullscreen-icon:hover,
.fotorama__fullscreen .fotorama__zoom-in:hover,
.fotorama__fullscreen .fotorama__zoom-out:hover {
color: #c99947
}
.modal-popup.confirm .modal-inner-wrap .modal-content {
padding: 30px;
border: 0
}
.modal-popup .action-close {
padding: 4px
}
.modal-popup .modal-footer {
padding: 10px
}
.minicart-items .product-item-details .price {
font-weight: 600;
color: #222
}
.minicart-wrapper .block-minicart {
font-family: Montserrat, sans-serif
}
.checkout-index-index .page-main>.page-title-wrapper,
.checkout-onepage-success .page-main>.page-title-wrapper {
display: block;
height: auto;
width: auto;
clip: auto;
position: static
}
body[class*="customer-account"] .page-title-wrapper {
display: block;
text-align: left;
margin: 0
}
.checkout-index-index .page-main>.page-title-wrapper .page-title,
.checkout-onepage-success .page-main>.page-title-wrapper .page-title,
body[class*="customer-account"] .page-main>.page-title-wrapper .page-title {
font-weight: 600;
color: #222;
padding: 50px 0;
text-transform: uppercase;
display: block;
font-size: 24px;
line-height: 36px;
margin-bottom: 0
}
.authentication-wrapper {
margin-top: -88px
}
.action.action-auth-toggle {
color: #222;
font-family: Montserrat, sans-serif;
font-weight: 600
}
.modal-content {
border: 0;
box-shadow: none
}
.modal-custom .action-close {
margin: 0
}
.modal-header {
margin: 0;
border: 0
}
.block-authentication .block-title {
display: none
}
.block-authentication .block[class] .field .control,
.block-authentication .block[class] .field .label {
text-transform: uppercase;
font-size: 12px;
margin-bottom: 10px
}
.block-authentication .fieldset>.field {
margin-bottom: 0
}
.authentication-dropdown {
border-color: #e5e5e5;
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19)
}
.block-authentication .actions-toolbar {
margin: 0 !important
}
.block-authentication .actions-toolbar>.secondary {
padding: 0;
margin: 0
}
.actions-toolbar .secondary a.action {
margin: 0;
line-height: 40px;
text-transform: uppercase;
font-family: Montserrat, sans-serif;
font-weight: 600;
font-size: 10px
}
.minicart-items .product-item-name {
font-family: Montserrat, sans-serif;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
color: #222
}
.payment-option.discount-code {
border: 3px dashed #aaa;
padding: 10px 20px 80px;
text-align: center;
height: 200px
}
.checkout-payment-method .payment-option.discount-code .payment-option-title {
pointer-events: none;
text-align: left;
margin-bottom: 39px;
border: 0;
padding: 0
}
.checkout-payment-method .payment-option.discount-code .payment-option-title .action-toggle {
font-family: playfair display, sans-serif;
font-size: 18px;
line-height: 30px;
font-style: italic;
text-align: left;
color: #222;
font-weight: 600
}
.checkout-payment-method .payment-option.discount-code .payment-option-title .action-toggle:before,
.checkout-payment-method .payment-option.discount-code .payment-option-title .action-toggle:after {
display: none
}
.payment-option.discount-code .payment-option-content {
display: block !important
}
.checkout-payment-method .form-discount {
margin: 0 auto
}
.opc-block-shipping-information .shipping-information-title .action-edit {
height: 28px;
top: -4px
}
.opc-block-shipping-information .shipping-information-title .action-edit:before {
color: #222
}
.opc-block-shipping-information .shipping-information-title .action-edit:hover:before {
color: #c99947
}
.checkout-index-index .opc-wrapper .step-title,
.checkout-index-index .opc-block-shipping-information .shipping-information-title,
.checkout-index-index .opc-block-summary>.title,
.checkout-index-index .checkout-agreements-items .checkout-agreements-item-title {
font-family: Montserrat, sans-serif;
font-weight: 600;
font-size: 14px
}
.checkout-billing-address .actions-toolbar .action-cancel {
margin-top: 0;
font-family: Montserrat, sans-serif;
font-size: 12px;
font-weight: 600;
color: #222
}
.checkout-billing-address .actions-toolbar .action-cancel:hover {
color: #c99947;
text-decoration: none
}
.account.page-layout-2columns-left .sidebar-additional {
display: none
}
.abs-account-blocks .block-title>strong,
.block-giftregistry-results .block-title>strong,
.block-giftregistry-shared-items .block-title>strong,
.block-wishlist-search-results .block-title>strong,
.block-reorder .block-title>strong,
.block-compare .block-title>strong,
.widget .block-title>strong,
.block-wishlist .block-title>strong,
.multicheckout .block-title>strong,
.paypal-review .block .block-title>strong,
.magento-rma-guest-returns .column.main .block:not(.widget) .block-title>strong,
[class^='sales-guest-'] .column.main .block:not(.widget) .block-title>strong,
.sales-guest-view .column.main .block:not(.widget) .block-title>strong,
.account .column.main .block:not(.widget) .block-title>strong,
.fieldset>.legend {
font-family: Montserrat, sans-serif;
font-weight: 600;
color: #222;
text-transform: uppercase
}
.box-settings ul.header.links a.compare.no-display {
display: inherit !important
}
.plus-zoom::after,
.plus-zoom::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto;
width: 100%;
height: 100%;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease;
z-index: 2
}
.plus-zoom:hover::before {
width: 0;
background-color: rgba(255, 255, 255, .5)
}
.plus-zoom:hover::after {
height: 0;
background-color: rgba(255, 255, 255, .5)
}
.overlay-cross::after,
.overlay-cross::before,
.overlay-horizontal::after,
.overlay-horizontal::before,
.overlay-plus::after,
.overlay-plus::before,
.overlay-vertical::after,
.overlay-vertical::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
margin: auto;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease;
z-index: 2;
background-color: rgba(255, 255, 255, .15)
}
.overlay-plus::after,
.overlay-plus::before {
top: 0;
bottom: 0;
left: 0;
right: 0
}
.overlay-plus:not(:hover)::before {
width: 0
}
.overlay-plus:not(:hover)::after {
height: 0
}
.overlay-cross::before {
top: 0;
left: 0
}
.overlay-cross::after {
bottom: 0;
right: 0
}
.overlay-cross:not(:hover)::after,
.overlay-cross:not(:hover)::before {
width: 0;
height: 0
}
.overlay-horizontal::before {
top: 0;
left: 0;
bottom: 0
}
.overlay-horizontal::after {
top: 0;
right: 0;
bottom: 0
}
.overlay-horizontal:not(:hover)::after,
.overlay-horizontal:not(:hover)::before {
width: 0
}
.overlay-vertical::before {
top: 0;
left: 0;
right: 0
}
.overlay-vertical::after {
left: 0;
right: 0;
bottom: 0
}
.overlay-vertical:not(:hover)::after,
.overlay-vertical:not(:hover)::before {
height: 0
}
.border-zoom {
overflow: hidden
}
.border-zoom::after,
.border-zoom::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease;
z-index: 2;
opacity: 0
}
.border-zoom::before {
background-color: #000
}
.border-zoom::after {
top: -15px;
bottom: -15px;
left: -15px;
right: -15px;
border: 2px solid #fff
}
.border-zoom:hover::before {
opacity: .3
}
.border-zoom:hover::after {
top: 15px;
bottom: 15px;
left: 15px;
right: 15px;
opacity: 1
}
.border-scale {
background-color: #000
}
.border-scale figure.not-image,
.border-scale img {
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.border-scale:hover figure.not-image,
.border-scale:hover img {
opacity: .7
}
.border-scale::after,
.border-scale::before {
content: '';
position: absolute;
z-index: 2;
border: solid #fff;
top: 15px;
bottom: 15px;
left: 15px;
right: 15px;
margin: auto;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
.border-scale::before {
border-width: 2px 0
}
.border-scale::after {
border-width: 0 2px
}
.border-scale:not(:hover)::before {
left: 50%;
right: 50%
}
.border-scale:not(:hover)::after {
top: 50%;
bottom: 50%
}
.border-plus {
background-color: #000
}
.border-plus figure.not-image,
.border-plus img {
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.border-plus:hover figure.not-image,
.border-plus:hover img {
opacity: .7
}
.border-plus::after,
.border-plus::before {
content: '';
position: absolute;
z-index: 2;
border: solid #fff;
margin: auto;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
.border-plus::before {
top: 15px;
bottom: 15px;
left: 30px;
right: 30px;
border-width: 0 2px
}
.border-plus::after {
top: 30px;
bottom: 30px;
left: 15px;
right: 15px;
border-width: 2px 0
}
.border-plus:not(:hover)::before {
left: 50%;
right: 50%;
opacity: 0
}
.border-plus:not(:hover)::after {
top: 50%;
bottom: 50%;
opacity: 0
}
.boutique-iconbox .icon {
display: inline-block;
vertical-align: top
}
.boutique-iconbox .icon img {
display: inline-block !important;
vertical-align: top
}
@-webkit-keyframes kt_shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
17%,
50%,
83% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0)
}
33%,
67% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0)
}
}
@keyframes kt_shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
17%,
50%,
83% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0)
}
33%,
67% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0)
}
}
.boutique-iconbox .icon>*:before {
display: inline-block
}
.boutique-iconbox.style-01 {
position: relative;
overflow: hidden
}
.boutique-iconbox.style-01::after,
.boutique-iconbox.style-01::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
border-style: dashed;
margin: auto;
-webkit-transition: all .4s ease;
-moz-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease
}
.boutique-iconbox.style-01::before {
width: 0;
border-width: 1px 0
}
.boutique-iconbox.style-01::after {
height: 0;
border-width: 0 1px
}
.boutique-iconbox.style-01:hover::before {
width: 100%
}
.boutique-iconbox.style-01:hover::after {
height: 100%
}
.boutique-iconbox.style-01 .iconbox-inner {
font-size: 0;
line-height: 0;
padding: 50px 30px;
border: 1px dashed #ddd;
text-align: center
}
.boutique-iconbox.style-01 .iconbox-inner>* {
display: inline-block;
vertical-align: middle;
position: relative;
z-index: 1
}
.boutique-iconbox.style-01 .icon-wrap {
width: 30px;
font-size: 30px;
line-height: 1
}
.boutique-iconbox.style-01 .icon img {
max-width: 30px;
max-height: 30px
}
.boutique-iconbox.style-01 .content {
max-width: calc(100% - 30px);
padding-left: 15px
}
.boutique-iconbox.style-01 .title {
font-size: 12px;
line-height: 20px;
margin-bottom: 0;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease
}
.boutique-iconbox.style-01:hover .title {
color: inherit
}
.boutique-iconbox:not(.style-04) .fa-truck::before,
.boutique-iconbox:not(.style-04) .flaticon-boat::before,
.boutique-iconbox:not(.style-04) .flaticon-clock::before,
.boutique-iconbox:not(.style-04) .flaticon-plane::before,
.boutique-iconbox:not(.style-04) .flaticon-reload::before {
-webkit-transition: transform .5s ease, opacity .5s ease;
-moz-transition: transform .5s ease, opacity .5s ease;
-o-transition: transform .5s ease, opacity .5s ease;
transition: transform .5s ease, opacity .5s ease
}
.boutique-iconbox.style-02:hover .fa-truck::before {
-webkit-transform: translate(-70px, 0);
-moz-transform: translate(-70px, 0);
-ms-transform: translate(-70px, 0);
-o-transform: translate(-70px, 0);
transform: translate(-70px, 0)
}
.boutique-iconbox:not(.style-04):not(.style-02):hover .fa-truck::before {
-webkit-transform: translate(120px, 0);
-moz-transform: translate(120px, 0);
-ms-transform: translate(120px, 0);
-o-transform: translate(120px, 0);
transform: translate(120px, 0)
}
.boutique-iconbox.style-01:hover .flaticon-plane::before,
.boutique-iconbox.style-03:hover .flaticon-plane::before,
.boutique-iconbox.style-06:hover .flaticon-plane::before {
-webkit-transform: translate(50px, -90px);
-moz-transform: translate(50px, -90px);
-ms-transform: translate(50px, -90px);
-o-transform: translate(50px, -90px);
transform: translate(50px, -90px)
}
.boutique-iconbox:not(.style-04):not(.style-01):not(.style-03):not(.style-06):hover .flaticon-plane::before {
-webkit-transform: translate(30px, -50px);
-moz-transform: translate(30px, -50px);
-ms-transform: translate(30px, -50px);
-o-transform: translate(30px, -50px);
transform: translate(30px, -50px)
}
.boutique-iconbox:not(.style-04):hover .flaticon-reload::before {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg)
}
.boutique-iconbox:not(.style-04):hover .flaticon-clock::before {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg)
}
.boutique-iconbox:not(.style-04):hover .flaticon-boat::before {
opacity: 0;
-webkit-transform: scale(1.8);
-moz-transform: scale(1.8);
-ms-transform: scale(1.8);
-o-transform: scale(1.8);
transform: scale(1.8)
}
.boutique-iconbox:not(.style-04):hover .icon>:not(.fa-truck):not(.flaticon-plane):not(.flaticon-reload):not(.flaticon-clock):not(.flaticon-boat)::before,
.boutique-iconbox:not(.style-04):hover .icon>figure {
-webkit-animation: kt_shake .5s linear;
-o-animation: kt_shake .5s linear;
animation: kt_shake .5s linear
}
@media(max-width: 1199px) and (min-width:992px) {
.boutique-iconbox.style-01 .iconbox-inner {
padding: 50px 15px
}
}
@media(max-width: 479px) {
.boutique-iconbox.style-01 .iconbox-inner {
padding: 50px 15px
}
}
.boutique-iconbox.style-02 {
text-align: center
}
.boutique-iconbox.style-02 .icon-wrap {
display: inline-block;
vertical-align: top;
width: 80px;
font-size: 35px;
line-height: 36px;
margin-bottom: 20px;
position: relative;
color: #c99947;
-webkit-transition: color .2s ease;
-moz-transition: color .2s ease;
-o-transition: color .2s ease;
transition: color .2s ease
}
.boutique-iconbox.style-02 .icon-wrap::before {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
content: '';
border: 2px solid;
opacity: .8
}
.boutique-iconbox.style-02 .icon {
display: block;
position: relative;
overflow: hidden;
padding: 16px 0
}
.boutique-iconbox.style-02 .icon::after,
.boutique-iconbox.style-02 .icon::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
border-style: solid;
margin: auto;
-webkit-transition: all .4s ease;
-moz-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease
}
.boutique-iconbox.style-02 .icon::before {
width: 0;
border-width: 2px 0
}
.boutique-iconbox.style-02 .icon::after {
height: 0;
border-width: 0 2px
}
.boutique-iconbox.style-02:hover .icon::before {
width: 100%
}
.boutique-iconbox.style-02:hover .icon::after {
height: 100%
}
.boutique-iconbox.style-02 .icon img {
max-width: 35px;
max-height: 36px
}
.boutique-iconbox.style-02 .title {
font-size: 18px;
line-height: 30px;
font-weight: 400;
color: #fff;
margin-bottom: 2px;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease
}
.boutique-iconbox.style-02 .title span {
font-weight: 600
}
.boutique-iconbox.style-02 .desc {
font-family: playfair display, sans-serif;
font-style: italic;
margin-bottom: 0;
color: #c99947;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease
}
.boutique-iconbox.style-02 .iconbox-inner:hover .desc,
.boutique-iconbox.style-02 .iconbox-inner:hover .icon {
color: #fff
}
.boutique-iconbox.style-02 .iconbox-inner:hover .title {
color: #c99947
}
.boutique-iconbox.style-03 {
overflow: hidden;
padding: 40px 0
}
.boutique-iconbox.style-03 .iconbox-inner {
font-size: 0;
line-height: 0;
text-align: center
}
.boutique-iconbox.style-03 .iconbox-inner>* {
display: inline-block;
vertical-align: middle;
text-align: left
}
.boutique-iconbox.style-03 .icon-wrap {
width: 60px;
font-size: 35px;
line-height: 36px
}
.boutique-iconbox.style-03 .icon img {
max-width: 35px;
max-height: 36px
}
.boutique-iconbox.style-03 .content {
max-width: calc(100% - 60px)
}
.boutique-iconbox.style-03 .title {
font-size: 18px;
line-height: 30px;
font-weight: 400;
margin-bottom: 0
}
.boutique-iconbox.style-03 .title span {
font-weight: 600
}
.boutique-iconbox.style-03 .desc {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 24px;
font-style: italic;
margin-bottom: 0
}
@media(max-width: 1199px) {
.boutique-iconbox.style-03 {
padding: 35px 0
}
.boutique-iconbox.style-03 .icon-wrap {
width: 50px
}
.boutique-iconbox.style-03 .content {
max-width: calc(100% - 50px)
}
}
@media(max-width: 991px) {
.boutique-iconbox.style-03 {
padding: 25px 0
}
}
.boutique-iconbox.style-04 .iconbox-inner::after,
.boutique-iconbox.style-04 .iconbox-inner::before {
display: table;
content: '';
clear: both
}
.boutique-iconbox.style-04 .icon-wrap {
display: inline-block;
vertical-align: top;
float: left;
width: 39px;
font-size: 18px;
color: #999
}
.boutique-iconbox.style-04 .content {
display: inline-block;
vertical-align: top;
width: calc(100% - 39px)
}
.boutique-iconbox.style-04 .title {
font-family: inherit;
font-size: inherit;
line-height: inherit;
font-weight: inherit;
color: inherit;
margin: 0
}
.boutique-iconbox.style-05 {
text-align: center;
overflow: hidden;
padding: 10px 0
}
.boutique-iconbox.style-05 .iconbox-inner {
font-size: 0;
line-height: 0
}
.boutique-iconbox.style-05 .iconbox-inner>* {
display: inline-block;
vertical-align: middle;
text-align: left
}
.boutique-iconbox.style-05 .iconbox-inner .icon-wrap {
width: 30px;
font-size: 26px;
line-height: 30px;
margin-right: 15px
}
.boutique-iconbox.style-05 .iconbox-inner .content {
max-width: calc(100% - 45px)
}
.boutique-iconbox.style-05 .iconbox-inner .title {
font-family: inherit;
font-size: 13px;
line-height: 20px;
padding: 5px 0;
letter-spacing: .05em;
margin-bottom: 0;
font-weight: 400
}
.boutique-iconbox.style-05 .iconbox-inner .title span {
text-decoration: underline
}
.boutique-iconbox.style-05.light .icon-wrap {
color: #ddd
}
.boutique-iconbox.style-05.light .title {
color: #999
}
.boutique-iconbox.style-06 {
border: 2px solid #eee;
text-align: center;
padding: 30px;
overflow: hidden
}
.boutique-iconbox.style-06 .icon-wrap {
display: block;
font-size: 36px;
line-height: 50px
}
.boutique-iconbox.style-06 .title {
font-size: 13px;
line-height: 24px;
letter-spacing: .05em;
font-weight: 500;
margin-bottom: 0
}
.boutique-iconbox.style-07 {
text-align: center;
font-family: Oswald, sans-serif;
font-weight: 300;
padding: 24px 30px;
overflow: hidden
}
.boutique-iconbox.style-07 .iconbox-inner {
font-size: 0;
line-height: 0
}
.boutique-iconbox.style-07 .iconbox-inner>* {
display: inline-block;
vertical-align: top;
font-size: 14px;
line-height: 24px
}
.boutique-iconbox.style-07 .icon-wrap {
width: 28px;
margin-right: 10px;
font-size: 22px;
line-height: 30px
}
.boutique-iconbox.style-07 .content {
padding: 3px 0;
max-width: calc(100% - 38px)
}
.boutique-iconbox.style-07 .content>* {
display: inline-block;
vertical-align: top
}
.boutique-iconbox.style-07 .title {
font-size: 18px;
line-height: inherit;
font-family: inherit;
font-weight: 400;
letter-spacing: .05em;
margin: 0 5px 0 0
}
.boutique-iconbox.style-07 .desc {
margin: 2px 0 -2px
}
.boutique-iconbox.style-08 {
text-align: center;
border: 3px solid #ddd;
padding: 5px 10px
}
.boutique-iconbox.style-08 .iconbox-inner {
font-size: 0;
line-height: 0
}
.boutique-iconbox.style-08 .iconbox-inner>* {
display: inline-block;
vertical-align: middle
}
.boutique-iconbox.style-08 .icon-wrap {
font-size: 24px;
line-height: 30px;
width: 30px
}
.boutique-iconbox.style-08 .icon-wrap a {
display: block
}
.boutique-iconbox.style-08 .content {
max-width: calc(100% - 30px)
}
.boutique-iconbox.style-08 .title {
font-size: 13px;
line-height: 20px;
letter-spacing: .05em;
margin: 0
}
.boutique-iconbox.style-08 .title a {
padding: 0 5px
}
.boutique-iconbox.style-08.light {
border: 2px solid #333
}
.boutique-iconbox.style-08.light .icon-wrap {
color: #ddd
}
.boutique-iconbox.style-08.light .title {
color: #aaa
}
.boutique-iconbox.style-09,
.boutique-iconbox.style-10 {
position: relative;
text-align: center
}
.boutique-iconbox.style-09:not(:hover)::before,
.boutique-iconbox.style-10:not(:hover)::before {
-webkit-transform: translate(5px, 5px);
-moz-transform: translate(5px, 5px);
-ms-transform: translate(5px, 5px);
-o-transform: translate(5px, 5px);
transform: translate(5px, 5px)
}
.boutique-iconbox.style-09::before,
.boutique-iconbox.style-10::before {
position: absolute;
content: '';
top: 0;
left: 0;
bottom: 0;
right: 0;
border: 3px solid #ddd;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease
}
.boutique-iconbox.style-09 .iconbox-inner,
.boutique-iconbox.style-10 .iconbox-inner {
position: relative;
background-color: #fff;
padding: 14px;
-webkit-transition: background-color .2s ease;
-moz-transition: background-color .2s ease;
-o-transition: background-color .2s ease;
transition: background-color .2s ease
}
.boutique-iconbox.style-09 .iconbox-inner>a,
.boutique-iconbox.style-10 .iconbox-inner>a {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0
}
.boutique-iconbox.style-09 .icon-wrap,
.boutique-iconbox.style-10 .icon-wrap {
display: inline;
margin: 0 5px
}
.boutique-iconbox.style-09 .icon-wrap a,
.boutique-iconbox.style-09 .title a,
.boutique-iconbox.style-10 .icon-wrap a,
.boutique-iconbox.style-10 .title a {
color: inherit
}
.boutique-iconbox.style-09 .content,
.boutique-iconbox.style-10 .content {
display: inline;
margin: 0 5px
}
.boutique-iconbox.style-09 .title,
.boutique-iconbox.style-10 .title {
display: inline;
font-size: 14px;
line-height: 24px;
font-weight: 600;
margin: 0
}
.boutique-iconbox.style-09 .title span,
.boutique-iconbox.style-10 .title span {
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease
}
.boutique-iconbox.style-09 .iconbox-inner:hover .title span {
color: #fff
}
.boutique-iconbox.style-10::before {
border: 0;
background-color: #fff
}
.boutique-iconbox.style-10 .iconbox-inner {
padding: 10px 14px;
background-color: transparent
}
.boutique-iconbox.style-10 .title {
color: #fff
}
.boutique-iconbox.style-11 .icon-wrap {
display: inline-block;
vertical-align: bottom;
width: 40px
}
.boutique-iconbox.style-11 .icon {
font-size: 32px;
line-height: 32px
}
.boutique-iconbox.style-11 .content {
display: inline;
vertical-align: bottom
}
.boutique-iconbox.style-11 .title {
display: inline;
font-size: 14px;
line-height: 24px;
font-weight: 400;
margin: 0
}
.boutique-iconbox.style-12 {
text-align: center
}
.boutique-iconbox.style-12 .icon {
font-size: 36px;
line-height: 50px;
margin-bottom: 14px
}
.boutique-iconbox.style-12 .title {
display: inline-block;
vertical-align: top;
font-size: 15px;
line-height: 24px;
letter-spacing: .05em;
position: relative;
margin-bottom: 0
}
.boutique-iconbox.style-12 .title::before {
position: absolute;
content: '';
bottom: 0;
left: 0;
right: 0;
border-top: 2px solid;
opacity: .5
}
.boutique-iconbox.style-01:before,
.boutique-iconbox.style-01:after {
border-color: #c99947
}
.boutique-iconbox.style-01:hover a {
color: #c99947
}
.boutique-iconbox.style-01 .content {
font-family: Montserrat, sans-serif;
color: #222
}
.footer-top {
padding-top: 60px
}
.footer-middle {
background-color: #0b0b0b;
padding-top: 74px;
padding-bottom: 30px;
text-align: center
}
.footer-middle>.container>.row>div {
margin-bottom: 30px
}
.footer-links {
padding: 0;
margin: 0;
list-style: none;
color: #aaa
}
.footer-links.horizontal {
color: #555;
font-size: 13px;
font-family: Montserrat, sans-serif;
line-height: 24px
}
.footer-links.horizontal li {
display: inline-block;
vertical-align: middle
}
.footer-links.horizontal li:not(:first-child):before {
content: '';
border-left: 1px solid #555;
height: 12px;
display: inline-block;
vertical-align: middle;
margin: 0 5px
}
.footer-links.horizontal li a {
display: inline-block;
vertical-align: middle;
padding: 3px 0
}
.footer-social-icons>a {
display: inline-block;
width: 44px;
text-align: center;
color: #222;
border-radius: 50%;
background-color: #fff;
line-height: 44px;
margin: 0 3px;
font-size: 18px
}
.footer-social-icons>a:hover {
background-color: #c99947;
color: #fff
}
.footer-bottom {
background-color: #0b0b0b;
padding-bottom: 25px
}
.footer-bottom-divider {
border-top: 1px solid #191919;
margin-bottom: 25px
}
.footer-payments {
text-align: center
}
.footer-payments>a {
display: inline-block;
vertical-align: middle;
opacity: .3;
transition: all .3s ease
}
.footer-payments>a:hover {
opacity: 1
}
.boutique-demolink {
margin-bottom: 28px
}
.boutique-demolink a {
display: block
}
.boutique-demolink .image {
background-color: #fff;
padding: 5px;
-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .15);
-moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .15);
box-shadow: 0 0 15px 0 rgba(0, 0, 0, .15);
margin-bottom: 16px;
-webkit-transition: box-shadow .2s ease-out;
-moz-transition: box-shadow .2s ease-out;
-o-transition: box-shadow .2s ease-out;
transition: box-shadow .2s ease-out
}
.boutique-demolink.coming-soon img {
opacity: .5
}
.boutique-demolink .image:hover {
-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .5);
-moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .5);
box-shadow: 0 0 15px 0 rgba(0, 0, 0, .5)
}
.boutique-demolink .title {
font-size: 14px;
margin: 0;
color: #000;
text-align: center;
font-family: Montserrat, sans-serif
}
.demos-wapper.demos {
margin: 30px 15px 0
}
.demos-wapper .demo-click {
margin: 20px 0 50px
}
a.button.demo-click {
position: relative;
display: inline-block !important;
vertical-align: top;
font-size: 12px !important;
line-height: 24px !important;
font-weight: 600 !important;
text-transform: uppercase;
padding: 8px 30px !important;
border: 0;
background-color: #222 !important;
color: #fff !important;
text-align: center;
cursor: pointer;
border-radius: 0;
font-family: Montserrat, sans-serif
}
a.button.demo-click:hover {
background-color: #c99947 !important;
color: #fff !important;
text-decoration: none !important
}
@media (max-width: 991px) {
.skynetch-megamenu.navigation li.level0.fullwidth.mobile-show .menu-top-block {
display: block
}
}
.cms-noroute-index .column.main {
text-align: center;
padding: 80px 0 100px
}
.cms-noroute-index .column.main>.page-title {
font-size: 168px;
line-height: 1;
padding: 0;
color: #999;
margin-bottom: 40px;
text-transform: uppercase;
font-family: Montserrat, sans-serif
}
.cms-noroute-index .column.main>.title {
font-size: 26px;
line-height: 36px;
margin-bottom: 15px;
font-family: Montserrat, sans-serif;
color: #222
}
.cms-noroute-index .column.main>.subtitle {
font-size: 13px;
line-height: 24px;
color: inherit;
margin-bottom: 40px;
font-family: Montserrat, sans-serif
}
.cms-noroute-index .column.main a.button {
position: relative;
display: inline-block;
vertical-align: top;
font-size: 14px;
line-height: 24px;
font-weight: 600;
text-transform: uppercase;
padding: 8px 30px;
border: 1px solid #e5e5e5;
background-color: transparent;
color: #222;
text-align: center;
cursor: pointer;
border-radius: 0;
transition: all .2s ease;
font-family: Montserrat, sans-serif
}
.cms-noroute-index .column.main a.button:hover {
border-color: #c99947;
background-color: #c99947;
color: #fff
}
.message.info.empty h2 {
font-family: Montserrat, sans-serif;
font-weight: 600
}
.message.info.empty a.black {
color: #222;
font-family: Montserrat, sans-serif;
font-weight: 600;
font-size: 12px
}
.message.info.empty a.black:hover {
color: #c99947
}
.toolbar-products {
margin-bottom: 15px
}
.swatch-attribute-selected-option {
margin-bottom: 5px;
display: inline-block;
vertical-align: middle
}
.swatch-attribute.size .swatch-option,
.swatch-attribute.manufacturer .swatch-option {
background-color: #fff
}
.boutique-custom-heading.style-01 {
text-align: center;
margin-bottom: 20px
}
.boutique-custom-heading.style-01 .title {
display: inline-block;
vertical-align: top;
font-size: 24px;
line-height: 36px;
position: relative;
margin: 0;
padding: 0 15px 6px
}
.boutique-custom-heading.style-01 .title::before {
position: absolute;
content: '';
left: 0;
top: 17px;
width: 50px;
height: 2px;
background-color: #c99947
}
.boutique-custom-heading.style-01 .title .text {
position: relative
}
.boutique-custom-heading.style-01 .subtitle {
font-family: playfair display, sans-serif;
font-style: italic;
margin: 0;
padding-bottom: 6px
}
@media(max-width: 479px) {
.boutique-custom-heading.style-01 .title {
font-size: 22px;
line-height: 34px
}
}
.boutique-custom-heading.style-02 {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 24px;
font-style: italic;
padding: 0 0 0 50px;
position: relative
}
.boutique-custom-heading.style-02::before {
position: absolute;
content: '';
top: 20px;
bottom: 20px;
left: 0;
width: 2px;
background-color: #c99947
}
.boutique-custom-heading.style-02 .title {
font-family: inherit;
font-size: inherit;
line-height: inherit;
font-weight: inherit;
color: inherit;
margin-bottom: 0
}
.boutique-custom-heading.style-02 .title::after,
.boutique-custom-heading.style-02 .title::before {
display: inline-block;
vertical-align: top;
content: '“';
font-size: 80px;
font-style: normal;
opacity: .1
}
.boutique-custom-heading.style-02 .title::before {
margin: 14px -10px -14px -29px
}
.boutique-custom-heading.style-02 .title::after {
margin: -12px 0 0 -10px;
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg)
}
@media(max-width: 991px) {
.boutique-custom-heading.style-02 {
padding-left: 40px
}
}
.boutique-custom-heading.style-03 {
border: 1px dashed #ddd;
background-repeat: no-repeat;
background-position: left 17% bottom;
text-align: center;
padding: 28px 30px
}
.boutique-custom-heading.style-03 .title {
font-size: 13px;
line-height: inherit;
margin: 0
}
.boutique-custom-heading.style-04 {
text-align: center;
margin-bottom: 20px
}
.boutique-custom-heading.style-04 .subtitle {
font-family: playfair display, sans-serif;
font-style: italic;
font-size: 14px;
line-height: 24px;
color: #aaa;
margin-bottom: 0
}
.boutique-custom-heading.style-04 .title {
font-size: 24px;
line-height: 36px;
margin-bottom: 0
}
.boutique-custom-heading.style-04 figure {
font-size: 0;
line-height: 0;
margin-top: 10px
}
.boutique-custom-heading.style-05 .title {
display: inline-block;
vertical-align: top;
font-size: 35px;
line-height: 50px;
color: #fff;
background-position: left 40px center;
background-repeat: no-repeat;
padding: 60px 0;
position: relative;
max-width: calc(100% - 40px);
letter-spacing: .15em
}
.boutique-custom-heading.style-05 .title::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
border: 3px solid;
opacity: .5
}
.boutique-custom-heading.style-05 .title .text {
margin: 0 -40px 0 40px
}
@media(max-width: 1199px) {
.boutique-custom-heading.style-05 .title {
font-size: 32px;
line-height: 45px;
padding: 55px 0;
max-width: calc(100% - 35px);
background-position: left 35px center
}
.boutique-custom-heading.style-05 .title .text {
margin: 0 -35px 0 35px
}
}
@media(max-width: 767px) {
.boutique-custom-heading.style-05 .title {
max-width: calc(100% - 30px);
background-position: left 30px center
}
.boutique-custom-heading.style-05 .title .text {
margin: 0 -30px 0 30px
}
}
@media(max-width: 479px) {
.boutique-custom-heading.style-05 .title {
font-size: 28px;
line-height: 40px;
padding: 50px 0;
max-width: calc(100% - 25px);
background-position: left 25px center
}
.boutique-custom-heading.style-05 .title .text {
margin: 0 -25px 0 25px
}
}
.boutique-custom-heading.style-06 {
text-align: center;
font-size: 0;
line-height: 0
}
.boutique-custom-heading.style-06 .title {
display: inline-block;
vertical-align: middle;
background-position: center center;
background-repeat: no-repeat;
font-size: 24px;
line-height: 36px;
letter-spacing: .05em;
padding: 10px 15px 10px calc(15px+.05em);
margin: 0
}
.boutique-custom-heading.style-06::after,
.boutique-custom-heading.style-06::before {
display: inline-block;
vertical-align: middle;
content: '';
width: 22px;
height: 1px;
background-color: #c99947
}
.boutique-custom-heading.style-07 {
text-align: center;
font-size: 0;
line-height: 0
}
.boutique-custom-heading.style-07 .title {
font-family: Montserrat, sans-serif;
font-size: 30px;
line-height: 34px;
letter-spacing: .01em;
margin-bottom: 0
}
.boutique-custom-heading.style-07 .subtitle {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 20px;
font-style: italic;
letter-spacing: .06em;
margin-bottom: 0
}
.boutique-custom-heading.style-07::after {
display: inline-block;
vertical-align: top;
content: '';
width: 47px;
height: 2px;
margin-top: 8px;
background-color: #c99947
}
.boutique-custom-heading.style-08 {
text-align: center
}
.boutique-custom-heading.style-08::after {
display: inline-block;
vertical-align: top;
content: '';
width: 30px;
height: 2px;
margin: 11px 0;
background-color: #c99947
}
.boutique-custom-heading.style-08 .title {
font-size: 25px;
line-height: 32px;
margin-bottom: 0
}
.boutique-custom-heading.style-08 .subtitle {
margin-bottom: 5px
}
.boutique-custom-heading.style-08.light {
color: #ccc
}
.boutique-custom-heading.style-08.light::after {
background-color: #fff
}
.background-zoom {
overflow: hidden
}
.effect {
position: relative
}
.boutique-single-image a {
border: 0;
outline: 0
}
.boutique-single-image .boutique-single-image-wrapper {
display: inline-block;
vertical-align: top;
max-width: 100%
}
.boutique-single-image img {
height: auto;
max-width: 100%;
vertical-align: top
}
.background-zoom .image-effect,
.background-zoom img {
transition: all .5s ease
}
.background-zoom:hover .image-effect,
.background-zoom:hover img {
transform: scale(1.1)
}
.blog-item .post-inner,
.post-item .post-inner {
position: relative
}
.blog-item .post-inner::after,
.blog-item .post-inner::before,
.post-item .post-inner::after,
.post-item .post-inner::before {
display: table;
content: '';
clear: both
}
.blog-item .post-thumb,
.post-item .post-thumb {
display: inline-block;
vertical-align: top;
max-width: 100%;
position: relative
}
.blog-item .thumb-link,
.post-item .thumb-link {
display: block;
position: relative;
overflow: hidden
}
.blog-item .thumb-link img,
.post-item .thumb-link img {
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
.blog-item .thumb-link:hover img,
.post-item .thumb-link:hover img {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1)
}
.blog-item .meta-data,
.post-item .meta-data {
font-size: 13px;
margin-bottom: 7px
}
.blog-item .meta-data>*,
.post-item .meta-data>* {
display: inline-block;
vertical-align: top
}
.blog-item .meta-data>:not(:last-child)::after,
.post-item .meta-data>:not(:last-child)::after {
display: inline-block;
vertical-align: top;
opacity: .2;
margin: -1px 6px 1px;
content: '|'
}
.blog-item .meta-data>*>.icon,
.post-item .meta-data>*>.icon {
margin-right: 2px
}
.blog-item .meta-data .comment .text,
.post-item .meta-data .comment .text {
display: none
}
.blog-item .post-category ul,
.blog-item .post-tags ul,
.post-item .post-category ul,
.post-item .post-tags ul {
display: inline-block;
vertical-align: top;
list-style: none;
padding: 0;
margin-bottom: 0
}
.blog-item .post-category ul li,
.blog-item .post-tags ul li,
.post-item .post-category ul li,
.post-item .post-tags ul li {
display: inline-block;
vertical-align: top;
margin: 0
}
.blog-item .post-category ul li:not(:last-child)::after,
.blog-item .post-tags ul li:not(:last-child)::after,
.post-item .post-category ul li:not(:last-child)::after,
.post-item .post-tags ul li:not(:last-child)::after {
content: ',';
margin-right: 2px
}
.post-item .post-excerpt {
margin-bottom: 14px
}
.post-item .post-excerpt :last-child {
margin-bottom: 0
}
.post-item .readmore {
display: inline-block;
vertical-align: top;
font-size: 12px;
font-weight: 600;
text-transform: uppercase
}
.post-item.style-01 .post-title {
font-size: 14px;
line-height: 24px;
text-transform: uppercase;
margin-bottom: 6px
}
.post-item.style-01 .post-thumb {
margin-bottom: 14px
}
.site-content.blog-page,
.site-content.post-single {
padding-top: 50px
}
.site-content.blog-page .page-title,
.site-content.post-single .page-title {
padding-top: 0
}
.blog-content .post-item {
margin-bottom: 50px
}
.blog-content.kute-boutique-isotope {
margin-left: -15px;
margin-right: -15px
}
.blog-content.kute-boutique-isotope .post-item.isotope-item {
padding-left: 15px;
padding-right: 15px
}
@media(min-width: 768px) {
.site-content.blog-page.style-list .blog-content .post-item .post-thumb {
float: left;
width: 370px;
margin: 0 30px 0 0
}
.site-content.blog-page.style-list .blog-content .post-item .post-info {
overflow: hidden
}
}
.boutique-blog .boutique-custom-heading.style-01 {
margin-bottom: 43px
}
.blog-item .border-plus::before {
border-width: 0 1px
}
.blog-item .border-plus::after {
border-width: 1px 0
}
.blog-item.style-01 .post-inner {
font-size: 0;
line-height: 0;
max-width: 570px;
margin: auto
}
.blog-item.style-01 .post-inner>* {
display: inline-block;
vertical-align: middle;
font-size: 14px;
line-height: 24px;
width: 50%
}
.blog-item.style-01 .post-info {
padding-right: 15px
}
.blog-item.style-01 .post-thumb {
padding-left: 15px
}
.blog-item.style-01 .post-thumb::after {
position: absolute;
content: '';
top: calc(50% - 18px);
left: 14px;
border-left: 16px solid #fff;
border-top: 18px solid transparent;
border-bottom: 18px solid transparent
}
.blog-item.style-01 .post-title,
.blog-item.style-02 .post-title {
font-size: 18px;
line-height: 30px;
text-transform: uppercase;
margin-bottom: 15px
}
.blog-item.style-01 .meta-data,
.blog-item.style-02 .meta-data {
margin-bottom: 0
}
.blog-item.style-01 .blog-date {
margin-bottom: 15px
}
.blog-item.style-01 .blog-date a,
.blog-item.style-02 .blog-date a {
display: inline-block;
vertical-align: top
}
.blog-item.style-01 .blog-date .day,
.blog-item.style-02 .blog-date .day {
display: inline-block;
vertical-align: top;
font-size: 60px;
font-weight: 300;
line-height: 1
}
.blog-item.style-01 .blog-date .month-year,
.blog-item.style-02 .blog-date .month-year {
display: inline-block;
vertical-align: top;
font-size: 13px;
line-height: 16px;
text-transform: uppercase;
padding: 5px 0 5px 10px
}
.blog-item.style-01 .blog-date .month,
.blog-item.style-01 .blog-date .year,
.blog-item.style-02 .blog-date .month,
.blog-item.style-02 .blog-date .year {
display: block
}
@media(max-width: 479px) {
.blog-item.style-01 .blog-date {
margin-bottom: 10px
}
.blog-item.style-01 .blog-date .day,
.blog-item.style-02 .blog-date .day {
font-size: 50px
}
.blog-item.style-01 .blog-date .month-year,
.blog-item.style-02 .blog-date .month-year {
font-size: 12px;
line-height: 14px;
padding: 4px 0 4px 5px
}
.blog-item.style-01 .post-title {
font-size: 14px;
line-height: 24px;
margin-bottom: 10px
}
.blog-item.style-01 .post-thumb {
padding-left: 0
}
.blog-item.style-01 .post-thumb::after {
left: -1px
}
}
.blog-item.style-02 .post-thumb {
margin-bottom: 15px
}
.blog-item.style-02 .blog-date {
position: absolute;
top: 10px;
left: 10px
}
.blog-item.style-02 .blog-date a {
padding: 7px 12px;
color: #fff;
position: relative;
background-color: #c99947
}
.blog-item.style-02 .blog-date a::after {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.blog-item.style-02 .blog-date a:hover::after {
background-color: rgba(255, 255, 255, .3)
}
.blog-item.style-03 {
font-family: Montserrat, sans-serif
}
.blog-item.style-03 .post-title {
font-size: 14px;
line-height: 24px;
letter-spacing: .1em;
text-transform: uppercase;
margin-bottom: 16px
}
.blog-item.style-03 .post-thumb {
margin-bottom: 15px
}
.blog-item.style-03 .thumb-link::before,
.blog-item.style-07 .thumb-link::before {
height: 1px;
border: 0;
background-color: #fff;
width: 25px
}
.blog-item.style-03 .thumb-link:not(:hover)::before,
.blog-item.style-07 .thumb-link:not(:hover)::before {
-webkit-transform: scale(2, 1);
-moz-transform: scale(2, 1);
-ms-transform: scale(2, 1);
-o-transform: scale(2, 1);
transform: scale(2, 1)
}
.blog-item.style-03 .thumb-link::after,
.blog-item.style-07 .thumb-link::after {
width: 1px;
border: 0;
background-color: #fff;
height: 25px
}
.blog-item.style-03 .thumb-link:not(:hover)::after,
.blog-item.style-07 .thumb-link:not(:hover)::after {
-webkit-transform: scale(1, 2);
-moz-transform: scale(1, 2);
-ms-transform: scale(1, 2);
-o-transform: scale(1, 2);
transform: scale(1, 2)
}
.blog-item.style-03 .meta-data {
font-size: 12px;
color: #666;
margin-bottom: 3px
}
.blog-item.style-03 .meta-data .author {
color: #c99947
}
.blog-item.style-03 .meta-data>:not(:last-child)::after {
content: '-';
opacity: .8;
margin: 0 1px
}
.blog-item.style-03 .post-excerpt {
font-size: 13px;
line-height: 22px
}
.blog-item.style-04 .post-inner {
font-size: 0;
line-height: 0;
max-width: 570px;
margin: auto
}
.blog-item.style-04 .post-inner>* {
display: inline-block;
vertical-align: middle;
font-size: 14px;
line-height: 24px
}
.blog-item.style-04 .post-thumb {
width: calc(50% - 15px)
}
.blog-item.style-04 .post-info {
margin-left: -30px;
width: calc(50% + 45px);
position: relative;
padding: 30px 30px 25px 60px
}
.blog-item.style-04 .post-info::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
border: 5px solid #c99947;
opacity: .5
}
.blog-item.style-04 .post-info>* {
position: relative
}
.blog-item.style-04 .post-title {
font-size: 18px;
line-height: 24px;
text-transform: uppercase;
margin-bottom: 35px
}
.blog-item.style-04 .blog-date {
margin-bottom: 7px
}
.blog-item.style-04 .blog-date a,
.blog-item.style-07 .blog-date a {
display: inline-block;
vertical-align: top
}
.blog-item.style-04 .blog-date .day,
.blog-item.style-07 .blog-date .day {
display: inline-block;
vertical-align: top;
font-size: 48px;
font-weight: 200;
line-height: 1
}
.blog-item.style-04 .blog-date .month-year,
.blog-item.style-07 .blog-date .month-year {
display: inline-block;
vertical-align: top;
font-size: 13px;
line-height: 16px;
text-transform: uppercase;
padding: 12px 0 0 3px
}
.blog-item.style-04 .blog-date .month,
.blog-item.style-04 .blog-date .year,
.blog-item.style-07 .blog-date .month,
.blog-item.style-07 .blog-date .year {
display: block
}
.blog-item.style-04 .meta-data {
color: inherit
}
@media(max-width: 479px) {
.blog-item.style-04 .post-thumb {
width: 50%
}
.blog-item.style-04 .post-info {
margin-left: -20px;
width: calc(50% + 20px);
padding: 30px 15px 25px 40px
}
.blog-item.style-04 .post-title {
font-size: 14px;
line-height: 24px;
margin-bottom: 20px
}
}
.blog-item.style-05 {
text-align: center
}
.blog-item.style-05 .post-inner {
display: inline-block;
vertical-align: top;
max-width: 100%
}
.blog-item.style-05 .post-info {
position: absolute;
bottom: 10px;
left: 10px;
right: 10px;
background-color: rgba(255, 255, 255, .9);
z-index: 2;
padding: 20px 15px 16px
}
.blog-item.style-05 .meta-data {
font-size: 10px;
line-height: 24px;
text-transform: uppercase;
letter-spacing: .1em;
margin-bottom: 0
}
.blog-item.style-05 .meta-data>:not(:last-child)::after {
content: '';
opacity: .5;
width: 2px;
height: 2px;
border: 1px solid;
vertical-align: middle;
margin: 0 2px
}
.blog-item.style-05 .blog-date a>* {
display: inline-block;
vertical-align: top
}
.blog-item.style-05 .blog-date a .day {
font-size: 24px;
font-weight: 700;
margin: -4px 0 4px
}
.blog-item.style-05 .blog-date a .cross {
font-size: 18px;
margin: -2px 0 2px 2px
}
.blog-item.style-05 .post-title {
font-size: 14px;
line-height: 24px;
text-transform: uppercase;
letter-spacing: .1em;
margin-bottom: 0
}
.blog-item.style-05 .readmore {
display: inline-block;
vertical-align: top;
font-size: 12px;
line-height: 24px;
text-transform: uppercase;
font-weight: 600;
text-decoration: underline
}
.blog-item.style-05 .readmore .icon {
display: none
}
.blog-item.style-05 .post-category ul li a:hover,
.blog-item.style-05 .readmore:hover {
opacity: .7
}
@media(min-width: 1200px) {
.blog-item.style-05 .post-inner:not(:hover) .post-info {
opacity: 0;
visibility: hidden;
-webkit-transform: scale(.5);
-moz-transform: scale(.5);
-ms-transform: scale(.5);
-o-transform: scale(.5);
transform: scale(.5)
}
.blog-item.style-05 .post-info {
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
}
.blog-item.style-06 .post-inner {
display: table;
width: 100%;
box-shadow: 0 0 0 1px #f3f3f3 inset
}
.blog-item.style-06 .post-inner>* {
display: table-cell;
vertical-align: middle;
max-width: 100%
}
.blog-item.style-06 .post-thumb {
width: 370px
}
.blog-item.style-06 .post-info {
padding: 15px 30px
}
.blog-item.style-06 .post-category {
font-size: 10px;
line-height: 20px;
font-weight: 600;
text-transform: uppercase;
color: #888;
letter-spacing: .15em;
margin-bottom: 4px
}
.blog-item.style-06 .post-title {
font-size: 14px;
line-height: 24px;
font-family: playfair display, sans-serif;
font-style: italic;
font-weight: 400;
margin-bottom: 11px
}
.blog-item.style-06 .meta-data>*>.icon {
color: inherit;
opacity: .4
}
.blog-item.style-06 .post-excerpt {
margin-bottom: 33px;
line-height: 24px
}
.blog-item.style-06 .readmore {
font-family: playfair display, sans-serif;
font-size: 13px;
line-height: 24px
}
.blog-item.style-06 .readmore:not(:hover) {
color: #888
}
.blog-item.style-06 .readmore .icon {
display: inline-block;
vertical-align: top;
opacity: .5;
margin: 1px 0 -1px 3px
}
.blog-item.style-06 .readmore .icon::before {
content: "\f18e"
}
@media(max-width: 1499px) and (min-width:1200px) {
.blog-item.style-06 .post-thumb {
width: 300px
}
.blog-item.style-06 .post-info {
padding: 10px 20px
}
.blog-item.style-06 .post-category {
margin-bottom: 2px
}
.blog-item.style-06 .post-title {
margin-bottom: 8px
}
.blog-item .meta-data,
.post-item .meta-data {
margin-bottom: 5px
}
.blog-item.style-06 .post-excerpt {
margin-bottom: 15px
}
}
@media(max-width: 767px) {
.blog-item.style-06 .post-inner {
display: block
}
.blog-item.style-06 .post-thumb {
display: block;
margin: auto
}
.blog-item.style-06 .post-info {
display: block;
padding: 30px
}
}
.blog-item.style-07 .post-thumb {
margin-bottom: 18px
}
.blog-item.style-07 .blog-date {
display: inline-block;
vertical-align: top;
float: left
}
.blog-item.style-07 .post-title {
font-size: 14px;
line-height: 24px;
min-height: 55px;
text-transform: uppercase;
overflow: hidden;
position: relative;
padding: 7px 0 0 30px;
margin-bottom: 13px
}
.blog-item.style-07 .post-title::before {
position: absolute;
content: '';
top: 10px;
bottom: 5px;
left: 15px;
border-left: 1px solid
}
.blog-item.style-07 .meta-data {
margin: 0;
color: #999
}
.blog-item.style-08 .post-inner {
display: table;
width: 100%;
max-width: 570px;
position: relative;
background-color: #fff;
box-shadow: 0 0 0 1px #f3f3f3;
color: #666;
text-align: center;
margin: 0 auto
}
.blog-item.style-08 .post-inner>* {
display: table-cell;
vertical-align: middle
}
.blog-item.style-08 .post-thumb {
width: 270px
}
.blog-item.style-08 .post-info {
width: calc(100% - 270px);
padding: 60px 20px 15px
}
.blog-item.style-08 .post-info>* {
max-width: 190px;
margin-left: auto;
margin-right: auto
}
.blog-item.style-08 .blog-date a {
display: inline-block;
vertical-align: top;
font-size: 13px;
line-height: 20px;
margin-bottom: 10px
}
.blog-item.style-08 .post-title {
font-size: 14px;
line-height: 22px;
letter-spacing: .05em;
min-height: 134px;
margin-bottom: 30px
}
.blog-item.style-08 .readmore,
.blog-item.style-09 .readmore {
display: inline-block;
vertical-align: top;
font-size: 13px;
line-height: 18px;
border-bottom: 1px solid #bdbdbd;
box-shadow: 0 -1px #dfdfdf inset
}
.blog-item.style-08 .readmore:hover,
.blog-item.style-09 .readmore:hover {
border-bottom: 1px solid
}
.blog-item.style-08 .readmore .icon {
display: none
}
@media(max-width: 1199px) and (min-width:992px) {
.blog-item.style-08 .post-inner>* {
width: 50%
}
.blog-item.style-08 .post-info {
padding: 30px 15px 15px
}
}
@media(max-width: 767px) {
.blog-item.style-08 .post-inner>* {
width: 50%
}
.blog-item.style-08 .post-info {
padding: 45px 20px 15px
}
}
@media(max-width: 479px) {
.blog-item.style-08 .post-inner {
display: block;
max-width: 270px
}
.blog-item.style-08 .post-inner>* {
display: block;
width: auto
}
.blog-item.style-08 .post-info {
padding: 20px 15px 15px
}
.blog-item.style-08 .post-title {
min-height: 88px;
margin-bottom: 20px
}
}
.blog-item.style-09 .post-inner {
background-color: #fff;
text-align: center
}
.blog-item.style-09 .post-info {
padding: 0 30px 25px;
position: relative
}
.blog-item.style-09 .blog-date a {
display: inline-block;
vertical-align: top;
font-size: 13px;
line-height: 20px;
padding: 6px 12px;
color: #fff;
margin-top: -16px;
margin-bottom: 10px
}
.blog-item.style-09 .post-title {
font-size: 14px;
line-height: 22px;
letter-spacing: .05em;
margin-bottom: 0;
padding-bottom: 5px
}
.blog-item.style-09 .post-excerpt {
font-size: 12px;
line-height: 22px;
margin-bottom: 0;
padding-bottom: 30px
}
.blog-item.style-09 .readmore {
border-bottom: 2px solid #7f7f7f;
box-shadow: none;
font-weight: 500;
text-transform: uppercase;
font-size: 12px
}
.blog-item.style-09 .readmore .icon {
display: none
}
@media(max-width: 1199px) {
.blog-item.style-09 .post-info {
padding: 0 20px 20px
}
}
.blog-item.style-10 .post-inner {
text-align: center;
position: relative
}
.blog-item.style-10 .post-thumb {
margin-bottom: 13px
}
.blog-item.style-10 .blog-date {
position: absolute;
top: 10px;
left: 10px;
z-index: 2
}
.blog-item.style-10 .blog-date a {
display: inline-block;
vertical-align: top;
font-size: 13px;
line-height: 24px;
color: #fff;
padding: 4px 15px
}
.blog-item.style-10 .post-title {
font-size: 16px;
line-height: 24px;
letter-spacing: .05em;
margin-bottom: 4px
}
.blog-item.style-10 .post-excerpt {
font-size: 13px;
line-height: 23px;
margin-bottom: 6px
}
.blog-item.style-10 .comment {
color: #aaa
}
.blog-item.style-11 {
text-align: center
}
.blog-item.style-11 .post-inner {
display: inline-block;
vertical-align: top;
max-width: 100%;
position: relative
}
.blog-item.style-11 .post-info {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
border: 3px solid #222;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center;
padding: 70px 50px 30px;
background-color: rgba(255, 255, 255, .5)
}
.blog-item.style-11 .blog-date {
display: inline-block;
vertical-align: top;
font-size: 14px;
line-height: 24px;
margin-bottom: 6px
}
.blog-item.style-11 .post-title {
font-size: 18px;
line-height: 24px;
margin-bottom: 57px
}
.blog-item.style-11 .readmore {
font-size: 14px;
line-height: 20px;
color: #111;
letter-spacing: .05em;
box-shadow: none;
border-bottom: 3px solid #7f7f7f
}
.blog-item.style-11 .readmore:hover {
opacity: .7
}
.blog-item.style-11 .readmore .icon {
display: none
}
@media(min-width: 1200px) {
.blog-item.style-11 .post-info {
-webkit-transition: all .4s ease;
-moz-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease;
background-color: #fff
}
.blog-item.style-11 .post-inner:not(:hover) .post-info {
opacity: 0;
-webkit-transform: scale(.9);
-moz-transform: scale(.9);
-ms-transform: scale(.9);
-o-transform: scale(.9);
transform: scale(.9)
}
}
@media(max-width: 1199px) {
.blog-item.style-11 .post-info {
padding: 50px 30px 30px
}
.blog-item.style-11 .post-title {
margin-bottom: 47px
}
}
@media(max-width: 767px) {
.blog-item.style-11 .post-info {
padding: 30px 20px 20px
}
.blog-item.style-11 .post-title {
margin-bottom: 35px
}
}
a.canvas-toggle {
width: 30px;
height: 30px;
background-color: #222;
display: block;
position: absolute;
right: 0;
top: 0;
color: #fff;
transition: all .3s ease
}
a.canvas-toggle:hover {
background-color: #c99947;
color: #fff
}
.canvas-toggle::after,
.canvas-toggle::before {
position: absolute;
content: '';
top: 15px;
right: 15px;
width: 6px;
height: 6px;
border-top: 1px solid;
border-right: 1px solid;
-webkit-transform-origin: right top;
-moz-transform-origin: right top;
-ms-transform-origin: right top;
-o-transform-origin: right top;
transform-origin: right top;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.canvas-toggle::after {
right: 16px;
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
-ms-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
transform: rotate(-135deg)
}
.canvas-closed {
transform: translateX(-100%)
}
.canvas-header.right-side.boutique-custommenu {
position: fixed;
z-index: 5;
right: 0;
top: 0;
left: auto;
bottom: 0;
width: 345px;
background-color: rgba(0, 0, 0, 0.5);
transition: all .3s ease;
padding-top: 80px;
padding-bottom: 80px
}
.canvas-header.right-side.boutique-custommenu.canvas-closed {
z-index: 4
}
@media (max-width: 1499px) {
.canvas-header.right-side.boutique-custommenu {
padding-top: 50px;
padding-bottom: 50px;
width: 320px
}
}
.canvas-header.right-side a.canvas-toggle {
left: 0
}
.canvas-closed.right-side {
transform: translateX(100%)
}
.canvas-header.right-side.canvas-closed a.canvas-toggle {
left: -30px;
transform: rotate(180deg)
}
.canvas-closed>.canvas-toggle::after,
.canvas-closed>.canvas-toggle::before {
position: absolute;
content: '';
top: 15px;
right: 15px;
width: 6px;
height: 6px;
border-top: 1px solid;
border-right: 1px solid;
-webkit-transform-origin: right top;
-moz-transform-origin: right top;
-ms-transform-origin: right top;
-o-transform-origin: right top;
transform-origin: right top;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.canvas-closed>.canvas-toggle::after {
right: 11px;
-webkit-transform: rotate(-135deg) scale(-1);
-moz-transform: rotate(-135deg) scale(-1);
-ms-transform: rotate(-135deg) scale(-1);
-o-transform: rotate(-135deg) scale(-1);
transform: rotate(-135deg) scale(-1)
}
.nav-out-side .owl-carousel .owl-nav .owl-prev,
.nav-out-side .owl-carousel .owl-nav .owl-next {
font-size: 30px;
line-height: 30px;
height: 30px;
width: 30px;
text-align: center;
position: absolute;
top: 50%;
margin-top: -15px;
transition: all .3s ease;
transform: scale(0);
box-sizing: content-box
}
.nav-out-side .owl-carousel:hover .owl-nav .owl-prev,
.nav-out-side .owl-carousel:hover .owl-nav .owl-next {
transform: scale(1)
}
.nav-out-side .owl-carousel .owl-nav .owl-prev:not(:hover),
.nav-out-side .owl-carousel .owl-nav .owl-next:not(:hover) {
opacity: .7
}
.nav-out-side .owl-carousel .owl-nav .owl-prev {
left: -35px;
padding-right: 5px !important
}
.nav-out-side .owl-carousel .owl-nav .owl-next {
right: -35px;
padding-left: 5px !important
}
@media (min-width: 1200px) {
.nav-out-side .owl-carousel .owl-nav .owl-prev {
left: -50px;
padding-right: 20px !important
}
.nav-out-side .owl-carousel .owl-nav .owl-next {
right: -50px;
padding-left: 20px !important
}
}
.nav-in-side .owl-carousel .owl-nav .owl-prev,
.nav-in-side .owl-carousel .owl-nav .owl-next {
font-size: 12px;
line-height: 30px;
height: 30px;
width: 30px;
text-align: center;
position: absolute;
top: 50%;
margin-top: -15px;
transition: all .3s ease;
transform: scale(0);
color: #fff;
background-color: #222
}
.nav-in-side .owl-carousel:hover .owl-nav .owl-prev,
.nav-in-side .owl-carousel:hover .owl-nav .owl-next {
transform: scale(1)
}
.nav-in-side .owl-carousel .owl-nav .owl-prev:not(:hover),
.nav-in-side .owl-carousel .owl-nav .owl-next:not(:hover) {
opacity: .7
}
.nav-in-side .owl-carousel .owl-nav .owl-prev {
left: 0
}
.nav-in-side .owl-carousel .owl-nav .owl-next {
right: 0
}
.nav-in-side .owl-carousel .owl-nav .owl-prev:hover,
.nav-in-side .owl-carousel .owl-nav .owl-next:hover {
background-color: #c99947
}
.nav-top-right .owl-nav>button:hover {
background-color: #222;
color: #fff
}
.nav-top-right .owl-nav>button {
width: 36px;
height: 36px;
background-color: transparent;
box-shadow: 0 0 0 1px #e5e5e5 inset;
margin-left: 5px
}
.nav-top-right .owl-nav {
position: absolute;
right: 0;
top: -46px
}
.nav-bottom-left .owl-carousel {
padding-bottom: 70px
}
.nav-bottom-left .owl-nav>button:hover {
background-color: #222;
color: #fff
}
.nav-bottom-left .owl-nav>button {
width: 36px;
height: 36px;
background-color: transparent;
box-shadow: 0 0 0 1px #e5e5e5 inset;
margin-left: 5px
}
.nav-bottom-left .owl-nav {
position: absolute;
left: 0;
bottom: 0
}
.nav-top-center .owl-carousel {
padding-top: 55px
}
.nav-top-center .owl-nav>button:hover {
background-color: #222;
color: #fff
}
.nav-top-center .owl-nav>button {
width: 36px;
height: 36px;
background-color: transparent;
box-shadow: 0 0 0 1px #e5e5e5 inset;
margin-left: 5px
}
.nav-top-center .owl-nav {
position: absolute;
top: 0;
width: 100%;
text-align: center
}
.nav-top-center .owl-nav button.owl-next:before {
content: '';
width: 40px;
display: block;
border-top: 1px dashed #666;
position: absolute;
right: 100%;
top: 50%
}
.nav-top-center .owl-nav button.owl-next {
margin-left: 40px;
position: relative
}
.blog-item .meta-data>*>.icon {
color: #c99947
}
.boutique-brand {
text-align: center
}
.boutique-brand .brand-item a {
display: inline-block;
vertical-align: top;
max-width: 100%
}
.flashlight::after,
.flashlight::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
background-color: #000;
z-index: 2
}
.flashlight::before {
left: 0;
width: 100%
}
.flashlight::after {
right: 0;
width: 0;
opacity: .5
}
.flashlight:hover::before {
width: 0;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
.flashlight:hover::after {
width: 100%;
-webkit-transition: all .8s ease;
-moz-transition: all .8s ease;
-o-transition: all .8s ease;
transition: all .8s ease
}
.bounce-in:hover figure.not-image,
.bounce-in:hover img {
-webkit-animation: bounceIn .5s ease;
-o-animation: bounceIn .5s ease;
animation: bounceIn .5s ease
}
@media(min-width: 1025px) {
.faded-in figure.not-image,
.faded-in img {
-webkit-transition: opacity .2s ease;
-moz-transition: opacity .2s ease;
-o-transition: opacity .2s ease;
transition: opacity .2s ease
}
.faded-in:not(:hover) figure.not-image,
.faded-in:not(:hover) img {
opacity: .3
}
}
.boutique-newsletter.open-modal {
-webkit-animation: none;
-o-animation: none;
animation: none
}
.boutique-newsletter .mc4wp-form-fields {
position: relative
}
.boutique-newsletter .text-field {
font-weight: inherit;
color: inherit;
margin: 0
}
.boutique-newsletter .input-text,
.boutique-newsletter .submit-newsletter {
position: relative;
z-index: 1
}
.boutique-newsletter .input-focus {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease
}
.boutique-newsletter .radio-field {
display: inline-block;
vertical-align: top;
font-size: 14px;
line-height: 24px;
cursor: pointer;
font-weight: 500;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease
}
.boutique-newsletter .input-radio {
vertical-align: middle;
margin: -1px 2px 0 0
}
.boutique-newsletter .discount .text-primary {
display: inline-block;
vertical-align: bottom;
font-size: 18px;
line-height: 32px;
font-weight: 900;
letter-spacing: .2em;
margin: 0 5px
}
.boutique-newsletter .discount .text-primary span {
font-size: 30px;
margin: -4px 0 4px
}
.boutique-newsletter .discount .desc {
display: inline-block;
vertical-align: bottom;
font-size: 14px;
line-height: 30px;
font-weight: 700;
letter-spacing: .05em;
margin: 0 5px
}
.boutique-newsletter.style-01 {
text-align: center
}
.boutique-newsletter.style-01 .boutique-custom-heading.style-01 {
margin-bottom: 38px
}
.boutique-newsletter.style-01 .newsletter-inner {
font-size: 0;
line-height: 0
}
.boutique-newsletter.style-01 .newsletter-inner>* {
display: inline-block;
vertical-align: middle;
font-size: 14px;
line-height: 24px;
width: 100%;
position: relative
}
.boutique-newsletter.style-01 .newsletter-video {
width: 57.3%
}
.boutique-newsletter.style-01 .thumb {
display: inline-block;
vertical-align: top;
position: relative;
max-width: 100%
}
.boutique-newsletter.style-01 .thumb::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.boutique-newsletter.style-01 .newsletter-inner:hover .thumb::before {
background-color: rgba(0, 0, 0, .5)
}
.boutique-newsletter.style-01 .button-play {
position: absolute;
top: calc(50% - 30px);
left: calc(50% - 30px);
width: 60px;
border: 3px solid;
font-size: 0;
line-height: 0;
border-radius: 50%;
padding: 0 0 0 4px;
background-color: transparent;
color: #fff
}
.boutique-newsletter.style-01 .button-play:hover,
.boutique-newsletter.style-01 .newsletter-info::before {
color: #c99947
}
.boutique-newsletter.style-01 .button-play::before {
font-family: "Font Awesome 5 Free";
content: "\f04b";
font-size: 20px;
line-height: 54px;
font-weight: 600
}
.boutique-newsletter.style-01 .newsletter-video~.newsletter-info {
width: 42.7%
}
.boutique-newsletter.style-01 .newsletter-video~.newsletter-info::before {
margin-left: -136px
}
.boutique-newsletter.style-01 .newsletter-info::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
border: 6px solid
}
.boutique-newsletter.style-01 .newsletter-info>* {
position: relative
}
.boutique-newsletter.style-01 .info-inner {
height: 280px;
padding: 30px 30px 50px;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center
}
.boutique-newsletter.style-01 .mc4wp-form,
.boutique-newsletter.style-02 .mc4wp-form,
.boutique-newsletter.style-04 .mc4wp-form,
.boutique-newsletter.style-05 .mc4wp-form,
.boutique-newsletter.style-07 .mc4wp-form,
.boutique-newsletter.style-10 .mc4wp-form {
display: inline-block;
vertical-align: top;
width: 100%;
max-width: 370px
}
.boutique-newsletter.style-01 .mc4wp-form-fields,
.boutique-newsletter.style-02 .mc4wp-form-fields,
.boutique-newsletter.style-04 .mc4wp-form-fields,
.boutique-newsletter.style-05 .mc4wp-form-fields,
.boutique-newsletter.style-07 .mc4wp-form-fields,
.boutique-newsletter.style-10 .mc4wp-form-fields {
display: table;
width: 100%
}
.boutique-newsletter.style-01 .mc4wp-form-fields>*,
.boutique-newsletter.style-02 .mc4wp-form-fields>*,
.boutique-newsletter.style-04 .mc4wp-form-fields>*,
.boutique-newsletter.style-05 .mc4wp-form-fields>*,
.boutique-newsletter.style-07 .mc4wp-form-fields>*,
.boutique-newsletter.style-10 .mc4wp-form-fields>* {
display: table-cell;
vertical-align: top
}
.boutique-newsletter.style-01 .text-field,
.boutique-newsletter.style-02 .text-field,
.boutique-newsletter.style-04 .text-field,
.boutique-newsletter.style-05 .text-field,
.boutique-newsletter.style-07 .text-field,
.boutique-newsletter.style-10 .text-field {
width: 100%
}
.boutique-newsletter.style-01 .input-text,
.boutique-newsletter.style-02 .input-text,
.boutique-newsletter.style-04 .input-text,
.boutique-newsletter.style-05 .input-text,
.boutique-newsletter.style-07 .input-text,
.boutique-newsletter.style-10 .input-text {
width: 100%
}
.boutique-newsletter.style-01 .submit-newsletter,
.boutique-newsletter.style-02 .submit-newsletter,
.boutique-newsletter.style-04 .submit-newsletter,
.boutique-newsletter.style-05 .submit-newsletter,
.boutique-newsletter.style-07 .submit-newsletter,
.boutique-newsletter.style-10 .submit-newsletter {
white-space: nowrap;
height: 26px;
line-height: 26px;
border: 0
}
.boutique-newsletter.style-01 .input-text,
.boutique-newsletter.style-02 .input-text,
.boutique-newsletter.style-04 .input-text,
.boutique-newsletter.style-05 .input-text,
.boutique-newsletter.style-10 .input-text {
box-shadow: none;
font-size: 13px;
padding: 1px 10px;
height: 26px;
width: 100%
}
.boutique-newsletter.style-01 .submit-newsletter,
.boutique-newsletter.style-02 .submit-newsletter,
.boutique-newsletter.style-04 .submit-newsletter,
.boutique-newsletter.style-05 .submit-newsletter,
.boutique-newsletter.style-10 .submit-newsletter {
background-color: transparent;
padding: 1px 10px
}
.boutique-newsletter.style-01 .input-focus,
.boutique-newsletter.style-02 .input-focus,
.boutique-newsletter.style-04 .input-focus,
.boutique-newsletter.style-05 .input-focus,
.boutique-newsletter.style-10 .input-focus {
border-bottom: 1px solid #e5e5e5
}
.boutique-newsletter.style-01 .input-text::-webkit-input-placeholder,
.boutique-newsletter.style-02 .input-text::-webkit-input-placeholder,
.boutique-newsletter.style-04 .input-text::-webkit-input-placeholder {
color: #aaa
}
.boutique-newsletter.style-01 .input-text:-moz-placeholder,
.boutique-newsletter.style-02 .input-text:-moz-placeholder,
.boutique-newsletter.style-04 .input-text:-moz-placeholder {
color: #aaa
}
.boutique-newsletter.style-01 .input-text::-moz-placeholder,
.boutique-newsletter.style-02 .input-text::-moz-placeholder,
.boutique-newsletter.style-04 .input-text::-moz-placeholder {
color: #aaa
}
.boutique-newsletter.style-01 .input-text:-ms-input-placeholder,
.boutique-newsletter.style-02 .input-text:-ms-input-placeholder,
.boutique-newsletter.style-04 .input-text:-ms-input-placeholder {
color: #aaa
}
@media(max-width: 1199px) {
.boutique-newsletter.style-01 .newsletter-video {
width: 60%
}
.boutique-newsletter.style-01 .newsletter-video~.newsletter-info {
width: 40%
}
.boutique-newsletter.style-01 .info-inner {
min-height: 260px
}
}
@media(max-width: 991px) {
.boutique-newsletter.style-01 .newsletter-video {
width: 100%
}
.boutique-newsletter.style-01 .newsletter-video~.newsletter-info {
width: calc(100% - 30px);
max-width: 570px
}
.boutique-newsletter.style-01 .newsletter-video~.newsletter-info::before {
margin: -80px 0 0
}
}
@media(max-width: 767px) {
.boutique-newsletter.style-01 .newsletter-video~.newsletter-info::before {
margin: -50px 0 0
}
}
@media(max-width: 479px) {
.boutique-newsletter.style-01 .newsletter-video~.newsletter-info::before {
margin: -30px 0 0
}
}
.boutique-newsletter.style-02 {
text-align: center;
padding: 20px;
border: 6px solid #c99947;
min-height: 282px;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center
}
.boutique-newsletter.style-02 .boutique-custom-heading.style-01 {
margin-bottom: 60px
}
.boutique-newsletter.style-03 .text-field {
width: 100%;
position: relative;
margin-bottom: 10px;
background-color: #fff
}
.boutique-newsletter.style-03 .input-text {
width: 100%;
box-shadow: none
}
.boutique-newsletter.style-03 .input-focus {
border: 2px solid #ddd
}
.boutique-newsletter.style-04 {
border: 1px dashed #ddd;
padding: 30px 70px
}
.boutique-newsletter.style-04 .boutique-custom-heading.style-01 {
padding: 16px 30px 12px
}
.boutique-newsletter.style-04 .content {
text-align: center;
padding: 8px 30px
}
.boutique-newsletter.style-04 .content-inner {
display: inline-block;
vertical-align: top;
max-width: 445px
}
.boutique-newsletter.style-04 .mc4wp-form {
text-align: left;
display: block;
max-width: inherit
}
.boutique-newsletter.style-04 .discount {
margin-top: 22px
}
@media(min-width: 768px) {
.boutique-newsletter.style-04 .newsletter-inner {
font-size: 0;
line-height: 0
}
.boutique-newsletter.style-04 .newsletter-inner>* {
font-size: 14px;
line-height: 24px
}
.boutique-newsletter.style-04 .boutique-custom-heading.style-01 {
display: inline-block;
vertical-align: middle;
width: 38.5%;
margin: 0;
border-right: 1px solid #e5e5e5
}
.boutique-newsletter.style-04 .boutique-custom-heading.style-01~.content {
display: inline-block;
vertical-align: middle;
width: 61.5%
}
}
@media(max-width: 1199px) {
.boutique-newsletter.style-04 {
padding: 30px
}
.boutique-newsletter.style-04 .content,
.boutique-newsletter.style-04 .boutique-custom-heading.style-01 {
padding-left: 20px;
padding-right: 20px
}
}
@media(max-width: 991px) {
.boutique-newsletter.style-04 {
padding: 30px 0
}
}
@media(max-width: 767px) {
.boutique-newsletter.style-04 {
padding: 50px 15px
}
.boutique-newsletter.style-04 .content,
.boutique-newsletter.style-04 .boutique-custom-heading.style-01 {
padding: 0
}
}
.boutique-newsletter.style-05 {
padding: 25px 68px;
border: 1px dashed #ddd
}
.boutique-newsletter.style-05 .newsletter-inner {
font-size: 0;
line-height: 0
}
.boutique-newsletter.style-05 .content {
font-size: 14px;
line-height: 24px
}
.boutique-newsletter.style-05 .boutique-custom-heading.style-07 {
display: inline-block;
vertical-align: middle;
width: 34%;
padding: 0 30px 6px;
text-align: inherit
}
.boutique-newsletter.style-05 .boutique-custom-heading.style-07~.content {
display: inline-block;
vertical-align: middle;
width: 66%;
padding: 0 30px 12px
}
.boutique-newsletter.style-05 .mc4wp-form {
max-width: inherit
}
.boutique-newsletter.style-05 .input-text,
.boutique-newsletter.style-10 .input-text {
padding: 6px 20px;
height: 36px
}
.boutique-newsletter.style-05 .submit-newsletter,
.boutique-newsletter.style-10 .submit-newsletter {
padding: 6px 20px;
font-size: 14px;
letter-spacing: .1em
}
@media(max-width: 1199px) {
.boutique-newsletter.style-05 {
padding: 25px 30px
}
.boutique-newsletter.style-05 .boutique-custom-heading.style-07 {
width: 40%;
padding: 0 20px 6px
}
.boutique-newsletter.style-05 .boutique-custom-heading.style-07~.content {
width: 60%;
padding: 0 20px 12px
}
}
@media(max-width: 991px) {
.boutique-newsletter.style-05 {
padding: 25px 15px
}
.boutique-newsletter.style-05 .boutique-custom-heading.style-07 {
width: 46%;
padding: 0 15px 6px
}
.boutique-newsletter.style-05 .boutique-custom-heading.style-07~.content {
width: 54%;
padding: 0 15px 12px
}
}
@media(max-width: 767px) {
.boutique-newsletter.style-05 .boutique-custom-heading.style-07 {
width: 100%
}
.boutique-newsletter.style-05 .boutique-custom-heading.style-07~.content {
width: 100%
}
}
@media(max-width: 479px) {
.boutique-newsletter.style-05 {
padding: 25px 0
}
}
.boutique-newsletter.style-06 .boutique-custom-heading.style-08 {
margin-bottom: 15px
}
.boutique-newsletter.style-06 .discount {
text-align: center;
padding: 15px 0
}
.boutique-newsletter.style-06 .discount .text-primary {
display: block;
font-size: 36px;
line-height: 1;
letter-spacing: 0;
margin: 0
}
.boutique-newsletter.style-06 .discount .text-primary span {
font-size: 60px;
margin: 0
}
.boutique-newsletter.style-06 .discount .desc {
display: block;
font-size: 18px;
line-height: 20px;
font-weight: 600;
letter-spacing: 0;
color: #fff;
text-align: right;
margin: 0
}
.boutique-newsletter.style-06 .mc4wp-form {
padding: 15px 0
}
.boutique-newsletter.style-06 .mc4wp-form-fields {
background-color: #fff
}
.boutique-newsletter.style-06 .text-field {
width: 100%
}
.boutique-newsletter.style-06 .input-text {
width: 100%;
padding: 10px 76px 10px 20px;
height: 44px;
box-shadow: none
}
.boutique-newsletter.style-06 .input-focus {
border: 1px solid #e5e5e5
}
.boutique-newsletter.style-06 .submit-newsletter {
position: absolute;
top: 0;
right: 0;
bottom: 0;
padding: 0;
font-size: 0;
line-height: 0;
border: 0;
width: 56px;
text-align: center;
background-color: transparent;
color: inherit;
font-weight: 400;
height: 44px
}
.boutique-newsletter.style-06 .submit-newsletter::before {
font-family: Pe-icon-7-stroke, sans-serif;
content: "\e66c";
font-size: 27px;
line-height: 44px;
margin-left: 3px
}
.boutique-newsletter.style-06 .submit-newsletter::after {
position: absolute;
content: '';
top: 9px;
bottom: 9px;
left: 0;
border-left: 1px solid #e5e5e5
}
@media(min-width: 768px) {
.boutique-newsletter.style-06 .content {
display: table;
width: 100%
}
.boutique-newsletter.style-06 .content>* {
display: table-cell;
vertical-align: middle;
width: 50%
}
.boutique-newsletter.style-06 .content>:not(:last-child) {
padding-right: 15px
}
.boutique-newsletter.style-06 .content>:not(:first-child) {
padding-left: 15px
}
}
.boutique-newsletter.style-07 .boutique-custom-heading.style-01 {
text-align: inherit
}
.boutique-newsletter.style-07 .input-text {
box-shadow: none
}
.boutique-newsletter.style-07 .submit-newsletter {
padding-left: 15px;
padding-right: 15px;
background-color: #222;
color: #fff;
height: 40px
}
.boutique-newsletter.style-07 .submit-newsletter:hover {
background-color: #c99947
}
.boutique-newsletter.style-07 .input-focus {
border: 1px solid #ccc;
right: 1px
}
.boutique-newsletter.style-07.light {
color: #888
}
.boutique-newsletter.style-07.light .input-focus {
border-color: #555
}
.boutique-newsletter.style-07.light .submit-newsletter:not(:hover) {
background-color: #fff
}
.boutique-newsletter.style-08 .input-focus {
border-color: #ddd
}
.boutique-newsletter.style-08 .submit-newsletter:not(:hover) {
background-color: transparent;
box-shadow: 1px 0 #ddd inset;
color: #222
}
.boutique-newsletter.style-08.light .submit-newsletter:not(:hover) {
background-color: transparent;
color: #fff !important;
box-shadow: 1px 0 #555 inset
}
.boutique-newsletter.style-09 {
padding: 72px 50px 73px
}
.boutique-newsletter.style-09 .newsletter-inner {
display: table;
width: 100%
}
.boutique-newsletter.style-09 .newsletter-inner>* {
display: table-cell;
vertical-align: middle;
padding: 0 50px
}
.boutique-newsletter.style-09 .block-title {
width: 38%;
text-align: center
}
.boutique-newsletter.style-09 .content {
width: 62%
}
.boutique-newsletter.style-09 .subtitle {
font-size: 14px;
line-height: 24px;
font-family: playfair display, sans-serif;
color: #bbb;
font-style: italic;
margin-bottom: 0
}
.boutique-newsletter.style-09 .title {
font-size: 24px;
line-height: 36px;
margin-bottom: 0;
color: #fff;
letter-spacing: .15em
}
.boutique-newsletter.style-09 .mc4wp-form-fields {
display: table;
width: 100%
}
.boutique-newsletter.style-09 .mc4wp-form-fields>* {
display: table-cell;
vertical-align: top
}
.boutique-newsletter.style-09 .text-field {
width: 100%
}
.boutique-newsletter.style-09 .input-text {
width: 100%;
box-shadow: none;
padding: 10px 0 10px 20px;
height: 44px;
color: #ccc;
font-size: 13px;
font-style: italic
}
.boutique-newsletter.style-09 .submit-newsletter {
white-space: nowrap;
font-size: 10px;
letter-spacing: .15em;
background-color: transparent;
padding: 10px 20px;
border: 0;
box-shadow: none;
line-height: 24px
}
.boutique-newsletter.style-09 .submit-newsletter:not(:hover) {
color: #fff
}
.boutique-newsletter.style-09 .input-focus {
border: 1px solid rgba(255, 255, 255, .2)
}
@media(max-width: 1199px) {
.boutique-newsletter.style-09,
.boutique-newsletter.style-09 .newsletter-inner>* {
padding-left: 25px;
padding-right: 25px
}
.boutique-newsletter.style-09 .block-title {
width: 40%
}
.boutique-newsletter.style-09 .content {
width: 60%
}
}
@media(max-width: 991px) {
.boutique-newsletter.style-09 {
padding-left: 0;
padding-right: 0
}
.boutique-newsletter.style-09 .newsletter-inner>* {
padding-left: 20px;
padding-right: 20px
}
.boutique-newsletter.style-09 .block-title {
width: 45%
}
.boutique-newsletter.style-09 .content {
width: 55%
}
.boutique-newsletter.style-09 .title {
letter-spacing: .1em
}
}
@media(max-width: 767px) {
.boutique-newsletter.style-09 .newsletter-inner {
display: block
}
.boutique-newsletter.style-09 .newsletter-inner>* {
display: block;
width: auto;
padding: 10px 0
}
}
.boutique-newsletter.style-10 {
padding: 15px 75px 28px;
background-color: #f9f9f9;
text-align: center;
min-height: 300px;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center
}
.boutique-newsletter.style-10 .boutique-custom-heading.style-01 {
margin-bottom: 5px;
text-align: inherit
}
.boutique-newsletter.style-10 .discount {
margin-bottom: 34px
}
.boutique-newsletter.style-10 .mc4wp-form {
max-width: inherit
}
@media(max-width: 1199px) {
.boutique-newsletter.style-10 {
min-height: 241px;
padding: 19px 50px 29px
}
.boutique-newsletter.style-10 .boutique-custom-heading.style-01 .subtitle,
.boutique-newsletter.style-10 .boutique-custom-heading.style-01 .title {
padding-bottom: 3px
}
.boutique-newsletter.style-10 .discount {
margin-bottom: 20px
}
.boutique-newsletter.style-10 .boutique-newsletter .discount .desc {
line-height: 24px
}
}
@media(max-width: 991px) {
.boutique-newsletter.style-10 {
padding: 19px 30px 29px
}
}
@media(max-width: 479px) {
.boutique-newsletter.style-10 {
padding: 19px 15px 29px
}
}
.boutique-newsletter.style-11 .newsletter-inner>* {
padding: 5px 0
}
.boutique-newsletter.style-11:not(.style-13) .block-title {
text-align: center;
margin-bottom: 35px
}
.boutique-newsletter.style-11 .title {
font-size: 24px;
line-height: 30px;
margin-bottom: 0
}
.boutique-newsletter.style-11 .subtitle {
font-size: 14px;
line-height: 20px;
margin-bottom: 0
}
.boutique-newsletter.style-11 .text-field {
width: 100%
}
.boutique-newsletter.style-11 .input-text {
font-size: 13px;
width: 100%;
height: 30px;
padding: 3px 40px 3px 10px;
box-shadow: none
}
.boutique-newsletter.style-11 .input-focus {
border-bottom: 2px solid #969696;
bottom: 2px
}
.boutique-newsletter.style-11 .submit-newsletter {
position: absolute;
top: 0;
right: 0;
bottom: 0;
font-size: 0;
line-height: 0;
font-weight: 400;
padding: 0 10px;
background-color: transparent;
color: inherit;
border: 0;
height: 26px;
box-shadow: none
}
.boutique-newsletter.style-11 .submit-newsletter:hover {
background-color: transparent;
color: #c99947
}
.boutique-newsletter.style-11 .submit-newsletter::before {
display: block;
font-family: Flaticon, sans-serif;
content: '\f105';
font-size: 16px;
line-height: 30px
}
.boutique-newsletter.style-12 .text-field {
width: 100%
}
.boutique-newsletter.style-12 .input-text {
width: 100%;
height: 44px;
padding: 10px 44px 10px 20px;
box-shadow: none
}
.boutique-newsletter.style-12 .input-focus {
border: 1px solid #e5e5e5
}
.boutique-newsletter.style-12 .submit-newsletter {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 44px;
font-size: 0;
line-height: 0;
color: #888;
font-weight: 400;
padding: 0;
background-color: transparent;
border: 0;
height: 44px;
box-shadow: none
}
.boutique-newsletter.style-12 .submit-newsletter:hover {
background-color: transparent
}
.boutique-newsletter.style-12 .submit-newsletter::before {
display: block;
font-family: "Font Awesome 5 Free";
content: '\f105';
font-size: 16px;
line-height: 44px;
font-weight: 600
}
@media(min-width: 768px) {
.boutique-newsletter.style-13 .newsletter-inner {
display: table;
width: 100%;
max-width: 800px;
margin: auto
}
.boutique-newsletter.style-13 .newsletter-inner>* {
display: table-cell;
vertical-align: middle;
width: 50%;
padding: 5px 15px
}
}
.boutique-newsletter.style-14 .text-field,
.boutique-newsletter.style-15 .text-field {
display: block;
position: relative;
margin-bottom: 10px
}
.boutique-newsletter.style-14 .input-text,
.boutique-newsletter.style-15 .input-text {
width: 100%;
box-shadow: none;
font-size: 13px;
padding-top: 10px;
padding-bottom: 10px;
height: 44px
}
.boutique-newsletter.style-14 .input-focus,
.boutique-newsletter.style-15 .input-focus {
border: 2px solid #ddd
}
.boutique-newsletter.style-14 .radio-field {
margin: 10px 0
}
.boutique-newsletter.style-14 .radio-field:not(:last-child) {
margin-right: 13px
}
.boutique-newsletter.style-14 .submit-newsletter {
width: 100%;
border: 3px solid;
font-size: 14px;
line-height: 24px;
margin: 18px 0
}
.boutique-newsletter.style-14 .submit-newsletter:not(:hover):not(:focus) {
background-color: #fff
}
.boutique-newsletter.style-14 .submit-newsletter::after {
display: inline-block;
vertical-align: top;
font-family: "Font Awesome 5 Free";
content: '\f0da';
margin-left: 5px
}
.boutique-newsletter.style-15 .block-title {
padding-bottom: 8px
}
.boutique-newsletter.style-15 .block-title .title {
font-size: 16px;
line-height: 30px;
margin-bottom: 15px
}
.boutique-newsletter.style-15 .block-title .subtitle {
margin-bottom: 15px
}
.boutique-newsletter.style-15 .submit-newsletter {
width: 100%;
font-size: 14px;
padding: 10px 20px
}
.boutique-newsletter.style-15.light,
.boutique-newsletter.style-16.light,
.boutique-newsletter.style-17.light {
color: #aaa
}
.boutique-newsletter.style-15.light .block-title .title,
.boutique-newsletter.style-16.light .block-title .title,
.boutique-newsletter.style-17.light .block-title .title {
color: #fff
}
.boutique-newsletter.style-15.light .input-focus {
border-color: #666
}
.boutique-newsletter.style-15.light .submit-newsletter:not(:hover):not(:focus) {
background-color: #fff
}
.boutique-newsletter.style-16 {
text-align: center
}
.boutique-newsletter.style-16 .block-title {
padding-bottom: 50px
}
.boutique-newsletter.style-16 .block-title .title {
font-size: 30px;
line-height: 36px;
margin-bottom: 12px
}
.boutique-newsletter.style-16 .block-title .subtitle {
font-size: 14px;
line-height: 24px;
margin-bottom: 15px
}
.boutique-newsletter.style-16 .mc4wp-form-fields {
position: relative;
max-width: 370px;
margin: auto
}
.boutique-newsletter.style-16 .text-field,
.boutique-newsletter.style-17 .text-field {
width: 100%;
position: relative
}
.boutique-newsletter.style-16 .input-text,
.boutique-newsletter.style-17 .input-text {
width: 100%;
box-shadow: none;
padding-left: 0;
padding-right: 24px
}
.boutique-newsletter.style-16 .input-focus,
.boutique-newsletter.style-17 .input-focus {
border-bottom: 2px solid
}
.boutique-newsletter.style-16 .submit-newsletter,
.boutique-newsletter.style-17 .submit-newsletter {
position: absolute;
top: 0;
bottom: 0;
right: 0;
width: 24px;
text-align: right;
background-color: transparent;
padding: 0;
font-size: 0;
line-height: 0;
font-weight: 400
}
.boutique-newsletter.style-16 .submit-newsletter::before,
.boutique-newsletter.style-17 .submit-newsletter::before {
font-family: "Font Awesome 5 Free";
content: "\f061";
font-size: 16px;
line-height: 40px
}
.boutique-newsletter.style-16.light .input-focus,
.boutique-newsletter.style-17.light .input-focus {
border-color: #fff
}
.boutique-newsletter.style-16.light .submit-newsletter,
.boutique-newsletter.style-17.light .submit-newsletter {
color: #fff
}
@media(max-width: 1199px) {
.boutique-newsletter.style-16 .block-title {
padding-bottom: 42px
}
}
@media(max-width: 991px) {
.boutique-newsletter.style-16 .block-title {
padding-bottom: 34px
}
}
@media(max-width: 767px) {
.boutique-newsletter.style-16 .block-title {
padding-bottom: 26px
}
}
.boutique-newsletter.style-17 .block-title .title {
font-size: 16px;
line-height: 30px;
margin-bottom: 15px
}
.boutique-newsletter.style-17 .mc4wp-form-fields {
position: relative;
max-width: 370px
}
.boutique-newsletter .input-text:focus~.input-focus {
border-color: #c99947
}
.boutique-newsletter button:hover {
color: #c99947
}
div.mage-error[generated] {
height: 0;
text-align: center
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
background: transparent;
width: auto
}
.mfp-popup-video .mfp-iframe-holder .mfp-content {
width: 100%
}
.mfp-popup-video .mfp-iframe-scaler iframe {
opacity: 1
}
.boutique-custommenu ul {
list-style: none;
padding: 0;
margin-bottom: 0
}
.boutique-custommenu .owl-carousel>.menu-item {
float: left
}
.boutique-custommenu ul li>a {
display: block;
position: relative
}
.boutique-custommenu ul li>a .icon img {
display: inline-block !important;
vertical-align: bottom;
width: auto
}
.boutique-custommenu.light {
color: #aaa
}
.boutique-custommenu.light .widget .widget-title,
.boutique-custommenu.light .widget .widgettitle {
color: #fff
}
.boutique-custommenu.style-02 ul li,
.boutique-custommenu.style-06 ul li {
border: 0;
min-height: inherit;
padding: 3px 0
}
.boutique-custommenu.style-02 .menu>li:first-child,
.boutique-custommenu.style-06 .menu>li:first-child {
min-height: inherit
}
.boutique-custommenu.style-02 ul ul,
.boutique-custommenu.style-06 ul ul {
margin: 3px 0 -3px
}
.boutique-custommenu.style-03,
.boutique-custommenu.style-08 {
font-size: 0;
line-height: 0;
text-align: center;
padding: 60px 0 30px
}
.boutique-custommenu.style-03 .menu,
.boutique-custommenu.style-03 .boutique-custom-heading.style-01,
.boutique-custommenu.style-08 .menu,
.boutique-custommenu.style-08 .boutique-custom-heading.style-01 {
display: inline-block;
vertical-align: middle;
font-size: 14px;
line-height: 24px;
padding: 0 30px;
margin-bottom: 30px
}
.boutique-custommenu.style-03 .boutique-custom-heading.style-01,
.boutique-custommenu.style-08 .boutique-custom-heading.style-01 {
width: 38%
}
.boutique-custommenu.style-03 .menu,
.boutique-custommenu.style-08 .menu {
width: 100%
}
.boutique-custommenu.style-03 .boutique-menu-wapper,
.boutique-custommenu.style-08 .boutique-menu-wapper {
display: inline
}
.boutique-custommenu.style-03 .boutique-custom-heading~.menu,
.boutique-custommenu.style-03 .boutique-custom-heading~.boutique-menu-wapper>.menu,
.boutique-custommenu.style-08 .boutique-custom-heading~.menu,
.boutique-custommenu.style-08 .boutique-custom-heading~.boutique-menu-wapper>.menu {
width: 62%
}
.boutique-custommenu.style-03 .menu-item>a,
.boutique-custommenu.style-05 .menu-item>a {
display: inline-block;
vertical-align: top;
width: 133px;
height: 133px;
border: 1px dashed #ccc;
text-align: center;
font-size: 11px;
line-height: 24px;
text-transform: uppercase;
font-weight: 600;
border-radius: 90px;
padding: 28px 15px 34px
}
.boutique-custommenu.style-03 .menu-item>a:hover,
.boutique-custommenu.style-05 .menu-item>a:hover {
border: 1px dashed
}
.boutique-custommenu.style-03 .menu-item>a .icon,
.boutique-custommenu.style-04 .menu-item>a .icon,
.boutique-custommenu.style-05 .menu-item>a .icon,
.boutique-custommenu.style-08 .menu-item>a .icon {
display: block !important;
width: auto;
height: auto;
font-size: 40px;
line-height: 45px;
margin: auto
}
.boutique-custommenu.style-03 .menu-item>a img,
.boutique-custommenu.style-04 .menu-item>a img,
.boutique-custommenu.style-05 .menu-item>a img,
.boutique-custommenu.style-08 .menu-item>a img {
max-width: 101px;
max-height: 45px
}
.boutique-custommenu.style-03 .menu-item>a .label-image,
.boutique-custommenu.style-04 .menu-item>a .label-image,
.boutique-custommenu.style-05 .menu-item>a .label-image,
.boutique-custommenu.style-08 .menu-item>a .label-image {
position: absolute;
top: -10px;
right: -10px
}
.boutique-custommenu.style-03.light,
.boutique-custommenu.style-04.light,
.boutique-custommenu.style-05.light {
color: #eee
}
.boutique-custommenu.style-03.light .boutique-custom-heading.style-01 .title,
.boutique-custommenu.style-04.light .custommenu-inner>.title,
.boutique-custommenu.style-05.light .custommenu-inner>.title {
color: #fff
}
.boutique-custommenu.style-03.light .boutique-custom-heading.style-01 .subtitle,
.boutique-custommenu.style-04.light .custommenu-inner>.subtitle,
.boutique-custommenu.style-05.light .custommenu-inner>.subtitle {
color: #aaa
}
.boutique-custommenu.style-03.light .menu-item>a:not(:hover),
.boutique-custommenu.style-04.light .menu-item>a:not(:hover),
.boutique-custommenu.style-05.light .menu-item>a:not(:hover) {
border-color: #444
}
.boutique-custommenu.light .owl-nav button.owl-next,
.boutique-custommenu.light .owl-nav button.owl-prev,
.boutique-custommenu.light button.owl-dot {
border: 1px solid #444;
width: 10px;
height: 10px;
margin: 0 4px;
transition: all .3s ease
}
.boutique-custommenu.light .owl-nav button.owl-next:hover,
.boutique-custommenu.light .owl-nav button.owl-prev:hover,
.boutique-custommenu.light button.owl-dot:hover,
.boutique-custommenu.light .owl-nav button.owl-next.active,
.boutique-custommenu.light .owl-nav button.owl-prev.active,
.boutique-custommenu.light button.owl-dot.active {
border: 0;
background-color: #eee
}
@media(max-width: 1199px) {
.boutique-custommenu.style-03 .boutique-custom-heading.style-01 {
width: 42%
}
.boutique-custommenu.style-03 .boutique-custom-heading~.menu,
.boutique-custommenu.style-03 .boutique-custom-heading~.boutique-menu-wapper>.menu {
width: 58%
}
}
@media(max-width: 991px) {
.boutique-custommenu.style-03 .boutique-custom-heading.style-01,
.boutique-custommenu.style-03 .boutique-custom-heading~.menu,
.boutique-custommenu.style-03 .boutique-custom-heading~.boutique-menu-wapper>.menu {
width: 50%
}
}
@media(max-width: 767px) {
.boutique-custommenu.style-03 .boutique-custom-heading.style-01,
.boutique-custommenu.style-03 .boutique-custom-heading~.menu,
.boutique-custommenu.style-03 .boutique-custom-heading~.boutique-menu-wapper>.menu {
width: 100%
}
.boutique-custommenu.style-03 .menu,
.boutique-custommenu.style-03 .boutique-custom-heading.style-01 {
padding: 0 10px
}
}
.boutique-custommenu.style-04,
.boutique-custommenu.style-05 {
text-align: center;
padding: 31px 25px 20px
}
.boutique-custommenu.style-04 .custommenu-inner>.title,
.boutique-custommenu.style-05 .custommenu-inner>.title {
font-size: 24px;
line-height: 36px;
position: relative;
margin-bottom: 13px
}
.boutique-custommenu.style-04 .custommenu-inner>.title::after,
.boutique-custommenu.style-05 .custommenu-inner>.title::after {
display: block;
content: '';
width: 50px;
height: 2px;
margin: 1px auto 0;
background-color: #c99947
}
.boutique-custommenu.style-04 .custommenu-inner>.subtitle,
.boutique-custommenu.style-05 .custommenu-inner>.subtitle {
font-family: playfair display, sans-serif;
font-style: italic;
font-size: 14px;
line-height: 24px;
margin-bottom: 10px
}
.boutique-custommenu.style-04 .menu-item {
padding: 0 10px
}
.boutique-custommenu.style-04 .menu-item>a {
font-size: 11px;
line-height: 24px;
text-transform: uppercase;
font-weight: 600;
border-bottom: 1px dashed #ddd;
margin-bottom: -1px;
padding: 22px 0
}
.boutique-custommenu.style-04 .menu-item>a:hover {
border-bottom: 1px dashed
}
.boutique-custommenu.style-05 .custommenu-inner .menu {
margin-top: 45px
}
.boutique-custommenu.posi-absolute,
.boutique-custommenu.posi-fixed {
position: fixed;
top: 0;
left: 0;
right: auto;
bottom: 0;
width: 345px;
max-width: 100%;
padding: 70px 0 80px;
z-index: 100000;
background-color: #fff;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.boutique-custommenu.posi-absolute {
position: absolute;
background-color: rgba(255, 255, 255, .8);
z-index: 3
}
.boutique-custommenu.posi-absolute.posi-end,
.boutique-custommenu.posi-fixed.posi-end {
left: auto;
right: 0
}
.boutique-custommenu.posi-absolute.light {
background-color: rgba(0, 0, 0, .8)
}
.boutique-custommenu.posi-fixed.light {
background-color: #000
}
.boutique-custommenu.posi-absolute .custommenu-inner,
.boutique-custommenu.posi-fixed .custommenu-inner {
padding: 0 50px
}
.boutique-custommenu.posi-absolute .custommenu-close,
.boutique-custommenu.posi-fixed .custommenu-close {
position: absolute;
top: 0;
left: auto;
right: 0;
font-size: 0;
line-height: 0;
width: 30px;
height: 30px;
padding: 0;
border: 0;
text-align: center;
background-color: #e5e5e5;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.boutique-custommenu.posi-absolute.posi-end .custommenu-close,
.boutique-custommenu.posi-fixed.posi-end .custommenu-close {
left: 0;
right: auto
}
.boutique-custommenu.posi-absolute .custommenu-close:hover,
.boutique-custommenu.posi-absolute.light .custommenu-close:not(:hover),
.boutique-custommenu.posi-fixed .custommenu-close:hover,
.boutique-custommenu.posi-fixed.light .custommenu-close:not(:hover) {
color: #fff
}
.boutique-custommenu.posi-absolute .custommenu-close::after,
.boutique-custommenu.posi-absolute .custommenu-close::before,
.boutique-custommenu.posi-fixed .custommenu-close::after,
.boutique-custommenu.posi-fixed .custommenu-close::before {
position: absolute;
content: '';
top: 15px;
right: 15px;
width: 6px;
height: 6px;
border-top: 1px solid;
border-right: 1px solid;
-webkit-transform-origin: right top;
-moz-transform-origin: right top;
-ms-transform-origin: right top;
-o-transform-origin: right top;
transform-origin: right top;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: transform .3s ease;
-moz-transition: transform .3s ease;
-o-transition: transform .3s ease;
transition: transform .3s ease
}
.boutique-custommenu.posi-absolute .custommenu-close::after,
.boutique-custommenu.posi-fixed .custommenu-close::after {
right: 16px;
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
-ms-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
transform: rotate(-135deg)
}
@media(min-width: 1200px) {
.boutique-custommenu.posi-fixed:not(.open) {
z-index: 100001
}
.boutique-custommenu.posi-absolute.posi-end.open,
.boutique-custommenu.posi-fixed.posi-end.open {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.boutique-custommenu.posi-absolute.posi-end.open .custommenu-close,
.boutique-custommenu.posi-fixed.posi-end.open .custommenu-close {
left: -30px
}
.boutique-custommenu.posi-absolute.posi-end.open .custommenu-close::before,
.boutique-custommenu.posi-fixed.posi-end.open .custommenu-close::before {
right: 20px;
-webkit-transform: rotate(45deg) scale(-1);
-moz-transform: rotate(45deg) scale(-1);
-ms-transform: rotate(45deg) scale(-1);
-o-transform: rotate(45deg) scale(-1);
transform: rotate(45deg) scale(-1)
}
.boutique-custommenu.posi-absolute.posi-start.open,
.boutique-custommenu.posi-fixed.posi-start.open {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.boutique-custommenu.posi-absolute.posi-start.open .custommenu-close,
.boutique-custommenu.posi-fixed.posi-start.open .custommenu-close {
right: -30px
}
.boutique-custommenu.posi-absolute.posi-start.open .custommenu-close::after,
.boutique-custommenu.posi-fixed.posi-start.open .custommenu-close::after {
right: 10px;
-webkit-transform: rotate(-135deg) scale(-1);
-moz-transform: rotate(-135deg) scale(-1);
-ms-transform: rotate(-135deg) scale(-1);
-o-transform: rotate(-135deg) scale(-1);
transform: rotate(-135deg) scale(-1)
}
.boutique-custommenu.posi-absolute .header-control>:nth-child(2)>a,
.boutique-custommenu.posi-fixed .header-control>:nth-child(2)>a {
padding-left: 0
}
}
@media(max-width: 1499px) {
.boutique-custommenu.posi-absolute,
.boutique-custommenu.posi-fixed {
width: 320px;
padding: 40px 0 50px
}
.boutique-custommenu.posi-absolute .custommenu-inner,
.boutique-custommenu.posi-fixed .custommenu-inner {
padding: 0 40px
}
.boutique-custommenu.style-05 .custommenu-inner .menu {
margin-top: 35px
}
}
@media(max-width: 1199px) {
.boutique-custommenu.posi-absolute .custommenu-inner,
.boutique-custommenu.posi-fixed .custommenu-inner {
max-height: 100%;
overflow-x: hidden;
-webkit-overflow-scrolling: touch
}
.boutique-custommenu.posi-fixed.open {
z-index: 100001
}
.boutique-custommenu.posi-absolute.posi-end:not(.open),
.boutique-custommenu.posi-fixed.posi-end:not(.open) {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.boutique-custommenu.posi-absolute.posi-end:not(.open) .custommenu-close,
.boutique-custommenu.posi-fixed.posi-end:not(.open) .custommenu-close {
left: -30px
}
.boutique-custommenu.posi-absolute.posi-end:not(.open) .custommenu-close::before,
.boutique-custommenu.posi-fixed.posi-end:not(.open) .custommenu-close::before {
right: 20px;
-webkit-transform: rotate(45deg) scale(-1);
-moz-transform: rotate(45deg) scale(-1);
-ms-transform: rotate(45deg) scale(-1);
-o-transform: rotate(45deg) scale(-1);
transform: rotate(45deg) scale(-1)
}
.boutique-custommenu.posi-absolute.posi-start:not(.open),
.boutique-custommenu.posi-fixed.posi-start:not(.open) {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.boutique-custommenu.posi-absolute.posi-start:not(.open) .custommenu-close,
.boutique-custommenu.posi-fixed.posi-start:not(.open) .custommenu-close {
right: -30px
}
.boutique-custommenu.posi-absolute.posi-start:not(.open) .custommenu-close::after,
.boutique-custommenu.posi-fixed.posi-start:not(.open) .custommenu-close::after {
right: 10px;
-webkit-transform: rotate(-135deg) scale(-1);
-moz-transform: rotate(-135deg) scale(-1);
-ms-transform: rotate(-135deg) scale(-1);
-o-transform: rotate(-135deg) scale(-1);
transform: rotate(-135deg) scale(-1)
}
}
.boutique-custommenu.posi-absolute {
width: 260px;
padding: 35px 0 30px;
z-index: 8
}
.boutique-custommenu.posi-absolute .custommenu-inner {
padding: 0 30px
}
.boutique-custommenu.style-06 ul li>a::before {
content: '';
display: inline-block;
vertical-align: middle;
width: 4px;
height: 4px;
border: 2px solid;
border-radius: 50%;
margin: 0 12px 2px 0
}
.boutique-custommenu.style-07 ul li,
.boutique-custommenu.style-10 ul li,
.boutique-custommenu.style-11 ul li {
padding: 0;
min-height: inherit;
border: 0
}
.boutique-custommenu.style-07 ul ul,
.boutique-custommenu.style-10 ul ul,
.boutique-custommenu.style-11 ul ul {
margin: 0;
padding: 0
}
.boutique-custommenu.style-07 .menu>li:first-child,
.boutique-custommenu.style-10 .menu>li:first-child,
.boutique-custommenu.style-11 .menu>li:first-child {
min-height: inherit
}
.boutique-custommenu.style-07>.widget_nav_menu>.menu,
.boutique-custommenu.style-07>.widget_nav_menu>.boutique-menu-wapper>.menu,
.boutique-custommenu.style-10>.widget_nav_menu>.menu,
.boutique-custommenu.style-10>.widget_nav_menu>.boutique-menu-wapper>.menu,
.boutique-custommenu.style-11>.widget_nav_menu>.menu,
.boutique-custommenu.style-11>.widget_nav_menu>.boutique-menu-wapper>.menu {
margin: 0 -7px
}
.boutique-custommenu.style-07>.widget_nav_menu>.menu>li,
.boutique-custommenu.style-07>.widget_nav_menu>.boutique-menu-wapper>.menu>li,
.boutique-custommenu.style-10>.widget_nav_menu>.menu>li,
.boutique-custommenu.style-10>.widget_nav_menu>.boutique-menu-wapper>.menu>li,
.boutique-custommenu.style-11>.widget_nav_menu>.menu>li,
.boutique-custommenu.style-11>.widget_nav_menu>.boutique-menu-wapper>.menu>li {
display: inline-block;
vertical-align: top;
margin: 0 7px;
position: relative;
border: 0
}
.boutique-custommenu.style-07>.widget_nav_menu>.menu>li>a,
.boutique-custommenu.style-07>.widget_nav_menu>.boutique-menu-wapper>.menu>li>a,
.boutique-custommenu.style-10>.widget_nav_menu>.menu>li>a,
.boutique-custommenu.style-10>.widget_nav_menu>.boutique-menu-wapper>.menu>li>a,
.boutique-custommenu.style-11>.widget_nav_menu>.menu>li>a,
.boutique-custommenu.style-11>.widget_nav_menu>.boutique-menu-wapper>.menu>li>a {
padding: 3px 0
}
.boutique-custommenu.style-07>.widget_nav_menu>.menu>li:not(:last-child)::after,
.boutique-custommenu.style-07>.widget_nav_menu>.boutique-menu-wapper>.menu>li:not(:last-child)::after {
content: '';
position: absolute;
top: 9px;
bottom: 0;
right: -9px;
border-right: 1px solid;
height: 12px
}
.boutique-custommenu.style-08 {
padding: 45px 0 10px
}
.boutique-custommenu.style-08 .menu {
padding: 0
}
.boutique-custommenu.style-08 .menu-item {
font-size: 12px;
line-height: 24px;
text-transform: uppercase;
letter-spacing: .15em;
font-weight: 600;
position: relative
}
.boutique-custommenu.style-08 .menu-item>a .icon {
margin-bottom: 15px
}
.boutique-custommenu.style-08 .menu-item::after {
position: absolute;
content: '';
top: 5px;
bottom: 5px;
right: -1px;
border-right: 1px solid #e5e5e5
}
.boutique-custommenu.style-09 {
text-align: center
}
.boutique-custommenu.style-09 .menu-item>a {
display: inline-block;
vertical-align: top;
max-width: 100%;
position: relative;
overflow: hidden
}
.boutique-custommenu.style-09 .menu-item>a::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
z-index: 1
}
.boutique-custommenu.style-09 .menu-item>a:hover::before {
background-color: rgba(255, 255, 255, .5)
}
.boutique-custommenu.style-09.light .menu-item>a:hover::before {
background-color: rgba(0, 0, 0, .5)
}
.boutique-custommenu.style-09 .menu-item>a .label-image {
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
.boutique-custommenu.style-09 .menu-item>a:hover .label-image {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1)
}
.boutique-custommenu.style-09.light .menu-item>a .text-title {
color: #fff
}
.boutique-custommenu.style-09 .menu-item>a .text-title {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center;
font-size: 18px;
line-height: 30px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .15em;
z-index: 1
}
.boutique-custommenu.style-09 .menu-item>a .icon {
display: block;
letter-spacing: 0;
margin: 0 auto 20px;
font-size: 38px;
line-height: 42px;
width: 66px;
height: 66px;
border: 2px solid;
border-radius: 50%;
position: relative
}
.boutique-custommenu.style-09 .menu-item>a .icon img,
.boutique-custommenu.style-09 .menu-item>a .icon::before {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center;
margin: auto
}
.boutique-custommenu.style-09 .menu-item>a .icon img {
max-height: 42px
}
@media(min-width: 480px) {
.boutique-custommenu.style-10>.widget_nav_menu>.menu,
.boutique-custommenu.style-10>.widget_nav_menu>.boutique-menu-wapper>.menu,
.boutique-custommenu.style-11>.widget_nav_menu>.menu,
.boutique-custommenu.style-11>.widget_nav_menu>.boutique-menu-wapper>.menu {
margin: 0 -15px
}
.boutique-custommenu.style-10>.widget_nav_menu>.menu>li,
.boutique-custommenu.style-10>.widget_nav_menu>.boutique-menu-wapper>.menu>li,
.boutique-custommenu.style-11>.widget_nav_menu>.menu>li,
.boutique-custommenu.style-11>.widget_nav_menu>.boutique-menu-wapper>.menu>li {
margin: 0 15px
}
}
.boutique-custommenu.style-11>.widget_nav_menu>.menu>li>a,
.boutique-custommenu.style-11>.widget_nav_menu>.boutique-menu-wapper>.menu>li>a {
font-weight: 600;
text-transform: uppercase
}
.boutique-custommenu.style-11.light>.widget_nav_menu>.menu>li:not(.current-menu-parent):not(.current-menu-item):not(.current_page_item)>a:not(:hover),
.boutique-custommenu.style-11.light>.widget_nav_menu>.boutique-menu-wapper>.menu>li:not(.current-menu-parent):not(.current-menu-item):not(.current_page_item)>a:not(:hover) {
color: #fff
}
.boutique-custommenu.style-12 {
font-size: 16px;
line-height: 24px;
font-weight: 500
}
.boutique-custommenu.style-12 .widget .widget-title,
.boutique-custommenu.style-12 .widget .widgettitle {
font-size: 16px;
line-height: 30px;
padding: 0
}
.boutique-custommenu.style-12 .widget_nav_menu ul li {
border-top: 0;
min-height: inherit
}
.boutique-custommenu.style-12 .widget_nav_menu ul li:first-child {
min-height: inherit
}
.boutique-products::after,
.boutique-products::before {
display: table;
content: '';
clear: both
}
.boutique-products .boutique-custom-heading.style-01 {
margin-bottom: 43px
}
.boutique-products .button-products {
text-align: center;
border: 1px solid #e5e5e5;
padding: 20px 15px
}
.boutique-products .button-products .button {
background-color: transparent;
font-size: 12px;
line-height: 24px;
padding: 3px 0;
text-decoration: underline
}
.boutique-products .button-products .button:not(:hover) {
color: inherit
}
.boutique-products.has-banner {
border: 1px solid #e5e5e5
}
.boutique-products.banner-after .banner-product {
float: right
}
.boutique-products .banner-product {
display: inline-block;
vertical-align: top;
float: left;
width: 270px;
position: relative;
background-color: #000;
overflow: hidden;
margin: -1px 0 -1px -1px
}
.boutique-products .banner-product img {
opacity: .5;
width: 100%;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
.boutique-products .banner-product:hover img {
opacity: .3;
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1)
}
.boutique-products .banner-product .head {
position: absolute;
top: 0;
left: 0;
right: 0;
padding: 40px 30px
}
.boutique-products .banner-product .title {
font-size: 21px;
line-height: 30px;
color: #eee;
margin-bottom: 0
}
.boutique-products .banner-product .subtitle {
font-family: playfair display, sans-serif;
font-style: italic;
font-size: 14px;
line-height: 24px;
color: #ddd
}
.boutique-products .banner-product .foot {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 30px
}
.boutique-products .banner-product .link {
display: inline-block;
vertical-align: top;
font-size: 12px;
line-height: 24px;
font-weight: 600;
text-transform: uppercase;
position: relative;
padding: 3px 0;
text-decoration: underline
}
.boutique-products .banner-product .link:not(:hover) {
color: #eee
}
.boutique-products .banner-product .link::after {
position: absolute;
content: '';
bottom: 8px;
left: 0;
right: 0
}
.boutique-products .banner-product~.products-container {
display: inline-block;
vertical-align: top;
width: calc(100% - 268px);
padding: 15px 30px 5px;
margin: -1px -1px -1px 0
}
@media(max-width: 1199px) {
.boutique-products .banner-product {
width: 240px
}
.boutique-products .banner-product~.products-container {
width: calc(100% - 238px)
}
}
@media(max-width: 767px) {
.boutique-products .banner-product {
width: calc(100% + 2px);
margin: -1px -1px 0
}
.boutique-products .banner-product~.products-container {
width: calc(100% + 2px);
padding: 25px 25px 30px;
margin: 0 -1px -1px
}
}
@media(max-width: 479px) {
.boutique-products .banner-product~.products-container {
padding: 15px 15px 25px
}
}
.boutique-tab {
position: relative
}
.boutique-tab .tabs-head::after,
.boutique-tab .tabs-head::before {
display: table;
content: '';
clear: both
}
.boutique-tab .tab-panel {
opacity: 0;
visibility: hidden;
height: 0;
overflow: hidden
}
.boutique-tab .tab-panel.active {
opacity: 1;
visibility: visible;
height: auto;
overflow: visible
}
.boutique-tab .tabs {
list-style: none;
padding: 0;
margin-bottom: 0;
font-size: 0;
line-height: 0
}
.boutique-tab .tabs li {
display: inline-block;
vertical-align: middle;
font-size: 16px;
line-height: 30px;
font-weight: 600;
max-width: 100%;
color: #222;
font-family: Montserrat, sans-serif
}
.boutique-tab .tabs li a {
display: block;
position: relative
}
.boutique-tab.style-01 .tabs {
text-align: center;
margin: 0 -15px 30px;
padding-bottom: 10px
}
.boutique-tab.style-01 .tabs li {
margin: 0 18px
}
.boutique-tab.style-01 .tabs li a {
padding-bottom: 8px;
position: relative
}
.boutique-tab.style-01 .tabs li a::before {
position: absolute;
content: '';
bottom: 0;
left: 20px;
right: 20px;
width: 0;
border-bottom: 2px solid;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.boutique-tab.style-01 .tabs li.active a::before {
width: calc(100% - 40px);
border-color: #c99947
}
@media(max-width: 767px) {
.boutique-tab.style-01 .tabs,
.boutique-tab.style-03 .tabs {
white-space: nowrap;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
position: relative;
z-index: 1
}
}
.boutique-tab.style-02 .tabs-head {
margin-bottom: 60px
}
.boutique-tab.style-02 .tabs {
text-align: center;
background-position: center center;
background-size: contain;
background-repeat: no-repeat;
white-space: nowrap;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
padding: 10px 0;
position: relative;
z-index: 1
}
.boutique-tab.style-02 .tabs li {
white-space: normal;
line-height: 36px
}
.boutique-tab.style-02 .tabs li.active {
font-size: 24px
}
.boutique-tab.style-02 .tabs li:not(.active) {
color: #666
}
.boutique-tab.style-02 .tabs li:not(:last-child)::after {
display: inline-block;
vertical-align: middle;
content: '';
width: 22px;
border-top: 1px solid #c99947;
margin: 0 12px
}
.boutique-tab.style-02 .tabs li a {
display: inline-block;
vertical-align: top
}
.boutique-tab.style-03 .tabs-head {
border-bottom: 1px solid #ddd;
margin-bottom: 30px
}
.boutique-tab.style-03 .tabs-head .boutique-custom-heading.style-01 {
display: inline-block;
vertical-align: top;
text-align: inherit;
margin: 0 30px 0 0
}
.boutique-tab.style-03 .tabs {
display: inline-block;
vertical-align: top;
float: right;
padding: 6px 0;
margin: 0 -12px
}
.boutique-tab.style-03 .tabs li {
font-size: 14px;
line-height: 24px;
font-weight: inherit;
padding: 3px 12px;
position: relative;
margin: 0
}
.boutique-tab.style-03 .tabs li.active a {
color: #c99947
}
.boutique-tab.style-03 .tabs li:not(:last-child)::after {
position: absolute;
content: '';
top: 0;
bottom: 0;
right: -1px;
height: 14px;
margin: auto;
border-right: 1px solid
}
.boutique-tab.style-04 .tabs {
text-align: center;
white-space: nowrap;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
margin-bottom: 20px;
position: relative;
z-index: 1
}
.boutique-tab.style-04 .tabs li {
font-size: 24px;
line-height: 36px
}
.boutique-tab.style-04 .tabs li:not(:last-child)::after {
display: inline-block;
vertical-align: top;
content: '';
width: 7px;
height: 7px;
border-radius: 50%;
background-color: #999;
margin: 14px 15px 15px
}
.boutique-tab.style-04 .tabs li:not(.active) {
color: #999
}
.boutique-tab.style-04 .tabs li a {
display: inline-block;
vertical-align: top
}
.boutique-tab.style-05 .tabs-head {
margin-bottom: 60px
}
.boutique-tab.style-05 .tabs {
text-align: center;
margin: 0 -15px
}
.boutique-tab.style-05 .tabs li {
font-size: 24px;
line-height: 34px;
letter-spacing: .05em;
font-weight: 600;
margin: 0 20px
}
.boutique-tab.style-05 .tabs li:not(.active):not(:hover) a {
color: #aaa
}
.boutique-tab.style-05 .tabs li a::before {
position: absolute;
left: 0;
right: 0;
bottom: 0;
content: '';
width: 100%;
border-top: 3px solid #4e4e4e;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.boutique-tab.style-05 .tabs li:not(.active) a::before {
width: 0
}
.boutique-banner {
text-align: center
}
.boutique-banner .button {
position: relative;
display: inline-block;
vertical-align: top;
font-family: Montserrat, sans-serif;
font-size: 12px;
line-height: 24px;
font-weight: 600;
text-transform: uppercase;
padding: 8px 30px;
border: 0;
background-color: #c99947;
color: #fff;
text-align: center;
cursor: pointer;
border-radius: 0;
-webkit-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
-moz-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
-o-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease
}
.boutique-banner .banner-inner {
display: inline-block;
vertical-align: top;
max-width: 100%;
position: relative;
text-align: center
}
.boutique-banner .banner-inner>.thumb-link {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 3
}
.boutique-banner .thumb {
position: relative;
overflow: hidden;
z-index: auto
}
.boutique-banner .thumb~.content {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center;
background-color: transparent;
z-index: auto
}
.boutique-banner .content {
padding: 30px
}
.boutique-banner .content>* {
position: relative;
z-index: 3
}
@media(max-width: 1199px) and (min-width:992px) {
.boutique-banner .thumb~.content {
padding: 20px 15px
}
}
@media(max-width: 479px) {
.boutique-banner .thumb~.content {
padding: 20px 15px
}
}
.boutique-banner.style-01 .thumb~.content {
padding-top: 100px
}
.boutique-banner.style-01 .title {
font-size: 36px;
line-height: 43px;
font-weight: 700;
color: #fff;
margin-bottom: 3px
}
.boutique-banner.style-01 .subtitle {
font-family: playfair display, sans-serif;
font-style: italic;
color: #fff;
font-size: 16px;
line-height: 30px;
margin-bottom: 40px
}
.boutique-banner.style-01 .button {
padding: 11px 24px
}
.boutique-banner.style-01 .button:hover {
opacity: .7
}
@media(max-width: 479px) {
.boutique-banner.style-01 .title {
font-size: 32px;
line-height: 38px
}
.boutique-banner.style-01 .thumb~.content {
padding-top: 60px
}
.boutique-banner.style-01 .subtitle {
font-size: 14px;
line-height: 26px;
margin-bottom: 30px
}
}
.boutique-banner.style-02 .title {
font-size: 24px;
line-height: 36px;
font-weight: 700;
color: #fff;
margin-bottom: 0
}
.boutique-banner.style-03 .content {
max-width: 300px
}
.boutique-banner.style-03 .subtitle {
font-family: LaCompagnie, sans-serif;
font-size: 48px;
line-height: 30px;
font-style: italic;
margin-bottom: 0
}
.boutique-banner.style-03 .title {
font-size: 24px;
line-height: 26px;
margin-bottom: 0
}
@media(max-width: 1199px) and (min-width:992px) {
.boutique-banner.style-03 .content {
max-width: 250px
}
}
.boutique-banner.style-04 .content {
padding-bottom: 170px
}
.boutique-banner.style-04 .subtitle {
font-family: LaCompagnie, sans-serif;
font-size: 36px;
line-height: 1;
font-style: italic;
letter-spacing: .05em;
margin-bottom: 0
}
.boutique-banner.style-04 .title {
font-size: 22px;
line-height: 26px;
color: #fff;
margin-bottom: 0
}
.boutique-banner.style-04 .content>div {
position: absolute;
bottom: 30px;
left: 0;
right: 0;
padding: 0 30px
}
.boutique-banner.style-04 .button {
background-color: transparent;
padding: 3px 0;
text-decoration: underline
}
.boutique-banner.style-05 .banner-logo {
margin-bottom: 5px
}
.boutique-banner.style-05 .banner-logo img {
display: inline-block !important;
vertical-align: top;
width: auto
}
.boutique-banner.style-05 .subtitle {
font-family: LaCompagnie, sans-serif;
font-size: 48px;
line-height: 36px;
margin-bottom: 0;
color: #c99947
}
.boutique-banner.style-05 .title {
font-size: 24px;
line-height: 30px;
color: #fff;
margin-bottom: 125px
}
.boutique-banner.style-05 .button:hover {
color: #c99947
}
.boutique-banner.style-05 .button,
.boutique-banner.style-06 .button,
.boutique-banner.style-07 .button {
font-size: 14px;
line-height: 24px;
padding: 3px 0;
background-color: transparent;
text-decoration: underline
}
.boutique-banner.style-06 .background-zoom .thumb::after,
.boutique-banner.style-06 .plus-zoom .thumb::after,
.boutique-banner.style-06 .rotate-left .thumb::after,
.boutique-banner.style-06 .rotate-right .thumb::after {
opacity: .6
}
.boutique-banner.style-06 .thumb::after {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
opacity: .3;
background-color: #222
}
.boutique-banner.style-06 .subtitle {
font-family: LaCompagnie, sans-serif;
font-size: 60px;
line-height: 46px;
margin-bottom: 6px;
color: #c99947
}
.boutique-banner.style-06 .title {
font-size: 24px;
line-height: 30px;
color: #fff;
margin-bottom: 30px
}
@media(min-width: 1200px) {
.boutique-banner.style-06:not(:hover) .background-zoom .thumb::after,
.boutique-banner.style-06:not(:hover) .plus-zoom .thumb::after,
.boutique-banner.style-06:not(:hover) .rotate-left .thumb::after,
.boutique-banner.style-06:not(:hover) .rotate-right .thumb::after,
.boutique-banner.style-06:not(:hover) .thumb::after {
opacity: 0
}
.boutique-banner.style-06:not(:hover) .thumb~.content .content-inner {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0)
}
.boutique-banner.style-06 .thumb~.content .content-inner {
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
}
.boutique-banner.style-07 .subtitle {
font-family: LaCompagnie, sans-serif;
font-size: 60px;
line-height: 46px;
font-style: italic;
margin-bottom: 5px;
color: #fff
}
.boutique-banner.style-07 .title {
font-size: 24px;
line-height: 36px;
font-weight: 700;
color: #fff;
margin-bottom: 28px
}
.boutique-banner.style-08,
.boutique-banner.style-08 .banner-inner {
font-family: Montserrat, sans-serif;
text-align: inherit
}
.boutique-banner.style-08::after,
.boutique-banner.style-08::before {
display: table;
content: '';
clear: both
}
.boutique-banner.style-08 .content {
background-color: transparent;
padding: 0
}
.boutique-banner.style-08 .content-inner {
padding: 50px 50px 70px;
overflow: hidden;
border: 3px solid #c99947
}
.boutique-banner.style-08 .block-head {
font-size: 0;
line-height: 0;
margin-bottom: 25px
}
.boutique-banner.style-08 .discount {
display: inline-block;
vertical-align: middle;
width: 92px;
height: 92px;
border-radius: 90px;
color: #fff;
font-family: playfair display, sans-serif;
font-size: 36px;
line-height: 82px;
font-weight: 700;
text-align: center;
position: relative;
font-style: italic;
background-color: #c99947
}
.boutique-banner.style-08 .discount>* {
display: inline-block;
vertical-align: top;
font-weight: 400
}
.boutique-banner.style-08 .discount span:first-child {
font-size: 24px;
line-height: 90px
}
.boutique-banner.style-08 .discount span:last-child {
font-size: 18px;
line-height: 98px
}
.boutique-banner.style-08 .discount::before {
position: absolute;
content: '';
left: calc(50% - 1px);
bottom: calc(100% - 2px);
height: 1e3px;
width: 2px;
background-color: inherit
}
.boutique-banner.style-08 .discount~.block-title {
display: inline-block;
vertical-align: middle;
width: calc(100% - 92px);
padding-left: 25px
}
.boutique-banner.style-08 .block-title::after {
display: block;
content: '';
width: 46px;
height: 2px;
margin: 9px 0;
background-color: #c99947
}
.boutique-banner.style-08 .title {
font-size: 48px;
line-height: 52px;
font-weight: 700;
letter-spacing: .1em;
margin-bottom: 0
}
.boutique-banner.style-08 .subtitle {
font-family: playfair display, sans-serif;
font-size: 30px;
line-height: 32px;
font-weight: 700;
font-style: italic;
margin-bottom: 0;
color: #c99947
}
.boutique-banner.style-08 .desc {
font-size: 13px;
margin-bottom: 30px
}
.boutique-banner.style-08 .button-wrap {
text-align: right
}
.boutique-banner.style-08 .button {
padding: 3px 15px;
font-size: 11px;
float: right
}
.boutique-banner.style-08 .button:not(:hover) {
background-color: #222
}
.boutique-banner.style-08.has-thumb .thumb {
width: 320px;
max-width: 100%
}
@media(min-width: 768px) {
.boutique-banner.style-08.has-thumb .banner-inner {
display: table;
width: 100%
}
.boutique-banner.style-08.has-thumb .banner-inner>* {
display: table-cell;
vertical-align: middle
}
.boutique-banner.style-08.has-thumb.content-left .content-inner {
margin-right: -50px;
padding-right: 100px
}
.boutique-banner.style-08.has-thumb.content-right .content-inner {
margin-left: -50px;
padding-left: 100px
}
.boutique-banner.style-08.has-thumb.content-right .banner-inner {
direction: rtl
}
.boutique-banner.style-08.has-thumb.content-right .banner-inner>* {
direction: ltr
}
}
@media(max-width: 1199px) and (min-width:768px) {
.boutique-banner.style-08.has-thumb.content-left .content-inner {
margin-right: -35px;
padding-right: 70px
}
.boutique-banner.style-08.has-thumb.content-right .content-inner {
margin-left: -35px;
padding-left: 70px
}
}
@media(max-width: 1199px) {
.boutique-banner.style-08 .content-inner {
padding: 35px 35px 50px
}
.boutique-banner.style-08 .block-head {
margin-bottom: 20px
}
.boutique-banner.style-08 .discount {
width: 80px;
height: 80px;
font-size: 32px;
line-height: 72px
}
.boutique-banner.style-08 .discount span:first-child {
font-size: 20px;
line-height: 80px
}
.boutique-banner.style-08 .discount span:last-child {
font-size: 16px;
line-height: 84px
}
.boutique-banner.style-08 .discount~.block-title {
width: calc(100% - 80px);
padding-left: 20px
}
.boutique-banner.style-08 .title {
font-size: 38px;
line-height: 42px;
letter-spacing: .07em
}
.boutique-banner.style-08 .subtitle {
font-size: 24px;
line-height: 26px
}
.boutique-banner.style-08 .desc {
margin-bottom: 25px
}
.boutique-banner.style-08.has-thumb .thumb {
width: 270px
}
}
@media(max-width: 767px) {
.boutique-banner.style-08 .content-inner {
margin-bottom: -35px;
padding-bottom: 80px
}
.boutique-banner.style-08.has-thumb .thumb {
max-width: calc(100% - 60px);
margin: 0 30px
}
.boutique-banner.style-08.has-thumb.content-left .thumb {
float: right
}
.boutique-banner.style-08.has-thumb.content-right .thumb {
float: left
}
}
@media(max-width: 479px) {
.boutique-banner.style-08 .content-inner {
padding: 30px 20px 70px
}
.boutique-banner.style-08 .discount~.block-title {
display: block;
padding: 15px 0 0;
width: auto
}
}
.boutique-banner.style-09 .banner-inner {
display: block;
font-family: Montserrat, sans-serif
}
.boutique-banner.style-09 .content {
background-color: transparent;
padding: 35px 15px;
border: 3px solid #c99947;
font-size: 0;
line-height: 0;
text-align: center;
position: relative;
z-index: 3
}
.boutique-banner.style-09 .title {
font-size: 18px;
line-height: 24px;
margin-bottom: 0
}
.boutique-banner.style-09 .subtitle {
font-family: playfair display, sans-serif;
font-size: 16px;
line-height: 22px;
font-weight: 600;
letter-spacing: .07em;
font-style: italic;
margin-bottom: 0;
color: #c99947
}
.boutique-banner.style-09 .content::after {
display: inline-block;
vertical-align: top;
content: '';
width: 52px;
height: 2px;
margin: 9px 0;
background-color: #c99947
}
.boutique-banner.style-09.has-thumb .content {
margin-bottom: -35px;
padding-bottom: 65px
}
.boutique-banner.style-09 .thumb {
display: inline-block;
vertical-align: top;
max-width: calc(100% - 30px)
}
.boutique-banner.style-09.has-thumb.content-left .banner-inner {
text-align: right
}
.boutique-banner.style-09.has-thumb.content-right .banner-inner {
text-align: left
}
.boutique-banner.style-09.has-thumb.content-left .content {
margin-right: 30px
}
.boutique-banner.style-09.has-thumb.content-right .content {
margin-left: 30px
}
.boutique-banner.style-10 .banner-inner,
.boutique-banner.style-12 .banner-inner {
display: block
}
.boutique-banner.style-10 .content {
background-color: transparent;
padding: 0
}
.boutique-banner.style-10 .content-inner {
position: relative;
padding: 70px 15px
}
.boutique-banner.style-10 .content-inner::before {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
content: '';
border: 5px solid #c99947;
opacity: .5
}
.boutique-banner.style-10 .content-inner>* {
position: relative
}
.boutique-banner.style-10 .subtitle,
.boutique-banner.style-12 .subtitle {
font-family: LaCompagnie, sans-serif;
font-size: 48px;
line-height: 40px;
margin-bottom: 0;
color: #c99947
}
.boutique-banner.style-10 .title,
.boutique-banner.style-12 .title {
font-size: 20px;
line-height: 30px;
margin-bottom: 2px
}
.boutique-banner.style-10 .desc,
.boutique-banner.style-12 .button {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 26px;
font-weight: 700;
font-style: italic;
margin-bottom: 0
}
.boutique-banner.style-10.has-thumb .thumb {
display: inline-block;
vertical-align: top;
width: 280px;
max-width: calc(100% - 40px)
}
.boutique-banner.style-10.has-thumb .content-inner::before {
right: -20px
}
@media(min-width: 768px) {
.boutique-banner.style-10.has-thumb .banner-inner {
display: table;
width: 100%
}
.boutique-banner.style-10.has-thumb .banner-inner>* {
display: table-cell;
vertical-align: middle
}
.boutique-banner.style-10.has-thumb.content-left .content-inner {
margin-right: -50px;
padding-right: 100px
}
.boutique-banner.style-10.has-thumb.content-right .content-inner {
margin-left: -50px;
padding-left: 100px
}
.boutique-banner.style-10.has-thumb.content-right .banner-inner {
direction: rtl
}
.boutique-banner.style-10.has-thumb.content-right .banner-inner>* {
direction: ltr
}
}
@media(max-width: 1199px) {
.boutique-banner.style-10.has-thumb .thumb {
width: 219px
}
.boutique-banner.style-10 .content-inner {
padding: 45px 15px
}
.boutique-banner.style-10 .content-inner::before {
border-width: 4px
}
.boutique-banner.style-10 .title,
.boutique-banner.style-12 .title {
font-size: 18px;
line-height: 28px
}
}
@media(max-width: 991px) {
.boutique-banner.style-10.has-thumb .thumb {
width: 227px
}
}
@media(max-width: 767px) {
.boutique-banner.style-10.has-thumb .content-inner::before {
right: 0;
bottom: -20px
}
}
.boutique-banner.style-11 {
text-align: inherit
}
.boutique-banner.style-11 .banner-inner {
display: block;
text-align: inherit
}
.boutique-banner.style-11 .product-item {
font-size: 0;
line-height: 0
}
.boutique-banner.style-11 .product-item>* {
display: inline-block;
vertical-align: middle;
font-size: 14px;
line-height: 24px
}
.boutique-banner.style-11 .product-thumb {
width: 470px
}
.boutique-banner.style-11 .product-info {
width: calc(100% - 470px);
padding: 30px 0 30px 60px
}
.boutique-banner.style-11 .product-item.right {
direction: rtl
}
.boutique-banner.style-11 .product-item.right>* {
direction: ltr
}
.boutique-banner.style-11 .product-item.right .product-info {
padding: 30px 60px 30px 0
}
.boutique-banner.style-11 .product-title {
font-size: 28px;
line-height: 42px;
text-transform: uppercase;
margin-bottom: 4px
}
.boutique-banner.style-11 .post-excerpt {
font-size: 18px;
line-height: 30px;
font-weight: 300;
margin-bottom: 45px
}
.boutique-banner.style-11 .post-excerpt :last-child {
margin-bottom: 0
}
.boutique-banner.style-11 .price {
font-size: 24px;
line-height: 30px;
margin-bottom: 20px
}
.boutique-banner.style-11 .quantity,
.boutique-banner.style-11 .yith-wcwl-add-to-wishlist,
.boutique-banner.style-11 a.compare {
display: none !important
}
.boutique-banner.style-11 .added_to_cart,
.boutique-banner.style-11 .single_add_to_cart_button {
background-color: transparent;
font-size: 14px;
line-height: 24px;
padding: 3px 0;
text-decoration: underline;
margin-top: 30px
}
.boutique-banner.style-11 .cart:not(.variations_form)::before,
.boutique-banner.style-11 .woocommerce-variation-add-to-cart::before {
display: inline-block;
vertical-align: top;
font-family: Pe-icon-7-stroke, sans-serif;
content: "\e66e";
font-size: 25px;
font-weight: 400;
text-decoration: none;
padding: 2px 7px 4px 0;
margin: 30px 0 0
}
.boutique-banner.style-11 table.variations {
margin-bottom: 28px
}
.boutique-banner.style-11 table.variations td.label {
display: none
}
.boutique-banner.style-11 table.variations td.value {
display: inline-block;
vertical-align: top;
width: 100%
}
.boutique-banner.style-11 table.variations .variable-items-wrapper {
margin: -10px
}
.boutique-banner.style-11 table.variations .variable-item {
margin: 10px !important;
border-radius: 90px !important;
overflow: hidden
}
.boutique-banner.style-11 table.variations .color-variable-item,
.boutique-banner.style-11 table.variations .image-variable-item {
width: 40px !important;
height: 40px !important
}
.boutique-banner.style-11 table.variations .button-variable-item {
min-width: 40px !important;
width: auto !important;
height: auto !important;
padding: 0 5px !important;
line-height: 38px
}
.boutique-banner.style-11 .single_variation_wrap .woocommerce-variation-price {
display: none !important
}
@media(max-width: 1199px) {
.boutique-banner.style-11 .product-info {
padding: 30px 0 30px 30px
}
.boutique-banner.style-11 .product-item.right .product-info {
padding: 30px 30px 30px 0
}
}
@media(max-width: 991px) {
.boutique-banner.style-11 .product-info,
.boutique-banner.style-11 .product-thumb {
width: 50%
}
.boutique-banner.style-11 .product-title {
font-size: 24px;
line-height: 36px
}
.boutique-banner.style-11 .post-excerpt {
font-size: 16px;
line-height: 27px;
margin-bottom: 35px
}
.boutique-banner.style-11 .price {
font-size: 20px;
margin-bottom: 15px
}
.boutique-banner.style-11 table.variations .variable-items-wrapper {
margin: -7px
}
.boutique-banner.style-11 table.variations .variable-item {
margin: 7px !important
}
.boutique-banner.style-11 table.variations .color-variable-item,
.boutique-banner.style-11 table.variations .image-variable-item {
width: 32px !important;
height: 32px !important
}
.boutique-banner.style-11 table.variations .button-variable-item {
min-width: 32px !important;
line-height: 30px
}
}
@media(max-width: 767px) {
.boutique-banner.style-11 .product-info,
.boutique-banner.style-11 .product-thumb {
display: block;
width: auto
}
.boutique-banner.style-11 .product-info,
.boutique-banner.style-11 .product-item.right .product-info {
padding: 30px 0
}
}
.boutique-banner.style-12 {
border: 1px solid #c99947;
padding: 75px 15px
}
.boutique-banner.style-12 .content {
background-color: transparent;
padding: 0
}
.boutique-banner.style-12 .button {
background-color: transparent;
padding: 0;
text-decoration: underline;
text-transform: none
}
@media(max-width: 1199px) {
.boutique-banner.style-12 {
padding: 45px 15px
}
}
@media(max-width: 991px) {
.boutique-banner.style-12 {
padding: 50px 15px 49px
}
}
.boutique-banner.style-13 {
padding: 0 0 0 165px;
text-align: inherit
}
.boutique-banner.style-13 .banner-inner {
display: block;
text-align: inherit
}
.boutique-banner.style-13 .banner-inner::after,
.boutique-banner.style-13 .banner-inner::before {
display: table;
content: '';
clear: both
}
.boutique-banner.style-13 .banner-inner>* {
display: inline-block;
vertical-align: top;
max-width: 100%
}
.boutique-banner.style-13 .gallery-banner {
float: left;
width: 762px;
max-width: calc(100% - 859px);
padding: 20px 30px 20px 0
}
.boutique-banner.style-13 .gallery-thumb {
float: right;
width: 859px;
text-align: center
}
.boutique-banner.style-13 .gallery-thumb figure {
display: inline-block;
vertical-align: top;
max-width: 100%
}
.boutique-banner.style-13 .gallery-slide {
max-width: 732px
}
.boutique-banner.style-13 .gallery-item {
padding: 0;
font-style: inherit;
color: #444;
margin: 0;
cursor: pointer;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
text-align: center
}
.boutique-banner.style-13 .gallery-item .text {
display: block;
letter-spacing: .15em;
font-size: 10px;
line-height: 20px;
font-weight: 600;
margin-top: 13px
}
.boutique-banner.style-13 .gallery-item .image {
display: inline-block;
vertical-align: top;
max-width: 100%;
position: relative;
overflow: hidden;
background-color: #000
}
.boutique-banner.style-13 .gallery-item img {
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease
}
.boutique-banner.style-13 .gallery-item:hover img {
opacity: .5;
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1)
}
.boutique-banner.style-13 .gallery-item .image::after,
.boutique-banner.style-13 .gallery-item .image::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 30px;
height: 2px;
background-color: #fff;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
z-index: 1
}
.boutique-banner.style-13 .gallery-item .image::after {
width: 2px;
height: 30px
}
.boutique-banner.style-13 .gallery-item:not(:hover) .image::after,
.boutique-banner.style-13 .gallery-item:not(:hover) .image::before {
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
opacity: 0
}
.boutique-banner.style-13 .gallery-head {
padding-bottom: 56px
}
.boutique-banner.style-13 .subtitle {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 24px;
font-style: italic;
color: #aaa;
margin-bottom: 7px
}
.boutique-banner.style-13 .title {
font-size: 29px;
line-height: 42px;
letter-spacing: .1em;
margin-bottom: 4px
}
.boutique-banner.style-13 .desc {
margin-bottom: 10px
}
.boutique-banner.style-13 .gallery-title {
font-size: 14px;
line-height: 24px;
letter-spacing: .15em;
margin-bottom: 30px
}
.boutique-banner.style-13 .gallery-title::after {
display: block;
content: '';
width: 48px;
height: 2px;
background-color: #f7593f;
margin-top: 13px
}
@media(max-width: 1499px) {
.boutique-banner.style-13 {
padding: 0 0 0 30px
}
}
@media(max-width: 1199px) {
.boutique-banner.style-13 {
padding: 0 30px
}
.boutique-banner.style-13 .gallery-banner {
width: 100%;
max-width: 100%;
padding-right: 0
}
.boutique-banner.style-13 .gallery-thumb {
width: 100%
}
}
@media(max-width: 991px) {
.boutique-banner.style-13 {
padding: 0 0 0 15px
}
}
.boutique-banner.style-14 .thumb img {
position: relative;
max-width: inherit;
margin-left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%)
}
.boutique-banner.style-14 .content {
left: auto;
max-width: 270px;
padding: 30px 20px 20px;
text-align: left
}
.boutique-banner.style-14 .title {
font-size: 24px;
line-height: 30px;
margin-bottom: 5px
}
.boutique-banner.style-14 .subtitle {
font-size: 13px;
line-height: 18px;
color: #666;
margin-bottom: 30px
}
.boutique-banner.style-14 .button {
font-size: 12px;
line-height: 20px;
letter-spacing: .05em;
border-bottom: 2px solid #767676;
background-color: transparent;
padding: 0
}
.boutique-banner.style-14 .button:hover {
background-color: transparent;
border-bottom: 2px solid
}
@media(max-width: 1199px) {
.boutique-banner.style-14 .content {
max-width: 260px;
margin-left: auto;
padding: 20px 15px 15px
}
}
@media(max-width: 1199px) and (min-width:992px) {
.boutique-banner.style-14 .thumb img {
max-height: 230px
}
}
@media(max-width: 991px) and (min-width:768px) {
.boutique-banner.style-14 .thumb img {
max-height: 210px
}
}
.boutique-banner.style-15 .thumb {
display: block
}
.boutique-banner.style-15 .thumb~.content {
padding: 0;
bottom: auto;
right: auto;
-webkit-transform: rotate(90deg) translateX(80px);
-moz-transform: rotate(90deg) translateX(80px);
-ms-transform: rotate(90deg) translateX(80px);
-o-transform: rotate(90deg) translateX(80px);
transform: rotate(90deg) translateX(80px)
}
.boutique-banner.style-15.content-left .thumb~.content {
top: 0;
left: calc(100% + 30px);
-webkit-transform-origin: left top;
-moz-transform-origin: left top;
-ms-transform-origin: left top;
-o-transform-origin: left top;
transform-origin: left top
}
.boutique-banner.style-15.content-right .thumb~.content {
top: -30px;
left: -30px;
-webkit-transform-origin: left bottom;
-moz-transform-origin: left bottom;
-ms-transform-origin: left bottom;
-o-transform-origin: left bottom;
transform-origin: left bottom
}
.boutique-banner.style-15 .title {
font-size: 14px;
line-height: 20px;
letter-spacing: .1em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 80px;
margin: -5px 0 15px
}
.boutique-banner.style-15 .thumb::after {
position: absolute;
bottom: 0;
left: 0;
width: 60px;
font-size: 16px;
line-height: 60px;
background-color: #fff;
text-align: center;
font-family: Flaticon, sans-serif;
content: '\f105'
}
@media(min-width: 992px) {
.boutique-banner.style-15.content-right .title {
margin: 15px 0 -5px
}
}
@media(max-width: 1199px) {
.boutique-banner.style-15 .thumb~.content {
-webkit-transform: rotate(90deg) translateX(50px);
-moz-transform: rotate(90deg) translateX(50px);
-ms-transform: rotate(90deg) translateX(50px);
-o-transform: rotate(90deg) translateX(50px);
transform: rotate(90deg) translateX(50px)
}
}
@media(max-width: 991px) {
.boutique-banner.style-15 .banner-inner {
max-width: calc(100% - 30px)
}
.boutique-banner.style-15 .thumb~.content {
-webkit-transform: rotate(90deg) translateX(15px);
-moz-transform: rotate(90deg) translateX(15px);
-ms-transform: rotate(90deg) translateX(15px);
-o-transform: rotate(90deg) translateX(15px);
transform: rotate(90deg) translateX(15px);
max-width: 100%
}
.boutique-banner.style-15 .title {
font-size: 12px;
margin: 5px 0
}
}
.boutique-banner.style-16 .thumb~.content {
right: auto;
max-width: calc(100% - 60px);
text-align: left
}
.boutique-banner.style-16.content-top .thumb~.content {
top: 5px;
bottom: auto
}
.boutique-banner.style-16.content-mid .thumb~.content {
top: 50%;
bottom: auto;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%)
}
.boutique-banner.style-16.content-bot .thumb~.content {
top: auto;
bottom: 5px
}
.boutique-banner.style-16 .title {
font-size: 18px;
line-height: 24px;
margin-bottom: 0
}
.boutique-banner.style-16 .subtitle {
font-size: 12px;
line-height: 20px;
letter-spacing: .05em;
color: #888;
margin-bottom: 0
}
.boutique-banner.style-17 .subtitle {
font-size: 18px;
line-height: 30px;
font-family: playfair display, sans-serif;
font-style: italic;
color: #fff;
margin-bottom: 18px
}
.boutique-banner.style-17 .title {
font-size: 36px;
line-height: 50px;
color: #fff;
letter-spacing: .25em;
margin-right: -.25em;
margin-bottom: 28px
}
.boutique-banner.style-17 .button {
letter-spacing: .15em;
padding: 13px calc(30px - .15em) 13px 30px
}
.boutique-banner.style-17 .button:not(:hover) {
background-color: transparent;
box-shadow: 0 0 0 2px #fff inset
}
@media(max-width: 767px) {
.boutique-banner.style-17 .thumb img {
position: relative;
max-width: inherit;
margin-left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%)
}
}
.boutique-banner.style-18 {
text-align: inherit
}
.boutique-banner.style-18 .banner-inner {
display: block;
padding: 80px 160px;
text-align: inherit
}
.boutique-banner.style-18 .thumb {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0
}
.boutique-banner.style-18 .thumb figure {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-position: center center;
background-size: cover
}
.boutique-banner.style-18 .content {
position: relative;
max-width: 360px;
margin-left: auto;
padding: 86px 60px 93px;
background-color: #fff;
opacity: 1
}
.boutique-banner.style-18 .title {
font-size: 30px;
line-height: 37px;
margin-bottom: 8px
}
.boutique-banner.style-18 .subtitle {
font-size: 14px;
line-height: 24px;
margin-bottom: 22px
}
.boutique-banner.style-18 .button {
font-size: 14px;
border: 3px solid
}
.boutique-banner.style-18 .button:not(:hover):not(:focus) {
background-color: #fff
}
@media(max-width: 1199px) {
.boutique-banner.style-18 .banner-inner {
padding: 80px 100px
}
}
@media(max-width: 991px) {
.boutique-banner.style-18 .banner-inner {
padding: 80px 55px
}
}
@media(max-width: 767px) {
.boutique-banner.style-18 .banner-inner {
padding: 60px 30px
}
}
@media(max-width: 479px) {
.boutique-banner.style-18 .banner-inner {
padding: 60px 15px
}
.boutique-banner.style-18 .content {
padding: 40px 20px 50px
}
.boutique-banner.style-18 .title {
font-size: 26px;
line-height: 32px
}
.boutique-banner.style-18 .subtitle {
font-size: 13px;
line-height: 20px;
margin-bottom: 20px
}
}
.boutique-banner.style-19 {
text-align: inherit
}
.boutique-banner.style-19 .banner-inner {
display: block;
text-align: inherit
}
.boutique-banner.style-19 .thumb {
display: inline-block;
vertical-align: top;
max-width: 70%;
overflow: hidden
}
.boutique-banner.style-19 .thumb~.content {
left: auto;
width: 43%;
max-width: 385px
}
.boutique-banner.style-19 .content {
padding: 15px 15px 20px;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
justify-content: center
}
.boutique-banner.style-19 .title {
font-size: 26px;
line-height: 32px;
margin-bottom: 16px
}
.boutique-banner.style-19 .subtitle {
font-size: 14px;
line-height: 24px;
margin-bottom: 46px
}
@media(max-width: 767px) {
.boutique-banner.style-19 {
text-align: center
}
.boutique-banner.style-19 .thumb {
max-width: inherit
}
.boutique-banner.style-19 .thumb~.content {
position: static;
width: auto;
max-width: inherit
}
.boutique-banner.style-19 .title {
margin-bottom: 10px
}
.boutique-banner.style-19 .subtitle {
margin-bottom: 25px
}
}
.boutique-container.rows-space-0 .row-item,
.boutique-custommenu.rows-space-0 .row-item,
.rows-space-0 {
margin-bottom: 0
}
.boutique-container.rows-space-10 .row-item,
.boutique-custommenu.rows-space-10 .row-item,
.rows-space-10 {
margin-bottom: 10px
}
.boutique-container.rows-space-20 .row-item,
.boutique-custommenu.rows-space-20 .row-item,
.rows-space-20 {
margin-bottom: 20px
}
.boutique-container.rows-space-30 .row-item,
.boutique-custommenu.rows-space-30 .row-item,
.rows-space-30 {
margin-bottom: 30px
}
.boutique-container.rows-space-40 .row-item,
.boutique-custommenu.rows-space-40 .row-item,
.rows-space-40 {
margin-bottom: 40px
}
.boutique-container.rows-space-50 .row-item,
.boutique-custommenu.rows-space-50 .row-item,
.rows-space-50 {
margin-bottom: 50px
}
.boutique-container.rows-space-60 .row-item,
.boutique-custommenu.rows-space-60 .row-item,
.rows-space-60 {
margin-bottom: 60px
}
.boutique-container.rows-space-70 .row-item,
.boutique-custommenu.rows-space-70 .row-item,
.rows-space-70 {
margin-bottom: 70px
}
.boutique-container.rows-space-80 .row-item,
.boutique-custommenu.rows-space-80 .row-item,
.rows-space-80 {
margin-bottom: 80px
}
.boutique-container.rows-space-90 .row-item,
.boutique-custommenu.rows-space-90 .row-item,
.rows-space-90 {
margin-bottom: 90px
}
.boutique-container.rows-space-100 .row-item,
.boutique-custommenu.rows-space-100 .row-item,
.rows-space-100 {
margin-bottom: 100px
}
.boutique-container[class*=" rows-space-"],
.boutique-container[class^=rows-space-],
.boutique-custommenu[class*=" rows-space-"],
.boutique-custommenu[class^=rows-space-] {
margin-bottom: 0
}
.boutique-social-icons>a {
display: inline-block;
width: 36px;
text-align: center;
color: #222;
border-radius: 50%;
background-color: #fff;
line-height: 36px;
margin: 0 2px;
font-size: 18px
}
.boutique-social-icons>a:hover {
background-color: #c99947;
color: #fff
}
@media (min-width: 992px) {
.nav-sections {
background-color: transparent
}
}
.boutique-specified-product {
display: flex;
align-items: center;
justify-content: space-between
}
.boutique-specified-product .product-photo-container {
flex: 0 0 470px
}
.boutique-specified-product .product-item-details {
padding-left: 60px;
font-size: 14px;
line-height: 24px;
text-align: left;
padding-top: 30px;
padding-bottom: 30px
}
.boutique-specified-product.boutique-right-image .product-item-details {
order: -1;
padding-left: 0;
padding-right: 60px
}
.boutique-specified-product .product-item-name {
font-size: 28px;
line-height: 42px;
text-transform: uppercase;
margin-bottom: 4px;
font-weight: 600;
display: block
}
.boutique-specified-product .product-item-description {
font-size: 18px;
line-height: 30px;
font-weight: 300;
margin-bottom: 45px
}
.boutique-specified-product .price-box {
margin-bottom: 20px
}
.boutique-specified-product .price-box .price {
font-size: 24px;
line-height: 30px
}
.boutique-specified-product .action.tocart {
background-color: transparent;
font-size: 14px;
line-height: 24px;
padding: 3px 0;
margin-top: 30px;
background: none !important;
box-shadow: none;
color: #222
}
.boutique-specified-product .action.tocart:before {
display: inline-block;
vertical-align: middle;
font-family: Pe-icon-7-stroke, sans-serif;
content: "\e66e";
font-size: 25px;
font-weight: 400;
text-decoration: none;
padding: 2px 7px 4px 0;
color: #222
}
.boutique-specified-product .action.tocart>span {
text-decoration: underline
}
.boutique-specified-product .action.tocart:hover {
color: #c99947
}
@media (max-width: 991px) {
.boutique-specified-product .product-photo-container {
flex: 0 0 50%
}
}
@media (max-width: 767px) {
.boutique-specified-product {
flex-direction: column
}
.boutique-specified-product .product-item-details,
.boutique-specified-product.boutique-right-image .product-item-details {
padding-left: 0;
padding-right: 0;
order: unset
}
.boutique-specified-product .product-photo-container {
flex: 0 0 100%
}
}
.header-custom-category-menu {
list-style: none;
padding: 0;
margin: 0 -15px
}
.header-custom-category-menu li {
display: inline-block;
vertical-align: middle;
margin: 0 15px
}
.header-custom-category-menu a {
display: flex;
width: 133px;
height: 133px;
border: 1px dashed #ccc;
text-align: center;
font-size: 11px;
line-height: 24px;
text-transform: uppercase;
font-weight: 600;
border-radius: 90px;
padding: 28px 15px 34px;
align-items: center;
flex-direction: column;
justify-content: center;
transition: all .3s
}
.header-custom-category-menu a:hover {
color: #c99947;
border-color: #c99947
}
@media (max-width: 1199px) {
.header-custom-category-menu a {
width: 110px;
height: 110px;
padding: 24px 10px 29px;
font-size: 10px;
line-height: 20px
}
.header-custom-category-menu a img {
max-height: 35px;
width: auto
}
.header-custom-category-menu {
margin: 0 -7px
}
.header-custom-category-menu li {
margin: 0 7px
}
}
@media (max-width: 991px) {
.header-custom-category-menu {
white-space: nowrap
}
.header-custom-category-menu a {
width: 90px;
height: 90px;
padding: 14px 10px 19px
}
}
.header-custom-category-menu.style02 {
text-align: center;
padding: 15px 0;
margin: 0;
white-space: nowrap
}
.header-custom-category-menu.style02 li {
margin: 25px
}
.header-custom-category-menu.style02 a {
width: auto;
height: auto;
border-radius: unset;
border: 0;
padding: 0;
flex-direction: unset;
font-family: Montserrat, sans-serif
}
.header-custom-category-menu.style02 figure {
width: 100px;
height: 100px;
border: 1px dashed #ccc;
border-radius: 90px;
line-height: 98px;
margin-right: 20px;
transition: all .3s ease
}
.header-custom-category-menu.style02 a:hover figure {
border-color: #c99947
}
@media (max-width: 991px) {
.header-custom-category-menu.style02 li {
margin: 15px
}
.header-custom-category-menu.style02 figure {
width: 80px;
height: 80px;
line-height: 78px;
margin-right: 12px
}
}
.header-social-icons>a {
margin: 0 3px;
font-size: 14px
}
.header-social-icons>a:not(:hover) {
color: #888
}
.button-products {
text-align: center;
border: 1px solid #e5e5e5;
padding: 20px 15px
}
.button-products>a {
font-family: Montserrat, sans-serif;
font-weight: 600;
font-size: 12px;
border-bottom: 1px solid;
line-height: 24px
}
.boutique-parallax {
background-position: center;
background-size: cover
}
@media (min-width: 1200px) {
.boutique-parallax {
background-attachment: fixed
}
}
.boutique-person.style-01 .thumb-avatar {
margin-bottom: 14px
}
.boutique-person.style-01 .thumb-avatar a {
display: inline-block;
vertical-align: top;
max-width: 100%
}
.boutique-person.style-01 .name {
font-size: 15px;
line-height: 24px;
margin-bottom: 3px
}
.boutique-person.style-01 .positions {
font-family: playfair display, sans-serif;
font-size: 13px;
line-height: 24px;
font-style: italic;
margin-bottom: 0
}
.boutique-person.style-02 {
text-align: center
}
.boutique-person.style-02 .desc {
font-family: playfair display, sans-serif;
font-size: 13px;
line-height: 24px;
font-style: italic;
margin-bottom: 46px
}
.boutique-person.style-02 .name {
font-size: 15px;
line-height: 24px;
margin-bottom: 3px
}
.boutique-person.style-02 .positions {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 24px;
margin-bottom: 0
}
.boutique-person.style-03 {
text-align: center
}
.boutique-person.style-03 .second-slide {
display: inline-block;
vertical-align: top;
max-width: 270px;
margin-bottom: 24px
}
.boutique-person.style-03 .person-thumb {
border-radius: 50%;
overflow: hidden;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
cursor: pointer
}
.boutique-person.style-03 .person-thumb:not(:hover):not(.slick-current) {
opacity: .7
}
.boutique-person.style-03 .desc {
font-size: 13px;
color: #fff;
letter-spacing: .1em;
margin-bottom: 8px;
line-height: 24px
}
.boutique-person.style-03 .name {
font-family: playfair display, sans-serif;
font-size: 18px;
line-height: 30px;
font-weight: 700;
font-style: italic;
color: #fff;
margin-bottom: 0
}
.boutique-person.style-03 .name a::before {
display: inline-block;
vertical-align: top;
content: '-';
margin-right: 3px
}
.boutique-person.style-03 .name a::after {
display: inline-block;
vertical-align: top;
content: '-';
margin-left: 3px
}
.boutique-person.style-03 .main-slide {
padding: 0 50px
}
.boutique-person.style-03 .main-slide .slick-arrow {
top: -15px;
font-size: 10px;
width: 32px;
border: 1px solid transparent;
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none
}
.boutique-person.style-03 .main-slide .slick-arrow:not(:hover) {
background-color: transparent;
border: 1px solid
}
.boutique-person.style-03 .main-slide .slick-arrow.prev {
left: -15px
}
.boutique-person.style-03 .main-slide .slick-arrow.next {
right: -15px
}
@media(min-width: 1200px) {
.boutique-person.style-03:not(:hover) .main-slide .slick-arrow {
opacity: 0
}
.boutique-person.style-03 .main-slide .slick-arrow.prev {
left: -32px
}
.boutique-person.style-03 .main-slide .slick-arrow.next {
right: -32px
}
}
@media(max-width: 767px) {
.boutique-person.style-03 .main-slide {
padding: 0 30px
}
}
@media(max-width: 479px) {
.boutique-person.style-03 .main-slide {
padding: 0 20px
}
}
.boutique-person.style-04 {
color: #fff
}
.boutique-person.style-04 .inner::after,
.boutique-person.style-04 .inner::before {
display: table;
content: '';
clear: both
}
.boutique-person.style-04 .thumb-avatar {
display: inline-block;
vertical-align: top;
max-width: 110px;
float: left
}
.boutique-person.style-04 .thumb-avatar a {
display: block;
border-radius: 50%;
border: 5px solid rgba(255, 255, 255, .7);
overflow: hidden
}
.boutique-person.style-04 .content-person {
display: inline-block;
vertical-align: top;
width: calc(100% - 110px);
padding: 20px 110px 0;
position: relative
}
.boutique-person.style-04 .content-person::after,
.boutique-person.style-04 .content-person::before {
position: absolute;
font-size: 100px;
line-height: 1;
font-weight: 700;
opacity: .3
}
.boutique-person.style-04 .content-person::before {
content: '“';
top: 9px;
left: 35px
}
.boutique-person.style-04 .content-person::after {
content: '”';
right: 35px;
bottom: 0
}
.boutique-person.style-04 .desc {
margin-bottom: 23px;
line-height: 24px
}
.boutique-person.style-04 .name {
color: inherit;
font-size: 12px;
line-height: 24px;
text-transform: uppercase;
margin-bottom: 0
}
.boutique-person.style-04 .name a::before {
content: '-'
}
.boutique-person.style-04 .name a::after {
content: '-'
}
@media(max-width: 767px) {
.boutique-person.style-04 .thumb-avatar {
width: 80px
}
.boutique-person.style-04 .thumb-avatar a {
border-width: 3px
}
.boutique-person.style-04 .content-person {
width: calc(100% - 80px);
padding: 13px 50px 0 75px
}
.boutique-person.style-04 .content-person::before {
font-size: 80px;
top: 6px;
left: 20px
}
.boutique-person.style-04 .content-person::after {
font-size: 80px;
right: 0
}
}
@media(max-width: 479px) {
.boutique-person.style-04 .content-person {
width: 100%;
padding: 15px 40px 0 45px
}
.boutique-person.style-04 .content-person::before {
font-size: 70px;
left: 0
}
.boutique-person.style-04 .content-person::after {
font-size: 70px
}
}
.boutique-person.style-05 {
text-align: center;
margin-bottom: 35px
}
.boutique-person.style-05 .desc {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 24px;
font-style: italic;
padding-top: 5px;
margin-bottom: 45px
}
.boutique-person.style-05 .desc::after,
.boutique-person.style-05 .desc::before {
display: inline-block;
vertical-align: top;
font-family: Georgia, sans-serif;
content: '“';
font-size: 120px;
font-style: normal;
opacity: .1;
margin: 33px -60px -33px 10px
}
.boutique-person.style-05 .desc::after {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
margin: -33px 10px 33px -60px
}
.boutique-person.style-05 .name {
font-size: 15px;
line-height: 24px;
margin-bottom: 2px
}
.boutique-person.style-05 .positions {
font-family: playfair display, sans-serif;
font-size: 14px;
line-height: 24px;
color: #888;
margin-bottom: 0
}
@media(max-width: 991px) {
.boutique-person.style-05 .desc br {
display: none
}
}
.slick-slider {
overflow: visible
}
.slick-list {
padding: 0
}
.slick-track {
margin-left: 0
}
.slick-slide>.row-item>* {
vertical-align: top
}
.slick-slider .slick-arrow {
display: inline-block;
position: absolute;
width: 30px;
font-size: 18px;
line-height: 30px;
z-index: 2;
cursor: pointer;
text-align: center;
color: #fff;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.slick-slider .slick-arrow:not(:hover) {
opacity: .7
}
.slick-slider .slick-arrow:hover {
background-color: #c99947
}
.slick-slider .slick-arrow.prev {
top: calc(50% - 15px);
left: 0;
-webkit-transform-origin: left;
-moz-transform-origin: left;
-ms-transform-origin: left;
-o-transform-origin: left;
transform-origin: left
}
.slick-slider .slick-arrow.next {
top: calc(50% - 15px);
right: 0;
-webkit-transform-origin: right;
-moz-transform-origin: right;
-ms-transform-origin: right;
-o-transform-origin: right;
transform-origin: right
}
.slick-slider.slick-vertical .slick-slide {
border: 0
}
.slick-slider.slick-vertical .slick-arrow.prev {
top: 0;
left: calc(50% - 15px);
-webkit-transform-origin: top;
-moz-transform-origin: top;
-ms-transform-origin: top;
-o-transform-origin: top;
transform-origin: top
}
.slick-slider.slick-vertical .slick-arrow.next {
top: auto;
bottom: 0;
left: calc(50% - 15px);
right: auto;
-webkit-transform-origin: bottom;
-moz-transform-origin: bottom;
-ms-transform-origin: bottom;
-o-transform-origin: bottom;
transform-origin: bottom
}
@media(min-width: 768px) {
.slick-slider:not(:hover) .slick-arrow {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0)
}
}
@media(max-width: 479px) {
.slick-slider .slick-arrow {
width: 24px;
font-size: 14px;
line-height: 24px
}
}
.slick-slider.nav-bottom-left>.slick-arrow,
.slick-slider.nav-top-right>.slick-arrow {
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
width: 36px;
line-height: 36px
}
.slick-slider.nav-bottom-left>.slick-arrow:not(:hover),
.slick-slider.nav-top-right>.slick-arrow:not(:hover) {
opacity: 1;
background-color: transparent;
box-shadow: 0 0 0 1px #e5e5e5 inset;
color: inherit
}
.slick-slider.nav-top-right>.slick-arrow.prev {
top: -64px;
left: auto;
right: 41px
}
.slick-slider.nav-top-right>.slick-arrow.next {
top: -64px
}
div.nav-top-right>.boutique-custom-heading.style-01 {
text-align: inherit;
padding-right: 90px;
margin-bottom: 22px
}
div .slick-slider.nav-top-center {
padding-top: 70px
}
.slick-slider.nav-top-center>.slick-arrow {
width: 35px;
background-color: transparent;
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none
}
.slick-slider.nav-top-center>.slick-arrow:not(:hover) {
color: inherit;
box-shadow: 0 0 0 1px #aaa inset
}
.slick-slider.nav-top-center>.slick-arrow::before {
line-height: 32px
}
.slick-slider.nav-top-center>.slick-arrow:hover {
color: #fff
}
.slick-slider.nav-top-center>.slick-arrow.prev {
top: 0;
left: calc(50% - 55px)
}
.slick-slider.nav-top-center>.slick-arrow.next {
top: 0;
right: calc(50% - 55px)
}
.slick-slider.nav-top-center>.slick-arrow.prev::after {
position: absolute;
content: '';
top: 50%;
left: 100%;
border-top: 1px dashed #666;
width: 40px
}
div .slick-slider.nav-bottom-left {
padding-bottom: 70px
}
.slick-slider.nav-bottom-left>.slick-arrow.prev {
top: auto;
bottom: 0
}
.slick-slider.nav-bottom-left>.slick-arrow.next {
top: auto;
left: 41px;
right: auto;
bottom: 0
}
.slick-slider.nav-out-side>.slick-arrow {
width: 35px;
font-size: 32px;
background-color: transparent;
color: #999
}
.product-item .product-thumb .slick-arrow {
font-size: 26px;
background-color: transparent;
color: #999
}
.product-item .product-thumb .slick-arrow:hover,
.slick-slider.nav-out-side>.slick-arrow:hover {
background-color: transparent
}
.slick-slider.nav-out-side>.slick-arrow.prev {
left: -35px
}
.slick-slider.nav-out-side>.slick-arrow.next {
right: -35px
}
@media(min-width: 1230px) {
.slick-slider.nav-out-side>.slick-arrow {
width: 50px;
font-size: 43px
}
.slick-slider.nav-out-side>.slick-arrow.prev {
padding-right: 15px;
left: -50px
}
.slick-slider.nav-out-side>.slick-arrow.next {
padding-left: 15px;
right: -50px
}
}
@media(max-width: 991px) {
.slick-slider.nav-out-side>.slick-arrow {
width: 20px;
font-size: 26px
}
.slick-slider.nav-out-side>.slick-arrow.prev {
left: -20px
}
.slick-slider.nav-out-side>.slick-arrow.next {
right: -20px
}
}
@media(max-width: 767px) {
.slick-slider.nav-out-side>.slick-arrow.prev {
left: -18px
}
.slick-slider.nav-out-side>.slick-arrow.next {
right: -18px
}
}
.slick-dots {
list-style: none;
padding: 0;
text-align: center;
font-size: 0;
line-height: 0;
margin: 5px -4px 0
}
.slick-dots li {
display: inline-block;
vertical-align: top;
margin: 5px 4px 0;
cursor: pointer
}
.slick-dots li button {
display: block;
opacity: 1;
padding: 0;
font-size: inherit;
line-height: inherit;
overflow: hidden;
width: 10px;
height: 10px;
background-color: transparent;
border: 1px solid #ccc
}
.slick-dots li.slick-active button,
.slick-dots li:hover button {
background-color: #000;
border-color: transparent
}
.footer-tagcloud {
margin: 0 -5px -10px
}
.footer-tagcloud a {
display: inline-block;
vertical-align: top;
font-size: 13px !important;
padding: 2px 10px;
border: 1px solid #ddd;
margin: 0 5px 10px;
line-height: 24px
}
.footer-tagcloud a:hover {
background-color: #c99947;
border-color: transparent;
color: #fff
}
.custom-plus-icon,
.custom-plus-icon-small {
position: relative
}
.custom-plus-icon-small::after,
.custom-plus-icon::after {
position: absolute;
top: calc(50% - 10px);
left: calc(100% - 10px);
width: 20px;
height: 20px;
content: '+';
font-size: 30px;
line-height: 20px;
text-align: center;
color: #c99947;
font-weight: 600
}
@media(max-width: 991px) {
.custom-plus-icon-small::after,
.custom-plus-icon::after {
top: calc(100% - 10px);
left: calc(50% - 10px)
}
.boutique-notice-block {
display: none
}
}
.custom-plus-icon-small::after {
font-size: 18px;
color: #333
}
.custom-underline {
position: relative
}
.custom-underline::after {
position: absolute;
content: '';
bottom: 16px;
left: 0;
right: 0;
width: 42px;
border-bottom: 1px solid;
margin: auto
}
.boutique-flickr .row,
.boutique-instagram .row {
margin: 0 -5px
}
.boutique-flickr .row [class*=" col-"],
.boutique-flickr .row [class^=col-],
.boutique-instagram .row [class*=" col-"],
.boutique-instagram .row [class^=col-] {
padding: 0 5px;
margin-bottom: 10px
}
.boutique-flickr .thumb-flickr,
.boutique-instagram .thumb-instagram {
display: inline-block;
vertical-align: top;
max-width: 100%;
position: relative;
background-color: #000
}
.boutique-flickr .thumb-flickr img,
.boutique-instagram .thumb-instagram img {
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease
}
.boutique-flickr .thumb-flickr::after,
.boutique-flickr .thumb-flickr::before,
.boutique-instagram .thumb-instagram::after,
.boutique-instagram .thumb-instagram::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: #fff;
width: 1px;
height: 20px;
margin: auto;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
z-index: 1
}
.boutique-flickr .thumb-flickr::after,
.boutique-instagram .thumb-instagram::after {
width: 20px;
height: 1px
}
.boutique-flickr .thumb-flickr:hover img,
.boutique-instagram .thumb-instagram:hover img {
opacity: .5
}
.boutique-flickr .thumb-flickr:not(:hover)::before,
.boutique-instagram .thumb-instagram:not(:hover)::before {
opacity: 0;
-webkit-transform: scale(1, 2);
-moz-transform: scale(1, 2);
-ms-transform: scale(1, 2);
-o-transform: scale(1, 2);
transform: scale(1, 2)
}
.boutique-flickr .thumb-flickr:not(:hover)::after,
.boutique-instagram .thumb-instagram:not(:hover)::after {
opacity: 0;
-webkit-transform: scale(2, 1);
-moz-transform: scale(2, 1);
-ms-transform: scale(2, 1);
-o-transform: scale(2, 1);
transform: scale(2, 1)
}
.products-grid .product-item-info.type5 {
margin-left: -15px;
margin-right: -15px
}
.boutique-custommenu.canvas-header.left-absolute {
background-color: rgba(0, 0, 0, .8);
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 260px;
transition: all .3s ease;
z-index: 2
}
.boutique-custommenu.canvas-header.left-absolute.canvas-closed a.canvas-toggle {
transform: translateX(100%)
}
.boutique-single-image a.button-play {
position: absolute;
top: calc(50% - 30px);
left: calc(50% - 30px);
width: 60px;
border: 3px solid;
font-size: 0;
line-height: 0;
border-radius: 50%;
padding: 0 0 0 4px;
background-color: transparent;
color: #fff;
z-index: 2;
text-align: center
}
.boutique-single-image a.button-play::before {
font-family: "Font Awesome 5 Free";
content: "\f04b";
font-size: 20px;
line-height: 54px;
font-weight: 600
}
.boutique-single-image a.button-play:hover {
color: #c99947
}
.revert-x {
transform: scaleX(-1)
}
.overflow-content {
overflow: hidden
}
.overflow-content .owl-carousel .owl-stage-outer {
overflow: visible
}
.product-item.style-07 .thumb-link::after {
display: none
}
.products-grid .product-item-info.type7 .product-item-details .product-item-name {
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis
}
.overflow-content .owl-carousel .owl-stage-outer:after {
content: '';
background-color: #000;
position: absolute;
top: 15px;
bottom: 86px;
left: 100%;
width: 1e3%;
opacity: .2;
z-index: 2
}
.overflow-content .owl-carousel .owl-stage-outer:before {
content: '';
background-color: #000;
position: absolute;
top: 15px;
bottom: 86px;
right: 100%;
width: 1e3%;
opacity: .2;
z-index: 2
}
.boutique-video.style-01 .inner {
position: relative;
padding: 7px;
box-shadow: 0 0 0 1px #e5e5e5 inset;
color: #c99947
}
.boutique-video.style-01 .inner::after,
.boutique-video.style-01 .inner::before,
.boutique-video.style-01 .inner>span::after,
.boutique-video.style-01 .inner>span::before {
position: absolute;
content: '';
width: 44px;
height: 44px;
border-style: solid
}
.boutique-video.style-01 .inner::before {
top: 0;
left: 0;
border-width: 2px 0 0 2px
}
.boutique-video.style-01 .inner::after {
top: 0;
right: 0;
border-width: 2px 2px 0 0
}
.boutique-video.style-01 .inner>span::before {
bottom: 0;
left: 0;
border-width: 0 0 2px 2px
}
.boutique-video.style-01 .inner>span::after {
bottom: 0;
right: 0;
border-width: 0 2px 2px 0
}
.small-list .product-items .product-item-info {
display: flex;
margin: 0
}
.small-list .product-items .product-item-info .product-item-photo {
position: static;
flex: 0 0 70px
}
.small-list .product-items .product-item-info .product-item-details {
margin: 0;
padding: 0 0 0 20px;
text-align: left;
flex: 1
}
.small-list .products.list .product.name a {
font-size: 13px;
text-transform: uppercase;
font-family: Montserrat, sans-serif;
font-weight: 600
}
.small-list .products.list .product-reviews-summary {
margin: 0
}
.small-list .products.list .product-items .price-box {
margin: 7px 0 0
}
.small-list .product-items .product-item:first-child {
padding-top: 0;
border-top: 0
}
.small-list .product-items .product-item {
margin: 0;
padding: 20px 0;
border-top: 1px solid #e5e5e5
}
.small-list .products.list .product.name a:hover {
color: #c99947
}
.boutique-progress.vc_progress_bar .progress-item {
font-size: 0;
line-height: 0;
margin-bottom: 40px
}
.boutique-progress.vc_progress_bar .progress-item>h4 {
display: inline-block;
vertical-align: middle;
width: 200px;
font-size: 12px;
line-height: 18px;
margin: 0;
padding-right: 30px
}
.boutique-progress.vc_progress_bar .vc_general {
display: inline-block;
vertical-align: middle;
width: calc(100% - 200px);
height: 36px;
background-color: #e5e5e5;
border-radius: 0;
box-shadow: none;
margin: 0
}
.boutique-progress.vc_progress_bar .vc_general .vc_bar {
border-radius: inherit;
margin: 0
}
.boutique-progress.vc_progress_bar .vc_general .vc_bar.animated {
display: none
}
.boutique-progress.vc_progress_bar .vc_general .vc_label_units {
position: absolute;
top: 0;
bottom: 0;
right: 30px;
font-size: 12px;
line-height: 18px;
height: 18px;
font-weight: 600;
margin: auto;
z-index: 1
}
@media(max-width: 767px) {
.boutique-progress.vc_progress_bar .progress-item>h4 {
display: block;
width: auto;
padding: 0 0 10px
}
.boutique-progress.vc_progress_bar .vc_general {
display: block;
width: auto
}
}
.vc_progress_bar .vc_single_bar {
background: #f7f7f7;
position: relative;
margin-bottom: 11.66666667px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px
}
.vc_progress_bar .vc_single_bar:last-child {
margin-bottom: 0
}
.vc_progress_bar .vc_single_bar .vc_label {
display: block;
padding: .5em 1em;
position: relative;
z-index: 1
}
.vc_progress_bar .vc_single_bar .vc_bar {
display: block;
position: absolute;
height: 100%;
background-color: #c99947;
width: 0;
top: 0;
left: 0;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
transition: width 1s linear;
-moz-transition: width 1s linear;
-webkit-transition: width 1s linear;
-o-transition: width 1s linear
}
.dot-circle .owl-dots {
text-align: center;
margin-top: 68px
}
.dot-circle .owl-dots .owl-dot {
width: 12px;
height: 12px;
background-color: rgba(0, 0, 0, .2);
display: inline-block;
border-radius: 10px;
margin: 0 5px
}
.dot-circle .owl-dots .owl-dot.active,
.dot-circle .owl-dots .owl-dot:hover {
background-color: #000
}
.page-layout-1column .columns {
display: block
}
.page-layout-1column .block.filter .filter-title {
display: none
}
.page-layout-1column .toolbar-products {
padding: 0
}
@media (min-width: 992px) {
.page-layout-1column .block.filter .filter-options-content {
position: absolute;
left: 15px;
z-index: 4;
background-color: #fff;
right: 15px;
padding: 10px;
box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.15)
}
.page-layout-1column .block.filter .filter-options .filter-options-item {
position: relative;
margin-bottom: 0
}
}
@media (min-width: 1200px) {
.col-xl-3-custom {
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%
}
}
.products.list.products-list .product-item {
margin-bottom: 30px
}
.products-list.products.list .product-item-info {
margin: 0
}
.products-list.products.list .product-item-info .product-item-details {
padding-left: 30px
}
.products-list.products.list .product-item-info .product-photo-container {
padding: 0
}
.skynetch-dailydeal {
text-align: left
}
.skynetch-dailydeal .number-wrapper {
text-align: center;
background-color: #e5e5e5;
padding: 10px;
color: #333;
font-family: Montserrat, sans-serif
}
.skynetch-dailydeal .countdowncontainer {
box-shadow: none;
padding: 0
}
.skynetch-dailydeal .number-wrapper>.number {
font-size: 18px;
font-weight: 400
}
.skynetch-dailydeal .caption {
color: #333;
font-size: 13px;
font-weight: 400;
margin-top: 2px
}
.products-grid .product-item-info.type10 .product-item-inner {
position: static
}
.catalog-product-view .skynetch-dailydeal .dailydeal-label {
display: none
}
.products-grid .product-item-info.type5 .product-item-inner .skynetch-dailydeal-wrapper {
margin: 0;
margin-top: 55px;
margin-bottom: -10px
}
.product-item-info.type8 {
padding: 10px 11px 5px;
background-color: #fff;
box-shadow: 0 0 0 1px #f3f3f3 inset
}
.switcher-language span.current-language {
color: #c99947
}
.switcher>.switcher-current {
display: none
}
.boutique-categories.style-01,
.boutique-categories.style-02 {
text-align: center
}
.boutique-categories.style-01 .category-inner,
.boutique-categories.style-02 .category-inner {
display: inline-block;
vertical-align: top;
max-width: 100%;
position: relative;
overflow: hidden
}
.boutique-categories.style-01 .category-inner>.thumb-link,
.boutique-categories.style-02 .category-inner>.thumb-link {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-transition: all .4s ease;
-moz-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease;
z-index: 3
}
.boutique-categories.style-01 .category-inner:hover>.thumb-link,
.boutique-categories.style-02 .category-inner:hover>.thumb-link {
background-color: rgba(0, 0, 0, .2)
}
.boutique-categories.style-01 .content>*,
.boutique-categories.style-02 .content>* {
position: relative;
z-index: 3;
-webkit-transition: all .4s ease;
-moz-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease
}
.boutique-categories.style-01 .content {
position: absolute;
left: 0;
right: 0;
bottom: 0
}
.boutique-categories.style-01 .category-inner:hover .content>* {
-webkit-transform: translateY(-20px);
-moz-transform: translateY(-20px);
-ms-transform: translateY(-20px);
-o-transform: translateY(-20px);
transform: translateY(-20px)
}
.boutique-categories.style-01 .content {
padding: 25px 30px 35px
}
.boutique-categories.style-01 .title {
font-size: 18px;
line-height: 24px;
margin-bottom: 1px
}
.boutique-categories.style-01 .count {
font-size: 13px;
line-height: 16px;
color: #666;
margin-bottom: 0
}
.boutique-categories.style-01 .count span {
display: inline-block;
vertical-align: top;
border-bottom: 2px solid #a8a8a8
}
.boutique-categories.style-02.title-top .category-inner:hover .content>* {
-webkit-transform: translate(20px, 20px);
-moz-transform: translate(20px, 20px);
-ms-transform: translate(20px, 20px);
-o-transform: translate(20px, 20px);
transform: translate(20px, 20px)
}
.boutique-categories.style-02.title-bottom .category-inner:hover .content>* {
-webkit-transform: translate(20px, -20px);
-moz-transform: translate(20px, -20px);
-ms-transform: translate(20px, -20px);
-o-transform: translate(20px, -20px);
transform: translate(20px, -20px)
}
.boutique-categories.style-02.title-top .content {
position: absolute;
left: 0;
right: 0;
top: 0
}
.boutique-categories.style-02.title-bottom .content {
position: absolute;
left: 0;
right: 0;
bottom: 0
}
.boutique-categories.style-02 .content {
text-align: left;
padding: 60px
}
.boutique-categories.style-02 .title {
font-size: 30px;
line-height: 36px;
margin-bottom: 6px
}
.boutique-categories.style-02 .count {
display: inline-block;
vertical-align: top;
font-size: 16px;
line-height: 22px;
border-bottom: 2px solid rgba(0, 0, 0, .8);
margin: 0
}
.boutique-categories.style-02 .count span {
font-weight: 600;
color: #222
}
.background-slide {
overflow: hidden
}
.background-slide figure.not-image,
.background-slide img,
.wpb_single_image .background-slide figure.not-image,
.wpb_single_image .background-slide img {
position: relative;
width: calc(100% + 60px);
max-width: calc(100% + 60px);
left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%);
-webkit-transition: all .4s ease;
-moz-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease
}
.background-slide:hover figure.not-image,
.background-slide:hover img,
.wpb_single_image .background-slide:hover figure.not-image,
.wpb_single_image .background-slide:hover img {
margin-left: 30px
}
.rotate-left,
.rotate-right {
overflow: hidden
}
.rotate-left figure.not-image,
.rotate-left img,
.rotate-right figure.not-image,
.rotate-right img {
-webkit-transition: all .7s ease;
-moz-transition: all .7s ease;
-o-transition: all .7s ease;
transition: all .7s ease
}
.rotate-left:hover figure.not-image,
.rotate-left:hover img {
-webkit-transform: scale(1.2) rotate(-5deg);
-moz-transform: scale(1.2) rotate(-5deg);
-ms-transform: scale(1.2) rotate(-5deg);
-o-transform: scale(1.2) rotate(-5deg);
transform: scale(1.2) rotate(-5deg)
}
.rotate-right:hover figure.not-image,
.rotate-right:hover img {
-webkit-transform: scale(1.2) rotate(5deg);
-moz-transform: scale(1.2) rotate(5deg);
-ms-transform: scale(1.2) rotate(5deg);
-o-transform: scale(1.2) rotate(5deg);
transform: scale(1.2) rotate(5deg)
}
.btn-dark {
background-color: #222;
padding-left: 30px;
padding-right: 30px
}
.btn-dark:hover {
background-color: #c99947;
border-color: #c99947
}
.newsletter-logo {
text-align: center;
margin: 20px 0
}
.subscribe-bottom {
margin-top: 20px
}
#newsletter_popup {
width: 425px;
height: 340px;
padding: 24px
}
#newsletter_popup button:hover {
background-color: transparent;
border: 0
}
.page-header {
border: 0;
margin: 0;
z-index: 5
}
.page-header .logo {
padding: 15px 50px;
float: none;
display: block;
border-right: 1px solid rgba(136, 136, 136, .3);
max-width: none;
width: max-content
}
.cms-noroute-index .header-main-wrapper {
box-shadow: 0 1px #e5e5e5
}
#search_mini_form {
float: none;
width: auto
}
.block-search .control {
padding: 0
}
.block-search .nested {
display: none
}
.top-right>* {
display: inline-block;
vertical-align: middle
}
.header-main-wrapper {
padding: 0;
display: flex;
align-items: center;
justify-content: space-between;
position: relative
}
.header-main {
background-color: #000;
transition: transform .3s ease;
border-bottom: 1px solid rgba(136, 136, 136, .3)
}
.skynetch-megamenu li.level0:hover>a {
background: transparent;
color: #c99947
}
.header-right {
display: flex;
align-items: center;
justify-content: flex-end;
padding: 0 15px;
max-width: 100%;
flex: 1
}
.box-search {
position: relative
}
.box-search>span.icon {
font-size: 24px;
color: #eee;
font-weight: 400;
line-height: 60px;
text-align: right;
cursor: pointer;
transition: all .3s ease;
padding: 0 45px;
border-right: 1px solid rgba(136, 136, 136, .3)
}
.box-search>span.icon:hover {
color: #c99947
}
.block-search {
float: none;
padding: 0;
box-shadow: 0 0 0 1px #e5e5e5 inset;
position: absolute;
right: 0;
top: 100%;
z-index: 999;
visibility: hidden;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease, visibility 0.4s linear 0s;
-moz-transition: opacity 0.4s ease, -moz-transform 0.4s ease, visibility 0.4s linear 0s;
-ms-transition: opacity 0.4s ease, -ms-transform 0.4s ease, visibility 0.4s linear 0s;
-o-transition: opacity 0.4s ease, -o-transform 0.4s ease, visibility 0.4s linear 0s;
transition: opacity .4s ease, transform .4s ease, visibility .4s linear 0s;
-webkit-transform: translateY(20px);
-moz-transform: translateY(20px);
-ms-transform: translateY(20px);
-o-transform: translateY(20px);
transform: translateY(20px)
}
.box-search:hover .block-search {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
opacity: 1;
filter: alpha(opacity=100);
visibility: inherit
}
.block-search input {
padding: 13px 50px 13px 20px;
background-color: #fff
}
.block-search .action.search {
right: 20px
}
.block-search .action.search:hover {
color: #c99947
}
.box-settings>span.icon {
color: #eee;
width: auto;
padding: 0 45px;
line-height: 60px
}
.minicart-wrapper .action.showcart:before,
.minicart-wrapper .action.showcart.active:before {
font-size: 24px;
line-height: 60px;
padding: 0 5px 0 0;
color: #eee
}
.minicart-wrapper .action.showcart:hover:before,
.minicart-wrapper .action.showcart.active:hover:before {
color: #c99947
}
.minicart-wrapper .action.showcart .counter.qty {
position: absolute;
left: calc(50% - 2px);
bottom: calc(50% - 2px);
min-width: 18px;
height: 18px;
color: #fff;
border-radius: 90px;
font-size: 12px;
line-height: 18px;
text-align: center;
padding: 0 3px;
background-color: #c99947;
margin: 0
}
.skynetch-megamenu.navigation>ul {
position: static;
padding: 0
}
.nav-toggle {
position: static;
color: #eee
}
.navigation .level0.active>.level-top,
.navigation .level0.has-active>.level-top {
border: 0;
color: #c99947
}
.top-right .minicart-wrapper .action.showcart {
width: auto;
height: auto;
border: 0;
padding: 0;
margin-left: 0
}
.top-right .minicart-wrapper .action.showcart>span.text {
display: none
}
.top-right .minicart-wrapper .action.showcart:before,
.top-right .minicart-wrapper .action.showcart.active:before {
font-size: 24px;
line-height: 50px
}
.top-right .minicart-wrapper .action.showcart .counter.qty {
top: 8px;
left: 11px
}
.page-header.boutique-header_sticky .header-main {
position: fixed;
width: 100%;
left: 0;
top: 0;
box-shadow: 0 0 15px rgba(0, 0, 0, .2);
z-index: 4;
opacity: 1
}
.page-header.boutique-header_sticky.boutique-header_sticky-hide .header-main {
transform: translateY(-100%);
opacity: 0
}
.page-header.boutique-header_sticky .header-main-wrapper {
padding: 0
}
.page-header.boutique-header_sticky .logo img {
max-height: 100%
}
.menu-wrapper {
flex: 1
}
.minicart-wrapper {
padding: 0 45px;
border-right: 1px solid rgba(136, 136, 136, .3);
margin: 0
}
@media (min-width: 1200px) {
.skynetch-megamenu.navigation>ul {
margin: 0 -22px
}
.skynetch-megamenu.navigation li.level0 {
margin: 0 22px
}
}
@media (min-width: 1500px) {
.page-header .logo-wrapper {
width: 345px
}
.menu-wrapper {
position: relative
}
}
@media (max-width: 1499px) {
.box-search>span.icon,
.minicart-wrapper,
.box-settings>span.icon {
padding: 0 15px
}
}
@media (max-width: 991px) {
.menu-wrapper {
flex: unset
}
.nav-sections-item-title:not([aria-controls="store.menu"]) {
display: none
}
.nav-sections-item-title[aria-controls="store.menu"] {
width: 100%;
border: 0;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
font-family: Montserrat;
padding: 10px 0;
height: 50px;
line-height: 30px;
border-bottom: 1px solid #eee;
color: #222
}
.skynetch-megamenu.navigation>ul {
padding: 0 30px
}
.navigation .level0 {
font-size: 12px;
border-top: 1px dotted #ddd
}
.navigation .level0:first-child {
border-top: 0
}
.navigation .level0>.level-top {
font-weight: 600;
font-family: Montserrat;
color: #222;
line-height: 2;
padding: 8px 0
}
.navigation li.level0:last-child {
border-bottom: 0
}
.nav-sections-item-content {
margin-top: 45px
}
.navigation .parent .level-top:after {
right: 0;
top: 0;
font-size: 30px;
line-height: 40px
}
.navigation .submenu .container {
max-width: 100%;
padding: 0
}
.navigation .submenu.opened {
padding: 15px 0
}
.box-search>span.icon,
.minicart-wrapper,
.box-settings>span.icon {
padding: 0;
border: 0;
margin-left: 15px
}
.skynetch-megamenu.navigation>ul {
padding: 0 30px
}
}
@media (max-width: 767px) {
.logo-wrapper {
max-width: 140px
}
.page-header .logo {
padding: 15px;
max-width: 100%;
border: 0
}
}
.page-main {
padding-bottom: 70px
}
.boutique-notice-block {
line-height: 50px
}
.boutique-notice-block a {
font-size: 13px;
font-family: Montserrat, sans-serif;
display: inline-block
}
.boutique-notice-block .header-social-icons a {
font-size: 14px
}
.footer-middle,
.footer-bottom {
background-color: #f0f0f0
}
.footer-bottom-divider {
border-color: #e5e5e5
}
.footer-links {
color: #555;
font-size: 13px;
line-height: 20px
}
.footer-social-icons {
margin: 0 -3px
}
.footer-social-icons>a {
width: 36px;
height: 36px;
line-height: 36px;
margin: 0 3px 10px;
border-radius: 0
}
.footer-social-icons>a:not(:hover) {
box-shadow: 0 0 0 1px #ddd inset;
background-color: transparent;
color: #666
}
.footer-middle {
text-align: left;
font-family: Montserrat, sans-serif;
font-size: 13px;
line-height: 24px
}
.footer-links a:before {
content: '';
display: inline-block;
vertical-align: middle;
width: 4px;
height: 4px;
border: 2px solid;
border-radius: 50%;
margin: 0 12px 2px 0
} | 0.524395 | 0.099952 |
body {
margin: 0px;
padding: 0px;
background: #f5f5f5;
font-weight: 500;
}
ul.resp-tabs-list,
p {
margin: 0px;
padding: 0px;
}
.resp-tabs-list li {
font-weight: 500;
text-transform: capitalize;
text-align: center;
font-size: 18px;
display: inline-block;
padding: 1em 2em;
list-style: none;
cursor: pointer;
box-sizing: border-box;
width: 25%;
float: left;
color: #fff;
background: #0c0d0d;
letter-spacing: 1px;
transition: .5s ease-in;
-webkit-transition: .5s ease-in;
-moz-transition: .5s ease-in;
-o-transition: .5s ease-in;
-ms-transition: .5s ease-in;
}
ul.resp-tabs-list.inner-second li:nth-child(3){
margin-right: 12px!important;
}
ul.resp-tabs-list.inner-second li:nth-child(4){
margin-right:0;
}
.resp-tabs-container {
padding: 0px;
background-color: #fff;
clear: left;
}
h2.resp-accordion {
cursor: pointer;
padding: 5px;
display: none;
}
.resp-tab-content {
display: none;
}
.resp-tab-active {
border-bottom: none;
}
.resp-tab-active, .resp-tabs-list li:hover, li.resp-tab-item.resp-tab-active {
background: #ea4c89;
color: #fff;
}
.resp-content-active,
.resp-accordion-active { display: block; }
.resp-tab-content {
border: none;
border-top: transparent;
}
h2.resp-accordion {
font-size: 14px;
border: 1px solid #c1c1c1;
border-top: 0px solid #c1c1c1;
margin: 0px;
padding: 10px 15px;
color: #fff;
text-transform: capitalize;
letter-spacing: 1px;
background: #00b6e3;
text-align: center;
}
h2.resp-tab-active {
border-bottom: 0px solid #fff !important;
margin-bottom: 0px !important;
padding: 10px 15px !important;
}
h2.resp-tab-title:last-child {
border-bottom: 12px solid #c1c1c1 !important;
background: blue;
}
/*-----------Vertical tabs-----------*/
.resp-vtabs ul.resp-tabs-list {
float: left;
}
ul.resp-tabs-list.inner-second {
margin: 0 auto;
width: 30%;
}
.resp-vtabs .resp-tabs-list li {
display: block;
padding: 15px 15px !important;
margin: 0;
cursor: pointer;
float: none;
}
.resp-vtabs .resp-tabs-container {
padding: 0px;
background-color: #fff;
border: 1px solid #c1c1c1;
float: left;
width: 68%;
min-height: 250px;
border-radius: 4px;
clear: none;
}
.resp-vtabs .resp-tab-content { border: none; }
.resp-vtabs li.resp-tab-active {
border: 1px solid #c1c1c1;
border-right: none;
background-color: #fff;
position: relative;
z-index: 1;
margin-right: -1px !important;
padding: 14px 15px 15px 14px !important;
}
.resp-arrow {
width: 0;
height: 0;
float: right;
margin-top: 1px;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 12px solid #ffffff;
}
h2.resp-tab-active span.resp-arrow {
border: none;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 12px solid #fff;
}
/*-----------Accordion styles-----------*/
h2.resp-tab-active { background: #ffffff !important; }
.resp-easy-accordion h2.resp-accordion { display: block; }
.resp-easy-accordion .resp-tab-content { border: 1px solid #c1c1c1; }
.resp-easy-accordion .resp-tab-content:last-child { border-bottom: 1px solid #c1c1c1 !important; }
.resp-jfit {
width: 100%;
margin: 0px;
}
.resp-tab-content-active { display: block; }
h2.resp-accordion:first-child { border-top: 1px solid #c1c1c1 !important; }
h2.resp-tab-active {
background: #ea4c89!important;
color: #fff;
text-transform: capitalize;
letter-spacing: 1px;
text-align: center;
}
/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 768px) {
ul.resp-tabs-list { display: none; }
h2.resp-accordion { display: block; }
.resp-vtabs .resp-tab-content { border: 1px solid #C1C1C1; }
.resp-vtabs .resp-tabs-container {
border: none;
float: none;
width: 100%;
min-height: initial;
clear: none;
}
.resp-accordion-closed { display: none !important; }
.resp-vtabs .resp-tab-content:last-child { border-bottom: 1px solid #c1c1c1 !important; }
}
/*-- /responsive --*/
@media only screen and (max-width: 384px) {
h2.resp-tab-active span.resp-arrow {
margin-top: 0;
}
}
/*-- //responsive --*/ | css/easy-responsive-tabs.css | body {
margin: 0px;
padding: 0px;
background: #f5f5f5;
font-weight: 500;
}
ul.resp-tabs-list,
p {
margin: 0px;
padding: 0px;
}
.resp-tabs-list li {
font-weight: 500;
text-transform: capitalize;
text-align: center;
font-size: 18px;
display: inline-block;
padding: 1em 2em;
list-style: none;
cursor: pointer;
box-sizing: border-box;
width: 25%;
float: left;
color: #fff;
background: #0c0d0d;
letter-spacing: 1px;
transition: .5s ease-in;
-webkit-transition: .5s ease-in;
-moz-transition: .5s ease-in;
-o-transition: .5s ease-in;
-ms-transition: .5s ease-in;
}
ul.resp-tabs-list.inner-second li:nth-child(3){
margin-right: 12px!important;
}
ul.resp-tabs-list.inner-second li:nth-child(4){
margin-right:0;
}
.resp-tabs-container {
padding: 0px;
background-color: #fff;
clear: left;
}
h2.resp-accordion {
cursor: pointer;
padding: 5px;
display: none;
}
.resp-tab-content {
display: none;
}
.resp-tab-active {
border-bottom: none;
}
.resp-tab-active, .resp-tabs-list li:hover, li.resp-tab-item.resp-tab-active {
background: #ea4c89;
color: #fff;
}
.resp-content-active,
.resp-accordion-active { display: block; }
.resp-tab-content {
border: none;
border-top: transparent;
}
h2.resp-accordion {
font-size: 14px;
border: 1px solid #c1c1c1;
border-top: 0px solid #c1c1c1;
margin: 0px;
padding: 10px 15px;
color: #fff;
text-transform: capitalize;
letter-spacing: 1px;
background: #00b6e3;
text-align: center;
}
h2.resp-tab-active {
border-bottom: 0px solid #fff !important;
margin-bottom: 0px !important;
padding: 10px 15px !important;
}
h2.resp-tab-title:last-child {
border-bottom: 12px solid #c1c1c1 !important;
background: blue;
}
/*-----------Vertical tabs-----------*/
.resp-vtabs ul.resp-tabs-list {
float: left;
}
ul.resp-tabs-list.inner-second {
margin: 0 auto;
width: 30%;
}
.resp-vtabs .resp-tabs-list li {
display: block;
padding: 15px 15px !important;
margin: 0;
cursor: pointer;
float: none;
}
.resp-vtabs .resp-tabs-container {
padding: 0px;
background-color: #fff;
border: 1px solid #c1c1c1;
float: left;
width: 68%;
min-height: 250px;
border-radius: 4px;
clear: none;
}
.resp-vtabs .resp-tab-content { border: none; }
.resp-vtabs li.resp-tab-active {
border: 1px solid #c1c1c1;
border-right: none;
background-color: #fff;
position: relative;
z-index: 1;
margin-right: -1px !important;
padding: 14px 15px 15px 14px !important;
}
.resp-arrow {
width: 0;
height: 0;
float: right;
margin-top: 1px;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 12px solid #ffffff;
}
h2.resp-tab-active span.resp-arrow {
border: none;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 12px solid #fff;
}
/*-----------Accordion styles-----------*/
h2.resp-tab-active { background: #ffffff !important; }
.resp-easy-accordion h2.resp-accordion { display: block; }
.resp-easy-accordion .resp-tab-content { border: 1px solid #c1c1c1; }
.resp-easy-accordion .resp-tab-content:last-child { border-bottom: 1px solid #c1c1c1 !important; }
.resp-jfit {
width: 100%;
margin: 0px;
}
.resp-tab-content-active { display: block; }
h2.resp-accordion:first-child { border-top: 1px solid #c1c1c1 !important; }
h2.resp-tab-active {
background: #ea4c89!important;
color: #fff;
text-transform: capitalize;
letter-spacing: 1px;
text-align: center;
}
/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 768px) {
ul.resp-tabs-list { display: none; }
h2.resp-accordion { display: block; }
.resp-vtabs .resp-tab-content { border: 1px solid #C1C1C1; }
.resp-vtabs .resp-tabs-container {
border: none;
float: none;
width: 100%;
min-height: initial;
clear: none;
}
.resp-accordion-closed { display: none !important; }
.resp-vtabs .resp-tab-content:last-child { border-bottom: 1px solid #c1c1c1 !important; }
}
/*-- /responsive --*/
@media only screen and (max-width: 384px) {
h2.resp-tab-active span.resp-arrow {
margin-top: 0;
}
}
/*-- //responsive --*/ | 0.259638 | 0.050261 |
@import url('https://fonts.googleapis.com/css2?family=Secular+One&display=swap');
* {
font-family: 'Secular One', sans-serif;
margin: 5px;
}
a {
text-decoration: none;
color: coral;
}
/* using a text-shadow styling throughout the page including a hover for aesthetic purposes */
a:hover {
text-shadow: -5px -5px black,
-5px -5px black;
}
.nav-top {
text-align: center;
padding-top: 10px;
border-bottom: solid;
border-color: black;
padding-bottom: 15px;
}
/* header container set to flex for it's contents within */
header {
display: flex;
margin-top: 50px;
}
h1 {
font-size: 100px;
margin-left: 100px;
margin-top: 75px;
flex-wrap: wrap;
text-shadow: -5px -5px coral,
-5px -5px coral;
}
h1:hover {
text-shadow: 5px 5px coral,
5px 5px coral;
}
.hero {
max-width: 300px;
max-height: 300px;
float: right;
}
#main-title-link {
color: black;
}
#main-title-link:hover {
text-shadow: 5px 5px plum,
5px 5px plum;
}
#project-two {
color: black;
}
#project-two:hover {
text-shadow: 5px 5px plum,
5px 5px plum;
}
#project-three {
color: black;
}
#project-three:hover {
text-shadow: 5px 5px plum,
5px 5px plum;
}
#project-four {
color: black;
}
#project-four:hover {
text-shadow: 5px 5px plum,
5px 5px plum;
}
#project-five {
color: black;
}
#project-five:hover {
text-shadow: 5px 5px plum,
5px 5px plum;
}
/* consistent styling to all h2 elements */
h2 {
margin-left: 150px;
padding: 20px;
text-shadow: -5px -5px plum,
-5px -5px plum;
padding-top: 50px;
}
h2:hover {
text-shadow: 5px 5px plum,
5px 5px plum;
}
/* using border styles to make a shadow */
.about {
display: flex;
flex-wrap: wrap;
max-width: 800px;
margin: auto;
border-bottom: 5px solid;
border-left: 5px solid;
border-style: solid;
border-color: black;
padding: 20px;
}
/* flex settings for the container where the project box sections are children */
.projects {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
/* id used to make the first project box larger than the others */
#project-box-1 {
flex: 4 0 80%;
}
/* id used again to make this box have the correctly placed subheading element */
#project-box-1 .subheadings {
right: 850px;
}
/* project box styling to make each of the sections consistent */
/* a background image was originally used to fill the space and it may be something I use in the future so it is left in the code but commented out */
.project-box {
display: flex;
border-style: solid;
border-width: 5px;
justify-content: center;
flex: 1 0 20%;
padding: 5px;
z-index: 0;
position: relative;
}
.project-box:hover {
border-color: plum;
}
/* due to image size differences I created id's for each project image to keep them controlled and prevent the styling being inconsistent */
.portfolio-img {
width: 95%;
}
.portfolio-img-mcu {
margin-top: 100px;
width: 250px
}
.portfolio-img-minor {
width: 150px;
height: 300px;
margin-top: 75px;
}
.portfolio-img-pass {
width: 200px;
height: auto;
margin-top: 100px;
}
.portfolio-img-plan {
width: 200px;
height: auto;
margin-top: 100px;
}
/* styling for each subheading placed over the image in the project boxes using absolute positioning to make it appear over the images */
.subheadings {
background-color: coral;
height: 90px;
width: 270px;
z-index: 1;
position: absolute;
right: 0px;
display: flex;
flex-direction: column;
justify-content: left;
opacity: 90%;
}
#main-sub {
height: 90px;
}
/* footer flex settings */
footer {
display: flex;
justify-content: center;
margin-right: 50px;
padding-bottom: 15px;
}
/* id for the contact h2 element which needed to be alligned differently to the other h2 tags */
#contact-title {
text-align: center;
margin-right: 160px;
margin-bottom: -10px;
}
/* the larger screens to make the h1 and hero more central */
@media screen and (min-width: 1400px) {
h1 {
padding-left: 150px;
}
.hero {
margin-left: 300px;
}
}
/* settings and styles for smaller viewports */
@media screen and (max-width: 700px) {
body {
display: flex;
flex-direction: column;
align-items: center;
margin-left: 25px;
max-width: 100%;
overflow-x: hidden;
}
.nav-top {
align-self: center;
margin-left: -25px;
margin-bottom: 0px;
border-style: none;
}
header {
display: flex;
flex-direction: column;
align-items: center;
height: 20%;
margin-top: -20px;
}
h1 {
font-size: 40px;
margin-left: auto;
}
.about {
width: 250px;
align-self: center;
font-size: 20px;
}
.hero {
max-width: 200px;
}
h2 {
margin-left: 175px;
}
#project-title {
margin-left: 165px;
}
.projects {
width: 300px;
margin-left: 75px;
}
#project-box-1 img {
width: 100%;
height: auto;
}
#project-box-1 .subheadings {
right: 0px;
top: 105px;
}
.projects .project-box {
flex-direction: column;
align-items: center;
text-align: center;
width: 100%;
height: auto;
}
.project-box:hover {
border-color: plum;
}
.subheadings {
top: 160px;
width: 50%;
font-size: 8px;
}
#contact-title {
margin-left: 160px;
}
} | css/styles.css | @import url('https://fonts.googleapis.com/css2?family=Secular+One&display=swap');
* {
font-family: 'Secular One', sans-serif;
margin: 5px;
}
a {
text-decoration: none;
color: coral;
}
/* using a text-shadow styling throughout the page including a hover for aesthetic purposes */
a:hover {
text-shadow: -5px -5px black,
-5px -5px black;
}
.nav-top {
text-align: center;
padding-top: 10px;
border-bottom: solid;
border-color: black;
padding-bottom: 15px;
}
/* header container set to flex for it's contents within */
header {
display: flex;
margin-top: 50px;
}
h1 {
font-size: 100px;
margin-left: 100px;
margin-top: 75px;
flex-wrap: wrap;
text-shadow: -5px -5px coral,
-5px -5px coral;
}
h1:hover {
text-shadow: 5px 5px coral,
5px 5px coral;
}
.hero {
max-width: 300px;
max-height: 300px;
float: right;
}
#main-title-link {
color: black;
}
#main-title-link:hover {
text-shadow: 5px 5px plum,
5px 5px plum;
}
#project-two {
color: black;
}
#project-two:hover {
text-shadow: 5px 5px plum,
5px 5px plum;
}
#project-three {
color: black;
}
#project-three:hover {
text-shadow: 5px 5px plum,
5px 5px plum;
}
#project-four {
color: black;
}
#project-four:hover {
text-shadow: 5px 5px plum,
5px 5px plum;
}
#project-five {
color: black;
}
#project-five:hover {
text-shadow: 5px 5px plum,
5px 5px plum;
}
/* consistent styling to all h2 elements */
h2 {
margin-left: 150px;
padding: 20px;
text-shadow: -5px -5px plum,
-5px -5px plum;
padding-top: 50px;
}
h2:hover {
text-shadow: 5px 5px plum,
5px 5px plum;
}
/* using border styles to make a shadow */
.about {
display: flex;
flex-wrap: wrap;
max-width: 800px;
margin: auto;
border-bottom: 5px solid;
border-left: 5px solid;
border-style: solid;
border-color: black;
padding: 20px;
}
/* flex settings for the container where the project box sections are children */
.projects {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
/* id used to make the first project box larger than the others */
#project-box-1 {
flex: 4 0 80%;
}
/* id used again to make this box have the correctly placed subheading element */
#project-box-1 .subheadings {
right: 850px;
}
/* project box styling to make each of the sections consistent */
/* a background image was originally used to fill the space and it may be something I use in the future so it is left in the code but commented out */
.project-box {
display: flex;
border-style: solid;
border-width: 5px;
justify-content: center;
flex: 1 0 20%;
padding: 5px;
z-index: 0;
position: relative;
}
.project-box:hover {
border-color: plum;
}
/* due to image size differences I created id's for each project image to keep them controlled and prevent the styling being inconsistent */
.portfolio-img {
width: 95%;
}
.portfolio-img-mcu {
margin-top: 100px;
width: 250px
}
.portfolio-img-minor {
width: 150px;
height: 300px;
margin-top: 75px;
}
.portfolio-img-pass {
width: 200px;
height: auto;
margin-top: 100px;
}
.portfolio-img-plan {
width: 200px;
height: auto;
margin-top: 100px;
}
/* styling for each subheading placed over the image in the project boxes using absolute positioning to make it appear over the images */
.subheadings {
background-color: coral;
height: 90px;
width: 270px;
z-index: 1;
position: absolute;
right: 0px;
display: flex;
flex-direction: column;
justify-content: left;
opacity: 90%;
}
#main-sub {
height: 90px;
}
/* footer flex settings */
footer {
display: flex;
justify-content: center;
margin-right: 50px;
padding-bottom: 15px;
}
/* id for the contact h2 element which needed to be alligned differently to the other h2 tags */
#contact-title {
text-align: center;
margin-right: 160px;
margin-bottom: -10px;
}
/* the larger screens to make the h1 and hero more central */
@media screen and (min-width: 1400px) {
h1 {
padding-left: 150px;
}
.hero {
margin-left: 300px;
}
}
/* settings and styles for smaller viewports */
@media screen and (max-width: 700px) {
body {
display: flex;
flex-direction: column;
align-items: center;
margin-left: 25px;
max-width: 100%;
overflow-x: hidden;
}
.nav-top {
align-self: center;
margin-left: -25px;
margin-bottom: 0px;
border-style: none;
}
header {
display: flex;
flex-direction: column;
align-items: center;
height: 20%;
margin-top: -20px;
}
h1 {
font-size: 40px;
margin-left: auto;
}
.about {
width: 250px;
align-self: center;
font-size: 20px;
}
.hero {
max-width: 200px;
}
h2 {
margin-left: 175px;
}
#project-title {
margin-left: 165px;
}
.projects {
width: 300px;
margin-left: 75px;
}
#project-box-1 img {
width: 100%;
height: auto;
}
#project-box-1 .subheadings {
right: 0px;
top: 105px;
}
.projects .project-box {
flex-direction: column;
align-items: center;
text-align: center;
width: 100%;
height: auto;
}
.project-box:hover {
border-color: plum;
}
.subheadings {
top: 160px;
width: 50%;
font-size: 8px;
}
#contact-title {
margin-left: 160px;
}
} | 0.41052 | 0.116261 |
{
border-spacing: 10px;
display: table;
}
#botRow .col1
{
border: thin solid #666;
border-radius: 20px;
display: table-cell;
vertical-align: top;
width: 33%;
}
#botRow .col2
{
border: thin solid #666;
border-radius: 20px;
display: table-cell;
float: right;
margin-bottom: -20px;
vertical-align: top;
width: 100%;
}
#botRow .col2 .options
{
margin: 0px;
padding: 0px;
vertical-align: top;
}
#botRow .header
{
font-size: 1.3em;
font-weight: bold;
}
#botRow .instructions
{
background: #EEE;
border-bottom-color: #666;
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
border-bottom-style: solid;
border-bottom-width: thin;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
height: auto;
}
#botRow .instructions, #botRow .options
{
padding: 10px;
vertical-align: top;
}
#botSubmit
{
display: none;
}
#calDisplay
{
display: table;
margin: 0px;
padding: 0px;
width: 100%;
}
#calDisplay .calContent
{
background-color: #EEE;
border: thin solid #666;
margin-bottom: 2px;
margin-right: 2px;
height: 30px;
padding: 4px;
}
#calDisplay .calContent a, #calDisplay .calToday a
{
left: 0;
padding-top: 4px;
position: absolute;
top: 0;
width: 100%;
white-space: nowrap;
}
#calDisplay .calContent, #calDisplay .calToday
{
position: relative;
text-decoration: none;
height: 30px;
}
#calDisplay .calNoDay
{
background-color: #FFF;
border: thin solid #EEE;
margin-bottom: 2px;
margin-right: 2px;
padding: 4px;
}
#calDisplay .calSelectedDay
{
background-color: #4F4;
border: thin solid #000;
font-weight: bold;
height: 30px;
margin-bottom: 2px;
margin-right: 2px;
padding: 4px;
}
#calDisplay .calToday
{
background-color: #FFC;
border: thin solid #000;
margin-bottom: 2px;
margin-right: 2px;
padding: 4px;
}
#calDisplay .calWeek
{
position: relative;
float: left;
width: 100%;
}
#calDisplay .calWeek .calCell
{
cursor: pointer;
display: table-cell;
float: left;
text-align: center;
width: 14.2%;
height: 30px;
white-space: nowrap;
margin-top: 2px;
}
#calDisplay .dayHeader
{
background-color: #666;
border: thin solid #333;
color: #FFF;
font-weight: bold;
margin-bottom: 2px;
margin-right: 2px;
padding: 4px;
white-space: nowrap;
}
#calForm
{
margin-bottom: 10px;
position: relative;
}
#calForm #calYear, #calForm #calMonth
{
background: #EEE;
color: #000;
display: block;
font-size: .9em;
height: 28px;
margin: 2px;
padding: 2px;
}
#calForm #submitCal
{
background: #EEE;
color: #000;
display: block;
font-size: 1em;
height: 28px;
margin: 4px;
padding: 4px;
}
#calForm .calContain
{
clear: right;
float: left;
border: thin solin #0F0;
}
.calContainAdmin {
clear: none;
float: left;
border: thin solin #0F0;
}
#calFormCont
{
display: inline-block;
}
#formRow
{
border-collapse: separate;
border-spacing: 2px;
display: table;
width: 100%;
}
#formRow .formAmenities
{
float: left;
padding-right: 5px;
width: 50%;
}
#formRow .formDiv
{
border-radius: 7px;
box-shadow: 3px 3px 5px #888888;
display: inline-block;
margin: 0px;
padding: 0px;
}
#formRow .formInput
{
border: thin solid #666;
border-radius: 5px;
display: table-cell;
padding: 10px;
width: 70%;
}
#formRow .instructions
{
background: #EEE;
border-bottom-color: #999;
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
border-bottom-style: solid;
border-bottom-width: thin;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
height: auto;
}
#formRow .question
{
border: thin solid #666;
border-radius: 5px;
display: table-cell;
font-size: 1.1em;
font-weight: bold;
min-width: 100px;
padding: 10px;
vertical-align: top;
width: 30%;
}
#formRow .question label
{
font-weight: bold;
}
#formRow .wideCol
{
border: thin solid #666;
border-radius: 20px;
display: table-row;
width: 100%;
}
#formRow .wideCol .error
{
background-color: #F99;
color: #000;
}
#formRow .wideCol:nth-of-type(even)
{
background: #FFF;
}
#formRow .wideCol:nth-of-type(odd)
{
background: #EEE;
}
#formRow input, #formRow textarea, #formRow select
{
background-color: #FFF;
border: thin solid #666;
border-radius: 5px;
color: #000;
margin: 0px;
}
#formRow input[type="radio"], #formRow input[type="checkbox"]
{
box-shadow: none !important;
}
#hoursForm #resetHours, #hoursForm #submitHours
{
background-color: #EEE;
border: thin solid #666;
border-radius: 5px;
color: #000;
box-shadow: 3px 3px 5px #888888;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 25px;
margin-left: 0px;
}
#hoursTable
{
width: 100%;
}
#hoursTable .calHours .calCheckBox
{
padding-left: 10px;
}
#hoursTable.hoursTableClean {
border-radius: 0px;
}
#hoursTable .calTime
{
white-space: nowrap;
}
#hoursTable label
{
display: block;
}
#hoursTable tr td
{
border-bottom-color: #666;
border-bottom-style: solid;
border-bottom-width: thin;
border-left-style: none;
border-right-style: none;
border-top-style: none;
padding: 2px;
text-align: center;
}
#hoursTable tr:nth-child(1) .calCheckBox
{
border-radius: 20px 0 0 0;
}
#hoursTable.hoursTableClean tr:nth-child(1) .calCheckBox
{
border-radius: 0 0 0 0;
}
#hoursTable tr:nth-child(1) .calStatus
{
border-radius: 0 20px 0 0;
}
#hoursTable.hoursTableClean tr:nth-child(1) .calStatus
{
border-radius: 0 0 0 0;
}
#hoursTable tr:nth-child(1) td
{
background: #666;
color: #EEE;
font-weight: bold;
}
#hoursTable tr:nth-child(even)
{
background: #FFF;
}
#hoursTable tr:nth-child(odd)
{
background: #EEE;
}
#hoursTable tr:nth-last-child(1) .calCheckBox
{
border-radius: 0 0 0 20px;
}
#hoursTable tr:nth-last-child(1) .calStatus
{
border-radius: 0 0 20px 0;
}
#hoursTable tr:nth-last-child(1) td
{
border: none;
}
#topRow
{
border-spacing: 10px;
display: table;
min-width: 320px;
}
#topRow #errorArea
{
background-color: #FFF;
border: thin solid #666;
border-radius: 7px;
box-shadow: 3px 3px 5px #888888;
color: #C00;
margin: 10px;
padding: 4px;
width: auto;
}
#topRow #errorArea em
{
color: #000;
font-style: italic;
font-weight: bold;
}
#topRow #errorArea p
{
font-size: 1.1em;
font-weight: bold;
}
#topRow .col
{
border: thin solid #666;
border-radius: 20px;
display: table-cell;
width: 33%;
}
#topRow .header
{
font-size: 1.3em;
font-weight: bold;
}
#topRow .instructions
{
background: #EEE;
border-bottom-color: #999;
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
border-bottom-style: solid;
border-bottom-width: thin;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
height: 180px;
}
#topRow .instructions, #topRow .options
{
padding: 10px;
}
#topRow .instructionsSmooth
{
background: #EEE;
border-bottom-color: #999;
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
border-bottom-style: solid;
border-bottom-width: thin;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
height: auto;
padding: 10px;
}
#topRow .itemDesc
{
font-size: .9em;
padding-left: 30px;
}
#topRow .normalItem
{
padding-left: 20px;
}
#topRow .normalItem a:hover
{
text-decoration: underline;
}
#topRow .selectedItem
{
font-size: 1.1em;
font-weight: bold;
padding-left: 10px;
}
#topSubmit
{
display: block;
}
.calNav
{
position: relative;
text-align: center;
width: 100%;
}
.calNav .curMonth
{
float: left;
font-size: 1.1em;
font-weight: bold;
text-align: center;
width: 50%;
}
.calNav .nextMonth
{
float: left;
text-align: right;
width: 25%;
}
.calNav .prevMonth
{
clear: left;
float: left;
width: 25%;
}
.changeRes_table {
display: table;
width: 800px;
border-spacing: 4px;
margin-left: -4px;
}
.changeRes_row {
display: table-row;
}
.changeRes_cell, .changeRes_cellHeader {
display: table-cell;
width: 50%;
padding: 4px;
border: thin solid #333;
}
.changeRes_cellHeader, .changeRes_cellCalHeader, .changeRes_cellHoursHeader {
background: #333;
font-weight: bold;
color: #FFF;
font-size: 1.2em;
}
.changeRes_cellCal, .changeRes_cellHours, .changeRes_cellCalHeader, .changeRes_cellHoursHeader {
display: table-cell;
padding: 4px;
border: thin solid #333;
}
.changeRes_cellCal, .changeRes_cellCalHeader {
width: 30%;
vertical-align: top;
}
.changeRes_cellHours, .changeRes_cellHoursHeader {
width: 70%;
vertical-align: top;
}
#calWeekCont {
float: left;
clear: both;
width: 100%;
display: table;
}
.calWeek {
float: left;
clear: none;
display: table-row;
}
.calDay {
display: table-cell;
}
.errorMSG
{
color: #F00;
font-weight: bold;
}
@media screen and (max-width: 960px)
{
#botRow
{
display: block;
float: left;
position: relative;
width: 100%;
}
#botRow .col1
{
border: thin solid #666;
border-radius: 20px;
display: block;
float: left;
margin-bottom: 10px;
width: 100%;
}
#botRow .col2
{
display: block;
float: left;
margin-bottom: 10px;
width: 100%;
}
#botSubmit
{
display: inline;
}
#formRow .formAmenities
{
clear: both;
float: left;
padding-right: 5px;
white-space: nowrap;
}
#formRow input, #formRow textarea
{
box-shadow: 3px 3px 5px #888888;
}
#topRow
{
display: block;
float: left;
position: relative;
width: 100%;
}
#topRow .col
{
border: thin solid #666;
border-radius: 20px;
display: block;
float: left;
margin-bottom: 10px;
width: 100%;
}
#topRow .instructions
{
height: auto;
}
#topSubmit
{
display: none;
}
}
/* popup */
.popup {
width:100%;
height:100%;
display:none;
position:fixed;
top:0px;
left:0px;
background:rgba(0,0,0,0.75);
}
/* Inner */
.popup-inner {
overflow-y: auto;
overflow-x: hidden;
max-height: 80%;
max-width:700px;
width:90%;
padding:40px;
position:absolute;
top:50%;
left:50%;
-webkit-transform:translate(-50%, -50%);
transform:translate(-50%, -50%);
box-shadow:0px 2px 6px rgba(0,0,0,1);
border-radius:3px;
background:#fff;
z-index: 1;
}
/* Close Button */
.popup-close {
width:30px;
height:30px;
display:inline-block;
position:absolute;
top:20px;
right:20px;
transition:ease 0.25s all;
-webkit-transform:translate(50%, -50%);
transform:translate(50%, -50%);
border-radius:1000px;
background:rgba(0,0,0,0.8);
font-family:Arial, Sans-Serif;
font-size:20px;
text-align:center;
line-height:100%;
color:#fff;
z-index: 50;
}
.popup-close:hover {
-webkit-transform:translate(50%, -50%) rotate(180deg);
transform:translate(50%, -50%) rotate(180deg);
background:rgba(0,0,0,1);
text-decoration:none;
} | wordpress/wp-content/plugins/book-a-room/css/bookaroom_day.css | {
border-spacing: 10px;
display: table;
}
#botRow .col1
{
border: thin solid #666;
border-radius: 20px;
display: table-cell;
vertical-align: top;
width: 33%;
}
#botRow .col2
{
border: thin solid #666;
border-radius: 20px;
display: table-cell;
float: right;
margin-bottom: -20px;
vertical-align: top;
width: 100%;
}
#botRow .col2 .options
{
margin: 0px;
padding: 0px;
vertical-align: top;
}
#botRow .header
{
font-size: 1.3em;
font-weight: bold;
}
#botRow .instructions
{
background: #EEE;
border-bottom-color: #666;
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
border-bottom-style: solid;
border-bottom-width: thin;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
height: auto;
}
#botRow .instructions, #botRow .options
{
padding: 10px;
vertical-align: top;
}
#botSubmit
{
display: none;
}
#calDisplay
{
display: table;
margin: 0px;
padding: 0px;
width: 100%;
}
#calDisplay .calContent
{
background-color: #EEE;
border: thin solid #666;
margin-bottom: 2px;
margin-right: 2px;
height: 30px;
padding: 4px;
}
#calDisplay .calContent a, #calDisplay .calToday a
{
left: 0;
padding-top: 4px;
position: absolute;
top: 0;
width: 100%;
white-space: nowrap;
}
#calDisplay .calContent, #calDisplay .calToday
{
position: relative;
text-decoration: none;
height: 30px;
}
#calDisplay .calNoDay
{
background-color: #FFF;
border: thin solid #EEE;
margin-bottom: 2px;
margin-right: 2px;
padding: 4px;
}
#calDisplay .calSelectedDay
{
background-color: #4F4;
border: thin solid #000;
font-weight: bold;
height: 30px;
margin-bottom: 2px;
margin-right: 2px;
padding: 4px;
}
#calDisplay .calToday
{
background-color: #FFC;
border: thin solid #000;
margin-bottom: 2px;
margin-right: 2px;
padding: 4px;
}
#calDisplay .calWeek
{
position: relative;
float: left;
width: 100%;
}
#calDisplay .calWeek .calCell
{
cursor: pointer;
display: table-cell;
float: left;
text-align: center;
width: 14.2%;
height: 30px;
white-space: nowrap;
margin-top: 2px;
}
#calDisplay .dayHeader
{
background-color: #666;
border: thin solid #333;
color: #FFF;
font-weight: bold;
margin-bottom: 2px;
margin-right: 2px;
padding: 4px;
white-space: nowrap;
}
#calForm
{
margin-bottom: 10px;
position: relative;
}
#calForm #calYear, #calForm #calMonth
{
background: #EEE;
color: #000;
display: block;
font-size: .9em;
height: 28px;
margin: 2px;
padding: 2px;
}
#calForm #submitCal
{
background: #EEE;
color: #000;
display: block;
font-size: 1em;
height: 28px;
margin: 4px;
padding: 4px;
}
#calForm .calContain
{
clear: right;
float: left;
border: thin solin #0F0;
}
.calContainAdmin {
clear: none;
float: left;
border: thin solin #0F0;
}
#calFormCont
{
display: inline-block;
}
#formRow
{
border-collapse: separate;
border-spacing: 2px;
display: table;
width: 100%;
}
#formRow .formAmenities
{
float: left;
padding-right: 5px;
width: 50%;
}
#formRow .formDiv
{
border-radius: 7px;
box-shadow: 3px 3px 5px #888888;
display: inline-block;
margin: 0px;
padding: 0px;
}
#formRow .formInput
{
border: thin solid #666;
border-radius: 5px;
display: table-cell;
padding: 10px;
width: 70%;
}
#formRow .instructions
{
background: #EEE;
border-bottom-color: #999;
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
border-bottom-style: solid;
border-bottom-width: thin;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
height: auto;
}
#formRow .question
{
border: thin solid #666;
border-radius: 5px;
display: table-cell;
font-size: 1.1em;
font-weight: bold;
min-width: 100px;
padding: 10px;
vertical-align: top;
width: 30%;
}
#formRow .question label
{
font-weight: bold;
}
#formRow .wideCol
{
border: thin solid #666;
border-radius: 20px;
display: table-row;
width: 100%;
}
#formRow .wideCol .error
{
background-color: #F99;
color: #000;
}
#formRow .wideCol:nth-of-type(even)
{
background: #FFF;
}
#formRow .wideCol:nth-of-type(odd)
{
background: #EEE;
}
#formRow input, #formRow textarea, #formRow select
{
background-color: #FFF;
border: thin solid #666;
border-radius: 5px;
color: #000;
margin: 0px;
}
#formRow input[type="radio"], #formRow input[type="checkbox"]
{
box-shadow: none !important;
}
#hoursForm #resetHours, #hoursForm #submitHours
{
background-color: #EEE;
border: thin solid #666;
border-radius: 5px;
color: #000;
box-shadow: 3px 3px 5px #888888;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 25px;
margin-left: 0px;
}
#hoursTable
{
width: 100%;
}
#hoursTable .calHours .calCheckBox
{
padding-left: 10px;
}
#hoursTable.hoursTableClean {
border-radius: 0px;
}
#hoursTable .calTime
{
white-space: nowrap;
}
#hoursTable label
{
display: block;
}
#hoursTable tr td
{
border-bottom-color: #666;
border-bottom-style: solid;
border-bottom-width: thin;
border-left-style: none;
border-right-style: none;
border-top-style: none;
padding: 2px;
text-align: center;
}
#hoursTable tr:nth-child(1) .calCheckBox
{
border-radius: 20px 0 0 0;
}
#hoursTable.hoursTableClean tr:nth-child(1) .calCheckBox
{
border-radius: 0 0 0 0;
}
#hoursTable tr:nth-child(1) .calStatus
{
border-radius: 0 20px 0 0;
}
#hoursTable.hoursTableClean tr:nth-child(1) .calStatus
{
border-radius: 0 0 0 0;
}
#hoursTable tr:nth-child(1) td
{
background: #666;
color: #EEE;
font-weight: bold;
}
#hoursTable tr:nth-child(even)
{
background: #FFF;
}
#hoursTable tr:nth-child(odd)
{
background: #EEE;
}
#hoursTable tr:nth-last-child(1) .calCheckBox
{
border-radius: 0 0 0 20px;
}
#hoursTable tr:nth-last-child(1) .calStatus
{
border-radius: 0 0 20px 0;
}
#hoursTable tr:nth-last-child(1) td
{
border: none;
}
#topRow
{
border-spacing: 10px;
display: table;
min-width: 320px;
}
#topRow #errorArea
{
background-color: #FFF;
border: thin solid #666;
border-radius: 7px;
box-shadow: 3px 3px 5px #888888;
color: #C00;
margin: 10px;
padding: 4px;
width: auto;
}
#topRow #errorArea em
{
color: #000;
font-style: italic;
font-weight: bold;
}
#topRow #errorArea p
{
font-size: 1.1em;
font-weight: bold;
}
#topRow .col
{
border: thin solid #666;
border-radius: 20px;
display: table-cell;
width: 33%;
}
#topRow .header
{
font-size: 1.3em;
font-weight: bold;
}
#topRow .instructions
{
background: #EEE;
border-bottom-color: #999;
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
border-bottom-style: solid;
border-bottom-width: thin;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
height: 180px;
}
#topRow .instructions, #topRow .options
{
padding: 10px;
}
#topRow .instructionsSmooth
{
background: #EEE;
border-bottom-color: #999;
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
border-bottom-style: solid;
border-bottom-width: thin;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
height: auto;
padding: 10px;
}
#topRow .itemDesc
{
font-size: .9em;
padding-left: 30px;
}
#topRow .normalItem
{
padding-left: 20px;
}
#topRow .normalItem a:hover
{
text-decoration: underline;
}
#topRow .selectedItem
{
font-size: 1.1em;
font-weight: bold;
padding-left: 10px;
}
#topSubmit
{
display: block;
}
.calNav
{
position: relative;
text-align: center;
width: 100%;
}
.calNav .curMonth
{
float: left;
font-size: 1.1em;
font-weight: bold;
text-align: center;
width: 50%;
}
.calNav .nextMonth
{
float: left;
text-align: right;
width: 25%;
}
.calNav .prevMonth
{
clear: left;
float: left;
width: 25%;
}
.changeRes_table {
display: table;
width: 800px;
border-spacing: 4px;
margin-left: -4px;
}
.changeRes_row {
display: table-row;
}
.changeRes_cell, .changeRes_cellHeader {
display: table-cell;
width: 50%;
padding: 4px;
border: thin solid #333;
}
.changeRes_cellHeader, .changeRes_cellCalHeader, .changeRes_cellHoursHeader {
background: #333;
font-weight: bold;
color: #FFF;
font-size: 1.2em;
}
.changeRes_cellCal, .changeRes_cellHours, .changeRes_cellCalHeader, .changeRes_cellHoursHeader {
display: table-cell;
padding: 4px;
border: thin solid #333;
}
.changeRes_cellCal, .changeRes_cellCalHeader {
width: 30%;
vertical-align: top;
}
.changeRes_cellHours, .changeRes_cellHoursHeader {
width: 70%;
vertical-align: top;
}
#calWeekCont {
float: left;
clear: both;
width: 100%;
display: table;
}
.calWeek {
float: left;
clear: none;
display: table-row;
}
.calDay {
display: table-cell;
}
.errorMSG
{
color: #F00;
font-weight: bold;
}
@media screen and (max-width: 960px)
{
#botRow
{
display: block;
float: left;
position: relative;
width: 100%;
}
#botRow .col1
{
border: thin solid #666;
border-radius: 20px;
display: block;
float: left;
margin-bottom: 10px;
width: 100%;
}
#botRow .col2
{
display: block;
float: left;
margin-bottom: 10px;
width: 100%;
}
#botSubmit
{
display: inline;
}
#formRow .formAmenities
{
clear: both;
float: left;
padding-right: 5px;
white-space: nowrap;
}
#formRow input, #formRow textarea
{
box-shadow: 3px 3px 5px #888888;
}
#topRow
{
display: block;
float: left;
position: relative;
width: 100%;
}
#topRow .col
{
border: thin solid #666;
border-radius: 20px;
display: block;
float: left;
margin-bottom: 10px;
width: 100%;
}
#topRow .instructions
{
height: auto;
}
#topSubmit
{
display: none;
}
}
/* popup */
.popup {
width:100%;
height:100%;
display:none;
position:fixed;
top:0px;
left:0px;
background:rgba(0,0,0,0.75);
}
/* Inner */
.popup-inner {
overflow-y: auto;
overflow-x: hidden;
max-height: 80%;
max-width:700px;
width:90%;
padding:40px;
position:absolute;
top:50%;
left:50%;
-webkit-transform:translate(-50%, -50%);
transform:translate(-50%, -50%);
box-shadow:0px 2px 6px rgba(0,0,0,1);
border-radius:3px;
background:#fff;
z-index: 1;
}
/* Close Button */
.popup-close {
width:30px;
height:30px;
display:inline-block;
position:absolute;
top:20px;
right:20px;
transition:ease 0.25s all;
-webkit-transform:translate(50%, -50%);
transform:translate(50%, -50%);
border-radius:1000px;
background:rgba(0,0,0,0.8);
font-family:Arial, Sans-Serif;
font-size:20px;
text-align:center;
line-height:100%;
color:#fff;
z-index: 50;
}
.popup-close:hover {
-webkit-transform:translate(50%, -50%) rotate(180deg);
transform:translate(50%, -50%) rotate(180deg);
background:rgba(0,0,0,1);
text-decoration:none;
} | 0.198258 | 0.048654 |
@media screen and (max-width: 800px) {
#a, #b, #c, #d
{
display: block;
max-width: 100%;
border: 1px solid lightslategray;
}
#e-f {
display: flex;
}
#g-h {
display: flex;
}
#e, #f, #g, #h {
width: 50%;
padding: 2em 0 2em 0;
border: 1px solid lightslategray;
}
#b {
padding: 1.5em 0 1.5em 0;
max-width: 100%;
}
#c, #d {
clear: right;
padding: 1em 0 1em 0;
}
}
/* DESKTOP */
@media screen and (min-width: 800px) and (max-width: 960px) {
.container {
display: flex;
align-items: center;
position: relative;
}
.column-one {
display: flex;
flex-direction: column;
align-items: stretch;
background-color: orange;
position: absolute;
align-items: center;
}
#column-one {
width: 20%;
height: 100%;
}
#b {
padding-top: 25%;
padding-bottom: 20%;
}
.column-two {
display: flex;
flex-direction: column;
width: 80%;
position: relative;
left: 20%;
}
.row-one {
flex-direction: row;
display: flex;
}
.row-one > div {
width: 50%;
}
.row-two {
display: flex;
flex-direction: row;
max-width: 100%;
float: left;
}
.row-two > div {
width: 25%;
}
#c, #d {
padding-top: 3%;
padding-bottom: 3%;
}
#e-f, #g-h {
width: 50%;
}
#e, #f, #g, #h {
padding-top: 4%;
padding-bottom: 4%;
display: inline-block;
width: 50%;
}
.row-three {
flex-direction: row;
}
}
/* COLORS */
#b {
background-color: orange;
}
#c {
background-color: yellow;
}
#d {
background-color: green;
}
#e {
background-color: blue;
}
#f {
background-color: indigo;
}
#g {
background-color: violet;
}
#h {
background-color: lime;
} | styles/modules.css | @media screen and (max-width: 800px) {
#a, #b, #c, #d
{
display: block;
max-width: 100%;
border: 1px solid lightslategray;
}
#e-f {
display: flex;
}
#g-h {
display: flex;
}
#e, #f, #g, #h {
width: 50%;
padding: 2em 0 2em 0;
border: 1px solid lightslategray;
}
#b {
padding: 1.5em 0 1.5em 0;
max-width: 100%;
}
#c, #d {
clear: right;
padding: 1em 0 1em 0;
}
}
/* DESKTOP */
@media screen and (min-width: 800px) and (max-width: 960px) {
.container {
display: flex;
align-items: center;
position: relative;
}
.column-one {
display: flex;
flex-direction: column;
align-items: stretch;
background-color: orange;
position: absolute;
align-items: center;
}
#column-one {
width: 20%;
height: 100%;
}
#b {
padding-top: 25%;
padding-bottom: 20%;
}
.column-two {
display: flex;
flex-direction: column;
width: 80%;
position: relative;
left: 20%;
}
.row-one {
flex-direction: row;
display: flex;
}
.row-one > div {
width: 50%;
}
.row-two {
display: flex;
flex-direction: row;
max-width: 100%;
float: left;
}
.row-two > div {
width: 25%;
}
#c, #d {
padding-top: 3%;
padding-bottom: 3%;
}
#e-f, #g-h {
width: 50%;
}
#e, #f, #g, #h {
padding-top: 4%;
padding-bottom: 4%;
display: inline-block;
width: 50%;
}
.row-three {
flex-direction: row;
}
}
/* COLORS */
#b {
background-color: orange;
}
#c {
background-color: yellow;
}
#d {
background-color: green;
}
#e {
background-color: blue;
}
#f {
background-color: indigo;
}
#g {
background-color: violet;
}
#h {
background-color: lime;
} | 0.369884 | 0.149687 |
@font-face {
font-family: iranyekan;
font-style: normal;
font-weight: bold;
src: url('../fonts/eot/iranyekanwebbold.eot');
src: url('../fonts/eot/iranyekanwebbold.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/iranyekanwebbold.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/iranyekanwebbold.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/iranyekanwebbold.ttf') format('truetype');
}
@font-face {
font-family: iranyekan;
font-style: normal;
font-weight: 300;
src: url('../fonts/eot/iranyekanweblight.eot');
src: url('../fonts/eot/iranyekanweblight.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/iranyekanweblight.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/iranyekanweblight.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/iranyekanweblight.ttf') format('truetype');
}
@font-face {
font-family: iranyekan;
font-style: normal;
font-weight: normal;
src: url('../fonts/eot/iranyekanwebregular.eot');
src: url('../fonts/eot/iranyekanwebregular.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/iranyekanwebregular.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/iranyekanwebregular.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/iranyekanwebregular.ttf') format('truetype');
}
/* Latin fonts (Roboto) */
@font-face {
font-family: roboto;
font-style: normal;
font-weight: bold;
src: url('../fonts/eot/robotobold.eot');
src: url('../fonts/eot/robotobold.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/robotobold.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/robotobold.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/robotobold.ttf') format('truetype');
}
@font-face {
font-family: roboto;
font-style: normal;
font-weight: 300;
src: url('../fonts/eot/robotolight.eot');
src: url('../fonts/eot/robotolight.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/robotolight.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/robotolight.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/robotolight.ttf') format('truetype');
}
@font-face {
font-family: roboto;
font-style: normal;
font-weight: normal;
src: url('../fonts/eot/robotoregular.eot');
src: url('../fonts/eot/robotoregular.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/robotoregular.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/robotoregular.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/robotoregular.ttf') format('truetype');
}
@font-face {
font-family: iransharp;
font-style: normal;
font-weight: bold;
src: url('../fonts/eot/iranyekanwebbold.eot');
src: url('../fonts/eot/iransharp_bold_web.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/iransharp_bold_web.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/iransharp_bold_web.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/iransharp_bold_web.ttf') format('truetype');
}
@font-face {
font-family: iransharp;
font-style: normal;
font-weight: 300;
src: url('../fonts/eot/iransharp_light_web.eot');
src: url('../fonts/eot/iransharp_light_web.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/iransharp_light_web.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/iransharp_light_web.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/iransharp_light_web.ttf') format('truetype');
}
@font-face {
font-family: iransharp;
font-style: normal;
font-weight: normal;
src: url('../fonts/eot/iransharp_regular_web.eot');
src: url('../fonts/eot/iransharp_regular_web.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/iransharp_regular_web.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/iransharp_regular_web.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/iransharp_regular_web.ttf') format('truetype');
}
@font-face {
font-family: IRANSans;
font-style: normal;
font-weight: 900;
src: url('../fonts/eot/IRANSansWeb_Black.eot');
src: url('../fonts/eot/IRANSansWeb_Black.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/IRANSansWeb_Black.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/IRANSansWeb_Black.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/IRANSansWeb_Black.ttf') format('truetype');
}
@font-face {
font-family: IRANSans;
font-style: normal;
font-weight: bold;
src: url('../fonts/eot/IRANSansWeb_Bold.eot');
src: url('../fonts/eot/IRANSansWeb_Bold.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/IRANSansWeb_Bold.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/IRANSansWeb_Bold.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/IRANSansWeb_Bold.ttf') format('truetype');
}
@font-face {
font-family: IRANSans;
font-style: normal;
font-weight: 500;
src: url('../fonts/eot/IRANSansWeb_Medium.eot');
src: url('../fonts/eot/IRANSansWeb_Medium.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/IRANSansWeb_Medium.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/IRANSansWeb_Medium.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/IRANSansWeb_Medium.ttf') format('truetype');
}
@font-face {
font-family: IRANSans;
font-style: normal;
font-weight: 300;
src: url('../fonts/eot/IRANSansWeb_Light.eot');
src: url('../fonts/eot/IRANSansWeb_Light.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/IRANSansWeb_Light.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/IRANSansWeb_Light.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/IRANSansWeb_Light.ttf') format('truetype');
}
@font-face {
font-family: IRANSans;
font-style: normal;
font-weight: 200;
src: url('../fonts/eot/IRANSansWeb_UltraLight.eot');
src: url('../fonts/eot/IRANSansWeb_UltraLight.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/IRANSansWeb_UltraLight.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/IRANSansWeb_UltraLight.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/IRANSansWeb_UltraLight.ttf') format('truetype');
}
@font-face {
font-family: IRANSans;
font-style: normal;
font-weight: normal;
src: url('../fonts/eot/IRANSansWeb.eot');
src: url('../fonts/eot/IRANSansWeb.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/IRANSansWeb.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/IRANSansWeb.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/IRANSansWeb.ttf') format('truetype');
}
@font-face {
font-family: Aviny;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/aviny.ttf') format('truetype');
}
@font-face {
font-family: Mahboobeh;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/Mahboubeh_mehravar.ttf') format('truetype');
}
@font-face {
font-family: Shabnam;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/Shabnam-Bold-FD.ttf') format('truetype'),
url('../fonts/woff/shabnam-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Vazir;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/Vazir-Bold-FD.ttf') format('truetype'),
url('../fonts/woff/vazir-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Naskh;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/droid-naskh-400.ttf') format('truetype'),
url('../fonts/woff/droid-naskh-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Dubai;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/dubai-400.ttf') format('truetype'),
url('../fonts/woff/dubai-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Dastnevis;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/dastnevis-400.ttf') format('truetype'),
url('../fonts/woff/dastnevis-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Sahel;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/sahel-400.ttf') format('truetype'),
url('../fonts/woff/sahel-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Lalezar;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/lalezar-700.ttf') format('truetype'),
url('../fonts/woff/lalezar-700.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Platinosans;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/palatino-sans-400.ttf') format('truetype'),
url('../fonts/woff/palatino-sans-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Myriad;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/myriad-400.ttf') format('truetype'),
url('../fonts/woff/myriad-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Neirizi;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/neirizi-400.ttf') format('truetype'),
url('../fonts/woff/neirizi-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Gandom;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/gandom-400.ttf') format('truetype'),
url('../fonts/woff/gandom-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
} | src/assets/fonts/files/css/fonts.css | @font-face {
font-family: iranyekan;
font-style: normal;
font-weight: bold;
src: url('../fonts/eot/iranyekanwebbold.eot');
src: url('../fonts/eot/iranyekanwebbold.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/iranyekanwebbold.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/iranyekanwebbold.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/iranyekanwebbold.ttf') format('truetype');
}
@font-face {
font-family: iranyekan;
font-style: normal;
font-weight: 300;
src: url('../fonts/eot/iranyekanweblight.eot');
src: url('../fonts/eot/iranyekanweblight.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/iranyekanweblight.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/iranyekanweblight.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/iranyekanweblight.ttf') format('truetype');
}
@font-face {
font-family: iranyekan;
font-style: normal;
font-weight: normal;
src: url('../fonts/eot/iranyekanwebregular.eot');
src: url('../fonts/eot/iranyekanwebregular.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/iranyekanwebregular.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/iranyekanwebregular.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/iranyekanwebregular.ttf') format('truetype');
}
/* Latin fonts (Roboto) */
@font-face {
font-family: roboto;
font-style: normal;
font-weight: bold;
src: url('../fonts/eot/robotobold.eot');
src: url('../fonts/eot/robotobold.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/robotobold.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/robotobold.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/robotobold.ttf') format('truetype');
}
@font-face {
font-family: roboto;
font-style: normal;
font-weight: 300;
src: url('../fonts/eot/robotolight.eot');
src: url('../fonts/eot/robotolight.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/robotolight.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/robotolight.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/robotolight.ttf') format('truetype');
}
@font-face {
font-family: roboto;
font-style: normal;
font-weight: normal;
src: url('../fonts/eot/robotoregular.eot');
src: url('../fonts/eot/robotoregular.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/robotoregular.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/robotoregular.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/robotoregular.ttf') format('truetype');
}
@font-face {
font-family: iransharp;
font-style: normal;
font-weight: bold;
src: url('../fonts/eot/iranyekanwebbold.eot');
src: url('../fonts/eot/iransharp_bold_web.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/iransharp_bold_web.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/iransharp_bold_web.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/iransharp_bold_web.ttf') format('truetype');
}
@font-face {
font-family: iransharp;
font-style: normal;
font-weight: 300;
src: url('../fonts/eot/iransharp_light_web.eot');
src: url('../fonts/eot/iransharp_light_web.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/iransharp_light_web.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/iransharp_light_web.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/iransharp_light_web.ttf') format('truetype');
}
@font-face {
font-family: iransharp;
font-style: normal;
font-weight: normal;
src: url('../fonts/eot/iransharp_regular_web.eot');
src: url('../fonts/eot/iransharp_regular_web.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/iransharp_regular_web.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/iransharp_regular_web.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/iransharp_regular_web.ttf') format('truetype');
}
@font-face {
font-family: IRANSans;
font-style: normal;
font-weight: 900;
src: url('../fonts/eot/IRANSansWeb_Black.eot');
src: url('../fonts/eot/IRANSansWeb_Black.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/IRANSansWeb_Black.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/IRANSansWeb_Black.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/IRANSansWeb_Black.ttf') format('truetype');
}
@font-face {
font-family: IRANSans;
font-style: normal;
font-weight: bold;
src: url('../fonts/eot/IRANSansWeb_Bold.eot');
src: url('../fonts/eot/IRANSansWeb_Bold.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/IRANSansWeb_Bold.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/IRANSansWeb_Bold.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/IRANSansWeb_Bold.ttf') format('truetype');
}
@font-face {
font-family: IRANSans;
font-style: normal;
font-weight: 500;
src: url('../fonts/eot/IRANSansWeb_Medium.eot');
src: url('../fonts/eot/IRANSansWeb_Medium.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/IRANSansWeb_Medium.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/IRANSansWeb_Medium.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/IRANSansWeb_Medium.ttf') format('truetype');
}
@font-face {
font-family: IRANSans;
font-style: normal;
font-weight: 300;
src: url('../fonts/eot/IRANSansWeb_Light.eot');
src: url('../fonts/eot/IRANSansWeb_Light.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/IRANSansWeb_Light.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/IRANSansWeb_Light.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/IRANSansWeb_Light.ttf') format('truetype');
}
@font-face {
font-family: IRANSans;
font-style: normal;
font-weight: 200;
src: url('../fonts/eot/IRANSansWeb_UltraLight.eot');
src: url('../fonts/eot/IRANSansWeb_UltraLight.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/IRANSansWeb_UltraLight.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/IRANSansWeb_UltraLight.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/IRANSansWeb_UltraLight.ttf') format('truetype');
}
@font-face {
font-family: IRANSans;
font-style: normal;
font-weight: normal;
src: url('../fonts/eot/IRANSansWeb.eot');
src: url('../fonts/eot/IRANSansWeb.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/woff2/IRANSansWeb.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/woff/IRANSansWeb.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/ttf/IRANSansWeb.ttf') format('truetype');
}
@font-face {
font-family: Aviny;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/aviny.ttf') format('truetype');
}
@font-face {
font-family: Mahboobeh;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/Mahboubeh_mehravar.ttf') format('truetype');
}
@font-face {
font-family: Shabnam;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/Shabnam-Bold-FD.ttf') format('truetype'),
url('../fonts/woff/shabnam-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Vazir;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/Vazir-Bold-FD.ttf') format('truetype'),
url('../fonts/woff/vazir-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Naskh;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/droid-naskh-400.ttf') format('truetype'),
url('../fonts/woff/droid-naskh-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Dubai;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/dubai-400.ttf') format('truetype'),
url('../fonts/woff/dubai-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Dastnevis;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/dastnevis-400.ttf') format('truetype'),
url('../fonts/woff/dastnevis-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Sahel;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/sahel-400.ttf') format('truetype'),
url('../fonts/woff/sahel-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Lalezar;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/lalezar-700.ttf') format('truetype'),
url('../fonts/woff/lalezar-700.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Platinosans;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/palatino-sans-400.ttf') format('truetype'),
url('../fonts/woff/palatino-sans-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Myriad;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/myriad-400.ttf') format('truetype'),
url('../fonts/woff/myriad-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Neirizi;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/neirizi-400.ttf') format('truetype'),
url('../fonts/woff/neirizi-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
}
@font-face {
font-family: Gandom;
font-style: normal;
font-weight: normal;
src: url('../fonts/ttf/gandom-400.ttf') format('truetype'),
url('../fonts/woff/gandom-400.woff') format('woff'); /* FF39+,Chrome36+, Opera24+*/
} | 0.259544 | 0.035178 |
@import url(http://fonts.googleapis.com/css?family=Roboto:400,500,700,300,100);
.pad-top-20 {
padding-top: 20px;
}
.pad-btm-20 {
padding-bottom: 20px;
}
.pad-sep-20 {
padding-top: 20px;
padding-bottom: 20px;
}
.pad-top-40 {
padding-top: 40px;
}
.pad-btm-40 {
padding-bottom: 40px;
}
.pad-sep-40 {
padding-top: 40px;
padding-bottom: 40px;
}
.pad-top-60 {
padding-top: 60px;
}
.pad-btm-60 {
padding-bottom: 60px;
}
.pad-sep-60 {
padding-top: 60px;
padding-bottom: 60px;
}
.pad-top-80 {
padding-top: 80px;
}
.pad-btm-80 {
padding-bottom: 80px;
}
.pad-sep-80 {
padding-top: 80px;
padding-bottom: 80px;
}
.pad-top-100 {
padding-top: 100px;
}
.pad-btm-100 {
padding-bottom: 100px;
}
.pad-sep-100 {
padding-top: 100px;
padding-bottom: 100px;
}
html,
body {
height: 100%;
}
body {
margin: 0;
padding: 0;
color: #fff;
overflow: hidden;
background-color: #E6E6E6;
font-size: 14px;
position: relative;
font-family: 'Roboto', Helvetica, Arial, sans-serif;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
font-weight: 300;
color: #22A7F0;
}
.fix-middle {
position: absolute;
padding: 10px;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
z-index: 3;
}
.dialog {
color: #222;
-webkit-perspective: 1200px;
-moz-perspective: 1200px;
-ms-perspective: 1200px;
-o-perspective: 1200px;
perspective: 1200px;
z-index: 1000;
opacity: 1;
visibility: visible;
-webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-moz-transition: opacity 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-ms-transition: opacity 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
transition: opacity 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.dialog,
.dialog .dialog-front,
.dialog .dialog-back {
width: auto;
position: absolute;
top: 50%;
left: 50%;
padding: 0;
margin: 0;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.dialog.dialog-effect-in {
-webkit-animation: showDialog 1000ms linear both;
-moz-animation: showDialog 1000ms linear both;
-ms-animation: showDialog 1000ms linear both;
animation: showDialog 1000ms linear both;
}
.dialog.shakeit {
-webkit-animation: shakeDialog 300ms linear both;
-moz-animation: shakeDialog 300ms linear both;
-ms-animation: shakeDialog 300ms linear both;
animation: shakeDialog 300ms linear both;
}
.dialog .dialog-content {
width: 300px;
background: #fff;
/* Old browsers */
background: -moz-radial-gradient(center, ellipse cover, #ffffff 59%, #e5e5e5 100%);
/* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(59%, #ffffff), color-stop(100%, #e5e5e5));
/* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover, #ffffff 59%, #e5e5e5 100%);
/* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover, #ffffff 59%, #e5e5e5 100%);
/* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover, #ffffff 59%, #e5e5e5 100%);
/* IE10+ */
background: radial-gradient(ellipse at center, #ffffff 59%, #e5e5e5 100%);
/* W3C */
border-radius: 6px;
-webkit-box-shadow: 0 2px 12px -3px rgba(0, 0, 0, 0.6);
-moz-box-shadow: 0 2px 12px -3px rgba(0, 0, 0, 0.6);
-ms-box-shadow: 0 2px 12px -3px rgba(0, 0, 0, 0.6);
box-shadow: 0 2px 12px -3px rgba(0, 0, 0, 0.6);
padding: 20px 25px;
}
.dialog .dialog-front,
.dialog .dialog-back {
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transition: all 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-moz-transition: all 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-ms-transition: all 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9);
transition: all 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.dialog .dialog-front {
-webkit-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
-moz-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
-ms-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
-o-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
z-index: 900;
}
.dialog .dialog-back {
-webkit-transform: translate(-50%, -50%) rotateY(-180deg);
-moz-transform: translate(-50%, -50%) rotateY(-180deg);
-ms-transform: translate(-50%, -50%) rotateY(-180deg);
-o-transform: translate(-50%, -50%) rotateY(-180deg);
z-index: 800;
}
.dialog.flip .dialog-front {
z-index: 800;
visibility: hidden;
-webkit-transform: translate(-50%, -50%) rotateY(180deg);
-moz-transform: translate(-50%, -50%) rotateY(180deg);
-ms-transform: translate(-50%, -50%) rotateY(180deg);
-o-transform: translate(-50%, -50%) rotateY(180deg);
}
.dialog.flip .dialog-back {
z-index: 900;
visibility: visible;
-webkit-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
-moz-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
-ms-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
-o-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
}
.dialog.dialog-effect-out {
z-index: 1;
opacity: 0;
visibility: hidden;
}
.dialog.dialog-effect-out .dialog-front {
-webkit-transform: translate(-50%, -20%) rotateX(-30deg);
-moz-transform: translate(-50%, -20%) rotateX(-30deg);
-ms-transform: translate(-50%, -20%) rotateX(-30deg);
-o-transform: translate(-50%, -20%) rotateX(-30deg);
}
.dialog.dialog-effect-out .dialog-back {
-webkit-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(-180deg);
-moz-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(-180deg);
-ms-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(-180deg);
-o-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(-180deg);
}
.dialog.dialog-effect-out.flip .dialog-front {
-webkit-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(180deg);
-moz-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(180deg);
-ms-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(180deg);
-o-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(180deg);
}
.dialog.dialog-effect-out.flip .dialog-back {
-webkit-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(0deg);
-moz-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(0deg);
-ms-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(0deg);
-o-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(0deg);
}
.dialog.dialog-effect-out .dialog-content {
background: #00B16A;
}
.dialog.dialog-effect-out .dialog-content .dialog-form {
visibility: hidden;
}
.dialog .dialog-form {
-webkit-animation: swooshUp30 300ms linear both;
-moz-animation: swooshUp30 300ms linear both;
-ms-animation: swooshUp30 300ms linear both;
animation: swooshUp30 300ms linear both;
-webkit-animation-delay: 300ms;
-moz-animation-delay: 300ms;
-ms-animation-delay: 300ms;
animation-delay: 300ms;
}
.dialog .dialog-form legend {
margin-bottom: 40px;
font-size: 26px;
font-weight: 300;
color: #222;
border-bottom: none;
}
.dialog .dialog-form .form-group {
margin-bottom: 20px;
position: relative;
}
.dialog .dialog-form .form-group .form-control {
color: #222;
background-color: transparent;
border: none;
border-bottom: 2px solid #222;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
box-shadow: none;
}
.dialog .dialog-form .form-group label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: 700;
}
.dialog .dialog-form .form-group.has-error .error-msg {
display: block;
}
.dialog .dialog-form .form-group.has-error label {
color: #E74C3C;
}
.dialog .dialog-form .form-group.has-error .form-control {
border-color: #E74C3C;
}
.dialog .dialog-form .form-group .checkbox label {
padding-left: 40px;
}
.dialog .dialog-form .form-group .checkbox input[type="checkbox"] {
width: 20px;
height: 20px;
background: none;
border: 2px solid #222;
margin-left: -40px;
-webkit-appearance: none;
appearance: none;
}
.dialog .dialog-form .form-group .checkbox input[type="checkbox"]:hover {
background-color: #e6e6e6;
}
.dialog .dialog-form .form-group .checkbox input[type="checkbox"]:checked {
background-color: #222;
}
.dialog .dialog-form .form-group .checkbox input[type="checkbox"]:disabled {
background-color: #6f6f6f;
border-color: #555555;
}
.dialog .dialog-form .error-msg {
position: absolute;
top: 50%;
left: 0;
right: auto;
background-color: #E74C3C;
color: #fff;
padding: 10px;
z-index: 3;
max-width: 150px;
border-radius: 3px;
-webkit-transform: translate(-110%, -50%);
-moz-transform: translate(-110%, -50%);
-ms-transform: translate(-110%, -50%);
transform: translate(-110%, -50%);
-webkit-animation: swooshleft 200ms ease-in-out both;
-moz-animation: swooshleft 200ms ease-in-out both;
-ms-animation: swooshleft 200ms ease-in-out both;
animation: swooshleft 200ms ease-in-out both;
display: none;
}
.dialog .dialog-form .error-msg:after {
position: absolute;
content: '';
top: 50%;
right: 0;
-webkit-transform: translate(97%, -50%);
-moz-transform: translate(97%, -50%);
-ms-transform: translate(97%, -50%);
transform: translate(97%, -50%);
width: 0;
height: 0;
border-style: solid;
border-width: 10px 0 10px 10px;
border-color: transparent transparent transparent #E74C3C;
}
.dialog .dialog-form .btn {
font-weight: 700;
border-width: 0;
border-radius: 0;
text-transform: uppercase;
-webkit-transition: all 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-moz-transition: all 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-ms-transition: all 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
transition: all 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.dialog .dialog-form .btn.btn-default {
color: #fff;
background-color: #446CB3;
margin: 0 -10%;
width: 120%;
outline: none;
}
.dialog .dialog-form .btn.btn-default:hover {
background-color: #222;
color: #fff;
}
.dialog .dialog-form .btn.btn-default:active,
.dialog .dialog-form .btn.btn-default:focus {
background-color: #222;
color: #fff;
}
@-webkit-keyframes swooshUp30 {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes swooshUp30 {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes swooshUp30 {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes swooshleft {
0% {
-webkit-transform: translate(-90%, -50%);
-moz-transform: translate(-90%, -50%);
-ms-transform: translate(-90%, -50%);
transform: translate(-90%, -50%);
}
100% {
-webkit-transform: translate(-110%, -50%);
-moz-transform: translate(-110%, -50%);
-ms-transform: translate(-110%, -50%);
transform: translate(-110%, -50%);
}
}
@-moz-keyframes swooshleft {
0% {
-webkit-transform: translate(-90%, -50%);
-moz-transform: translate(-90%, -50%);
-ms-transform: translate(-90%, -50%);
transform: translate(-90%, -50%);
}
100% {
-webkit-transform: translate(-110%, -50%);
-moz-transform: translate(-110%, -50%);
-ms-transform: translate(-110%, -50%);
transform: translate(-110%, -50%);
}
}
@keyframes swooshleft {
0% {
-webkit-transform: translate(-90%, -50%);
-moz-transform: translate(-90%, -50%);
-ms-transform: translate(-90%, -50%);
transform: translate(-90%, -50%);
}
100% {
-webkit-transform: translate(-110%, -50%);
-moz-transform: translate(-110%, -50%);
-ms-transform: translate(-110%, -50%);
transform: translate(-110%, -50%);
}
}
@-webkit-keyframes shakeDialog {
0% {
left: 51%;
}
25% {
left: 49%;
}
50% {
left: 51%;
}
100% {
left: 50%;
}
}
@-moz-keyframes shakeDialog {
0% {
left: 51%;
}
25% {
left: 49%;
}
50% {
left: 51%;
}
100% {
left: 50%;
}
}
@keyframes shakeDialog {
0% {
left: 51%;
}
25% {
left: 49%;
}
50% {
left: 51%;
}
100% {
left: 50%;
}
}
/* Generated with Bounce.js. Edit at http://goo.gl/KtDT8H */
@-webkit-keyframes showDialog {
0% {
-webkit-transform: matrix3d(0.8, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.8, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
7.61% {
-webkit-transform: matrix3d(0.907, 0, 0, 0, 0, 0.907, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.907, 0, 0, 0, 0, 0.907, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
11.41% {
-webkit-transform: matrix3d(0.948, 0, 0, 0, 0, 0.948, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.948, 0, 0, 0, 0, 0.948, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
15.12% {
-webkit-transform: matrix3d(0.976, 0, 0, 0, 0, 0.976, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.976, 0, 0, 0, 0, 0.976, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
18.92% {
-webkit-transform: matrix3d(0.996, 0, 0, 0, 0, 0.996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.996, 0, 0, 0, 0, 0.996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
22.72% {
-webkit-transform: matrix3d(1.008, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1.008, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
30.23% {
-webkit-transform: matrix3d(1.014, 0, 0, 0, 0, 1.014, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1.014, 0, 0, 0, 0, 1.014, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
50.25% {
-webkit-transform: matrix3d(1.003, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1.003, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
70.27% {
-webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
100% {
-webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
}
@keyframes showDialog {
0% {
-webkit-transform: matrix3d(0.8, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.8, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
7.61% {
-webkit-transform: matrix3d(0.907, 0, 0, 0, 0, 0.907, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.907, 0, 0, 0, 0, 0.907, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
11.41% {
-webkit-transform: matrix3d(0.948, 0, 0, 0, 0, 0.948, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.948, 0, 0, 0, 0, 0.948, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
15.12% {
-webkit-transform: matrix3d(0.976, 0, 0, 0, 0, 0.976, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.976, 0, 0, 0, 0, 0.976, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
18.92% {
-webkit-transform: matrix3d(0.996, 0, 0, 0, 0, 0.996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.996, 0, 0, 0, 0, 0.996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
22.72% {
-webkit-transform: matrix3d(1.008, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1.008, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
30.23% {
-webkit-transform: matrix3d(1.014, 0, 0, 0, 0, 1.014, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1.014, 0, 0, 0, 0, 1.014, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
50.25% {
-webkit-transform: matrix3d(1.003, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1.003, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
70.27% {
-webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
100% {
-webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
}
#successful_login,
#successful_registration {
opacity: 0;
visibility: hidden;
-webkit-transition: opacity 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.6s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-moz-transition: opacity 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.6s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-ms-transition: opacity 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.6s cubic-bezier(0.25, 0.5, 0.5, 0.9);
transition: opacity 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.6s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
#successful_login.active,
#successful_registration.active {
opacity: 1;
visibility: visible;
} | css/stylelogin.css | @import url(http://fonts.googleapis.com/css?family=Roboto:400,500,700,300,100);
.pad-top-20 {
padding-top: 20px;
}
.pad-btm-20 {
padding-bottom: 20px;
}
.pad-sep-20 {
padding-top: 20px;
padding-bottom: 20px;
}
.pad-top-40 {
padding-top: 40px;
}
.pad-btm-40 {
padding-bottom: 40px;
}
.pad-sep-40 {
padding-top: 40px;
padding-bottom: 40px;
}
.pad-top-60 {
padding-top: 60px;
}
.pad-btm-60 {
padding-bottom: 60px;
}
.pad-sep-60 {
padding-top: 60px;
padding-bottom: 60px;
}
.pad-top-80 {
padding-top: 80px;
}
.pad-btm-80 {
padding-bottom: 80px;
}
.pad-sep-80 {
padding-top: 80px;
padding-bottom: 80px;
}
.pad-top-100 {
padding-top: 100px;
}
.pad-btm-100 {
padding-bottom: 100px;
}
.pad-sep-100 {
padding-top: 100px;
padding-bottom: 100px;
}
html,
body {
height: 100%;
}
body {
margin: 0;
padding: 0;
color: #fff;
overflow: hidden;
background-color: #E6E6E6;
font-size: 14px;
position: relative;
font-family: 'Roboto', Helvetica, Arial, sans-serif;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
font-weight: 300;
color: #22A7F0;
}
.fix-middle {
position: absolute;
padding: 10px;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
z-index: 3;
}
.dialog {
color: #222;
-webkit-perspective: 1200px;
-moz-perspective: 1200px;
-ms-perspective: 1200px;
-o-perspective: 1200px;
perspective: 1200px;
z-index: 1000;
opacity: 1;
visibility: visible;
-webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-moz-transition: opacity 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-ms-transition: opacity 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
transition: opacity 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.dialog,
.dialog .dialog-front,
.dialog .dialog-back {
width: auto;
position: absolute;
top: 50%;
left: 50%;
padding: 0;
margin: 0;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.dialog.dialog-effect-in {
-webkit-animation: showDialog 1000ms linear both;
-moz-animation: showDialog 1000ms linear both;
-ms-animation: showDialog 1000ms linear both;
animation: showDialog 1000ms linear both;
}
.dialog.shakeit {
-webkit-animation: shakeDialog 300ms linear both;
-moz-animation: shakeDialog 300ms linear both;
-ms-animation: shakeDialog 300ms linear both;
animation: shakeDialog 300ms linear both;
}
.dialog .dialog-content {
width: 300px;
background: #fff;
/* Old browsers */
background: -moz-radial-gradient(center, ellipse cover, #ffffff 59%, #e5e5e5 100%);
/* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(59%, #ffffff), color-stop(100%, #e5e5e5));
/* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover, #ffffff 59%, #e5e5e5 100%);
/* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover, #ffffff 59%, #e5e5e5 100%);
/* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover, #ffffff 59%, #e5e5e5 100%);
/* IE10+ */
background: radial-gradient(ellipse at center, #ffffff 59%, #e5e5e5 100%);
/* W3C */
border-radius: 6px;
-webkit-box-shadow: 0 2px 12px -3px rgba(0, 0, 0, 0.6);
-moz-box-shadow: 0 2px 12px -3px rgba(0, 0, 0, 0.6);
-ms-box-shadow: 0 2px 12px -3px rgba(0, 0, 0, 0.6);
box-shadow: 0 2px 12px -3px rgba(0, 0, 0, 0.6);
padding: 20px 25px;
}
.dialog .dialog-front,
.dialog .dialog-back {
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transition: all 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-moz-transition: all 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-ms-transition: all 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9);
transition: all 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.dialog .dialog-front {
-webkit-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
-moz-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
-ms-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
-o-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
z-index: 900;
}
.dialog .dialog-back {
-webkit-transform: translate(-50%, -50%) rotateY(-180deg);
-moz-transform: translate(-50%, -50%) rotateY(-180deg);
-ms-transform: translate(-50%, -50%) rotateY(-180deg);
-o-transform: translate(-50%, -50%) rotateY(-180deg);
z-index: 800;
}
.dialog.flip .dialog-front {
z-index: 800;
visibility: hidden;
-webkit-transform: translate(-50%, -50%) rotateY(180deg);
-moz-transform: translate(-50%, -50%) rotateY(180deg);
-ms-transform: translate(-50%, -50%) rotateY(180deg);
-o-transform: translate(-50%, -50%) rotateY(180deg);
}
.dialog.flip .dialog-back {
z-index: 900;
visibility: visible;
-webkit-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
-moz-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
-ms-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
-o-transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
}
.dialog.dialog-effect-out {
z-index: 1;
opacity: 0;
visibility: hidden;
}
.dialog.dialog-effect-out .dialog-front {
-webkit-transform: translate(-50%, -20%) rotateX(-30deg);
-moz-transform: translate(-50%, -20%) rotateX(-30deg);
-ms-transform: translate(-50%, -20%) rotateX(-30deg);
-o-transform: translate(-50%, -20%) rotateX(-30deg);
}
.dialog.dialog-effect-out .dialog-back {
-webkit-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(-180deg);
-moz-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(-180deg);
-ms-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(-180deg);
-o-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(-180deg);
}
.dialog.dialog-effect-out.flip .dialog-front {
-webkit-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(180deg);
-moz-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(180deg);
-ms-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(180deg);
-o-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(180deg);
}
.dialog.dialog-effect-out.flip .dialog-back {
-webkit-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(0deg);
-moz-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(0deg);
-ms-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(0deg);
-o-transform: translate(-50%, -20%) rotateX(-30deg) rotateY(0deg);
}
.dialog.dialog-effect-out .dialog-content {
background: #00B16A;
}
.dialog.dialog-effect-out .dialog-content .dialog-form {
visibility: hidden;
}
.dialog .dialog-form {
-webkit-animation: swooshUp30 300ms linear both;
-moz-animation: swooshUp30 300ms linear both;
-ms-animation: swooshUp30 300ms linear both;
animation: swooshUp30 300ms linear both;
-webkit-animation-delay: 300ms;
-moz-animation-delay: 300ms;
-ms-animation-delay: 300ms;
animation-delay: 300ms;
}
.dialog .dialog-form legend {
margin-bottom: 40px;
font-size: 26px;
font-weight: 300;
color: #222;
border-bottom: none;
}
.dialog .dialog-form .form-group {
margin-bottom: 20px;
position: relative;
}
.dialog .dialog-form .form-group .form-control {
color: #222;
background-color: transparent;
border: none;
border-bottom: 2px solid #222;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
box-shadow: none;
}
.dialog .dialog-form .form-group label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: 700;
}
.dialog .dialog-form .form-group.has-error .error-msg {
display: block;
}
.dialog .dialog-form .form-group.has-error label {
color: #E74C3C;
}
.dialog .dialog-form .form-group.has-error .form-control {
border-color: #E74C3C;
}
.dialog .dialog-form .form-group .checkbox label {
padding-left: 40px;
}
.dialog .dialog-form .form-group .checkbox input[type="checkbox"] {
width: 20px;
height: 20px;
background: none;
border: 2px solid #222;
margin-left: -40px;
-webkit-appearance: none;
appearance: none;
}
.dialog .dialog-form .form-group .checkbox input[type="checkbox"]:hover {
background-color: #e6e6e6;
}
.dialog .dialog-form .form-group .checkbox input[type="checkbox"]:checked {
background-color: #222;
}
.dialog .dialog-form .form-group .checkbox input[type="checkbox"]:disabled {
background-color: #6f6f6f;
border-color: #555555;
}
.dialog .dialog-form .error-msg {
position: absolute;
top: 50%;
left: 0;
right: auto;
background-color: #E74C3C;
color: #fff;
padding: 10px;
z-index: 3;
max-width: 150px;
border-radius: 3px;
-webkit-transform: translate(-110%, -50%);
-moz-transform: translate(-110%, -50%);
-ms-transform: translate(-110%, -50%);
transform: translate(-110%, -50%);
-webkit-animation: swooshleft 200ms ease-in-out both;
-moz-animation: swooshleft 200ms ease-in-out both;
-ms-animation: swooshleft 200ms ease-in-out both;
animation: swooshleft 200ms ease-in-out both;
display: none;
}
.dialog .dialog-form .error-msg:after {
position: absolute;
content: '';
top: 50%;
right: 0;
-webkit-transform: translate(97%, -50%);
-moz-transform: translate(97%, -50%);
-ms-transform: translate(97%, -50%);
transform: translate(97%, -50%);
width: 0;
height: 0;
border-style: solid;
border-width: 10px 0 10px 10px;
border-color: transparent transparent transparent #E74C3C;
}
.dialog .dialog-form .btn {
font-weight: 700;
border-width: 0;
border-radius: 0;
text-transform: uppercase;
-webkit-transition: all 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-moz-transition: all 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-ms-transition: all 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
transition: all 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.dialog .dialog-form .btn.btn-default {
color: #fff;
background-color: #446CB3;
margin: 0 -10%;
width: 120%;
outline: none;
}
.dialog .dialog-form .btn.btn-default:hover {
background-color: #222;
color: #fff;
}
.dialog .dialog-form .btn.btn-default:active,
.dialog .dialog-form .btn.btn-default:focus {
background-color: #222;
color: #fff;
}
@-webkit-keyframes swooshUp30 {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes swooshUp30 {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes swooshUp30 {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes swooshleft {
0% {
-webkit-transform: translate(-90%, -50%);
-moz-transform: translate(-90%, -50%);
-ms-transform: translate(-90%, -50%);
transform: translate(-90%, -50%);
}
100% {
-webkit-transform: translate(-110%, -50%);
-moz-transform: translate(-110%, -50%);
-ms-transform: translate(-110%, -50%);
transform: translate(-110%, -50%);
}
}
@-moz-keyframes swooshleft {
0% {
-webkit-transform: translate(-90%, -50%);
-moz-transform: translate(-90%, -50%);
-ms-transform: translate(-90%, -50%);
transform: translate(-90%, -50%);
}
100% {
-webkit-transform: translate(-110%, -50%);
-moz-transform: translate(-110%, -50%);
-ms-transform: translate(-110%, -50%);
transform: translate(-110%, -50%);
}
}
@keyframes swooshleft {
0% {
-webkit-transform: translate(-90%, -50%);
-moz-transform: translate(-90%, -50%);
-ms-transform: translate(-90%, -50%);
transform: translate(-90%, -50%);
}
100% {
-webkit-transform: translate(-110%, -50%);
-moz-transform: translate(-110%, -50%);
-ms-transform: translate(-110%, -50%);
transform: translate(-110%, -50%);
}
}
@-webkit-keyframes shakeDialog {
0% {
left: 51%;
}
25% {
left: 49%;
}
50% {
left: 51%;
}
100% {
left: 50%;
}
}
@-moz-keyframes shakeDialog {
0% {
left: 51%;
}
25% {
left: 49%;
}
50% {
left: 51%;
}
100% {
left: 50%;
}
}
@keyframes shakeDialog {
0% {
left: 51%;
}
25% {
left: 49%;
}
50% {
left: 51%;
}
100% {
left: 50%;
}
}
/* Generated with Bounce.js. Edit at http://goo.gl/KtDT8H */
@-webkit-keyframes showDialog {
0% {
-webkit-transform: matrix3d(0.8, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.8, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
7.61% {
-webkit-transform: matrix3d(0.907, 0, 0, 0, 0, 0.907, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.907, 0, 0, 0, 0, 0.907, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
11.41% {
-webkit-transform: matrix3d(0.948, 0, 0, 0, 0, 0.948, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.948, 0, 0, 0, 0, 0.948, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
15.12% {
-webkit-transform: matrix3d(0.976, 0, 0, 0, 0, 0.976, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.976, 0, 0, 0, 0, 0.976, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
18.92% {
-webkit-transform: matrix3d(0.996, 0, 0, 0, 0, 0.996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.996, 0, 0, 0, 0, 0.996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
22.72% {
-webkit-transform: matrix3d(1.008, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1.008, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
30.23% {
-webkit-transform: matrix3d(1.014, 0, 0, 0, 0, 1.014, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1.014, 0, 0, 0, 0, 1.014, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
50.25% {
-webkit-transform: matrix3d(1.003, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1.003, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
70.27% {
-webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
100% {
-webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
}
@keyframes showDialog {
0% {
-webkit-transform: matrix3d(0.8, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.8, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
7.61% {
-webkit-transform: matrix3d(0.907, 0, 0, 0, 0, 0.907, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.907, 0, 0, 0, 0, 0.907, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
11.41% {
-webkit-transform: matrix3d(0.948, 0, 0, 0, 0, 0.948, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.948, 0, 0, 0, 0, 0.948, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
15.12% {
-webkit-transform: matrix3d(0.976, 0, 0, 0, 0, 0.976, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.976, 0, 0, 0, 0, 0.976, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
18.92% {
-webkit-transform: matrix3d(0.996, 0, 0, 0, 0, 0.996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.996, 0, 0, 0, 0, 0.996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
22.72% {
-webkit-transform: matrix3d(1.008, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1.008, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
30.23% {
-webkit-transform: matrix3d(1.014, 0, 0, 0, 0, 1.014, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1.014, 0, 0, 0, 0, 1.014, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
50.25% {
-webkit-transform: matrix3d(1.003, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1.003, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
70.27% {
-webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
100% {
-webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
}
#successful_login,
#successful_registration {
opacity: 0;
visibility: hidden;
-webkit-transition: opacity 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.6s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-moz-transition: opacity 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.6s cubic-bezier(0.25, 0.5, 0.5, 0.9);
-ms-transition: opacity 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.6s cubic-bezier(0.25, 0.5, 0.5, 0.9);
transition: opacity 0.4s cubic-bezier(0.25, 0.5, 0.5, 0.9), visibility 0.6s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
#successful_login.active,
#successful_registration.active {
opacity: 1;
visibility: visible;
} | 0.42919 | 0.074265 |
.popoff-overlay {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
opacity: 0;
background-color: rgba(65,65,65,.85);
background: linear-gradient(160deg, rgba(93, 88, 95, 0.75), rgba(63, 60, 72, 0.75));
-webkit-transition: opacity .33s;
-moz-transition: opacity .33s;
transition: opacity .33s;
z-index: 5;
}
.popoff-closable {
cursor: pointer;
}
.popoff-popup {
z-index: 9;
position: absolute;
overflow: hidden;
margin: auto;
min-width: 4rem;
min-height: 1rem;
background: white;
opacity: 1;
visibility: visible;
backface-visibility: hidden;
box-sizing: border-box;
-webkit-transform-origin: center center;
-moz-transform-origin: center center;
transform-origin: center center;
-webkit-transform: scale(1) rotate(0deg);
-moz-transform: scale(1) rotate(0deg);
-ms-transform: scale(1) rotate(0deg);
transform: scale(1) rotate(0deg);
}
.popoff-popup-tip {
margin: 20px;
}
.popoff-animate {
-webkit-transition: opacity .333s, transform .25s ease-out;
-moz-transition: opacity .333s, transform .25s ease-out;
transition: opacity .333s, transform .25s ease-out;
}
.popoff-hidden {
opacity: 0;
display: none;
pointer-events: none;
visibility: hidden;
}
.popoff-visible {
opacity: 1;
}
.popoff-container {
}
.popoff-container-overflow {
overflow: hidden;
height: 100%;
}
.popoff-overflow {
position: fixed;
overflow: hidden;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10;
display: flex;
justify-content: center;
align-items: center;
}
.popoff-overflow.popoff-overflow-tall {
overflow-y: scroll;
display: block;
}
.popoff-overflow .popoff-popup {
position: relative;
}
.popoff-overflow-tall .popoff-popup {
margin: 2rem auto;
}
@media (max-width: 42rem) {
.popoff-overflow-tall .popoff-popup {
margin: 0 auto;
}
}
/* Close button */
.popoff-close {
position: absolute;
right: 0;
top: 0;
width: 3.333rem;
height: 3.333rem;
cursor: pointer;
line-height: 3.333rem;
text-align: center;
font-size: 1.333rem;
color: rgb(120,120,120);
background: transparent;
}
.popoff-close:after {
content: '✕';
}
.popoff-close:hover{
color: rgb(0,0,0);
}
/* Types */
.popoff-modal,
.popoff-dialog,
.popoff-confirm,
.popoff-alert,
.popoff-sidebar {
position: fixed;
max-width: 660px;
min-width: 320px;
padding: 1.6rem 2rem;
box-shadow: 0 4px 16px -2px rgba(19, 16, 27, 0.35);
}
@media (max-width: 42rem) {
.popoff-modal,
.popoff-dialog,
.popoff-confirm,
.popoff-alert {
max-width: 80%;
}
}
.popoff-dropdown,
.popoff-tooltip {
max-width: 320px;
padding: 1rem 1.2rem;
box-shadow: 0 1px 4px rgba(19, 16, 27, 0.25);
}
/** Special sidebar settings */
.popoff-sidebar {
margin: 0;
max-width: none;
min-width: 0;
max-height: none;
overflow-y: auto;
opacity: 1;
padding: 1.2rem;
}
.popoff-sidebar[data-side="top"] {
top: 0;
left: 0;
right: 0;
bottom: auto;
max-height: 160px;
}
.popoff-sidebar[data-side="bottom"] {
bottom: 0;
left: 0;
right: 0;
top: auto;
max-height: 160px;
}
.popoff-sidebar[data-side="right"] {
bottom: 0;
top: 0;
right: 0;
left: auto;
max-width: 240px;
}
.popoff-sidebar[data-side="left"] {
bottom: 0;
top: 0;
left: 0;
right: auto;
max-width: 240px;
}
/* Tip */
.popoff-tip {
width: 30px;
height: 30px;
position: absolute;
z-index: 10;
overflow: hidden;
}
.popoff-tip:after {
content: '';
border-top-left-radius: 1px;
position: absolute;
background: white;
box-shadow: 0 0px 3px rgba(19, 16, 27, 0.25);
-webkit-transform-origin: center;
-moz-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
transform: rotate(45deg);
width: 30px;
height: 30px;
}
.popoff-tip[data-side="top"],
.popoff-tip[data-side="bottom"] {
height: 20px;
}
.popoff-tip[data-side="top"]:after {
bottom: auto;
top: 17px;
}
.popoff-tip[data-side="bottom"]:after {
bottom: 17px;
top: auto;
}
.popoff-tip[data-side="left"],
.popoff-tip[data-side="right"] {
width: 20px;
}
.popoff-tip[data-side="left"]:after {
left: 17px;
right: auto;
}
.popoff-tip[data-side="right"]:after {
left: auto;
right: 17px;
}
/* Basic fade */
.popoff-effect-fade {
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
/* Effect 1: Fade in and scale up */
.popoff-effect-scale {
-webkit-transform: scale(0.7);
-moz-transform: scale(0.7);
-ms-transform: scale(0.7);
transform: scale(0.7);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
/* Effect 2: Slide from the right */
.popoff-effect-slide {
-webkit-transform: translateY(20%);
-moz-transform: translateY(20%);
-ms-transform: translateY(20%);
transform: translateY(20%);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.popoff-effect-slide-right {
-webkit-transform: translateX(20%);
-moz-transform: translateX(20%);
-ms-transform: translateX(20%);
transform: translateX(20%);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.popoff-effect-slide-bottom {
-webkit-transform: translateY(20%);
-moz-transform: translateY(20%);
-ms-transform: translateY(20%);
transform: translateY(20%);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.popoff-effect-slide-left {
-webkit-transform: translateX(-20%);
-moz-transform: translateX(-20%);
-ms-transform: translateX(-20%);
transform: translateX(-20%);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.popoff-effect-slide-top {
-webkit-transform: translateY(-20%);
-moz-transform: translateY(-20%);
-ms-transform: translateY(-20%);
transform: translateY(-20%);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
/* Effect 4: Newspaper */
.popoff-effect-newspaper {
-webkit-transform: scale(0) rotate(720deg);
-moz-transform: scale(0) rotate(720deg);
-ms-transform: scale(0) rotate(720deg);
transform: scale(0) rotate(720deg);
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
transition: all 0.5s;
opacity: 0;
}
/* Effect 11: Super scaled */
.popoff-effect-super-scaled {
-webkit-transform: scale(2);
-moz-transform: scale(2);
-ms-transform: scale(2);
transform: scale(2);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
} | index.css | .popoff-overlay {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
opacity: 0;
background-color: rgba(65,65,65,.85);
background: linear-gradient(160deg, rgba(93, 88, 95, 0.75), rgba(63, 60, 72, 0.75));
-webkit-transition: opacity .33s;
-moz-transition: opacity .33s;
transition: opacity .33s;
z-index: 5;
}
.popoff-closable {
cursor: pointer;
}
.popoff-popup {
z-index: 9;
position: absolute;
overflow: hidden;
margin: auto;
min-width: 4rem;
min-height: 1rem;
background: white;
opacity: 1;
visibility: visible;
backface-visibility: hidden;
box-sizing: border-box;
-webkit-transform-origin: center center;
-moz-transform-origin: center center;
transform-origin: center center;
-webkit-transform: scale(1) rotate(0deg);
-moz-transform: scale(1) rotate(0deg);
-ms-transform: scale(1) rotate(0deg);
transform: scale(1) rotate(0deg);
}
.popoff-popup-tip {
margin: 20px;
}
.popoff-animate {
-webkit-transition: opacity .333s, transform .25s ease-out;
-moz-transition: opacity .333s, transform .25s ease-out;
transition: opacity .333s, transform .25s ease-out;
}
.popoff-hidden {
opacity: 0;
display: none;
pointer-events: none;
visibility: hidden;
}
.popoff-visible {
opacity: 1;
}
.popoff-container {
}
.popoff-container-overflow {
overflow: hidden;
height: 100%;
}
.popoff-overflow {
position: fixed;
overflow: hidden;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10;
display: flex;
justify-content: center;
align-items: center;
}
.popoff-overflow.popoff-overflow-tall {
overflow-y: scroll;
display: block;
}
.popoff-overflow .popoff-popup {
position: relative;
}
.popoff-overflow-tall .popoff-popup {
margin: 2rem auto;
}
@media (max-width: 42rem) {
.popoff-overflow-tall .popoff-popup {
margin: 0 auto;
}
}
/* Close button */
.popoff-close {
position: absolute;
right: 0;
top: 0;
width: 3.333rem;
height: 3.333rem;
cursor: pointer;
line-height: 3.333rem;
text-align: center;
font-size: 1.333rem;
color: rgb(120,120,120);
background: transparent;
}
.popoff-close:after {
content: '✕';
}
.popoff-close:hover{
color: rgb(0,0,0);
}
/* Types */
.popoff-modal,
.popoff-dialog,
.popoff-confirm,
.popoff-alert,
.popoff-sidebar {
position: fixed;
max-width: 660px;
min-width: 320px;
padding: 1.6rem 2rem;
box-shadow: 0 4px 16px -2px rgba(19, 16, 27, 0.35);
}
@media (max-width: 42rem) {
.popoff-modal,
.popoff-dialog,
.popoff-confirm,
.popoff-alert {
max-width: 80%;
}
}
.popoff-dropdown,
.popoff-tooltip {
max-width: 320px;
padding: 1rem 1.2rem;
box-shadow: 0 1px 4px rgba(19, 16, 27, 0.25);
}
/** Special sidebar settings */
.popoff-sidebar {
margin: 0;
max-width: none;
min-width: 0;
max-height: none;
overflow-y: auto;
opacity: 1;
padding: 1.2rem;
}
.popoff-sidebar[data-side="top"] {
top: 0;
left: 0;
right: 0;
bottom: auto;
max-height: 160px;
}
.popoff-sidebar[data-side="bottom"] {
bottom: 0;
left: 0;
right: 0;
top: auto;
max-height: 160px;
}
.popoff-sidebar[data-side="right"] {
bottom: 0;
top: 0;
right: 0;
left: auto;
max-width: 240px;
}
.popoff-sidebar[data-side="left"] {
bottom: 0;
top: 0;
left: 0;
right: auto;
max-width: 240px;
}
/* Tip */
.popoff-tip {
width: 30px;
height: 30px;
position: absolute;
z-index: 10;
overflow: hidden;
}
.popoff-tip:after {
content: '';
border-top-left-radius: 1px;
position: absolute;
background: white;
box-shadow: 0 0px 3px rgba(19, 16, 27, 0.25);
-webkit-transform-origin: center;
-moz-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
transform: rotate(45deg);
width: 30px;
height: 30px;
}
.popoff-tip[data-side="top"],
.popoff-tip[data-side="bottom"] {
height: 20px;
}
.popoff-tip[data-side="top"]:after {
bottom: auto;
top: 17px;
}
.popoff-tip[data-side="bottom"]:after {
bottom: 17px;
top: auto;
}
.popoff-tip[data-side="left"],
.popoff-tip[data-side="right"] {
width: 20px;
}
.popoff-tip[data-side="left"]:after {
left: 17px;
right: auto;
}
.popoff-tip[data-side="right"]:after {
left: auto;
right: 17px;
}
/* Basic fade */
.popoff-effect-fade {
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
/* Effect 1: Fade in and scale up */
.popoff-effect-scale {
-webkit-transform: scale(0.7);
-moz-transform: scale(0.7);
-ms-transform: scale(0.7);
transform: scale(0.7);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
/* Effect 2: Slide from the right */
.popoff-effect-slide {
-webkit-transform: translateY(20%);
-moz-transform: translateY(20%);
-ms-transform: translateY(20%);
transform: translateY(20%);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.popoff-effect-slide-right {
-webkit-transform: translateX(20%);
-moz-transform: translateX(20%);
-ms-transform: translateX(20%);
transform: translateX(20%);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.popoff-effect-slide-bottom {
-webkit-transform: translateY(20%);
-moz-transform: translateY(20%);
-ms-transform: translateY(20%);
transform: translateY(20%);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.popoff-effect-slide-left {
-webkit-transform: translateX(-20%);
-moz-transform: translateX(-20%);
-ms-transform: translateX(-20%);
transform: translateX(-20%);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.popoff-effect-slide-top {
-webkit-transform: translateY(-20%);
-moz-transform: translateY(-20%);
-ms-transform: translateY(-20%);
transform: translateY(-20%);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
/* Effect 4: Newspaper */
.popoff-effect-newspaper {
-webkit-transform: scale(0) rotate(720deg);
-moz-transform: scale(0) rotate(720deg);
-ms-transform: scale(0) rotate(720deg);
transform: scale(0) rotate(720deg);
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
transition: all 0.5s;
opacity: 0;
}
/* Effect 11: Super scaled */
.popoff-effect-super-scaled {
-webkit-transform: scale(2);
-moz-transform: scale(2);
-ms-transform: scale(2);
transform: scale(2);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
} | 0.382141 | 0.067424 |
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;400;700&display=swap');
:root{
--light-color:#F7F3F2;
--primary-color:#b90415;
--primary-color-hover:#d3071b;
--secondary-color:#103063;
--secondary-color-hover:#143f85;
--grey: #333;
--dark: #252529;
--light:#fff;
--red: #EF7D6A;
--shadow: 0 1px 5px rgba(104,104,104,0.8);
}
*{ box-sizing: border-box;
margin:0;
padding: 0;
}
a{
text-decoration: none;
color: var(--dark);
}
body, html{
height: 100%;
margin:0;
font-family: Titillium Web, Arial, Helvetica, sans-serif;
font-size: 1rem;
font-weight: 400;
line-height: 1.8em;
color: var(--grey);
}
.pimg1, .pimg2, .pimg3{
position: relative;
opacity: 0.7;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
/* background-attachment: fixed = parallax */
/* background-attachment: scroll = normal */
background-attachment: fixed;
}
.pimg1{
background-image: url("../Img/Moodboard.png");
min-height: 100%;
}
.section{
text-align: left;
padding: 100px 80px;
}
.section-light{
background-color: var(--light-color);
color:var(--grey);
}
.section-dark{
background-color: var(--dark);
color:var(--light-color);
}
.ptext{
position: absolute;
top:50%;
width: 100%;
text-align:center;
color:var(--dark);
font-size: 2rem;
letter-spacing: 8px;
text-transform: uppercase;
}
.ptext .border{
background-color:var(--dark);
color: var(--light-color);
padding:1rem;
}
/* .ptext .border.trans{
background-color: transparent;
} */
@media(max-width: 568px){
.pimg1, .pimg2, .pimg3{
background-attachment: scroll;
}
}
/* Grid Layout Css Properties*/
/* .wrapper{
min-height: 100vh;
display:grid;
grid-template-columns:repeat(10,1fr) ;
grid-template-rows:repeat(10,1fr);
grid-gap:12px;
/* grid-auto-flow: row-dense; */
/* }
p{
margin: 0;
margin-bottom: 12px;
width: 100%;
height: 100%;
background-color: #96b6e954;
transition: all 1s;
}
p:nth-of-type(2n){
grid-column: span 3;
grid-row: span 3;
background-color: #854714;
}
p:nth-of-type(3n){
grid-column: span 2;
grid-row: span 2;
margin-bottom: 40px;
background-color: #851485;
}
p:nth-of-type(5n){
grid-column: 2/7;
grid-row: 2/3;
margin-bottom: 100px;
background-color: #6d8514;
}
.img-1{
grid-column: 1/2;
grid-row: 1/2;
object-fit: cover;
} */
/* .img-2{
background: url(/Img/96_Moma.png);
min-height: 200px;
min-width: 200px;
background-size: cover;
background-position: center;
margin-top: 1rem;
} */
#controls {
margin-left: 15px;
padding: 0;
}
#slider_value {
vertical-align: 10px;
width: 200px;
margin-left: 90px;
}
#scaleOutput {
position: absolute;
width: 60px;
height: 30px;
margin-left: 10px;
vertical-align: center;
text-align: center;
color: Black;
font: 20px Verdana;
}
#mycanvas {
margin: 10px 20px 0px 20px;
border: thin solid Black;
cursor: crosshair; | css/Stylesheet_k.css | @import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;400;700&display=swap');
:root{
--light-color:#F7F3F2;
--primary-color:#b90415;
--primary-color-hover:#d3071b;
--secondary-color:#103063;
--secondary-color-hover:#143f85;
--grey: #333;
--dark: #252529;
--light:#fff;
--red: #EF7D6A;
--shadow: 0 1px 5px rgba(104,104,104,0.8);
}
*{ box-sizing: border-box;
margin:0;
padding: 0;
}
a{
text-decoration: none;
color: var(--dark);
}
body, html{
height: 100%;
margin:0;
font-family: Titillium Web, Arial, Helvetica, sans-serif;
font-size: 1rem;
font-weight: 400;
line-height: 1.8em;
color: var(--grey);
}
.pimg1, .pimg2, .pimg3{
position: relative;
opacity: 0.7;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
/* background-attachment: fixed = parallax */
/* background-attachment: scroll = normal */
background-attachment: fixed;
}
.pimg1{
background-image: url("../Img/Moodboard.png");
min-height: 100%;
}
.section{
text-align: left;
padding: 100px 80px;
}
.section-light{
background-color: var(--light-color);
color:var(--grey);
}
.section-dark{
background-color: var(--dark);
color:var(--light-color);
}
.ptext{
position: absolute;
top:50%;
width: 100%;
text-align:center;
color:var(--dark);
font-size: 2rem;
letter-spacing: 8px;
text-transform: uppercase;
}
.ptext .border{
background-color:var(--dark);
color: var(--light-color);
padding:1rem;
}
/* .ptext .border.trans{
background-color: transparent;
} */
@media(max-width: 568px){
.pimg1, .pimg2, .pimg3{
background-attachment: scroll;
}
}
/* Grid Layout Css Properties*/
/* .wrapper{
min-height: 100vh;
display:grid;
grid-template-columns:repeat(10,1fr) ;
grid-template-rows:repeat(10,1fr);
grid-gap:12px;
/* grid-auto-flow: row-dense; */
/* }
p{
margin: 0;
margin-bottom: 12px;
width: 100%;
height: 100%;
background-color: #96b6e954;
transition: all 1s;
}
p:nth-of-type(2n){
grid-column: span 3;
grid-row: span 3;
background-color: #854714;
}
p:nth-of-type(3n){
grid-column: span 2;
grid-row: span 2;
margin-bottom: 40px;
background-color: #851485;
}
p:nth-of-type(5n){
grid-column: 2/7;
grid-row: 2/3;
margin-bottom: 100px;
background-color: #6d8514;
}
.img-1{
grid-column: 1/2;
grid-row: 1/2;
object-fit: cover;
} */
/* .img-2{
background: url(/Img/96_Moma.png);
min-height: 200px;
min-width: 200px;
background-size: cover;
background-position: center;
margin-top: 1rem;
} */
#controls {
margin-left: 15px;
padding: 0;
}
#slider_value {
vertical-align: 10px;
width: 200px;
margin-left: 90px;
}
#scaleOutput {
position: absolute;
width: 60px;
height: 30px;
margin-left: 10px;
vertical-align: center;
text-align: center;
color: Black;
font: 20px Verdana;
}
#mycanvas {
margin: 10px 20px 0px 20px;
border: thin solid Black;
cursor: crosshair; | 0.346431 | 0.070688 |
html, body, div, table, img, fieldset {
border: 0;
margin: 0;
padding: 0;
font-size: 11px;
}
html {
overflow: scroll;
}
body, pre, span, pre, label {
font-family: Tahoma, Helvetica, sans-serif;
font-size: 11px;
}
/* for some reson IE things a form should have dimensions, */
form {
padding: 0;
margin: 0;
}
table {
font-size: 11px;
}
ul {
margin-left: 15px;
padding: 0;
}
h2 {
font: 18px tahoma;
color: #646464;
}
.commandSpacer {
float: left;
width: 10px;
margin-left: 10px;
margin-right: 10px;
background-color: #333;
}
.floatLeft {
float: left;
}
.floatright {
float: right;
}
div.clearer {
clear: both;
height: 0;
visibility: hidden;
line-height: .01em;
padding: 0;
margin: 0;
}
/* header begin */
div.icepdf-header {
background: url("#{resource['images:demo-header-bacground.png']}") no-repeat scroll 0 0 transparent;
height: 123px;
width: 100%;
}
div.icepdf-logo {
background: url("#{resource['images:icepdf-viewer.png']}") no-repeat scroll 0 0 transparent;
height: 116px;
left: -12px;
position: relative;
width: 600px;
}
/* header end */
/* body start */
/* provides a continer to center a child div in */
div.body_container {
float: left;
width: 100%;
}
/* centers in parent as long as parent is larger then child*/
div.body_content {
margin: 0 auto;
width: 1040px;
padding-left: 25px;
}
div.body_content div {
/*height: 100px;*/
}
div.navigationContainer {
border: none;
float: left;
width: 350px;
border-bottom: 1px solid #d9d9d9;
}
.commandBarContainer {
height: 35px;
}
/* margin-left should be updated along with the relative position of */
div.contentContainer {
background: none;
border: none;
float: left;
padding-left: 30px;
width: 660px;
}
table.componentTabSetContainer {
width: 99%;
}
/* controls the appearance of links throughout the application */
a:link, a:hover, a:visited, a:active {
font-family: Tahoma, Helvetica, sans-serif;
font-weight: normal;
text-decoration: none;
color: #1E5F89;
}
a:hover {
color: #E50000;
text-decoration: underline
}
a:visited {
/*color: #104e5b;*/
}
a:active {
color: #318496;
}
a.downloadUploadLink, a.downloadUploadLink:hover, .currentPageLabel {
color: #484848;
font-weight: bold;
}
li.fileLink {
list-style: none;
background: url("#{resource['images:icepdf-bullet.gif']}") no-repeat 0 3px;
padding-left: 15px;
padding-bottom: 3px;
line-height: 16px;
}
/* expanble menu */
.icePnlClpsblCnt {
background-color: white;
}
.icePnlClpsblCnt, .icePnlClpsblCnt-dis {
line-height: 16px;
}
/* connection status style for tabbed template */
.navConnectionStatus {
left: 932px;
position: relative;
top: 33px;
}
.documentPageView {
float: left;
overflow: auto;
width: 650px;
height: 750px;
border: 1px solid #999999;
text-align: center;
vertical-align: middle;
}
.documentOutlineContainer {
overflow: auto;
}
.documentOutlineContainer > div > span{
width: 100%;
}
.documentUpload {
/*width:400px;*/
height: 150px;
}
.popupHeaderWrapper {
text-align: center;
vertical-align: middle;
}
.popupHeaderImage {
float: right;
margin-right: 2px;
margin-top: 2px;
}
.popupHeaderText {
float: left;
}
.selectedFile {
background-color: #cccccc;
}
.icePnlPop {
background-color: white; /*border: 1px solid */
}
/* rollover commands */
a.command {
background-position: top;
display: block;
}
a.openCommand {
background-image: url("#{resource['images:open-standard.gif']}");
}
a.openCommand:hover {
background-image: url("#{resource['images:open-rollover.gif']}");
}
a.previousCommand {
background-image: url("#{resource['images:back-standard.gif']}");
}
a.previousCommand:hover {
background-image: url("#{resource['images:back-rollover.gif']}");
}
a.forwardCommand {
background-image: url("#{resource['images:forward-standard.gif']}");
}
a.forwardCommand:hover {
background-image: url("#{resource['images:forward-rollover.gif']}");
}
a.leftCommand {
background-image: url("#{resource['images:rotate-ccw-standard.gif']}");
}
a.leftCommand:hover {
background-image: url("#{resource['images:rotate-ccw-rollover.gif']}");
}
a.rightCommand {
background-image: url("#{resource['images:rotate-cw-standard.gif']}");
}
a.rightCommand:hover {
background-image: url("#{resource['images:rotate-cw-rollover.gif']}");
} | examples/icefaces/src/main/webapp/resources/css/viewer_layout.css | html, body, div, table, img, fieldset {
border: 0;
margin: 0;
padding: 0;
font-size: 11px;
}
html {
overflow: scroll;
}
body, pre, span, pre, label {
font-family: Tahoma, Helvetica, sans-serif;
font-size: 11px;
}
/* for some reson IE things a form should have dimensions, */
form {
padding: 0;
margin: 0;
}
table {
font-size: 11px;
}
ul {
margin-left: 15px;
padding: 0;
}
h2 {
font: 18px tahoma;
color: #646464;
}
.commandSpacer {
float: left;
width: 10px;
margin-left: 10px;
margin-right: 10px;
background-color: #333;
}
.floatLeft {
float: left;
}
.floatright {
float: right;
}
div.clearer {
clear: both;
height: 0;
visibility: hidden;
line-height: .01em;
padding: 0;
margin: 0;
}
/* header begin */
div.icepdf-header {
background: url("#{resource['images:demo-header-bacground.png']}") no-repeat scroll 0 0 transparent;
height: 123px;
width: 100%;
}
div.icepdf-logo {
background: url("#{resource['images:icepdf-viewer.png']}") no-repeat scroll 0 0 transparent;
height: 116px;
left: -12px;
position: relative;
width: 600px;
}
/* header end */
/* body start */
/* provides a continer to center a child div in */
div.body_container {
float: left;
width: 100%;
}
/* centers in parent as long as parent is larger then child*/
div.body_content {
margin: 0 auto;
width: 1040px;
padding-left: 25px;
}
div.body_content div {
/*height: 100px;*/
}
div.navigationContainer {
border: none;
float: left;
width: 350px;
border-bottom: 1px solid #d9d9d9;
}
.commandBarContainer {
height: 35px;
}
/* margin-left should be updated along with the relative position of */
div.contentContainer {
background: none;
border: none;
float: left;
padding-left: 30px;
width: 660px;
}
table.componentTabSetContainer {
width: 99%;
}
/* controls the appearance of links throughout the application */
a:link, a:hover, a:visited, a:active {
font-family: Tahoma, Helvetica, sans-serif;
font-weight: normal;
text-decoration: none;
color: #1E5F89;
}
a:hover {
color: #E50000;
text-decoration: underline
}
a:visited {
/*color: #104e5b;*/
}
a:active {
color: #318496;
}
a.downloadUploadLink, a.downloadUploadLink:hover, .currentPageLabel {
color: #484848;
font-weight: bold;
}
li.fileLink {
list-style: none;
background: url("#{resource['images:icepdf-bullet.gif']}") no-repeat 0 3px;
padding-left: 15px;
padding-bottom: 3px;
line-height: 16px;
}
/* expanble menu */
.icePnlClpsblCnt {
background-color: white;
}
.icePnlClpsblCnt, .icePnlClpsblCnt-dis {
line-height: 16px;
}
/* connection status style for tabbed template */
.navConnectionStatus {
left: 932px;
position: relative;
top: 33px;
}
.documentPageView {
float: left;
overflow: auto;
width: 650px;
height: 750px;
border: 1px solid #999999;
text-align: center;
vertical-align: middle;
}
.documentOutlineContainer {
overflow: auto;
}
.documentOutlineContainer > div > span{
width: 100%;
}
.documentUpload {
/*width:400px;*/
height: 150px;
}
.popupHeaderWrapper {
text-align: center;
vertical-align: middle;
}
.popupHeaderImage {
float: right;
margin-right: 2px;
margin-top: 2px;
}
.popupHeaderText {
float: left;
}
.selectedFile {
background-color: #cccccc;
}
.icePnlPop {
background-color: white; /*border: 1px solid */
}
/* rollover commands */
a.command {
background-position: top;
display: block;
}
a.openCommand {
background-image: url("#{resource['images:open-standard.gif']}");
}
a.openCommand:hover {
background-image: url("#{resource['images:open-rollover.gif']}");
}
a.previousCommand {
background-image: url("#{resource['images:back-standard.gif']}");
}
a.previousCommand:hover {
background-image: url("#{resource['images:back-rollover.gif']}");
}
a.forwardCommand {
background-image: url("#{resource['images:forward-standard.gif']}");
}
a.forwardCommand:hover {
background-image: url("#{resource['images:forward-rollover.gif']}");
}
a.leftCommand {
background-image: url("#{resource['images:rotate-ccw-standard.gif']}");
}
a.leftCommand:hover {
background-image: url("#{resource['images:rotate-ccw-rollover.gif']}");
}
a.rightCommand {
background-image: url("#{resource['images:rotate-cw-standard.gif']}");
}
a.rightCommand:hover {
background-image: url("#{resource['images:rotate-cw-rollover.gif']}");
} | 0.376509 | 0.073099 |