code stringlengths 2k 1.04M | repo_path stringlengths 5 517 | parsed_code stringlengths 0 1.04M | quality_prob float64 0.02 0.95 | learning_prob float64 0.02 0.93 |
|---|---|---|---|---|
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
/* Define color variables */
:root {
--primary: #053742;
--secondary: #39A2DB;
--tertiary: #A2DBFA;
--dark: #222831;
--light: #E8F0F2;
}
/* Styles entire page */
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
color: var(--dark);
background-color: var(--light);
line-height: 1.5;
}
/* Begin section for navigation bar styling */
nav li, header a {
font-family: Arial, Helvetica, sans-serif;
font-weight: 500;
font-size: 1.5vw;
background-color: var(--primary);
color: var(--light);
text-decoration: none;
}
header {
background: var(--primary);
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
align-items: center;
padding: 30px 10%;
}
.nav-links {
list-style: none;
background-color: var(--primary);
}
.nav-links li {
display: inline-block;
padding: 0px 20px;
}
.nav-links li a {
transition: all 0.3s ease 0s;
}
.nav-links li a:hover {
color: var(--secondary);
}
#name {
font-size: 28px;
font-family: 'Roboto Mono', monospace;
transition: all 0.3s ease 0s;
}
#name:hover {
color: #FFC947;
}
/* End of navigation bar styling */
/* Start of profile image styling */
.profile {
display: flex;
flex-wrap: wrap;
padding: 50px 0px;
background-color: var(--light);
background-image: url(../images/background-nyc.jpg);
background-position: center;
}
.center-image {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
border-radius: 5%;
border: 5px solid var(--dark);
opacity: 0.5;
filter: grayscale(100%);
transition: all 0.3s ease 0s;
}
.center-image:hover {
opacity: 1;
filter: grayscale(0%);
}
/* End of profile image styling */
/* Beginning of main page with primary content styling */
main {
max-width: 90%;
margin-left: auto;
margin-right: auto;
}
.page-section-left {
margin: 25px 0;
padding: 10px 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: stretch;
justify-content: space-between;
}
.page-section-left > h2 {
flex: 0 0 20%;
text-align: right;
padding-right: 15px;
border-right: 4px solid var(--secondary);
color: var(--primary);
font-size: 4vw;
line-height: 1.1;
font-family: 'Roboto Mono', monospace;
}
.page-section-left > div {
flex: 0 0 77%;
}
.page-section-left p {
font-size: 1.1em;
margin-bottom: 20px;
font-family: Arial, Helvetica, sans-serif;
}
.page-section-right {
margin: 25px 0;
padding: 10px 0;
display: flex;
flex-direction: row-reverse;
flex-wrap: wrap;
align-items: stretch;
justify-content: space-between;
}
.page-section-right > h2 {
flex: 0 0 20%;
text-align: left;
padding-left: 15px;
border-left: 4px solid var(--secondary);
color: var(--primary);
font-size: 4vw;
line-height: 1.1;
font-family: 'Roboto Mono', monospace;
}
.page-section-right > div {
flex: 0 0 77%;
}
.page-section-right p {
font-size: 1.1em;
margin-bottom: 20px;
font-family: Arial, Helvetica, sans-serif;
}
/* Styles the work section, utilizes some code ideas from example project */
.projects-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.project {
min-height: 150px;
max-height: 150px;
display: flex;
flex-wrap: wrap;
align-items: flex-end;
padding: 0px 10px;
margin: 0.5em;
text-decoration: none;
background-size: 150%;
border: 5px solid var(--primary);
filter: grayscale(80%);
opacity: 0.5;
transition: all 0.3s ease 0s;
}
.project div {
background-color: var(--light);
padding: 10px;
}
.project h3 {
font-size: 1.5vw;
font-family: 'Roboto Mono', monospace;
}
.project:first-child {
min-height: 400px;
flex-basis: 100%;
}
.project:hover {
filter: grayscale(0%);
opacity: 1;
}
.movie-theater {
background-image: url("../images/movie-theater.png");
}
.coding-quiz {
background-image: url("../images/coding.png");
}
.password-generator {
background-image: url("../images/password.png");
}
.weather {
background-image: url("../images/weather.png");
}
/* Contact section styling, also influenced by the example code */
#contact-me address {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
height: 100%;
}
#contact-me a{
font-family: Arial, Helvetica, sans-serif;
font-weight: 500;
font-size: 1.5vw;
background-color: var(--light);
color: var(--primary);
text-decoration: none;
transition: all 0.3s ease 0s;
}
#contact-me a:hover {
color: var(--secondary);
}
/* Media Query styling for interactive design */
@media screen and (max-width: 980px) {
header {
padding: 15px;
justify-content: center;
text-align: center;
}
.page-section-left > h2,
.page-section-left > div,
.page-section-right > h2,
.page-section-right > div {
flex: inherit;
}
.page-section-left > h2,
.page-section-right > h2 {
border-right: none;
border-left: none;
}
}
@media screen and (max-width: 768px) {
header {
flex-direction: column;
}
#contact-me address {
justify-content: center;
text-align: center;
flex-direction: column;
}
} | assets/css/style.css | @import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
/* Define color variables */
:root {
--primary: #053742;
--secondary: #39A2DB;
--tertiary: #A2DBFA;
--dark: #222831;
--light: #E8F0F2;
}
/* Styles entire page */
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
color: var(--dark);
background-color: var(--light);
line-height: 1.5;
}
/* Begin section for navigation bar styling */
nav li, header a {
font-family: Arial, Helvetica, sans-serif;
font-weight: 500;
font-size: 1.5vw;
background-color: var(--primary);
color: var(--light);
text-decoration: none;
}
header {
background: var(--primary);
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
align-items: center;
padding: 30px 10%;
}
.nav-links {
list-style: none;
background-color: var(--primary);
}
.nav-links li {
display: inline-block;
padding: 0px 20px;
}
.nav-links li a {
transition: all 0.3s ease 0s;
}
.nav-links li a:hover {
color: var(--secondary);
}
#name {
font-size: 28px;
font-family: 'Roboto Mono', monospace;
transition: all 0.3s ease 0s;
}
#name:hover {
color: #FFC947;
}
/* End of navigation bar styling */
/* Start of profile image styling */
.profile {
display: flex;
flex-wrap: wrap;
padding: 50px 0px;
background-color: var(--light);
background-image: url(../images/background-nyc.jpg);
background-position: center;
}
.center-image {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
border-radius: 5%;
border: 5px solid var(--dark);
opacity: 0.5;
filter: grayscale(100%);
transition: all 0.3s ease 0s;
}
.center-image:hover {
opacity: 1;
filter: grayscale(0%);
}
/* End of profile image styling */
/* Beginning of main page with primary content styling */
main {
max-width: 90%;
margin-left: auto;
margin-right: auto;
}
.page-section-left {
margin: 25px 0;
padding: 10px 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: stretch;
justify-content: space-between;
}
.page-section-left > h2 {
flex: 0 0 20%;
text-align: right;
padding-right: 15px;
border-right: 4px solid var(--secondary);
color: var(--primary);
font-size: 4vw;
line-height: 1.1;
font-family: 'Roboto Mono', monospace;
}
.page-section-left > div {
flex: 0 0 77%;
}
.page-section-left p {
font-size: 1.1em;
margin-bottom: 20px;
font-family: Arial, Helvetica, sans-serif;
}
.page-section-right {
margin: 25px 0;
padding: 10px 0;
display: flex;
flex-direction: row-reverse;
flex-wrap: wrap;
align-items: stretch;
justify-content: space-between;
}
.page-section-right > h2 {
flex: 0 0 20%;
text-align: left;
padding-left: 15px;
border-left: 4px solid var(--secondary);
color: var(--primary);
font-size: 4vw;
line-height: 1.1;
font-family: 'Roboto Mono', monospace;
}
.page-section-right > div {
flex: 0 0 77%;
}
.page-section-right p {
font-size: 1.1em;
margin-bottom: 20px;
font-family: Arial, Helvetica, sans-serif;
}
/* Styles the work section, utilizes some code ideas from example project */
.projects-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.project {
min-height: 150px;
max-height: 150px;
display: flex;
flex-wrap: wrap;
align-items: flex-end;
padding: 0px 10px;
margin: 0.5em;
text-decoration: none;
background-size: 150%;
border: 5px solid var(--primary);
filter: grayscale(80%);
opacity: 0.5;
transition: all 0.3s ease 0s;
}
.project div {
background-color: var(--light);
padding: 10px;
}
.project h3 {
font-size: 1.5vw;
font-family: 'Roboto Mono', monospace;
}
.project:first-child {
min-height: 400px;
flex-basis: 100%;
}
.project:hover {
filter: grayscale(0%);
opacity: 1;
}
.movie-theater {
background-image: url("../images/movie-theater.png");
}
.coding-quiz {
background-image: url("../images/coding.png");
}
.password-generator {
background-image: url("../images/password.png");
}
.weather {
background-image: url("../images/weather.png");
}
/* Contact section styling, also influenced by the example code */
#contact-me address {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
height: 100%;
}
#contact-me a{
font-family: Arial, Helvetica, sans-serif;
font-weight: 500;
font-size: 1.5vw;
background-color: var(--light);
color: var(--primary);
text-decoration: none;
transition: all 0.3s ease 0s;
}
#contact-me a:hover {
color: var(--secondary);
}
/* Media Query styling for interactive design */
@media screen and (max-width: 980px) {
header {
padding: 15px;
justify-content: center;
text-align: center;
}
.page-section-left > h2,
.page-section-left > div,
.page-section-right > h2,
.page-section-right > div {
flex: inherit;
}
.page-section-left > h2,
.page-section-right > h2 {
border-right: none;
border-left: none;
}
}
@media screen and (max-width: 768px) {
header {
flex-direction: column;
}
#contact-me address {
justify-content: center;
text-align: center;
flex-direction: column;
}
} | 0.384681 | 0.090053 |
@import "fonts/font-awesome/css/font-awesome.min.css";
@font-face{
font-family: 'JF-Flat';
src: url(fonts/JF-Flat-Regular.ttf);
font-family: 'JF-Flat';
font-weight: normal;
font-style: normal;
}
body{
font-family: "JF-Flat", sans-serif;
}
main{
min-height: 420px;
}
p{
color: #333;
}
a{
transition: all 0.3s ease-in-out;
}
button{
cursor: pointer;
}
.btn{
min-width: 200px;
border-radius: 0;
padding: 12px 0;
}
.btn:active , button:active , button i:focus{
outline: none;
border: none;
}
.btn:focus , a:focus{
outline: 0;
box-shadow: 0 0 0 0px transparent !important;
}
/*************** Common Classes ****************/
.primary-color{
color: #db4166;
}
.primary-color-hover:hover{
color: #db4166;
}
.bg-primary-color{
background-color: #db4166;
}
.bg-primary-color-hover:hover{
background-color: #db4166;
}
.color-gradient{
background: linear-gradient(to right, #db4166 ,#c174f2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.bg-gradient{
background: linear-gradient(to right, #db4166,#c174f2);
}
.btn:hover{
background-color: #ef5176;
}
.inner-header{
background: url(../images/inner-header.jpg) fixed 100% no-repeat;
background-size: cover;
height: 350px;
}
.inner-header .overlay{
background-color: rgba(0,0,0,0.4);
padding-top:220px;
height: 100%;
}
.breadcrumb {
background-color: transparent;
padding-right: 0;
}
.breadcrumb-item{
font-size: 17px;
float: right;
}
.breadcrumb-item a{
color: white;
}
.breadcrumb-item.active{
color: white;
}
.overlay{
background-color: rgba(0,0,0,0.6);
height: 100%;
}
.overlay-white{
background-color: rgba(255,255,255,0.8);
height: 100%;
padding: 80px 0px;
}
.image{
width: 100%;
text-align: center;
overflow: hidden;
}
.image img{
max-width: 100%;
height: auto;
transition: all 0.6s ease-in-out;
}
.warning{
color: red;
}
.form-control.error{
border-color: red !important;
}
.footer-content .warning{
color: white;
}
.footer-content .form-control.error{
background-color: rgba(231, 76, 60,0.5);
}
/*************** Common Classes ****************/
/*************** Header ****************/
.top-header{
padding: 5px 0;
border-bottom: solid 1px #f5f5f5;
}
.top-header ul.info li{
display: inline;
margin-left: 15px;
font-size: 14px;
color: #666;
}
.top-header ul.info li i{
margin-left: 5px;
}
.top-header ul.social li{
display: inline;
margin-left: 8px;
font-size: 14px;
}
.top-header ul.social li a{
color: #666;
}
.top-header ul.social li a i{
transition: all 0.4s ease-in-out;
}
.top-header ul.social li a:hover{
color: #db4166;
}
.top-header ul.social li a:hover i{
transform: translateY(-5px);
}
.menu{
position: absolute;
right: 0;
left: 0;
z-index: 5;
background-color: white;
}
.menu .nav-link{
color: #555;
font-size: 16px;
margin-left: 10px;
transition: all 0.5s ease-in-out;
}
.menu .active .nav-link{
color: #db4166;
}
.menu .nav-link:hover{
color: #db4166;
}
.navbar-toggler i{
font-size: 40px;
}
#logo{
max-height: 50px;
transition: all 0.5s ease-in-out;
}
.scroll{
position: fixed;
background-color: #002147;
}
.scroll #logo{
max-height: 45px;
}
.scroll .nav-link{
font-size: 15px;
margin-left: 8px;
}
/*************** Header ****************/
/*************** Index ****************/
/** Slider **/
.slider .carousel-inner{
max-height: 700px;
overflow: hidden;
}
.slider .carousel-inner img{
max-height: 100%;
max-width: 100%;
background-color: white;
opacity: 0.8;
}
.slider .carousel-inner .carousel-item:nth-child(odd) .carousel-caption{
right: 50%;
}
.slider .carousel-inner .carousel-item:nth-child(even) .carousel-caption{
right: 10%;
}
.slider .carousel-inner .carousel-caption{
top: 20%;
text-align: right;
width: 40%;
}
.slider .carousel-inner .carousel-caption h2{
font-size: 30px;
}
.slider .carousel-inner .carousel-caption p{
max-height: 70px;
overflow: hidden;
}
/* Animation */
@keyframes scale {
0% {
transform: scale(1,1);
}
100% {
transform: scale(1.3,1.3);
}
}
.slider .carousel-item img {
animation: 20s ease-out 0s 1 scale;
}
/* Animation */
/** Slider **/
/** About **/
.about{
min-height: 480px;
background: url(../images/bg1.jpg)no-repeat 53% 21%;
}
.about .image{
position: absolute;
top: 100%;
width: 40%;
max-height: 500px;
}
.about .image img{
border: solid 15px white;
}
.about .txt{
width: 50%;
padding-right: 20px;
position: relative;
}
.about .txt p{
max-height: 160px;
overflow: hidden;
color: #666;
line-height: 27px;
}
.about .txt a {
font-size: 18px;
}
.about .txt a:after{
content: "\f100";
font-family: FontAwesome;
margin-right: 10px;
}
/** About **/
/** Services **/
.services{
background: url(../images/bg4.jpg) no-repeat 50% -145%;
background-size: contain;
}
.services .image{
width: 35%;
height: 680px;
}
.services .content{
width: 65%;
padding: 50px 130px 0 20px;
}
.services .content ul li{
margin-bottom: 25px;
float: right;
width: 50%;
}
.services .content ul li i{
font-size: 35px;
float: right;
width: 10%;
color: #db4166;
transition: all 0.4s ease-in-out;
}
.services .content ul li:hover i{
transform: translateY(10px);
}
.services .content ul li .txt{
float: right;
width: 85%;
padding-right: 10px;
}
.services .content ul li .txt p{
max-height: 65px;
overflow: hidden;
font-size: 14px;
}
/** Services **/
/** Before-After **/
.before-after{
background: url(../images/bg1.jpg)no-repeat 53% 0;
}
.before-after .twentytwenty-container{
max-height: 350px;
border: solid 15px #f5f5f5;
}
.before-after .twentytwenty-container img{
width: 100%;
height: auto;
}
.before-after a:after{
content: "\f100";
font-family: FontAwesome;
margin-right: 10px;
}
/** Before-After **/
/** Blog **/
.blog{
background: url(../images/bg4.jpg) no-repeat center fixed;
background-size: contain;
}
.blog article{
overflow: hidden;
position: relative;
}
.blog .image{
height: 350px;
position: relative;
}
.blog .txt {
background: #f5f5f5 none repeat scroll 0 0;
bottom: -85px;
padding: 10px 15px;
position: absolute;
transition: all 300ms ease-in-out 0s;
width: 100%;
height: 190px;
}
.blog .txt a{
font-size: 17px;
display: block;
min-height: 50px;
}
.blog .txt p{
max-height: 65px;
overflow: hidden;
font-size: 14px;
}
.blog article:hover .txt {
bottom: 0;
}
.blog .txt ul{
display: flex;
justify-content: space-between;
font-size: 14px;
}
.blog .txt ul li i , .blog .txt ul li span{
color: #555;
}
/** Blog **/
/** Contact **/
.map iframe{
width: 100%;
height: 480px;
margin-bottom: -5px;
}
.contact .content{
padding: 70px 50px 35px;
}
.contact .content ul li{
margin-bottom: 25px;
min-height: 60px;
}
.contact .content ul li .icon{
float: right;
width: 60px;
height: 60px;
background-color: white;
font-size: 27px;
padding-top: 10px;
color: #db4166;
}
.contact .content ul li .txt{
float: right;
width: 85%;
padding-right: 20px;
padding-top: 15px;
}
.contact .content ul li .txt p{
margin-bottom: 5px;
}
/** Contact **/
/*************** Index ****************/
/*************** Footer ****************/
.footer-content{
background: url(../images/footer.png) no-repeat 50% 40%;
background-size: cover;
}
.footer-content .logo{
max-height: 130px;
}
.footer-content p{
padding-top: 60px;
}
/*************** Footer ****************/
/*************** Page ****************/
.page{
background: url(../images/bg1.jpg)no-repeat 50% -354% fixed;
}
.static-page ul{
list-style: disc;
}
.static-page h1{
font-size: 32px;
margin-top: 20px;
}
.static-page h2{
font-size: 28px;
margin-top: 20px;
}
.static-page h3{
font-size: 25px;
margin-top: 20px;
}
.static-page h4{
font-size: 20px;
margin-top: 20px;
}
.static-page h5{
font-size: 17px;
margin-top: 20px;
}
.static-page h6{
font-size: 15px;
margin-top: 20px;
}
/*************** Page ****************/
/*************** About ****************/
.about.page .image{
position: relative;
}
.about.page .image img{
border: solid 15px #f5f5f5;
}
.about.page .txt{
width: 60%;
}
.about.page .txt p {
max-height: 100%;
}
/*************** About ****************/
/*************** Archive-Services ****************/
.archive-services .image{
max-height: 200px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
position: relative;
}
.archive-services .image .overlay {
position: absolute;
bottom: 100%;
left: 0;
right: 0;
background: linear-gradient(to right, rgba(219, 65, 102,0.2) ,rgba(193, 116, 242,0.2));
overflow: hidden;
width: 100%;
top: 0;
height: 100%;
-webkit-transition: .3s ease;
transition: .3s ease;
}
.archive-services article:hover .image .overlay {
height:0;
}
.archive-services .txt{
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
/*************** Archive-Services ****************/
/*************** Archive-Service ****************/
.archive-service .image{
width: 35%;
height: 150px;
position: relative;
}
.archive-service .image img{
height: 100%;
width: auto;
}
.archive-service .image .overlay {
position: absolute;
bottom: 100%;
left: 0;
right: 0;
background: linear-gradient(to right, rgba(219, 65, 102,0.2) ,rgba(193, 116, 242,0.2));
overflow: hidden;
width: 100%;
top: 0;
height: 100%;
-webkit-transition: .3s ease;
transition: .3s ease;
}
.archive-service article:hover .image .overlay {
height:0;
}
.archive-service .txt{
width: 65%;
padding-right: 10px;
height: 150px;
overflow: hidden;
}
.archive-service .txt p{
max-height: 67px;
overflow: hidden;
font-size: 15px;
}
/*************** Archive-Service ****************/
/*************** Single-Service ****************/
#owl-demo{
direction: ltr;
}
#owl-demo .item img{
display: block;
width: 100%;
height: auto;
}
.single-service #owl-demo .item{
max-height: 400px;
overflow: hidden;
}
/*************** Single-Service ****************/
/*************** Before-After ****************/
.before-after.page .twentytwenty-container {
height: 300px !important;
border: 0;
}
.before-after.page .txt{
height: 100px;
overflow: hidden;
}
.before-after.page .txt p{
font-size: 14px;
max-height: 65px;
overflow: hidden;
}
/* .before-after #owl-demo .item{
max-height: 500px;
overflow: hidden;
} */
/*************** Before-After ****************/
/*************** FAQ ****************/
.faq ul li{
border: solid 1px #f5f5f5;
padding: 20px 10px;
margin-bottom: 15px;
}
.faq ul li a[data-toggle]::before {
content:"\f067" ;
font-family: FontAwesome;
transition: all .25s ease-in-out;
margin-left: 5px;
color: #db4166;
font-size: 15px;
transition: all .25s ease-in-out;
float: right;
}
.faq ul li a[aria-expanded="true"]::before {
transform: rotate(45deg);
}
.faq ul li a:focus{
color: #db4166;
}
/*************** FAQ ****************/
/*************** Contact ****************/
.page .map iframe{
width: 100%;
height: 400px;
margin-bottom: -5px;
}
.contact.page .content{
padding: 0 50px 35px;
}
.contact.page .content ul li .icon{
background-color: #f5f5f5;
}
.form-control{
border: 0;
border-radius: 0;
border-bottom: solid 1px #ddd;
transition: all 0.4s ease-in-out;
padding-bottom: 15px;
background-color: transparent;
}
.form-control:focus{
border-color: #db4166;
background-color: transparent;
}
textarea{
height: 100px;
}
textarea:focus{
height: 150px;
}
/*************** Contact ****************/
/*************** Archive-Blog ****************/
/*************** Archive-Blog ****************/
/*************** Single-Blog ****************/
.single-blog article.main .image{
max-height: 320px;
}
.single-blog article.main ul.info{
list-style: none;
}
.single-blog article.main ul.info li{
display: inline;
margin-left: 30px;
}
.single-blog article.main ul.info li i{
margin-left: 3px;
color: #db4166;
}
.single-blog article.main ul{
list-style: disc;
}
.single-blog article.main h1{
font-size: 32px;
margin-top: 20px;
}
.single-blog article.main h2{
font-size: 28px;
margin-top: 20px;
}
.single-blog article.main h3{
font-size: 25px;
margin-top: 20px;
}
.single-blog article.main h4{
font-size: 20px;
margin-top: 20px;
}
.single-blog article.main h5{
font-size: 17px;
margin-top: 20px;
}
.single-blog article.main h6{
font-size: 15px;
margin-top: 20px;
}
.single-blog .related{
position: sticky;
top: 0;
}
.related article .image{
height: 230px;
}
.related article:hover .image img{
transform: scale(1.1) rotate(3deg);
}
.related article .txt{
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}
.related article .txt h5{
height: 45px;
overflow: hidden;
margin-bottom: 5px;
}
.related article .txt p{
font-size: 14px;
max-height: 125px;
overflow: hidden;
}
.related article .txt ul{
display: flex;
justify-content: space-between;
border-top: solid 1px #ddd;
padding: 12px 0 0;
font-size: 14px;
}
.related article .txt ul li i{
margin-left: 3px;
color: #db4166;
}
.all-comments .comment ul li{
margin-bottom: 20px;
}
.all-comments .comment ul li img{
width: 60px;
height: 60px;
border-radius: 50%;
float: right;
margin-left: 10px;
}
.all-comments .comment ul li .txt{
width: 85%;
float: right;
}
.reply-form form{
width: 70%;
}
/*************** Single-Blog ****************/
/************* Responsive *************/
@media(max-width: 1024px){
.navbar-toggler i {
font-size: 34px;
}
.inner-header {
background: url(../images/inner-header.jpg) fixed 76% -33% no-repeat;
}
.slider .carousel-inner {
max-height: 572px;
}
.about .image {
max-height: 435px;
top: 73%;
}
.services .content {
padding: 50px 55px 0 20px;
}
.services .content ul li{
min-height: 133px;
}
.blog .image {
height: 325px;
}
.contact .content ul li .txt {
width: 83%;
}
.related article .image{
height: 200px;
}
}
@media(max-width: 768px){
.slider .carousel-inner .carousel-caption{
width: 50%;
top: 30%;
}
.about .image {
top: 48%;
}
.services .image{
width: 0%;
display: none;
}
.services .content{
width: 100%;
}
.before-after .twentytwenty-container{
margin-bottom: 20px;
}
.conatct{
margin-bottom: -50px;
}
.map iframe{
height: 300px;;
}
.contact .content ul li .txt {
width: 80%;
}
.all-comments .comment ul li .txt {
width: 82%;
}
.reply-form form{
width: 100%;
}
}
@media(max-width: 640px){
.top-header ul.info , .top-header ul.social{
float: none !important;
text-align: center;
margin-bottom: 5px;
padding: 0;
}
.top-header ul.info li{
margin-right: 7px;
margin-right: 7px;
}
.top-header ul.social li{
margin-right: 5px;
margin-left: 5px;
}
.navbar-toggler i {
font-size: 30px;
}
.slider .carousel-inner .carousel-caption{
width: 80%;
top: 38%;
}
.slider .carousel-inner .carousel-item:nth-child(odd) .carousel-caption{
right: 10%;
}
.slider .carousel-inner .carousel-item:nth-child(even) .carousel-caption{
right: 10%;
}
.inner-header{
background: url(../images/inner-header.jpg) fixed 70% 19% no-repeat;
}
.about .image{
width: 100%;
position: relative;
margin-top: 30px;
}
.about .txt{
width: 100%;
}
.about.page .image{
width: 100%;
margin-bottom: 30px;
}
.about .image .txt , .about.page .txt{
width: 100%;
}
.footer-content .logo{
max-height: 90px;
}
.footer-content p{
margin-bottom: 0;
}
.footer-content p.last{
padding-top: 5px;
}
.page .map iframe{
height: 300px;
margin-bottom: 30px;
}
.contact.page .content{
padding: 20px;
}
.contact.page .form-group{
margin-bottom: 30px;
}
.single-blog .related{
margin-top: 40px;
}
}
@media(max-width: 480px){
.slider .carousel-inner .carousel-caption h2 {
font-size: 22px;
}
.slider .carousel-inner .carousel-caption .desc{
display: none;
}
.services .content ul li{
width: 100%;
min-height: 110px;
}
.contact{
margin-bottom: -50px;
}
}
@media(max-width: 360px){
.navbar-toggler i {
font-size: 25px;
}
.about .image {
max-height: 390px;
}
.contact .content ul li .txt {
width: 75%;
}
.before-after.page .twentytwenty-container {
height: 200px !important;
}
.all-comments .comment ul li .txt {
width: 77%;
}
}
/************* Responsive *************/ | public/frontend/AR/style/css/style-ar.css | @import "fonts/font-awesome/css/font-awesome.min.css";
@font-face{
font-family: 'JF-Flat';
src: url(fonts/JF-Flat-Regular.ttf);
font-family: 'JF-Flat';
font-weight: normal;
font-style: normal;
}
body{
font-family: "JF-Flat", sans-serif;
}
main{
min-height: 420px;
}
p{
color: #333;
}
a{
transition: all 0.3s ease-in-out;
}
button{
cursor: pointer;
}
.btn{
min-width: 200px;
border-radius: 0;
padding: 12px 0;
}
.btn:active , button:active , button i:focus{
outline: none;
border: none;
}
.btn:focus , a:focus{
outline: 0;
box-shadow: 0 0 0 0px transparent !important;
}
/*************** Common Classes ****************/
.primary-color{
color: #db4166;
}
.primary-color-hover:hover{
color: #db4166;
}
.bg-primary-color{
background-color: #db4166;
}
.bg-primary-color-hover:hover{
background-color: #db4166;
}
.color-gradient{
background: linear-gradient(to right, #db4166 ,#c174f2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.bg-gradient{
background: linear-gradient(to right, #db4166,#c174f2);
}
.btn:hover{
background-color: #ef5176;
}
.inner-header{
background: url(../images/inner-header.jpg) fixed 100% no-repeat;
background-size: cover;
height: 350px;
}
.inner-header .overlay{
background-color: rgba(0,0,0,0.4);
padding-top:220px;
height: 100%;
}
.breadcrumb {
background-color: transparent;
padding-right: 0;
}
.breadcrumb-item{
font-size: 17px;
float: right;
}
.breadcrumb-item a{
color: white;
}
.breadcrumb-item.active{
color: white;
}
.overlay{
background-color: rgba(0,0,0,0.6);
height: 100%;
}
.overlay-white{
background-color: rgba(255,255,255,0.8);
height: 100%;
padding: 80px 0px;
}
.image{
width: 100%;
text-align: center;
overflow: hidden;
}
.image img{
max-width: 100%;
height: auto;
transition: all 0.6s ease-in-out;
}
.warning{
color: red;
}
.form-control.error{
border-color: red !important;
}
.footer-content .warning{
color: white;
}
.footer-content .form-control.error{
background-color: rgba(231, 76, 60,0.5);
}
/*************** Common Classes ****************/
/*************** Header ****************/
.top-header{
padding: 5px 0;
border-bottom: solid 1px #f5f5f5;
}
.top-header ul.info li{
display: inline;
margin-left: 15px;
font-size: 14px;
color: #666;
}
.top-header ul.info li i{
margin-left: 5px;
}
.top-header ul.social li{
display: inline;
margin-left: 8px;
font-size: 14px;
}
.top-header ul.social li a{
color: #666;
}
.top-header ul.social li a i{
transition: all 0.4s ease-in-out;
}
.top-header ul.social li a:hover{
color: #db4166;
}
.top-header ul.social li a:hover i{
transform: translateY(-5px);
}
.menu{
position: absolute;
right: 0;
left: 0;
z-index: 5;
background-color: white;
}
.menu .nav-link{
color: #555;
font-size: 16px;
margin-left: 10px;
transition: all 0.5s ease-in-out;
}
.menu .active .nav-link{
color: #db4166;
}
.menu .nav-link:hover{
color: #db4166;
}
.navbar-toggler i{
font-size: 40px;
}
#logo{
max-height: 50px;
transition: all 0.5s ease-in-out;
}
.scroll{
position: fixed;
background-color: #002147;
}
.scroll #logo{
max-height: 45px;
}
.scroll .nav-link{
font-size: 15px;
margin-left: 8px;
}
/*************** Header ****************/
/*************** Index ****************/
/** Slider **/
.slider .carousel-inner{
max-height: 700px;
overflow: hidden;
}
.slider .carousel-inner img{
max-height: 100%;
max-width: 100%;
background-color: white;
opacity: 0.8;
}
.slider .carousel-inner .carousel-item:nth-child(odd) .carousel-caption{
right: 50%;
}
.slider .carousel-inner .carousel-item:nth-child(even) .carousel-caption{
right: 10%;
}
.slider .carousel-inner .carousel-caption{
top: 20%;
text-align: right;
width: 40%;
}
.slider .carousel-inner .carousel-caption h2{
font-size: 30px;
}
.slider .carousel-inner .carousel-caption p{
max-height: 70px;
overflow: hidden;
}
/* Animation */
@keyframes scale {
0% {
transform: scale(1,1);
}
100% {
transform: scale(1.3,1.3);
}
}
.slider .carousel-item img {
animation: 20s ease-out 0s 1 scale;
}
/* Animation */
/** Slider **/
/** About **/
.about{
min-height: 480px;
background: url(../images/bg1.jpg)no-repeat 53% 21%;
}
.about .image{
position: absolute;
top: 100%;
width: 40%;
max-height: 500px;
}
.about .image img{
border: solid 15px white;
}
.about .txt{
width: 50%;
padding-right: 20px;
position: relative;
}
.about .txt p{
max-height: 160px;
overflow: hidden;
color: #666;
line-height: 27px;
}
.about .txt a {
font-size: 18px;
}
.about .txt a:after{
content: "\f100";
font-family: FontAwesome;
margin-right: 10px;
}
/** About **/
/** Services **/
.services{
background: url(../images/bg4.jpg) no-repeat 50% -145%;
background-size: contain;
}
.services .image{
width: 35%;
height: 680px;
}
.services .content{
width: 65%;
padding: 50px 130px 0 20px;
}
.services .content ul li{
margin-bottom: 25px;
float: right;
width: 50%;
}
.services .content ul li i{
font-size: 35px;
float: right;
width: 10%;
color: #db4166;
transition: all 0.4s ease-in-out;
}
.services .content ul li:hover i{
transform: translateY(10px);
}
.services .content ul li .txt{
float: right;
width: 85%;
padding-right: 10px;
}
.services .content ul li .txt p{
max-height: 65px;
overflow: hidden;
font-size: 14px;
}
/** Services **/
/** Before-After **/
.before-after{
background: url(../images/bg1.jpg)no-repeat 53% 0;
}
.before-after .twentytwenty-container{
max-height: 350px;
border: solid 15px #f5f5f5;
}
.before-after .twentytwenty-container img{
width: 100%;
height: auto;
}
.before-after a:after{
content: "\f100";
font-family: FontAwesome;
margin-right: 10px;
}
/** Before-After **/
/** Blog **/
.blog{
background: url(../images/bg4.jpg) no-repeat center fixed;
background-size: contain;
}
.blog article{
overflow: hidden;
position: relative;
}
.blog .image{
height: 350px;
position: relative;
}
.blog .txt {
background: #f5f5f5 none repeat scroll 0 0;
bottom: -85px;
padding: 10px 15px;
position: absolute;
transition: all 300ms ease-in-out 0s;
width: 100%;
height: 190px;
}
.blog .txt a{
font-size: 17px;
display: block;
min-height: 50px;
}
.blog .txt p{
max-height: 65px;
overflow: hidden;
font-size: 14px;
}
.blog article:hover .txt {
bottom: 0;
}
.blog .txt ul{
display: flex;
justify-content: space-between;
font-size: 14px;
}
.blog .txt ul li i , .blog .txt ul li span{
color: #555;
}
/** Blog **/
/** Contact **/
.map iframe{
width: 100%;
height: 480px;
margin-bottom: -5px;
}
.contact .content{
padding: 70px 50px 35px;
}
.contact .content ul li{
margin-bottom: 25px;
min-height: 60px;
}
.contact .content ul li .icon{
float: right;
width: 60px;
height: 60px;
background-color: white;
font-size: 27px;
padding-top: 10px;
color: #db4166;
}
.contact .content ul li .txt{
float: right;
width: 85%;
padding-right: 20px;
padding-top: 15px;
}
.contact .content ul li .txt p{
margin-bottom: 5px;
}
/** Contact **/
/*************** Index ****************/
/*************** Footer ****************/
.footer-content{
background: url(../images/footer.png) no-repeat 50% 40%;
background-size: cover;
}
.footer-content .logo{
max-height: 130px;
}
.footer-content p{
padding-top: 60px;
}
/*************** Footer ****************/
/*************** Page ****************/
.page{
background: url(../images/bg1.jpg)no-repeat 50% -354% fixed;
}
.static-page ul{
list-style: disc;
}
.static-page h1{
font-size: 32px;
margin-top: 20px;
}
.static-page h2{
font-size: 28px;
margin-top: 20px;
}
.static-page h3{
font-size: 25px;
margin-top: 20px;
}
.static-page h4{
font-size: 20px;
margin-top: 20px;
}
.static-page h5{
font-size: 17px;
margin-top: 20px;
}
.static-page h6{
font-size: 15px;
margin-top: 20px;
}
/*************** Page ****************/
/*************** About ****************/
.about.page .image{
position: relative;
}
.about.page .image img{
border: solid 15px #f5f5f5;
}
.about.page .txt{
width: 60%;
}
.about.page .txt p {
max-height: 100%;
}
/*************** About ****************/
/*************** Archive-Services ****************/
.archive-services .image{
max-height: 200px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
position: relative;
}
.archive-services .image .overlay {
position: absolute;
bottom: 100%;
left: 0;
right: 0;
background: linear-gradient(to right, rgba(219, 65, 102,0.2) ,rgba(193, 116, 242,0.2));
overflow: hidden;
width: 100%;
top: 0;
height: 100%;
-webkit-transition: .3s ease;
transition: .3s ease;
}
.archive-services article:hover .image .overlay {
height:0;
}
.archive-services .txt{
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
/*************** Archive-Services ****************/
/*************** Archive-Service ****************/
.archive-service .image{
width: 35%;
height: 150px;
position: relative;
}
.archive-service .image img{
height: 100%;
width: auto;
}
.archive-service .image .overlay {
position: absolute;
bottom: 100%;
left: 0;
right: 0;
background: linear-gradient(to right, rgba(219, 65, 102,0.2) ,rgba(193, 116, 242,0.2));
overflow: hidden;
width: 100%;
top: 0;
height: 100%;
-webkit-transition: .3s ease;
transition: .3s ease;
}
.archive-service article:hover .image .overlay {
height:0;
}
.archive-service .txt{
width: 65%;
padding-right: 10px;
height: 150px;
overflow: hidden;
}
.archive-service .txt p{
max-height: 67px;
overflow: hidden;
font-size: 15px;
}
/*************** Archive-Service ****************/
/*************** Single-Service ****************/
#owl-demo{
direction: ltr;
}
#owl-demo .item img{
display: block;
width: 100%;
height: auto;
}
.single-service #owl-demo .item{
max-height: 400px;
overflow: hidden;
}
/*************** Single-Service ****************/
/*************** Before-After ****************/
.before-after.page .twentytwenty-container {
height: 300px !important;
border: 0;
}
.before-after.page .txt{
height: 100px;
overflow: hidden;
}
.before-after.page .txt p{
font-size: 14px;
max-height: 65px;
overflow: hidden;
}
/* .before-after #owl-demo .item{
max-height: 500px;
overflow: hidden;
} */
/*************** Before-After ****************/
/*************** FAQ ****************/
.faq ul li{
border: solid 1px #f5f5f5;
padding: 20px 10px;
margin-bottom: 15px;
}
.faq ul li a[data-toggle]::before {
content:"\f067" ;
font-family: FontAwesome;
transition: all .25s ease-in-out;
margin-left: 5px;
color: #db4166;
font-size: 15px;
transition: all .25s ease-in-out;
float: right;
}
.faq ul li a[aria-expanded="true"]::before {
transform: rotate(45deg);
}
.faq ul li a:focus{
color: #db4166;
}
/*************** FAQ ****************/
/*************** Contact ****************/
.page .map iframe{
width: 100%;
height: 400px;
margin-bottom: -5px;
}
.contact.page .content{
padding: 0 50px 35px;
}
.contact.page .content ul li .icon{
background-color: #f5f5f5;
}
.form-control{
border: 0;
border-radius: 0;
border-bottom: solid 1px #ddd;
transition: all 0.4s ease-in-out;
padding-bottom: 15px;
background-color: transparent;
}
.form-control:focus{
border-color: #db4166;
background-color: transparent;
}
textarea{
height: 100px;
}
textarea:focus{
height: 150px;
}
/*************** Contact ****************/
/*************** Archive-Blog ****************/
/*************** Archive-Blog ****************/
/*************** Single-Blog ****************/
.single-blog article.main .image{
max-height: 320px;
}
.single-blog article.main ul.info{
list-style: none;
}
.single-blog article.main ul.info li{
display: inline;
margin-left: 30px;
}
.single-blog article.main ul.info li i{
margin-left: 3px;
color: #db4166;
}
.single-blog article.main ul{
list-style: disc;
}
.single-blog article.main h1{
font-size: 32px;
margin-top: 20px;
}
.single-blog article.main h2{
font-size: 28px;
margin-top: 20px;
}
.single-blog article.main h3{
font-size: 25px;
margin-top: 20px;
}
.single-blog article.main h4{
font-size: 20px;
margin-top: 20px;
}
.single-blog article.main h5{
font-size: 17px;
margin-top: 20px;
}
.single-blog article.main h6{
font-size: 15px;
margin-top: 20px;
}
.single-blog .related{
position: sticky;
top: 0;
}
.related article .image{
height: 230px;
}
.related article:hover .image img{
transform: scale(1.1) rotate(3deg);
}
.related article .txt{
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}
.related article .txt h5{
height: 45px;
overflow: hidden;
margin-bottom: 5px;
}
.related article .txt p{
font-size: 14px;
max-height: 125px;
overflow: hidden;
}
.related article .txt ul{
display: flex;
justify-content: space-between;
border-top: solid 1px #ddd;
padding: 12px 0 0;
font-size: 14px;
}
.related article .txt ul li i{
margin-left: 3px;
color: #db4166;
}
.all-comments .comment ul li{
margin-bottom: 20px;
}
.all-comments .comment ul li img{
width: 60px;
height: 60px;
border-radius: 50%;
float: right;
margin-left: 10px;
}
.all-comments .comment ul li .txt{
width: 85%;
float: right;
}
.reply-form form{
width: 70%;
}
/*************** Single-Blog ****************/
/************* Responsive *************/
@media(max-width: 1024px){
.navbar-toggler i {
font-size: 34px;
}
.inner-header {
background: url(../images/inner-header.jpg) fixed 76% -33% no-repeat;
}
.slider .carousel-inner {
max-height: 572px;
}
.about .image {
max-height: 435px;
top: 73%;
}
.services .content {
padding: 50px 55px 0 20px;
}
.services .content ul li{
min-height: 133px;
}
.blog .image {
height: 325px;
}
.contact .content ul li .txt {
width: 83%;
}
.related article .image{
height: 200px;
}
}
@media(max-width: 768px){
.slider .carousel-inner .carousel-caption{
width: 50%;
top: 30%;
}
.about .image {
top: 48%;
}
.services .image{
width: 0%;
display: none;
}
.services .content{
width: 100%;
}
.before-after .twentytwenty-container{
margin-bottom: 20px;
}
.conatct{
margin-bottom: -50px;
}
.map iframe{
height: 300px;;
}
.contact .content ul li .txt {
width: 80%;
}
.all-comments .comment ul li .txt {
width: 82%;
}
.reply-form form{
width: 100%;
}
}
@media(max-width: 640px){
.top-header ul.info , .top-header ul.social{
float: none !important;
text-align: center;
margin-bottom: 5px;
padding: 0;
}
.top-header ul.info li{
margin-right: 7px;
margin-right: 7px;
}
.top-header ul.social li{
margin-right: 5px;
margin-left: 5px;
}
.navbar-toggler i {
font-size: 30px;
}
.slider .carousel-inner .carousel-caption{
width: 80%;
top: 38%;
}
.slider .carousel-inner .carousel-item:nth-child(odd) .carousel-caption{
right: 10%;
}
.slider .carousel-inner .carousel-item:nth-child(even) .carousel-caption{
right: 10%;
}
.inner-header{
background: url(../images/inner-header.jpg) fixed 70% 19% no-repeat;
}
.about .image{
width: 100%;
position: relative;
margin-top: 30px;
}
.about .txt{
width: 100%;
}
.about.page .image{
width: 100%;
margin-bottom: 30px;
}
.about .image .txt , .about.page .txt{
width: 100%;
}
.footer-content .logo{
max-height: 90px;
}
.footer-content p{
margin-bottom: 0;
}
.footer-content p.last{
padding-top: 5px;
}
.page .map iframe{
height: 300px;
margin-bottom: 30px;
}
.contact.page .content{
padding: 20px;
}
.contact.page .form-group{
margin-bottom: 30px;
}
.single-blog .related{
margin-top: 40px;
}
}
@media(max-width: 480px){
.slider .carousel-inner .carousel-caption h2 {
font-size: 22px;
}
.slider .carousel-inner .carousel-caption .desc{
display: none;
}
.services .content ul li{
width: 100%;
min-height: 110px;
}
.contact{
margin-bottom: -50px;
}
}
@media(max-width: 360px){
.navbar-toggler i {
font-size: 25px;
}
.about .image {
max-height: 390px;
}
.contact .content ul li .txt {
width: 75%;
}
.before-after.page .twentytwenty-container {
height: 200px !important;
}
.all-comments .comment ul li .txt {
width: 77%;
}
}
/************* Responsive *************/ | 0.22627 | 0.058453 |
img {
max-width: 100% !important;
}
.height-textarea {
min-height: 200px !important;
}
.input-daterange .btn-outline-secondary {
border-color : #e4e6fc;
color: #495057;
}
button#date-search:hover, button#refresh:hover {
color: #000 !important;
background-color: #dbdfe3 !important;
}
.order.card {
border: 1px dashed #beb6b6;
}
.order.card .card-body {
padding-bottom: 0;
}
.order.card .card-footer {
padding: 0 25px 20px !important;
}
.small-textarea-height {
min-height: 100px !important;
}
.bg-maroon-light {
background-color: #feb406 !important;
color: #fff !important;
}
.profile-dashboard {
background: #009688;
color: #fff;
text-align: center;
font-style: italic;
padding: 5px;
padding-top: 15px;
border-radius: 4px 4px 0 0;
-webkit-border-radius: 4px 4px 0 0;
font-size: 16px;
font-weight: 300;
}
.profile-dashboard img {
width: 120px;
height: 120px;
border-radius: 50%;
-webkit-border-radius: 50%;
border: 3px solid #d2d6de;
padding: 3px;
}
.profile-dashboard h1 {
font-size: 16px;
font-weight: 300;
margin-top: 8px;
margin-bottom: 0px;
}
.profile-dashboard p {
font-size: 12px;
margin-bottom: 0px;
}
.card-profile {
text-align: center;
padding: 5px;
padding-top: 15px;
font-size: 16px;
}
.card-profile img {
width: 120px;
height: 120px;
border-radius: 50%;
-webkit-border-radius: 50%;
border:3px solid #d2d6de;
padding: 3px;
}
.card-profile h3 {
font-size: 18px;
font-weight: 300;
margin-top: 15px;
margin-bottom: 0px;
}
.card-profile p {
font-size: 12px;
margin-bottom: 0px;
}
.single-profile {
width: 50%;
float: left;
}
.profile-picture {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
float: left;
width: 120px;
height: 120px;
margin: -35px -5px 0 30px;
position: relative;
z-index: 1;
border:3px solid #d2d6de;
padding: 3px;
background: #fff;
}
.display-none {
display: none;
}
.display-block {
display: block;
}
.avatar-item {
width: 40px;
}
.select2.form-control.red-border {
border: 1px solid red !important;
border-color: red !important;
}
.no-padding{
padding: 0px !important;
padding-top: 5px !important;
}
.profile-desc {
display: block;
overflow: hidden;
}
.single-full-profile {
margin-bottom: 1rem;
overflow: hidden;
float: left;
width: 100%;
}
.single-full-profile p {
margin-bottom: 0px;
line-height: 20px
}
.profile-list-group-item {
padding: 3px 5px;
font-size: 14px;
}
.profile-list-group-item-addresss {
line-height: 14px;
padding-top: 7px;
}
.card-profile p {
line-height: 16px;
margin-bottom: 5px;
}
.image-width {
width: 120px !important;
}
.paymentheader {
font-size:16px;
color:#feb406
}
.report-print-button {
position: absolute;
right: 20px;
}
.main-sidebar .sidebar-menu li ul.dropdown-menu li a {
padding-left: 40px !important;
}
.main-sidebar .sidebar-menu li a i {
margin-right: 10px !important;
}
.setting-fieldset {
border: 1px solid #DBDEE0 !important;
padding: 15px !important;
margin: 0 0 25px 0 !important;
box-shadow: 0px 0px 0px 0px #000;
}
.setting-legend {
font-size: 1.1em !important;
font-weight: bold !important;
text-align: left !important;
width: auto;
color: #feb406;
padding: 5px 15px;
border: 1px solid #DBDEE0 !important;
margin: 0px;
}
.profile-widget.margin-hidden {
margin-top: 0px;
}
.profile-picture.center {
margin: 15px 0 0 120px;
}
.shop-edit-button {
position: relative;
}
.shop-edit-icon {
position: absolute;
top: 5px;
right: 5px;
}
.radius-none.list-group-item:first-child {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
.table-bordered {
border: 1px solid #E2E7EB;
}
.table-bordered > thead > tr > th {
border-bottom-width: 2px;
color: #1A2229;
font-weight: 300;
}
.table-bordered > tbody > tr > td {
color: #707070;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > td {
border-color: #E2E7EB;
font-size: 12px;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
border-color: #E2E7EB;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
border-color: #242A30;
background-color: #242A30;
}
.pagination > li > a,
.pagination > li > span {
border-color: #E2E7EB;
}
.table.table-bordered.product-style > thead > tr > th, .table.table-bordered.product-style > tbody > tr > td, .table.table-bordered.product-style > tfoot > tr > td {
font-size: 14px;
text-align: center;
}
.table.table-bordered.product-style > thead > tr > th {
background-color: #feb406;;
color: #fff;
font-weight: bold;
}
.table.table-bordered.product-style > thead > tr > th, .table.table-bordered.product-style > tbody > tr > td {
padding: 4px 8px !important;
line-height: 2.2;
}
.table.table-bordered.product-style > thead > tr > th > .form-control, .table.table-bordered.product-style > tbody > tr > td > .form-control {
text-align: center;
}
.main-sidebar .sidebar-menu li a i {
margin-right: 4px !important;
}
.main-sidebar .sidebar-menu li ul.dropdown-menu li a {
padding-left: 40px !important;
}
.pull-right {
float: right;
}
.small-text {
font-size: 14px;
}
.modal-header {
border-bottom: 1px solid #dee2e6 !important;
}
.invoice-col{
font-size: 16px;
float: right;
}
.purchase-table-font{
font-size: 16px !important;
}
.purchase-table-td td{
font-weight: bold !important;
}
.deleteBtn{
margin-top:3px!important;
}
.purchase-model {
display: none !important;
}
.model-dialog-purchase{
width:55% !important;
}
.single-profile-css{
margin-left: 15px !important;margin-top: 15px !important; width: 50% !important;height: 50% !important;
}
.crosser-css {
cursor:pointer!important;
}
.margin-3px{
margin-top:3px!important;
} | public/css/custom.css | img {
max-width: 100% !important;
}
.height-textarea {
min-height: 200px !important;
}
.input-daterange .btn-outline-secondary {
border-color : #e4e6fc;
color: #495057;
}
button#date-search:hover, button#refresh:hover {
color: #000 !important;
background-color: #dbdfe3 !important;
}
.order.card {
border: 1px dashed #beb6b6;
}
.order.card .card-body {
padding-bottom: 0;
}
.order.card .card-footer {
padding: 0 25px 20px !important;
}
.small-textarea-height {
min-height: 100px !important;
}
.bg-maroon-light {
background-color: #feb406 !important;
color: #fff !important;
}
.profile-dashboard {
background: #009688;
color: #fff;
text-align: center;
font-style: italic;
padding: 5px;
padding-top: 15px;
border-radius: 4px 4px 0 0;
-webkit-border-radius: 4px 4px 0 0;
font-size: 16px;
font-weight: 300;
}
.profile-dashboard img {
width: 120px;
height: 120px;
border-radius: 50%;
-webkit-border-radius: 50%;
border: 3px solid #d2d6de;
padding: 3px;
}
.profile-dashboard h1 {
font-size: 16px;
font-weight: 300;
margin-top: 8px;
margin-bottom: 0px;
}
.profile-dashboard p {
font-size: 12px;
margin-bottom: 0px;
}
.card-profile {
text-align: center;
padding: 5px;
padding-top: 15px;
font-size: 16px;
}
.card-profile img {
width: 120px;
height: 120px;
border-radius: 50%;
-webkit-border-radius: 50%;
border:3px solid #d2d6de;
padding: 3px;
}
.card-profile h3 {
font-size: 18px;
font-weight: 300;
margin-top: 15px;
margin-bottom: 0px;
}
.card-profile p {
font-size: 12px;
margin-bottom: 0px;
}
.single-profile {
width: 50%;
float: left;
}
.profile-picture {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
float: left;
width: 120px;
height: 120px;
margin: -35px -5px 0 30px;
position: relative;
z-index: 1;
border:3px solid #d2d6de;
padding: 3px;
background: #fff;
}
.display-none {
display: none;
}
.display-block {
display: block;
}
.avatar-item {
width: 40px;
}
.select2.form-control.red-border {
border: 1px solid red !important;
border-color: red !important;
}
.no-padding{
padding: 0px !important;
padding-top: 5px !important;
}
.profile-desc {
display: block;
overflow: hidden;
}
.single-full-profile {
margin-bottom: 1rem;
overflow: hidden;
float: left;
width: 100%;
}
.single-full-profile p {
margin-bottom: 0px;
line-height: 20px
}
.profile-list-group-item {
padding: 3px 5px;
font-size: 14px;
}
.profile-list-group-item-addresss {
line-height: 14px;
padding-top: 7px;
}
.card-profile p {
line-height: 16px;
margin-bottom: 5px;
}
.image-width {
width: 120px !important;
}
.paymentheader {
font-size:16px;
color:#feb406
}
.report-print-button {
position: absolute;
right: 20px;
}
.main-sidebar .sidebar-menu li ul.dropdown-menu li a {
padding-left: 40px !important;
}
.main-sidebar .sidebar-menu li a i {
margin-right: 10px !important;
}
.setting-fieldset {
border: 1px solid #DBDEE0 !important;
padding: 15px !important;
margin: 0 0 25px 0 !important;
box-shadow: 0px 0px 0px 0px #000;
}
.setting-legend {
font-size: 1.1em !important;
font-weight: bold !important;
text-align: left !important;
width: auto;
color: #feb406;
padding: 5px 15px;
border: 1px solid #DBDEE0 !important;
margin: 0px;
}
.profile-widget.margin-hidden {
margin-top: 0px;
}
.profile-picture.center {
margin: 15px 0 0 120px;
}
.shop-edit-button {
position: relative;
}
.shop-edit-icon {
position: absolute;
top: 5px;
right: 5px;
}
.radius-none.list-group-item:first-child {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
.table-bordered {
border: 1px solid #E2E7EB;
}
.table-bordered > thead > tr > th {
border-bottom-width: 2px;
color: #1A2229;
font-weight: 300;
}
.table-bordered > tbody > tr > td {
color: #707070;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > td {
border-color: #E2E7EB;
font-size: 12px;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
border-color: #E2E7EB;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
border-color: #242A30;
background-color: #242A30;
}
.pagination > li > a,
.pagination > li > span {
border-color: #E2E7EB;
}
.table.table-bordered.product-style > thead > tr > th, .table.table-bordered.product-style > tbody > tr > td, .table.table-bordered.product-style > tfoot > tr > td {
font-size: 14px;
text-align: center;
}
.table.table-bordered.product-style > thead > tr > th {
background-color: #feb406;;
color: #fff;
font-weight: bold;
}
.table.table-bordered.product-style > thead > tr > th, .table.table-bordered.product-style > tbody > tr > td {
padding: 4px 8px !important;
line-height: 2.2;
}
.table.table-bordered.product-style > thead > tr > th > .form-control, .table.table-bordered.product-style > tbody > tr > td > .form-control {
text-align: center;
}
.main-sidebar .sidebar-menu li a i {
margin-right: 4px !important;
}
.main-sidebar .sidebar-menu li ul.dropdown-menu li a {
padding-left: 40px !important;
}
.pull-right {
float: right;
}
.small-text {
font-size: 14px;
}
.modal-header {
border-bottom: 1px solid #dee2e6 !important;
}
.invoice-col{
font-size: 16px;
float: right;
}
.purchase-table-font{
font-size: 16px !important;
}
.purchase-table-td td{
font-weight: bold !important;
}
.deleteBtn{
margin-top:3px!important;
}
.purchase-model {
display: none !important;
}
.model-dialog-purchase{
width:55% !important;
}
.single-profile-css{
margin-left: 15px !important;margin-top: 15px !important; width: 50% !important;height: 50% !important;
}
.crosser-css {
cursor:pointer!important;
}
.margin-3px{
margin-top:3px!important;
} | 0.351868 | 0.142053 |
nav {
padding: 0.825rem 0;
}
#first-block {
text-align:justify;
padding:3.5em 0;
}
footer {
background:#fff;
padding:0.825em 0;
border-top: 1px solid #444;
}
/* sticky footer css */
html {
height: 100%;
}
body {
height: 100%;
}
.title{
margin-top: 10px;
margin-bottom: 10px;
}
.context{
margin-top: 10px;
margin-bottom: 10px;
text-align: justify;
}
.imgs{
margin-top: 70px;
}
.crumbs{
margin-top: 140px;
}
.crumbs ul li{
display: inline-block;
}
.crumbs ul li a {
display: block;
float: left;
height: 110px;
background: #3498db;
text-align: center;
padding: 30px 30px 50px 80px;
position: relative;
margin: 0 10px 0 0;
font-size: 20px;
text-decoration: none;
color: #fff;
}
.crumbs ul li a:after {
content: "";
border-top: 55px solid transparent;
border-bottom:55px solid transparent;
border-left: 55px solid #3498db;
position: absolute; right: -55px; top: 0;
z-index: 1;
}
.crumbs ul li a:before {
content: "";
border-top: 55px solid transparent;
border-bottom: 55px solid transparent;
border-left: 55px solid #fff;
position: absolute; left: 0; top: 0;
}
.crumbs ul li:first-child a {
border-top-left-radius: 10px; border-bottom-left-radius: 10px;
}
.crumbs ul li:first-child a:before {
display: none;
}
.crumbs ul li:last-child a {
padding-right: 80px;
padding-top: 40px;
border-top-right-radius: 10px; border-bottom-right-radius: 10px;
}
.crumbs ul li:last-child a:after {
display: none;
}
.crumbs ul li a:hover {
background: #fa5ba5;
}
.crumbs ul li a:hover:after {
border-left-color: #fa5ba5;
}
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
margin-right: 10px;
padding: 16px;
color: #d2d2d2;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}
/* Position the "next button" to the right */
.prev{
left: calc(((100% - 1140px)/ 2) * 0.60)
}
.next {
right: calc(((100% - 1140px)/ 2) * 0.60);
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(255,255,255,0.5);
}
.steps{
clear: both;
list-style: none;
padding-left: 2%;
}
.steps li{
margin: 1.5em 3.5em;
padding-top: 1em;
padding-left: 1em;
display: block;
position: relative;
counter-increment: inst;
}
.steps li::before{
content: counter(inst);
background: rgba(27, 200, 176, 0.5) /*rgba(255, 150, 0, 0.35)*/;
color: #fff;
font-size: 1em;
font-weight: 700;
font-style: italic;
text-shadow: 1px 1px rgba(255, 150, 0, 0.5);
border-radius: 0 0.675em 0.675em 0;
font-size: 1.5em;
text-align: center;
padding-top: 0;
padding-left: 2.25%;
left: -5%;
top: -0.65em;
height: 1.35em;
width: 1.35em;
position: absolute;
transition: all 0.2s ease-in-out;
z-index: -1;
}
.container{
background-image: url("../img/background.jpg");
background-size: cover;
}
.slide-container{
position: relative;
margin:0 auto;
padding:0 0.625rem;
}
.slide{
text-align: justify;
margin: 30px 40px;
min-height: 600px;
}
.with-sticky-footer {
display: table;
height: 100%;
table-layout: fixed;
width: 100%;
}
.sticky-footer {
display: table-row;
height: 1px;
}
.our-work-container {
display: block;
height: 100%;
position: relative;
}
.our-work-text {
background: #00283a none repeat scroll 0 0;
bottom: 0;
display: block;
left: 0;
opacity: 0;
padding: 1.25em;
position: absolute;
right: 0;
text-align: center;
transition: opacity 0.20s linear 0s;
-o-transition: opacityd 0.20s linear 0s;
-ms-transition: opacity 0.20s linear 0s;
-moz-transition: opacity 0.20s linear 0s;
-webkit-transition: opacity 0.20s linear 0s;
width: 100%;
}
.our-work-container:hover > .our-work-text {
opacity: 1;
}
.our-work-text h4 {
color: #fff;
font-size: 1em;
font-weight: 600;
}
.our-work-text p {
color: #fff;
font-size: 0.8em;
opacity: 0.7;
}
.carousel-blocks {
padding: 0 3rem;
}
/* Carousel Navigation*/
.owl-carousel .owl-dot span {
background: none;
border: 1px solid #fff;
border-radius: 20px;
height: 14px;
margin: 0 2px;
width: 14px;
filter: Alpha(Opacity=100);
opacity: 1;
}
.owl-carousel .owl-dot.active span, .owl-carousel .owl-dot:hover span {
background: #fff;
}
.owl-carousel .owl-nav div {
border: 0 none;
color: #C9C9C9 !important;
font-family: sli;
font-size: 30px;
height: auto;
line-height: 0;
width: auto;
}
.carousel-nav-white.owl-carousel .owl-nav div {
border: 0;
}
.carousel-main .owl-dots {
padding: 2rem 0;
}
/* Carousel */
.carousel-5-blocks {
padding: 0 3rem;
}
.carousel-5-blocks .owl-item {
padding: 0 0.625rem;
}
@media screen and (max-width: 768px) {
.right {
float:none;
}
} | css/template-style.css | nav {
padding: 0.825rem 0;
}
#first-block {
text-align:justify;
padding:3.5em 0;
}
footer {
background:#fff;
padding:0.825em 0;
border-top: 1px solid #444;
}
/* sticky footer css */
html {
height: 100%;
}
body {
height: 100%;
}
.title{
margin-top: 10px;
margin-bottom: 10px;
}
.context{
margin-top: 10px;
margin-bottom: 10px;
text-align: justify;
}
.imgs{
margin-top: 70px;
}
.crumbs{
margin-top: 140px;
}
.crumbs ul li{
display: inline-block;
}
.crumbs ul li a {
display: block;
float: left;
height: 110px;
background: #3498db;
text-align: center;
padding: 30px 30px 50px 80px;
position: relative;
margin: 0 10px 0 0;
font-size: 20px;
text-decoration: none;
color: #fff;
}
.crumbs ul li a:after {
content: "";
border-top: 55px solid transparent;
border-bottom:55px solid transparent;
border-left: 55px solid #3498db;
position: absolute; right: -55px; top: 0;
z-index: 1;
}
.crumbs ul li a:before {
content: "";
border-top: 55px solid transparent;
border-bottom: 55px solid transparent;
border-left: 55px solid #fff;
position: absolute; left: 0; top: 0;
}
.crumbs ul li:first-child a {
border-top-left-radius: 10px; border-bottom-left-radius: 10px;
}
.crumbs ul li:first-child a:before {
display: none;
}
.crumbs ul li:last-child a {
padding-right: 80px;
padding-top: 40px;
border-top-right-radius: 10px; border-bottom-right-radius: 10px;
}
.crumbs ul li:last-child a:after {
display: none;
}
.crumbs ul li a:hover {
background: #fa5ba5;
}
.crumbs ul li a:hover:after {
border-left-color: #fa5ba5;
}
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
margin-right: 10px;
padding: 16px;
color: #d2d2d2;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}
/* Position the "next button" to the right */
.prev{
left: calc(((100% - 1140px)/ 2) * 0.60)
}
.next {
right: calc(((100% - 1140px)/ 2) * 0.60);
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(255,255,255,0.5);
}
.steps{
clear: both;
list-style: none;
padding-left: 2%;
}
.steps li{
margin: 1.5em 3.5em;
padding-top: 1em;
padding-left: 1em;
display: block;
position: relative;
counter-increment: inst;
}
.steps li::before{
content: counter(inst);
background: rgba(27, 200, 176, 0.5) /*rgba(255, 150, 0, 0.35)*/;
color: #fff;
font-size: 1em;
font-weight: 700;
font-style: italic;
text-shadow: 1px 1px rgba(255, 150, 0, 0.5);
border-radius: 0 0.675em 0.675em 0;
font-size: 1.5em;
text-align: center;
padding-top: 0;
padding-left: 2.25%;
left: -5%;
top: -0.65em;
height: 1.35em;
width: 1.35em;
position: absolute;
transition: all 0.2s ease-in-out;
z-index: -1;
}
.container{
background-image: url("../img/background.jpg");
background-size: cover;
}
.slide-container{
position: relative;
margin:0 auto;
padding:0 0.625rem;
}
.slide{
text-align: justify;
margin: 30px 40px;
min-height: 600px;
}
.with-sticky-footer {
display: table;
height: 100%;
table-layout: fixed;
width: 100%;
}
.sticky-footer {
display: table-row;
height: 1px;
}
.our-work-container {
display: block;
height: 100%;
position: relative;
}
.our-work-text {
background: #00283a none repeat scroll 0 0;
bottom: 0;
display: block;
left: 0;
opacity: 0;
padding: 1.25em;
position: absolute;
right: 0;
text-align: center;
transition: opacity 0.20s linear 0s;
-o-transition: opacityd 0.20s linear 0s;
-ms-transition: opacity 0.20s linear 0s;
-moz-transition: opacity 0.20s linear 0s;
-webkit-transition: opacity 0.20s linear 0s;
width: 100%;
}
.our-work-container:hover > .our-work-text {
opacity: 1;
}
.our-work-text h4 {
color: #fff;
font-size: 1em;
font-weight: 600;
}
.our-work-text p {
color: #fff;
font-size: 0.8em;
opacity: 0.7;
}
.carousel-blocks {
padding: 0 3rem;
}
/* Carousel Navigation*/
.owl-carousel .owl-dot span {
background: none;
border: 1px solid #fff;
border-radius: 20px;
height: 14px;
margin: 0 2px;
width: 14px;
filter: Alpha(Opacity=100);
opacity: 1;
}
.owl-carousel .owl-dot.active span, .owl-carousel .owl-dot:hover span {
background: #fff;
}
.owl-carousel .owl-nav div {
border: 0 none;
color: #C9C9C9 !important;
font-family: sli;
font-size: 30px;
height: auto;
line-height: 0;
width: auto;
}
.carousel-nav-white.owl-carousel .owl-nav div {
border: 0;
}
.carousel-main .owl-dots {
padding: 2rem 0;
}
/* Carousel */
.carousel-5-blocks {
padding: 0 3rem;
}
.carousel-5-blocks .owl-item {
padding: 0 0.625rem;
}
@media screen and (max-width: 768px) {
.right {
float:none;
}
} | 0.307358 | 0.090816 |
* {
box-sizing: border-box;
font-family: "Roboto", sans-serif;
font-size: 11px;
}
body {
margin: 0px;
background: #f5f5f5;
}
.container {
display: flex;
align-items: flex-start;
}
a {
text-decoration: none;
color: inherit;
}
.wrapper {
display: flex;
}
input {
padding: 12px 10px;
display: block;
width: 100%;
margin: 0 0 10px;
border: 1.5px solid white;
color: #FFF;
background: 0;
}
input::placeholder {
color: #7c95dd;
}
button {
background: #FFF;
padding: 10px;
border: 0;
color: #414141;
outline: none;
cursor: pointer;
}
aside {
background: linear-gradient(30deg, #283c86, #3a5bbc 58%);
width: 45%;
height: 100vh;
min-width: 300px;
position: relative;
max-width: 500px;
z-index: 2;
}
aside #SC-form {
min-width: 250px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
aside #SC-form .logo {
width: 75px;
margin: 0 auto 50px;
}
aside #SC-form .logo svg {
width: 100%;
}
aside #SC-form .wrapper {
display: flex;
margin: 25px 0 0;
}
aside #SC-form .wrapper #get-all {
width: 100%;
margin: 0 5px 0 0;
}
aside #SC-form .wrapper #get-all:disabled {
background: #b7b7b7;
cursor: not-allowed;
}
aside #SC-form .wrapper #get-random:disabled {
background: #b7b7b7;
cursor: not-allowed;
}
aside #SC-form .wrapper #get-random:disabled svg {
fill: #686868 !important;
}
aside #SC-form .wrapper button {
transition: 0.3s ease;
}
aside #SC-form .wrapper button:hover {
color: #111;
}
aside #SC-form .wrapper button .icon {
width: 20px;
height: 20px;
}
aside #SC-form .wrapper button .icon svg {
width: 100%;
height: 100%;
fill: #686868;
}
aside #SC-form .wrapper button:hover svg {
fill: #111 !important;
}
main {
width: 100%;
height: 100vh;
}
main #SC-video {
padding: 20px;
background: rgba(34, 50, 97, 0.9);
color: white;
align-items: center;
position: relative;
box-shadow: 0 6px 25px -10px #111;
}
main #SC-video #SC-video-thumb {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(https://i.ytimg.com/vi/L1OZE8I3Fp8/maxresdefault.jpg);
background-size: cover;
z-index: -1;
}
main #SC-video #SC-video {
position: relative;
z-index: 1;
}
main #SC-video .preview {
position: relative;
}
main #SC-video .preview img {
width: 100px;
height: auto;
border-radius: 3px;
}
main #SC-video .video-info {
padding: 0 20px;
width: 100%;
}
main #SC-video .video-info .title a {
font-size: 15px;
}
main #SC-video .video-info .author {
margin: 5px 0;
}
main #SC-video .video-info .author a {
color: grey;
}
main #SC-video .video-info .author a:hover {
color: #676767;
}
main #SC-video .arrow {
width: 100px;
max-width: 40px;
height: 40px;
background: #384a7c;
border-radius: 50%;
padding: 10px;
display: none;
cursor: pointer;
}
main #SC-video .arrow svg {
width: 100%;
height: 100%;
fill: #FFF;
}
main .status-loading:before {
content: "";
position: absolute;
width: 100%;
height: 2px;
top: 0;
left: 0;
background: linear-gradient(90deg, #2446a5 50%, #3a5bbc);
animation: loading 1s ease infinite;
}
main #SC-status {
padding: 12px 20px;
color: white;
background: #223261;
width: 100%;
box-shadow: 0 -6px 25px -10px #111;
display: none;
position: fixed;
bottom: 0;
}
main #SC-results {
height: calc(100% - 136px);
overflow: auto;
padding: 40px;
}
main #SC-results .SC-comment {
background: #FFF;
border-radius: 3px;
padding: 10px 20px;
margin: 0 0 15px;
opacity: 0.9;
transition: 0.2s ease;
animation: slideUp 0.3s ease;
}
main #SC-results .SC-comment:hover {
opacity: 1;
}
main #SC-results .SC-comment .wrapper {
display: flex;
align-items: flex-start;
}
main #SC-results .SC-comment .wrapper .u-avater {
border-radius: 50%;
overflow: hidden;
height: 35px;
width: 35px;
min-width: 35px;
min-height: 35px;
}
main #SC-results .SC-comment .wrapper .u-avater img {
width: 100%;
height: 100%;
}
main #SC-results .SC-comment .wrapper .other-info {
padding: 0 20px;
width: 100%;
}
main #SC-results .SC-comment .wrapper .other-info .u-nick {
margin: 0 0 3px;
}
main #SC-results .SC-comment .wrapper .other-info .u-nick a {
color: grey;
font-size: 10px;
}
main #SC-results .SC-comment .wrapper .other-info .u-nick a:hover {
color: #676767;
}
main #SC-results .SC-comment .wrapper .other-info .u-comment {
font-size: 12px;
max-height: 200px;
overflow: auto;
width: 100%;
}
main #SC-results .SC-comment .wrapper .other-info .u-comment a {
color: #2793e6;
}
@media only screen and (max-width: 650px) {
.container {
display: block;
}
#SC-form {
position: inherit !important;
top: inherit !important;
left: inherit !important;
transform: inherit !important;
padding: 20px 0 30px;
margin: 0 auto;
width: 250px;
}
#SC-form .logo {
width: 35px !important;
margin: 0 auto 20px !important;
}
aside {
width: 100%;
min-width: 250px;
max-width: inherit;
height: inherit;
}
#SC-results {
padding: 30px 15px !important;
}
.SC-comment {
opacity: 1 !important;
}
#SC-video .video-info .title a {
font-size: 12px !important;
}
#SC-video .arrow {
display: block !important;
}
}
@keyframes slideUp {
0% {
transform: translateY(50px);
opacity: 0;
}
}
@keyframes loading {
0% {
background-position: 0 0;
}
100% {
background-position: 100px 100px;
}
} | src/scss/display.css | * {
box-sizing: border-box;
font-family: "Roboto", sans-serif;
font-size: 11px;
}
body {
margin: 0px;
background: #f5f5f5;
}
.container {
display: flex;
align-items: flex-start;
}
a {
text-decoration: none;
color: inherit;
}
.wrapper {
display: flex;
}
input {
padding: 12px 10px;
display: block;
width: 100%;
margin: 0 0 10px;
border: 1.5px solid white;
color: #FFF;
background: 0;
}
input::placeholder {
color: #7c95dd;
}
button {
background: #FFF;
padding: 10px;
border: 0;
color: #414141;
outline: none;
cursor: pointer;
}
aside {
background: linear-gradient(30deg, #283c86, #3a5bbc 58%);
width: 45%;
height: 100vh;
min-width: 300px;
position: relative;
max-width: 500px;
z-index: 2;
}
aside #SC-form {
min-width: 250px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
aside #SC-form .logo {
width: 75px;
margin: 0 auto 50px;
}
aside #SC-form .logo svg {
width: 100%;
}
aside #SC-form .wrapper {
display: flex;
margin: 25px 0 0;
}
aside #SC-form .wrapper #get-all {
width: 100%;
margin: 0 5px 0 0;
}
aside #SC-form .wrapper #get-all:disabled {
background: #b7b7b7;
cursor: not-allowed;
}
aside #SC-form .wrapper #get-random:disabled {
background: #b7b7b7;
cursor: not-allowed;
}
aside #SC-form .wrapper #get-random:disabled svg {
fill: #686868 !important;
}
aside #SC-form .wrapper button {
transition: 0.3s ease;
}
aside #SC-form .wrapper button:hover {
color: #111;
}
aside #SC-form .wrapper button .icon {
width: 20px;
height: 20px;
}
aside #SC-form .wrapper button .icon svg {
width: 100%;
height: 100%;
fill: #686868;
}
aside #SC-form .wrapper button:hover svg {
fill: #111 !important;
}
main {
width: 100%;
height: 100vh;
}
main #SC-video {
padding: 20px;
background: rgba(34, 50, 97, 0.9);
color: white;
align-items: center;
position: relative;
box-shadow: 0 6px 25px -10px #111;
}
main #SC-video #SC-video-thumb {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(https://i.ytimg.com/vi/L1OZE8I3Fp8/maxresdefault.jpg);
background-size: cover;
z-index: -1;
}
main #SC-video #SC-video {
position: relative;
z-index: 1;
}
main #SC-video .preview {
position: relative;
}
main #SC-video .preview img {
width: 100px;
height: auto;
border-radius: 3px;
}
main #SC-video .video-info {
padding: 0 20px;
width: 100%;
}
main #SC-video .video-info .title a {
font-size: 15px;
}
main #SC-video .video-info .author {
margin: 5px 0;
}
main #SC-video .video-info .author a {
color: grey;
}
main #SC-video .video-info .author a:hover {
color: #676767;
}
main #SC-video .arrow {
width: 100px;
max-width: 40px;
height: 40px;
background: #384a7c;
border-radius: 50%;
padding: 10px;
display: none;
cursor: pointer;
}
main #SC-video .arrow svg {
width: 100%;
height: 100%;
fill: #FFF;
}
main .status-loading:before {
content: "";
position: absolute;
width: 100%;
height: 2px;
top: 0;
left: 0;
background: linear-gradient(90deg, #2446a5 50%, #3a5bbc);
animation: loading 1s ease infinite;
}
main #SC-status {
padding: 12px 20px;
color: white;
background: #223261;
width: 100%;
box-shadow: 0 -6px 25px -10px #111;
display: none;
position: fixed;
bottom: 0;
}
main #SC-results {
height: calc(100% - 136px);
overflow: auto;
padding: 40px;
}
main #SC-results .SC-comment {
background: #FFF;
border-radius: 3px;
padding: 10px 20px;
margin: 0 0 15px;
opacity: 0.9;
transition: 0.2s ease;
animation: slideUp 0.3s ease;
}
main #SC-results .SC-comment:hover {
opacity: 1;
}
main #SC-results .SC-comment .wrapper {
display: flex;
align-items: flex-start;
}
main #SC-results .SC-comment .wrapper .u-avater {
border-radius: 50%;
overflow: hidden;
height: 35px;
width: 35px;
min-width: 35px;
min-height: 35px;
}
main #SC-results .SC-comment .wrapper .u-avater img {
width: 100%;
height: 100%;
}
main #SC-results .SC-comment .wrapper .other-info {
padding: 0 20px;
width: 100%;
}
main #SC-results .SC-comment .wrapper .other-info .u-nick {
margin: 0 0 3px;
}
main #SC-results .SC-comment .wrapper .other-info .u-nick a {
color: grey;
font-size: 10px;
}
main #SC-results .SC-comment .wrapper .other-info .u-nick a:hover {
color: #676767;
}
main #SC-results .SC-comment .wrapper .other-info .u-comment {
font-size: 12px;
max-height: 200px;
overflow: auto;
width: 100%;
}
main #SC-results .SC-comment .wrapper .other-info .u-comment a {
color: #2793e6;
}
@media only screen and (max-width: 650px) {
.container {
display: block;
}
#SC-form {
position: inherit !important;
top: inherit !important;
left: inherit !important;
transform: inherit !important;
padding: 20px 0 30px;
margin: 0 auto;
width: 250px;
}
#SC-form .logo {
width: 35px !important;
margin: 0 auto 20px !important;
}
aside {
width: 100%;
min-width: 250px;
max-width: inherit;
height: inherit;
}
#SC-results {
padding: 30px 15px !important;
}
.SC-comment {
opacity: 1 !important;
}
#SC-video .video-info .title a {
font-size: 12px !important;
}
#SC-video .arrow {
display: block !important;
}
}
@keyframes slideUp {
0% {
transform: translateY(50px);
opacity: 0;
}
}
@keyframes loading {
0% {
background-position: 0 0;
}
100% {
background-position: 100px 100px;
}
} | 0.376623 | 0.11282 |
body {
text-align: center;
width: 95vw;
background-color: #e06377;
color: #f9d5e5;
font-family: '<NAME>', cursive;
}
button {
outline: none;
background-color: #c83349;
color: #f9d5e5;
font-family: 'Courgette', cursive;
border: 3px solid #f9d5e5;
font-size: 20px;
padding: 8px;
margin: 5px;
border-radius: 20px;
}
canvas {
border: 10px solid #f9d5e5;
}
header {
font-family: 'Courgette', cursive;
font-size: 30px;
margin: 10px;
}
.fbconsole {
border: 5px solid #c83349;
border-radius: 40px;
padding: 10px;
margin: 10px;
font-size: 20px;
display: none;
}
#title, #creator {
outline: none;
background-color: transparent;
border: 5px solid #f9d5e5;
padding: 5px;
margin: 5px;
text-align: center;
color: white;
font-size: 20px;
font-family: 'Courgette', cursive;
}
#selected-col {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: red;
}
#size {
margin: 10px;
outline: none;
-webkit-appearance: none;
width: 40vw;
height: 10px;
background-color: #f9d5e5;
}
#size::-webkit-slider-thumb {
-webkit-appearance: none;
cursor: pointer;
height: 50px;
width: 50px;
background-color: #c83349;
border-radius: 50%;
padding: 5px;
border: 5px double #f9d5e5;
}
#size::-webkit-slider-thumb::after {
content: "But you already know that";
}
.sketch {
display: block;
}
input[type="color"] {
-webkit-appearance: none;
border: none;
width: 32px;
height: 32px;
border: 5px solid #f9d5e5;
margin: 5px;
}
input[type="color"]::-webkit-color-swatch-wrapper {
padding: 0;
}
input[type="color"]::-webkit-color-swatch {
border: none;
}
.oneimage {
border: 5px solid #f9d5e5;
margin: 20px;
padding: 10px;
border-radius: 40px;
}
.painter, .imgtitle {
font-family: 'Courgette', cursive;
font-size: 25px;
margin: 10px;
}
.loadedimg {
height: 250px;
border: 5px double #c83349;
border-radius: 20px;
}
.love {
font-family: 'Courgette', cursive;
font-size: 20px;
}
a {
text-decoration: none;
color: inherit;
}
.love i {
color: red;
animation: pound 1s infinite;
}
@keyframes pound {
0% {
transform: scale(1.0);
}
50% {
transform: scale(1.5);
}
100% {
transform: scale(1.0);
}
}
#snackbar {
visibility: hidden;
font-family: 'Courgette', cursive;
background-color: #c83349;
color: #f9d5e5;
width: 100px;
padding: 8px;
position: fixed;
left: 40%;
bottom: 0px;
z-index: 2;
border-radius: 10px;
}
#snackbar.show {
visibility: visible;
animation: fadeinandout 3s linear;
}
@keyframes fadeinandout {
0% {
opacity: 0;
bottom: 0px;
}
25% {
opacity: 1;
bottom: 100px;
}
75% {
opacity: 1;
bottom: 100px;
}
100% {
opacity: 0;
bottom: 0px;
}
}
#filterlist {
background-color: #c83349;
color: #f9d5e5;
font-size: 20px;
padding: 5px;
outline: none;
border: 5px solid #f9d5e5;
font-family: 'Courgette', cursive;
}
#nooflikes {
font-family: 'Courgette', cursive;
} | style.css | body {
text-align: center;
width: 95vw;
background-color: #e06377;
color: #f9d5e5;
font-family: '<NAME>', cursive;
}
button {
outline: none;
background-color: #c83349;
color: #f9d5e5;
font-family: 'Courgette', cursive;
border: 3px solid #f9d5e5;
font-size: 20px;
padding: 8px;
margin: 5px;
border-radius: 20px;
}
canvas {
border: 10px solid #f9d5e5;
}
header {
font-family: 'Courgette', cursive;
font-size: 30px;
margin: 10px;
}
.fbconsole {
border: 5px solid #c83349;
border-radius: 40px;
padding: 10px;
margin: 10px;
font-size: 20px;
display: none;
}
#title, #creator {
outline: none;
background-color: transparent;
border: 5px solid #f9d5e5;
padding: 5px;
margin: 5px;
text-align: center;
color: white;
font-size: 20px;
font-family: 'Courgette', cursive;
}
#selected-col {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: red;
}
#size {
margin: 10px;
outline: none;
-webkit-appearance: none;
width: 40vw;
height: 10px;
background-color: #f9d5e5;
}
#size::-webkit-slider-thumb {
-webkit-appearance: none;
cursor: pointer;
height: 50px;
width: 50px;
background-color: #c83349;
border-radius: 50%;
padding: 5px;
border: 5px double #f9d5e5;
}
#size::-webkit-slider-thumb::after {
content: "But you already know that";
}
.sketch {
display: block;
}
input[type="color"] {
-webkit-appearance: none;
border: none;
width: 32px;
height: 32px;
border: 5px solid #f9d5e5;
margin: 5px;
}
input[type="color"]::-webkit-color-swatch-wrapper {
padding: 0;
}
input[type="color"]::-webkit-color-swatch {
border: none;
}
.oneimage {
border: 5px solid #f9d5e5;
margin: 20px;
padding: 10px;
border-radius: 40px;
}
.painter, .imgtitle {
font-family: 'Courgette', cursive;
font-size: 25px;
margin: 10px;
}
.loadedimg {
height: 250px;
border: 5px double #c83349;
border-radius: 20px;
}
.love {
font-family: 'Courgette', cursive;
font-size: 20px;
}
a {
text-decoration: none;
color: inherit;
}
.love i {
color: red;
animation: pound 1s infinite;
}
@keyframes pound {
0% {
transform: scale(1.0);
}
50% {
transform: scale(1.5);
}
100% {
transform: scale(1.0);
}
}
#snackbar {
visibility: hidden;
font-family: 'Courgette', cursive;
background-color: #c83349;
color: #f9d5e5;
width: 100px;
padding: 8px;
position: fixed;
left: 40%;
bottom: 0px;
z-index: 2;
border-radius: 10px;
}
#snackbar.show {
visibility: visible;
animation: fadeinandout 3s linear;
}
@keyframes fadeinandout {
0% {
opacity: 0;
bottom: 0px;
}
25% {
opacity: 1;
bottom: 100px;
}
75% {
opacity: 1;
bottom: 100px;
}
100% {
opacity: 0;
bottom: 0px;
}
}
#filterlist {
background-color: #c83349;
color: #f9d5e5;
font-size: 20px;
padding: 5px;
outline: none;
border: 5px solid #f9d5e5;
font-family: 'Courgette', cursive;
}
#nooflikes {
font-family: 'Courgette', cursive;
} | 0.25842 | 0.063715 |
@charset "UTF-8";
/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */
/**
* 1. Change the default font family in all browsers (opinionated).
* 2. Prevent adjustments of font size after orientation changes in IE and iOS.
*/
html {
font-family: sans-serif;
/* 1 */
-ms-text-size-adjust: 100%;
/* 2 */
-webkit-text-size-adjust: 100%;
/* 2 */
}
/**
* Remove the margin in all browsers (opinionated).
*/
body {
margin: 0;
}
/* HTML5 display definitions
========================================================================== */
/**
* Add the correct display in IE 9-.
* 1. Add the correct display in Edge, IE, and Firefox.
* 2. Add the correct display in IE.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
/* 1 */
display: block;
}
/**
* Add the correct display in IE 9-.
*/
audio,
canvas,
progress,
video {
display: inline-block;
}
/**
* Add the correct display in iOS 4-7.
*/
audio:not([controls]) {
display: none;
height: 0;
}
/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
vertical-align: baseline;
}
/**
* Add the correct display in IE 10-.
* 1. Add the correct display in IE.
*/
template,
[hidden] {
display: none;
}
/* Links
========================================================================== */
/**
* Remove the gray background on active links in IE 10.
*/
a {
background-color: transparent;
}
/**
* Remove the outline on focused links when they are also active or hovered
* in all browsers (opinionated).
*/
a:active,
a:hover {
outline-width: 0;
}
/* Text-level semantics
========================================================================== */
/**
* 1. Remove the bottom border in Firefox 39-.
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none;
/* 1 */
text-decoration: underline;
/* 2 */
text-decoration: underline dotted;
/* 2 */
}
/**
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
*/
b,
strong {
font-weight: inherit;
}
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder;
}
/**
* Add the correct font style in Android 4.3-.
*/
dfn {
font-style: italic;
}
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/**
* Add the correct background and color in IE 9-.
*/
mark {
background-color: #ff0;
color: #000;
}
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%;
}
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
/* Embedded content
========================================================================== */
/**
* Remove the border on images inside links in IE 10-.
*/
img {
border-style: none;
}
/**
* Hide the overflow in IE.
*/
svg:not(:root) {
overflow: hidden;
}
/* Grouping content
========================================================================== */
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */
}
/**
* Add the correct margin in IE 8.
*/
figure {
margin: 1em 40px;
}
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
box-sizing: content-box;
/* 1 */
height: 0;
/* 1 */
overflow: visible;
/* 2 */
}
/* Forms
========================================================================== */
/**
* Change font properties to `inherit` in all browsers (opinionated).
*/
button,
input,
select,
textarea {
font: inherit;
}
/**
* Restore the font weight unset by the previous rule.
*/
optgroup {
font-weight: bold;
}
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
* 2. Show the overflow in Edge, Firefox, and IE.
*/
button,
input,
select {
/* 2 */
overflow: visible;
}
/**
* Remove the margin in Safari.
* 1. Remove the margin in Firefox and Safari.
*/
button,
input,
select,
textarea {
/* 1 */
margin: 0;
}
/**
* Remove the inheritence of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritence of text transform in Firefox.
*/
button,
select {
/* 1 */
text-transform: none;
}
/**
* Change the cursor in all browsers (opinionated).
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
cursor: pointer;
}
/**
* Restore the default cursor to disabled elements unset by the previous rule.
*/
[disabled] {
cursor: default;
}
/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
* controls in Android 4.
* 2. Correct the inability to style clickable types in iOS.
*/
button,
html [type='button'],
[type='reset'],
[type='submit'] {
-webkit-appearance: button;
/* 2 */
}
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
input:-moz-focusring {
outline: 1px dotted ButtonText;
}
/**
* Change the border, margin, and padding in all browsers (opinionated).
*/
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/
legend {
box-sizing: border-box;
/* 1 */
color: inherit;
/* 2 */
display: table;
/* 1 */
max-width: 100%;
/* 1 */
padding: 0;
/* 3 */
white-space: normal;
/* 1 */
}
/**
* Remove the default vertical scrollbar in IE.
*/
textarea {
overflow: auto;
}
/**
* 1. Add the correct box sizing in IE 10-.
* 2. Remove the padding in IE 10-.
*/
[type='checkbox'],
[type='radio'] {
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */
}
/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
height: auto;
}
/**
* Correct the odd appearance of search inputs in Chrome and Safari.
*/
[type='search'] {
-webkit-appearance: textfield;
}
/**
* Remove the inner padding and cancel buttons in Chrome on OS X and
* Safari on OS X.
*/
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
-webkit-appearance: none;
}
html {
color: #4d4d4d;
font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
font-size: 16px;
line-height: 1.8;
}
html,
body {
height: 100%;
margin: 0;
}
a {
color: #0066ff;
text-decoration: none;
}
a:hover {
color: #0047b2;
text-decoration: underline;
}
button:focus {
outline: none;
}
.main {
display: flex;
flex-direction: column;
height: 100%;
}
.page-header {
margin-bottom: 40px;
}
.header {
top: 0;
left: 0;
z-index: 20;
position: fixed;
padding: 0 10px;
display: grid;
grid-template-columns: 1fr 3fr 1fr;
grid-template-rows: 40px;
width: 100%;
height: 40px;
color: #ffffff;
box-sizing: border-box;
background-color: #0f396e;
}
.header .logo {
padding: 9px 0;
height: 30px;
}
.header .page-title {
padding: 5px 0;
height: 30px;
text-align: center;
}
.header .site-navigations {
padding: 5px 0;
height: 30px;
text-align: right;
}
.site-tree {
transition: visibility 0.3s, opacity 0.3s;
visibility: hidden;
opacity: 0;
position: fixed;
background-color: rgba(0, 0, 0, 0.1);
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
justify-items: center;
align-items: center;
z-index: 30;
user-select: none;
}
.site-tree ul {
list-style: none;
}
.site-tree > ul {
padding: 30px;
background-color: #ffffff;
margin: 0 auto;
display: inline-flex;
flex-direction: column;
width: 600px;
height: 80vh;
overflow: scroll;
}
.site-tree li > ul {
padding-left: 10px;
}
/* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript+git+json+markdown+jsx+scss+yaml&plugins=line-numbers */
/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author <NAME>
*/
code[class*='language-'],
pre[class*='language-'] {
color: black;
background: none;
text-shadow: 0 1px white;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
tab-size: 4;
-webkit-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
pre[class*='language-']::selection,
pre[class*='language-'] ::selection,
code[class*='language-']::selection,
code[class*='language-'] ::selection {
text-shadow: none;
background: #b3d4fc;
}
@media print {
code[class*='language-'],
pre[class*='language-'] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*='language-'] {
padding: 1em;
margin: 0.5em 0;
overflow: auto;
}
:not(pre) > code[class*='language-'],
pre[class*='language-'] {
background: #f5f2f0;
}
/* Inline code */
:not(pre) > code[class*='language-'] {
padding: 0.1em;
border-radius: 0.3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #999;
}
.namespace {
opacity: 0.7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #a67f59;
background: rgba(255, 255, 255, 0.5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
}
.token.function {
color: #dd4a68;
}
.token.regex,
.token.important,
.token.variable {
color: #e90;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
pre.line-numbers {
position: relative;
padding-left: 3.8em;
counter-reset: linenumber;
}
pre.line-numbers > code {
position: relative;
}
.line-numbers .line-numbers-rows {
position: absolute;
pointer-events: none;
top: 0;
font-size: 100%;
left: -3.8em;
width: 3em;
/* works for line-numbers below 1000 lines */
letter-spacing: -1px;
border-right: 1px solid #999;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.line-numbers-rows > span {
pointer-events: none;
display: block;
counter-increment: linenumber;
}
.line-numbers-rows > span:before {
content: counter(linenumber);
color: #999;
display: block;
padding-right: 0.8em;
text-align: right;
}
.UISP-Md {
font-size: 1rem;
word-wrap: break-word;
overflow-wrap: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
.UISP-Md h1 {
font-size: 2em;
line-height: 1.2;
padding-bottom: 0.3em;
margin-top: 64px;
margin-bottom: 32px;
border-bottom: 2px solid #e6e6e6;
}
.UISP-Md h2 {
font-size: 1.5em;
line-height: 1.225;
padding-bottom: 0.3em;
margin-top: 32px;
margin-bottom: 16px;
border-bottom: 1px solid #eee;
}
.UISP-Md h3 {
font-size: 1.25em;
line-height: 1.43;
margin-top: 1em;
margin-bottom: 16px;
}
.UISP-Md h4 {
font-size: 1em;
line-height: 1.4;
margin-top: 1em;
margin-bottom: 16px;
}
.UISP-Md h5 {
font-size: 1em;
line-height: 1.4;
margin-top: 1em;
margin-bottom: 16px;
}
.UISP-Md h6 {
color: #777;
font-size: 1em;
line-height: 1.4;
margin-top: 1em;
margin-bottom: 16px;
}
.UISP-Md h1 a,
.UISP-Md h2 a,
.UISP-Md h3 a,
.UISP-Md h4 a,
.UISP-Md h5 a,
.UISP-Md h6 a {
font-size: 0.6em;
width: 20px;
height: 20px;
margin-left: -20px;
display: inline-block;
vertical-align: middle;
}
.UISP-Md h1 a i,
.UISP-Md h2 a i,
.UISP-Md h3 a i,
.UISP-Md h4 a i,
.UISP-Md h5 a i,
.UISP-Md h6 a i {
visibility: hidden;
color: #bbb;
}
.UISP-Md h1:hover a i,
.UISP-Md h2:hover a i,
.UISP-Md h3:hover a i,
.UISP-Md h4:hover a i,
.UISP-Md h5:hover a i,
.UISP-Md h6:hover a i {
visibility: visible;
}
.UISP-Md > *:first-child {
margin-top: 0;
}
.UISP-Md > *:last-child {
margin-bottom: 0;
}
.UISP-Md a {
color: #0088ff;
text-decoration: none;
}
.UISP-Md a:hover,
.UISP-Md a:active {
text-decoration: underline;
}
.UISP-Md img {
max-width: 100%;
}
.UISP-Md p {
margin: 1em 0;
}
.UISP-Md ul {
margin: 1em 0;
padding: 0 0 0 20px;
}
.UISP-Md ol {
margin: 1em 0;
padding: 0 0 0 30px;
}
.UISP-Md li {
margin: 0.5em 0;
}
.UISP-Md table {
border-collapse: collapse;
border-spacing: 0;
word-break: break-all;
margin: 20px 0;
}
.UISP-Md table th,
.UISP-Md table td {
padding: 0.3em 10px;
border: 1px solid #ccc;
}
.UISP-Md table th {
background: #f5f2f0;
}
.UISP-Md blockquote {
color: #6f6f6f;
padding: 0 15px;
margin: 2em 0;
border-left: 4px solid #ccc;
}
.UISP-Md pre {
line-height: 1.6;
margin: 2em 0;
}
.UISP-Md pre[class*='language-'] {
margin: 2em 0;
}
.UISP-Md code {
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', 'Lucida Console', monospace;
padding: 2px;
background: #f5f2f0;
}
.UISP-Md hr {
border: 0 none;
height: 4px;
padding: 0;
margin: 16px 0;
background-color: #f5f2f0;
}
@media (max-width: 639px) {
.UISP-Md {
line-height: 2;
}
.UISP-Md p {
margin: 1.6em 0;
}
}
.UISP-Dot {
overflow: auto;
display: block;
padding: 10px;
border: 1px solid #ccc;
margin: 2em 0;
background: #fff;
}
.UISP-Dot svg {
display: block;
}
.UISP-Dot g.node polygon {
fill: transparent;
}
.UISP-Dot g.node a:hover {
text-decoration: none;
}
.UISP-Dot g.node text {
font-family: Tahoma, Geneva, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo,
sans-serif;
font-size: 12px;
}
.UISP-Dot g.node text:first-of-type {
font-weight: bold;
}
.UISP-Dot g.node a text:first-of-type {
fill: #00bcd4;
}
.UISP-Dot g.node a:hover text:first-of-type {
text-decoration: underline;
}
.UISP-Screen {
display: inline-block;
padding: 20px;
}
.UISP-Screen svg.UISP-Screen__svgRoot {
display: block;
-webkit-transition: width 0.2s, height 0.2s;
transition: width 0.2s, height 0.2s;
}
.UISP-Screen--fit {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 0;
}
.UISP-Screen--fit svg.UISP-Screen__svgRoot {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: block;
width: 100%;
max-height: calc(100vh - 48px - 30px);
margin: auto;
padding: 0;
}
.UISP-Screen--highlight .Screen_Highlight {
display: inline;
}
.Screen_Highlight_Fill {
stroke: red;
stroke-width: 2;
fill: red;
fill-opacity: 0.25;
}
.Screen_Highlight_Outline {
stroke: #fff;
stroke-width: 2;
fill: none;
}
.Screen_Highlight_Label {
font-family: sans-serif;
font-weight: bold;
font-size: 36px;
stroke: #fff;
stroke-width: 1;
fill: red;
} | theme/standard/assets/css/style.css | @charset "UTF-8";
/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */
/**
* 1. Change the default font family in all browsers (opinionated).
* 2. Prevent adjustments of font size after orientation changes in IE and iOS.
*/
html {
font-family: sans-serif;
/* 1 */
-ms-text-size-adjust: 100%;
/* 2 */
-webkit-text-size-adjust: 100%;
/* 2 */
}
/**
* Remove the margin in all browsers (opinionated).
*/
body {
margin: 0;
}
/* HTML5 display definitions
========================================================================== */
/**
* Add the correct display in IE 9-.
* 1. Add the correct display in Edge, IE, and Firefox.
* 2. Add the correct display in IE.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
/* 1 */
display: block;
}
/**
* Add the correct display in IE 9-.
*/
audio,
canvas,
progress,
video {
display: inline-block;
}
/**
* Add the correct display in iOS 4-7.
*/
audio:not([controls]) {
display: none;
height: 0;
}
/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
vertical-align: baseline;
}
/**
* Add the correct display in IE 10-.
* 1. Add the correct display in IE.
*/
template,
[hidden] {
display: none;
}
/* Links
========================================================================== */
/**
* Remove the gray background on active links in IE 10.
*/
a {
background-color: transparent;
}
/**
* Remove the outline on focused links when they are also active or hovered
* in all browsers (opinionated).
*/
a:active,
a:hover {
outline-width: 0;
}
/* Text-level semantics
========================================================================== */
/**
* 1. Remove the bottom border in Firefox 39-.
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none;
/* 1 */
text-decoration: underline;
/* 2 */
text-decoration: underline dotted;
/* 2 */
}
/**
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
*/
b,
strong {
font-weight: inherit;
}
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder;
}
/**
* Add the correct font style in Android 4.3-.
*/
dfn {
font-style: italic;
}
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/**
* Add the correct background and color in IE 9-.
*/
mark {
background-color: #ff0;
color: #000;
}
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%;
}
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
/* Embedded content
========================================================================== */
/**
* Remove the border on images inside links in IE 10-.
*/
img {
border-style: none;
}
/**
* Hide the overflow in IE.
*/
svg:not(:root) {
overflow: hidden;
}
/* Grouping content
========================================================================== */
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */
}
/**
* Add the correct margin in IE 8.
*/
figure {
margin: 1em 40px;
}
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
box-sizing: content-box;
/* 1 */
height: 0;
/* 1 */
overflow: visible;
/* 2 */
}
/* Forms
========================================================================== */
/**
* Change font properties to `inherit` in all browsers (opinionated).
*/
button,
input,
select,
textarea {
font: inherit;
}
/**
* Restore the font weight unset by the previous rule.
*/
optgroup {
font-weight: bold;
}
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
* 2. Show the overflow in Edge, Firefox, and IE.
*/
button,
input,
select {
/* 2 */
overflow: visible;
}
/**
* Remove the margin in Safari.
* 1. Remove the margin in Firefox and Safari.
*/
button,
input,
select,
textarea {
/* 1 */
margin: 0;
}
/**
* Remove the inheritence of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritence of text transform in Firefox.
*/
button,
select {
/* 1 */
text-transform: none;
}
/**
* Change the cursor in all browsers (opinionated).
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
cursor: pointer;
}
/**
* Restore the default cursor to disabled elements unset by the previous rule.
*/
[disabled] {
cursor: default;
}
/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
* controls in Android 4.
* 2. Correct the inability to style clickable types in iOS.
*/
button,
html [type='button'],
[type='reset'],
[type='submit'] {
-webkit-appearance: button;
/* 2 */
}
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
input:-moz-focusring {
outline: 1px dotted ButtonText;
}
/**
* Change the border, margin, and padding in all browsers (opinionated).
*/
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/
legend {
box-sizing: border-box;
/* 1 */
color: inherit;
/* 2 */
display: table;
/* 1 */
max-width: 100%;
/* 1 */
padding: 0;
/* 3 */
white-space: normal;
/* 1 */
}
/**
* Remove the default vertical scrollbar in IE.
*/
textarea {
overflow: auto;
}
/**
* 1. Add the correct box sizing in IE 10-.
* 2. Remove the padding in IE 10-.
*/
[type='checkbox'],
[type='radio'] {
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */
}
/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
height: auto;
}
/**
* Correct the odd appearance of search inputs in Chrome and Safari.
*/
[type='search'] {
-webkit-appearance: textfield;
}
/**
* Remove the inner padding and cancel buttons in Chrome on OS X and
* Safari on OS X.
*/
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
-webkit-appearance: none;
}
html {
color: #4d4d4d;
font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
font-size: 16px;
line-height: 1.8;
}
html,
body {
height: 100%;
margin: 0;
}
a {
color: #0066ff;
text-decoration: none;
}
a:hover {
color: #0047b2;
text-decoration: underline;
}
button:focus {
outline: none;
}
.main {
display: flex;
flex-direction: column;
height: 100%;
}
.page-header {
margin-bottom: 40px;
}
.header {
top: 0;
left: 0;
z-index: 20;
position: fixed;
padding: 0 10px;
display: grid;
grid-template-columns: 1fr 3fr 1fr;
grid-template-rows: 40px;
width: 100%;
height: 40px;
color: #ffffff;
box-sizing: border-box;
background-color: #0f396e;
}
.header .logo {
padding: 9px 0;
height: 30px;
}
.header .page-title {
padding: 5px 0;
height: 30px;
text-align: center;
}
.header .site-navigations {
padding: 5px 0;
height: 30px;
text-align: right;
}
.site-tree {
transition: visibility 0.3s, opacity 0.3s;
visibility: hidden;
opacity: 0;
position: fixed;
background-color: rgba(0, 0, 0, 0.1);
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
justify-items: center;
align-items: center;
z-index: 30;
user-select: none;
}
.site-tree ul {
list-style: none;
}
.site-tree > ul {
padding: 30px;
background-color: #ffffff;
margin: 0 auto;
display: inline-flex;
flex-direction: column;
width: 600px;
height: 80vh;
overflow: scroll;
}
.site-tree li > ul {
padding-left: 10px;
}
/* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript+git+json+markdown+jsx+scss+yaml&plugins=line-numbers */
/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author <NAME>
*/
code[class*='language-'],
pre[class*='language-'] {
color: black;
background: none;
text-shadow: 0 1px white;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
tab-size: 4;
-webkit-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
pre[class*='language-']::selection,
pre[class*='language-'] ::selection,
code[class*='language-']::selection,
code[class*='language-'] ::selection {
text-shadow: none;
background: #b3d4fc;
}
@media print {
code[class*='language-'],
pre[class*='language-'] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*='language-'] {
padding: 1em;
margin: 0.5em 0;
overflow: auto;
}
:not(pre) > code[class*='language-'],
pre[class*='language-'] {
background: #f5f2f0;
}
/* Inline code */
:not(pre) > code[class*='language-'] {
padding: 0.1em;
border-radius: 0.3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #999;
}
.namespace {
opacity: 0.7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #a67f59;
background: rgba(255, 255, 255, 0.5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
}
.token.function {
color: #dd4a68;
}
.token.regex,
.token.important,
.token.variable {
color: #e90;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
pre.line-numbers {
position: relative;
padding-left: 3.8em;
counter-reset: linenumber;
}
pre.line-numbers > code {
position: relative;
}
.line-numbers .line-numbers-rows {
position: absolute;
pointer-events: none;
top: 0;
font-size: 100%;
left: -3.8em;
width: 3em;
/* works for line-numbers below 1000 lines */
letter-spacing: -1px;
border-right: 1px solid #999;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.line-numbers-rows > span {
pointer-events: none;
display: block;
counter-increment: linenumber;
}
.line-numbers-rows > span:before {
content: counter(linenumber);
color: #999;
display: block;
padding-right: 0.8em;
text-align: right;
}
.UISP-Md {
font-size: 1rem;
word-wrap: break-word;
overflow-wrap: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
.UISP-Md h1 {
font-size: 2em;
line-height: 1.2;
padding-bottom: 0.3em;
margin-top: 64px;
margin-bottom: 32px;
border-bottom: 2px solid #e6e6e6;
}
.UISP-Md h2 {
font-size: 1.5em;
line-height: 1.225;
padding-bottom: 0.3em;
margin-top: 32px;
margin-bottom: 16px;
border-bottom: 1px solid #eee;
}
.UISP-Md h3 {
font-size: 1.25em;
line-height: 1.43;
margin-top: 1em;
margin-bottom: 16px;
}
.UISP-Md h4 {
font-size: 1em;
line-height: 1.4;
margin-top: 1em;
margin-bottom: 16px;
}
.UISP-Md h5 {
font-size: 1em;
line-height: 1.4;
margin-top: 1em;
margin-bottom: 16px;
}
.UISP-Md h6 {
color: #777;
font-size: 1em;
line-height: 1.4;
margin-top: 1em;
margin-bottom: 16px;
}
.UISP-Md h1 a,
.UISP-Md h2 a,
.UISP-Md h3 a,
.UISP-Md h4 a,
.UISP-Md h5 a,
.UISP-Md h6 a {
font-size: 0.6em;
width: 20px;
height: 20px;
margin-left: -20px;
display: inline-block;
vertical-align: middle;
}
.UISP-Md h1 a i,
.UISP-Md h2 a i,
.UISP-Md h3 a i,
.UISP-Md h4 a i,
.UISP-Md h5 a i,
.UISP-Md h6 a i {
visibility: hidden;
color: #bbb;
}
.UISP-Md h1:hover a i,
.UISP-Md h2:hover a i,
.UISP-Md h3:hover a i,
.UISP-Md h4:hover a i,
.UISP-Md h5:hover a i,
.UISP-Md h6:hover a i {
visibility: visible;
}
.UISP-Md > *:first-child {
margin-top: 0;
}
.UISP-Md > *:last-child {
margin-bottom: 0;
}
.UISP-Md a {
color: #0088ff;
text-decoration: none;
}
.UISP-Md a:hover,
.UISP-Md a:active {
text-decoration: underline;
}
.UISP-Md img {
max-width: 100%;
}
.UISP-Md p {
margin: 1em 0;
}
.UISP-Md ul {
margin: 1em 0;
padding: 0 0 0 20px;
}
.UISP-Md ol {
margin: 1em 0;
padding: 0 0 0 30px;
}
.UISP-Md li {
margin: 0.5em 0;
}
.UISP-Md table {
border-collapse: collapse;
border-spacing: 0;
word-break: break-all;
margin: 20px 0;
}
.UISP-Md table th,
.UISP-Md table td {
padding: 0.3em 10px;
border: 1px solid #ccc;
}
.UISP-Md table th {
background: #f5f2f0;
}
.UISP-Md blockquote {
color: #6f6f6f;
padding: 0 15px;
margin: 2em 0;
border-left: 4px solid #ccc;
}
.UISP-Md pre {
line-height: 1.6;
margin: 2em 0;
}
.UISP-Md pre[class*='language-'] {
margin: 2em 0;
}
.UISP-Md code {
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', 'Lucida Console', monospace;
padding: 2px;
background: #f5f2f0;
}
.UISP-Md hr {
border: 0 none;
height: 4px;
padding: 0;
margin: 16px 0;
background-color: #f5f2f0;
}
@media (max-width: 639px) {
.UISP-Md {
line-height: 2;
}
.UISP-Md p {
margin: 1.6em 0;
}
}
.UISP-Dot {
overflow: auto;
display: block;
padding: 10px;
border: 1px solid #ccc;
margin: 2em 0;
background: #fff;
}
.UISP-Dot svg {
display: block;
}
.UISP-Dot g.node polygon {
fill: transparent;
}
.UISP-Dot g.node a:hover {
text-decoration: none;
}
.UISP-Dot g.node text {
font-family: Tahoma, Geneva, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo,
sans-serif;
font-size: 12px;
}
.UISP-Dot g.node text:first-of-type {
font-weight: bold;
}
.UISP-Dot g.node a text:first-of-type {
fill: #00bcd4;
}
.UISP-Dot g.node a:hover text:first-of-type {
text-decoration: underline;
}
.UISP-Screen {
display: inline-block;
padding: 20px;
}
.UISP-Screen svg.UISP-Screen__svgRoot {
display: block;
-webkit-transition: width 0.2s, height 0.2s;
transition: width 0.2s, height 0.2s;
}
.UISP-Screen--fit {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 0;
}
.UISP-Screen--fit svg.UISP-Screen__svgRoot {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: block;
width: 100%;
max-height: calc(100vh - 48px - 30px);
margin: auto;
padding: 0;
}
.UISP-Screen--highlight .Screen_Highlight {
display: inline;
}
.Screen_Highlight_Fill {
stroke: red;
stroke-width: 2;
fill: red;
fill-opacity: 0.25;
}
.Screen_Highlight_Outline {
stroke: #fff;
stroke-width: 2;
fill: none;
}
.Screen_Highlight_Label {
font-family: sans-serif;
font-weight: bold;
font-size: 36px;
stroke: #fff;
stroke-width: 1;
fill: red;
} | 0.6508 | 0.12408 |
@media print {
#B
{
display:none;
}
#C
{
display:none;
}
#A
{
width:100%;
}
#all {
border-left: 0px ;
border-right: 0px ;
height: 1%;
position: relative;
}
#wrapper {
width: 100%;
min-width: 1000px;
}
#header {
display:none;
}
}
/*@media screen {
#A
{
padding-top: 5px;
width: 100%;
float: left;
margin-right: -100%;
}
#A.nonreader{}
#A.reader
{
padding-top: 5px;
width: 100%;
float: left;
margin:0px;
}
#B
{
display:inline;
float: left;
width: 250px;
position: relative;
left: -250px;
}
#B.nonreader{}
#B.reader
{
display:none
}
#C
{
display:inline;
float: right;
margin-right: -250px;
width: 250px;
position: relative;
}
#C.nonreader{}
#C.reader
{
display:none;
}
#all
{
border-left: 250px solid #97DAF1;
border-right: 250px solid #97DAF1;
height: 1%;
position: relative;
}
#all.nonreader{}
#all.reader
{
border:0px;
height: 1%;
position: relative;
}
}*/
/*@media only screen and (max-device-width: 1024px) {
html *
{
font-size: 18pt !important;
font-family: Arial !important;
}
#A
{
padding-top: 5px;
width: 100%;
float: left;
margin-right:0px;
}
#A.nonreader{}
#A.reader
{
padding-top: 5px;
width: 100%;
float: left;
margin:0px;
}
#B
{
display: none;
}
#C
{
float: right;
margin-right: -250px;
width: 250px;
position: relative;
}
#C.nonreader{}
#C.reader
{
display:none;
}
#all {
border-left: 0px ;
border-right: -250px ;
height: 1%;
position: relative;
}
#all.nonreader{}
#all.reader
{
border:0px;
height: 1%;
position: relative;
}
#wrapper {
width: 100%;
min-width: 1000px;
}
}*/
/*html *
{
font-size: 18pt !important;
font-family: Arial !important;
}*/
/*@media only screen and (max-device-width: 600px) {
body
{
background:#527AB4;
font-size:120%;
}
#A
{
padding-top: 5px;
width: 100%;
float: none;
margin-right:0px;
}
#B
{
display:none;
}
#C
{
display:none;
}
#all {
border-left: 0px ;
border-right: 0px ;
height: 1%;
position: relative;
}
#wrapper {
width: 580px;
min-width: 550px;
}
}*/
.previousArticlesInCategories
{
font-size: 0.8em;
padding:1%;
}
li{
width:96%;
padding:1%;
}
li.spanrow{
width:95%;
padding:1%;
}
ul.double
{
-webkit-column-count: 2; /* Chrome, Safari, Opera */
-moz-column-count: 2; /* Firefox */
column-count: 2;
}
ul.triple
{
-webkit-column-count: 3; /* Chrome, Safari, Opera */
-moz-column-count: 3; /* Firefox */
column-count: 3;
}
.double li
{
float: none;
width:100%;
padding:1%;
}
.triple li
{
float: none;
width:100%;
padding:1%;
}
.screenshotthumb
{
max-width: 160px;
max-height: 160px;
overflow: hidden;
}
.triple li.anriss
{
margin-left:1%;
margin-bottom:1%;
border:10px;
background:#F6E4CC;
}
li.anriss
{
margin-left:1%;
margin-bottom:1%;
border:10px;
background:#F6f4eC;
}
.large
{
font-size:150%;
top:20px;
}
li.anriss a:hover
{
background: #527AB4;
}
.abstract
{
background:#F6E4CC;
padding:5px;
color:#555;
}
li.anriss:hover
{
background:#527AB4;
}
a:focus
{
outline: 0;
background:#97DAF1;
padding-bottom:0px;
}
div.accordion{
/* background:#F6f4eC;
*/ display:block;
float:none;
margin-right:1%;
margin-bottom:1%;
border:5px solid #F6f4eC;
margin-left: 3%;
width: 83%;
}
div.accordion a:link{
padding-left: 1%;
padding-right: 1%;
padding-top:5px;
padding-bottom:5px;
display:block;
margin-left: 3%;
width: 83%;
}
/*.link {
min-height: 200px; min-width: 200px;
border: 1px solid red;
}
*/
.linkdescription {
display: none;
padding-left:10px;
padding-right:10px;
padding-bottom:10px;
padding-top:0px;
}
pre {
padding: 0.1em 0.5em 0.3em 0.7em;
border-left: 11px solid #ccc;
margin: 1.7em 0 1.7em 0.3em;
/* white-space:pre-wrap;
overflow-x:hidden;
overflow-x:scroll;
*/ overflow: auto;
width: 96%;
min-width: 0;
background: #F6f4eC;
font-family: "Courier New", Courier, monospace, sans-serif;
text-align: left;
color: #111;
line-height: 1.3em;
font-size: 11px;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 2;
white-space: pre;
}
.imgleft
{
float:left;
margin-right:20px;
margin-bottom:10px;
margin-top:10px;
}
.imgright
{
float:right;
margin-left:20px;
margin-bottom:10px;
margin-top:10px;
}
.center
{
display:block;
margin-bottom:5px;
margin-top:10px;
margin-left: auto; margin-right: auto;
}
.center+span.imgdesc
{
display:block;
width:100%;
text-align: center;
font-size: 0.9em;
padding-bottom: 10px;
}
.formula
{
display:block;
margin-bottom:5px;
margin-top:10px;
margin-left: auto; margin-right: auto;
}
.plantuml
{
display:block;
margin-bottom:5px;
margin-top:10px;
margin-left: auto; margin-right: auto;
}
.imgright span.imgdesc
{
display:block;
width:100%;
text-align: center;
font-size: 0.9em;
}
#A a
{
color: #00D;
}
#A h1 a
{
color: #000;
}
/*
pre:hover
{
position: relative;
width: 150%;
z-index: 99;
}
*/
/*
pre code[class]:after
{
content: 'highlight: ' attr(class);
display: block; text-align: right;
font-size: smaller;
padding-top: 5px;
}
*/
.thumbnailcaption
{
text-align:center;
color: #000;
font-size: 0.8em;
/* overflow-wrap: normal;
overflow: hidden;
*/}
div.update{
padding: 5px;
background: #F6F4EC;
}
div.update ul{
font-size: 0.75em;
}
.footnoteref
{
/* background:#527AB4;
*/ font-size:75%;
vertical-align:top;
}
/*div.footnotes{
padding: 5px;
background: #F6F4EC;
}*/
div.footnote dl{
font-size: 0.75em;
}
#A div.footnote dt a
{
color: #000;
}
.collectionhref{
padding-top: 2px;
margin-bottom: -5px;
padding-right: 0px;
padding-left: 0px;
font-size: 0.72em;
text-align: right;
width:100%;
}
#nextPage{
width:100%;
text-align: center;
background:#F6f4eC;
padding-top: 0.5em;
padding-bottom: 0.5em;
}
#nextPage:hover
{
background:#527AB4;
}
#toc {
float:right;
margin-left:20px;
margin-right:20px;
margin-bottom:10px;
/* margin-top:10px;
*/ background:#F6f4eC;
padding-top: 0.5em;
padding-bottom: 0.5em;
padding-left: 1em;
padding-right: 1em;
/* position: fixed;
right: 0;
top: 0;
background-color:#FFF;
*/}
#toc #pages { display: none; }
#toc:hover #pages{
display: block;
width:100%;
}
div.page{
width:100%;
padding-top: 0.25em;
padding-bottom: 0.25em;
// padding-left: 0.5em;
// padding-right: 0.5em;
}
#pages * .page:hover
{
background:#527AB4;
} | css/style.css | @media print {
#B
{
display:none;
}
#C
{
display:none;
}
#A
{
width:100%;
}
#all {
border-left: 0px ;
border-right: 0px ;
height: 1%;
position: relative;
}
#wrapper {
width: 100%;
min-width: 1000px;
}
#header {
display:none;
}
}
/*@media screen {
#A
{
padding-top: 5px;
width: 100%;
float: left;
margin-right: -100%;
}
#A.nonreader{}
#A.reader
{
padding-top: 5px;
width: 100%;
float: left;
margin:0px;
}
#B
{
display:inline;
float: left;
width: 250px;
position: relative;
left: -250px;
}
#B.nonreader{}
#B.reader
{
display:none
}
#C
{
display:inline;
float: right;
margin-right: -250px;
width: 250px;
position: relative;
}
#C.nonreader{}
#C.reader
{
display:none;
}
#all
{
border-left: 250px solid #97DAF1;
border-right: 250px solid #97DAF1;
height: 1%;
position: relative;
}
#all.nonreader{}
#all.reader
{
border:0px;
height: 1%;
position: relative;
}
}*/
/*@media only screen and (max-device-width: 1024px) {
html *
{
font-size: 18pt !important;
font-family: Arial !important;
}
#A
{
padding-top: 5px;
width: 100%;
float: left;
margin-right:0px;
}
#A.nonreader{}
#A.reader
{
padding-top: 5px;
width: 100%;
float: left;
margin:0px;
}
#B
{
display: none;
}
#C
{
float: right;
margin-right: -250px;
width: 250px;
position: relative;
}
#C.nonreader{}
#C.reader
{
display:none;
}
#all {
border-left: 0px ;
border-right: -250px ;
height: 1%;
position: relative;
}
#all.nonreader{}
#all.reader
{
border:0px;
height: 1%;
position: relative;
}
#wrapper {
width: 100%;
min-width: 1000px;
}
}*/
/*html *
{
font-size: 18pt !important;
font-family: Arial !important;
}*/
/*@media only screen and (max-device-width: 600px) {
body
{
background:#527AB4;
font-size:120%;
}
#A
{
padding-top: 5px;
width: 100%;
float: none;
margin-right:0px;
}
#B
{
display:none;
}
#C
{
display:none;
}
#all {
border-left: 0px ;
border-right: 0px ;
height: 1%;
position: relative;
}
#wrapper {
width: 580px;
min-width: 550px;
}
}*/
.previousArticlesInCategories
{
font-size: 0.8em;
padding:1%;
}
li{
width:96%;
padding:1%;
}
li.spanrow{
width:95%;
padding:1%;
}
ul.double
{
-webkit-column-count: 2; /* Chrome, Safari, Opera */
-moz-column-count: 2; /* Firefox */
column-count: 2;
}
ul.triple
{
-webkit-column-count: 3; /* Chrome, Safari, Opera */
-moz-column-count: 3; /* Firefox */
column-count: 3;
}
.double li
{
float: none;
width:100%;
padding:1%;
}
.triple li
{
float: none;
width:100%;
padding:1%;
}
.screenshotthumb
{
max-width: 160px;
max-height: 160px;
overflow: hidden;
}
.triple li.anriss
{
margin-left:1%;
margin-bottom:1%;
border:10px;
background:#F6E4CC;
}
li.anriss
{
margin-left:1%;
margin-bottom:1%;
border:10px;
background:#F6f4eC;
}
.large
{
font-size:150%;
top:20px;
}
li.anriss a:hover
{
background: #527AB4;
}
.abstract
{
background:#F6E4CC;
padding:5px;
color:#555;
}
li.anriss:hover
{
background:#527AB4;
}
a:focus
{
outline: 0;
background:#97DAF1;
padding-bottom:0px;
}
div.accordion{
/* background:#F6f4eC;
*/ display:block;
float:none;
margin-right:1%;
margin-bottom:1%;
border:5px solid #F6f4eC;
margin-left: 3%;
width: 83%;
}
div.accordion a:link{
padding-left: 1%;
padding-right: 1%;
padding-top:5px;
padding-bottom:5px;
display:block;
margin-left: 3%;
width: 83%;
}
/*.link {
min-height: 200px; min-width: 200px;
border: 1px solid red;
}
*/
.linkdescription {
display: none;
padding-left:10px;
padding-right:10px;
padding-bottom:10px;
padding-top:0px;
}
pre {
padding: 0.1em 0.5em 0.3em 0.7em;
border-left: 11px solid #ccc;
margin: 1.7em 0 1.7em 0.3em;
/* white-space:pre-wrap;
overflow-x:hidden;
overflow-x:scroll;
*/ overflow: auto;
width: 96%;
min-width: 0;
background: #F6f4eC;
font-family: "Courier New", Courier, monospace, sans-serif;
text-align: left;
color: #111;
line-height: 1.3em;
font-size: 11px;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 2;
white-space: pre;
}
.imgleft
{
float:left;
margin-right:20px;
margin-bottom:10px;
margin-top:10px;
}
.imgright
{
float:right;
margin-left:20px;
margin-bottom:10px;
margin-top:10px;
}
.center
{
display:block;
margin-bottom:5px;
margin-top:10px;
margin-left: auto; margin-right: auto;
}
.center+span.imgdesc
{
display:block;
width:100%;
text-align: center;
font-size: 0.9em;
padding-bottom: 10px;
}
.formula
{
display:block;
margin-bottom:5px;
margin-top:10px;
margin-left: auto; margin-right: auto;
}
.plantuml
{
display:block;
margin-bottom:5px;
margin-top:10px;
margin-left: auto; margin-right: auto;
}
.imgright span.imgdesc
{
display:block;
width:100%;
text-align: center;
font-size: 0.9em;
}
#A a
{
color: #00D;
}
#A h1 a
{
color: #000;
}
/*
pre:hover
{
position: relative;
width: 150%;
z-index: 99;
}
*/
/*
pre code[class]:after
{
content: 'highlight: ' attr(class);
display: block; text-align: right;
font-size: smaller;
padding-top: 5px;
}
*/
.thumbnailcaption
{
text-align:center;
color: #000;
font-size: 0.8em;
/* overflow-wrap: normal;
overflow: hidden;
*/}
div.update{
padding: 5px;
background: #F6F4EC;
}
div.update ul{
font-size: 0.75em;
}
.footnoteref
{
/* background:#527AB4;
*/ font-size:75%;
vertical-align:top;
}
/*div.footnotes{
padding: 5px;
background: #F6F4EC;
}*/
div.footnote dl{
font-size: 0.75em;
}
#A div.footnote dt a
{
color: #000;
}
.collectionhref{
padding-top: 2px;
margin-bottom: -5px;
padding-right: 0px;
padding-left: 0px;
font-size: 0.72em;
text-align: right;
width:100%;
}
#nextPage{
width:100%;
text-align: center;
background:#F6f4eC;
padding-top: 0.5em;
padding-bottom: 0.5em;
}
#nextPage:hover
{
background:#527AB4;
}
#toc {
float:right;
margin-left:20px;
margin-right:20px;
margin-bottom:10px;
/* margin-top:10px;
*/ background:#F6f4eC;
padding-top: 0.5em;
padding-bottom: 0.5em;
padding-left: 1em;
padding-right: 1em;
/* position: fixed;
right: 0;
top: 0;
background-color:#FFF;
*/}
#toc #pages { display: none; }
#toc:hover #pages{
display: block;
width:100%;
}
div.page{
width:100%;
padding-top: 0.25em;
padding-bottom: 0.25em;
// padding-left: 0.5em;
// padding-right: 0.5em;
}
#pages * .page:hover
{
background:#527AB4;
} | 0.218586 | 0.081155 |
height: 1050px;
width: auto;
background-image: url("../img/assets/backgrounds/h_img.jpg");
background-repeat: no-repeat;
background-size: 1400px 900px;
background-position: top;
}
.logo {
position: absolute;
margin-top: 25%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.clickicon {
position: absolute;
margin-top: 60%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.welcome {
font-size: 25px;
text-align: center;
color: #FFFFFF;
padding-top: 30%;
word-wrap: normal;
margin-top: auto;
}
.delani {
font-size: 25px;
text-align: center;
color: #FFFFFF;
padding-top: 1%;
word-wrap: normal;
margin-top: auto;
}
h1 {
font-size: 25px;
text-align: center;
color: #FFFFFF;
word-wrap: normal;
margin-top: auto;
}
h2 {
font-size: 12px;
text-align: center;
color: #FFFFFF
}
#wwd {
color: black;
font-size: 25px;
text-align: center;
}
#portfolio {
color: black;
font-size: 25px;
text-align: center;
}
.responsive {
position: center;
margin-left: auto;
margin-right: auto;
}
#secondSection {
margin-top: -10%;
}
#about {
color: black;
font-size: : 25px;
text-align: center;
}
p {
text-align: center;
}
.pcolor {
color: white;
}
#thirdSection {
background-image: url("../img/assets/backgrounds/s_image.jpg");
background-repeat: no-repeat;
background-size: 1400px 600px;
background-position: top;
text-align: center;
padding-top: 20%;
}
#fourthSection {
text-align: center;
display: block;
}
.design-hidden {
display: none;
}
.dev-hidden {
display: none;
}
.product-hidden {
display: none;
}
#fifthSection {
text-align: center;
display: block;
}
.work_container:hover .projects {
opacity: 0.3;
}
.work_container:hover .middle {
opacity: 1;
}
.projects {
opacity: 1;
display: block;
width: 100%;
height: auto;
transition: .5s ease;
backface-visibility: hidden;
}
.middle {
transition: .5s ease;
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
text-align: center;
}
.text {
background-color: #4CAF50;
color: white;
font-size: 16px;
padding: 16px 32px;
}
#sixthSection {
background-image: url("../img/assets/backgrounds/c_image.jpg");
background-repeat: no-repeat;
background-size: auto;
background-position: top;
text-align: center;
width: 100%;
height: 100%;
display: block;
}
#contact {
text-align: center;
font-size: 25px;
color: white;
}
.input {
color: white;
opacity: 0.2;
border: 1px;
}
.message {
color: white;
margin-left: 21.8%;
opacity: 0.2;
}
.social {
width: 900px;
height: 900px;
margin: auto;
display: block;
} | css/styles.css | height: 1050px;
width: auto;
background-image: url("../img/assets/backgrounds/h_img.jpg");
background-repeat: no-repeat;
background-size: 1400px 900px;
background-position: top;
}
.logo {
position: absolute;
margin-top: 25%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.clickicon {
position: absolute;
margin-top: 60%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.welcome {
font-size: 25px;
text-align: center;
color: #FFFFFF;
padding-top: 30%;
word-wrap: normal;
margin-top: auto;
}
.delani {
font-size: 25px;
text-align: center;
color: #FFFFFF;
padding-top: 1%;
word-wrap: normal;
margin-top: auto;
}
h1 {
font-size: 25px;
text-align: center;
color: #FFFFFF;
word-wrap: normal;
margin-top: auto;
}
h2 {
font-size: 12px;
text-align: center;
color: #FFFFFF
}
#wwd {
color: black;
font-size: 25px;
text-align: center;
}
#portfolio {
color: black;
font-size: 25px;
text-align: center;
}
.responsive {
position: center;
margin-left: auto;
margin-right: auto;
}
#secondSection {
margin-top: -10%;
}
#about {
color: black;
font-size: : 25px;
text-align: center;
}
p {
text-align: center;
}
.pcolor {
color: white;
}
#thirdSection {
background-image: url("../img/assets/backgrounds/s_image.jpg");
background-repeat: no-repeat;
background-size: 1400px 600px;
background-position: top;
text-align: center;
padding-top: 20%;
}
#fourthSection {
text-align: center;
display: block;
}
.design-hidden {
display: none;
}
.dev-hidden {
display: none;
}
.product-hidden {
display: none;
}
#fifthSection {
text-align: center;
display: block;
}
.work_container:hover .projects {
opacity: 0.3;
}
.work_container:hover .middle {
opacity: 1;
}
.projects {
opacity: 1;
display: block;
width: 100%;
height: auto;
transition: .5s ease;
backface-visibility: hidden;
}
.middle {
transition: .5s ease;
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
text-align: center;
}
.text {
background-color: #4CAF50;
color: white;
font-size: 16px;
padding: 16px 32px;
}
#sixthSection {
background-image: url("../img/assets/backgrounds/c_image.jpg");
background-repeat: no-repeat;
background-size: auto;
background-position: top;
text-align: center;
width: 100%;
height: 100%;
display: block;
}
#contact {
text-align: center;
font-size: 25px;
color: white;
}
.input {
color: white;
opacity: 0.2;
border: 1px;
}
.message {
color: white;
margin-left: 21.8%;
opacity: 0.2;
}
.social {
width: 900px;
height: 900px;
margin: auto;
display: block;
} | 0.392453 | 0.067026 |
.cssload-loader {
position: relative;
left: calc(50% - 72px);
width: 144px;
height: 144px;
border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
perspective: 1800px;
}
.cssload-inner {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
}
.cssload-inner.cssload-one {
left: 0%;
top: 0%;
animation: cssload-rotate-one 0.95s linear infinite;
-o-animation: cssload-rotate-one 0.95s linear infinite;
-ms-animation: cssload-rotate-one 0.95s linear infinite;
-webkit-animation: cssload-rotate-one 0.95s linear infinite;
-moz-animation: cssload-rotate-one 0.95s linear infinite;
border-bottom: 7px solid rgb(252,232,78);
}
.cssload-inner.cssload-two {
right: 0%;
top: 0%;
animation: cssload-rotate-two 0.95s linear infinite;
-o-animation: cssload-rotate-two 0.95s linear infinite;
-ms-animation: cssload-rotate-two 0.95s linear infinite;
-webkit-animation: cssload-rotate-two 0.95s linear infinite;
-moz-animation: cssload-rotate-two 0.95s linear infinite;
border-right: 7px solid rgb(0,85,255);
}
.cssload-inner.cssload-three {
right: 0%;
bottom: 0%;
animation: cssload-rotate-three 0.95s linear infinite;
-o-animation: cssload-rotate-three 0.95s linear infinite;
-ms-animation: cssload-rotate-three 0.95s linear infinite;
-webkit-animation: cssload-rotate-three 0.95s linear infinite;
-moz-animation: cssload-rotate-three 0.95s linear infinite;
border-top: 7px solid rgb(255,0,0);
}
@keyframes cssload-rotate-one {
0% {
transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
}
100% {
transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
}
}
@-o-keyframes cssload-rotate-one {
0% {
-o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
}
100% {
-o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
}
}
@-ms-keyframes cssload-rotate-one {
0% {
-ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
}
100% {
-ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
}
}
@-webkit-keyframes cssload-rotate-one {
0% {
-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
}
100% {
-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
}
}
@-moz-keyframes cssload-rotate-one {
0% {
-moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
}
100% {
-moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
}
}
@keyframes cssload-rotate-two {
0% {
transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
}
100% {
transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
}
}
@-o-keyframes cssload-rotate-two {
0% {
-o-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
}
100% {
-o-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
}
}
@-ms-keyframes cssload-rotate-two {
0% {
-ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
}
100% {
-ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
}
}
@-webkit-keyframes cssload-rotate-two {
0% {
-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
}
100% {
-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
}
}
@-moz-keyframes cssload-rotate-two {
0% {
-moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
}
100% {
-moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
}
}
@keyframes cssload-rotate-three {
0% {
transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
}
100% {
transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
}
}
@-o-keyframes cssload-rotate-three {
0% {
-o-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
}
100% {
-o-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
}
}
@-ms-keyframes cssload-rotate-three {
0% {
-ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
}
100% {
-ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
}
}
@-webkit-keyframes cssload-rotate-three {
0% {
-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
}
100% {
-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
}
}
@-moz-keyframes cssload-rotate-three {
0% {
-moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
}
100% {
-moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
}
}
.animated {
-webkit-animation-duration: 7s;
animation-duration: 7s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes bounce {
0%, 25% {
opacity:0;
-ms-transform: rotate(30deg); /* IE 9 */
-webkit-transform: rotate(30deg); /* Chrome, Safari, Opera */
transform: rotate(30deg);
}
25%, 50% {
opacity:1;
-ms-transform: rotate(360deg); /* IE 9 */
-webkit-transform: rotate(360deg); /* Chrome, Safari, Opera */
transform: rotate(360deg);
}
50%, 75% {
opacity:0;
-ms-transform: rotate(30deg); /* IE 9 */
-webkit-transform: rotate(30deg); /* Chrome, Safari, Opera */
transform: rotate(30deg);
}
75%, 100% {
opacity:1;
-ms-transform: rotate(360deg); /* IE 9 */
-webkit-transform: rotate(360deg); /* Chrome, Safari, Opera */
transform: rotate(360deg);
}
}
@keyframes bounce {
0% {
opacity:0;
-ms-transform: rotate(0deg); /* IE 9 */
-webkit-transform: rotate(0deg); /* Chrome, Safari, Opera */
transform: rotate(0deg);
}
25% {
opacity:1;
-ms-transform: rotate(360deg); /* IE 9 */
-webkit-transform: rotate(360deg); /* Chrome, Safari, Opera */
transform: rotate(360deg);
}
50% {
opacity:0;
-ms-transform: rotate(0deg); /* IE 9 */
-webkit-transform: rotate(0deg); /* Chrome, Safari, Opera */
transform: rotate(0deg);
}
75% {
opacity:1;
-ms-transform: rotate(360deg); /* IE 9 */
-webkit-transform: rotate(360deg); /* Chrome, Safari, Opera */
transform: rotate(360deg);
}
100% {
opacity:0;
-ms-transform: rotate(0deg); /* IE 9 */
-webkit-transform: rotate(0deg); /* Chrome, Safari, Opera */
transform: rotate(0deg);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
}
#animated-example {
width: 100px;
height: 100px;
position: relative;
top: 100px;
left: 100px;
border-radius: 50%;
} | css/spinner.css | .cssload-loader {
position: relative;
left: calc(50% - 72px);
width: 144px;
height: 144px;
border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
perspective: 1800px;
}
.cssload-inner {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
}
.cssload-inner.cssload-one {
left: 0%;
top: 0%;
animation: cssload-rotate-one 0.95s linear infinite;
-o-animation: cssload-rotate-one 0.95s linear infinite;
-ms-animation: cssload-rotate-one 0.95s linear infinite;
-webkit-animation: cssload-rotate-one 0.95s linear infinite;
-moz-animation: cssload-rotate-one 0.95s linear infinite;
border-bottom: 7px solid rgb(252,232,78);
}
.cssload-inner.cssload-two {
right: 0%;
top: 0%;
animation: cssload-rotate-two 0.95s linear infinite;
-o-animation: cssload-rotate-two 0.95s linear infinite;
-ms-animation: cssload-rotate-two 0.95s linear infinite;
-webkit-animation: cssload-rotate-two 0.95s linear infinite;
-moz-animation: cssload-rotate-two 0.95s linear infinite;
border-right: 7px solid rgb(0,85,255);
}
.cssload-inner.cssload-three {
right: 0%;
bottom: 0%;
animation: cssload-rotate-three 0.95s linear infinite;
-o-animation: cssload-rotate-three 0.95s linear infinite;
-ms-animation: cssload-rotate-three 0.95s linear infinite;
-webkit-animation: cssload-rotate-three 0.95s linear infinite;
-moz-animation: cssload-rotate-three 0.95s linear infinite;
border-top: 7px solid rgb(255,0,0);
}
@keyframes cssload-rotate-one {
0% {
transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
}
100% {
transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
}
}
@-o-keyframes cssload-rotate-one {
0% {
-o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
}
100% {
-o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
}
}
@-ms-keyframes cssload-rotate-one {
0% {
-ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
}
100% {
-ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
}
}
@-webkit-keyframes cssload-rotate-one {
0% {
-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
}
100% {
-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
}
}
@-moz-keyframes cssload-rotate-one {
0% {
-moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
}
100% {
-moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
}
}
@keyframes cssload-rotate-two {
0% {
transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
}
100% {
transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
}
}
@-o-keyframes cssload-rotate-two {
0% {
-o-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
}
100% {
-o-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
}
}
@-ms-keyframes cssload-rotate-two {
0% {
-ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
}
100% {
-ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
}
}
@-webkit-keyframes cssload-rotate-two {
0% {
-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
}
100% {
-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
}
}
@-moz-keyframes cssload-rotate-two {
0% {
-moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
}
100% {
-moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
}
}
@keyframes cssload-rotate-three {
0% {
transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
}
100% {
transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
}
}
@-o-keyframes cssload-rotate-three {
0% {
-o-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
}
100% {
-o-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
}
}
@-ms-keyframes cssload-rotate-three {
0% {
-ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
}
100% {
-ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
}
}
@-webkit-keyframes cssload-rotate-three {
0% {
-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
}
100% {
-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
}
}
@-moz-keyframes cssload-rotate-three {
0% {
-moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
}
100% {
-moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
}
}
.animated {
-webkit-animation-duration: 7s;
animation-duration: 7s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes bounce {
0%, 25% {
opacity:0;
-ms-transform: rotate(30deg); /* IE 9 */
-webkit-transform: rotate(30deg); /* Chrome, Safari, Opera */
transform: rotate(30deg);
}
25%, 50% {
opacity:1;
-ms-transform: rotate(360deg); /* IE 9 */
-webkit-transform: rotate(360deg); /* Chrome, Safari, Opera */
transform: rotate(360deg);
}
50%, 75% {
opacity:0;
-ms-transform: rotate(30deg); /* IE 9 */
-webkit-transform: rotate(30deg); /* Chrome, Safari, Opera */
transform: rotate(30deg);
}
75%, 100% {
opacity:1;
-ms-transform: rotate(360deg); /* IE 9 */
-webkit-transform: rotate(360deg); /* Chrome, Safari, Opera */
transform: rotate(360deg);
}
}
@keyframes bounce {
0% {
opacity:0;
-ms-transform: rotate(0deg); /* IE 9 */
-webkit-transform: rotate(0deg); /* Chrome, Safari, Opera */
transform: rotate(0deg);
}
25% {
opacity:1;
-ms-transform: rotate(360deg); /* IE 9 */
-webkit-transform: rotate(360deg); /* Chrome, Safari, Opera */
transform: rotate(360deg);
}
50% {
opacity:0;
-ms-transform: rotate(0deg); /* IE 9 */
-webkit-transform: rotate(0deg); /* Chrome, Safari, Opera */
transform: rotate(0deg);
}
75% {
opacity:1;
-ms-transform: rotate(360deg); /* IE 9 */
-webkit-transform: rotate(360deg); /* Chrome, Safari, Opera */
transform: rotate(360deg);
}
100% {
opacity:0;
-ms-transform: rotate(0deg); /* IE 9 */
-webkit-transform: rotate(0deg); /* Chrome, Safari, Opera */
transform: rotate(0deg);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
}
#animated-example {
width: 100px;
height: 100px;
position: relative;
top: 100px;
left: 100px;
border-radius: 50%;
} | 0.398055 | 0.115411 |
@font-face {
font-family: 'Conv_UbuntuTitling-Bold';
src: url('fonts/UbuntuTitling-Bold.eot');
src: local('☺'), url('fonts/UbuntuTitling-Bold.woff') format('woff'), url('fonts/UbuntuTitling-Bold.ttf') format('truetype'), url('fonts/UbuntuTitling-Bold.svg') format('svg');
font-weight: normal;
font-style: normal;
}
body#welcome {
background-image: url('images/background.jpg');
background-position: right bottom;
background-repeat: no-repeat;
}
body#welcome .wrapper {
background: none;
}
body#welcome .wrapper .content-wrapper {
min-height: 100vh !important;
}
body#welcome .wrapper .content-wrapper {
background-color: transparent;
background: none;
}
body#welcome #main .box {
margin-right: 0 auto;
max-width: 80%;
min-height: 40px;
padding: 1em;
width: 600px;
}
body#welcome #main .box--primary {
background: rgba(255, 255, 255, 0.95);
border: 1px solid #EEE;
box-shadow: 0 0 3px #CCC;
padding: 2em;
}
body#welcome #main .box--secondary {
background: transparent;
border: 0;
box-shadow: none;
}
body#welcome #main .box h1 {
font-size: 21px;
font-weight: bold;
margin-left: auto;
}
body#welcome #main .box h1.logo {
font-family:'Conv_UbuntuTitling-Bold',Sans-Serif;
font-size: 3em;
color: #EBC32E;
letter-spacing: -1px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
min-width: 245px;
}
body#welcome #main .box h1.logo span {
color: #D2D428;
}
body#welcome #main .box a {
font-weight: bold;
text-decoration: underline;
}
body#welcome #main .box code {
background: #F0F0F0;
color: inherit;
}
body#welcome .wrapper .footer {
position: absolute;
bottom: 0;
right: 0;
height: 140px;
width: 100%;
background-image: url('images/back_logos.png');
background-repeat: repeat-x;
padding-right: 40px;
}
body#welcome .wrapper .footer .logo-minambiente {
background-image: url(images/logo_posconsumo.png);
background-repeat: no-repeat;
background-size: auto 100%;
background-position: right top;
height: 100px;
width: 257px;
margin: 20px;
float: right;
display: block;
position: relative;
}
body#welcome .wrapper .footer .logo-todosporunnuevopais {
background-image: url(images/LOGO_MINAMBIENTE_El_ambiente_es_de_todos.jpg);
background-repeat: no-repeat;
background-size: auto 100%;
background-position: right top;
height: 90px;
width: 500px;
margin: 25px 40px;
float: right;
display: block;
position: relative;
}
body.new .large input.form-control,
body.edit .large input.form-control,
body.show .large div.form-control {
font-size: 21px;
height: auto;
padding: 7px;
}
@media (min-width: 768px) {
body#welcome #main .box {
margin-top: 1em;
}
body#welcome #main .box h1 {
font-size: 24px;
}
body#welcome #main .box .login-help {
color: #777;
margin-top: 15px;
}
header.main-header
nav.navbar
#header-logo
a.logo {
font-size: 26px;
}
}
.loadingIcon {
position: relative;
font-size: 16px;
z-index: 99;
}
.loadingField:after {
content: "";
position: absolute;
background-color: rgba(245,245,245,0.7);
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.field-collection_schedule
.field-choice
> div {
display: flex;
display: -webkit-flex;
align-items: flex-end;
flex-wrap: wrap;
}
.field-collection_schedule
.field-choice
> div
.checkbox {
width: 60px;
}
header.main-header
nav.navbar
#header-logo
a.logo {
font-family:'Conv_UbuntuTitling-Bold',Sans-Serif;
font-size: 2.2em;
color: #EBC32E;
letter-spacing: -1px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
min-width: 245px;
}
header.main-header
nav.navbar
#header-logo
a.logo
span {
color: #D2D428;
}
/* nav bar*/
header.main-header
nav.navbar
{
background-color: #67A0E9;
}
/* Usuario */
header.main-header
nav.navbar ul.nav li{
color: white;
}
/* */
aside.main-sidebar
{
background-color: #67A0E9;
}
/* subtitulos*/
aside.main-sidebar
.header.submenu-active
{
color: white;
}
.table.table
{
background-color: blue;
} | web/bundles/madsposconsumos/stylesheets/posconsumos.css | @font-face {
font-family: 'Conv_UbuntuTitling-Bold';
src: url('fonts/UbuntuTitling-Bold.eot');
src: local('☺'), url('fonts/UbuntuTitling-Bold.woff') format('woff'), url('fonts/UbuntuTitling-Bold.ttf') format('truetype'), url('fonts/UbuntuTitling-Bold.svg') format('svg');
font-weight: normal;
font-style: normal;
}
body#welcome {
background-image: url('images/background.jpg');
background-position: right bottom;
background-repeat: no-repeat;
}
body#welcome .wrapper {
background: none;
}
body#welcome .wrapper .content-wrapper {
min-height: 100vh !important;
}
body#welcome .wrapper .content-wrapper {
background-color: transparent;
background: none;
}
body#welcome #main .box {
margin-right: 0 auto;
max-width: 80%;
min-height: 40px;
padding: 1em;
width: 600px;
}
body#welcome #main .box--primary {
background: rgba(255, 255, 255, 0.95);
border: 1px solid #EEE;
box-shadow: 0 0 3px #CCC;
padding: 2em;
}
body#welcome #main .box--secondary {
background: transparent;
border: 0;
box-shadow: none;
}
body#welcome #main .box h1 {
font-size: 21px;
font-weight: bold;
margin-left: auto;
}
body#welcome #main .box h1.logo {
font-family:'Conv_UbuntuTitling-Bold',Sans-Serif;
font-size: 3em;
color: #EBC32E;
letter-spacing: -1px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
min-width: 245px;
}
body#welcome #main .box h1.logo span {
color: #D2D428;
}
body#welcome #main .box a {
font-weight: bold;
text-decoration: underline;
}
body#welcome #main .box code {
background: #F0F0F0;
color: inherit;
}
body#welcome .wrapper .footer {
position: absolute;
bottom: 0;
right: 0;
height: 140px;
width: 100%;
background-image: url('images/back_logos.png');
background-repeat: repeat-x;
padding-right: 40px;
}
body#welcome .wrapper .footer .logo-minambiente {
background-image: url(images/logo_posconsumo.png);
background-repeat: no-repeat;
background-size: auto 100%;
background-position: right top;
height: 100px;
width: 257px;
margin: 20px;
float: right;
display: block;
position: relative;
}
body#welcome .wrapper .footer .logo-todosporunnuevopais {
background-image: url(images/LOGO_MINAMBIENTE_El_ambiente_es_de_todos.jpg);
background-repeat: no-repeat;
background-size: auto 100%;
background-position: right top;
height: 90px;
width: 500px;
margin: 25px 40px;
float: right;
display: block;
position: relative;
}
body.new .large input.form-control,
body.edit .large input.form-control,
body.show .large div.form-control {
font-size: 21px;
height: auto;
padding: 7px;
}
@media (min-width: 768px) {
body#welcome #main .box {
margin-top: 1em;
}
body#welcome #main .box h1 {
font-size: 24px;
}
body#welcome #main .box .login-help {
color: #777;
margin-top: 15px;
}
header.main-header
nav.navbar
#header-logo
a.logo {
font-size: 26px;
}
}
.loadingIcon {
position: relative;
font-size: 16px;
z-index: 99;
}
.loadingField:after {
content: "";
position: absolute;
background-color: rgba(245,245,245,0.7);
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.field-collection_schedule
.field-choice
> div {
display: flex;
display: -webkit-flex;
align-items: flex-end;
flex-wrap: wrap;
}
.field-collection_schedule
.field-choice
> div
.checkbox {
width: 60px;
}
header.main-header
nav.navbar
#header-logo
a.logo {
font-family:'Conv_UbuntuTitling-Bold',Sans-Serif;
font-size: 2.2em;
color: #EBC32E;
letter-spacing: -1px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
min-width: 245px;
}
header.main-header
nav.navbar
#header-logo
a.logo
span {
color: #D2D428;
}
/* nav bar*/
header.main-header
nav.navbar
{
background-color: #67A0E9;
}
/* Usuario */
header.main-header
nav.navbar ul.nav li{
color: white;
}
/* */
aside.main-sidebar
{
background-color: #67A0E9;
}
/* subtitulos*/
aside.main-sidebar
.header.submenu-active
{
color: white;
}
.table.table
{
background-color: blue;
} | 0.341473 | 0.070688 |
@import url('https://fonts.googleapis.com/css?family=Gloria+Hallelujah');
@import url('https://fonts.googleapis.com/css?family=Merriweather+Sans');
@import url('https://fonts.googleapis.com/css?family=Cormorant+Garamond');
html {
/*max-width: 100%;*/
/*max-height: 100%;*/
}
#root {
max-width: 100%;
overflow: hidden;
}
.Main {
/*background-image: url('../images/movieCollage.jpg');
background-repeat: repeat;
background-attachment: fixed;
background-position: center center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;*/
/*text-align: center;*/
}
body {
width: 100%;
height: 100%;
/*font-family: '<NAME>', cursive;*/
font-family: 'Cormorant Garamond', cursive;
background-color: black;
/* background-image: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%,rgba(0,0,0,0.75) 100%), url('../images/movieCollage.jpg'); */
background-image: url('../images/edit_movieCollage.jpg');
/*padding-top: 50%;
padding-bottom: 50%;*/
background-repeat: repeat;
background-attachment: fixed;
background-position: center center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
text-align: center;
}
body.wishlist {
background-image: url('../images/wishlist_orig.jpg');
/* background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.6) 100%), url('../images/shelfResized.jpg'); */
}
body.favorites {
background-image: url('../images/edit_shelfResized.jpg');
/* background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.6) 100%), url('../images/shelfResized.jpg'); */
}
body.search {
background-image: url('../images/searchResized.jpg');
/* background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.6) 100%), url('../images/searchResized.jpg'); */
}
/*Home.jsx*/
.TestLeft {
background-color: blue;
height: 100vh;
}
.TestRight{
background-color: red;
height: 100vh;
}
div.logo-center {
margin-top: 10%;
height: auto;
background-color: #222;
border: 5px solid #fff;
}
.spanLogo {
margin: auto;
padding: 50px 0;
font-size: 5em;
color: #fff;
font-weight: bold;
/*font-size-adjust: auto;*/
/*text-transform: uppercase;*/
}
div.social-wrap {
/* background-color: rgba(255, 255, 255, 0.35); */
/* background-color: black; */
/* border: 5px solid #222; */
text-align: center;
margin: 5% auto;
padding-bottom: 8%;
}
div.registerBox {
/* background-color: rgba(255, 255, 255, 0.35); */
/* background-color: black; */
/* border: 5px solid #222; */
text-align: center;
/* margin: 5% auto; */
/* padding-bottom: 8%; */
}
.buttonContainerSignup {
text-align: center;
}
.btnSignup {
margin: 2%;
}
/* .removeButton {
float: left;
} */
.invisible {
display: none;
}
.removeButton {
float: right;
color: white;
border-color: #ffffff7d !important;
background-color: #ffffff00 !important;
}
.removeButtonSpan {
font-size: 18px;
font-weight: 600;
}
div.social-wrap button {
text-align: center;
padding-right: 45px;
height: 35px;
background: none;
border: none;
display: block;
background-size: 35px 35px;
background-position: right center;
background-repeat: no-repeat;
border-radius: 4px;
color: white;
font-family: '<NAME>', sans-serif;
font-size: 14px;
margin: 5%;
width: 90%;
border-bottom: 2px solid transparent;
border-left: 1px solid transparent;
border-right: 1px solid transparent;
box-shadow: 0 4px 2px -2px black; /*Adjust color depending on color of background*/
text-shadow: rgba(0, 0, 0, .5) -1px -1px 0;
}
.socialIconHolder{
text-align: center;
/* width: 90%; */
height: 45px;
/* border: 1px solid white; */
}
.socialIcon {
display: inline-block;
margin-left: 10px;
margin-right: 10px;
border: 1px solid white;
height: 35px;
/* margin: 0 auto; */
}
/* button#facebook {
border-color: #2d5073;
background-color: #3b5998;
background-image: url('../images/icons/facebook.png');
}
button#googleplus {
border-color: #111;
background-color: #dc3e0e;
background-image:url('../images/icons/google.png');
}
button#github {
border-color: #111;
background-color: #333030;
background-image:url('../images/icons/github.png');
}
*/
button#email {
border-color: #111;
background-color: #4a659e;
background-image:url('../images/icons/default.jpg');
}
button#guest {
border-color: #111;
background-color: #af3030;
background-image:url('../images/icons/default.jpg');
}
.moviePoster {
box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.85);
max-width: 320px;
}
.homeImgCircle {
width: 100px;
height: 100px;
}
/*Signup.jsx*/
.input-group.signup {
margin: 10px;
background-color: white;
}
.buttonSpan {
color: white;
}
/*Main.jsx*/
.pageName {
background-color: #ca8e33;
}
/*Home.jsx*/
.homeLogo {
margin: 5%;
}
.welcomeDiv {
/*overflow: scroll;*/
width: 100%;
background-color: #222;
border: 5px solid #fff;
color: #fff;
text-align: center;
padding-bottom: 5%;
/*margin: 0 auto;*/
}
.rowhome {
height: 70vh;
width: 60vw;
margin: 0 auto;
text-align: center;
background-image: url('../images/slate.png');
background-size: auto;
background-position: center center;
background-repeat: no-repeat;
position: relative;
}
.rowhome .homeslate {
position: absolute;
/*bottom: 10%;
left: 50%;
transform: translate(-50%, 0);*/
bottom: 10%;
left: 0;
right: 0;
/*left: 0;*/
margin: auto;
}
/*Header.jsx*/
#headernav {
/*height: 75px;*/
border: 10px solid black;
/*background-image: url('../images/filmrollheader2.png');*/
/*background-size: contain;*/
/*border: none;*/
}
.headerAvatar {
position: relative;
/*top: 0;*/
float: right;
padding: 0;
/*display: inline-block;*/
right: 0;
height: 50px;
width: 50px;
}
.navbar {
margin: 0 auto;
}
.navbar-brand {
float: left;
/*margin-left: -60px !important;*/
/*margin-right: 60px !important;*/
background-color: white;
}
/*Library.jsx*/
.bookshelf {
background-image: url('../images/shelfsample.jpg');
background-repeat: no-repeat;
background-size: contain;
}
.leftPanel {
/*background-color: rgba(255, 0, 0, 0.5);*/
/*height: 500px;*/
/*margin-right: 10px;*/
margin-top: 5%;
}
.rightPanel {
/*background-color: rgba(0, 255, 0, 0.5);*/
}
/*Search.jsx*/
#search {
-webkit-appearance: none;
/* font-family: Helvetica Neue, Helvetica, Arial, sans-serif; */
width: 60px;
padding: 0 10px;
height: 60px;
font-size: 24px;
color: black;
line-height: 40px;
border: 0;
border-radius: 50px;
box-shadow: 0 0 0 1px rgba(0,150,200,.5), inset 0 2px 5px rgba(0,100,150,.3), 0 2px 0 rgba(255,255,255,.6);
position: relative;
z-index: 5;
-webkit-transition: .3s ease;
-moz-transition: .3s ease;
opacity: 0.8;
}
#search:focus {
outline: none;
width: 500px;
}
p.s {
z-index: 4;
position: relative;
padding: 5px;
line-height: 0;
border-radius: 100px;
background: black;
background-image: -webkit-linear-gradient(black,grey);
background-image: -moz-linear-gradient(black,grey);
display: inline-block;
box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 2px 5px rgba(0,100,150,.4);
}
p.s:hover {
box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 2px 3px 2px rgba(100,200,255,.5);
}
p.s:after {
content: '';
display: block;
position: absolute;
width: 5px;
height: 20px;
background: #b9ecfe;
bottom: -10px;
right: -3px;
border-radius: 0 0 5px 5px;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
box-shadow: inset 0 -1px 0 rgbA(255,255,255,.6), -2px 2px 2px rgba(0,100,150,.4);
}
p.s:hover:after {
box-shadow: inset 0 -1px 0 rgba(255,255,255,.6), -2px 2px 2px 1px rgba(100,200,255,.5);
}
.posterDiv {
display: inline-block;
margin: 10px;
}
@media (min-width: 1600px) {
div.social-wrap {
padding-left:5%;
padding-right:5%;
}
}
@media (min-width: 990px) {
div.logo-center {
margin-top : 0;
}
}
@media (max-width: 415px) {
.rowhome .homeslate {
bottom: 3%;
}
div.social-wrap button {
font-size: 12px;
}
input, select, textarea {
font-size: 16px;
}
}
/* //notification */
.alert {
position: fixed;
z-index: 1100;
text-align: center;
width: 100vw;
top: 0;
opacity:0.99;
}
.modal-lightbox {
/*border: solid 10px green;*/
width: 90%;
height: 90%;
}
.modal-content {
/*border: solid 8px pink;*/
/*max-height: 100%;*/
background-color: rgba(236, 236, 236, 0.92);
}
.modal-body {
max-height: 100%
/*border: solid 8px blue;*/
}
.modal-header {
border-bottom: none;
padding: 0 15px 0 0;
}
.modalPosterHolder {
max-height: 100%;
/* border: 3px solid green; */
}
#modalPoster {
box-shadow: 10px 10px 5px 0px rgba(119, 119, 119, 0.85)
}
.modalBackdropHolder {
max-height: 50%;
border: 3px solid black;
background-color: black;
}
.modalDetailsHolder {
margin: 10px 0;
border-left: 2px solid black;
}
.modalDetails {
font-size: 1.3em;
text-align: left;
}
.detailTag {
font-weight: bold;
}
.modalButtonsHolder{
/* border: 3px solid purple; */
/*position: absolute;*/
/*float: left;*/
/*top: 90%;*/
/*height: 10%;*/
/*bottom: 0;*/
/*right: 0;*/
padding-top: 12px;
display: inline-block;
}
.btn-modal {
margin: 5px;
}
.btn-modal:active {
background-color: grey
color: #fff;
border-color: #122b40;
}
#modalPoster {
max-width: 95%;
max-height: 75vh;
margin: auto 0;
}
#modalBackdrop {
max-width: 95%;
max-height: 40vh;
margin: auto 0;
}
.signinJumbo {
/*width: 50%;*/
}
.signupJumbo {
width: 500px;
}
@media (max-width: 767px) {
.headerAvatar {
display: none;
}
.modalDetailsHolder {
border-left: none;
padding-right: 30px;
padding-left: 30px;
}
.modalButtonsHolder {
padding-right: 30px;
padding-left: 30px;
position: fixed;
bottom: 0;
display: block;
}
.modalPosterHolder {
display: none;
}
.modal-content {
min-height: 105%;
max-height: 105%;
}
} | public/assets/style/index.css | @import url('https://fonts.googleapis.com/css?family=Gloria+Hallelujah');
@import url('https://fonts.googleapis.com/css?family=Merriweather+Sans');
@import url('https://fonts.googleapis.com/css?family=Cormorant+Garamond');
html {
/*max-width: 100%;*/
/*max-height: 100%;*/
}
#root {
max-width: 100%;
overflow: hidden;
}
.Main {
/*background-image: url('../images/movieCollage.jpg');
background-repeat: repeat;
background-attachment: fixed;
background-position: center center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;*/
/*text-align: center;*/
}
body {
width: 100%;
height: 100%;
/*font-family: '<NAME>', cursive;*/
font-family: 'Cormorant Garamond', cursive;
background-color: black;
/* background-image: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%,rgba(0,0,0,0.75) 100%), url('../images/movieCollage.jpg'); */
background-image: url('../images/edit_movieCollage.jpg');
/*padding-top: 50%;
padding-bottom: 50%;*/
background-repeat: repeat;
background-attachment: fixed;
background-position: center center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
text-align: center;
}
body.wishlist {
background-image: url('../images/wishlist_orig.jpg');
/* background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.6) 100%), url('../images/shelfResized.jpg'); */
}
body.favorites {
background-image: url('../images/edit_shelfResized.jpg');
/* background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.6) 100%), url('../images/shelfResized.jpg'); */
}
body.search {
background-image: url('../images/searchResized.jpg');
/* background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.6) 100%), url('../images/searchResized.jpg'); */
}
/*Home.jsx*/
.TestLeft {
background-color: blue;
height: 100vh;
}
.TestRight{
background-color: red;
height: 100vh;
}
div.logo-center {
margin-top: 10%;
height: auto;
background-color: #222;
border: 5px solid #fff;
}
.spanLogo {
margin: auto;
padding: 50px 0;
font-size: 5em;
color: #fff;
font-weight: bold;
/*font-size-adjust: auto;*/
/*text-transform: uppercase;*/
}
div.social-wrap {
/* background-color: rgba(255, 255, 255, 0.35); */
/* background-color: black; */
/* border: 5px solid #222; */
text-align: center;
margin: 5% auto;
padding-bottom: 8%;
}
div.registerBox {
/* background-color: rgba(255, 255, 255, 0.35); */
/* background-color: black; */
/* border: 5px solid #222; */
text-align: center;
/* margin: 5% auto; */
/* padding-bottom: 8%; */
}
.buttonContainerSignup {
text-align: center;
}
.btnSignup {
margin: 2%;
}
/* .removeButton {
float: left;
} */
.invisible {
display: none;
}
.removeButton {
float: right;
color: white;
border-color: #ffffff7d !important;
background-color: #ffffff00 !important;
}
.removeButtonSpan {
font-size: 18px;
font-weight: 600;
}
div.social-wrap button {
text-align: center;
padding-right: 45px;
height: 35px;
background: none;
border: none;
display: block;
background-size: 35px 35px;
background-position: right center;
background-repeat: no-repeat;
border-radius: 4px;
color: white;
font-family: '<NAME>', sans-serif;
font-size: 14px;
margin: 5%;
width: 90%;
border-bottom: 2px solid transparent;
border-left: 1px solid transparent;
border-right: 1px solid transparent;
box-shadow: 0 4px 2px -2px black; /*Adjust color depending on color of background*/
text-shadow: rgba(0, 0, 0, .5) -1px -1px 0;
}
.socialIconHolder{
text-align: center;
/* width: 90%; */
height: 45px;
/* border: 1px solid white; */
}
.socialIcon {
display: inline-block;
margin-left: 10px;
margin-right: 10px;
border: 1px solid white;
height: 35px;
/* margin: 0 auto; */
}
/* button#facebook {
border-color: #2d5073;
background-color: #3b5998;
background-image: url('../images/icons/facebook.png');
}
button#googleplus {
border-color: #111;
background-color: #dc3e0e;
background-image:url('../images/icons/google.png');
}
button#github {
border-color: #111;
background-color: #333030;
background-image:url('../images/icons/github.png');
}
*/
button#email {
border-color: #111;
background-color: #4a659e;
background-image:url('../images/icons/default.jpg');
}
button#guest {
border-color: #111;
background-color: #af3030;
background-image:url('../images/icons/default.jpg');
}
.moviePoster {
box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.85);
max-width: 320px;
}
.homeImgCircle {
width: 100px;
height: 100px;
}
/*Signup.jsx*/
.input-group.signup {
margin: 10px;
background-color: white;
}
.buttonSpan {
color: white;
}
/*Main.jsx*/
.pageName {
background-color: #ca8e33;
}
/*Home.jsx*/
.homeLogo {
margin: 5%;
}
.welcomeDiv {
/*overflow: scroll;*/
width: 100%;
background-color: #222;
border: 5px solid #fff;
color: #fff;
text-align: center;
padding-bottom: 5%;
/*margin: 0 auto;*/
}
.rowhome {
height: 70vh;
width: 60vw;
margin: 0 auto;
text-align: center;
background-image: url('../images/slate.png');
background-size: auto;
background-position: center center;
background-repeat: no-repeat;
position: relative;
}
.rowhome .homeslate {
position: absolute;
/*bottom: 10%;
left: 50%;
transform: translate(-50%, 0);*/
bottom: 10%;
left: 0;
right: 0;
/*left: 0;*/
margin: auto;
}
/*Header.jsx*/
#headernav {
/*height: 75px;*/
border: 10px solid black;
/*background-image: url('../images/filmrollheader2.png');*/
/*background-size: contain;*/
/*border: none;*/
}
.headerAvatar {
position: relative;
/*top: 0;*/
float: right;
padding: 0;
/*display: inline-block;*/
right: 0;
height: 50px;
width: 50px;
}
.navbar {
margin: 0 auto;
}
.navbar-brand {
float: left;
/*margin-left: -60px !important;*/
/*margin-right: 60px !important;*/
background-color: white;
}
/*Library.jsx*/
.bookshelf {
background-image: url('../images/shelfsample.jpg');
background-repeat: no-repeat;
background-size: contain;
}
.leftPanel {
/*background-color: rgba(255, 0, 0, 0.5);*/
/*height: 500px;*/
/*margin-right: 10px;*/
margin-top: 5%;
}
.rightPanel {
/*background-color: rgba(0, 255, 0, 0.5);*/
}
/*Search.jsx*/
#search {
-webkit-appearance: none;
/* font-family: Helvetica Neue, Helvetica, Arial, sans-serif; */
width: 60px;
padding: 0 10px;
height: 60px;
font-size: 24px;
color: black;
line-height: 40px;
border: 0;
border-radius: 50px;
box-shadow: 0 0 0 1px rgba(0,150,200,.5), inset 0 2px 5px rgba(0,100,150,.3), 0 2px 0 rgba(255,255,255,.6);
position: relative;
z-index: 5;
-webkit-transition: .3s ease;
-moz-transition: .3s ease;
opacity: 0.8;
}
#search:focus {
outline: none;
width: 500px;
}
p.s {
z-index: 4;
position: relative;
padding: 5px;
line-height: 0;
border-radius: 100px;
background: black;
background-image: -webkit-linear-gradient(black,grey);
background-image: -moz-linear-gradient(black,grey);
display: inline-block;
box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 2px 5px rgba(0,100,150,.4);
}
p.s:hover {
box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 2px 3px 2px rgba(100,200,255,.5);
}
p.s:after {
content: '';
display: block;
position: absolute;
width: 5px;
height: 20px;
background: #b9ecfe;
bottom: -10px;
right: -3px;
border-radius: 0 0 5px 5px;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
box-shadow: inset 0 -1px 0 rgbA(255,255,255,.6), -2px 2px 2px rgba(0,100,150,.4);
}
p.s:hover:after {
box-shadow: inset 0 -1px 0 rgba(255,255,255,.6), -2px 2px 2px 1px rgba(100,200,255,.5);
}
.posterDiv {
display: inline-block;
margin: 10px;
}
@media (min-width: 1600px) {
div.social-wrap {
padding-left:5%;
padding-right:5%;
}
}
@media (min-width: 990px) {
div.logo-center {
margin-top : 0;
}
}
@media (max-width: 415px) {
.rowhome .homeslate {
bottom: 3%;
}
div.social-wrap button {
font-size: 12px;
}
input, select, textarea {
font-size: 16px;
}
}
/* //notification */
.alert {
position: fixed;
z-index: 1100;
text-align: center;
width: 100vw;
top: 0;
opacity:0.99;
}
.modal-lightbox {
/*border: solid 10px green;*/
width: 90%;
height: 90%;
}
.modal-content {
/*border: solid 8px pink;*/
/*max-height: 100%;*/
background-color: rgba(236, 236, 236, 0.92);
}
.modal-body {
max-height: 100%
/*border: solid 8px blue;*/
}
.modal-header {
border-bottom: none;
padding: 0 15px 0 0;
}
.modalPosterHolder {
max-height: 100%;
/* border: 3px solid green; */
}
#modalPoster {
box-shadow: 10px 10px 5px 0px rgba(119, 119, 119, 0.85)
}
.modalBackdropHolder {
max-height: 50%;
border: 3px solid black;
background-color: black;
}
.modalDetailsHolder {
margin: 10px 0;
border-left: 2px solid black;
}
.modalDetails {
font-size: 1.3em;
text-align: left;
}
.detailTag {
font-weight: bold;
}
.modalButtonsHolder{
/* border: 3px solid purple; */
/*position: absolute;*/
/*float: left;*/
/*top: 90%;*/
/*height: 10%;*/
/*bottom: 0;*/
/*right: 0;*/
padding-top: 12px;
display: inline-block;
}
.btn-modal {
margin: 5px;
}
.btn-modal:active {
background-color: grey
color: #fff;
border-color: #122b40;
}
#modalPoster {
max-width: 95%;
max-height: 75vh;
margin: auto 0;
}
#modalBackdrop {
max-width: 95%;
max-height: 40vh;
margin: auto 0;
}
.signinJumbo {
/*width: 50%;*/
}
.signupJumbo {
width: 500px;
}
@media (max-width: 767px) {
.headerAvatar {
display: none;
}
.modalDetailsHolder {
border-left: none;
padding-right: 30px;
padding-left: 30px;
}
.modalButtonsHolder {
padding-right: 30px;
padding-left: 30px;
position: fixed;
bottom: 0;
display: block;
}
.modalPosterHolder {
display: none;
}
.modal-content {
min-height: 105%;
max-height: 105%;
}
} | 0.229104 | 0.060585 |
*{ margin:0; padding:0;}
@font-face {
font-family: "SourceHanSansCN-Regular";
src: url("../font/SourceHanSansCN-Regular.woff2") format("woff2"),
url("../font/SourceHanSansCN-Regular.woff") format("woff"),
url("../font/SourceHanSansCN-Regular.ttf") format("truetype"),
url("../font/SourceHanSansCN-Regular.eot") format("embedded-opentype"),
url("../font/SourceHanSansCN-Regular.svg") format("svg");
}
body{
font-family: "SourceHanSansCN-Regular";
}
/* 閿熸枻鎷风ず閿熸枻鎷烽敓鏂ゆ嫹寮� */
.layui-layer-dialog a.layui-layer-btn0{
background-color: #2196F3;
border-color: #2196F3;
}
/* 主体 */
#purchasingOrderMain{
margin: 0px 10px;
min-width: 1450px;
}
#purchasingOrderMain::-webkit-scrollbar {
width: 6px;
height: 1px;
}
#purchasingOrderMain::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 5px #fff;
background: #C1C1C1;
}
#purchasingOrderMain::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 5px #fff;
background: #fff;
}
/* 顶部导航栏 */
.topNav .layui-form-item{
margin-top: 0px;
margin-bottom: 0;
}
.topNav_head{
border-top: 6px solid #ECEFF1;
border-left: 6px solid #ECEFF1;
border-bottom: 6px solid #ECEFF1;
display: flex;
align-items: center;
width: 100%;
}
.topNav .layui-form-label{
width: auto;
}
.topNav .layui-form-label span{
cursor: pointer;
}
.topNav .layui-form-label span b{
font-weight: normal;
}
.topNav .layui-form-label + ul{
display: none;
position: absolute;
top: 30px;
padding: 10px 0;
border: 1px solid #cccccc;
max-height: 235px;
overflow: auto;
background-color: #ffffff;
z-index: 10086;
}
.topNav .layui-form-label + ul::-webkit-scrollbar {
width: 6px;
height: 1px;
}
.topNav .layui-form-label + ul::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 6px #fff;
background: #C1C1C1;
}
.topNav .layui-form-label + ul::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 5px #fff;
border-radius: 10px;
background: #fff;
}
.topNav .layui-form-label + ul>li{
padding: 0 10px;
width: max-content;
line-height: 26px;
}
.topNav .layui-form-label + ul>li:hover{
background-color: rgb(244, 245, 247);
cursor: pointer;
}
.search-box{
position: absolute !important;
margin-left: 15px;
border: 1px solid #D2D2D2;
vertical-align: middle;
width: 200px;
height: 30px;
line-height: 30px;
text-overflow: ellipsis;
}
.td_search input:hover{
border: 1px solid #808080!important;
}
.td_icon{
position: absolute !important;
font-size: 20px;
line-height: 30px;
cursor: pointer;
margin-top: 2px;
margin-left: 218px !important;
}
/* 中部供应商 */
.supplier .supplier_span .providerName{
text-overflow: ellipsis;
max-width: 180px;
width: auto;
overflow: hidden;
display: inline-block;
height: 22px;
line-height: 22px;
white-space: nowrap;
}
/* 顶部按钮 */
.tabControl{
margin-top: 16px;
margin-left: 18.5%;
text-align: center;
overflow: hidden;
}
.tabControl .layui-btn{
float: left;
background-color: #eee;
color:#000;
margin-right:8px;
margin-bottom: 10px;
}
.tabControl ul li button:hover{
background-color: rgb(145, 179, 238);
color:#fff;
}
.tabControl .tabColor{
background-color:rgb(145, 179, 238);
color:#fff;
}
.unavailable{
border:none!important;
background-color: #eee!important;
color:#000!important;
}
/*左侧采购订单列表*/
.purchase-list{
margin-top: -58px;
padding: 5px;
width: 16%;
float:left;
z-index: 99;
border-left: 6px solid #ECEFF1;
border-right: 6px solid #ECEFF1;
border-bottom: 6px solid #ECEFF1;
}
.iconse{
width: 8px;
height: 8px;
display: inline-block;
border: none;
border-radius: 14px;
margin-right: 4px;
/* vertical-align: middle; */
}
.circle_color_0{
background-color:#FC4647;
}
.circle_color_1{
background-color:#FEB024;
}
.circle_color_2{
background-color:#0488EA;
}
.circle_color_3{
background-color:#808080;
}
.option-status{
font-size: 14px;
color:#656565;
}
.list_option{
height:54px;
padding: 4px;
}
.purchase-time{
margin-right: 2%;
float: right;
}
.provider-name{
width: 140px;
font-weight: bold;
color: #2196F3;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
display: inline-block;
margin-top: 12px;
}
.creator{
display: inline;
margin-right: 120px;
}
.creators{
float: right;
font-size: 12px;
margin-top: 12px;
margin-right: 10px;
color:#656565;
}
.purchase-list::-webkit-scrollbar{
display: none;
}
.purchase-list ul>li{
cursor: pointer;
height: 54px;
border-left: none;
border-right: none;
border-top: none;
border-bottom: 1px solid #EAEAEA;
}
.purchase-list ul>li:hover{
background-color: rgb(244, 245, 247);
}
.purchase-list .click{
background-color: rgb(242, 242, 242) !important;
}
.purchase-list .layui-laypage {
display: inline-block;
vertical-align: middle;
margin: 10px 0;
float:right;
font-size: 0;
}
.purchase-list .layui-laypage .layui-laypage-curr .layui-laypage-em{
background-color: transparent;
}
.purchase-list .layui-laypage .layui-laypage-curr em{
color: #2196F3;
}
.purchase-list .layui-laypage a, .layui-laypage button, .layui-laypage input, .layui-laypage select, .layui-laypage span {
border: 0px;
}
.purchase-list .layui-laypage a, .layui-laypage span {
padding: 0px 8px;
}
.purchase-list .layui-laypage a:hover{
color: #2196F3;
}
.purchase-list .layui-laypage-curr{
font-weight: bold;
}
.purchaseRNHint{
display: block;
width: 100%;
text-align: center;
font-size: 16px;
color: #888;
}
/*右侧详情数据*/
.right-data{
float:left;
width: 78%;
height: -webkit-fill-available;
margin-top: 10px;
margin-left: 6%;
}
.right-data .top{
margin-left: 20px;
}
.right-data .topNav{
position: relative;
}
.odd-numbers{
display: none;
position: absolute;
top: -20px;
right: 17%;
z-index: 99;
color: #2196F3;
}
.div_span{
color:#2196F3;
font-size: 14px;
}
.warehouse{
margin-left:40px;
}
.supplier{
font-weight: bold;
font-size: 18px;
color: #2196F3;
margin-left: -14px;
vertical-align: middle;
}
.supplier_sp{
vertical-align: middle;
margin-bottom:10px;
}
.span_v{
font-size: 16px;
vertical-align: middle;
}
.providerName{
vertical-align: top;
}
/*表格数据*/
.table-data{
width: 1105px;
margin-top:-40px;
height: 380px;
overflow: auto;
margin-left: 20px;
}
/* .table-data table tbody::-webkit-scrollbar{
display: none;
} */
.table-data table tbody {
display:block;
height:350px;
overflow-y:auto;
}
.table-data table tbody::-webkit-scrollbar {
width: 5px;
height: 1px;
}
.table-data table tbody::-webkit-scrollbar-thumb {
border-radius: 2px;
-webkit-box-shadow: inset 0 0 5px #fff;
background: #C1C1C1;
}
.table-data table tbody::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 5px #fff;
border-radius: 10px;
background: #fff;
}
.table-data table thead, tbody tr {
display:table;
table-layout:fixed;
position: relative;
}
.table-data table tbody tr:hover {
background-color: #E3F2FD !important;
}
.table-data table tbody tr:hover i.deletecommodity{
display: block;
}
.table-data table tbody tr:hover td span{
display:none;
}
.deletecommodity{
color: red;
display: none;
position: absolute;
left: 20px;
top: 4px;
font-size: 20px;
}
thead{
background-color: #2196F3;
}
.table-data th{
color:#fff;
font-size: 12px;
width: 104px;
height: 30px;
text-align: center;
}
.wrap{
width: 104px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
text-align: center;
}
.odd{
background-color: #F2F2F2 !important;
}
.even{
background-color: #fff;
}
.table-data td{
font-size: 11px;
width: 104px;
height: 30px;
text-align: center;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
position: relative;
}
.table-data td input{
width: 50px;
text-align: center;
}
.table-data td button{
border: none;
background-color: rgba(255,255,255,0.01);
font-size: x-large;
color: #2196F3;
text-align: center;
position: absolute;
top: 6px;
right: 0px;
cursor: pointer;
}
.btn{
background-color: #808080;
color: #fff;
margin-left: -30px;
}
.cost{
width: 100%;
height: 80px;
text-align: right;
line-height: 2;
}
.cost span{
margin-right:50px;
}
.content{
margin-top:5px;
margin-right:80px;
height: 36px;
}
.content ul li button{
font-size:12px;
}
.cost_audit_stastu{
color:#fff;
height: 100%;
}
.cost_audit_stastu button{
background-color:#2196F3;
border:none;
color:#fff;
height: 100%;
width:44px;
}
.cost li{
float: right;
height: 30px;
text-align: center;
vertical-align: middle;
line-height:30px;
width: max-content;
margin-right: 40px;
}
.cost li b span{
margin-right: 0px;
}
.amount{
font-size:13px;
color:#2196F3;
}
/*工作区*/
.workflow{
width: 100%;
height:80px;
margin-top: 20px;
margin-left: 16px;
}
.workflow label{
font-size:16px;
font-weight: bold;
color:#656565;
}
.workflow li{
float:left;
color:#808080;
width:80px;
height:30px;
font-size:16px;
text-align: center;
line-height:30px
}
/*其他选项卡*/
.else{
position: absolute;
margin-bottom: 20px;
margin-top: -80px;
margin-left: 40%;
}
.else label{
font-size:16px;
font-weight: bold;
color:#656565;
}
.else li{
float:left;
color:#808080;
width:100px;
height:30px;
font-size:16px;
text-align: center;
line-height:30px
}
/*供应商弹出层*/
#chooseProviderWindow .layui-card-header ul{
display: inline-block;
overflow: hidden;
}
#providerList + div {
border: none;
}
#chooseProviderWindow .layui-card-header ul>li{
float: left;
}
#chooseProviderWindow .layui-laypage .layui-laypage-curr .layui-laypage-em{
background-color: #2196F3;
}
#chooseProviderWindow thead tr{
margin-top: 10px;
background-color: #2196F3;
color:#fff;
}
#chooseProviderWindow .layui-laypage button, .layui-laypage input, .layui-table-view select[lay-ignore] {
line-height: 1.3;
border-width: 1px;
border-style: solid;
border-color:#d2d2d2;
background-color: #fff;
border-radius: 2px;
}
#chooseProviderWindow .layui-laypage input:focus, .layui-table-view select[lay-ignore]{
border-color: #2196F3!important;
}
#chooseProviderWindow span.layui-laypage-limits{
display: none;
}
#chooseProviderWindow .layui-laypage-limits .layui-layer-title{
display: none;
}
.layui-layer-page .layui-layer-title{
display: none;
}
/*商品弹出层*/
#allCommodity thead tr{
background-color: #2196F3;
color:#fff;
}
.layui-form .layui-border-box .layui-table-view{
border: none;
}
.layui-col-md3{
background-color: #2196F3;
position: relative;
width:20%;
height:607px;
}
.layui-col-md9 {
width: 78%;
}
.layui-card-header h5{
color :#fff;
}
.closeLayerPage{
float: right;
margin-right: 10px;
width: 100px;
height: 34px;
border-radius: 10px;
border: none;
}
.seek_icon{
margin-left:-10px;
border-radius: 10px;
}
.color{
color:rgb(73,220,143);
}
.remarkword{
position: absolute;
margin-top: 40px;
}
#allCommodity .layui-layer .layui-layer-title{
display: none;
}
#allCommodity .layui-laypage-limits .layui-layer-title{
display: none;
}
#allCommodity span.layui-laypage-limits{
display: none;
} | 20190902_v1_1/src/nbr/src/main/webapp/css/bx_purchasingOrderList.css | *{ margin:0; padding:0;}
@font-face {
font-family: "SourceHanSansCN-Regular";
src: url("../font/SourceHanSansCN-Regular.woff2") format("woff2"),
url("../font/SourceHanSansCN-Regular.woff") format("woff"),
url("../font/SourceHanSansCN-Regular.ttf") format("truetype"),
url("../font/SourceHanSansCN-Regular.eot") format("embedded-opentype"),
url("../font/SourceHanSansCN-Regular.svg") format("svg");
}
body{
font-family: "SourceHanSansCN-Regular";
}
/* 閿熸枻鎷风ず閿熸枻鎷烽敓鏂ゆ嫹寮� */
.layui-layer-dialog a.layui-layer-btn0{
background-color: #2196F3;
border-color: #2196F3;
}
/* 主体 */
#purchasingOrderMain{
margin: 0px 10px;
min-width: 1450px;
}
#purchasingOrderMain::-webkit-scrollbar {
width: 6px;
height: 1px;
}
#purchasingOrderMain::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 5px #fff;
background: #C1C1C1;
}
#purchasingOrderMain::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 5px #fff;
background: #fff;
}
/* 顶部导航栏 */
.topNav .layui-form-item{
margin-top: 0px;
margin-bottom: 0;
}
.topNav_head{
border-top: 6px solid #ECEFF1;
border-left: 6px solid #ECEFF1;
border-bottom: 6px solid #ECEFF1;
display: flex;
align-items: center;
width: 100%;
}
.topNav .layui-form-label{
width: auto;
}
.topNav .layui-form-label span{
cursor: pointer;
}
.topNav .layui-form-label span b{
font-weight: normal;
}
.topNav .layui-form-label + ul{
display: none;
position: absolute;
top: 30px;
padding: 10px 0;
border: 1px solid #cccccc;
max-height: 235px;
overflow: auto;
background-color: #ffffff;
z-index: 10086;
}
.topNav .layui-form-label + ul::-webkit-scrollbar {
width: 6px;
height: 1px;
}
.topNav .layui-form-label + ul::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 6px #fff;
background: #C1C1C1;
}
.topNav .layui-form-label + ul::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 5px #fff;
border-radius: 10px;
background: #fff;
}
.topNav .layui-form-label + ul>li{
padding: 0 10px;
width: max-content;
line-height: 26px;
}
.topNav .layui-form-label + ul>li:hover{
background-color: rgb(244, 245, 247);
cursor: pointer;
}
.search-box{
position: absolute !important;
margin-left: 15px;
border: 1px solid #D2D2D2;
vertical-align: middle;
width: 200px;
height: 30px;
line-height: 30px;
text-overflow: ellipsis;
}
.td_search input:hover{
border: 1px solid #808080!important;
}
.td_icon{
position: absolute !important;
font-size: 20px;
line-height: 30px;
cursor: pointer;
margin-top: 2px;
margin-left: 218px !important;
}
/* 中部供应商 */
.supplier .supplier_span .providerName{
text-overflow: ellipsis;
max-width: 180px;
width: auto;
overflow: hidden;
display: inline-block;
height: 22px;
line-height: 22px;
white-space: nowrap;
}
/* 顶部按钮 */
.tabControl{
margin-top: 16px;
margin-left: 18.5%;
text-align: center;
overflow: hidden;
}
.tabControl .layui-btn{
float: left;
background-color: #eee;
color:#000;
margin-right:8px;
margin-bottom: 10px;
}
.tabControl ul li button:hover{
background-color: rgb(145, 179, 238);
color:#fff;
}
.tabControl .tabColor{
background-color:rgb(145, 179, 238);
color:#fff;
}
.unavailable{
border:none!important;
background-color: #eee!important;
color:#000!important;
}
/*左侧采购订单列表*/
.purchase-list{
margin-top: -58px;
padding: 5px;
width: 16%;
float:left;
z-index: 99;
border-left: 6px solid #ECEFF1;
border-right: 6px solid #ECEFF1;
border-bottom: 6px solid #ECEFF1;
}
.iconse{
width: 8px;
height: 8px;
display: inline-block;
border: none;
border-radius: 14px;
margin-right: 4px;
/* vertical-align: middle; */
}
.circle_color_0{
background-color:#FC4647;
}
.circle_color_1{
background-color:#FEB024;
}
.circle_color_2{
background-color:#0488EA;
}
.circle_color_3{
background-color:#808080;
}
.option-status{
font-size: 14px;
color:#656565;
}
.list_option{
height:54px;
padding: 4px;
}
.purchase-time{
margin-right: 2%;
float: right;
}
.provider-name{
width: 140px;
font-weight: bold;
color: #2196F3;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
display: inline-block;
margin-top: 12px;
}
.creator{
display: inline;
margin-right: 120px;
}
.creators{
float: right;
font-size: 12px;
margin-top: 12px;
margin-right: 10px;
color:#656565;
}
.purchase-list::-webkit-scrollbar{
display: none;
}
.purchase-list ul>li{
cursor: pointer;
height: 54px;
border-left: none;
border-right: none;
border-top: none;
border-bottom: 1px solid #EAEAEA;
}
.purchase-list ul>li:hover{
background-color: rgb(244, 245, 247);
}
.purchase-list .click{
background-color: rgb(242, 242, 242) !important;
}
.purchase-list .layui-laypage {
display: inline-block;
vertical-align: middle;
margin: 10px 0;
float:right;
font-size: 0;
}
.purchase-list .layui-laypage .layui-laypage-curr .layui-laypage-em{
background-color: transparent;
}
.purchase-list .layui-laypage .layui-laypage-curr em{
color: #2196F3;
}
.purchase-list .layui-laypage a, .layui-laypage button, .layui-laypage input, .layui-laypage select, .layui-laypage span {
border: 0px;
}
.purchase-list .layui-laypage a, .layui-laypage span {
padding: 0px 8px;
}
.purchase-list .layui-laypage a:hover{
color: #2196F3;
}
.purchase-list .layui-laypage-curr{
font-weight: bold;
}
.purchaseRNHint{
display: block;
width: 100%;
text-align: center;
font-size: 16px;
color: #888;
}
/*右侧详情数据*/
.right-data{
float:left;
width: 78%;
height: -webkit-fill-available;
margin-top: 10px;
margin-left: 6%;
}
.right-data .top{
margin-left: 20px;
}
.right-data .topNav{
position: relative;
}
.odd-numbers{
display: none;
position: absolute;
top: -20px;
right: 17%;
z-index: 99;
color: #2196F3;
}
.div_span{
color:#2196F3;
font-size: 14px;
}
.warehouse{
margin-left:40px;
}
.supplier{
font-weight: bold;
font-size: 18px;
color: #2196F3;
margin-left: -14px;
vertical-align: middle;
}
.supplier_sp{
vertical-align: middle;
margin-bottom:10px;
}
.span_v{
font-size: 16px;
vertical-align: middle;
}
.providerName{
vertical-align: top;
}
/*表格数据*/
.table-data{
width: 1105px;
margin-top:-40px;
height: 380px;
overflow: auto;
margin-left: 20px;
}
/* .table-data table tbody::-webkit-scrollbar{
display: none;
} */
.table-data table tbody {
display:block;
height:350px;
overflow-y:auto;
}
.table-data table tbody::-webkit-scrollbar {
width: 5px;
height: 1px;
}
.table-data table tbody::-webkit-scrollbar-thumb {
border-radius: 2px;
-webkit-box-shadow: inset 0 0 5px #fff;
background: #C1C1C1;
}
.table-data table tbody::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 5px #fff;
border-radius: 10px;
background: #fff;
}
.table-data table thead, tbody tr {
display:table;
table-layout:fixed;
position: relative;
}
.table-data table tbody tr:hover {
background-color: #E3F2FD !important;
}
.table-data table tbody tr:hover i.deletecommodity{
display: block;
}
.table-data table tbody tr:hover td span{
display:none;
}
.deletecommodity{
color: red;
display: none;
position: absolute;
left: 20px;
top: 4px;
font-size: 20px;
}
thead{
background-color: #2196F3;
}
.table-data th{
color:#fff;
font-size: 12px;
width: 104px;
height: 30px;
text-align: center;
}
.wrap{
width: 104px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
text-align: center;
}
.odd{
background-color: #F2F2F2 !important;
}
.even{
background-color: #fff;
}
.table-data td{
font-size: 11px;
width: 104px;
height: 30px;
text-align: center;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
position: relative;
}
.table-data td input{
width: 50px;
text-align: center;
}
.table-data td button{
border: none;
background-color: rgba(255,255,255,0.01);
font-size: x-large;
color: #2196F3;
text-align: center;
position: absolute;
top: 6px;
right: 0px;
cursor: pointer;
}
.btn{
background-color: #808080;
color: #fff;
margin-left: -30px;
}
.cost{
width: 100%;
height: 80px;
text-align: right;
line-height: 2;
}
.cost span{
margin-right:50px;
}
.content{
margin-top:5px;
margin-right:80px;
height: 36px;
}
.content ul li button{
font-size:12px;
}
.cost_audit_stastu{
color:#fff;
height: 100%;
}
.cost_audit_stastu button{
background-color:#2196F3;
border:none;
color:#fff;
height: 100%;
width:44px;
}
.cost li{
float: right;
height: 30px;
text-align: center;
vertical-align: middle;
line-height:30px;
width: max-content;
margin-right: 40px;
}
.cost li b span{
margin-right: 0px;
}
.amount{
font-size:13px;
color:#2196F3;
}
/*工作区*/
.workflow{
width: 100%;
height:80px;
margin-top: 20px;
margin-left: 16px;
}
.workflow label{
font-size:16px;
font-weight: bold;
color:#656565;
}
.workflow li{
float:left;
color:#808080;
width:80px;
height:30px;
font-size:16px;
text-align: center;
line-height:30px
}
/*其他选项卡*/
.else{
position: absolute;
margin-bottom: 20px;
margin-top: -80px;
margin-left: 40%;
}
.else label{
font-size:16px;
font-weight: bold;
color:#656565;
}
.else li{
float:left;
color:#808080;
width:100px;
height:30px;
font-size:16px;
text-align: center;
line-height:30px
}
/*供应商弹出层*/
#chooseProviderWindow .layui-card-header ul{
display: inline-block;
overflow: hidden;
}
#providerList + div {
border: none;
}
#chooseProviderWindow .layui-card-header ul>li{
float: left;
}
#chooseProviderWindow .layui-laypage .layui-laypage-curr .layui-laypage-em{
background-color: #2196F3;
}
#chooseProviderWindow thead tr{
margin-top: 10px;
background-color: #2196F3;
color:#fff;
}
#chooseProviderWindow .layui-laypage button, .layui-laypage input, .layui-table-view select[lay-ignore] {
line-height: 1.3;
border-width: 1px;
border-style: solid;
border-color:#d2d2d2;
background-color: #fff;
border-radius: 2px;
}
#chooseProviderWindow .layui-laypage input:focus, .layui-table-view select[lay-ignore]{
border-color: #2196F3!important;
}
#chooseProviderWindow span.layui-laypage-limits{
display: none;
}
#chooseProviderWindow .layui-laypage-limits .layui-layer-title{
display: none;
}
.layui-layer-page .layui-layer-title{
display: none;
}
/*商品弹出层*/
#allCommodity thead tr{
background-color: #2196F3;
color:#fff;
}
.layui-form .layui-border-box .layui-table-view{
border: none;
}
.layui-col-md3{
background-color: #2196F3;
position: relative;
width:20%;
height:607px;
}
.layui-col-md9 {
width: 78%;
}
.layui-card-header h5{
color :#fff;
}
.closeLayerPage{
float: right;
margin-right: 10px;
width: 100px;
height: 34px;
border-radius: 10px;
border: none;
}
.seek_icon{
margin-left:-10px;
border-radius: 10px;
}
.color{
color:rgb(73,220,143);
}
.remarkword{
position: absolute;
margin-top: 40px;
}
#allCommodity .layui-layer .layui-layer-title{
display: none;
}
#allCommodity .layui-laypage-limits .layui-layer-title{
display: none;
}
#allCommodity span.layui-laypage-limits{
display: none;
} | 0.229535 | 0.044019 |
html,
body {
width: 100%;
height: 100%;
}
body {
font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
}
a:focus, a:visited, a:hover {
text-decoration: none;
}
/* BACKGROUNDS */
.bg-page {
background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url("../img/page.png") no-repeat center center scroll;
background-position: center center;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
position: absolute;
min-width: 100%;
width: 100%;
min-height: 100%;
z-index: 1;
background-position: right 0;
}
.bg-home {
background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url("../img/home.jpg") no-repeat center center scroll;
background-position: center center;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
position: absolute;
min-width: 100%;
width: 100%;
min-height: 100%;
z-index: 1;
background-position: right 0;
}
/* Nav*/
.navbar {
padding-bottom: 0px !important;
margin-bottom: 0px !important;
}
.navbar-default .navbar-nav {
margin: 0px !important;
width: 100%;
text-align: center;
}
.navbar-default .navbar-nav > li {
float: none;
display: inline-block;
font-size: 15px;
line-height: 1.5em;
text-transform: uppercase;
text-decoration: none;
list-style-type: none;
font-weight: 300;
letter-spacing: 1px;
}
.navbar-default .navbar-nav > li > a:hover {
float: none;
display: inline-block;
color: #fff;
}
.navbar-default {
background-color: #000 !important;
border: none !important;
}
.navbar-default .navbar-toggle {
background: none !important;
border-radius: 0px !important;
border: none;
margin-right: 0px !important;
width: 100%;
}
.navbar-toggle span {
font-size: 13px;
text-transform: uppercase;
text-decoration: none;
list-style-type: none;
font-weight: 300;
letter-spacing: 1px;
color: #fff;
}
.navbar-default .navbar-toggle:hover {
background: none !important;
}
.navbar-collapse {
border: none;
-webkit-box-shadow: none;
}
/*Desktop Nav*/
.main-nav {
position: fixed;
top: 15px;
left: 30px;
background-color: rgba(0, 0, 0, 0);
}
.main-nav ul {
padding: 0px;
}
.main-nav ul li {
margin: .75em .5em .75em 0;
font-size: 13px;
line-height: 1.5em;
text-transform: uppercase;
text-decoration: none;
list-style-type: none;
font-weight: 300;
}
.main-nav ul li > a {
color: #fff;
font-size: 15px;
letter-spacing: 3px;
}
.main-nav ul li > a:hover {
text-decoration: none;
color: rgba(255, 255, 255, 0.3);
}
.main-nav ul li > a:visited {
text-decoration: none;
}
.main-nav ul li > a:focus{
text-decoration: none;
}
/*Social Nav*/
.social-nav {
position: fixed;
top: 10px;
right: 20px;
background-color: rgba(0, 0, 0, 0);
}
.social-nav ul {
padding: 0px;
}
.social-nav ul li {
display: inline-block;
margin: .75em .5em .75em 0;
font-size: 20px;
line-height: 1.5em;
text-transform: uppercase;
text-decoration: none;
list-style-type: none;
font-weight: 300;
letter-spacing: 1px;
}
.social-nav ul li > a {
color: #fff;
}
.social-nav ul li > a:hover {
text-decoration: none;
color: rgba(255, 255, 255, 0.3);
}
/*CONTENT*/
.container {
max-width: 900px;
}
.page .container {
margin-top: 8vh;
margin-bottom: 8vh;
justify-content : center;
}
.white {
color: #fff;
}
.bold {
font-weight: 400;
}
.vertical-center {
min-height: 100%;
min-height: 100vh;
/* Make it a flex container */
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
/* Align the bootstrap's container vertically */
-webkit-box-align : center;
-webkit-align-items : center;
-moz-box-align : center;
-ms-flex-align : center;
/* In legacy web browsers such as Firefox 9
we need to specify the width of the flex container */
width: 100%;
-webkit-box-pack : center;
-moz-box-pack : center;
-ms-flex-pack : center;
-webkit-justify-content : center;
justify-content : center;
}
.page-head > .jumbotron {
background: none;
padding-top: 0px;
padding-bottom: 0px;
margin-bottom: 20px;
}
.logo {
max-width: 80%;
}
/*Show Page*/
.show {
padding: 10px 10px 20px 10px;
}
.show > a:hover {
color: rgba(255, 255, 255, 0.34);
}
.show > a {
text-transform: uppercase;
padding: 10px;
text-decoration: none;
}
.show .ticket {
border: 1px solid #fff;
border-radius: 2px;
}
.show .ticket:hover {
border: 1px solid #fff;
background: #fff;
color: #000;
}
/* Shop Page */
.product-img {
display: block;
margin: 35px;
line-height: 1.42857143;
background-color: #fff;
}
.product-img:hover{
opacity: 0.9;
}
.product-img > p {
color: #000;
padding: 10px;
}
.product-img > p:hover {
text-decoration: underline;
}
.product-img > img {
width: 100%;
padding: 20px;
}
/* Product Page */
.product-jumbrotron > img {
width: 100%;
background: #fff;
padding: 50px;
}
.product-details > .title > h1 {
margin: 0px;
color: #fff;
font-size: 25px;
}
.product-details > .title > p {
margin-top: -7px;
font-size: 30px;
color: #fff;
}
.product-details > p {
color: #fff;
}
.product-details > .collection {
line-height: 2em;
}
.product-details > .collection >a {
text-decoration: underline;
color: #fff;
}
.product-details > .thumbnails {
margin-top: 10px;
}
.product-details > .thumbnails > img {
background-color: #fff;
width: 45%;
height: 45%;
margin: 5px;
opacity: 0.4;
padding:10px;
}
.product-details > .thumbnails > img:hover {
opacity: 1;
cursor: pointer;
}
.product-details > .cart > a {
text-decoration: none;
color: #fff;
border: 1px solid #fff;
max-width: 100%;
margin-top: 20px;
padding: 10px;
text-transform: uppercase;
}
.product-details > .cart > a:hover {
background-color: #fff;
color: #000;
cursor: pointer;
}
/* BLOG */
.thumbnail {
border: none !important;
background: none !important;
padding: none !important;
margin: none !important;
}
.post {
background-color: rgba(255, 255, 255, 0.3);
}
.blog-thumbnail {
display: block;
margin: 4px;
background-color: #000;
}
.blog-thumbnail > img {
width: 100%;
padding: 0px;
margin: -9px;
}
.blog-thumbnail > h2 {
margin-left: 7px;
margin-top: 0px;
padding: 10px 0px;
text-transform: uppercase;
font-weight: 400;
font-style: italic;
color: #fff;
}
.blog-thumbnail > img:hover {
opacity: 0.8;
}
/*BLOG POST*/
.post-details {
padding: 20px;
}
.post-details > .title > h1 {
color: #fff;
}
.post-details > p,h1,h2,h3,h4,h5{
color: #fff; | css/style.css | html,
body {
width: 100%;
height: 100%;
}
body {
font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
}
a:focus, a:visited, a:hover {
text-decoration: none;
}
/* BACKGROUNDS */
.bg-page {
background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url("../img/page.png") no-repeat center center scroll;
background-position: center center;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
position: absolute;
min-width: 100%;
width: 100%;
min-height: 100%;
z-index: 1;
background-position: right 0;
}
.bg-home {
background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url("../img/home.jpg") no-repeat center center scroll;
background-position: center center;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
position: absolute;
min-width: 100%;
width: 100%;
min-height: 100%;
z-index: 1;
background-position: right 0;
}
/* Nav*/
.navbar {
padding-bottom: 0px !important;
margin-bottom: 0px !important;
}
.navbar-default .navbar-nav {
margin: 0px !important;
width: 100%;
text-align: center;
}
.navbar-default .navbar-nav > li {
float: none;
display: inline-block;
font-size: 15px;
line-height: 1.5em;
text-transform: uppercase;
text-decoration: none;
list-style-type: none;
font-weight: 300;
letter-spacing: 1px;
}
.navbar-default .navbar-nav > li > a:hover {
float: none;
display: inline-block;
color: #fff;
}
.navbar-default {
background-color: #000 !important;
border: none !important;
}
.navbar-default .navbar-toggle {
background: none !important;
border-radius: 0px !important;
border: none;
margin-right: 0px !important;
width: 100%;
}
.navbar-toggle span {
font-size: 13px;
text-transform: uppercase;
text-decoration: none;
list-style-type: none;
font-weight: 300;
letter-spacing: 1px;
color: #fff;
}
.navbar-default .navbar-toggle:hover {
background: none !important;
}
.navbar-collapse {
border: none;
-webkit-box-shadow: none;
}
/*Desktop Nav*/
.main-nav {
position: fixed;
top: 15px;
left: 30px;
background-color: rgba(0, 0, 0, 0);
}
.main-nav ul {
padding: 0px;
}
.main-nav ul li {
margin: .75em .5em .75em 0;
font-size: 13px;
line-height: 1.5em;
text-transform: uppercase;
text-decoration: none;
list-style-type: none;
font-weight: 300;
}
.main-nav ul li > a {
color: #fff;
font-size: 15px;
letter-spacing: 3px;
}
.main-nav ul li > a:hover {
text-decoration: none;
color: rgba(255, 255, 255, 0.3);
}
.main-nav ul li > a:visited {
text-decoration: none;
}
.main-nav ul li > a:focus{
text-decoration: none;
}
/*Social Nav*/
.social-nav {
position: fixed;
top: 10px;
right: 20px;
background-color: rgba(0, 0, 0, 0);
}
.social-nav ul {
padding: 0px;
}
.social-nav ul li {
display: inline-block;
margin: .75em .5em .75em 0;
font-size: 20px;
line-height: 1.5em;
text-transform: uppercase;
text-decoration: none;
list-style-type: none;
font-weight: 300;
letter-spacing: 1px;
}
.social-nav ul li > a {
color: #fff;
}
.social-nav ul li > a:hover {
text-decoration: none;
color: rgba(255, 255, 255, 0.3);
}
/*CONTENT*/
.container {
max-width: 900px;
}
.page .container {
margin-top: 8vh;
margin-bottom: 8vh;
justify-content : center;
}
.white {
color: #fff;
}
.bold {
font-weight: 400;
}
.vertical-center {
min-height: 100%;
min-height: 100vh;
/* Make it a flex container */
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
/* Align the bootstrap's container vertically */
-webkit-box-align : center;
-webkit-align-items : center;
-moz-box-align : center;
-ms-flex-align : center;
/* In legacy web browsers such as Firefox 9
we need to specify the width of the flex container */
width: 100%;
-webkit-box-pack : center;
-moz-box-pack : center;
-ms-flex-pack : center;
-webkit-justify-content : center;
justify-content : center;
}
.page-head > .jumbotron {
background: none;
padding-top: 0px;
padding-bottom: 0px;
margin-bottom: 20px;
}
.logo {
max-width: 80%;
}
/*Show Page*/
.show {
padding: 10px 10px 20px 10px;
}
.show > a:hover {
color: rgba(255, 255, 255, 0.34);
}
.show > a {
text-transform: uppercase;
padding: 10px;
text-decoration: none;
}
.show .ticket {
border: 1px solid #fff;
border-radius: 2px;
}
.show .ticket:hover {
border: 1px solid #fff;
background: #fff;
color: #000;
}
/* Shop Page */
.product-img {
display: block;
margin: 35px;
line-height: 1.42857143;
background-color: #fff;
}
.product-img:hover{
opacity: 0.9;
}
.product-img > p {
color: #000;
padding: 10px;
}
.product-img > p:hover {
text-decoration: underline;
}
.product-img > img {
width: 100%;
padding: 20px;
}
/* Product Page */
.product-jumbrotron > img {
width: 100%;
background: #fff;
padding: 50px;
}
.product-details > .title > h1 {
margin: 0px;
color: #fff;
font-size: 25px;
}
.product-details > .title > p {
margin-top: -7px;
font-size: 30px;
color: #fff;
}
.product-details > p {
color: #fff;
}
.product-details > .collection {
line-height: 2em;
}
.product-details > .collection >a {
text-decoration: underline;
color: #fff;
}
.product-details > .thumbnails {
margin-top: 10px;
}
.product-details > .thumbnails > img {
background-color: #fff;
width: 45%;
height: 45%;
margin: 5px;
opacity: 0.4;
padding:10px;
}
.product-details > .thumbnails > img:hover {
opacity: 1;
cursor: pointer;
}
.product-details > .cart > a {
text-decoration: none;
color: #fff;
border: 1px solid #fff;
max-width: 100%;
margin-top: 20px;
padding: 10px;
text-transform: uppercase;
}
.product-details > .cart > a:hover {
background-color: #fff;
color: #000;
cursor: pointer;
}
/* BLOG */
.thumbnail {
border: none !important;
background: none !important;
padding: none !important;
margin: none !important;
}
.post {
background-color: rgba(255, 255, 255, 0.3);
}
.blog-thumbnail {
display: block;
margin: 4px;
background-color: #000;
}
.blog-thumbnail > img {
width: 100%;
padding: 0px;
margin: -9px;
}
.blog-thumbnail > h2 {
margin-left: 7px;
margin-top: 0px;
padding: 10px 0px;
text-transform: uppercase;
font-weight: 400;
font-style: italic;
color: #fff;
}
.blog-thumbnail > img:hover {
opacity: 0.8;
}
/*BLOG POST*/
.post-details {
padding: 20px;
}
.post-details > .title > h1 {
color: #fff;
}
.post-details > p,h1,h2,h3,h4,h5{
color: #fff; | 0.371137 | 0.051893 |
#main-window:not([customizing]) #nav-bar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-icon,
#main-window:not([customizing]) #nav-bar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-text,
#main-window:not([customizing]) #nav-bar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-badge-stack,
#nav-bar toolbarbutton[type="menu-button"] .toolbarbutton-icon,
#nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#nav-bar .toolbarbutton-1[open] > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
#nav-bar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#nav-bar .toolbarbutton-1:not([checked]):not([open]):not(:active) > .toolbarbutton-icon,
#nav-bar .toolbarbutton-1:not([checked]):not([open]):not(:active) > .toolbarbutton-text,
#nav-bar .toolbarbutton-1:not([checked]):not([open]):not(:active) > .toolbarbutton-badge-stack,
#nav-bar .toolbarbutton-1:not([buttonover]):not([open]):not(:active) > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon,
#nav-bar .toolbarbutton-1:not([disabled=true]) > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
#nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-icon,
#nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-text,
#nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-badge-stack,
#nav-bar .toolbarbutton-1:not([buttonover]):not([open]):not(:active):hover > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon,
#nav-bar toolbarbutton[type="menu"][open]:not([disabled]) .toolbarbutton-icon,
#nav-bar toolbarbutton[type="menu-button"]:not([open]):hover:not([disabled]):active .toolbarbutton-icon,
#nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button:not([disabled=true]):-moz-any(:hover:active,:active, [open]) > .toolbarbutton-icon,
#nav-bar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker:not([disabled=true]) > .dropmarker-icon,
#nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-icon,
#nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-text,
#nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-badge-stack,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext:not([customizing]) #nav-bar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext:not([customizing]) #nav-bar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-text,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext:not([customizing]) #nav-bar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-badge-stack,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar toolbarbutton[type="menu-button"] .toolbarbutton-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1[open] > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([checked]):not([open]):not(:active) > .toolbarbutton-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([checked]):not([open]):not(:active) > .toolbarbutton-text,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([checked]):not([open]):not(:active) > .toolbarbutton-badge-stack,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([buttonover]):not([open]):not(:active) > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([disabled=true]) > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-text,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-badge-stack,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([buttonover]):not([open]):not(:active):hover > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon ,
#main-window:not([customizing]) #toolbar-menubar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active),
#toolbar-menubar toolbarbutton[type="menu-button"],
#toolbar-menubar .toolbarbutton-1 > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#toolbar-menubar .toolbarbutton-1[open] > .toolbarbutton-menubutton-button,
#toolbar-menubar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#toolbar-menubar .toolbarbutton-1:not([checked]):not([open]):not(:active),
#toolbar-menubar .toolbarbutton-1:not([buttonover]):not([open]):not(:active) > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon,
#toolbar-menubar .toolbarbutton-1:not([disabled=true]) > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#toolbar-menubar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-button ,
#toolbar-menubar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#toolbar-menubar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover,
#toolbar-menubar .toolbarbutton-1:not([buttonover]):not([open]):not(:active):hover > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon,
#toolbar-menubar toolbarbutton[type="menu"][open]:not([disabled]),
#toolbar-menubar toolbarbutton[type="menu-button"]:not([open]):hover:not([disabled]):active ,
#toolbar-menubar .toolbarbutton-1 > .toolbarbutton-menubutton-button:not([disabled=true]):-moz-any(:hover:active,:active,[open]),
#toolbar-menubar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker:not([disabled=true]) > .dropmarker-icon,
#toolbar-menubar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active,:active),
#main-window:not([customizing]) #PersonalToolbar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active),
#PersonalToolbar toolbarbutton[type="menu-button"],
#PersonalToolbar .toolbarbutton-1 > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#PersonalToolbar .toolbarbutton-1[open] > .toolbarbutton-menubutton-button,
#PersonalToolbar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#PersonalToolbar .toolbarbutton-1:not([checked]):not([open]):not(:active),
#PersonalToolbar .toolbarbutton-1:not([buttonover]):not([open]):not(:active) > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon,
#PersonalToolbar .toolbarbutton-1:not([disabled=true]) > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#PersonalToolbar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-button ,
#PersonalToolbar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#PersonalToolbar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover,
#PersonalToolbar .toolbarbutton-1:not([buttonover]):not([open]):not(:active):hover > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon,
#PersonalToolbar toolbarbutton[type="menu"][open]:not([disabled]),
#PersonalToolbar toolbarbutton[type="menu-button"]:not([open]):hover:not([disabled]):active ,
#PersonalToolbar .toolbarbutton-1 > .toolbarbutton-menubutton-button:not([disabled=true]):-moz-any(:hover:active,:active,[open]),
#PersonalToolbar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker:not([disabled=true]) > .dropmarker-icon,
#PersonalToolbar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active,:active) {
background: unset !important;
background-color: unset !important;
border-color: unset !important;
box-shadow: unset !important;
transition: unset !important;
}
/* back button tweaks */
#main-window:not([uidensity=compact]) toolbar:not(#TabsToolbar) #back-button > .toolbarbutton-text {
margin-top: -2px !important;
}
#main-window:not([uidensity=compact]) toolbar:not(#TabsToolbar) #back-button > .toolbarbutton-icon {
border: 1px solid transparent !important;
padding: 7px !important;
}
#main-window[uidensity=touch] toolbar:not(#TabsToolbar) #back-button > .toolbarbutton-icon {
padding: 10px !important;
margin-top: -1px !important;
}
toolbar:not(#TabsToolbar) .toolbarbutton-1 .toolbarbutton-badge-stack,
toolbar:not(#TabsToolbar) toolbaritem .toolbarbutton-1,
toolbar:not(#TabsToolbar) .toolbarbutton-1,
toolbar:not(#TabsToolbar) .toolbarbutton-1[type="menu-button"] toolbarbutton,
toolbar:not(#TabsToolbar) toolbaritem .toolbarbutton-1 :-moz-any(.toolbarbutton-icon, .toolbarbutton-text),
toolbar:not(#TabsToolbar) .toolbarbutton-1 :-moz-any(.toolbarbutton-icon, .toolbarbutton-text),
toolbar:not(#TabsToolbar) .toolbarbutton-1[type="menu-button"] toolbarbutton :-moz-any(.toolbarbutton-icon, .toolbarbutton-text){
background: unset !important;
box-shadow: unset !important;
}
toolbar:not(#TabsToolbar) toolbaritem .toolbarbutton-1,
toolbar:not(#TabsToolbar) .toolbarbutton-1,
toolbar:not(#TabsToolbar) .toolbarbutton-1[type="menu-button"] toolbarbutton{
-moz-appearance: toolbarbutton !important;
}
toolbar:not(#TabsToolbar) toolbaritem .toolbarbutton-1 .toolbarbutton-text,
toolbar:not(#TabsToolbar) .toolbarbutton-1:not([type="menu-button"]) .toolbarbutton-text,
toolbar:not(#TabsToolbar) .toolbarbutton-1[type="menu-button"] toolbarbutton .toolbarbutton-text{
display: -moz-box !important;
padding: 0 2px !important;
}
toolbar:not(#TabsToolbar) toolbaritem .toolbarbutton-1:not([type="menu-button"]),
toolbar:not(#TabsToolbar) .toolbarbutton-1:not([type="menu-button"]),
toolbar:not(#TabsToolbar) .toolbarbutton-1[type="menu-button"] toolbarbutton{
-moz-box-orient: vertical !important;
}
/* remove min-width to get shorter buttons - button width = text-width */
#nav-bar toolbaritem .toolbarbutton-1:not([type="menu-button"]):not(#nav-bar-overflow-button),
#nav-bar .toolbarbutton-1:not([type="menu-button"]):not(#nav-bar-overflow-button),
#nav-bar .toolbarbutton-1[type="menu-button"] toolbarbutton:not(#nav-bar-overflow-button){
min-width: 57px !important;
}
toolbar:not(#TabsToolbar) toolbaritem .toolbarbutton-1,
toolbar:not(#TabsToolbar) .toolbarbutton-1,
toolbar:not(#TabsToolbar) .toolbarbutton-1[type="menu-button"] toolbarbutton{
padding-top: 4px !important;
}
toolbar:not(#TabsToolbar) #bookmarks-menu-button::after {
visibility: collapse !important;
}
/* remove load/stop button animations */
toolbar:not(#TabsToolbar) #stop-button .toolbarbutton-animatable-image,
toolbar:not(#TabsToolbar) #reload-button .toolbarbutton-animatable-image {
visibility: collapse !important;
}
toolbar:not(#TabsToolbar) #stop-reload-button[animate] > #reload-button > .toolbarbutton-icon,
toolbar:not(#TabsToolbar) #stop-reload-button[animate] > #reload-button[displaystop] + #stop-button > .toolbarbutton-icon {
fill: unset !important;
}
@media (-moz-windows-classic) {
/* tweaks for Windows Classic theme */
toolbar:not(#TabsToolbar) toolbaritem .toolbarbutton-1:hover,
toolbar:not(#TabsToolbar) .toolbarbutton-1:hover,
toolbar:not(#TabsToolbar) .toolbarbutton-1[type="menu-button"] toolbarbutton:hover{
box-shadow: 1px 0 0 0 white inset,
0 1px 0 0 white inset,
-1px 0 0 0 gray inset,
0 -1px 0 0 gray inset !important;
}
}
toolbar toolbaritem .toolbarbutton-1[disabled] .toolbarbutton-text,
toolbar .toolbarbutton-1[disabled]:not([type="menu-button"]) .toolbarbutton-text,
toolbar .toolbarbutton-1[type="menu-button"] toolbarbutton[disabled] .toolbarbutton-text{
opacity: 0.6 !important;
}
/* menubar tweaks */
#main-window #toolbar-menubar toolbaritem .toolbarbutton-1,
#main-window #toolbar-menubar .toolbarbutton-1,
#main-window #toolbar-menubar .toolbarbutton-1[type="menu-button"] toolbarbutton{
padding: 0 3px !important;
} | .mozilla/firefox/PROF.default/chrome/css/toolbars/toolbar_mode_icons_and_text.css | #main-window:not([customizing]) #nav-bar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-icon,
#main-window:not([customizing]) #nav-bar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-text,
#main-window:not([customizing]) #nav-bar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-badge-stack,
#nav-bar toolbarbutton[type="menu-button"] .toolbarbutton-icon,
#nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#nav-bar .toolbarbutton-1[open] > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
#nav-bar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#nav-bar .toolbarbutton-1:not([checked]):not([open]):not(:active) > .toolbarbutton-icon,
#nav-bar .toolbarbutton-1:not([checked]):not([open]):not(:active) > .toolbarbutton-text,
#nav-bar .toolbarbutton-1:not([checked]):not([open]):not(:active) > .toolbarbutton-badge-stack,
#nav-bar .toolbarbutton-1:not([buttonover]):not([open]):not(:active) > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon,
#nav-bar .toolbarbutton-1:not([disabled=true]) > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
#nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-icon,
#nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-text,
#nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-badge-stack,
#nav-bar .toolbarbutton-1:not([buttonover]):not([open]):not(:active):hover > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon,
#nav-bar toolbarbutton[type="menu"][open]:not([disabled]) .toolbarbutton-icon,
#nav-bar toolbarbutton[type="menu-button"]:not([open]):hover:not([disabled]):active .toolbarbutton-icon,
#nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button:not([disabled=true]):-moz-any(:hover:active,:active, [open]) > .toolbarbutton-icon,
#nav-bar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker:not([disabled=true]) > .dropmarker-icon,
#nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-icon,
#nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-text,
#nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-badge-stack,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext:not([customizing]) #nav-bar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext:not([customizing]) #nav-bar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-text,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext:not([customizing]) #nav-bar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active) > .toolbarbutton-badge-stack,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar toolbarbutton[type="menu-button"] .toolbarbutton-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1[open] > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([checked]):not([open]):not(:active) > .toolbarbutton-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([checked]):not([open]):not(:active) > .toolbarbutton-text,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([checked]):not([open]):not(:active) > .toolbarbutton-badge-stack,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([buttonover]):not([open]):not(:active) > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([disabled=true]) > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-icon,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-text,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-badge-stack,
#main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #nav-bar .toolbarbutton-1:not([buttonover]):not([open]):not(:active):hover > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon ,
#main-window:not([customizing]) #toolbar-menubar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active),
#toolbar-menubar toolbarbutton[type="menu-button"],
#toolbar-menubar .toolbarbutton-1 > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#toolbar-menubar .toolbarbutton-1[open] > .toolbarbutton-menubutton-button,
#toolbar-menubar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#toolbar-menubar .toolbarbutton-1:not([checked]):not([open]):not(:active),
#toolbar-menubar .toolbarbutton-1:not([buttonover]):not([open]):not(:active) > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon,
#toolbar-menubar .toolbarbutton-1:not([disabled=true]) > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#toolbar-menubar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-button ,
#toolbar-menubar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#toolbar-menubar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover,
#toolbar-menubar .toolbarbutton-1:not([buttonover]):not([open]):not(:active):hover > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon,
#toolbar-menubar toolbarbutton[type="menu"][open]:not([disabled]),
#toolbar-menubar toolbarbutton[type="menu-button"]:not([open]):hover:not([disabled]):active ,
#toolbar-menubar .toolbarbutton-1 > .toolbarbutton-menubutton-button:not([disabled=true]):-moz-any(:hover:active,:active,[open]),
#toolbar-menubar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker:not([disabled=true]) > .dropmarker-icon,
#toolbar-menubar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active,:active),
#main-window:not([customizing]) #PersonalToolbar .toolbarbutton-1[disabled=true]:-moz-any([open],[checked],:hover:active,:active),
#PersonalToolbar toolbarbutton[type="menu-button"],
#PersonalToolbar .toolbarbutton-1 > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#PersonalToolbar .toolbarbutton-1[open] > .toolbarbutton-menubutton-button,
#PersonalToolbar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#PersonalToolbar .toolbarbutton-1:not([checked]):not([open]):not(:active),
#PersonalToolbar .toolbarbutton-1:not([buttonover]):not([open]):not(:active) > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon,
#PersonalToolbar .toolbarbutton-1:not([disabled=true]) > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#PersonalToolbar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-button ,
#PersonalToolbar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
#PersonalToolbar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover,
#PersonalToolbar .toolbarbutton-1:not([buttonover]):not([open]):not(:active):hover > .toolbarbutton-menubutton-dropmarker:not([disabled]) > .dropmarker-icon,
#PersonalToolbar toolbarbutton[type="menu"][open]:not([disabled]),
#PersonalToolbar toolbarbutton[type="menu-button"]:not([open]):hover:not([disabled]):active ,
#PersonalToolbar .toolbarbutton-1 > .toolbarbutton-menubutton-button:not([disabled=true]):-moz-any(:hover:active,:active,[open]),
#PersonalToolbar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker:not([disabled=true]) > .dropmarker-icon,
#PersonalToolbar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active,:active) {
background: unset !important;
background-color: unset !important;
border-color: unset !important;
box-shadow: unset !important;
transition: unset !important;
}
/* back button tweaks */
#main-window:not([uidensity=compact]) toolbar:not(#TabsToolbar) #back-button > .toolbarbutton-text {
margin-top: -2px !important;
}
#main-window:not([uidensity=compact]) toolbar:not(#TabsToolbar) #back-button > .toolbarbutton-icon {
border: 1px solid transparent !important;
padding: 7px !important;
}
#main-window[uidensity=touch] toolbar:not(#TabsToolbar) #back-button > .toolbarbutton-icon {
padding: 10px !important;
margin-top: -1px !important;
}
toolbar:not(#TabsToolbar) .toolbarbutton-1 .toolbarbutton-badge-stack,
toolbar:not(#TabsToolbar) toolbaritem .toolbarbutton-1,
toolbar:not(#TabsToolbar) .toolbarbutton-1,
toolbar:not(#TabsToolbar) .toolbarbutton-1[type="menu-button"] toolbarbutton,
toolbar:not(#TabsToolbar) toolbaritem .toolbarbutton-1 :-moz-any(.toolbarbutton-icon, .toolbarbutton-text),
toolbar:not(#TabsToolbar) .toolbarbutton-1 :-moz-any(.toolbarbutton-icon, .toolbarbutton-text),
toolbar:not(#TabsToolbar) .toolbarbutton-1[type="menu-button"] toolbarbutton :-moz-any(.toolbarbutton-icon, .toolbarbutton-text){
background: unset !important;
box-shadow: unset !important;
}
toolbar:not(#TabsToolbar) toolbaritem .toolbarbutton-1,
toolbar:not(#TabsToolbar) .toolbarbutton-1,
toolbar:not(#TabsToolbar) .toolbarbutton-1[type="menu-button"] toolbarbutton{
-moz-appearance: toolbarbutton !important;
}
toolbar:not(#TabsToolbar) toolbaritem .toolbarbutton-1 .toolbarbutton-text,
toolbar:not(#TabsToolbar) .toolbarbutton-1:not([type="menu-button"]) .toolbarbutton-text,
toolbar:not(#TabsToolbar) .toolbarbutton-1[type="menu-button"] toolbarbutton .toolbarbutton-text{
display: -moz-box !important;
padding: 0 2px !important;
}
toolbar:not(#TabsToolbar) toolbaritem .toolbarbutton-1:not([type="menu-button"]),
toolbar:not(#TabsToolbar) .toolbarbutton-1:not([type="menu-button"]),
toolbar:not(#TabsToolbar) .toolbarbutton-1[type="menu-button"] toolbarbutton{
-moz-box-orient: vertical !important;
}
/* remove min-width to get shorter buttons - button width = text-width */
#nav-bar toolbaritem .toolbarbutton-1:not([type="menu-button"]):not(#nav-bar-overflow-button),
#nav-bar .toolbarbutton-1:not([type="menu-button"]):not(#nav-bar-overflow-button),
#nav-bar .toolbarbutton-1[type="menu-button"] toolbarbutton:not(#nav-bar-overflow-button){
min-width: 57px !important;
}
toolbar:not(#TabsToolbar) toolbaritem .toolbarbutton-1,
toolbar:not(#TabsToolbar) .toolbarbutton-1,
toolbar:not(#TabsToolbar) .toolbarbutton-1[type="menu-button"] toolbarbutton{
padding-top: 4px !important;
}
toolbar:not(#TabsToolbar) #bookmarks-menu-button::after {
visibility: collapse !important;
}
/* remove load/stop button animations */
toolbar:not(#TabsToolbar) #stop-button .toolbarbutton-animatable-image,
toolbar:not(#TabsToolbar) #reload-button .toolbarbutton-animatable-image {
visibility: collapse !important;
}
toolbar:not(#TabsToolbar) #stop-reload-button[animate] > #reload-button > .toolbarbutton-icon,
toolbar:not(#TabsToolbar) #stop-reload-button[animate] > #reload-button[displaystop] + #stop-button > .toolbarbutton-icon {
fill: unset !important;
}
@media (-moz-windows-classic) {
/* tweaks for Windows Classic theme */
toolbar:not(#TabsToolbar) toolbaritem .toolbarbutton-1:hover,
toolbar:not(#TabsToolbar) .toolbarbutton-1:hover,
toolbar:not(#TabsToolbar) .toolbarbutton-1[type="menu-button"] toolbarbutton:hover{
box-shadow: 1px 0 0 0 white inset,
0 1px 0 0 white inset,
-1px 0 0 0 gray inset,
0 -1px 0 0 gray inset !important;
}
}
toolbar toolbaritem .toolbarbutton-1[disabled] .toolbarbutton-text,
toolbar .toolbarbutton-1[disabled]:not([type="menu-button"]) .toolbarbutton-text,
toolbar .toolbarbutton-1[type="menu-button"] toolbarbutton[disabled] .toolbarbutton-text{
opacity: 0.6 !important;
}
/* menubar tweaks */
#main-window #toolbar-menubar toolbaritem .toolbarbutton-1,
#main-window #toolbar-menubar .toolbarbutton-1,
#main-window #toolbar-menubar .toolbarbutton-1[type="menu-button"] toolbarbutton{
padding: 0 3px !important;
} | 0.119575 | 0.028301 |
body {
height: 100vh;
width: 100vw;
background-color: var(--fff);
display: flex;
align-items: center;
justify-content: center;
}
.ppanel-main {
filter: drop-shadow(5px 5px 15px #0003);
background-color: var(--fff2);
display: flex;
flex-direction: row;
justify-content: stretch;
border-radius: 20px;
animation: 0.5s cubic-bezier(0, .23, 0, .93) 0s 1 load;
}
@media (max-width:960px) {
.ppanel-main {
flex-direction: column;
justify-items: stretch;
width: 70%;
}
.right {
padding: 40px;
display: flex;
flex-direction: column;
width: auto !important;
}
}
@media (max-width:560px) {
.ppanel-main {
flex-direction: column;
justify-items: stretch;
width: 80%;
}
}
@media (max-width:960px) {}
@keyframes load {
0% {
transform: scale(0.5);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}
.left {
width: 50%;
background-color: var(--accent);
border-radius: 20px 0px 0px 20px;
}
.right {
padding: 40px;
display: flex;
flex-direction: column;
width: 550px;
}
.right-text {
font-weight: 900;
color: var(--accent);
}
.right-text-2 {
font-weight: 700;
font-size: 17px;
color: var(--accent);
}
.login-input {
padding: 7px;
border-radius: 5px;
color: var(--accent);
border: 0px;
background-color: var(--fff);
filter: drop-shadow(3px 3px 12px #0003);
}
.form {
display: flex;
flex-direction: column;
}
.input-header {
padding-top: 10px;
color: var(--accent);
font-size: 19px;
font-weight: 800;
}
.form {}
.divider {
width: 100%;
height: 2px;
margin-top: 10px;
margin-bottom: 10px;
background-color: var(--accent);
opacity: 0.3;
}
.abutton {
padding: 7px;
border-radius: 5px;
color: var(--accent);
border: 0px;
background-color: var(--fff);
filter: drop-shadow(3px 3px 12px #0003);
margin-top: 25px;
}
.dont {
font-size: 15px;
font-weight: 800;
margin-top: 20px;
color: var(--accent) !important;
}
a {
color: var(--accent);
}
.login-footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
display: flex;
justify-content: center;
padding-bottom: 10px;
color: var(--accent);
opacity: 0.4;
} | account.css | body {
height: 100vh;
width: 100vw;
background-color: var(--fff);
display: flex;
align-items: center;
justify-content: center;
}
.ppanel-main {
filter: drop-shadow(5px 5px 15px #0003);
background-color: var(--fff2);
display: flex;
flex-direction: row;
justify-content: stretch;
border-radius: 20px;
animation: 0.5s cubic-bezier(0, .23, 0, .93) 0s 1 load;
}
@media (max-width:960px) {
.ppanel-main {
flex-direction: column;
justify-items: stretch;
width: 70%;
}
.right {
padding: 40px;
display: flex;
flex-direction: column;
width: auto !important;
}
}
@media (max-width:560px) {
.ppanel-main {
flex-direction: column;
justify-items: stretch;
width: 80%;
}
}
@media (max-width:960px) {}
@keyframes load {
0% {
transform: scale(0.5);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}
.left {
width: 50%;
background-color: var(--accent);
border-radius: 20px 0px 0px 20px;
}
.right {
padding: 40px;
display: flex;
flex-direction: column;
width: 550px;
}
.right-text {
font-weight: 900;
color: var(--accent);
}
.right-text-2 {
font-weight: 700;
font-size: 17px;
color: var(--accent);
}
.login-input {
padding: 7px;
border-radius: 5px;
color: var(--accent);
border: 0px;
background-color: var(--fff);
filter: drop-shadow(3px 3px 12px #0003);
}
.form {
display: flex;
flex-direction: column;
}
.input-header {
padding-top: 10px;
color: var(--accent);
font-size: 19px;
font-weight: 800;
}
.form {}
.divider {
width: 100%;
height: 2px;
margin-top: 10px;
margin-bottom: 10px;
background-color: var(--accent);
opacity: 0.3;
}
.abutton {
padding: 7px;
border-radius: 5px;
color: var(--accent);
border: 0px;
background-color: var(--fff);
filter: drop-shadow(3px 3px 12px #0003);
margin-top: 25px;
}
.dont {
font-size: 15px;
font-weight: 800;
margin-top: 20px;
color: var(--accent) !important;
}
a {
color: var(--accent);
}
.login-footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
display: flex;
justify-content: center;
padding-bottom: 10px;
color: var(--accent);
opacity: 0.4;
} | 0.639849 | 0.106041 |
.ucSimpleHeader {
height: auto;
padding-top: 28px;
padding-bottom: 40px;
}
.phoneText{
padding-top: 10px;
*padding-top: 0px;
}
.content{
width: 100%;
}
.banner-box {
position: relative;
/*overflow: hidden;*/
min-height: 750px;
max-height: 1080px;
/*background: #18181A; for IE9 */
/*background: linear-gradient(to bottom, #101012, #1A1A1C, #151517);*/
background: #f8fcff;
background: linear-gradient(to bottom, #f8fcff, #f8fcff, #f8fcff);
}
.banner-box:before {
position: absolute;
content: ' ';
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(../images/banner.png) no-repeat center;
background-size: contain;
}
.main-form {
width: 298px;
position: absolute;
top: 16%;
right: 380px;
background-color: #FFF;
padding: 35px 35px 10px;
border-radius: 2px;
}
@media (max-width: 1440px) {
.main-form {
right: 220px;
top: 14%;
}
}
.qr-btn {
position: absolute;
top: 10px;
right: 10px;
width: 35px;
height: 35px;
background: url(../images/qr.png) no-repeat center;
cursor: pointer;
}
.qr-btn.pc-btn {
background: url(../images/pc.png) no-repeat center;
}
.qr-panel {
position: absolute;
width: 100%;
height: 450px;
top: 60px;
left: 0;
background-color: #FFF;
z-index: 500;
}
.qr-panel h3 {
text-align: center;
font-size: 18px;
color: #333;
font-weight: normal;
margin: 0;
}
.qr-panel .qr-img-box {
width: 300px;
height: 300px;
margin: 20px auto;
}
.qr-panel img {
max-width: 100%;
/*display: block;
margin: 20px auto;
width: 512px;
height: 512px;*/
}
.qr-panel .tips {
text-align: center;
font-size: 16px;
color: #999;
}
.qr-panel .qr-success-tips {
width: 260px;
height: 18px;
margin: 0 auto;
line-height: 18px;
text-indent: 20px;
font-size: 14px;
color: #333;
background: url(../images/qrbg.png) no-repeat -36px 0;
}
#toLogin{
color: #474747;
cursor: pointer;
}
.rememberField{
margin-bottom: 25px;
height: 24px;
line-height: 20px;
}
.rememberField label{
margin-right:7px;
cursor:pointer;
font-size: 14px;
color: #7f7f7f;
}
.rememberField label:hover{
color: #000000;
}
.rememberFieldForA{
margin-left: 90px;
}
.checkboxPic{ width: 20px;}
.transferField:after {
content: ' ';
display: block;
height: 0;
clear: both;
}
.go2forgetpwd {
float: right;
}
input[type="checkbox"]{
margin: 0px 0px 30px 5px;
float: left;
cursor: pointer;
width: 18px;
height: 18px;
border: solid 1px #dadada;
}
.checkChk{
background-position: -1px -53px;
cursor: pointer;
margin-bottom: 5px;
}
.checkUnchk{
background-position: -1px -73px;
}
#nextAutoLogin{
margin-left: -115px;
}
.tab-title{
font-size: 18px;
/*margin-bottom: 60px;*/
margin-top: 35px;
width: 300px;
text-align: center;
}
.rememberField{
margin-bottom: 30px;
height: 20px;
line-height: 20px;
}
#getKey{
width: 120px;
text-align: center;
border: none;
outline: none;
height: 46px;
line-height: 46px;
font-size: 14px;
position: absolute;
right: 13px;
top: 0px;
}
.form-line{
color: #d9d9d9;
height: 22px;
display: inline-block;
border-left: 1px solid #dadada;
position: absolute;
right: 140px;
top: 12px;
}
.register-line{
color: #B3ABAB;
display: inline-block;
border: 2px solid #B3ABAB;
border-left: 1px;
height: 10px;
line-height: 20px;
margin-right: 32px;
margin-left: 32px;
}
#kapkey{
width: 160px;
border: none;
outline: none;
height: 46px;
font-size: 14px;
line-height: 22px;
*height: 45px;
*line-height: 46px;
}
.lineWrap{
position: relative;
zoom: 1;
}
#password, #password1{
float: left;
width: 200px;
}
#pwdBtn{
margin-top: 13px;
margin-bottom: 10px;
}
.pwdBtn,.pwdBtnShow{
outline: none;
position: relative;
display: inline-block;
width: 30px;
height: 30px;
cursor: pointer;
overflow: hidden;
float: right;
margin-right: 5px;
}
.pwdBtnShow i, .pwdBtn i{
background: url("../images/elements.png") no-repeat;
_background-image: none;
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/resources/uc/web/base/images/elements.png');
}
.pwdBtn i {
background-position: -60px -93px;
_margin-left: -60px;
_margin-top: -93px;
}
.pwdBtnShow i {
background-position: -30px -92.65px;
_margin-left: -30px;
_margin-top: -93px;
}
#mainForm input{
line-height: 22px;
padding: 14px 0;
height: 18px;
*height: 16px;
*padding: 0px 0;
}
.cycode-height{
height: 20px;
}
/*reset*/
span.error, span.otherError{
display: block;
margin-left: 0px;
margin-bottom: 20px;
}
#password1::-ms-reveal {
display: none;
}
#password::-ms-clear {
display: none;
}
.cycodePhone {
line-height: 0px;
}
/*验证码弹框*/
.alertDialogContent .normalInput {position: relative; display: inline-block; padding: 0 10px; width: 320px; height: 50px; line-height: 22px; font-size: 16px; text-align:left; margin:10px 0 20px -7px; border: 1px solid #dadada; outline: none; color: #474747; zoom: 1; overflow: hidden;}
.alertDialogContent .normalInput .kapkey{font-size: 16px; width: 220px; border: none; outline: none;overflow: hidden;}
.alertDialogContent .normalInput #imgKey{width: 88px; height: 36px; float: right; top: 14px; overflow: hidden; position: absolute; margin-left: 13px;}
::-ms-clear{display: none;}
::-ms-reveal{display: none;}
.a_mregister{width: 50%;display: inline-block;text-align: right;}
.a_login{color:#939393;width: 50%;display: inline-block;text-align: left;}
#flymeFooter {
border-color: transparent !important;
position: static;
}
.transferField {
margin-bottom: 5px;
}
.normalInput{border-radius: 2px;}
.tip-box{position: relative;height: 33px;display: table;width: 100%;margin-bottom: 10px;margin-top: 26px;border: solid 1px #ffc2b3;background: #ffd1ca;border-radius: 2px;}
.tip-font{color: #666;font-size: 12px;padding-right: 25px;padding-left: 35px;display: table-cell;vertical-align: middle;}
.err-ico{background:url('../images/error-ico.png');width: 16px;height: 16px;display: inline-block;position: absolute;top: 10px;left: 10px;}
.close-ico{background:url('../images/close-ico.png');background-repeat: no-repeat;cursor: pointer;width: 16px;height: 16px;display: inline-block;position: absolute;top: 12px;right: 10px;}
.btn-error{border: 1px solid red;}
.btn-focus{border:1px solid #32a5e7;}
.visiblility-hidden{visibility: hidden;}
.main-form .normalInput {
margin-bottom: 20px;
} | laravel/public/home/meizu/css/vcodelogin.css | .ucSimpleHeader {
height: auto;
padding-top: 28px;
padding-bottom: 40px;
}
.phoneText{
padding-top: 10px;
*padding-top: 0px;
}
.content{
width: 100%;
}
.banner-box {
position: relative;
/*overflow: hidden;*/
min-height: 750px;
max-height: 1080px;
/*background: #18181A; for IE9 */
/*background: linear-gradient(to bottom, #101012, #1A1A1C, #151517);*/
background: #f8fcff;
background: linear-gradient(to bottom, #f8fcff, #f8fcff, #f8fcff);
}
.banner-box:before {
position: absolute;
content: ' ';
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(../images/banner.png) no-repeat center;
background-size: contain;
}
.main-form {
width: 298px;
position: absolute;
top: 16%;
right: 380px;
background-color: #FFF;
padding: 35px 35px 10px;
border-radius: 2px;
}
@media (max-width: 1440px) {
.main-form {
right: 220px;
top: 14%;
}
}
.qr-btn {
position: absolute;
top: 10px;
right: 10px;
width: 35px;
height: 35px;
background: url(../images/qr.png) no-repeat center;
cursor: pointer;
}
.qr-btn.pc-btn {
background: url(../images/pc.png) no-repeat center;
}
.qr-panel {
position: absolute;
width: 100%;
height: 450px;
top: 60px;
left: 0;
background-color: #FFF;
z-index: 500;
}
.qr-panel h3 {
text-align: center;
font-size: 18px;
color: #333;
font-weight: normal;
margin: 0;
}
.qr-panel .qr-img-box {
width: 300px;
height: 300px;
margin: 20px auto;
}
.qr-panel img {
max-width: 100%;
/*display: block;
margin: 20px auto;
width: 512px;
height: 512px;*/
}
.qr-panel .tips {
text-align: center;
font-size: 16px;
color: #999;
}
.qr-panel .qr-success-tips {
width: 260px;
height: 18px;
margin: 0 auto;
line-height: 18px;
text-indent: 20px;
font-size: 14px;
color: #333;
background: url(../images/qrbg.png) no-repeat -36px 0;
}
#toLogin{
color: #474747;
cursor: pointer;
}
.rememberField{
margin-bottom: 25px;
height: 24px;
line-height: 20px;
}
.rememberField label{
margin-right:7px;
cursor:pointer;
font-size: 14px;
color: #7f7f7f;
}
.rememberField label:hover{
color: #000000;
}
.rememberFieldForA{
margin-left: 90px;
}
.checkboxPic{ width: 20px;}
.transferField:after {
content: ' ';
display: block;
height: 0;
clear: both;
}
.go2forgetpwd {
float: right;
}
input[type="checkbox"]{
margin: 0px 0px 30px 5px;
float: left;
cursor: pointer;
width: 18px;
height: 18px;
border: solid 1px #dadada;
}
.checkChk{
background-position: -1px -53px;
cursor: pointer;
margin-bottom: 5px;
}
.checkUnchk{
background-position: -1px -73px;
}
#nextAutoLogin{
margin-left: -115px;
}
.tab-title{
font-size: 18px;
/*margin-bottom: 60px;*/
margin-top: 35px;
width: 300px;
text-align: center;
}
.rememberField{
margin-bottom: 30px;
height: 20px;
line-height: 20px;
}
#getKey{
width: 120px;
text-align: center;
border: none;
outline: none;
height: 46px;
line-height: 46px;
font-size: 14px;
position: absolute;
right: 13px;
top: 0px;
}
.form-line{
color: #d9d9d9;
height: 22px;
display: inline-block;
border-left: 1px solid #dadada;
position: absolute;
right: 140px;
top: 12px;
}
.register-line{
color: #B3ABAB;
display: inline-block;
border: 2px solid #B3ABAB;
border-left: 1px;
height: 10px;
line-height: 20px;
margin-right: 32px;
margin-left: 32px;
}
#kapkey{
width: 160px;
border: none;
outline: none;
height: 46px;
font-size: 14px;
line-height: 22px;
*height: 45px;
*line-height: 46px;
}
.lineWrap{
position: relative;
zoom: 1;
}
#password, #password1{
float: left;
width: 200px;
}
#pwdBtn{
margin-top: 13px;
margin-bottom: 10px;
}
.pwdBtn,.pwdBtnShow{
outline: none;
position: relative;
display: inline-block;
width: 30px;
height: 30px;
cursor: pointer;
overflow: hidden;
float: right;
margin-right: 5px;
}
.pwdBtnShow i, .pwdBtn i{
background: url("../images/elements.png") no-repeat;
_background-image: none;
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/resources/uc/web/base/images/elements.png');
}
.pwdBtn i {
background-position: -60px -93px;
_margin-left: -60px;
_margin-top: -93px;
}
.pwdBtnShow i {
background-position: -30px -92.65px;
_margin-left: -30px;
_margin-top: -93px;
}
#mainForm input{
line-height: 22px;
padding: 14px 0;
height: 18px;
*height: 16px;
*padding: 0px 0;
}
.cycode-height{
height: 20px;
}
/*reset*/
span.error, span.otherError{
display: block;
margin-left: 0px;
margin-bottom: 20px;
}
#password1::-ms-reveal {
display: none;
}
#password::-ms-clear {
display: none;
}
.cycodePhone {
line-height: 0px;
}
/*验证码弹框*/
.alertDialogContent .normalInput {position: relative; display: inline-block; padding: 0 10px; width: 320px; height: 50px; line-height: 22px; font-size: 16px; text-align:left; margin:10px 0 20px -7px; border: 1px solid #dadada; outline: none; color: #474747; zoom: 1; overflow: hidden;}
.alertDialogContent .normalInput .kapkey{font-size: 16px; width: 220px; border: none; outline: none;overflow: hidden;}
.alertDialogContent .normalInput #imgKey{width: 88px; height: 36px; float: right; top: 14px; overflow: hidden; position: absolute; margin-left: 13px;}
::-ms-clear{display: none;}
::-ms-reveal{display: none;}
.a_mregister{width: 50%;display: inline-block;text-align: right;}
.a_login{color:#939393;width: 50%;display: inline-block;text-align: left;}
#flymeFooter {
border-color: transparent !important;
position: static;
}
.transferField {
margin-bottom: 5px;
}
.normalInput{border-radius: 2px;}
.tip-box{position: relative;height: 33px;display: table;width: 100%;margin-bottom: 10px;margin-top: 26px;border: solid 1px #ffc2b3;background: #ffd1ca;border-radius: 2px;}
.tip-font{color: #666;font-size: 12px;padding-right: 25px;padding-left: 35px;display: table-cell;vertical-align: middle;}
.err-ico{background:url('../images/error-ico.png');width: 16px;height: 16px;display: inline-block;position: absolute;top: 10px;left: 10px;}
.close-ico{background:url('../images/close-ico.png');background-repeat: no-repeat;cursor: pointer;width: 16px;height: 16px;display: inline-block;position: absolute;top: 12px;right: 10px;}
.btn-error{border: 1px solid red;}
.btn-focus{border:1px solid #32a5e7;}
.visiblility-hidden{visibility: hidden;}
.main-form .normalInput {
margin-bottom: 20px;
} | 0.278944 | 0.061199 |
*{
margin: 0;
padding: 0;
}
body{
height: 100vh;
width: 100vw;
}
#Page{
height: 100vh;
width: 100vw;
/* background-color: #eee; */
background-image: url("./Images/bg3.jpg");
background-size: cover;
background-repeat: no-repeat;
}
/* Main */
#Main{
height: 96vh;
border: .1px solid #CEC8C2;
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.060),1px 5px 5px 1px rgba(0, 0, 0, 0.200);
}
@media only screen and (min-width: 1441px) {
#Main{
width: 1396px;
margin: 0 auto;
}
}
/* Panel */
#Panel{
display: inline-block;
width: 30%;
height: 100%;
overflow: auto;
border-right: 1px solid #CEC8C2;
background-color: #eee;
}
/* User */
#User{
width: 100%;
height: 60px;
padding: 10px 16px;
position: relative;
border-bottom: 1px solid #CEC8C2;
}
.User-img{
width: 40px;
height: 40px;
border-radius: 50px;
display: inline-block;
}
.User-Settings{
display: inline-block;
position: absolute;
right: 10px;
top: 18px;
display: inline-block;
font-size: 25px;
color:black;
cursor: pointer;
transition: color .1s;
}
.User-Settings:hover{
color: rgb(32, 29, 75);
animation: App-logo-spin infinite 10s linear;
}
@keyframes App-logo-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
/* Users */
#Users{
width: 100%;
overflow: auto;
height: calc(100% - 60px);
}
.Lobby{
width: 100%;
height: 72px;
position: relative;
display: flex;
align-items: center;
cursor: pointer;
transition: color .1s;
}
.Lobby:hover{
color: rgb(61, 56, 133);
}
.Lobby-img{
padding: 0 15px 0 13px;
display: inline-block;
}
.Lobby-img div{
height: 49px;
width: 49px;
border-radius: 50px;
}
.Users-user{
width: 100%;
height: 72px;
position: relative;
display: flex;
align-items: center;
cursor: pointer;
transition: color .1s;
}
.Users-user:hover{
color: rgb(61, 56, 133);
}
.Users-user-img{
padding: 0 15px 0 13px;
display: inline-block;
}
.Users-user-img div{
height: 49px;
width: 49px;
border-radius: 50px;
}
/* Chat */
#Chat{
display: inline-block;
width: 70%;
height: 100%;
overflow: auto;
}
.chat-description{
height: 60px;
width: 100%;
border-bottom: 1px solid #CEC8C2;
padding: 10px 16px;
background-color: #eee;
}
.chat-lobby-description-img{
width: 40px;
height: 40px;
border-radius: 50px;
display: inline-block;
overflow: auto;
}
.chat-lobby-description{
display: inline-block;
padding: 0 15px 0 13px;
overflow: auto;
}
.chat-user-description-img{
width: 40px;
height: 40px;
border-radius: 50px;
display: inline-block;
overflow: auto;
}
.chat-user-description{
display: inline-block;
padding: 0 15px 0 13px;
}
.chat-user-description p,h5{
padding: 0;
margin: 0;
}
.Mesaj{
width: 100%;
height: calc(100% - 60px);
}
.chat-space{
width: 100%;
height: calc(100% - 62px);
overflow: auto;
}
#scroll-style::-webkit-scrollbar-track
{
background-color: transparent;
border-radius: 10px;
}
#scroll-style::-webkit-scrollbar
{
width: 8px;
background-color: transparent;
}
#scroll-style::-webkit-scrollbar-thumb
{
border-radius: 10px;
background-image: -webkit-gradient(linear,
left bottom,
left top,
color-stop(0.44, rgb(122,153,217)),
color-stop(0.72, rgb(73,125,189)),
color-stop(0.86, rgb(28,58,148)));
}
.gelen-msg{
word-wrap: break-word;
}
.gelen-msg-lobby{
max-width: fit-content;
width: 40%;
background-color: #03182D;
padding: 5px 10px 5px 10px;
color: white;
border-radius: 5px;
margin: 10px 0px;
margin-left: 5%;
}
.gonderilen-msg{
color: white;
display: flex;
justify-content: flex-end;
width: 90%;
}
.gonderilen-msg div{
max-width: fit-content;
width: 40%;
background-color: #0464BD;
padding: 5px 10px 5px 10px;
border-radius: 5px;
margin: 10px 0px;
word-wrap: break-word;
}
.send-msg-space{
width: 100%;
height: 62px;
background-color: white;
padding: 5px 10px;
}
.send-msg-text-space{
width: 90%;
display: inline-block;
}
.send-msg-text{
border-radius: 50px;
border: none;
}
.send-msg-text:focus{
border: none;
box-shadow: none;
}
.send-msg-button-space{
width: 10%;
display: inline-block;
}
.send-msg-button{
width: 40px;
height: 40px;
border-radius: 50px;
margin-left: 10px;
} | client/src/index.css | *{
margin: 0;
padding: 0;
}
body{
height: 100vh;
width: 100vw;
}
#Page{
height: 100vh;
width: 100vw;
/* background-color: #eee; */
background-image: url("./Images/bg3.jpg");
background-size: cover;
background-repeat: no-repeat;
}
/* Main */
#Main{
height: 96vh;
border: .1px solid #CEC8C2;
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.060),1px 5px 5px 1px rgba(0, 0, 0, 0.200);
}
@media only screen and (min-width: 1441px) {
#Main{
width: 1396px;
margin: 0 auto;
}
}
/* Panel */
#Panel{
display: inline-block;
width: 30%;
height: 100%;
overflow: auto;
border-right: 1px solid #CEC8C2;
background-color: #eee;
}
/* User */
#User{
width: 100%;
height: 60px;
padding: 10px 16px;
position: relative;
border-bottom: 1px solid #CEC8C2;
}
.User-img{
width: 40px;
height: 40px;
border-radius: 50px;
display: inline-block;
}
.User-Settings{
display: inline-block;
position: absolute;
right: 10px;
top: 18px;
display: inline-block;
font-size: 25px;
color:black;
cursor: pointer;
transition: color .1s;
}
.User-Settings:hover{
color: rgb(32, 29, 75);
animation: App-logo-spin infinite 10s linear;
}
@keyframes App-logo-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
/* Users */
#Users{
width: 100%;
overflow: auto;
height: calc(100% - 60px);
}
.Lobby{
width: 100%;
height: 72px;
position: relative;
display: flex;
align-items: center;
cursor: pointer;
transition: color .1s;
}
.Lobby:hover{
color: rgb(61, 56, 133);
}
.Lobby-img{
padding: 0 15px 0 13px;
display: inline-block;
}
.Lobby-img div{
height: 49px;
width: 49px;
border-radius: 50px;
}
.Users-user{
width: 100%;
height: 72px;
position: relative;
display: flex;
align-items: center;
cursor: pointer;
transition: color .1s;
}
.Users-user:hover{
color: rgb(61, 56, 133);
}
.Users-user-img{
padding: 0 15px 0 13px;
display: inline-block;
}
.Users-user-img div{
height: 49px;
width: 49px;
border-radius: 50px;
}
/* Chat */
#Chat{
display: inline-block;
width: 70%;
height: 100%;
overflow: auto;
}
.chat-description{
height: 60px;
width: 100%;
border-bottom: 1px solid #CEC8C2;
padding: 10px 16px;
background-color: #eee;
}
.chat-lobby-description-img{
width: 40px;
height: 40px;
border-radius: 50px;
display: inline-block;
overflow: auto;
}
.chat-lobby-description{
display: inline-block;
padding: 0 15px 0 13px;
overflow: auto;
}
.chat-user-description-img{
width: 40px;
height: 40px;
border-radius: 50px;
display: inline-block;
overflow: auto;
}
.chat-user-description{
display: inline-block;
padding: 0 15px 0 13px;
}
.chat-user-description p,h5{
padding: 0;
margin: 0;
}
.Mesaj{
width: 100%;
height: calc(100% - 60px);
}
.chat-space{
width: 100%;
height: calc(100% - 62px);
overflow: auto;
}
#scroll-style::-webkit-scrollbar-track
{
background-color: transparent;
border-radius: 10px;
}
#scroll-style::-webkit-scrollbar
{
width: 8px;
background-color: transparent;
}
#scroll-style::-webkit-scrollbar-thumb
{
border-radius: 10px;
background-image: -webkit-gradient(linear,
left bottom,
left top,
color-stop(0.44, rgb(122,153,217)),
color-stop(0.72, rgb(73,125,189)),
color-stop(0.86, rgb(28,58,148)));
}
.gelen-msg{
word-wrap: break-word;
}
.gelen-msg-lobby{
max-width: fit-content;
width: 40%;
background-color: #03182D;
padding: 5px 10px 5px 10px;
color: white;
border-radius: 5px;
margin: 10px 0px;
margin-left: 5%;
}
.gonderilen-msg{
color: white;
display: flex;
justify-content: flex-end;
width: 90%;
}
.gonderilen-msg div{
max-width: fit-content;
width: 40%;
background-color: #0464BD;
padding: 5px 10px 5px 10px;
border-radius: 5px;
margin: 10px 0px;
word-wrap: break-word;
}
.send-msg-space{
width: 100%;
height: 62px;
background-color: white;
padding: 5px 10px;
}
.send-msg-text-space{
width: 90%;
display: inline-block;
}
.send-msg-text{
border-radius: 50px;
border: none;
}
.send-msg-text:focus{
border: none;
box-shadow: none;
}
.send-msg-button-space{
width: 10%;
display: inline-block;
}
.send-msg-button{
width: 40px;
height: 40px;
border-radius: 50px;
margin-left: 10px;
} | 0.264928 | 0.054828 |
body {
width: 100%;
margin: 0;
justify-content: center;
align-items: center;
font-family:'Comic Sans MS';
color: rgb(230, 218, 229);
text-shadow:
-0 -1px 0 #9E2FAF,
0 -1px 0 #9E2FAF,
-0 1px 0 #9E2FAF,
0 1px 0 #9E2FAF,
-1px -0 0 #9E2FAF,
1px -0 0 #9E2FAF,
-1px 0 0 #9E2FAF,
1px 0 0 #9E2FAF,
-1px -1px 0 #9E2FAF,
1px -1px 0 #9E2FAF,
-1px 1px 0 #9E2FAF,
1px 1px 0 #9E2FAF,
-1px -1px 0 #9E2FAF,
1px -1px 0 #9E2FAF,
-1px 1px 0 #9E2FAF,
1px 1px 0 #9E2FAF;
background-image: url(back.jpg);
}
* {
box-sizing: border-box;
margin-left: 10px;
margin-right: 10px;
}
h1{
text-align: center;
margin-bottom: 90px;
}
.tasks{
display: flex;
flex-wrap: wrap;
}
div{
width: 470px;
height: fit-content;
background-color: rgb(123, 201, 177);
border-radius: 20px;
margin-bottom: 20px;
outline-style: dotted;
outline-color:rgb(210, 228, 213);
outline-width:4px;
}
input{
border: 3px solid #cf5eca;
background:rgb(230, 218, 229);
border-radius: 18px;
outline-color: rgb(141, 19, 131);
color: #249433;
font-family: "URW Chancery L, cursive";
font-weight: 700;
}
input[type="number"]{
width: 40px;
}
input[type="text"]{
width: 150px;
}
output{
width: 450;
color: #862abb;
font-family: "Comic Sans MS";
font-weight: 700;
text-shadow: none;
font-size: 16;
word-break: normal;
}
#formula_output{
word-break: break-all;
}
table{
color: #862abb;
font-family: "Comic Sans MS";
font-weight: 700;
text-shadow: none;
font-size: 16;
margin: auto;
}
button{
width: max-content;
height: 30px;
font-size: 14px;
background-color: rgb(231, 199, 226);
border: 2px solid #cf5eca;
border-radius: 50%;
touch-action: manipulation;
cursor: pointer;
box-shadow: 0 5px rgb(167, 37, 156);
outline-color: rgb(141, 19, 131);
}
button:hover {
background-color: #cf5eca;
}
button:active {
background-color: #cf5eca;
box-shadow: 0 1px rgb(167, 37, 156);
transform: translateY(4px);
}
article {
flex: 1 200px;
}
article:nth-of-type(3) {
flex: 2 200px;
} | Task-09_JS_and_DOM/styles.css | body {
width: 100%;
margin: 0;
justify-content: center;
align-items: center;
font-family:'Comic Sans MS';
color: rgb(230, 218, 229);
text-shadow:
-0 -1px 0 #9E2FAF,
0 -1px 0 #9E2FAF,
-0 1px 0 #9E2FAF,
0 1px 0 #9E2FAF,
-1px -0 0 #9E2FAF,
1px -0 0 #9E2FAF,
-1px 0 0 #9E2FAF,
1px 0 0 #9E2FAF,
-1px -1px 0 #9E2FAF,
1px -1px 0 #9E2FAF,
-1px 1px 0 #9E2FAF,
1px 1px 0 #9E2FAF,
-1px -1px 0 #9E2FAF,
1px -1px 0 #9E2FAF,
-1px 1px 0 #9E2FAF,
1px 1px 0 #9E2FAF;
background-image: url(back.jpg);
}
* {
box-sizing: border-box;
margin-left: 10px;
margin-right: 10px;
}
h1{
text-align: center;
margin-bottom: 90px;
}
.tasks{
display: flex;
flex-wrap: wrap;
}
div{
width: 470px;
height: fit-content;
background-color: rgb(123, 201, 177);
border-radius: 20px;
margin-bottom: 20px;
outline-style: dotted;
outline-color:rgb(210, 228, 213);
outline-width:4px;
}
input{
border: 3px solid #cf5eca;
background:rgb(230, 218, 229);
border-radius: 18px;
outline-color: rgb(141, 19, 131);
color: #249433;
font-family: "URW Chancery L, cursive";
font-weight: 700;
}
input[type="number"]{
width: 40px;
}
input[type="text"]{
width: 150px;
}
output{
width: 450;
color: #862abb;
font-family: "Comic Sans MS";
font-weight: 700;
text-shadow: none;
font-size: 16;
word-break: normal;
}
#formula_output{
word-break: break-all;
}
table{
color: #862abb;
font-family: "Comic Sans MS";
font-weight: 700;
text-shadow: none;
font-size: 16;
margin: auto;
}
button{
width: max-content;
height: 30px;
font-size: 14px;
background-color: rgb(231, 199, 226);
border: 2px solid #cf5eca;
border-radius: 50%;
touch-action: manipulation;
cursor: pointer;
box-shadow: 0 5px rgb(167, 37, 156);
outline-color: rgb(141, 19, 131);
}
button:hover {
background-color: #cf5eca;
}
button:active {
background-color: #cf5eca;
box-shadow: 0 1px rgb(167, 37, 156);
transform: translateY(4px);
}
article {
flex: 1 200px;
}
article:nth-of-type(3) {
flex: 2 200px;
} | 0.42931 | 0.117978 |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
}
body{
background: linear-gradient(rgba(0,0,0,0.5),#009688), url(../images/img/Background1.jpg);
background-size: cover;
background-position: center;
height: 100%;
}
.container{
max-width: 700px;
width: 100%;
background-color: transparent;
padding: 50px 30px;
border-radius: 5px;
margin-top: 50px;
box-shadow: 0 5px 10px rgba(0,0,0,0.15);
margin-left: 450px;
height: 660px;
}
.container .title{
font-size: 2.2rem;
color:rgb(78, 30, 30);
margin-bottom: 10px;
margin-left: 130px;
}
form input[type="radio"]{
display: none;
}
form .btn{
height: 35px;
margin: 35px 0;
flex-basis: 50%;
margin-left: 100px;
width: 70%;
border-radius: 10px;
background-blend-mode: 20px;
}
form .btn input{
width: 20px;
background-image: linear-gradient(to right, #009688, #38d39f, #009688);
background-size: 200%;
border: none;
outline: none;
height: 49px;
border-radius: 49px;
color: #fff;
font-size: 20px;
font-weight: 600;
margin: 10px 0;
cursor: pointer;
transition: 0.5s;
}
form .btn input:hover{
background-position: right;
}
@media(max-width: 584px){
.container{
max-width: 100%;
margin-left: 4px;
width: 98%;
height: 640px;
margin-top: 4px;
}
.container .title{
margin-left: 50px;
}
form .user-details .input-box{
margin-bottom: 15px;
width: 200%;
}
form .category{
width: 100%;
}
.content form .user-details{
max-height: 300px;
overflow-y: scroll;
}
.user-details::-webkit-scrollbar{
width: 5px;
}
form .button{
margin-top: 3px;
margin-left: 50px;
}
}
@media(max-width: 459px){
.container .content .category{
flex-direction: column;
}
}
.container .details label{
color: #fff;
}
.container .details input{
height: 45px;
width: 100%;
outline: none;
font-size: 16px;
border-radius: 50px;
padding-left: 15px;
border: 2px solid #ccc;
border-bottom-width: 2px;
transition: all 0.3s ease;
background: transparent;
color: #fff;
}
.container .details select{
height: 45px;
width: 100%;
outline: none;
font-size: 16px;
border-radius: 50px;
padding-left: 15px;
border: 2px solid #ccc;
border-bottom-width: 2px;
transition: all 0.3s ease;
background: transparent;
color: #fff;
}
.container .details input::placeholder{
color: #fff;
} | public/css/StyleAppointment.css | @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
}
body{
background: linear-gradient(rgba(0,0,0,0.5),#009688), url(../images/img/Background1.jpg);
background-size: cover;
background-position: center;
height: 100%;
}
.container{
max-width: 700px;
width: 100%;
background-color: transparent;
padding: 50px 30px;
border-radius: 5px;
margin-top: 50px;
box-shadow: 0 5px 10px rgba(0,0,0,0.15);
margin-left: 450px;
height: 660px;
}
.container .title{
font-size: 2.2rem;
color:rgb(78, 30, 30);
margin-bottom: 10px;
margin-left: 130px;
}
form input[type="radio"]{
display: none;
}
form .btn{
height: 35px;
margin: 35px 0;
flex-basis: 50%;
margin-left: 100px;
width: 70%;
border-radius: 10px;
background-blend-mode: 20px;
}
form .btn input{
width: 20px;
background-image: linear-gradient(to right, #009688, #38d39f, #009688);
background-size: 200%;
border: none;
outline: none;
height: 49px;
border-radius: 49px;
color: #fff;
font-size: 20px;
font-weight: 600;
margin: 10px 0;
cursor: pointer;
transition: 0.5s;
}
form .btn input:hover{
background-position: right;
}
@media(max-width: 584px){
.container{
max-width: 100%;
margin-left: 4px;
width: 98%;
height: 640px;
margin-top: 4px;
}
.container .title{
margin-left: 50px;
}
form .user-details .input-box{
margin-bottom: 15px;
width: 200%;
}
form .category{
width: 100%;
}
.content form .user-details{
max-height: 300px;
overflow-y: scroll;
}
.user-details::-webkit-scrollbar{
width: 5px;
}
form .button{
margin-top: 3px;
margin-left: 50px;
}
}
@media(max-width: 459px){
.container .content .category{
flex-direction: column;
}
}
.container .details label{
color: #fff;
}
.container .details input{
height: 45px;
width: 100%;
outline: none;
font-size: 16px;
border-radius: 50px;
padding-left: 15px;
border: 2px solid #ccc;
border-bottom-width: 2px;
transition: all 0.3s ease;
background: transparent;
color: #fff;
}
.container .details select{
height: 45px;
width: 100%;
outline: none;
font-size: 16px;
border-radius: 50px;
padding-left: 15px;
border: 2px solid #ccc;
border-bottom-width: 2px;
transition: all 0.3s ease;
background: transparent;
color: #fff;
}
.container .details input::placeholder{
color: #fff;
} | 0.301259 | 0.065515 |
@media print { .noprint { display:none; }}
body { font-family: 'Times New Roman'; font-size:13pt; margin:10px 0px; padding:0px;}
br { clear:both; }
.hidden {display:none;}
.pageBlock { width:500px; padding:10px; margin-left:60px; border:1px solid black;}
.textBlock { position:relative; width:480px; padding:10px;}
.pageBorder { width:480px; height:1px; margin-top:50px; }
.pageHeading { width:420px; padding:10px; padding-top:30px; margin: 20px 0px; border-bottom:3px solid black; font-style:normal; font-weight: normal; color:black; page-break-before:always; }
.pageNbr { float:left; width:75px; text-align:left; }
.pageTitle { float:left; width:240px; text-align:center; font-style:italic; font-size:14pt; }
.pageDesc { float:right; text-align:right; font-size:8pt; font-variant:small-caps; }
.actFooter { width:430px; text-align:center; padding-top:5px; font-style:normal; }
.titleImg { width: 400px; padding: 0px 20px; }
.div1 { text-align:left; width:100%; }
.frontHeader { position:relative; width:480px; text-align:center; font-weight:bold; font-size:16pt; margin-bottom:50px; margin-top:10px;}
.castDiv { position:relative; float:left; }
.castHeadDiv { float:left;display:table; }
.castHead { font-style:italic; display:table-cell; vertical-align:middle; }
.bracketDiv { position:relative; float:left; padding:0px 5px; width:5px;}
.castName { font-size:10pt; text-transform:uppercase; font-variant:small-caps; }
.actHeader { position:relative; width:430px; text-align:center; font-style:italic; font-weight:bold; font-size:16pt; border-bottom:5px solid black; padding-bottom:5px; margin-bottom:50px; margin-top:100px;}
.sceneHeader { position:relative; width:430px; text-align:center; }
.blankHeader { position:relative; width:430px; margin-top:100px;}
.page { page-break-before:always; }
.credits { position:relative;padding-top:200px;width:480px;text-align:center; }
.signed { display:block; float:right; text-align:right; width:auto; padding-right:00px; }
.emendation { font-style:normal; font-weight:normal; }
.lineNbr { position:absolute; left:475px; top:auto; width:auto; font-style:normal; font-weight:normal; font-size:12pt; line-height:20px; }
.ftln { color:gray; position:absolute; left:-68px; top:auto; width:auto; font-style:normal; font-weight:normal; font-size:8pt; line-height:20px; }
.alignment {}
.centered { display:inline-block; text-align:center; width:430px; }
.centred { display:inline-block; text-align:center; width:430px; }
.right { display:inline-block; float:right; text-align:right; width:auto; padding-right:60px; }
.indentProse { padding-left:30px; }
.indentVerse { padding-left:15px; }
.indentRunOn { padding-left:30px; }
.indentSplit { padding-left:00px; }
.indentInline { padding-left:10px; }
.indentClosing { padding-left:50px; }
.indent { padding-left:8px; }
.inline { padding-left:0px; }
.indentTest { padding-left:50px; }
.closing { display:inline-block; padding-left:30px; }
.closingSig { display:inline-block; float:right; text-align:right; width:auto;}
.closingSig { display:inline-block; padding-left:20px; float:right; text-align:left; width:auto; }
.signature { display:inline-block; float:right; text-align:left; width:auto; padding-right:60px; }
.speaker { clear:both; float:left; font-style:normal; font-variant:small-caps; font-size:10pt; line-height:20px; }
.speakerName { font-style:normal; font-variant:small-caps; font-size:10pt; line-height:20px;}
.stage { font-style:italic; }
.imgEmend { position:relative; height:16px; }
.imgTextX { position:relative; top:3px; height:16px; width:6px; }
.w { border: 1px solid blue; }
.pc { border: 1px solid green; }
.c { background-color: red; }
.docTitle {text-align:center; font-style:italic; font-size:40px;}
.titlePage { text-align: center; width: 100% }
.head { text-align: center; width: 100% }
.runningHeader { float:left;text-align:center;width:100%; padding: 15px 0px;}
.trailer { text-align: center; width: 100%; }
.bold { font-weight: bold; }
.italic { font-style: italic; }
.roman { font-style: normal; }
.underlined { text-decoration: underline; }
.underlining { text-decoration: underline; }
.superscript { vertical-align: super; }
.indented { padding-left: 60px; }
.gap { color:red; }
.add { color:blue; }
.del { color:black; }
.note { color:gray; }
.red { color:red; }
.blue { color:blue; }
.black { color:black; }
.gray { color:gray; }
.bckblue { background-color:blue; }
.speech { clear:both; float:left; padding:0 0px; background-color: white; font-family:times new roman; }
.line { float:left; background-color:transparent; padding: 0 15px; width:auto; }
.indented { padding-left: 60px; }
.turnunder { padding-left: 30px; }
.right-justified { text-align: justify; }
.prose { border: 0px solid blue; }
.proseIndent { padding-left: 30px; }
.song { font-style:italic; padding-left:60px; }
.poem { padding-left:60px; }
.lgIndent { padding-left:80px; }
.indent { padding-left:15px; }
.lg { width: 300px; padding-left: 60px; } | script_editor/FolgerDigitalTexts_XML_Complete/fdt.css | @media print { .noprint { display:none; }}
body { font-family: 'Times New Roman'; font-size:13pt; margin:10px 0px; padding:0px;}
br { clear:both; }
.hidden {display:none;}
.pageBlock { width:500px; padding:10px; margin-left:60px; border:1px solid black;}
.textBlock { position:relative; width:480px; padding:10px;}
.pageBorder { width:480px; height:1px; margin-top:50px; }
.pageHeading { width:420px; padding:10px; padding-top:30px; margin: 20px 0px; border-bottom:3px solid black; font-style:normal; font-weight: normal; color:black; page-break-before:always; }
.pageNbr { float:left; width:75px; text-align:left; }
.pageTitle { float:left; width:240px; text-align:center; font-style:italic; font-size:14pt; }
.pageDesc { float:right; text-align:right; font-size:8pt; font-variant:small-caps; }
.actFooter { width:430px; text-align:center; padding-top:5px; font-style:normal; }
.titleImg { width: 400px; padding: 0px 20px; }
.div1 { text-align:left; width:100%; }
.frontHeader { position:relative; width:480px; text-align:center; font-weight:bold; font-size:16pt; margin-bottom:50px; margin-top:10px;}
.castDiv { position:relative; float:left; }
.castHeadDiv { float:left;display:table; }
.castHead { font-style:italic; display:table-cell; vertical-align:middle; }
.bracketDiv { position:relative; float:left; padding:0px 5px; width:5px;}
.castName { font-size:10pt; text-transform:uppercase; font-variant:small-caps; }
.actHeader { position:relative; width:430px; text-align:center; font-style:italic; font-weight:bold; font-size:16pt; border-bottom:5px solid black; padding-bottom:5px; margin-bottom:50px; margin-top:100px;}
.sceneHeader { position:relative; width:430px; text-align:center; }
.blankHeader { position:relative; width:430px; margin-top:100px;}
.page { page-break-before:always; }
.credits { position:relative;padding-top:200px;width:480px;text-align:center; }
.signed { display:block; float:right; text-align:right; width:auto; padding-right:00px; }
.emendation { font-style:normal; font-weight:normal; }
.lineNbr { position:absolute; left:475px; top:auto; width:auto; font-style:normal; font-weight:normal; font-size:12pt; line-height:20px; }
.ftln { color:gray; position:absolute; left:-68px; top:auto; width:auto; font-style:normal; font-weight:normal; font-size:8pt; line-height:20px; }
.alignment {}
.centered { display:inline-block; text-align:center; width:430px; }
.centred { display:inline-block; text-align:center; width:430px; }
.right { display:inline-block; float:right; text-align:right; width:auto; padding-right:60px; }
.indentProse { padding-left:30px; }
.indentVerse { padding-left:15px; }
.indentRunOn { padding-left:30px; }
.indentSplit { padding-left:00px; }
.indentInline { padding-left:10px; }
.indentClosing { padding-left:50px; }
.indent { padding-left:8px; }
.inline { padding-left:0px; }
.indentTest { padding-left:50px; }
.closing { display:inline-block; padding-left:30px; }
.closingSig { display:inline-block; float:right; text-align:right; width:auto;}
.closingSig { display:inline-block; padding-left:20px; float:right; text-align:left; width:auto; }
.signature { display:inline-block; float:right; text-align:left; width:auto; padding-right:60px; }
.speaker { clear:both; float:left; font-style:normal; font-variant:small-caps; font-size:10pt; line-height:20px; }
.speakerName { font-style:normal; font-variant:small-caps; font-size:10pt; line-height:20px;}
.stage { font-style:italic; }
.imgEmend { position:relative; height:16px; }
.imgTextX { position:relative; top:3px; height:16px; width:6px; }
.w { border: 1px solid blue; }
.pc { border: 1px solid green; }
.c { background-color: red; }
.docTitle {text-align:center; font-style:italic; font-size:40px;}
.titlePage { text-align: center; width: 100% }
.head { text-align: center; width: 100% }
.runningHeader { float:left;text-align:center;width:100%; padding: 15px 0px;}
.trailer { text-align: center; width: 100%; }
.bold { font-weight: bold; }
.italic { font-style: italic; }
.roman { font-style: normal; }
.underlined { text-decoration: underline; }
.underlining { text-decoration: underline; }
.superscript { vertical-align: super; }
.indented { padding-left: 60px; }
.gap { color:red; }
.add { color:blue; }
.del { color:black; }
.note { color:gray; }
.red { color:red; }
.blue { color:blue; }
.black { color:black; }
.gray { color:gray; }
.bckblue { background-color:blue; }
.speech { clear:both; float:left; padding:0 0px; background-color: white; font-family:times new roman; }
.line { float:left; background-color:transparent; padding: 0 15px; width:auto; }
.indented { padding-left: 60px; }
.turnunder { padding-left: 30px; }
.right-justified { text-align: justify; }
.prose { border: 0px solid blue; }
.proseIndent { padding-left: 30px; }
.song { font-style:italic; padding-left:60px; }
.poem { padding-left:60px; }
.lgIndent { padding-left:80px; }
.indent { padding-left:15px; }
.lg { width: 300px; padding-left: 60px; } | 0.597138 | 0.199386 |
@import url(https://fonts.googleapis.com/css?family=Montserrat);
.cls {
position: fixed;
top: 0;
right: 0;
bottom: 0;
background-image: url(http://www.acquadiparma.com/wp-content/uploads/resort_01.jpg);
min-width: 100%;
min-height: 100%;
-webkit-filter: blur(18px);
-o-filter: blur(18px);
filter: blur(18px);
z-index: -100;
-webkit-background-size: cover;
-moz-background-size: cover;
-ms-background-size: cover;
-o-background-size: cover;
background-size: cover; }
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 50px white inset;
/* Change the color to your own background color */
-webkit-text-fill-color: #333; }
input:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0 50px white inset;
-webkit-text-fill-color: #333; }
body {
background: linear-gradient(to bottom left, #CCFFCC, #bdbdbd);
width: 100%;
min-height: 100vh;
max-height: 100vh;
overflow: hidden; }
.clear {
clear: both; }
#card {
overflow: hidden;
width: 400px;
height: 500px;
background: linear-gradient(to bottom right, rgba(37, 49, 85, 0.9), rgba(45, 25, 62, 0.9)), url(http://www.northstaracademymqt.com/wp-content/uploads/2014/09/Hendersonville-Montessori-Color-box-31.jpg);
background-size: cover;
background-position: 30% center;
margin-left: calc(50vw - 200px);
margin-top: calc(50vh - 250px);
position: relative;
box-shadow: 0 10px 20px #666; }
#card .content {
padding-top: 120px; }
#card .content button {
width: 77%;
margin: 0 auto;
background: #1b66ea;
color: white;
display: block;
border-radius: 20px;
border: 0 solid transparent;
padding: 10px;
font-family: Montserrat, sans-serif;
font-size: .8rem;
transition: all .5s; }
#card .content button:hover {
transform: scale(1.05, 1.05); }
#card .content input {
display: block;
width: 70%;
margin: 0 auto;
border-radius: 20px;
border: 0 solid transparent;
background: rgba(221, 221, 221, 0.15);
padding: 5px 15px;
line-height: 1.5rem;
font-size: .8rem;
color: white;
font-family: Montserrat, sans-serif;
transition: all .5s; }
#card .content input:focus {
background: rgba(221, 221, 221, 0.3); }
#card .content input[type="checkbox"] {
display: inline-block;
width: 10%;
margin-left: 15%;
margin-top: 20px;
margin-bottom: 20px; }
#card .content input[type="checkbox"] ~ label {
display: inline-block;
width: 60%;
margin: 10px -10px;
color: white;
text-transform: none; }
#card .content label {
font-family: Montserrat, sans-serif;
display: block;
width: 70%;
margin: 15px auto 10px;
color: white;
color: rgba(204, 204, 204, 0.7);
font-size: .63rem;
text-transform: uppercase; }
*:focus {
outline: none; } | public/admin/style.css | @import url(https://fonts.googleapis.com/css?family=Montserrat);
.cls {
position: fixed;
top: 0;
right: 0;
bottom: 0;
background-image: url(http://www.acquadiparma.com/wp-content/uploads/resort_01.jpg);
min-width: 100%;
min-height: 100%;
-webkit-filter: blur(18px);
-o-filter: blur(18px);
filter: blur(18px);
z-index: -100;
-webkit-background-size: cover;
-moz-background-size: cover;
-ms-background-size: cover;
-o-background-size: cover;
background-size: cover; }
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 50px white inset;
/* Change the color to your own background color */
-webkit-text-fill-color: #333; }
input:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0 50px white inset;
-webkit-text-fill-color: #333; }
body {
background: linear-gradient(to bottom left, #CCFFCC, #bdbdbd);
width: 100%;
min-height: 100vh;
max-height: 100vh;
overflow: hidden; }
.clear {
clear: both; }
#card {
overflow: hidden;
width: 400px;
height: 500px;
background: linear-gradient(to bottom right, rgba(37, 49, 85, 0.9), rgba(45, 25, 62, 0.9)), url(http://www.northstaracademymqt.com/wp-content/uploads/2014/09/Hendersonville-Montessori-Color-box-31.jpg);
background-size: cover;
background-position: 30% center;
margin-left: calc(50vw - 200px);
margin-top: calc(50vh - 250px);
position: relative;
box-shadow: 0 10px 20px #666; }
#card .content {
padding-top: 120px; }
#card .content button {
width: 77%;
margin: 0 auto;
background: #1b66ea;
color: white;
display: block;
border-radius: 20px;
border: 0 solid transparent;
padding: 10px;
font-family: Montserrat, sans-serif;
font-size: .8rem;
transition: all .5s; }
#card .content button:hover {
transform: scale(1.05, 1.05); }
#card .content input {
display: block;
width: 70%;
margin: 0 auto;
border-radius: 20px;
border: 0 solid transparent;
background: rgba(221, 221, 221, 0.15);
padding: 5px 15px;
line-height: 1.5rem;
font-size: .8rem;
color: white;
font-family: Montserrat, sans-serif;
transition: all .5s; }
#card .content input:focus {
background: rgba(221, 221, 221, 0.3); }
#card .content input[type="checkbox"] {
display: inline-block;
width: 10%;
margin-left: 15%;
margin-top: 20px;
margin-bottom: 20px; }
#card .content input[type="checkbox"] ~ label {
display: inline-block;
width: 60%;
margin: 10px -10px;
color: white;
text-transform: none; }
#card .content label {
font-family: Montserrat, sans-serif;
display: block;
width: 70%;
margin: 15px auto 10px;
color: white;
color: rgba(204, 204, 204, 0.7);
font-size: .63rem;
text-transform: uppercase; }
*:focus {
outline: none; } | 0.37399 | 0.085748 |
html, body, form, fieldset, ol, ul, h1, h2 {
margin: 0;
padding: 0;
border: 0;
}
ol, ul {
list-style: none;
}
html, body {
min-height: 100%;
}
body {
font: bold 13px 'helvetica neue', arial, DroidSans;
color: #27502c;
text-shadow: 0 1px 0 #abd569;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8dcc2b), color-stop(100%,#69a609));
background: -webkit-linear-gradient(top, #8dcc2b 0%,#69a609 100%);
}
.hulk-intro body {
color: #7c8392;
text-shadow: none;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7faff), color-stop(100%,#dee2e6));
background: -webkit-linear-gradient(top, #f7faff 0%,#dee2e6 100%);
}
#wrapper {
margin: 18px 20px;
}
h1 {
width: 183px;
height: 70px;
margin: 0 auto 20px;
text-indent: -999em;
background: url(logo.png) no-repeat top center;
}
h2 {
font-size: 14px;
text-align: center;
}
h2 span {
display: block;
font-size: 19px;
}
p {
margin: 0 0 20px;
font-weight: bold;
text-align: center;
}
input:not([type=checkbox]), .button {
display: block;
width: 100%;
margin: 18px 0 0;
padding: 12px 15px;
border: 1px solid;
border-radius: 5px;
font: inherit;
font-size: 1.1em;
text-decoration: none;
-webkit-appearance: none;
-webkit-box-sizing: border-box;
}
input[type=text], input[type=password] {
border-color: #598515 #588413 #578312;
background: #fff -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.07)), color-stop(100%,rgba(255,255,255,0.07)));
background: #fff -webkit-linear-gradient(top, rgba(0,0,0,0.07) 0%,rgba(255,255,255,0.07) 100%);
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .32), inset 0 1px 0 rgba(0, 0, 0, .2);
}
input[type=button], .button {
color: #404040;
text-align: center;
margin-top: 10px;
border: 0;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(239,239,239,1)), color-stop(100%,rgba(189,189,189,1)));
background: -webkit-linear-gradient(top, rgba(239,239,239,1) 0%,rgba(189,189,189,1) 100%);
text-shadow: 0 1px 0 #fff;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75), 0 0 2px rgba(0, 0, 0, .6);
}
input[type=submit], .button.primary {
color: #fff;
text-align: center;
border-color: #1a5dcc;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#44a1dc), color-stop(50%,#226fb4), color-stop(51%,#1868af), color-stop(74%,#1762aa), color-stop(100%,#2c8bcd));
background: -webkit-linear-gradient(top, #44a1dc 0%,#226fb4 50%,#1868af 51%,#1762aa 74%,#2c8bcd 100%);
text-shadow: 0 -1px 0 #13538c;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25);
}
input[disabled] {
opacity: .4;
-webkit-transition: all .4s;
}
input {
opacity: 1;
-webkit-transition: all .4s;
}
.browser-image {
width: 282px;
height: 197px;
margin: 15px auto 5px;
background: url(browser.png);
}
.pages {
}
.pages li, .pages li.inactive {
display: none;
}
.pages .active {
display: block;
}
.throbber.inactive, #loginbtn.inactive {
opacity: 0;
-webkit-transition: all .4s;
}
.throbber, .throbber.active, #loginbtn.active, #loginbtn {
opacity: 1;
-webkit-transition: all .4s;
}
#loadingbezel {
position:absolute;
top: 175px;
left: 50%;
margin: 0 0 0 -38px;
z-index:9999;
}
.throbber {
position: relative;
width: 75px;
height: 75px;
margin: 0 auto;
background: #fff;
-webkit-border-radius: 4px;
opacity: .6;
}
.throbber div, .throbber span {
position: absolute;
top: 50%;
left: 50%;
width: 32px;
height: 32px;
margin: -16px 0 0 -16px;
background: url(throbber.gif);
}
.scrobbling {
margin: 10px 0 0;
color: #8e949a;
font-size: 11px;
font-weight: normal;
}
.scrobbling input {
vertical-align: text-bottom;
}
#scrobbling_setting {
margin: 0 5px 0 0;
}
.footer p {
padding-top: 6px;
font-size: 10px;
font-weight: normal;
color: rgb(108, 108, 108);
} | iOS Library/SPLoginResources.bundle/mobilehulkintro/base.css | html, body, form, fieldset, ol, ul, h1, h2 {
margin: 0;
padding: 0;
border: 0;
}
ol, ul {
list-style: none;
}
html, body {
min-height: 100%;
}
body {
font: bold 13px 'helvetica neue', arial, DroidSans;
color: #27502c;
text-shadow: 0 1px 0 #abd569;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8dcc2b), color-stop(100%,#69a609));
background: -webkit-linear-gradient(top, #8dcc2b 0%,#69a609 100%);
}
.hulk-intro body {
color: #7c8392;
text-shadow: none;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7faff), color-stop(100%,#dee2e6));
background: -webkit-linear-gradient(top, #f7faff 0%,#dee2e6 100%);
}
#wrapper {
margin: 18px 20px;
}
h1 {
width: 183px;
height: 70px;
margin: 0 auto 20px;
text-indent: -999em;
background: url(logo.png) no-repeat top center;
}
h2 {
font-size: 14px;
text-align: center;
}
h2 span {
display: block;
font-size: 19px;
}
p {
margin: 0 0 20px;
font-weight: bold;
text-align: center;
}
input:not([type=checkbox]), .button {
display: block;
width: 100%;
margin: 18px 0 0;
padding: 12px 15px;
border: 1px solid;
border-radius: 5px;
font: inherit;
font-size: 1.1em;
text-decoration: none;
-webkit-appearance: none;
-webkit-box-sizing: border-box;
}
input[type=text], input[type=password] {
border-color: #598515 #588413 #578312;
background: #fff -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.07)), color-stop(100%,rgba(255,255,255,0.07)));
background: #fff -webkit-linear-gradient(top, rgba(0,0,0,0.07) 0%,rgba(255,255,255,0.07) 100%);
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .32), inset 0 1px 0 rgba(0, 0, 0, .2);
}
input[type=button], .button {
color: #404040;
text-align: center;
margin-top: 10px;
border: 0;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(239,239,239,1)), color-stop(100%,rgba(189,189,189,1)));
background: -webkit-linear-gradient(top, rgba(239,239,239,1) 0%,rgba(189,189,189,1) 100%);
text-shadow: 0 1px 0 #fff;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75), 0 0 2px rgba(0, 0, 0, .6);
}
input[type=submit], .button.primary {
color: #fff;
text-align: center;
border-color: #1a5dcc;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#44a1dc), color-stop(50%,#226fb4), color-stop(51%,#1868af), color-stop(74%,#1762aa), color-stop(100%,#2c8bcd));
background: -webkit-linear-gradient(top, #44a1dc 0%,#226fb4 50%,#1868af 51%,#1762aa 74%,#2c8bcd 100%);
text-shadow: 0 -1px 0 #13538c;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25);
}
input[disabled] {
opacity: .4;
-webkit-transition: all .4s;
}
input {
opacity: 1;
-webkit-transition: all .4s;
}
.browser-image {
width: 282px;
height: 197px;
margin: 15px auto 5px;
background: url(browser.png);
}
.pages {
}
.pages li, .pages li.inactive {
display: none;
}
.pages .active {
display: block;
}
.throbber.inactive, #loginbtn.inactive {
opacity: 0;
-webkit-transition: all .4s;
}
.throbber, .throbber.active, #loginbtn.active, #loginbtn {
opacity: 1;
-webkit-transition: all .4s;
}
#loadingbezel {
position:absolute;
top: 175px;
left: 50%;
margin: 0 0 0 -38px;
z-index:9999;
}
.throbber {
position: relative;
width: 75px;
height: 75px;
margin: 0 auto;
background: #fff;
-webkit-border-radius: 4px;
opacity: .6;
}
.throbber div, .throbber span {
position: absolute;
top: 50%;
left: 50%;
width: 32px;
height: 32px;
margin: -16px 0 0 -16px;
background: url(throbber.gif);
}
.scrobbling {
margin: 10px 0 0;
color: #8e949a;
font-size: 11px;
font-weight: normal;
}
.scrobbling input {
vertical-align: text-bottom;
}
#scrobbling_setting {
margin: 0 5px 0 0;
}
.footer p {
padding-top: 6px;
font-size: 10px;
font-weight: normal;
color: rgb(108, 108, 108);
} | 0.273089 | 0.073563 |
*{
}
.modal {
display: inline-block;
padding: 0 1em;
text-align: center;
position: inherit;
margin-top: 4rem;
}
@media (min-width: 43.75em) {
.modal {
padding: 1em 2em;
text-align: left;
}
}
.modal > label {
border: 1px solid white;
border-radius: .2em;
color: white;
cursor: pointer;
display: inline-block;
font-weight: bold;
padding: 0.75em 1.5em;
-webkit-transition: all 0.55s;
transition: all 0.55s;
font-size: 78%;
width: 100%;
}
.modal > label:hover {
-webkit-transform: scale(0.97);
-ms-transform: scale(0.97);
transform: scale(0.97);
}
.modal input {
display: none;
position: absolute;
z-index: -10;
}
.modal__overlay {
background:rgba(255, 255, 255, .96);
bottom: 0;
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: -800;
}
.modal__box {
position: relative;
margin: 1em auto;
}
@media (min-height: 37.5em) {
.modal__box {
left: 99%;
position: absolute;
top: -1%;
-webkit-transform: translate(-50%, -80%);
-ms-transform: translate(-50%, -80%);
transform: translate(-50%, -80%);
}
}
@media (min-width: 50em) {
.modal__box {}
}
.modal__box label {
color: black;
cursor: pointer;
display: inline-block;
height: 1.5em;
line-height: 1.5em;
position: absolute;
right: .5em;
top: 0em;
width: 1.5em;
font-size: 150%;
font-weight: 10rem;
}
.modal__box h2 {
color: #FFDE16;
margin-bottom: 1em;
text-transform: uppercase;
}
.modal__box p {
color: #FFDE16;
text-align: left;
}
.modal__overlay {
margin: auto;
border: 0;
width: 95%;
height: 95%;
opacity: 0;
overflow: hidden;
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
-webkit-transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}
input:checked ~ .modal__overlay {
text-align: center;
border-radius: 1%;
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
z-index: 800;
}
input:focus + label {
-webkit-transform: scale(0.97);
-ms-transform: scale(0.97);
transform: scale(0.97);
}
#closemodal{
float: right;
}
.mbox{
padding:0 6%;
height: 80%;
overflow-y: scroll;
}
#modal-header{
margin-bottom: 2rem;
text-align: center;
padding: 3rem;
background: rgba(0, 120, 191, 0.75);
color: white;
font-weight: 5rem;
}
#modal-content{
padding: 2rem 0;
}
#requirements,
#bonus,
#offer{
font-size: 98%;
text-align: initial;
}
#requirements span,
#bonus span,
#offer span{
padding: 5px;
width: 100%;
}
#requirements ol{
display: block;
margin-top: 1rem;
}
#requirements ol li{
color:rgba(226, 97, 97, 100);
}
#rqs{
color:#a94442;
}
#bonus{
margin-top: 0rem;
margin-bottom: 2rem;
}
#bonus ol{
display: block;
margin-top: 1rem;
}
#bns{
color:#3c763d;
}
#bonus ol li{
color:rgb(74, 167, 86);
}
#offer{
margin-top: 3rem;
text-align: center;
}
#offer table{
margin-top: 2rem;
text-align: center;
width: 75%;
margin: 2rem auto;
}
#offer table thead tr th,
#offer table tbody tr th{
text-align: center;
}
#silverlast{
font-weight: bolder;
}
#contribpts-cont{
}
#contrib_bigbox{
height: 57% !important;
width: 65% !important;
}
#contribpts-cont{
padding: 1%;
margin-bottom: 5rem;
}
#contrib-cont table{
width:75%;
margin: auto;
}
#contrib-cont table tr th{
text-align: center;
}
.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
background-color: rgba(0, 120, 191, 0.61);
color: white;
font-weight: bolder;
}
#cstmize-bigbox{
width: 50% !important;
height: 65% !important;
}
#intro-cstmize{
margin-bottom: 1.5rem;
}
.skype{
padding: 0;
margin-bottom: -3rem;
background: #f0f4c3;
margin-top: 3rem;
}
.skype:hover{
background: #ffee58;
}
#mail{
background: #ffcdd2;
padding: 3.5rem 0;
}
#mail:hover{
background: #e57373;
color: white;
}
#content1{
margin-bottom: 3rem;
}
#content1 span{
color: #a94442;
font-size: 1.5em;
font-weight: 120;
}
#content1 span strong{
color: #FFC107;
}
#table1 {
width: 75%;
margin: 0 auto;
}
#table2 {
width: 75%;
margin: 0 auto;
}
#table2 tr td:nth-child(4){
width:100px;
}
td, th{
text-align: center;
}
.bttn{
padding: 15px;
border-radius: 8px;
margin-right: 2rem;
}
#level{
margin-top: 4rem;
margin-bottom: 4rem;
}
#level2{
margin-top: 4rem;
margin-bottom: 4rem;
}
#word2{
margin-top: 6rem;
margin-bottom: 3rem;
}
#word2 span{
font-size: 1.5em;
color:#3c763d;
font-weight: 120;
}
#word2 span strong{
color:#FFC107;
} | css/modal.css | *{
}
.modal {
display: inline-block;
padding: 0 1em;
text-align: center;
position: inherit;
margin-top: 4rem;
}
@media (min-width: 43.75em) {
.modal {
padding: 1em 2em;
text-align: left;
}
}
.modal > label {
border: 1px solid white;
border-radius: .2em;
color: white;
cursor: pointer;
display: inline-block;
font-weight: bold;
padding: 0.75em 1.5em;
-webkit-transition: all 0.55s;
transition: all 0.55s;
font-size: 78%;
width: 100%;
}
.modal > label:hover {
-webkit-transform: scale(0.97);
-ms-transform: scale(0.97);
transform: scale(0.97);
}
.modal input {
display: none;
position: absolute;
z-index: -10;
}
.modal__overlay {
background:rgba(255, 255, 255, .96);
bottom: 0;
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: -800;
}
.modal__box {
position: relative;
margin: 1em auto;
}
@media (min-height: 37.5em) {
.modal__box {
left: 99%;
position: absolute;
top: -1%;
-webkit-transform: translate(-50%, -80%);
-ms-transform: translate(-50%, -80%);
transform: translate(-50%, -80%);
}
}
@media (min-width: 50em) {
.modal__box {}
}
.modal__box label {
color: black;
cursor: pointer;
display: inline-block;
height: 1.5em;
line-height: 1.5em;
position: absolute;
right: .5em;
top: 0em;
width: 1.5em;
font-size: 150%;
font-weight: 10rem;
}
.modal__box h2 {
color: #FFDE16;
margin-bottom: 1em;
text-transform: uppercase;
}
.modal__box p {
color: #FFDE16;
text-align: left;
}
.modal__overlay {
margin: auto;
border: 0;
width: 95%;
height: 95%;
opacity: 0;
overflow: hidden;
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
-webkit-transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}
input:checked ~ .modal__overlay {
text-align: center;
border-radius: 1%;
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
z-index: 800;
}
input:focus + label {
-webkit-transform: scale(0.97);
-ms-transform: scale(0.97);
transform: scale(0.97);
}
#closemodal{
float: right;
}
.mbox{
padding:0 6%;
height: 80%;
overflow-y: scroll;
}
#modal-header{
margin-bottom: 2rem;
text-align: center;
padding: 3rem;
background: rgba(0, 120, 191, 0.75);
color: white;
font-weight: 5rem;
}
#modal-content{
padding: 2rem 0;
}
#requirements,
#bonus,
#offer{
font-size: 98%;
text-align: initial;
}
#requirements span,
#bonus span,
#offer span{
padding: 5px;
width: 100%;
}
#requirements ol{
display: block;
margin-top: 1rem;
}
#requirements ol li{
color:rgba(226, 97, 97, 100);
}
#rqs{
color:#a94442;
}
#bonus{
margin-top: 0rem;
margin-bottom: 2rem;
}
#bonus ol{
display: block;
margin-top: 1rem;
}
#bns{
color:#3c763d;
}
#bonus ol li{
color:rgb(74, 167, 86);
}
#offer{
margin-top: 3rem;
text-align: center;
}
#offer table{
margin-top: 2rem;
text-align: center;
width: 75%;
margin: 2rem auto;
}
#offer table thead tr th,
#offer table tbody tr th{
text-align: center;
}
#silverlast{
font-weight: bolder;
}
#contribpts-cont{
}
#contrib_bigbox{
height: 57% !important;
width: 65% !important;
}
#contribpts-cont{
padding: 1%;
margin-bottom: 5rem;
}
#contrib-cont table{
width:75%;
margin: auto;
}
#contrib-cont table tr th{
text-align: center;
}
.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
background-color: rgba(0, 120, 191, 0.61);
color: white;
font-weight: bolder;
}
#cstmize-bigbox{
width: 50% !important;
height: 65% !important;
}
#intro-cstmize{
margin-bottom: 1.5rem;
}
.skype{
padding: 0;
margin-bottom: -3rem;
background: #f0f4c3;
margin-top: 3rem;
}
.skype:hover{
background: #ffee58;
}
#mail{
background: #ffcdd2;
padding: 3.5rem 0;
}
#mail:hover{
background: #e57373;
color: white;
}
#content1{
margin-bottom: 3rem;
}
#content1 span{
color: #a94442;
font-size: 1.5em;
font-weight: 120;
}
#content1 span strong{
color: #FFC107;
}
#table1 {
width: 75%;
margin: 0 auto;
}
#table2 {
width: 75%;
margin: 0 auto;
}
#table2 tr td:nth-child(4){
width:100px;
}
td, th{
text-align: center;
}
.bttn{
padding: 15px;
border-radius: 8px;
margin-right: 2rem;
}
#level{
margin-top: 4rem;
margin-bottom: 4rem;
}
#level2{
margin-top: 4rem;
margin-bottom: 4rem;
}
#word2{
margin-top: 6rem;
margin-bottom: 3rem;
}
#word2 span{
font-size: 1.5em;
color:#3c763d;
font-weight: 120;
}
#word2 span strong{
color:#FFC107;
} | 0.440469 | 0.080357 |
.tReqDiv {
float: left;
margin-right: 2px;
cursor: help;
}
.tReqImg {
width: 42px;
height: 42px;
border: 1px solid #000;
}
.tReqBg {
background: #000;
}
.buildImg {
border: 2px solid #000;
}
/* Structure Selectors */
.ssDiv {
margin: 0 2px;
cursor: pointer;
width: 74px;
position: relative;
display: inline-block;
}
.ssImg {
width: 72px;
height: 72px;
border: 1px solid #000;
}
.ssBg {
background: #000;
position: absolute;
bottom: 0px;
width: 72px;
opacity: 0.6;
z-index: 2;
bottom: 1px;
left: 1px;
}
.ssBg.ship {
bottom: 16px;
}
.ssLvl {
position: absolute;
width: 95%;
text-align: right;
font-size: 10px;
color: #E6E6E6;
z-index: 2;
bottom: 1px;
}
.ssLvl.count {
font-size: 10px;
bottom: 17px;
}
.ssLvl.count.bignum {
font-size: 8px;
bottom: 18px;
}
.ssInput {
width: 58px;
height: 16px;
position: relative;
left: -8px;
font-size: 8px;
}
.ssLvlMod {
text-align: left;
padding-left: 4px;
}
.ssDis {
position: absolute;
z-index: 1;
top: 0px;
left: 0px;
}
.dPart {
opacity: 0.5;
}
/* - Mouse States - */
.ssBg.ssHover {
background-color: #4D4D4D;
}
.ssLvl.ssHover {
color: white;
}
img.ssHover {
border-color: #666666;
}
.ssBg.ssSelect {
background-color: #999999;
opacity: 0.45;
}
.ssLvl.ssSelect {
color: white;
}
img.ssSelect {
border-color: #999999;
}
/* --- */
.brRow {
height: 4px;
}
/* Queue */
.premblock {
color: red;
}
.queueinv {
font-size: 0px;
visibility: hidden;
}
.queueinv > td {
padding: 0px;
}
/* Info Box */
.infoImg:not(.BigImg):not(.MediumImg), .infoDes, .infoDet:not(.detWarn) {
vertical-align: top;
}
.infoDes.BigImg, .infoDes.MediumImg {
vertical-align: middle;
}
#plInfoName {
font-size: 13px;
text-shadow: 2px 2px 2px black;
}
#plInfoDet, .infoDesName, .infoRight > * {
text-shadow: 1px 1px 2px black;
}
.plInfo_Label {
display: inline-block;
width: 200px;
}
td.infoImg {
width: 130px;
height: 125px;
}
td.infoImg.BigImg {
width: 210px;
height: 205px;
}
td.infoImg.shipImg {
width: 90px;
height: 85px;
}
img.infoImg {
width: 120px;
height: 120px;
border: 2px solid black;
}
img.infoImg.BigImg {
width: 200px;
height: 200px;
border: 2px solid black;
}
img.infoImg.shipImg {
width: 80px;
height: 80px;
border: 2px solid black;
}
.infoDes {
text-align: left;
}
.infoDesc {
font-size: 10px;
}
.infoAction {
width: 160px;
}
.infoDet {
padding-right: 4px;
padding-top: 3px;
border-top: 1px dashed #415680;
}
.infoLeft {
float: left;
width: 66%;
margin-left: 2px;
text-align: left;
}
.infoRight {
float: right;
width: 32%;
text-align: left;
border-left: 1px dashed #415680;
padding-left: 5px;
height: 100%;
}
.infoRLab {
float: left;
}
.infoRVal {
float: right;
}
div.infoResReq, div.infoTechReq {
margin-top: 5px;
}
.infoResDiv {
display: inline-block;
margin-right: 8px;
text-align: center;
}
.infoResImg {
margin-bottom: 3px;
}
.reqSelector {
cursor: pointer;
}
.reqSelected {
color: orange;
}
.hide {
display: none !important;
}
/* Info Buttons */
.infoButton {
margin: 5px 0px;
display: inline-block;
width: 150px;
height: 50px;
position: relative;
}
.infoButtonText {
display: inline-block;
margin-top: 7px;
width: 100%;
margin-left: -25%;
font-size: 12px;
text-shadow: 1px 1px 1px black;
color: white;
}
.ssDo {
position: absolute;
top: 0.5px;
left: 0.5px;
width: 22px;
height: 15px;
z-index: 2;
}
.maxDo {
background-image: url('../../images/structures_color_max.png');
background-repeat: no-repeat;
position: absolute;
bottom: 0px;
right: 0px;
width: 16px;
height: 16px;
}
.maxDo:hover {
background-position: 0 -16px;
}
.buildDo_Green, .buildDo_Orange, .buildDo_Red, .construct_Green {
background-image: url('../../images/structures_color_big.png');
background-repeat: no-repeat;
}
.buildDo_Green {
background-position: 0 0;
}
.buildDo_Green:hover {
background-position: 0 -50px;
}
.buildDo_Orange {
background-position: 0 -100px;
}
.buildDo_Orange:hover {
background-position: 0 -150px;
}
.buildDo_Red {
background-position: 0 -200px;
}
.buildDo_Red:hover {
background-position: 0 -250px;
}
.construct_Green {
background-position: 0 -300px;
}
.construct_Green:hover {
background-position: 0 -350px;
}
.buildDo_Gray, .destroyDo_Gray, .construct_Gray {
background-image: url('../../images/structures_gray_big.png');
background-repeat: no-repeat;
cursor: default;
}
.buildDo_Gray {
background-position: 0 0;
}
.buildDo_Gray:hover {
background-position: 0 -50px;
}
.destroyDo_Gray {
background-position: 0 -100px;
}
.destroyDo_Gray:hover {
background-position: 0 -150px;
}
.construct_Gray {
background-position: 0 -200px;
}
.construct_Gray:hover {
background-position: 0 -250px;
}
.ssDo.buildDo_Green, .ssDo.buildDo_Orange {
background-image: url('../../images/structures_color_small.png');
background-repeat: no-repeat;
}
.ssDo.buildDo_Green {
background-position: 0 0;
}
.ssDo.buildDo_Green:hover {
background-position: 0 -15px;
}
.ssDo.buildDo_Orange {
background-position: 0 -30px;
}
.ssDo.buildDo_Orange:hover {
background-position: 0 -45px;
}
.buildDo_Gray.destButton {
cursor: help;
}
.destCost, .destTime {
margin-bottom: 3px;
width: 100%;
display: inline-block;
color: #A6A6A6;
text-align: center;
}
.destTime {
margin-top: 3px;
}
.destLab {
float: left;
width: 65px;
display: inline-block;
}
.destVal {
float: right;
text-align: right;
display: inline-block;
}
.destTimeVal {
text-align: center;
display: inline-block;
width: 100%;
}
/* Misc */
.pad1 {
padding: 1.5px;
}
.w100p {
width: 100%;
}
.w50p {
width: 50%;
}
.w20x {
width: 20px;
}
.w50x {
width: 50px;
}
.w900x {
width: 900px;
}
.w870x {
width: 870px;
}
.w290x {
width: 290px;
}
.w260x {
width: 260px;
}
.h100p {
height: 100%;
}
.mb10 {
margin-bottom: 10px;
}
.m7l {
margin-left: 7px;
}
.m7r {
margin-right: 7px;
}
.inv {
visibility: hidden;
}
.endDate {
cursor: help;
}
.text_left {
text-align: left;
}
.resCounter {
margin-top: 4px;
}
.infoC {
display: inline-block;
width: 100%;
}
.tabHover {
background-color: #455B87;
border-color: #526EA3;
cursor: pointer;
}
.tabSelect {
background-color: #4E6797;
border-color: #607BAF;
}
.linkImg {
vertical-align: middle;
padding-right: 3px;
} | services/ogame_php/src2/css/structures.css | .tReqDiv {
float: left;
margin-right: 2px;
cursor: help;
}
.tReqImg {
width: 42px;
height: 42px;
border: 1px solid #000;
}
.tReqBg {
background: #000;
}
.buildImg {
border: 2px solid #000;
}
/* Structure Selectors */
.ssDiv {
margin: 0 2px;
cursor: pointer;
width: 74px;
position: relative;
display: inline-block;
}
.ssImg {
width: 72px;
height: 72px;
border: 1px solid #000;
}
.ssBg {
background: #000;
position: absolute;
bottom: 0px;
width: 72px;
opacity: 0.6;
z-index: 2;
bottom: 1px;
left: 1px;
}
.ssBg.ship {
bottom: 16px;
}
.ssLvl {
position: absolute;
width: 95%;
text-align: right;
font-size: 10px;
color: #E6E6E6;
z-index: 2;
bottom: 1px;
}
.ssLvl.count {
font-size: 10px;
bottom: 17px;
}
.ssLvl.count.bignum {
font-size: 8px;
bottom: 18px;
}
.ssInput {
width: 58px;
height: 16px;
position: relative;
left: -8px;
font-size: 8px;
}
.ssLvlMod {
text-align: left;
padding-left: 4px;
}
.ssDis {
position: absolute;
z-index: 1;
top: 0px;
left: 0px;
}
.dPart {
opacity: 0.5;
}
/* - Mouse States - */
.ssBg.ssHover {
background-color: #4D4D4D;
}
.ssLvl.ssHover {
color: white;
}
img.ssHover {
border-color: #666666;
}
.ssBg.ssSelect {
background-color: #999999;
opacity: 0.45;
}
.ssLvl.ssSelect {
color: white;
}
img.ssSelect {
border-color: #999999;
}
/* --- */
.brRow {
height: 4px;
}
/* Queue */
.premblock {
color: red;
}
.queueinv {
font-size: 0px;
visibility: hidden;
}
.queueinv > td {
padding: 0px;
}
/* Info Box */
.infoImg:not(.BigImg):not(.MediumImg), .infoDes, .infoDet:not(.detWarn) {
vertical-align: top;
}
.infoDes.BigImg, .infoDes.MediumImg {
vertical-align: middle;
}
#plInfoName {
font-size: 13px;
text-shadow: 2px 2px 2px black;
}
#plInfoDet, .infoDesName, .infoRight > * {
text-shadow: 1px 1px 2px black;
}
.plInfo_Label {
display: inline-block;
width: 200px;
}
td.infoImg {
width: 130px;
height: 125px;
}
td.infoImg.BigImg {
width: 210px;
height: 205px;
}
td.infoImg.shipImg {
width: 90px;
height: 85px;
}
img.infoImg {
width: 120px;
height: 120px;
border: 2px solid black;
}
img.infoImg.BigImg {
width: 200px;
height: 200px;
border: 2px solid black;
}
img.infoImg.shipImg {
width: 80px;
height: 80px;
border: 2px solid black;
}
.infoDes {
text-align: left;
}
.infoDesc {
font-size: 10px;
}
.infoAction {
width: 160px;
}
.infoDet {
padding-right: 4px;
padding-top: 3px;
border-top: 1px dashed #415680;
}
.infoLeft {
float: left;
width: 66%;
margin-left: 2px;
text-align: left;
}
.infoRight {
float: right;
width: 32%;
text-align: left;
border-left: 1px dashed #415680;
padding-left: 5px;
height: 100%;
}
.infoRLab {
float: left;
}
.infoRVal {
float: right;
}
div.infoResReq, div.infoTechReq {
margin-top: 5px;
}
.infoResDiv {
display: inline-block;
margin-right: 8px;
text-align: center;
}
.infoResImg {
margin-bottom: 3px;
}
.reqSelector {
cursor: pointer;
}
.reqSelected {
color: orange;
}
.hide {
display: none !important;
}
/* Info Buttons */
.infoButton {
margin: 5px 0px;
display: inline-block;
width: 150px;
height: 50px;
position: relative;
}
.infoButtonText {
display: inline-block;
margin-top: 7px;
width: 100%;
margin-left: -25%;
font-size: 12px;
text-shadow: 1px 1px 1px black;
color: white;
}
.ssDo {
position: absolute;
top: 0.5px;
left: 0.5px;
width: 22px;
height: 15px;
z-index: 2;
}
.maxDo {
background-image: url('../../images/structures_color_max.png');
background-repeat: no-repeat;
position: absolute;
bottom: 0px;
right: 0px;
width: 16px;
height: 16px;
}
.maxDo:hover {
background-position: 0 -16px;
}
.buildDo_Green, .buildDo_Orange, .buildDo_Red, .construct_Green {
background-image: url('../../images/structures_color_big.png');
background-repeat: no-repeat;
}
.buildDo_Green {
background-position: 0 0;
}
.buildDo_Green:hover {
background-position: 0 -50px;
}
.buildDo_Orange {
background-position: 0 -100px;
}
.buildDo_Orange:hover {
background-position: 0 -150px;
}
.buildDo_Red {
background-position: 0 -200px;
}
.buildDo_Red:hover {
background-position: 0 -250px;
}
.construct_Green {
background-position: 0 -300px;
}
.construct_Green:hover {
background-position: 0 -350px;
}
.buildDo_Gray, .destroyDo_Gray, .construct_Gray {
background-image: url('../../images/structures_gray_big.png');
background-repeat: no-repeat;
cursor: default;
}
.buildDo_Gray {
background-position: 0 0;
}
.buildDo_Gray:hover {
background-position: 0 -50px;
}
.destroyDo_Gray {
background-position: 0 -100px;
}
.destroyDo_Gray:hover {
background-position: 0 -150px;
}
.construct_Gray {
background-position: 0 -200px;
}
.construct_Gray:hover {
background-position: 0 -250px;
}
.ssDo.buildDo_Green, .ssDo.buildDo_Orange {
background-image: url('../../images/structures_color_small.png');
background-repeat: no-repeat;
}
.ssDo.buildDo_Green {
background-position: 0 0;
}
.ssDo.buildDo_Green:hover {
background-position: 0 -15px;
}
.ssDo.buildDo_Orange {
background-position: 0 -30px;
}
.ssDo.buildDo_Orange:hover {
background-position: 0 -45px;
}
.buildDo_Gray.destButton {
cursor: help;
}
.destCost, .destTime {
margin-bottom: 3px;
width: 100%;
display: inline-block;
color: #A6A6A6;
text-align: center;
}
.destTime {
margin-top: 3px;
}
.destLab {
float: left;
width: 65px;
display: inline-block;
}
.destVal {
float: right;
text-align: right;
display: inline-block;
}
.destTimeVal {
text-align: center;
display: inline-block;
width: 100%;
}
/* Misc */
.pad1 {
padding: 1.5px;
}
.w100p {
width: 100%;
}
.w50p {
width: 50%;
}
.w20x {
width: 20px;
}
.w50x {
width: 50px;
}
.w900x {
width: 900px;
}
.w870x {
width: 870px;
}
.w290x {
width: 290px;
}
.w260x {
width: 260px;
}
.h100p {
height: 100%;
}
.mb10 {
margin-bottom: 10px;
}
.m7l {
margin-left: 7px;
}
.m7r {
margin-right: 7px;
}
.inv {
visibility: hidden;
}
.endDate {
cursor: help;
}
.text_left {
text-align: left;
}
.resCounter {
margin-top: 4px;
}
.infoC {
display: inline-block;
width: 100%;
}
.tabHover {
background-color: #455B87;
border-color: #526EA3;
cursor: pointer;
}
.tabSelect {
background-color: #4E6797;
border-color: #607BAF;
}
.linkImg {
vertical-align: middle;
padding-right: 3px;
} | 0.486088 | 0.211743 |
*,
*::before,
*::after {
box-sizing: border-box; }
body {
margin: 0;
background-color: #1e1f29;
background-image: url("../images/bg-stars.svg");
background-size: cover;
font-size: 14px;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif; }
.container {
height: 70vh;
margin-top: 20px;
padding: 80px 20px;
text-align: center; }
.container h1 {
color: white;
font-size: 2.4em;
font-weight: 700;
letter-spacing: 2px;
line-height: 1; }
.date-container {
padding: 20px 0;
display: flex;
justify-content: space-between; }
.date__item {
padding: 10px 8px;
background-color: #343650;
color: #fb6087;
font-size: 2.6em;
font-weight: 700;
border-radius: 8px;
position: relative;
box-shadow: 0 5px #13141b; }
.date__item::after, .date__item::before {
content: " ";
width: 8px;
height: 8px;
background-color: #1e1f29;
border-radius: 50%;
position: absolute;
top: 50%;
transform: translateY(-50%); }
.date__item::before {
left: -5px; }
.date__item::after {
right: -5px; }
.date__item-title {
margin-top: 5px;
font-size: 0.9em;
font-weight: 400;
color: #8486a9; }
footer {
height: 25vh;
position: relative; }
footer .bg {
width: 100%;
height: 200px;
background-image: url("../images/pattern-hills.svg");
background-size: 230% 100%;
position: absolute;
z-index: -1; }
.social-icon {
padding-top: 100px;
margin-right: auto;
margin-left: auto;
max-width: 120px;
display: flex;
flex-wrap: wrap;
justify-content: space-between; }
.social-icon__item {
width: 28px;
height: 28px; }
.social-icon__item img {
padding: 4px;
width: 100%; }
.social-icon__item:hover {
outline: 2px dotted #fb6087;
cursor: pointer; }
.attribution {
margin-top: 30px;
width: 100%;
font-size: 12px;
color: #8486a9;
text-align: center; }
.attribution a {
color: #fb6087; }
.attribution a:hover {
color: #fa2e61; }
@media (min-width: 400px) {
.container {
width: 94%;
margin: auto; } }
@media (min-width: 500px) {
.container {
padding-top: 100px;
width: 480px; }
.date-container {
padding-top: 30px;
margin-right: auto;
margin-left: auto;
width: 400px; }
.date__item {
padding: 12px 10px;
font-size: 3em; }
.date__item::after, .date__item::before {
width: 10px;
height: 10px; }
footer {
padding-top: 20px; }
.social-icon__item {
width: 33px;
height: 33px; }
.attribution {
font-size: 1em; } }
@media (min-width: 768px) {
.date-container {
padding-top: 60px;
width: 500px; }
.date__item {
padding: 18px 16px;
font-size: 3.5em; }
.date__item::after, .date__item::before {
width: 14px;
height: 14px; }
.date__item::before {
left: -7px; }
.date__item::after {
right: -7px; } }
@media (min-width: 900px) {
.container {
padding-top: 80px;
padding-bottom: 0;
width: 100%; }
.date-container {
justify-content: space-evenly;
padding-top: 40px;
width: 600px; }
.date__item {
padding: 20px 18px;
font-size: 4em; }
.date__item::after, .date__item::before {
width: 16px;
height: 16px; }
.date__item::before {
left: -8px; }
.date__item::after {
right: -8px; }
.date__item-title {
font-size: .95em; } }
/*# sourceMappingURL=style.css.map */ | css/style.css | *,
*::before,
*::after {
box-sizing: border-box; }
body {
margin: 0;
background-color: #1e1f29;
background-image: url("../images/bg-stars.svg");
background-size: cover;
font-size: 14px;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif; }
.container {
height: 70vh;
margin-top: 20px;
padding: 80px 20px;
text-align: center; }
.container h1 {
color: white;
font-size: 2.4em;
font-weight: 700;
letter-spacing: 2px;
line-height: 1; }
.date-container {
padding: 20px 0;
display: flex;
justify-content: space-between; }
.date__item {
padding: 10px 8px;
background-color: #343650;
color: #fb6087;
font-size: 2.6em;
font-weight: 700;
border-radius: 8px;
position: relative;
box-shadow: 0 5px #13141b; }
.date__item::after, .date__item::before {
content: " ";
width: 8px;
height: 8px;
background-color: #1e1f29;
border-radius: 50%;
position: absolute;
top: 50%;
transform: translateY(-50%); }
.date__item::before {
left: -5px; }
.date__item::after {
right: -5px; }
.date__item-title {
margin-top: 5px;
font-size: 0.9em;
font-weight: 400;
color: #8486a9; }
footer {
height: 25vh;
position: relative; }
footer .bg {
width: 100%;
height: 200px;
background-image: url("../images/pattern-hills.svg");
background-size: 230% 100%;
position: absolute;
z-index: -1; }
.social-icon {
padding-top: 100px;
margin-right: auto;
margin-left: auto;
max-width: 120px;
display: flex;
flex-wrap: wrap;
justify-content: space-between; }
.social-icon__item {
width: 28px;
height: 28px; }
.social-icon__item img {
padding: 4px;
width: 100%; }
.social-icon__item:hover {
outline: 2px dotted #fb6087;
cursor: pointer; }
.attribution {
margin-top: 30px;
width: 100%;
font-size: 12px;
color: #8486a9;
text-align: center; }
.attribution a {
color: #fb6087; }
.attribution a:hover {
color: #fa2e61; }
@media (min-width: 400px) {
.container {
width: 94%;
margin: auto; } }
@media (min-width: 500px) {
.container {
padding-top: 100px;
width: 480px; }
.date-container {
padding-top: 30px;
margin-right: auto;
margin-left: auto;
width: 400px; }
.date__item {
padding: 12px 10px;
font-size: 3em; }
.date__item::after, .date__item::before {
width: 10px;
height: 10px; }
footer {
padding-top: 20px; }
.social-icon__item {
width: 33px;
height: 33px; }
.attribution {
font-size: 1em; } }
@media (min-width: 768px) {
.date-container {
padding-top: 60px;
width: 500px; }
.date__item {
padding: 18px 16px;
font-size: 3.5em; }
.date__item::after, .date__item::before {
width: 14px;
height: 14px; }
.date__item::before {
left: -7px; }
.date__item::after {
right: -7px; } }
@media (min-width: 900px) {
.container {
padding-top: 80px;
padding-bottom: 0;
width: 100%; }
.date-container {
justify-content: space-evenly;
padding-top: 40px;
width: 600px; }
.date__item {
padding: 20px 18px;
font-size: 4em; }
.date__item::after, .date__item::before {
width: 16px;
height: 16px; }
.date__item::before {
left: -8px; }
.date__item::after {
right: -8px; }
.date__item-title {
font-size: .95em; } }
/*# sourceMappingURL=style.css.map */ | 0.44071 | 0.05951 |
button[type=roll]:before {
content: "" !important;
}
textarea {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
input[disabled=true] {
background-color:lightgray !important;
font-weight: bold;
color: black;
}
button[type=roll]{
font-size: 1em !important;
font-weight: bold;
line-height: normal;
margin: 0px !important;
}
.sheet-5colrow {
display: block;
clear: both;
margin-left: 10px;
margin-right: 10px;
}
.sheet-5colrow .sheet-col {
/*width: calc(20% - 20px);*/
/*margin-right: 30px;*/
}
button.sheet-table-button,
button.sheet-table-button table,
button.sheet-table-button table tbody,
button.sheet-table-button table tbody tr,
button.sheet-table-button table tbody tr td span{
width: 100%;
}
button.sheet-table-button {
background: #747474;
}
button.sheet-table-button table {
border-collapse: separate;
border-spacing: 3px;
}
button.sheet-table-button table tbody tr td {
background-color: mintcream;
}
button.sheet-table-button table tbody tr td.sheet-table-button-cell-timing {
background-color: #ECE0F8;
}
button.sheet-table-button table tbody tr td span[name="attr_arms_name"]::before,
button.sheet-table-button table tbody tr td span[name="attr_etc_name"]::before,
button.sheet-table-button table tbody tr td span[name="attr_ability_name"]::before,
button.sheet-table-button table tbody tr td span[name="attr_items_name"]::before,
button.sheet-table-button table tbody tr td span[name="attr_blessings_name"]::before {
content: "《";
}
button.sheet-table-button table tbody tr td span[name="attr_arms_name"]::after,
button.sheet-table-button table tbody tr td span[name="attr_etc_name"]::after,
button.sheet-table-button table tbody tr td span[name="attr_ability_name"]::after,
button.sheet-table-button table tbody tr td span[name="attr_items_name"]::after,
button.sheet-table-button table tbody tr td span[name="attr_blessings_name"]::after {
content: "》";
}
label > input[type=checkbox] {
display: none;
width: 0;
}
label > input[type=checkbox]:checked ~ span {
border : 2px solid black;
border-radius: 5px;
background-color: black;
color: white;
}
div[class*="sheet-section"],
div[class*="sheet-options"] {
display: none;
}
div.repcontrol {
margin-bottom: 15px;
}
input[name="attr_display"] {
display: none;
}
.sheet-oneline {
display: inline-block;
}
.sheet-column {
display : inline-block;
}
.sheet-column > button,
.sheet-column > input {
width: 120px;
}
label.sheet-tab-button {
display: inline;
padding-right: 0px;
margin-right: 5px;
}
label.sheet-tab-button span span {
margin-left: 10px;
margin-right: 10px;
margin-top: 5px;
margin-bottom: 5px;
}
input.sheet-tab-button {
/*width: 70px;*/
/*height: 20px;*/
cursor: pointer;
position: relative;
opacity: 0;
z-index: 9999;
}
span.sheet-tab-button {
text-align: center;
display: inline-block;
font-size: 15px;
background-color: rgba(125,114,69,0.2);
color: gray;
font-weight: bold;
border-style: solid;
border-radius: 10px !important;
border-width: 0px;
min-width: 70px;
/*height: 20px;*/
cursor: pointer;
position: relative;
margin-bottom: 2px;
}
label.sheet-tab-button input.sheet-tab-button:checked ~ span.sheet-tab-button {
background-color: gray;
color: white;
}
input.sheet-tab-section-pilot:checked ~ div.sheet-section-pilot,
input.sheet-tab-section-pilot:checked ~ div.sheet-section-shared,
input.sheet-tab-section-social:checked ~ div.sheet-section-social,
input.sheet-tab-section-mecha:checked ~ div.sheet-section-mecha,
input.sheet-tab-section-mecha:checked ~ div.sheet-section-shared,
input.sheet-tab-section-mecha-0:checked ~ div.sheet-section-mecha-0,
input.sheet-tab-section-mecha-1:checked ~ div.sheet-section-mecha-1,
input.sheet-tab-section-mecha-2:checked ~ div.sheet-section-mecha-2,
input.sheet-tab-section-mecha-3:checked ~ div.sheet-section-mecha-3,
input.sheet-tab-section-mecha-4:checked ~ div.sheet-section-mecha-4,
input.sheet-tab-section-mecha-5:checked ~ div.sheet-section-mecha-5,
input.sheet-tab-section-mecha-6:checked ~ div.sheet-section-mecha-6,
input.sheet-tab-section-mecha-7:checked ~ div.sheet-section-mecha-7,
input.sheet-tab-section-mecha-8:checked ~ div.sheet-section-mecha-8,
input.sheet-tab-section-mecha-9:checked ~ div.sheet-section-mecha-9,
input.sheet-options-flag:checked ~ div.sheet-options {
display: block !important;
}
input.sheet-tab-section-pilot:checked ~ div div div.sheet-section-pilot,
input.sheet-tab-section-pilot:checked ~ div div div.sheet-section-shared,
input.sheet-tab-section-social:checked ~ div div div.sheet-section-social,
input.sheet-tab-section-mecha:checked ~ div div div.sheet-section-mecha,
input.sheet-tab-section-mecha:checked ~ div div div.sheet-section-shared,
input.sheet-tab-section-mecha-0:checked ~ div div div.sheet-section-mecha-0,
input.sheet-tab-section-mecha-1:checked ~ div div div.sheet-section-mecha-1,
input.sheet-tab-section-mecha-2:checked ~ div div div.sheet-section-mecha-2,
input.sheet-tab-section-mecha-3:checked ~ div div div.sheet-section-mecha-3,
input.sheet-tab-section-mecha-4:checked ~ div div div.sheet-section-mecha-4,
input.sheet-tab-section-mecha-5:checked ~ div div div.sheet-section-mecha-5,
input.sheet-tab-section-mecha-6:checked ~ div div div.sheet-section-mecha-6,
input.sheet-tab-section-mecha-7:checked ~ div div div.sheet-section-mecha-7,
input.sheet-tab-section-mecha-8:checked ~ div div div.sheet-section-mecha-8,
input.sheet-tab-section-mecha-9:checked ~ div div div.sheet-section-mecha-9,
input.sheet-options-flag:checked ~ div div div.sheet-options {
display: block !important;
}
input[type="text"], input[type="number"] {
background:transparent;
font-weight: bold;
border-style: solid;
border-color: darkgray;
border-width: 1px 1px 3px 1px;
}
input.sheet-small-input {
min-width: 50px;
}
table span {
font-weight: bold;
display:inline-block;
white-space:nowrap;
margin: 5px;
}
table.sheet-character-table {
border-collapse: separate;
border-spacing: 10px 0px;
}
table.sheet-character-table input,
table.sheet-character-table button,
table.sheet-character-table textarea {
/*width: 180px !important;*/
overflow: hidden;
width: 100%;
max-width: 100%;
}
table.sheet-level-table {
border-collapse: separate;
border-spacing: 10px 0px;
}
table.sheet-level-table input[type="text"],
table.sheet-level-table button,
table.sheet-level-table textarea {
width: 180px !important;
overflow: hidden;
/*width: 100%;*/
/*max-width: 100%;*/
}
table.sheet-ability-score-table {
border-collapse: separate;
border-spacing: 10px;
}
table.sheet-ability-score-table td {
max-width: 100% !important;
vertical-align:top;
}
table.sheet-ability-score-table input,
table.sheet-ability-score-table button,
table.sheet-ability-score-table textarea {
width: 42px !important;
overflow: hidden;
/*width: 100%;*/
/*max-width: 100%;*/
}
table.sheet-battle-ability-score-table {
border-collapse: separate;
border-spacing: 10px;
}
table.sheet-battle-ability-score-table td {
max-width: 100% !important;
vertical-align: top;
}
table.sheet-battle-ability-score-table input,
table.sheet-battle-ability-score-table button,
table.sheet-battle-ability-score-table textarea {
width: 42px !important;
overflow: hidden;
/*width: 100%;*/
/*max-width: 100%;*/
}
table.sheet-hit-points-table {
margin-bottom: 22px;
}
table.sheet-hit-points-table tr.sheet-max {
background-color: lightgray;
}
table.sheet-move-table {
border-collapse: separate;
border-spacing: 10px;
margin: auto !important;
}
table.sheet-move-table td {
max-width: 100% !important;
}
table.sheet-move-table input,
table.sheet-move-table textarea {
width: 100%;
max-width: 100%;
}
table.sheet-defense-table th,
table.sheet-defense-table td {
/*width: 60px;*/
text-align: center;
}
table.sheet-special-stats-table label {
text-align: center;
}
table.sheet-equipped-table td {
width: 150px;
max-width: 100% !important;
}
table.sheet-equipped-table {
border-collapse: separate;
border-spacing: 2px 0px;
}
table.sheet-equipped-table select {
margin-bottom: 0px !important;
}
table.sheet-equipped-table input,
table.sheet-equipped-table textarea {
width: 150px;
max-width: 100%;
}
table.sheet-arms-table td {
max-width: 100% !important;
}
table.sheet-arms-table input,
table.sheet-arms-table textarea {
width: 100%;
max-width: 100%;
}
table.sheet-arms-table-display td {
max-width: 100% !important;
}
table.sheet-arms-table-display input,
table.sheet-arms-table-display textarea {
width: 100%;
max-width: 100%;
}
table.sheet-ability-table td {
max-width: 100% !important;
}
table.sheet-ability-table input,
table.sheet-ability-table textarea {
width: 100%;
max-width: 100%;
}
table.sheet-ability-table-display td {
max-width: 100% !important;
}
table.sheet-ability-table-display input,
table.sheet-ability-table-display textarea {
width: 100%;
max-width: 100%;
}
table.sheet-etc-table td {
max-width: 100% !important;
}
table.sheet-etc-table input,
table.sheet-etc-table textarea {
width: 100%;
max-width: 100%;
}
table.sheet-etc-table-display td {
max-width: 100% !important;
}
table.sheet-etc-table-display input,
table.sheet-etc-table-display textarea {
width: 100%;
max-width: 100%;
}
table.sheet-items-table td {
max-width: 100% !important;
}
table.sheet-items-table input,
table.sheet-items-table textarea {
width: 100%;
max-width: 100%;
}
table.sheet-items-table-display td {
max-width: 100% !important;
}
table.sheet-items-table-display input,
table.sheet-items-table-display textarea {
width: 100%;
max-width: 100%;
}
table.sheet-blessings-table td {
max-width: 100% !important;
}
table.sheet-blessings-table input[type="text"],
table.sheet-blessings-table textarea {
width: 100%;
max-width: 100%;
}
table.sheet-blessings-table-display td {
max-width: 100% !important;
}
table.sheet-blessings-table-display input[type="text"],
table.sheet-blessings-table-display textarea {
width: 100%;
max-width: 100%;
}
/* generic template */
.sheet-rolltemplate-metalric_generic table {
width:100%;
background-color:white;
border:2px solid #000;
border-spacing: 0;
border-collapse: separate;
border-radius: 5px;
-moz-box-shadow: 2px 2px 5px #000;
-webkit-box-shadow: 2px 2px 5px #000;
box-shadow:2px 2px 5px #000;
overflow: hidden;
}
.sheet-rolltemplate-metalric_generic .sheet-header {
background-color:#000;
margin: 2px 25px 2px 25px;
border: 1px solid #000;
color:white;
font-family:"Helvetica Neue",Helvetica,sans-serif;
font-size:1em;
font-weight:bold;
text-align: center;
}
.sheet-rolltemplate-metalric_generic .sheet-header a{
color:white;
text-decoration: underline;
}
.sheet-rolltemplate-metalric_generic td {
padding:5px;line-height:1.4em;
vertical-align:top;
text-align:right
}
.sheet-rolltemplate-metalric_generic tr:nth-child(odd) {
background-color:#D3D3D3;
}
.sheet-rolltemplate-metalric_generic td:nth-child(odd) {
text-align:left;
font-weight:bold
}
.sheet-rolltemplate-metalric_generic .inlinerollresult {
color: white;
background-color: black;
border-color:black;
}
.sheet-rolltemplate-metalric_generic .inlinerollresult.fullcrit {
color: white;
background-color: #3FB315
}
.sheet-rolltemplate-metalric_generic .inlinerollresult.fullfail {
color: white;
background-color: #B31515
}
.sheet-rolltemplate-metalric_generic .inlinerollresult.importantroll {
color: white;
background-color: #4A57ED;
}
/* abillity template */
.sheet-rolltemplate-metalric_abillity table {
width:100%;
background-color:white;
border:2px solid #000;
border-spacing: 0;
border-collapse: separate;
border-radius: 5px;
-moz-box-shadow: 2px 2px 5px #000;
-webkit-box-shadow: 2px 2px 5px #000;
box-shadow:2px 2px 5px #000;
overflow: hidden;
}
.sheet-rolltemplate-metalric_abillity .sheet-header {
background-color:#000;
margin: 2px 25px 2px 25px;
border: 1px solid #000;
padding-bottom: 2px;
color:white;
font-family:"Helvetica Neue",Helvetica,sans-serif;
font-size:1em;
font-weight:bold;
text-align: center;
}
.sheet-rolltemplate-metalric_abillity .sheet-header-small {
background-color:#000;
margin: 2px 2px 2px 2px;
border: 1px solid #000;
padding-top: 2px;
color:white;
font-family:"Helvetica Neue",Helvetica,sans-serif;
font-size:0.8em;
font-weight:bold;
text-align: center;
}
.sheet-rolltemplate-metalric_abillity .sheet-header a{
color:white;
text-decoration: underline;
}
.sheet-rolltemplate-metalric_abillity td {
padding:5px;line-height:1.4em;
vertical-align:top;
text-align:justify;
}
.sheet-rolltemplate-metalric_abillity tr:nth-child(even) {
background-color:#EAEAEA;
}
.sheet-rolltemplate-metalric_abillity .inlinerollresult {
color: white;
background-color: black;
border-color:black;
}
.sheet-rolltemplate-metalric_abillity .inlinerollresult.fullcrit {
color: white;
background-color: #3FB315
}
.sheet-rolltemplate-metalric_abillity .inlinerollresult.fullfail {
color: white;
background-color: #B31515
}
.sheet-rolltemplate-metalric_abillity .inlinerollresult.importantroll {
color: white;
background-color: #4A57ED;
} | Metallic Guardian/Metallic Guardian.css | button[type=roll]:before {
content: "" !important;
}
textarea {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
input[disabled=true] {
background-color:lightgray !important;
font-weight: bold;
color: black;
}
button[type=roll]{
font-size: 1em !important;
font-weight: bold;
line-height: normal;
margin: 0px !important;
}
.sheet-5colrow {
display: block;
clear: both;
margin-left: 10px;
margin-right: 10px;
}
.sheet-5colrow .sheet-col {
/*width: calc(20% - 20px);*/
/*margin-right: 30px;*/
}
button.sheet-table-button,
button.sheet-table-button table,
button.sheet-table-button table tbody,
button.sheet-table-button table tbody tr,
button.sheet-table-button table tbody tr td span{
width: 100%;
}
button.sheet-table-button {
background: #747474;
}
button.sheet-table-button table {
border-collapse: separate;
border-spacing: 3px;
}
button.sheet-table-button table tbody tr td {
background-color: mintcream;
}
button.sheet-table-button table tbody tr td.sheet-table-button-cell-timing {
background-color: #ECE0F8;
}
button.sheet-table-button table tbody tr td span[name="attr_arms_name"]::before,
button.sheet-table-button table tbody tr td span[name="attr_etc_name"]::before,
button.sheet-table-button table tbody tr td span[name="attr_ability_name"]::before,
button.sheet-table-button table tbody tr td span[name="attr_items_name"]::before,
button.sheet-table-button table tbody tr td span[name="attr_blessings_name"]::before {
content: "《";
}
button.sheet-table-button table tbody tr td span[name="attr_arms_name"]::after,
button.sheet-table-button table tbody tr td span[name="attr_etc_name"]::after,
button.sheet-table-button table tbody tr td span[name="attr_ability_name"]::after,
button.sheet-table-button table tbody tr td span[name="attr_items_name"]::after,
button.sheet-table-button table tbody tr td span[name="attr_blessings_name"]::after {
content: "》";
}
label > input[type=checkbox] {
display: none;
width: 0;
}
label > input[type=checkbox]:checked ~ span {
border : 2px solid black;
border-radius: 5px;
background-color: black;
color: white;
}
div[class*="sheet-section"],
div[class*="sheet-options"] {
display: none;
}
div.repcontrol {
margin-bottom: 15px;
}
input[name="attr_display"] {
display: none;
}
.sheet-oneline {
display: inline-block;
}
.sheet-column {
display : inline-block;
}
.sheet-column > button,
.sheet-column > input {
width: 120px;
}
label.sheet-tab-button {
display: inline;
padding-right: 0px;
margin-right: 5px;
}
label.sheet-tab-button span span {
margin-left: 10px;
margin-right: 10px;
margin-top: 5px;
margin-bottom: 5px;
}
input.sheet-tab-button {
/*width: 70px;*/
/*height: 20px;*/
cursor: pointer;
position: relative;
opacity: 0;
z-index: 9999;
}
span.sheet-tab-button {
text-align: center;
display: inline-block;
font-size: 15px;
background-color: rgba(125,114,69,0.2);
color: gray;
font-weight: bold;
border-style: solid;
border-radius: 10px !important;
border-width: 0px;
min-width: 70px;
/*height: 20px;*/
cursor: pointer;
position: relative;
margin-bottom: 2px;
}
label.sheet-tab-button input.sheet-tab-button:checked ~ span.sheet-tab-button {
background-color: gray;
color: white;
}
input.sheet-tab-section-pilot:checked ~ div.sheet-section-pilot,
input.sheet-tab-section-pilot:checked ~ div.sheet-section-shared,
input.sheet-tab-section-social:checked ~ div.sheet-section-social,
input.sheet-tab-section-mecha:checked ~ div.sheet-section-mecha,
input.sheet-tab-section-mecha:checked ~ div.sheet-section-shared,
input.sheet-tab-section-mecha-0:checked ~ div.sheet-section-mecha-0,
input.sheet-tab-section-mecha-1:checked ~ div.sheet-section-mecha-1,
input.sheet-tab-section-mecha-2:checked ~ div.sheet-section-mecha-2,
input.sheet-tab-section-mecha-3:checked ~ div.sheet-section-mecha-3,
input.sheet-tab-section-mecha-4:checked ~ div.sheet-section-mecha-4,
input.sheet-tab-section-mecha-5:checked ~ div.sheet-section-mecha-5,
input.sheet-tab-section-mecha-6:checked ~ div.sheet-section-mecha-6,
input.sheet-tab-section-mecha-7:checked ~ div.sheet-section-mecha-7,
input.sheet-tab-section-mecha-8:checked ~ div.sheet-section-mecha-8,
input.sheet-tab-section-mecha-9:checked ~ div.sheet-section-mecha-9,
input.sheet-options-flag:checked ~ div.sheet-options {
display: block !important;
}
input.sheet-tab-section-pilot:checked ~ div div div.sheet-section-pilot,
input.sheet-tab-section-pilot:checked ~ div div div.sheet-section-shared,
input.sheet-tab-section-social:checked ~ div div div.sheet-section-social,
input.sheet-tab-section-mecha:checked ~ div div div.sheet-section-mecha,
input.sheet-tab-section-mecha:checked ~ div div div.sheet-section-shared,
input.sheet-tab-section-mecha-0:checked ~ div div div.sheet-section-mecha-0,
input.sheet-tab-section-mecha-1:checked ~ div div div.sheet-section-mecha-1,
input.sheet-tab-section-mecha-2:checked ~ div div div.sheet-section-mecha-2,
input.sheet-tab-section-mecha-3:checked ~ div div div.sheet-section-mecha-3,
input.sheet-tab-section-mecha-4:checked ~ div div div.sheet-section-mecha-4,
input.sheet-tab-section-mecha-5:checked ~ div div div.sheet-section-mecha-5,
input.sheet-tab-section-mecha-6:checked ~ div div div.sheet-section-mecha-6,
input.sheet-tab-section-mecha-7:checked ~ div div div.sheet-section-mecha-7,
input.sheet-tab-section-mecha-8:checked ~ div div div.sheet-section-mecha-8,
input.sheet-tab-section-mecha-9:checked ~ div div div.sheet-section-mecha-9,
input.sheet-options-flag:checked ~ div div div.sheet-options {
display: block !important;
}
input[type="text"], input[type="number"] {
background:transparent;
font-weight: bold;
border-style: solid;
border-color: darkgray;
border-width: 1px 1px 3px 1px;
}
input.sheet-small-input {
min-width: 50px;
}
table span {
font-weight: bold;
display:inline-block;
white-space:nowrap;
margin: 5px;
}
table.sheet-character-table {
border-collapse: separate;
border-spacing: 10px 0px;
}
table.sheet-character-table input,
table.sheet-character-table button,
table.sheet-character-table textarea {
/*width: 180px !important;*/
overflow: hidden;
width: 100%;
max-width: 100%;
}
table.sheet-level-table {
border-collapse: separate;
border-spacing: 10px 0px;
}
table.sheet-level-table input[type="text"],
table.sheet-level-table button,
table.sheet-level-table textarea {
width: 180px !important;
overflow: hidden;
/*width: 100%;*/
/*max-width: 100%;*/
}
table.sheet-ability-score-table {
border-collapse: separate;
border-spacing: 10px;
}
table.sheet-ability-score-table td {
max-width: 100% !important;
vertical-align:top;
}
table.sheet-ability-score-table input,
table.sheet-ability-score-table button,
table.sheet-ability-score-table textarea {
width: 42px !important;
overflow: hidden;
/*width: 100%;*/
/*max-width: 100%;*/
}
table.sheet-battle-ability-score-table {
border-collapse: separate;
border-spacing: 10px;
}
table.sheet-battle-ability-score-table td {
max-width: 100% !important;
vertical-align: top;
}
table.sheet-battle-ability-score-table input,
table.sheet-battle-ability-score-table button,
table.sheet-battle-ability-score-table textarea {
width: 42px !important;
overflow: hidden;
/*width: 100%;*/
/*max-width: 100%;*/
}
table.sheet-hit-points-table {
margin-bottom: 22px;
}
table.sheet-hit-points-table tr.sheet-max {
background-color: lightgray;
}
table.sheet-move-table {
border-collapse: separate;
border-spacing: 10px;
margin: auto !important;
}
table.sheet-move-table td {
max-width: 100% !important;
}
table.sheet-move-table input,
table.sheet-move-table textarea {
width: 100%;
max-width: 100%;
}
table.sheet-defense-table th,
table.sheet-defense-table td {
/*width: 60px;*/
text-align: center;
}
table.sheet-special-stats-table label {
text-align: center;
}
table.sheet-equipped-table td {
width: 150px;
max-width: 100% !important;
}
table.sheet-equipped-table {
border-collapse: separate;
border-spacing: 2px 0px;
}
table.sheet-equipped-table select {
margin-bottom: 0px !important;
}
table.sheet-equipped-table input,
table.sheet-equipped-table textarea {
width: 150px;
max-width: 100%;
}
table.sheet-arms-table td {
max-width: 100% !important;
}
table.sheet-arms-table input,
table.sheet-arms-table textarea {
width: 100%;
max-width: 100%;
}
table.sheet-arms-table-display td {
max-width: 100% !important;
}
table.sheet-arms-table-display input,
table.sheet-arms-table-display textarea {
width: 100%;
max-width: 100%;
}
table.sheet-ability-table td {
max-width: 100% !important;
}
table.sheet-ability-table input,
table.sheet-ability-table textarea {
width: 100%;
max-width: 100%;
}
table.sheet-ability-table-display td {
max-width: 100% !important;
}
table.sheet-ability-table-display input,
table.sheet-ability-table-display textarea {
width: 100%;
max-width: 100%;
}
table.sheet-etc-table td {
max-width: 100% !important;
}
table.sheet-etc-table input,
table.sheet-etc-table textarea {
width: 100%;
max-width: 100%;
}
table.sheet-etc-table-display td {
max-width: 100% !important;
}
table.sheet-etc-table-display input,
table.sheet-etc-table-display textarea {
width: 100%;
max-width: 100%;
}
table.sheet-items-table td {
max-width: 100% !important;
}
table.sheet-items-table input,
table.sheet-items-table textarea {
width: 100%;
max-width: 100%;
}
table.sheet-items-table-display td {
max-width: 100% !important;
}
table.sheet-items-table-display input,
table.sheet-items-table-display textarea {
width: 100%;
max-width: 100%;
}
table.sheet-blessings-table td {
max-width: 100% !important;
}
table.sheet-blessings-table input[type="text"],
table.sheet-blessings-table textarea {
width: 100%;
max-width: 100%;
}
table.sheet-blessings-table-display td {
max-width: 100% !important;
}
table.sheet-blessings-table-display input[type="text"],
table.sheet-blessings-table-display textarea {
width: 100%;
max-width: 100%;
}
/* generic template */
.sheet-rolltemplate-metalric_generic table {
width:100%;
background-color:white;
border:2px solid #000;
border-spacing: 0;
border-collapse: separate;
border-radius: 5px;
-moz-box-shadow: 2px 2px 5px #000;
-webkit-box-shadow: 2px 2px 5px #000;
box-shadow:2px 2px 5px #000;
overflow: hidden;
}
.sheet-rolltemplate-metalric_generic .sheet-header {
background-color:#000;
margin: 2px 25px 2px 25px;
border: 1px solid #000;
color:white;
font-family:"Helvetica Neue",Helvetica,sans-serif;
font-size:1em;
font-weight:bold;
text-align: center;
}
.sheet-rolltemplate-metalric_generic .sheet-header a{
color:white;
text-decoration: underline;
}
.sheet-rolltemplate-metalric_generic td {
padding:5px;line-height:1.4em;
vertical-align:top;
text-align:right
}
.sheet-rolltemplate-metalric_generic tr:nth-child(odd) {
background-color:#D3D3D3;
}
.sheet-rolltemplate-metalric_generic td:nth-child(odd) {
text-align:left;
font-weight:bold
}
.sheet-rolltemplate-metalric_generic .inlinerollresult {
color: white;
background-color: black;
border-color:black;
}
.sheet-rolltemplate-metalric_generic .inlinerollresult.fullcrit {
color: white;
background-color: #3FB315
}
.sheet-rolltemplate-metalric_generic .inlinerollresult.fullfail {
color: white;
background-color: #B31515
}
.sheet-rolltemplate-metalric_generic .inlinerollresult.importantroll {
color: white;
background-color: #4A57ED;
}
/* abillity template */
.sheet-rolltemplate-metalric_abillity table {
width:100%;
background-color:white;
border:2px solid #000;
border-spacing: 0;
border-collapse: separate;
border-radius: 5px;
-moz-box-shadow: 2px 2px 5px #000;
-webkit-box-shadow: 2px 2px 5px #000;
box-shadow:2px 2px 5px #000;
overflow: hidden;
}
.sheet-rolltemplate-metalric_abillity .sheet-header {
background-color:#000;
margin: 2px 25px 2px 25px;
border: 1px solid #000;
padding-bottom: 2px;
color:white;
font-family:"Helvetica Neue",Helvetica,sans-serif;
font-size:1em;
font-weight:bold;
text-align: center;
}
.sheet-rolltemplate-metalric_abillity .sheet-header-small {
background-color:#000;
margin: 2px 2px 2px 2px;
border: 1px solid #000;
padding-top: 2px;
color:white;
font-family:"Helvetica Neue",Helvetica,sans-serif;
font-size:0.8em;
font-weight:bold;
text-align: center;
}
.sheet-rolltemplate-metalric_abillity .sheet-header a{
color:white;
text-decoration: underline;
}
.sheet-rolltemplate-metalric_abillity td {
padding:5px;line-height:1.4em;
vertical-align:top;
text-align:justify;
}
.sheet-rolltemplate-metalric_abillity tr:nth-child(even) {
background-color:#EAEAEA;
}
.sheet-rolltemplate-metalric_abillity .inlinerollresult {
color: white;
background-color: black;
border-color:black;
}
.sheet-rolltemplate-metalric_abillity .inlinerollresult.fullcrit {
color: white;
background-color: #3FB315
}
.sheet-rolltemplate-metalric_abillity .inlinerollresult.fullfail {
color: white;
background-color: #B31515
}
.sheet-rolltemplate-metalric_abillity .inlinerollresult.importantroll {
color: white;
background-color: #4A57ED;
} | 0.250179 | 0.053059 |
.intro {
padding: 100px 0;
color: #fff;
}
.heading-strips-one {
border-top: 4px solid #00e0d0;
height: 1px;
margin: 20px auto 25px;
position: relative;
width: 80px;
}
.intro .intro-body {
padding-top: 17.5%;
vertical-align: middle;
}
.intro .intro-body.intro-app{
padding-top: 5.5%;
vertical-align: middle;
}
.app-intro-content
{
padding-top: 13.5%;
}
.intro-para
{
font-size:16px;
}
.intro .intro-body .brand-heading {
font-size: 40px;
}
.intro .intro-body .intro-text {
font-size: 1em;
}
@media(min-width:768px) {
.intro {
height: 100%;
padding: 0;
}
.intro .intro-body .brand-heading {
font-size: 38px;
}
.intro .intro-body .intro-text {
font-size: 1.1em;
}
}
.btn-intro {
width: 70px;
height: 70px;
margin-top: 5px;
margin-bottom: 20px;
padding: 7px 16px;
font-size: 50px;
color: #fff;
background: 0 0;
-webkit-transition: background .3s ease-in-out;
-moz-transition: background .3s ease-in-out;
transition: background .3s ease-in-out;
}
.btn-intro:hover, .btn-intro:focus {
outline: 0;
color: #fff;
}
.btn-intro i.animated {
-webkit-transition-property: -webkit-transform;
-webkit-transition-duration: 1s;
-moz-transition-property: -moz-transform;
-moz-transition-duration: 1s;
}
.btn-intro:hover i.animated {
-webkit-animation-name: pulse;
-moz-animation-name: pulse;
-webkit-animation-duration: 1.5s;
-moz-animation-duration: 1.5s;
-webkit-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-timing-function: linear;
}
@-webkit-keyframes pulse {
0 {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-moz-keyframes pulse {
0 {
-moz-transform: scale(1);
transform: scale(1);
}
50% {
-moz-transform: scale(1.2);
transform: scale(1.2);
}
100% {
-moz-transform: scale(1);
transform: scale(1);
}
}
/*parallax*/
.parallax {
background-attachment: center center fixed;
background-repeat: repeat-y;
background-position: 50% 0;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.parallax h1, .parallax h2, .parallax h3, .parallax h4, .parallax h5, .parallax h6, .parallax .heading {
color: #fff;
}
.parallax p {
color: #E0E0E0;
}
.parallax a, .parallax li
{
color: #fff;
}
.parallax .description {
color: #ccc;
}
.parallax_banner {
position: relative;
background-image: url(../../images/parallax/intro_bg1.jpg);
height: 100vh;
}
.parallax_banner .container {
position: relative;
z-index: 99;
}
.parallax_banner:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.6);
}
.parallax_banner:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
@media (max-width: 762px) {
.parallax_banner {
position: relative;
background-image: url(../../images/parallax/intro_bg1.jpg);
height: auto;
}
}
.parallax_banner2 {
position: relative;
background-image: url(../../images/parallax/intro_bg2.jpg);
height: 100vh;
}
.parallax_banner2 .container {
position: relative;
z-index: 99;
}
.parallax_banner2:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.6);
}
.parallax_banner2:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
@media (max-width: 762px) {
.parallax_banner2 {
position: relative;
background-image: url(../../images/parallax/intro_bg2.jpg);
height: auto;
}
}
.parallax_banner3 {
position: relative;
background-image: url(../../images/parallax/intro_bg3.jpg);
height: 100vh;
}
.parallax_banner3 .container {
position: relative;
z-index: 99;
}
.parallax_banner3:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.6);
}
.parallax_banner3:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
@media (max-width: 762px) {
.parallax_banner3 {
position: relative;
background-image: url(../../images/parallax/intro_bg3.jpg);
height: auto;
}
}
.parallax_banner4 {
position: relative;
background-image: url(../../images/parallax/intro_bg4.jpg);
height: 100vh;
}
.parallax_banner4 .container {
position: relative;
z-index: 99;
}
.parallax_banner4:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.6);
}
.parallax_banner4:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
@media (max-width: 762px) {
.parallax_banner4 {
position: relative;
background-image: url(../../images/parallax/intro_bg4.jpg);
height: auto;
}
}
.parallax_banner5 {
position: relative;
background-image: url(../../images/parallax/intro_bg5.jpg);
height: 100vh;
}
.parallax_banner5 .container {
position: relative;
z-index: 99;
}
.parallax_banner5:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.6);
}
.parallax_banner5:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
@media (max-width: 762px) {
.parallax_banner5 {
position: relative;
background-image: url(../../images/parallax/intro_bg5.jpg);
height: auto;
}
}
.parallax_banner6 {
position: relative;
background-image: url(../../images/parallax/intro_bg6.jpg);
height: 100vh;
}
.parallax_banner6 .container {
position: relative;
z-index: 99;
}
.parallax_banner6:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.6);
}
.parallax_banner6:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
@media (max-width: 762px) {
.parallax_banner6 {
position: relative;
background-image: url(../../images/parallax/intro_bg6.jpg);
height: auto;
}
}
/*parallax_section1*/
.parallax_section1 {
position: relative;
background-image: url(../../images/parallax/1.jpeg);
}
.parallax_section1 .container {
position: relative;
z-index: 99;
}
.parallax_section1 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section1:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.7);
}
.parallax_section1:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
/*parallax_section2*/
.parallax_section2 {
position: relative;
background-image: url(../../images/parallax/2.jpg);
}
.parallax_section2 .container {
position: relative;
z-index: 99;
}
.parallax_section2 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section2:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.7);
}
.parallax_section2:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
/*parallax_section3*/
.parallax_section3 {
position: relative;
background-image: url(../../images/parallax/3.jpg);
}
.parallax_section3 .container {
position: relative;
z-index: 99;
}
.parallax_section3 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section3:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.7);
}
.parallax_section3:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
/*parallax_section4*/
.parallax_section4 {
position: relative;
background-image: url(../../images/parallax/4.jpg);
}
.parallax_section4 .container {
position: relative;
z-index: 99;
}
.parallax_section4 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section4:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.7);
}
.parallax_section4:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
.parallax_section5 {
position: relative;
background-image: url(../../images/parallax/5.jpg);
}
.parallax_section5 .container {
position: relative;
z-index: 99;
}
.parallax_section5 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section5:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.7);
}
.parallax_section5:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
.parallax_section6 {
position: relative;
background-image: url(../../images/parallax/10.jpg);
}
.parallax_section6 .container {
position: relative;
z-index: 99;
}
.parallax_section6 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section6:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.7);
}
.parallax_section6:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
.parallax_section_dark2 {
position: relative;
background-image: url(../../images/parallax/3a.jpg);
}
.parallax_section_dark2 .container {
position: relative;
z-index: 99;
}
.parallax_section_dark2 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section_dark2:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.8);
}
.parallax_section_dark2:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
.parallax-normal {
background-attachment: center center fixed;
background-repeat: repeat-y;
background-position: 50% 0;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.parallax_section-normal {
position: relative;
background-image: url(../../images/parallax/8.jpg);
}
.parallax_section-normal .container {
position: relative;
z-index: 99;
}
.parallax_section-normal .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section-normal:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
}
.parallax_section-normal:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
}
.parallax_section-normal2 {
position: relative;
background-image: url(../../images/parallax/9.jpg);
}
.parallax_section-normal2 .container {
position: relative;
z-index: 99;
}
.parallax_section-normal2 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section-normal2:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
}
.parallax_section-normal2:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
} | public/assets/css/shortcodes/parallax.css | .intro {
padding: 100px 0;
color: #fff;
}
.heading-strips-one {
border-top: 4px solid #00e0d0;
height: 1px;
margin: 20px auto 25px;
position: relative;
width: 80px;
}
.intro .intro-body {
padding-top: 17.5%;
vertical-align: middle;
}
.intro .intro-body.intro-app{
padding-top: 5.5%;
vertical-align: middle;
}
.app-intro-content
{
padding-top: 13.5%;
}
.intro-para
{
font-size:16px;
}
.intro .intro-body .brand-heading {
font-size: 40px;
}
.intro .intro-body .intro-text {
font-size: 1em;
}
@media(min-width:768px) {
.intro {
height: 100%;
padding: 0;
}
.intro .intro-body .brand-heading {
font-size: 38px;
}
.intro .intro-body .intro-text {
font-size: 1.1em;
}
}
.btn-intro {
width: 70px;
height: 70px;
margin-top: 5px;
margin-bottom: 20px;
padding: 7px 16px;
font-size: 50px;
color: #fff;
background: 0 0;
-webkit-transition: background .3s ease-in-out;
-moz-transition: background .3s ease-in-out;
transition: background .3s ease-in-out;
}
.btn-intro:hover, .btn-intro:focus {
outline: 0;
color: #fff;
}
.btn-intro i.animated {
-webkit-transition-property: -webkit-transform;
-webkit-transition-duration: 1s;
-moz-transition-property: -moz-transform;
-moz-transition-duration: 1s;
}
.btn-intro:hover i.animated {
-webkit-animation-name: pulse;
-moz-animation-name: pulse;
-webkit-animation-duration: 1.5s;
-moz-animation-duration: 1.5s;
-webkit-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-timing-function: linear;
}
@-webkit-keyframes pulse {
0 {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-moz-keyframes pulse {
0 {
-moz-transform: scale(1);
transform: scale(1);
}
50% {
-moz-transform: scale(1.2);
transform: scale(1.2);
}
100% {
-moz-transform: scale(1);
transform: scale(1);
}
}
/*parallax*/
.parallax {
background-attachment: center center fixed;
background-repeat: repeat-y;
background-position: 50% 0;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.parallax h1, .parallax h2, .parallax h3, .parallax h4, .parallax h5, .parallax h6, .parallax .heading {
color: #fff;
}
.parallax p {
color: #E0E0E0;
}
.parallax a, .parallax li
{
color: #fff;
}
.parallax .description {
color: #ccc;
}
.parallax_banner {
position: relative;
background-image: url(../../images/parallax/intro_bg1.jpg);
height: 100vh;
}
.parallax_banner .container {
position: relative;
z-index: 99;
}
.parallax_banner:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.6);
}
.parallax_banner:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
@media (max-width: 762px) {
.parallax_banner {
position: relative;
background-image: url(../../images/parallax/intro_bg1.jpg);
height: auto;
}
}
.parallax_banner2 {
position: relative;
background-image: url(../../images/parallax/intro_bg2.jpg);
height: 100vh;
}
.parallax_banner2 .container {
position: relative;
z-index: 99;
}
.parallax_banner2:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.6);
}
.parallax_banner2:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
@media (max-width: 762px) {
.parallax_banner2 {
position: relative;
background-image: url(../../images/parallax/intro_bg2.jpg);
height: auto;
}
}
.parallax_banner3 {
position: relative;
background-image: url(../../images/parallax/intro_bg3.jpg);
height: 100vh;
}
.parallax_banner3 .container {
position: relative;
z-index: 99;
}
.parallax_banner3:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.6);
}
.parallax_banner3:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
@media (max-width: 762px) {
.parallax_banner3 {
position: relative;
background-image: url(../../images/parallax/intro_bg3.jpg);
height: auto;
}
}
.parallax_banner4 {
position: relative;
background-image: url(../../images/parallax/intro_bg4.jpg);
height: 100vh;
}
.parallax_banner4 .container {
position: relative;
z-index: 99;
}
.parallax_banner4:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.6);
}
.parallax_banner4:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
@media (max-width: 762px) {
.parallax_banner4 {
position: relative;
background-image: url(../../images/parallax/intro_bg4.jpg);
height: auto;
}
}
.parallax_banner5 {
position: relative;
background-image: url(../../images/parallax/intro_bg5.jpg);
height: 100vh;
}
.parallax_banner5 .container {
position: relative;
z-index: 99;
}
.parallax_banner5:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.6);
}
.parallax_banner5:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
@media (max-width: 762px) {
.parallax_banner5 {
position: relative;
background-image: url(../../images/parallax/intro_bg5.jpg);
height: auto;
}
}
.parallax_banner6 {
position: relative;
background-image: url(../../images/parallax/intro_bg6.jpg);
height: 100vh;
}
.parallax_banner6 .container {
position: relative;
z-index: 99;
}
.parallax_banner6:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.6);
}
.parallax_banner6:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
@media (max-width: 762px) {
.parallax_banner6 {
position: relative;
background-image: url(../../images/parallax/intro_bg6.jpg);
height: auto;
}
}
/*parallax_section1*/
.parallax_section1 {
position: relative;
background-image: url(../../images/parallax/1.jpeg);
}
.parallax_section1 .container {
position: relative;
z-index: 99;
}
.parallax_section1 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section1:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.7);
}
.parallax_section1:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
/*parallax_section2*/
.parallax_section2 {
position: relative;
background-image: url(../../images/parallax/2.jpg);
}
.parallax_section2 .container {
position: relative;
z-index: 99;
}
.parallax_section2 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section2:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.7);
}
.parallax_section2:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
/*parallax_section3*/
.parallax_section3 {
position: relative;
background-image: url(../../images/parallax/3.jpg);
}
.parallax_section3 .container {
position: relative;
z-index: 99;
}
.parallax_section3 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section3:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.7);
}
.parallax_section3:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
/*parallax_section4*/
.parallax_section4 {
position: relative;
background-image: url(../../images/parallax/4.jpg);
}
.parallax_section4 .container {
position: relative;
z-index: 99;
}
.parallax_section4 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section4:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.7);
}
.parallax_section4:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
.parallax_section5 {
position: relative;
background-image: url(../../images/parallax/5.jpg);
}
.parallax_section5 .container {
position: relative;
z-index: 99;
}
.parallax_section5 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section5:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.7);
}
.parallax_section5:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
.parallax_section6 {
position: relative;
background-image: url(../../images/parallax/10.jpg);
}
.parallax_section6 .container {
position: relative;
z-index: 99;
}
.parallax_section6 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section6:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.7);
}
.parallax_section6:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
.parallax_section_dark2 {
position: relative;
background-image: url(../../images/parallax/3a.jpg);
}
.parallax_section_dark2 .container {
position: relative;
z-index: 99;
}
.parallax_section_dark2 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section_dark2:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: rgba(0, 0, 0, 0.8);
}
.parallax_section_dark2:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
background: url(../../images/parallax/gridtile.png) repeat;
}
.parallax-normal {
background-attachment: center center fixed;
background-repeat: repeat-y;
background-position: 50% 0;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.parallax_section-normal {
position: relative;
background-image: url(../../images/parallax/8.jpg);
}
.parallax_section-normal .container {
position: relative;
z-index: 99;
}
.parallax_section-normal .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section-normal:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
}
.parallax_section-normal:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
}
.parallax_section-normal2 {
position: relative;
background-image: url(../../images/parallax/9.jpg);
}
.parallax_section-normal2 .container {
position: relative;
z-index: 99;
}
.parallax_section-normal2 .container-fluid {
position: relative;
z-index: 99;
}
.parallax_section-normal2:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
}
.parallax_section-normal2:before {
top: 0;
left: 0;
width: 100%;
height: 100%;
content: " ";
position: absolute;
} | 0.364664 | 0.083367 |
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #25c2a0;
--ifm-color-primary-dark: rgb(33, 175, 144);
--ifm-color-primary-darker: rgb(31, 165, 136);
--ifm-color-primary-darkest: rgb(26, 136, 112);
--ifm-color-primary-light: rgb(70, 203, 174);
--ifm-color-primary-lighter: rgb(102, 212, 189);
--ifm-color-primary-lightest: rgb(146, 224, 208);
--loader-background: white;
}
.docusaurus-highlight-code-line {
background-color: rgb(72, 77, 91);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}
#response {
border: 1px solid var(--ifm-pagination-nav-color-hover);
margin-top: 10px;
border-radius: var(--ifm-pagination-nav-border-radius);
}
#response .header {
background-color: var(--ifm-pagination-nav-color-hover);
color: var(--ifm-navbar-link-color);
padding: 10px;
}
#response .body {
padding: 10px;
}
#response.post { border: 1px solid green; }
#response.get { border: 1px solid rgb(33, 102, 252); }
#response.put { border: 1px solid rgb(196, 95, 0); }
#response.delete { border: 1px solid rgb(163, 5, 0); }
#response.post .header { background-color: green; color: white; }
#response.get .header { background-color: rgb(33, 102, 252); color: white; }
#response.put .header { background-color: rgb(196, 95, 0); color: white; }
#response.delete .header { background-color: rgb(163, 5, 0); color: white; }
/* Loader */
html[data-theme='dark'] {
--loader-background: var(--ifm-background-color);
}
.loader,
.loader:before,
.loader:after {
border-radius: 50%;
}
.loader {
color: var(--ifm-color-primary);
font-size: 9px;
text-indent: -99999em;
margin: 55px auto;
position: relative;
width: 10em;
height: 10em;
box-shadow: inset 0 0 0 1em;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
}
.loader:before,
.loader:after {
position: absolute;
content: '';
}
.loader:before {
width: 5.2em;
height: 10.2em;
background: var(--loader-background);
border-radius: 10.2em 0 0 10.2em;
top: -0.1em;
left: -0.1em;
-webkit-transform-origin: 5.1em 5.1em;
transform-origin: 5.1em 5.1em;
-webkit-animation: load2 2s infinite ease 1.5s;
animation: load2 2s infinite ease 1.5s;
}
.loader:after {
width: 5.2em;
height: 10.2em;
background: var(--loader-background);
border-radius: 0 10.2em 10.2em 0;
top: -0.1em;
left: 4.9em;
-webkit-transform-origin: 0.1em 5.1em;
transform-origin: 0.1em 5.1em;
-webkit-animation: load2 2s infinite ease;
animation: load2 2s infinite ease;
}
@-webkit-keyframes load2 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes load2 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
/* FIX: prism codeline too long */
.token-line { max-width: 37vw; }
@media only screen and (max-width: 996px) {
.token-line { max-width: inherit; }
}
/* FIX: night and day not useful */
.homepage-section { display: flex; align-items: center; padding: 2rem 0; width: 100%; }
.homepage-section img { height: 134px; width: 200px; padding-top:32px; padding-bottom:32px; }
/* New chat */
.message-chat { box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); border-radius: 8px; }
.message-chat .header { color: white; border-radius: 8px 8px 0px 0px; background-color: var(--ifm-color-primary); padding: 10px 0 15px; }
.message-chat .header .title { font-size: 1.5em; }
.message-chat .header .subtitle { font-weight: lighter; }
.message-chat .header div { text-align: center; }
/* .message-list { max-width: 53vw; } */
.message-list .me { background-color: #f4f7f9; border-radius: 16px 0px 16px 16px; }
.message-list .bot { background-color: var(--ifm-color-primary); border-radius: 0px 16px 16px 16px; }
@media only screen and (max-width: 996px) {
.message-list { max-width: 100vw; }
} | docusaurus/src/css/custom.css | * Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #25c2a0;
--ifm-color-primary-dark: rgb(33, 175, 144);
--ifm-color-primary-darker: rgb(31, 165, 136);
--ifm-color-primary-darkest: rgb(26, 136, 112);
--ifm-color-primary-light: rgb(70, 203, 174);
--ifm-color-primary-lighter: rgb(102, 212, 189);
--ifm-color-primary-lightest: rgb(146, 224, 208);
--loader-background: white;
}
.docusaurus-highlight-code-line {
background-color: rgb(72, 77, 91);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}
#response {
border: 1px solid var(--ifm-pagination-nav-color-hover);
margin-top: 10px;
border-radius: var(--ifm-pagination-nav-border-radius);
}
#response .header {
background-color: var(--ifm-pagination-nav-color-hover);
color: var(--ifm-navbar-link-color);
padding: 10px;
}
#response .body {
padding: 10px;
}
#response.post { border: 1px solid green; }
#response.get { border: 1px solid rgb(33, 102, 252); }
#response.put { border: 1px solid rgb(196, 95, 0); }
#response.delete { border: 1px solid rgb(163, 5, 0); }
#response.post .header { background-color: green; color: white; }
#response.get .header { background-color: rgb(33, 102, 252); color: white; }
#response.put .header { background-color: rgb(196, 95, 0); color: white; }
#response.delete .header { background-color: rgb(163, 5, 0); color: white; }
/* Loader */
html[data-theme='dark'] {
--loader-background: var(--ifm-background-color);
}
.loader,
.loader:before,
.loader:after {
border-radius: 50%;
}
.loader {
color: var(--ifm-color-primary);
font-size: 9px;
text-indent: -99999em;
margin: 55px auto;
position: relative;
width: 10em;
height: 10em;
box-shadow: inset 0 0 0 1em;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
}
.loader:before,
.loader:after {
position: absolute;
content: '';
}
.loader:before {
width: 5.2em;
height: 10.2em;
background: var(--loader-background);
border-radius: 10.2em 0 0 10.2em;
top: -0.1em;
left: -0.1em;
-webkit-transform-origin: 5.1em 5.1em;
transform-origin: 5.1em 5.1em;
-webkit-animation: load2 2s infinite ease 1.5s;
animation: load2 2s infinite ease 1.5s;
}
.loader:after {
width: 5.2em;
height: 10.2em;
background: var(--loader-background);
border-radius: 0 10.2em 10.2em 0;
top: -0.1em;
left: 4.9em;
-webkit-transform-origin: 0.1em 5.1em;
transform-origin: 0.1em 5.1em;
-webkit-animation: load2 2s infinite ease;
animation: load2 2s infinite ease;
}
@-webkit-keyframes load2 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes load2 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
/* FIX: prism codeline too long */
.token-line { max-width: 37vw; }
@media only screen and (max-width: 996px) {
.token-line { max-width: inherit; }
}
/* FIX: night and day not useful */
.homepage-section { display: flex; align-items: center; padding: 2rem 0; width: 100%; }
.homepage-section img { height: 134px; width: 200px; padding-top:32px; padding-bottom:32px; }
/* New chat */
.message-chat { box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); border-radius: 8px; }
.message-chat .header { color: white; border-radius: 8px 8px 0px 0px; background-color: var(--ifm-color-primary); padding: 10px 0 15px; }
.message-chat .header .title { font-size: 1.5em; }
.message-chat .header .subtitle { font-weight: lighter; }
.message-chat .header div { text-align: center; }
/* .message-list { max-width: 53vw; } */
.message-list .me { background-color: #f4f7f9; border-radius: 16px 0px 16px 16px; }
.message-list .bot { background-color: var(--ifm-color-primary); border-radius: 0px 16px 16px 16px; }
@media only screen and (max-width: 996px) {
.message-list { max-width: 100vw; }
} | 0.413477 | 0.082809 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("github.com") {
.mini-icon:before,
.mega-icon:before,
.minibutton .icon:before { content: "" !important; }
.mini-icon,
.mega-icon,
.minibutton .icon { vertical-align: baseline; position: relative; display: inline-block !important; background-color: transparent !important; background-repeat: no-repeat !important; }
.mini-icon,
.minibutton .icon { top: 2px; height: 16px !important; width: 16px !important; }
.mega-icon { top: 4px; height: 32px !important; width: 32px !important; }
.news .alert .mini-icon { padding: 0px !important; top: 2px !important; left: 2px !important; }
.markdown-body h1 .mini-icon-link,
.markdown-body h2 .mini-icon-link,
.markdown-body h3 .mini-icon-link,
.markdown-body h4 .mini-icon-link,
.markdown-body h5 .mini-icon-link,
.markdown-body h6 .mini-icon-link { display: none !important; }
.markdown-body h1:hover a.anchor .mini-icon-link,
.markdown-body h2:hover a.anchor .mini-icon-link,
.markdown-body h3:hover a.anchor .mini-icon-link,
.markdown-body h4:hover a.anchor .mini-icon-link,
.markdown-body h5:hover a.anchor .mini-icon-link,
.markdown-body h6:hover a.anchor .mini-icon-link { display: inline-block !important; }
.mini-icon-private-journal { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-private-journal.png) !important; }
.mini-icon-private-repo { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-private-repo.png) !important; }
.mini-icon-public-repo { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-public-repo.png) !important; }
.mini-icon-repo-forked { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-repo-forked.png) !important; }
.mini-icon-create { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-create.png) !important; }
.mini-icon-delete { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-delete.png) !important; }
.mini-icon-push { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-push.png) !important; }
.mini-icon-pull { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-pull.png) !important; }
.mini-icon-readme,
.mini-icon-wiki { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-wiki.png) !important; }
.mini-icon-octocat { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-octocat.png) !important; }
.mini-icon-site-message,
.mini-icon-blacktocat { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-blacktocat.png) !important; }
.mini-icon-invertocat { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-invertocat.png) !important; }
.minibutton.btn-download .icon,
.mini-icon-download { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-download.png) !important; }
.mini-icon-upload { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-upload.png) !important; }
.mini-icon-keyboard { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-keyboard.png) !important; }
.mini-icon-gist { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-gist.png) !important; }
.mini-icon-gist-private { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-gist-private.png) !important; }
.mini-icon-code-file,
.mini-icon-download-unknown { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-download-unknown.png) !important; }
.mini-icon-download-text,
.mini-icon-text-file { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-text-file.png) !important; }
.mini-icon-download-media { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-download-media.png) !important; }
.mini-icon-download-zip { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-download-zip.png) !important; }
.mini-icon-download-pdf { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-download-pdf.png) !important; }
.btn-tag .icon,
.mini-icon-download-tag { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-download-tag.png) !important; }
.mini-icon-directory { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-directory.png) !important; }
.mini-icon-submodule { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-submodule.png) !important; }
.mini-icon-person { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-person.png) !important; }
.mini-icon-team { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-team.png) !important; }
.mini-icon-member-added { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-member-added.png) !important; }
.minibutton.btn-unfollow .icon,
.mini-icon-member-removed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-member-removed.png) !important; }
.minibutton.btn-follow .icon,
.mini-icon-follow { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-follow.png) !important; }
.minibutton.btn-watch .icon,
.mini-icon-watching { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-watching.png) !important; }
.minibutton.btn-unwatch .icon,
.mini-icon-unwatch { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-unwatch.png) !important; }
.mini-icon-commit { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-commit.png) !important; }
.btn-branch .icon,
.minibutton.btn-fork .icon,
.mini-icon-public-fork,
.mini-icon-fork { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-fork.png) !important; }
.mini-icon-private-fork { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-private-fork.png) !important; }
.minibutton.btn-pull-request .icon,
.mini-icon-pull-request { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-pull-request.png) !important; }
.mini-icon-merge { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-merge.png) !important; }
.mini-icon-public-mirror { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-public-mirror.png) !important; }
.mini-icon-private-mirror { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-private-mirror.png) !important; }
.mini-icon-issue-opened { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-issue-opened.png) !important; }
.mini-icon-issue-reopened { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-issue-reopened.png) !important; }
.mini-icon-issue-closed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-issue-closed.png) !important; }
.mini-icon-issue-comment { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-issue-comment.png) !important; }
.mini-icon-star { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-star.png) !important; }
.mini-icon-commit-comment { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-commit-comment.png) !important; }
.mini-icon-help { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-help.png) !important; }
.mini-icon-exclamation { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-exclamation.png) !important; }
.mini-icon-search-input { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-search-input.png) !important; }
.context-button .icon,
.mini-icon-advanced-search { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-advanced-search.png) !important; }
.mini-icon-notifications { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-notifications.png) !important; }
.mini-icon-account-settings { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-account-settings.png) !important; }
.minibutton.btn-leave .icon,
.mini-icon-logout { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-logout.png) !important; }
.mini-icon-admin-tools { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-admin-tools.png) !important; }
.mini-icon-feed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-feed.png) !important; }
.minibutton.btn-mac .icon,
.mini-icon-apple { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-apple.png) !important; }
.mini-icon-windows { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-windows.png) !important; }
.mini-icon-ios { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-ios.png) !important; }
.mini-icon-android { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-android.png) !important; }
.mini-icon-confirm { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-confirm.png) !important; }
.mini-icon-unread-note { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-unread-note.png) !important; }
.mini-icon-read-note { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-read-note.png) !important; }
.mini-icon-arr-up { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-arr-up.png) !important; }
.minibutton.btn-forward .icon,
.mini-icon-arr-right { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-arr-right.png) !important; }
.mini-icon-arr-down { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-arr-down.png) !important; }
.minibutton.btn-back .icon,
.mini-icon-arr-left { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-arr-left.png) !important; }
.mini-icon-pin { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-pin.png) !important; }
.mini-icon-gift { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-gift.png) !important; }
.mini-icon-graph { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-graph.png) !important; }
.minibutton.btn-admin .icon,
.mini-icon-wrench { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-wrench.png) !important; }
.mini-icon-credit-card { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-credit-card.png) !important; }
.mini-icon-time { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-time.png) !important; }
.mini-icon-ruby { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-ruby.png) !important; }
.mini-icon-podcast { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-podcast.png) !important; }
.mini-icon-key { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-key.png) !important; }
.mini-icon-force-push { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-force-push.png) !important; }
.mini-icon-sync { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-sync.png) !important; }
.mini-icon-clone { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-clone.png) !important; }
.minibutton.btn-compare .icon,
.mini-icon-diff { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-diff.png) !important; }
.mini-icon-watchers { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-watchers.png) !important; }
.mini-icon-discussion { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-discussion.png) !important; }
.mini-icon-delete-note:before,
.mini-icon-remove-close { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-remove-close.png) !important; }
.minibutton.btn-reply .icon,
.mini-icon-reply { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-reply.png) !important; }
.mini-icon-mail-status { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-mail-status.png) !important; }
.mini-icon-block { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-block.png) !important; }
.mini-icon-tag-create { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-tag-create.png) !important; }
.mini-icon-tab-delete { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-tab-delete.png) !important; }
.mini-icon-branch-create { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-branch-create.png) !important; }
.mini-icon-branch-delete { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-branch-delete.png) !important; }
.mini-icon-edit { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-edit.png) !important; }
.mini-icon-info { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-info.png) !important; }
.mini-icon-arr-collapsed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-arr-collapsed.png) !important; }
.mini-icon-arr-expanded { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-arr-expanded.png) !important; }
.mini-icon-link { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-link.png) !important; }
.mini-icon-add { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-add.png) !important; }
.mini-icon-reorder { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-reorder.png) !important; }
.mini-icon-code { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-code.png) !important; }
.mini-icon-location { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-location.png) !important; }
.mini-icon-u-list { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-u-list.png) !important; }
.mini-icon-o-list { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-o-list.png) !important; }
.mini-icon-quotemark { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-quotemark.png) !important; }
.mini-icon-version { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-version.png) !important; }
.mini-icon-brightness { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-brightness.png) !important; }
.mini-icon-fullscreen { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-fullscreen.png) !important; }
.mini-icon-normalscreen { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-normalscreen.png) !important; }
.mini-icon-calendar { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-calendar.png) !important; }
.mini-icon-beer { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-beer.png) !important; }
.mini-icon-secure,
.mini-icon-lock { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-lock.png) !important; }
.mini-icon-added { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-added.png) !important; }
.mini-icon-removed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-removed.png) !important; }
.mini-icon-modified { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-modified.png) !important; }
.mini-icon-moved,
.mini-icon-renamed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-renamed.png) !important; }
.mini-icon-add-comment { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-add-comment.png) !important; }
.mini-icon-horizontal-rule { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-horizontal-rule.png) !important; }
.mini-icon-arr-right-mini { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-arr-right-mini.png) !important; }
.mini-icon-jump-down { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-jump-down.png) !important; }
.mini-icon-jump-up { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-jump-up.png) !important; }
.mini-icon-reference { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-reference.png) !important; }
.mini-icon-milestone { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-milestone.png) !important; }
.mini-icon-save-document { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-save-document.png) !important; }
.mini-icon-megaphone { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-megaphone.png) !important; }
.mini-icon-chevron { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-chevron.png) !important; }
.mini-icon-gist-forked { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-gist-forked.png) !important; }
.mini-icon-gist-add { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-gist-add.png) !important; }
.mini-icon-bookmark { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-bookmark.png) !important; }
.mini-icon-filters { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-filters.png) !important; }
.mega-icon-private-journal { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-private-journal.png) !important; }
.mega-icon-private-repo { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-private-repo.png) !important; }
.mega-icon-public-repo { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-public-repo.png) !important; }
.mega-icon-repo-forked { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-repo-forked.png) !important; }
.mega-icon-create { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-create.png) !important; }
.mega-icon-delete { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-delete.png) !important; }
.mega-icon-push { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-push.png) !important; }
.mega-icon-pull { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-pull.png) !important; }
.mega-icon-readme,
.mega-icon-wiki { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-wiki.png) !important; }
.mega-icon-octocat { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-octocat.png) !important; }
.mega-icon-site-message,
.mega-icon-blacktocat { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-blacktocat.png) !important; }
.mega-icon-invertocat { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-invertocat.png) !important; }
.mega-icon-download { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-download.png) !important; }
.mega-icon-upload { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-upload.png) !important; }
.mega-icon-keyboard { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-keyboard.png) !important; }
.mega-icon-gist { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-gist.png) !important; }
.mega-icon-gist-private { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-gist-private.png) !important; }
.mega-icon-code-file,
.mega-icon-download-unknown { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-download-unknown.png) !important; }
.mega-icon-download-text,
.mega-icon-text-file { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-text-file.png) !important; }
.mega-icon-download-media { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-download-media.png) !important; }
.mega-icon-download-zip { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-download-zip.png) !important; }
.mega-icon-download-pdf { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-download-pdf.png) !important; }
.mega-icon-download-tag { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-download-tag.png) !important; }
.mega-icon-directory { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-directory.png) !important; }
.mega-icon-submodule { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-submodule.png) !important; }
.mega-icon-person { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-person.png) !important; }
.mega-icon-team { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-team.png) !important; }
.mega-icon-member-added { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-member-added.png) !important; }
.mega-icon-member-removed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-member-removed.png) !important; }
.mega-icon-follow { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-follow.png) !important; }
.mega-icon-watching { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-watching.png) !important; }
.mega-icon-unwatch { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-unwatch.png) !important; }
.mega-icon-commit { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-commit.png) !important; }
.mega-icon-public-fork,
.mega-icon-fork { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-fork.png) !important; }
.mega-icon-private-fork { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-private-fork.png) !important; }
.mega-icon-pull-request { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-pull-request.png) !important; }
.mega-icon-merge { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-merge.png) !important; }
.mega-icon-public-mirror { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-public-mirror.png) !important; }
.mega-icon-private-mirror { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-private-mirror.png) !important; }
.mega-icon-issue-opened { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-issue-opened.png) !important; }
.mega-icon-issue-reopened { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-issue-reopened.png) !important; }
.mega-icon-issue-closed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-issue-closed.png) !important; }
.mega-icon-issue-comment { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-issue-comment.png) !important; }
.mega-icon-star { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-star.png) !important; }
.mega-icon-commit-comment { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-commit-comment.png) !important; }
.mega-icon-help { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-help.png) !important; }
.mega-icon-exclamation { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-exclamation.png) !important; }
.mega-icon-search-input { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-search-input.png) !important; }
.mega-icon-advanced-search { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-advanced-search.png) !important; }
.mega-icon-notifications { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-notifications.png) !important; }
.mega-icon-account-settings { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-account-settings.png) !important; }
.mega-icon-logout { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-logout.png) !important; }
.mega-icon-admin-tools { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-admin-tools.png) !important; }
.mega-icon-feed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-feed.png) !important; }
.mega-icon-apple { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-apple.png) !important; }
.mega-icon-windows { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-windows.png) !important; }
.mega-icon-ios { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-ios.png) !important; }
.mega-icon-android { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-android.png) !important; }
.mega-icon-confirm { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-confirm.png) !important; }
.mega-icon-unread-note { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-unread-note.png) !important; }
.mega-icon-read-note { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-read-note.png) !important; }
.mega-icon-arr-up { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-arr-up.png) !important; }
.mega-icon-arr-right { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-arr-right.png) !important; }
.mega-icon-arr-down { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-arr-down.png) !important; }
.mega-icon-arr-left { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-arr-left.png) !important; }
.mega-icon-pin { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-pin.png) !important; }
.mega-icon-gift { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-gift.png) !important; }
.mega-icon-graph { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-graph.png) !important; }
.mega-icon-wrench { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-wrench.png) !important; }
.mega-icon-credit-card { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-credit-card.png) !important; }
.mega-icon-time { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-time.png) !important; }
.mega-icon-ruby { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-ruby.png) !important; }
.mega-icon-podcast { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-podcast.png) !important; }
.mega-icon-key { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-key.png) !important; }
.mega-icon-force-push { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-force-push.png) !important; }
.mega-icon-sync { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-sync.png) !important; }
.mega-icon-clone { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-clone.png) !important; }
.mega-icon-diff { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-diff.png) !important; }
.mega-icon-watchers { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-watchers.png) !important; }
.mega-icon-discussion { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-discussion.png) !important; }
.mega-icon-delete-note,
.mega-icon-remove-close { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-remove-close.png) !important; }
.mega-icon-reply { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-reply.png) !important; }
.mega-icon-mail-status { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-mail-status.png) !important; }
.mega-icon-block { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-block.png) !important; }
.mega-icon-tag-create { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-tag-create.png) !important; }
.mega-icon-tab-delete { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-tab-delete.png) !important; }
.mega-icon-branch-create { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-branch-create.png) !important; }
.mega-icon-branch-delete { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-branch-delete.png) !important; }
.mega-icon-edit { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-edit.png) !important; }
.mega-icon-info { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-info.png) !important; }
.mega-icon-arr-collapsed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-arr-collapsed.png) !important; }
.mega-icon-arr-expanded { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-arr-expanded.png) !important; }
.mega-icon-link { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-link.png) !important; }
.mega-icon-add { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-add.png) !important; }
.mega-icon-reorder { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-reorder.png) !important; }
.mega-icon-code { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-code.png) !important; }
.mega-icon-location { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-location.png) !important; }
.mega-icon-u-list { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-u-list.png) !important; }
.mega-icon-o-list { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-o-list.png) !important; }
.mega-icon-quotemark { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-quotemark.png) !important; }
.mega-icon-version { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-version.png) !important; }
.mega-icon-brightness { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-brightness.png) !important; }
.mega-icon-fullscreen { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-fullscreen.png) !important; }
.mega-icon-normalscreen { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-normalscreen.png) !important; }
.mega-icon-calendar { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-calendar.png) !important; }
.mega-icon-beer { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-beer.png) !important; }
.mega-icon-secure,
.mega-icon-lock { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-lock.png) !important; }
.mega-icon-added { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-added.png) !important; }
.mega-icon-removed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-removed.png) !important; }
.mega-icon-modified { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-modified.png) !important; }
.mega-icon-movede,
.mega-icon-renamed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-renamed.png) !important; }
.mega-icon-add-comment { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-add-comment.png) !important; }
.mega-icon-horizontal-rule { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-horizontal-rule.png) !important; }
.mega-icon-arr-right-mega { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-arr-right-mega.png) !important; }
.mega-icon-jump-down { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-jump-down.png) !important; }
.mega-icon-jump-up { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-jump-up.png) !important; }
.mega-icon-reference { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-reference.png) !important; }
.mega-icon-milestone { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-milestone.png) !important; }
.mega-icon-save-document { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-save-document.png) !important; }
.mega-icon-megaphone { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-megaphone.png) !important; }
.mega-icon-chevron { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-chevron.png) !important; }
.mega-icon-gist-forked { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-gist-forked.png) !important; }
.mega-icon-gist-add { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-gist-add.png) !important; }
.mega-icon-bookmark { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-bookmark.png) !important; }
.mega-icon-filters { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-filters.png) !important; }
} | data/usercss/66947.user.css | @namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("github.com") {
.mini-icon:before,
.mega-icon:before,
.minibutton .icon:before { content: "" !important; }
.mini-icon,
.mega-icon,
.minibutton .icon { vertical-align: baseline; position: relative; display: inline-block !important; background-color: transparent !important; background-repeat: no-repeat !important; }
.mini-icon,
.minibutton .icon { top: 2px; height: 16px !important; width: 16px !important; }
.mega-icon { top: 4px; height: 32px !important; width: 32px !important; }
.news .alert .mini-icon { padding: 0px !important; top: 2px !important; left: 2px !important; }
.markdown-body h1 .mini-icon-link,
.markdown-body h2 .mini-icon-link,
.markdown-body h3 .mini-icon-link,
.markdown-body h4 .mini-icon-link,
.markdown-body h5 .mini-icon-link,
.markdown-body h6 .mini-icon-link { display: none !important; }
.markdown-body h1:hover a.anchor .mini-icon-link,
.markdown-body h2:hover a.anchor .mini-icon-link,
.markdown-body h3:hover a.anchor .mini-icon-link,
.markdown-body h4:hover a.anchor .mini-icon-link,
.markdown-body h5:hover a.anchor .mini-icon-link,
.markdown-body h6:hover a.anchor .mini-icon-link { display: inline-block !important; }
.mini-icon-private-journal { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-private-journal.png) !important; }
.mini-icon-private-repo { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-private-repo.png) !important; }
.mini-icon-public-repo { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-public-repo.png) !important; }
.mini-icon-repo-forked { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-repo-forked.png) !important; }
.mini-icon-create { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-create.png) !important; }
.mini-icon-delete { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-delete.png) !important; }
.mini-icon-push { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-push.png) !important; }
.mini-icon-pull { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-pull.png) !important; }
.mini-icon-readme,
.mini-icon-wiki { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-wiki.png) !important; }
.mini-icon-octocat { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-octocat.png) !important; }
.mini-icon-site-message,
.mini-icon-blacktocat { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-blacktocat.png) !important; }
.mini-icon-invertocat { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-invertocat.png) !important; }
.minibutton.btn-download .icon,
.mini-icon-download { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-download.png) !important; }
.mini-icon-upload { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-upload.png) !important; }
.mini-icon-keyboard { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-keyboard.png) !important; }
.mini-icon-gist { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-gist.png) !important; }
.mini-icon-gist-private { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-gist-private.png) !important; }
.mini-icon-code-file,
.mini-icon-download-unknown { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-download-unknown.png) !important; }
.mini-icon-download-text,
.mini-icon-text-file { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-text-file.png) !important; }
.mini-icon-download-media { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-download-media.png) !important; }
.mini-icon-download-zip { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-download-zip.png) !important; }
.mini-icon-download-pdf { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-download-pdf.png) !important; }
.btn-tag .icon,
.mini-icon-download-tag { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-download-tag.png) !important; }
.mini-icon-directory { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-directory.png) !important; }
.mini-icon-submodule { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-submodule.png) !important; }
.mini-icon-person { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-person.png) !important; }
.mini-icon-team { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-team.png) !important; }
.mini-icon-member-added { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-member-added.png) !important; }
.minibutton.btn-unfollow .icon,
.mini-icon-member-removed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-member-removed.png) !important; }
.minibutton.btn-follow .icon,
.mini-icon-follow { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-follow.png) !important; }
.minibutton.btn-watch .icon,
.mini-icon-watching { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-watching.png) !important; }
.minibutton.btn-unwatch .icon,
.mini-icon-unwatch { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-unwatch.png) !important; }
.mini-icon-commit { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-commit.png) !important; }
.btn-branch .icon,
.minibutton.btn-fork .icon,
.mini-icon-public-fork,
.mini-icon-fork { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-fork.png) !important; }
.mini-icon-private-fork { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-private-fork.png) !important; }
.minibutton.btn-pull-request .icon,
.mini-icon-pull-request { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-pull-request.png) !important; }
.mini-icon-merge { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-merge.png) !important; }
.mini-icon-public-mirror { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-public-mirror.png) !important; }
.mini-icon-private-mirror { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-private-mirror.png) !important; }
.mini-icon-issue-opened { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-issue-opened.png) !important; }
.mini-icon-issue-reopened { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-issue-reopened.png) !important; }
.mini-icon-issue-closed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-issue-closed.png) !important; }
.mini-icon-issue-comment { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-issue-comment.png) !important; }
.mini-icon-star { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-star.png) !important; }
.mini-icon-commit-comment { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-commit-comment.png) !important; }
.mini-icon-help { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-help.png) !important; }
.mini-icon-exclamation { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-exclamation.png) !important; }
.mini-icon-search-input { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-search-input.png) !important; }
.context-button .icon,
.mini-icon-advanced-search { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-advanced-search.png) !important; }
.mini-icon-notifications { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-notifications.png) !important; }
.mini-icon-account-settings { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-account-settings.png) !important; }
.minibutton.btn-leave .icon,
.mini-icon-logout { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-logout.png) !important; }
.mini-icon-admin-tools { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-admin-tools.png) !important; }
.mini-icon-feed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-feed.png) !important; }
.minibutton.btn-mac .icon,
.mini-icon-apple { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-apple.png) !important; }
.mini-icon-windows { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-windows.png) !important; }
.mini-icon-ios { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-ios.png) !important; }
.mini-icon-android { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-android.png) !important; }
.mini-icon-confirm { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-confirm.png) !important; }
.mini-icon-unread-note { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-unread-note.png) !important; }
.mini-icon-read-note { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-read-note.png) !important; }
.mini-icon-arr-up { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-arr-up.png) !important; }
.minibutton.btn-forward .icon,
.mini-icon-arr-right { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-arr-right.png) !important; }
.mini-icon-arr-down { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-arr-down.png) !important; }
.minibutton.btn-back .icon,
.mini-icon-arr-left { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-arr-left.png) !important; }
.mini-icon-pin { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-pin.png) !important; }
.mini-icon-gift { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-gift.png) !important; }
.mini-icon-graph { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-graph.png) !important; }
.minibutton.btn-admin .icon,
.mini-icon-wrench { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-wrench.png) !important; }
.mini-icon-credit-card { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-credit-card.png) !important; }
.mini-icon-time { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-time.png) !important; }
.mini-icon-ruby { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-ruby.png) !important; }
.mini-icon-podcast { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-podcast.png) !important; }
.mini-icon-key { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-key.png) !important; }
.mini-icon-force-push { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-force-push.png) !important; }
.mini-icon-sync { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-sync.png) !important; }
.mini-icon-clone { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-clone.png) !important; }
.minibutton.btn-compare .icon,
.mini-icon-diff { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-diff.png) !important; }
.mini-icon-watchers { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-watchers.png) !important; }
.mini-icon-discussion { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-discussion.png) !important; }
.mini-icon-delete-note:before,
.mini-icon-remove-close { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-remove-close.png) !important; }
.minibutton.btn-reply .icon,
.mini-icon-reply { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-reply.png) !important; }
.mini-icon-mail-status { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-mail-status.png) !important; }
.mini-icon-block { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-block.png) !important; }
.mini-icon-tag-create { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-tag-create.png) !important; }
.mini-icon-tab-delete { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-tab-delete.png) !important; }
.mini-icon-branch-create { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-branch-create.png) !important; }
.mini-icon-branch-delete { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-branch-delete.png) !important; }
.mini-icon-edit { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-edit.png) !important; }
.mini-icon-info { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-info.png) !important; }
.mini-icon-arr-collapsed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-arr-collapsed.png) !important; }
.mini-icon-arr-expanded { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-arr-expanded.png) !important; }
.mini-icon-link { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-link.png) !important; }
.mini-icon-add { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-add.png) !important; }
.mini-icon-reorder { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-reorder.png) !important; }
.mini-icon-code { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-code.png) !important; }
.mini-icon-location { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-location.png) !important; }
.mini-icon-u-list { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-u-list.png) !important; }
.mini-icon-o-list { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-o-list.png) !important; }
.mini-icon-quotemark { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-quotemark.png) !important; }
.mini-icon-version { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-version.png) !important; }
.mini-icon-brightness { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-brightness.png) !important; }
.mini-icon-fullscreen { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-fullscreen.png) !important; }
.mini-icon-normalscreen { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-normalscreen.png) !important; }
.mini-icon-calendar { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-calendar.png) !important; }
.mini-icon-beer { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-beer.png) !important; }
.mini-icon-secure,
.mini-icon-lock { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-lock.png) !important; }
.mini-icon-added { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-added.png) !important; }
.mini-icon-removed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-removed.png) !important; }
.mini-icon-modified { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-modified.png) !important; }
.mini-icon-moved,
.mini-icon-renamed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-renamed.png) !important; }
.mini-icon-add-comment { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-add-comment.png) !important; }
.mini-icon-horizontal-rule { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-horizontal-rule.png) !important; }
.mini-icon-arr-right-mini { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-arr-right-mini.png) !important; }
.mini-icon-jump-down { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-jump-down.png) !important; }
.mini-icon-jump-up { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-jump-up.png) !important; }
.mini-icon-reference { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-reference.png) !important; }
.mini-icon-milestone { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-milestone.png) !important; }
.mini-icon-save-document { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-save-document.png) !important; }
.mini-icon-megaphone { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-megaphone.png) !important; }
.mini-icon-chevron { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-chevron.png) !important; }
.mini-icon-gist-forked { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-gist-forked.png) !important; }
.mini-icon-gist-add { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-gist-add.png) !important; }
.mini-icon-bookmark { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-bookmark.png) !important; }
.mini-icon-filters { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mini-icon-filters.png) !important; }
.mega-icon-private-journal { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-private-journal.png) !important; }
.mega-icon-private-repo { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-private-repo.png) !important; }
.mega-icon-public-repo { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-public-repo.png) !important; }
.mega-icon-repo-forked { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-repo-forked.png) !important; }
.mega-icon-create { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-create.png) !important; }
.mega-icon-delete { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-delete.png) !important; }
.mega-icon-push { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-push.png) !important; }
.mega-icon-pull { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-pull.png) !important; }
.mega-icon-readme,
.mega-icon-wiki { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-wiki.png) !important; }
.mega-icon-octocat { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-octocat.png) !important; }
.mega-icon-site-message,
.mega-icon-blacktocat { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-blacktocat.png) !important; }
.mega-icon-invertocat { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-invertocat.png) !important; }
.mega-icon-download { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-download.png) !important; }
.mega-icon-upload { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-upload.png) !important; }
.mega-icon-keyboard { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-keyboard.png) !important; }
.mega-icon-gist { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-gist.png) !important; }
.mega-icon-gist-private { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-gist-private.png) !important; }
.mega-icon-code-file,
.mega-icon-download-unknown { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-download-unknown.png) !important; }
.mega-icon-download-text,
.mega-icon-text-file { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-text-file.png) !important; }
.mega-icon-download-media { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-download-media.png) !important; }
.mega-icon-download-zip { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-download-zip.png) !important; }
.mega-icon-download-pdf { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-download-pdf.png) !important; }
.mega-icon-download-tag { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-download-tag.png) !important; }
.mega-icon-directory { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-directory.png) !important; }
.mega-icon-submodule { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-submodule.png) !important; }
.mega-icon-person { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-person.png) !important; }
.mega-icon-team { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-team.png) !important; }
.mega-icon-member-added { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-member-added.png) !important; }
.mega-icon-member-removed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-member-removed.png) !important; }
.mega-icon-follow { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-follow.png) !important; }
.mega-icon-watching { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-watching.png) !important; }
.mega-icon-unwatch { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-unwatch.png) !important; }
.mega-icon-commit { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-commit.png) !important; }
.mega-icon-public-fork,
.mega-icon-fork { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-fork.png) !important; }
.mega-icon-private-fork { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-private-fork.png) !important; }
.mega-icon-pull-request { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-pull-request.png) !important; }
.mega-icon-merge { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-merge.png) !important; }
.mega-icon-public-mirror { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-public-mirror.png) !important; }
.mega-icon-private-mirror { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-private-mirror.png) !important; }
.mega-icon-issue-opened { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-issue-opened.png) !important; }
.mega-icon-issue-reopened { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-issue-reopened.png) !important; }
.mega-icon-issue-closed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-issue-closed.png) !important; }
.mega-icon-issue-comment { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-issue-comment.png) !important; }
.mega-icon-star { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-star.png) !important; }
.mega-icon-commit-comment { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-commit-comment.png) !important; }
.mega-icon-help { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-help.png) !important; }
.mega-icon-exclamation { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-exclamation.png) !important; }
.mega-icon-search-input { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-search-input.png) !important; }
.mega-icon-advanced-search { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-advanced-search.png) !important; }
.mega-icon-notifications { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-notifications.png) !important; }
.mega-icon-account-settings { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-account-settings.png) !important; }
.mega-icon-logout { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-logout.png) !important; }
.mega-icon-admin-tools { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-admin-tools.png) !important; }
.mega-icon-feed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-feed.png) !important; }
.mega-icon-apple { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-apple.png) !important; }
.mega-icon-windows { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-windows.png) !important; }
.mega-icon-ios { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-ios.png) !important; }
.mega-icon-android { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-android.png) !important; }
.mega-icon-confirm { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-confirm.png) !important; }
.mega-icon-unread-note { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-unread-note.png) !important; }
.mega-icon-read-note { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-read-note.png) !important; }
.mega-icon-arr-up { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-arr-up.png) !important; }
.mega-icon-arr-right { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-arr-right.png) !important; }
.mega-icon-arr-down { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-arr-down.png) !important; }
.mega-icon-arr-left { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-arr-left.png) !important; }
.mega-icon-pin { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-pin.png) !important; }
.mega-icon-gift { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-gift.png) !important; }
.mega-icon-graph { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-graph.png) !important; }
.mega-icon-wrench { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-wrench.png) !important; }
.mega-icon-credit-card { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-credit-card.png) !important; }
.mega-icon-time { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-time.png) !important; }
.mega-icon-ruby { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-ruby.png) !important; }
.mega-icon-podcast { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-podcast.png) !important; }
.mega-icon-key { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-key.png) !important; }
.mega-icon-force-push { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-force-push.png) !important; }
.mega-icon-sync { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-sync.png) !important; }
.mega-icon-clone { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-clone.png) !important; }
.mega-icon-diff { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-diff.png) !important; }
.mega-icon-watchers { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-watchers.png) !important; }
.mega-icon-discussion { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-discussion.png) !important; }
.mega-icon-delete-note,
.mega-icon-remove-close { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-remove-close.png) !important; }
.mega-icon-reply { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-reply.png) !important; }
.mega-icon-mail-status { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-mail-status.png) !important; }
.mega-icon-block { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-block.png) !important; }
.mega-icon-tag-create { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-tag-create.png) !important; }
.mega-icon-tab-delete { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-tab-delete.png) !important; }
.mega-icon-branch-create { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-branch-create.png) !important; }
.mega-icon-branch-delete { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-branch-delete.png) !important; }
.mega-icon-edit { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-edit.png) !important; }
.mega-icon-info { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-info.png) !important; }
.mega-icon-arr-collapsed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-arr-collapsed.png) !important; }
.mega-icon-arr-expanded { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-arr-expanded.png) !important; }
.mega-icon-link { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-link.png) !important; }
.mega-icon-add { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-add.png) !important; }
.mega-icon-reorder { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-reorder.png) !important; }
.mega-icon-code { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-code.png) !important; }
.mega-icon-location { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-location.png) !important; }
.mega-icon-u-list { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-u-list.png) !important; }
.mega-icon-o-list { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-o-list.png) !important; }
.mega-icon-quotemark { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-quotemark.png) !important; }
.mega-icon-version { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-version.png) !important; }
.mega-icon-brightness { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-brightness.png) !important; }
.mega-icon-fullscreen { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-fullscreen.png) !important; }
.mega-icon-normalscreen { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-normalscreen.png) !important; }
.mega-icon-calendar { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-calendar.png) !important; }
.mega-icon-beer { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-beer.png) !important; }
.mega-icon-secure,
.mega-icon-lock { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-lock.png) !important; }
.mega-icon-added { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-added.png) !important; }
.mega-icon-removed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-removed.png) !important; }
.mega-icon-modified { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-modified.png) !important; }
.mega-icon-movede,
.mega-icon-renamed { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-renamed.png) !important; }
.mega-icon-add-comment { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-add-comment.png) !important; }
.mega-icon-horizontal-rule { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-horizontal-rule.png) !important; }
.mega-icon-arr-right-mega { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-arr-right-mega.png) !important; }
.mega-icon-jump-down { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-jump-down.png) !important; }
.mega-icon-jump-up { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-jump-up.png) !important; }
.mega-icon-reference { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-reference.png) !important; }
.mega-icon-milestone { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-milestone.png) !important; }
.mega-icon-save-document { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-save-document.png) !important; }
.mega-icon-megaphone { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-megaphone.png) !important; }
.mega-icon-chevron { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-chevron.png) !important; }
.mega-icon-gist-forked { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-gist-forked.png) !important; }
.mega-icon-gist-add { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-gist-add.png) !important; }
.mega-icon-bookmark { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-bookmark.png) !important; }
.mega-icon-filters { background-image: url(https://github.com/yurivkhan/github-real-icons/raw/master/images/mega-icon-filters.png) !important; }
} | 0.409457 | 0.125012 |
body {
/* padding-top: 0; */
padding-top: 90px;
}
nav {
background-image: url("../img/nav_bg_small.png");
background-repeat: repeat-x;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
nav a {
padding-top: 20px !important;
padding-bottom: 20px !important;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
font-size: 15px;
font-weight:bold;
}
nav ul li a:focus {
color: #FFFFFF;
}
nav .navbar-toggle {
margin: 13px 15px 13px 0;
}
.navbar {
padding: 0 !important;
}
.navbar-brand {
font-size: 30px;
width: 300px;
background-image: url("../img/gk_logo.png");
background-repeat: no-repeat;
height: 143px;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.navbar-fixed-to {
border-bottom: thick solid #000000;
}
nav.navbar.shrink {
min-height: 35px;
}
nav.shrink a {
padding-top: 15px !important;
padding-bottom: 10px !important;
color: #FFFFFF;
}
nav.shrink .navbar-brand {
font-size: 25px;
background-image: url("../img/gk_logo_small.png");
background-repeat: no-repeat;
height: 54px;
}
nav.shrink .navbar-toggle {
padding: 4px 5px;
margin: 8px 15px 8px 0;
}
nav.shrink #search, nav.shrink #pins {
display:none;
}
#pins {
margin-top: 10px;
margin-right: 10px;
text-align:right;
min-height: 35px;
color: #FFFFFF;
}
#search {
min-height: 30px;
text-align:right;
font-size: 1.4em;
}
#search input {
font-size:0.9em;
padding-top:7px;
/*background-color: #ececec;*/
width: 300px;
}
#search button {
padding-top: 0px;
font-size:1.5em;
}
#aboutme {
border-radius: 25px;
border: 2px solid #ef882c;
padding: 10px;
padding-bottom: 10px;
margin-top: 30px;
/*opacity:0.4; */
}
#aboutme::after {
content: "";
border-radius: 25px;
background-color: #cccccc;
background-image: url("../img/location.png");
background-size: auto;
background-position: center;
background-repeat: no-repeat;
opacity: 0.5;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
}
#aboutme h4 {
/*padding:10px;*/
}
#aboutme p {
/*padding-left:10px;
padding-right:10px;*/
}
#aboutme div {
padding-bottom: 0px;
}
#aboutme a {
padding-left:10px;
padding-bottom:10px;
}
#headline {
background-image: url("../img/this-just-in.png");
background-size: 100px;
background-repeat: no-repeat;
background-position: -10px -10px;
}
#headline h1 {
visibility:hidden;
height: 60px;
}
#core {
margin-top: 20px;
}
.frontpost {
border-bottom: 3px solid #cccccc;
padding-bottom: 20px;
}
.frontpost h3 {
margin-top: 0px;
}
footer {
background-color: #cccccc;
margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
}
.dark {
background-color: #cccccc;
}
.nowrap {
white-space: nowrap ;
}
/* Tag Cloud */
#tagcloud{
padding-left: 0px;
}
.tagcloud ul {
display: inline;
padding: 0;
}
.tagcloud li {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent none repeat scroll 0 0;
border-bottom:0 none;
display:inline;
padding:0;
}
.tagcloud a {
display:inline;
margin-right:3px;
padding: 3px;
/*border: 1px solid #cfcfcf;*/
}
.tagcloud a.biggest {
font-size:24px;
color: #e48214;
}
.tagcloud a.big {
font-size:21px;
color: #008080;
}
.tagcloud a.medium {
font-size:19px;
color: #0080c0;
}
.tagcloud a.small {
font-size:16px;
color: #008000;
}
.tagcloud a.smallest {
font-size:13px;
color: #00ff00;
}
/*region Tag Cloud */
/*region Side Bar */
#recentPosts {
padding-left: 20px;
}
#recentPosts li {
padding-bottom: 5px;
}
#recentPosts li span{
margin-left: 10px;
}
#recentComments {
padding-left: 0px;
list-style: none;
}
#recentComments :nth-child(even){
background-color: #e0e0e0;
}
#recentComments :nth-child(odd){
background-color: #96dea3;
}
#recentComments li {
padding-bottom: 5px;
}
#recentComments li a.postTitle{
color: #e27e10;
background-color: transparent;
}
#recentComments li a.moreLink{
background-color: transparent;
}
/*endregion Side Bar */
.adspace {
text-align: center;
margin-top: 20px;
}
.widget .widget-title{
background: #CCC5B9;
}
.widget .widget-body ul{
padding: 0;
}
.widget .widget-body ul a.list-group-item{
padding: 10px;
}
.footer{
background-color: #444444 !important;
padding: 10px;
} | geekays/src/assets/css/custom.css | body {
/* padding-top: 0; */
padding-top: 90px;
}
nav {
background-image: url("../img/nav_bg_small.png");
background-repeat: repeat-x;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
nav a {
padding-top: 20px !important;
padding-bottom: 20px !important;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
font-size: 15px;
font-weight:bold;
}
nav ul li a:focus {
color: #FFFFFF;
}
nav .navbar-toggle {
margin: 13px 15px 13px 0;
}
.navbar {
padding: 0 !important;
}
.navbar-brand {
font-size: 30px;
width: 300px;
background-image: url("../img/gk_logo.png");
background-repeat: no-repeat;
height: 143px;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.navbar-fixed-to {
border-bottom: thick solid #000000;
}
nav.navbar.shrink {
min-height: 35px;
}
nav.shrink a {
padding-top: 15px !important;
padding-bottom: 10px !important;
color: #FFFFFF;
}
nav.shrink .navbar-brand {
font-size: 25px;
background-image: url("../img/gk_logo_small.png");
background-repeat: no-repeat;
height: 54px;
}
nav.shrink .navbar-toggle {
padding: 4px 5px;
margin: 8px 15px 8px 0;
}
nav.shrink #search, nav.shrink #pins {
display:none;
}
#pins {
margin-top: 10px;
margin-right: 10px;
text-align:right;
min-height: 35px;
color: #FFFFFF;
}
#search {
min-height: 30px;
text-align:right;
font-size: 1.4em;
}
#search input {
font-size:0.9em;
padding-top:7px;
/*background-color: #ececec;*/
width: 300px;
}
#search button {
padding-top: 0px;
font-size:1.5em;
}
#aboutme {
border-radius: 25px;
border: 2px solid #ef882c;
padding: 10px;
padding-bottom: 10px;
margin-top: 30px;
/*opacity:0.4; */
}
#aboutme::after {
content: "";
border-radius: 25px;
background-color: #cccccc;
background-image: url("../img/location.png");
background-size: auto;
background-position: center;
background-repeat: no-repeat;
opacity: 0.5;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
}
#aboutme h4 {
/*padding:10px;*/
}
#aboutme p {
/*padding-left:10px;
padding-right:10px;*/
}
#aboutme div {
padding-bottom: 0px;
}
#aboutme a {
padding-left:10px;
padding-bottom:10px;
}
#headline {
background-image: url("../img/this-just-in.png");
background-size: 100px;
background-repeat: no-repeat;
background-position: -10px -10px;
}
#headline h1 {
visibility:hidden;
height: 60px;
}
#core {
margin-top: 20px;
}
.frontpost {
border-bottom: 3px solid #cccccc;
padding-bottom: 20px;
}
.frontpost h3 {
margin-top: 0px;
}
footer {
background-color: #cccccc;
margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
}
.dark {
background-color: #cccccc;
}
.nowrap {
white-space: nowrap ;
}
/* Tag Cloud */
#tagcloud{
padding-left: 0px;
}
.tagcloud ul {
display: inline;
padding: 0;
}
.tagcloud li {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent none repeat scroll 0 0;
border-bottom:0 none;
display:inline;
padding:0;
}
.tagcloud a {
display:inline;
margin-right:3px;
padding: 3px;
/*border: 1px solid #cfcfcf;*/
}
.tagcloud a.biggest {
font-size:24px;
color: #e48214;
}
.tagcloud a.big {
font-size:21px;
color: #008080;
}
.tagcloud a.medium {
font-size:19px;
color: #0080c0;
}
.tagcloud a.small {
font-size:16px;
color: #008000;
}
.tagcloud a.smallest {
font-size:13px;
color: #00ff00;
}
/*region Tag Cloud */
/*region Side Bar */
#recentPosts {
padding-left: 20px;
}
#recentPosts li {
padding-bottom: 5px;
}
#recentPosts li span{
margin-left: 10px;
}
#recentComments {
padding-left: 0px;
list-style: none;
}
#recentComments :nth-child(even){
background-color: #e0e0e0;
}
#recentComments :nth-child(odd){
background-color: #96dea3;
}
#recentComments li {
padding-bottom: 5px;
}
#recentComments li a.postTitle{
color: #e27e10;
background-color: transparent;
}
#recentComments li a.moreLink{
background-color: transparent;
}
/*endregion Side Bar */
.adspace {
text-align: center;
margin-top: 20px;
}
.widget .widget-title{
background: #CCC5B9;
}
.widget .widget-body ul{
padding: 0;
}
.widget .widget-body ul a.list-group-item{
padding: 10px;
}
.footer{
background-color: #444444 !important;
padding: 10px;
} | 0.240596 | 0.050307 |
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Roboto', sans-serif !important;
}
body {
background-color: #FBFBFB !important;
}
section {
/* margin-top: 10vh; */
margin-bottom: 20vw;
padding: 0px 10%;
}
.white-space {
width: 100%;
height: 65vh;
}
/* -------------- Navbar -------------- */
nav {
padding-left: 10% !important;
padding-right: 10% !important;
background-color: #1A6755;
}
.navbar-toggler {
outline: none !important;
}
.navbar-brand {
padding-left: 2rem;
padding-right: 2rem;
}
.nav-link {
padding-left: 1.5rem !important;
padding-right: 1.5rem !important;
font-weight: 700;
color:#FFF !important;
transition: 0.4s;
}
.nav-link:hover {
color: #D1FADE !important;
transition: 0.4s;
}
/* ------------------------------------ */
/* ------------- Landing Page ------------- */
.landing .text-1 {
position: absolute;
top: 27%;
left: 13%;
font-size: 3vw;
color: #B9DACA;
}
.landing .text-2 {
position: absolute;
top: 31%;
left: 13%;
font-size: 15.5vw;
font-weight: 700;
color: #1A6755;
}
.landing .text-3 {
position: absolute;
top: 31%;
right: 13%;
font-size: 15.5vw;
font-weight: 700;
color: #1A6755;
}
.landing img {
position: absolute;
top: 29%;
right: 13%;
width: 41vw;
height: auto;
}
/* ------------------------------------ */
/* ------------- Section 1 ------------- */
.section-1 {
margin-bottom: 12vw;
}
.section-1 img {
width: 27.5vw;
height: auto;
}
.section-1 .heading {
margin-bottom: 8vh;
display: flex;
justify-content: center;
}
.section-1 .text-1 {
padding: 0px 1.2vw;
font-weight: 700;
font-size: 4vw;
color: #75B89B;
}
.section-1 .text-2 {
font-weight: 700;
font-size: 4vw;
color: #1A6755;
}
.section-1 .info {
font-weight: 600;
font-size: 1.7vw;
color: #1A6755;
}
/* ------------------------------------ */
/* ------------- Section 2 ------------- */
.section-2 {
margin-bottom: 12vw;
}
.section-2 .heading {
margin-bottom: 8vh;
display: flex;
justify-content: center;
}
.section-2 .text-1 {
padding: 0px 1.2vw;
font-weight: 700;
font-size: 4vw;
color: #75B89B;
}
.section-2 .text-2 {
font-weight: 700;
font-size: 4vw;
color: #1A6755;
}
.section-2 .info {
font-weight: 500;
font-size: 1.5vw;
color: #1A6755;
}
/* ------------------------------------ */
/* ------------- Card ------------- */
.myCard {
width: 45vw;
height: 60vh;
border-radius: 20px;
box-shadow: 0px 4px 8px #D4D4D4;
background-color: #FFF;
}
.card1 {
background: url(../assets/images/cuci-tangan.png) no-repeat;
}
.card1 > .text-1 {
position: absolute;
top: 32%;
left: 36%;
font-weight: 700;
font-size: 4.9vw;
color: #1A6755;
}
.card1 > .text-2 {
position: absolute;
top: 45%;
left: 39%;
font-weight: 500;
font-size: 6.7vw;
color: #75B89B;
}
.card2 {
background: url(../assets/images/mask.png) no-repeat;
background-position: right;
}
.card2 > .text-1 {
position: absolute;
top: 32%;
left: 10.5%;
font-weight: 700;
font-size: 4.9vw;
color: #1A6755;
}
.card2 > .text-2 {
position: absolute;
top: 45%;
left: 5%;
font-weight: 500;
font-size: 6.7vw;
color: #75B89B;
}
.card3 {
background: url(../assets/images/jaga-jarak.png) no-repeat;
}
.card3 > .text-1 {
position: absolute;
top: 32%;
left: 43%;
font-weight: 700;
font-size: 4.3vw;
color: #1A6755;
}
.card3 > .text-2 {
position: absolute;
top: 45%;
left: 46%;
font-weight: 500;
font-size: 6.7vw;
color: #75B89B;
}
.info-3m {
margin: 11vh auto;
font-weight: 500;
font-size: 1.7vw;
color: #1A6755;
}
/* ------------------------------------ */
/* ------------- Section 3 ------------- */
.section-3 {
text-align: center;
}
.section-3 .heading {
margin-bottom: 8vh;
display: flex;
justify-content: center;
}
.section-3 .text-1 {
padding: 0px 1.2vw;
font-weight: 700;
font-size: 4vw;
color: #75B89B;
}
.section-3 .text-2 {
font-weight: 700;
font-size: 4vw;
color: #1A6755;
}
.section-3 .info {
font-weight: 500;
font-size: 1.5vw;
color: #1A6755;
}
.section-3 > video {
width: 75vw;
height: auto;
}
/* ------------------------------------ */
/* ------------- Footer ------------- */
footer {
padding-top: 10px;
padding-bottom: 10px;
background-color: #1A6755;
color: #FFF;
font-weight: 700;
font-size: 4vw;
text-align: center;
}
/* ------------------------------------ */
/* ------------- About ------------- */
.myProfile {
border-radius: 50%;
display: block;
margin: auto;
}
.myInfo a {
margin: 0px 16px;
color: #1A6755;
transition: 0.4s;
}
.myInfo a:hover {
color: #75B89B;
transition: 0.4s;
}
.myName {
font-weight: 700;
font-size: 2vw;
color: #1A6755;
text-align: center;
}
.socmed {
margin: 0px 16px;
width: 4.5vw;
height: auto;
font-size: 24px;
}
.ourTeam {
margin-top: 10%;
}
.ourTeam .heading {
margin-bottom: 8vh;
display: flex;
justify-content: center;
}
.ourTeam .text-1 {
padding: 0px 1.2vw;
font-weight: 700;
font-size: 4vw;
color: #75B89B;
}
/* ------------------------------------ */
.test-box {
width: 100%;
height: 100px;
background-color: #B9DACA;
}
.test-box2 {
width: 100%;
height: 100px;
background-color: #75B89B;
}
.cardMargin {
margin-bottom: 10vw;
} | css/style.css | * {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Roboto', sans-serif !important;
}
body {
background-color: #FBFBFB !important;
}
section {
/* margin-top: 10vh; */
margin-bottom: 20vw;
padding: 0px 10%;
}
.white-space {
width: 100%;
height: 65vh;
}
/* -------------- Navbar -------------- */
nav {
padding-left: 10% !important;
padding-right: 10% !important;
background-color: #1A6755;
}
.navbar-toggler {
outline: none !important;
}
.navbar-brand {
padding-left: 2rem;
padding-right: 2rem;
}
.nav-link {
padding-left: 1.5rem !important;
padding-right: 1.5rem !important;
font-weight: 700;
color:#FFF !important;
transition: 0.4s;
}
.nav-link:hover {
color: #D1FADE !important;
transition: 0.4s;
}
/* ------------------------------------ */
/* ------------- Landing Page ------------- */
.landing .text-1 {
position: absolute;
top: 27%;
left: 13%;
font-size: 3vw;
color: #B9DACA;
}
.landing .text-2 {
position: absolute;
top: 31%;
left: 13%;
font-size: 15.5vw;
font-weight: 700;
color: #1A6755;
}
.landing .text-3 {
position: absolute;
top: 31%;
right: 13%;
font-size: 15.5vw;
font-weight: 700;
color: #1A6755;
}
.landing img {
position: absolute;
top: 29%;
right: 13%;
width: 41vw;
height: auto;
}
/* ------------------------------------ */
/* ------------- Section 1 ------------- */
.section-1 {
margin-bottom: 12vw;
}
.section-1 img {
width: 27.5vw;
height: auto;
}
.section-1 .heading {
margin-bottom: 8vh;
display: flex;
justify-content: center;
}
.section-1 .text-1 {
padding: 0px 1.2vw;
font-weight: 700;
font-size: 4vw;
color: #75B89B;
}
.section-1 .text-2 {
font-weight: 700;
font-size: 4vw;
color: #1A6755;
}
.section-1 .info {
font-weight: 600;
font-size: 1.7vw;
color: #1A6755;
}
/* ------------------------------------ */
/* ------------- Section 2 ------------- */
.section-2 {
margin-bottom: 12vw;
}
.section-2 .heading {
margin-bottom: 8vh;
display: flex;
justify-content: center;
}
.section-2 .text-1 {
padding: 0px 1.2vw;
font-weight: 700;
font-size: 4vw;
color: #75B89B;
}
.section-2 .text-2 {
font-weight: 700;
font-size: 4vw;
color: #1A6755;
}
.section-2 .info {
font-weight: 500;
font-size: 1.5vw;
color: #1A6755;
}
/* ------------------------------------ */
/* ------------- Card ------------- */
.myCard {
width: 45vw;
height: 60vh;
border-radius: 20px;
box-shadow: 0px 4px 8px #D4D4D4;
background-color: #FFF;
}
.card1 {
background: url(../assets/images/cuci-tangan.png) no-repeat;
}
.card1 > .text-1 {
position: absolute;
top: 32%;
left: 36%;
font-weight: 700;
font-size: 4.9vw;
color: #1A6755;
}
.card1 > .text-2 {
position: absolute;
top: 45%;
left: 39%;
font-weight: 500;
font-size: 6.7vw;
color: #75B89B;
}
.card2 {
background: url(../assets/images/mask.png) no-repeat;
background-position: right;
}
.card2 > .text-1 {
position: absolute;
top: 32%;
left: 10.5%;
font-weight: 700;
font-size: 4.9vw;
color: #1A6755;
}
.card2 > .text-2 {
position: absolute;
top: 45%;
left: 5%;
font-weight: 500;
font-size: 6.7vw;
color: #75B89B;
}
.card3 {
background: url(../assets/images/jaga-jarak.png) no-repeat;
}
.card3 > .text-1 {
position: absolute;
top: 32%;
left: 43%;
font-weight: 700;
font-size: 4.3vw;
color: #1A6755;
}
.card3 > .text-2 {
position: absolute;
top: 45%;
left: 46%;
font-weight: 500;
font-size: 6.7vw;
color: #75B89B;
}
.info-3m {
margin: 11vh auto;
font-weight: 500;
font-size: 1.7vw;
color: #1A6755;
}
/* ------------------------------------ */
/* ------------- Section 3 ------------- */
.section-3 {
text-align: center;
}
.section-3 .heading {
margin-bottom: 8vh;
display: flex;
justify-content: center;
}
.section-3 .text-1 {
padding: 0px 1.2vw;
font-weight: 700;
font-size: 4vw;
color: #75B89B;
}
.section-3 .text-2 {
font-weight: 700;
font-size: 4vw;
color: #1A6755;
}
.section-3 .info {
font-weight: 500;
font-size: 1.5vw;
color: #1A6755;
}
.section-3 > video {
width: 75vw;
height: auto;
}
/* ------------------------------------ */
/* ------------- Footer ------------- */
footer {
padding-top: 10px;
padding-bottom: 10px;
background-color: #1A6755;
color: #FFF;
font-weight: 700;
font-size: 4vw;
text-align: center;
}
/* ------------------------------------ */
/* ------------- About ------------- */
.myProfile {
border-radius: 50%;
display: block;
margin: auto;
}
.myInfo a {
margin: 0px 16px;
color: #1A6755;
transition: 0.4s;
}
.myInfo a:hover {
color: #75B89B;
transition: 0.4s;
}
.myName {
font-weight: 700;
font-size: 2vw;
color: #1A6755;
text-align: center;
}
.socmed {
margin: 0px 16px;
width: 4.5vw;
height: auto;
font-size: 24px;
}
.ourTeam {
margin-top: 10%;
}
.ourTeam .heading {
margin-bottom: 8vh;
display: flex;
justify-content: center;
}
.ourTeam .text-1 {
padding: 0px 1.2vw;
font-weight: 700;
font-size: 4vw;
color: #75B89B;
}
/* ------------------------------------ */
.test-box {
width: 100%;
height: 100px;
background-color: #B9DACA;
}
.test-box2 {
width: 100%;
height: 100px;
background-color: #75B89B;
}
.cardMargin {
margin-bottom: 10vw;
} | 0.445047 | 0.102484 |
@CHARSET "UTF-8";
/* index css */
.body {background-color:#f4f6f8;height:100%;}
.nav {width:74%;margin:0 auto;}
.nav-right {width:60%;margin:auto auto;display:inline-block;}
.nav span {float:right;}
.layui-nav .layui-nav-more {display:none;}
.main {width:71%;margin:0 auto;min-height:500px;}
.main-left {width:64%;min-height:500px;float:left;}
.main-right {width:35%;min-height:500px;float:right;}
.main-left-article {width:98%;min-height:270px;background-color:white;margin:10px 0;border-radius:5px;}
.main-left-article .title {width:95%;margin:2px auto;line-height:45px;}
.main-left-article .content {width:95%;margin:0 auto;height:130px;}
.main-left-article .content .image {width:30%;height:130px;float:left;}
.main-left-article .content .image img {width:100%;height:100%;}
.main-left-article .content .intro {width:69%;min-height:100px;float:right;display: block;padding-top:0px;text-indent: 2em;}
.main-left-article .info {background-color: white;color: black;padding-left:5px;}
.main-left-article .info span{margin-left:5px;}
.main-right .tab {background:white;margin-top:10px;border-radius:5px;}
.main-right .tab .title {border-bottom:1px solid #e2e2e2;height:40px;line-height:40px;font-size:16px;opacity:0.5;text-indent:1em;}
.layui-nav-bar {background-color:#fff;}
.layui-nav{background-color:#fff;}
.layui-nav .layui-nav-item a {color:#0a0a0a;}
/* login */
.login {width:40%;margin:5% auto;height:50%;background-color:#fff;border-radius:10px;}
.login .title {border-bottom:1px solid #e2e2e2;height:40px;line-height:40px;text-align:center;font-size:20px;opacity:0.5;text-indent:1em;}
.login .layui-form {width:88%;margin:30px auto;}
.login .layui-form .layui-input {border-radius:5px;}
.login .layui-form .layui-input-block {margin-left:10px;border-radius:5px;}
.login .layui-form .layui-input-block .layui-btn {width:100%;border-radius:5px;font-size:16px;}
.login .reset a{color:#10a3a3}
.login .reset{width:86%;margin:10px auto;text-align:center;font-size:14px;height:50px;color:#10a3a3;line-height:50px;background-color:#e9ffff;}
/* register */
.register {width:40%;margin:5% auto;height:40%;background-color:#fff;border-radius:10px;}
.register .title {border-bottom:1px solid #e2e2e2;height:40px;line-height:40px;text-align:center;font-size:20px;opacity:0.5;text-indent:1em;}
.register .layui-form {width:88%;margin:30px auto;}
.register .layui-form .layui-input {border-radius:5px;}
.register .layui-form .layui-input-block {margin-left:10px;border-radius:5px;}
.register .layui-form .layui-input-block .layui-btn {width:100%;border-radius:5px;font-size:16px;}
.register .reset a{color:#10a3a3}
.register .reset{width:86%;margin:10px auto;text-align:center;font-size:14px;height:50px;color:#10a3a3;line-height:50px;background-color:#e9ffff;}
/* detail */
.blog_detail {width:75%;margin:10px auto;min-height:500px;}
.blog_detail .content {width:100%;min-height:300px;background-color:#fff;padding-bottom:20px;}
.blog_detail .content .title{width:100%;min-height:50px;border-bottom:1px solid #e2e2e2;line-height:30px;padding-top:15px;text-indent:2em;}
.blog_detail .content .title span{font-size:22px;}
.blog_detail .content .title div{font-size:14px;}
.blog_detail .content .title div img{width:50px;height:50px;border-radius:50%;float:left;}
.blog_detail .content .article-author {width:50%;min-height:100px;margin:0px auto;padding-bottom:10px;background-color:hsla(0,0%,71%,.1);}
.blog_detail .content .article-author .author-intro {width: 99%;border-bottom:1px solid #e2e2e2;min-height:50px;float:right;}
.blog_detail .content .article-author .author-intro .author-avatar{width:7%;height:50px;border-radius:50%;float:left;}
.blog_detail .content .article-author .author-intro .author-avatar img{border-radius:50%;width:100%;height:50px;}
.blog_detail .content .article-author .shuming {width:20%;font-size:16px;text-align:center;line-height:50px;cursor:pointer;margin-left:5px;float:left;height:50px;}
.blog_detail .content .article-content{width:95%;padding-top:15px;min-height:200px;margin:0 auto;padding-bottom:10px;word-wrap: break-word; word-break: normal;}
/* comment */
.blog_detail .comment{width:100%;min-height:200px;background-color:white;margin:15px auto;}
.blog_detail .comment .reply{width:100%;height:50px;line-height:50px;text-indent:2em;font-size:16px;opacity:0.7;border-bottom:1px solid #e2e2e2;}
.blog_detail .comment .info {width:100%;min-height:150px;padding-bottom:10px;}
.blog_detail .comment .no-comment {width:98%;height:150px;line-height:150px;text-align:center;opacity:0.6;}
.blog_detail .comment ul {width:98%;min-height:150px;}
.blog_detail .comment ul li {width:100%;float:left;min-height:70px;margin:5px 10px;border-bottom:1px solid #e2e2e2;}
.blog_detail .comment ul li .avatar{width:6%;height:85px;float:left;border-radius:50%;}
.blog_detail .comment ul li .avatar img{width:70px;height:70px;border-radius:50%;margin:0 6px;}
.blog_detail .comment ul li .comment-info{width:93%;min-height:80px;float:right;}
.blog_detail .comment ul li .comment-info div {height:20px;}
.blog_detail .comment ul li .comment-info div .span-left{float:left;margin-left:10px;}
.blog_detail .comment ul li .comment-info div .span-left a{color:green;}
.blog_detail .comment ul li .comment-info div .span-right{float:right;margin-right:10px;opacity:0.6;}
.blog_detail .comment ul li .comment-info div .time{opacity:0.6;text-indent:1em;}
.blog_detail .comment ul li .comment-info p {text-indent:1em;margin-top:3px;}
.blog_detail .editor{width:100%;height:160px;background-color:white;margin:15px auto;}
.blog_detail .comment ul li .comment-info p a {color:green;}
.detail .main-right {width:24%;min-height:500px;float:right;}
.detail .main-right .tab .title {text-align:center;}
.detail .main-right .tab .avatar {width:100px;height:100px;border:1px solid #ddd;border-radius:50%;margin:10px auto;}
.detail .main-right .tab .avatar img {width:100%;height:100%;border-radius:50%;}
.detail .main-right .tab .sign {width:90%;min-height:30px;margin:0 auto;word-wrap:break-word;text-align:center;}
.detail .main-right .tab .btn {width:90%;min-height:30px;margin:0 auto;text-align:center;line-height:30px;font-size:16px;background-color:#FFB800;border-radius:5px;color:#fff;}
.fa {display:inline;}
/* user center */
.user {width:74%;min-height:500px;margin:10px auto;}
.user .user-left {width:29%;height:800px;float:left;}
.user .user-left .user-card {width:100%;min-height:380px;background-color:#fff;}
.user .user-left .user-relate {width:100%;height:250px;margin-top:15px;background-color:#fff;}
.user .user-right {width:69%;min-height:800px;float:right;}
.user .user-left .user-card .name {width:100%;height:40px;line-height:40px;text-align:center;font-size:20px;border-bottom:1px solid #e2e2e2;}
.user .user-left .user-card .avatar {width:140px;height:140px;margin:0 auto;border-radius:50%;}
.user .user-left .user-card .avatar img {width:100%;height:100%;border-radius:50%;}
.user .user-left .user-card .edit_btn {width:98%;margin:0 auto;margin-bottom:10px;}
.user .user-left .user-card .intro {width:100%;min-height:100px;margin-bottom:10px;border-bottom:1px solid #e2e2e2;}
.user .user-left .user-card .intro div{width:100%;height:30px;line-height:30px;text-align:center;font-size:16px;}
.user .user-left .user-relate .layui-btn {width:98%;margin:5px auto;}
.user .user-right .share {width:100%;min-height:150px;background-color:#fff;margin:10px 0px;}
.user .user-right .share .title {width:100%;height:40px;border-bottom:1px solid #e2e2e2;background-color:#fff;line-height:40px;font-size:18px;text-indent:1em;opacity:0.5;}
.user .user-right .share .btn {width:20%;height:50px;margin:24px auto;line-height:50px;font-size:16px;border-radius:5px;text-align:center;background-color:#05a1a2;color:#fff;}
.user .user-right .write{width:100%;margin:15px auto;min-height:150px;background-color:#fff;}
.user .user-right .write .title {width:100%;height:40px;border-bottom:1px solid #e2e2e2;background-color:#fff;line-height:40px;font-size:18px;text-indent:1em;opacity:0.5;}
.user .user-right .write .no-article {width:98%;height:150px;line-height:150px;text-align:center;opacity:0.4;font-size:16px;}
.user .user-right .share .no-article {margin-top:50px;margin-left:450px;font-size:16px;opacity:0.4;}
.user .user-right .write ul{width:100%;min-height:150px;}
.user .user-right .write ul li {width:100%;line-height:50px;height:50px;text-indent: 2em;border-bottom: 1px solid #e2e2e2;}
.user .user-right .write ul li a {color:#05a1a2;font-size:15px;}
.user .user-right .write ul li .info a {color:#0a0a0a;font-size:10px;}
.user .user-right .write ul li .info {opacity:0.6;}
/* draft */
.user .user-right .draft{width:100%;margin:15px auto;min-height:100px;background-color:#fff;}
.user .user-right .draft .title {width:100%;height:40px;border-bottom:1px solid #e2e2e2;background-color:#fff;line-height:40px;font-size:18px;text-indent:1em;opacity:0.5;}
.user .user-right .draft ul{width:100%;min-height:100px;}
.user .user-right .draft ul li {width:100%;line-height:50px;height:50px;text-indent: 2em;border-bottom: 1px solid #e2e2e2;}
.user .user-right .draft ul li a {color:#05a1a2;font-size:15px;}
.user .user-right .draft ul li .info a {color:#0a0a0a;font-size:10px;}
.user .user-right .draft ul li .info {opacity:0.6;}
/* 回复*/
.user .user-right .reply{width:100%;margin:15px auto;min-height:150px;background-color:#fff;}
.user .user-right .reply .title {width:100%;height:40px;border-bottom:1px solid #e2e2e2;background-color:#fff;line-height:40px;font-size:18px;text-indent:1em;opacity:0.5;}
.user .user-right .reply .no-reply {width:98%;height:150px;line-height:150px;text-align:center;opacity:0.6;}
.user .user-right .reply ul {width:100%;min-height:150px;}
.user .user-right .reply ul li {width:100%;padding-top:10px;min-height:50px;text-indent: 2em;border-bottom: 1px solid #e2e2e2;}
.user .user-right .reply ul li a {color:#05a1a2;font-size:15px;}
.user .user-right .reply ul li .info a {color:#0a0a0a;}
.user .user-right .reply ul li .info {opacity:0.6;font-size:10px;}
.user .user-right .reply ul li .reply-info {min-height:25px;font-size:14px;padding-top:10px;width: 94%;margin: 0 auto;padding-bottom: 10px;}
.user .user-right .user-nav {width:100%;height:30px;margin-bottom:10px;line-height: 30px;text-indent:1em;font-size:16px;background-color:#fff;}
.user .user-right .user-nav a {color:#05a1a2;}
/* edit */
.user-edit {width:70%;min-height:780px;margin:10px auto;}
.user-edit .user-edit-left {width:25%;height:500px;float:left;}
.user-edit .user-edit-left .user-edit-option{width:100%;height:280px;background-color:#fff;}
.user-edit .user-edit-left .user-edit-option .layui-btn {width:100%;margin:5px auto;font-size:17px;}
.user-edit .user-edit-right {width:74%;min-height:500px;float:right;}
.user-edit .user-edit-right .form {width:100%;min-height:300px;background-color:#fff;}
.user-edit .user-edit-right .form .title {width:100%;height:40px;border-bottom:1px solid #e2e2e2;background-color:#fff;line-height:40px;font-size:18px;text-indent:1em;opacity:0.5;}
.user-edit .user-edit-right .form .layui-form {width: 55%;padding-bottom: 10px;padding-top: 10px;}
/* write */
#layout {margin-top:20px;}
#layout .layui-form{padding:15px 0}
#layout .layui-form .layui-input-block{width:50%;}
.footer {width:100%;height:200px;background:grey;margin-top:20px;} | public/assets/css/public.css | @CHARSET "UTF-8";
/* index css */
.body {background-color:#f4f6f8;height:100%;}
.nav {width:74%;margin:0 auto;}
.nav-right {width:60%;margin:auto auto;display:inline-block;}
.nav span {float:right;}
.layui-nav .layui-nav-more {display:none;}
.main {width:71%;margin:0 auto;min-height:500px;}
.main-left {width:64%;min-height:500px;float:left;}
.main-right {width:35%;min-height:500px;float:right;}
.main-left-article {width:98%;min-height:270px;background-color:white;margin:10px 0;border-radius:5px;}
.main-left-article .title {width:95%;margin:2px auto;line-height:45px;}
.main-left-article .content {width:95%;margin:0 auto;height:130px;}
.main-left-article .content .image {width:30%;height:130px;float:left;}
.main-left-article .content .image img {width:100%;height:100%;}
.main-left-article .content .intro {width:69%;min-height:100px;float:right;display: block;padding-top:0px;text-indent: 2em;}
.main-left-article .info {background-color: white;color: black;padding-left:5px;}
.main-left-article .info span{margin-left:5px;}
.main-right .tab {background:white;margin-top:10px;border-radius:5px;}
.main-right .tab .title {border-bottom:1px solid #e2e2e2;height:40px;line-height:40px;font-size:16px;opacity:0.5;text-indent:1em;}
.layui-nav-bar {background-color:#fff;}
.layui-nav{background-color:#fff;}
.layui-nav .layui-nav-item a {color:#0a0a0a;}
/* login */
.login {width:40%;margin:5% auto;height:50%;background-color:#fff;border-radius:10px;}
.login .title {border-bottom:1px solid #e2e2e2;height:40px;line-height:40px;text-align:center;font-size:20px;opacity:0.5;text-indent:1em;}
.login .layui-form {width:88%;margin:30px auto;}
.login .layui-form .layui-input {border-radius:5px;}
.login .layui-form .layui-input-block {margin-left:10px;border-radius:5px;}
.login .layui-form .layui-input-block .layui-btn {width:100%;border-radius:5px;font-size:16px;}
.login .reset a{color:#10a3a3}
.login .reset{width:86%;margin:10px auto;text-align:center;font-size:14px;height:50px;color:#10a3a3;line-height:50px;background-color:#e9ffff;}
/* register */
.register {width:40%;margin:5% auto;height:40%;background-color:#fff;border-radius:10px;}
.register .title {border-bottom:1px solid #e2e2e2;height:40px;line-height:40px;text-align:center;font-size:20px;opacity:0.5;text-indent:1em;}
.register .layui-form {width:88%;margin:30px auto;}
.register .layui-form .layui-input {border-radius:5px;}
.register .layui-form .layui-input-block {margin-left:10px;border-radius:5px;}
.register .layui-form .layui-input-block .layui-btn {width:100%;border-radius:5px;font-size:16px;}
.register .reset a{color:#10a3a3}
.register .reset{width:86%;margin:10px auto;text-align:center;font-size:14px;height:50px;color:#10a3a3;line-height:50px;background-color:#e9ffff;}
/* detail */
.blog_detail {width:75%;margin:10px auto;min-height:500px;}
.blog_detail .content {width:100%;min-height:300px;background-color:#fff;padding-bottom:20px;}
.blog_detail .content .title{width:100%;min-height:50px;border-bottom:1px solid #e2e2e2;line-height:30px;padding-top:15px;text-indent:2em;}
.blog_detail .content .title span{font-size:22px;}
.blog_detail .content .title div{font-size:14px;}
.blog_detail .content .title div img{width:50px;height:50px;border-radius:50%;float:left;}
.blog_detail .content .article-author {width:50%;min-height:100px;margin:0px auto;padding-bottom:10px;background-color:hsla(0,0%,71%,.1);}
.blog_detail .content .article-author .author-intro {width: 99%;border-bottom:1px solid #e2e2e2;min-height:50px;float:right;}
.blog_detail .content .article-author .author-intro .author-avatar{width:7%;height:50px;border-radius:50%;float:left;}
.blog_detail .content .article-author .author-intro .author-avatar img{border-radius:50%;width:100%;height:50px;}
.blog_detail .content .article-author .shuming {width:20%;font-size:16px;text-align:center;line-height:50px;cursor:pointer;margin-left:5px;float:left;height:50px;}
.blog_detail .content .article-content{width:95%;padding-top:15px;min-height:200px;margin:0 auto;padding-bottom:10px;word-wrap: break-word; word-break: normal;}
/* comment */
.blog_detail .comment{width:100%;min-height:200px;background-color:white;margin:15px auto;}
.blog_detail .comment .reply{width:100%;height:50px;line-height:50px;text-indent:2em;font-size:16px;opacity:0.7;border-bottom:1px solid #e2e2e2;}
.blog_detail .comment .info {width:100%;min-height:150px;padding-bottom:10px;}
.blog_detail .comment .no-comment {width:98%;height:150px;line-height:150px;text-align:center;opacity:0.6;}
.blog_detail .comment ul {width:98%;min-height:150px;}
.blog_detail .comment ul li {width:100%;float:left;min-height:70px;margin:5px 10px;border-bottom:1px solid #e2e2e2;}
.blog_detail .comment ul li .avatar{width:6%;height:85px;float:left;border-radius:50%;}
.blog_detail .comment ul li .avatar img{width:70px;height:70px;border-radius:50%;margin:0 6px;}
.blog_detail .comment ul li .comment-info{width:93%;min-height:80px;float:right;}
.blog_detail .comment ul li .comment-info div {height:20px;}
.blog_detail .comment ul li .comment-info div .span-left{float:left;margin-left:10px;}
.blog_detail .comment ul li .comment-info div .span-left a{color:green;}
.blog_detail .comment ul li .comment-info div .span-right{float:right;margin-right:10px;opacity:0.6;}
.blog_detail .comment ul li .comment-info div .time{opacity:0.6;text-indent:1em;}
.blog_detail .comment ul li .comment-info p {text-indent:1em;margin-top:3px;}
.blog_detail .editor{width:100%;height:160px;background-color:white;margin:15px auto;}
.blog_detail .comment ul li .comment-info p a {color:green;}
.detail .main-right {width:24%;min-height:500px;float:right;}
.detail .main-right .tab .title {text-align:center;}
.detail .main-right .tab .avatar {width:100px;height:100px;border:1px solid #ddd;border-radius:50%;margin:10px auto;}
.detail .main-right .tab .avatar img {width:100%;height:100%;border-radius:50%;}
.detail .main-right .tab .sign {width:90%;min-height:30px;margin:0 auto;word-wrap:break-word;text-align:center;}
.detail .main-right .tab .btn {width:90%;min-height:30px;margin:0 auto;text-align:center;line-height:30px;font-size:16px;background-color:#FFB800;border-radius:5px;color:#fff;}
.fa {display:inline;}
/* user center */
.user {width:74%;min-height:500px;margin:10px auto;}
.user .user-left {width:29%;height:800px;float:left;}
.user .user-left .user-card {width:100%;min-height:380px;background-color:#fff;}
.user .user-left .user-relate {width:100%;height:250px;margin-top:15px;background-color:#fff;}
.user .user-right {width:69%;min-height:800px;float:right;}
.user .user-left .user-card .name {width:100%;height:40px;line-height:40px;text-align:center;font-size:20px;border-bottom:1px solid #e2e2e2;}
.user .user-left .user-card .avatar {width:140px;height:140px;margin:0 auto;border-radius:50%;}
.user .user-left .user-card .avatar img {width:100%;height:100%;border-radius:50%;}
.user .user-left .user-card .edit_btn {width:98%;margin:0 auto;margin-bottom:10px;}
.user .user-left .user-card .intro {width:100%;min-height:100px;margin-bottom:10px;border-bottom:1px solid #e2e2e2;}
.user .user-left .user-card .intro div{width:100%;height:30px;line-height:30px;text-align:center;font-size:16px;}
.user .user-left .user-relate .layui-btn {width:98%;margin:5px auto;}
.user .user-right .share {width:100%;min-height:150px;background-color:#fff;margin:10px 0px;}
.user .user-right .share .title {width:100%;height:40px;border-bottom:1px solid #e2e2e2;background-color:#fff;line-height:40px;font-size:18px;text-indent:1em;opacity:0.5;}
.user .user-right .share .btn {width:20%;height:50px;margin:24px auto;line-height:50px;font-size:16px;border-radius:5px;text-align:center;background-color:#05a1a2;color:#fff;}
.user .user-right .write{width:100%;margin:15px auto;min-height:150px;background-color:#fff;}
.user .user-right .write .title {width:100%;height:40px;border-bottom:1px solid #e2e2e2;background-color:#fff;line-height:40px;font-size:18px;text-indent:1em;opacity:0.5;}
.user .user-right .write .no-article {width:98%;height:150px;line-height:150px;text-align:center;opacity:0.4;font-size:16px;}
.user .user-right .share .no-article {margin-top:50px;margin-left:450px;font-size:16px;opacity:0.4;}
.user .user-right .write ul{width:100%;min-height:150px;}
.user .user-right .write ul li {width:100%;line-height:50px;height:50px;text-indent: 2em;border-bottom: 1px solid #e2e2e2;}
.user .user-right .write ul li a {color:#05a1a2;font-size:15px;}
.user .user-right .write ul li .info a {color:#0a0a0a;font-size:10px;}
.user .user-right .write ul li .info {opacity:0.6;}
/* draft */
.user .user-right .draft{width:100%;margin:15px auto;min-height:100px;background-color:#fff;}
.user .user-right .draft .title {width:100%;height:40px;border-bottom:1px solid #e2e2e2;background-color:#fff;line-height:40px;font-size:18px;text-indent:1em;opacity:0.5;}
.user .user-right .draft ul{width:100%;min-height:100px;}
.user .user-right .draft ul li {width:100%;line-height:50px;height:50px;text-indent: 2em;border-bottom: 1px solid #e2e2e2;}
.user .user-right .draft ul li a {color:#05a1a2;font-size:15px;}
.user .user-right .draft ul li .info a {color:#0a0a0a;font-size:10px;}
.user .user-right .draft ul li .info {opacity:0.6;}
/* 回复*/
.user .user-right .reply{width:100%;margin:15px auto;min-height:150px;background-color:#fff;}
.user .user-right .reply .title {width:100%;height:40px;border-bottom:1px solid #e2e2e2;background-color:#fff;line-height:40px;font-size:18px;text-indent:1em;opacity:0.5;}
.user .user-right .reply .no-reply {width:98%;height:150px;line-height:150px;text-align:center;opacity:0.6;}
.user .user-right .reply ul {width:100%;min-height:150px;}
.user .user-right .reply ul li {width:100%;padding-top:10px;min-height:50px;text-indent: 2em;border-bottom: 1px solid #e2e2e2;}
.user .user-right .reply ul li a {color:#05a1a2;font-size:15px;}
.user .user-right .reply ul li .info a {color:#0a0a0a;}
.user .user-right .reply ul li .info {opacity:0.6;font-size:10px;}
.user .user-right .reply ul li .reply-info {min-height:25px;font-size:14px;padding-top:10px;width: 94%;margin: 0 auto;padding-bottom: 10px;}
.user .user-right .user-nav {width:100%;height:30px;margin-bottom:10px;line-height: 30px;text-indent:1em;font-size:16px;background-color:#fff;}
.user .user-right .user-nav a {color:#05a1a2;}
/* edit */
.user-edit {width:70%;min-height:780px;margin:10px auto;}
.user-edit .user-edit-left {width:25%;height:500px;float:left;}
.user-edit .user-edit-left .user-edit-option{width:100%;height:280px;background-color:#fff;}
.user-edit .user-edit-left .user-edit-option .layui-btn {width:100%;margin:5px auto;font-size:17px;}
.user-edit .user-edit-right {width:74%;min-height:500px;float:right;}
.user-edit .user-edit-right .form {width:100%;min-height:300px;background-color:#fff;}
.user-edit .user-edit-right .form .title {width:100%;height:40px;border-bottom:1px solid #e2e2e2;background-color:#fff;line-height:40px;font-size:18px;text-indent:1em;opacity:0.5;}
.user-edit .user-edit-right .form .layui-form {width: 55%;padding-bottom: 10px;padding-top: 10px;}
/* write */
#layout {margin-top:20px;}
#layout .layui-form{padding:15px 0}
#layout .layui-form .layui-input-block{width:50%;}
.footer {width:100%;height:200px;background:grey;margin-top:20px;} | 0.195172 | 0.048226 |
::-webkit-scrollbar{
width: 8px;
border-radius: 4px;
}
::-webkit-scrollbar-track{
border-radius: 4px;
background-image: linear-gradient(to bottom, #292929, #212121);
}
::-webkit-scrollbar-thumb{
border-radius: 4px;
background: #e7e7e7;
}
::-webkit-scrollbar-thumb:hover{
border-radius: 4px;
background: #fafafa;
}
@font-face{
src: url('times.ttf');
font-family: 'timesNR';
}
html{
color: #fff;
scroll-behavior: smooth;
-webkit-user-select: none;
}
img{
-webkit-user-drag: none;
}
body{
color: #fff;
overflow: hidden;
font-family: 'timesNR', Fallback, times;
}
u{
text-shadow: 0px 0px 10px #ff000063;
}
a{
color: #fff;
}
audio{
width: 100%;
}
input[type='range' i]{
top: 6px;
width: 62%;
cursor: pointer;
margin-top: 4px;
margin-right: 6px;
position: relative;
}
/*
App Holder
*/
.R3DITOR_MAIN_APP_HOLDER{
color: #fff;
width: 1360px;
height: 733px;
position: fixed;
overflow: hidden;
transform-origin: top left;
transition: all .0.1s ease-in-out;
background-image: linear-gradient(to bottom, #020202, #0f0c23);
}
/*
Fill
*/
.fill{
width: 100%;
height: 100%;
}
/*
Cursor
*/
.CURSOR_NO{
cursor: no-drop !important;
}
.CURSOR_POINTER{
cursor: pointer !important;
}
/*
About
*/
.ABOUT_appLogo{
top: 148px;
position: absolute;
}
.ABOUT_right{
position: absolute;
}
.ABOUT_BG{
top: 0px;
left: 0px;
z-index: 0;
width: 100%;
height: 100%;
display: none;
filter: blur(4px);
position: absolute;
border-radius: 50px;
background-color: #000;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-image: url(../img/tms.png);
-webkit-mask-image: linear-gradient(to left, #ffffff14, #00000014);
}
.ABOUT_main{
top: 40px;
left: 140px;
width: 992px;
height: 582px;
padding: 34px;
overflow: hidden;
position: absolute;
border-radius: 50px;
box-shadow: 0px 0px 30px #5d46727a;
background-image: linear-gradient(to bottom, #5f4774, #17163f);
}
.appLogo{
width: 200px;
filter: blur(200px);
}
.ABOUT_separador{
top: 76px;
width: 2px;
left: 244px;
color: #fff;
height: 500px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(#ffffff00, #fff, #ffffff00);
}
.ABOUT_LEGAL_INFO{
top: 500px;
left: 276px;
width: 720px;
position: absolute;
}
.ABOUT_manyThanksLbl{
top: 68px;
left: 246px;
width: 130px;
position: absolute;
}
.ABOUT_manyThanksDiv{
top: 100px;
left: 256px;
width: 776px;
height: 252px;
overflow: auto;
position: absolute;
text-align: -webkit-left;
}
.ABOUT_specialThanks{
top: 360px;
left: 300px;
position: absolute;
text-align: -webkit-center;
}
.ABOUT_goBackBtn{
left: 4px;
top: 330px;
position: absolute;
width: 180px !important;
border-radius: 6px !important;
}
/*
FBoot
*/
.textLOGO{
color: #fff;
font-size: xx-large;
text-shadow: 0px 0px 30px #f00;
}
.FBOOT_logo{
top: 260px;
left: 588px;
width: 170px;
display: none;
position: absolute;
}
.FBOOT_DIV{
top: 410px;
left: 368px;
display: none;
position: absolute;
color: #222 !important;
text-shadow: 0 0 10px #ffb9b9;
}
.FBOOT_LEGAL_MESSAGE_CSS{
top: 680px;
left: 360px;
color: #000;
display: none;
position: absolute;
text-shadow: 0 0 20px #f00;
}
.fillScreen-white{
top: 0px;
left: 0px;
z-index: 999;
width: 1362px;
height: 808px;
display: none;
position: absolute;
background-color: #000;
}
.chkbox{
position: absolute;
}
.font-chkbox-fix{
cursor: pointer;
margin-left: 22px;
}
.updater_title_holder, li{
margin-top: 6px;
}
.padding-left{
padding-left: 4px;
}
.red{
color: #f00;
text-shadow: 0px 0px 10px #ff8e8e;
}
.green{
color: #0f0;
text-shadow: 0px 0px 10px #0f0;
}
.RDT_lbl_pointers{
left: 206px;
width: 1090px;
position: sticky;
margin-top: -18px;
}
.RDT_saveAsARD-btn{
left: 364px;
color: #0f0;
display: none;
margin-top: -4px;
position: absolute;
}
.blockUsage{
top: 596px;
width: 942px;
padding: 6px;
height: auto;
display: none;
position: absolute;
border-radius: 4px;
background-image: linear-gradient(to bottom, #555, #222);
}
.feature_title{
font-size: x-large;
text-decoration: underline;
text-shadow: 0px 0px 10px #555;
}
.msg-legenda-sticky{
left: 50px;
position: sticky;
}
.btn-apply-small{
width: 30%;
}
.menu-topo{
width: 98%;
padding: 6px;
height: auto;
position: absolute;
border-radius: 4px;
background-image: linear-gradient(to bottom, #555, #222);
}
.botao-menu{
color: #0e0;
border: none;
outline: none;
cursor: pointer;
margin-left: 2px;
padding-top: 4px;
padding-left: 10px;
border-radius: 4px;
padding-bottom: 4px;
padding-right: 10px;
text-shadow: 0px 0px 10px #888;
background-image: linear-gradient(to bottom, #232323, #000);
}
.botao-menu:active{
color: #0f0;
outline: none;
box-shadow: 0 0 4px #222;
text-shadow: 0 0 10px #fff;
background-image: linear-gradient(to bottom, #000, #001c00);
}
.botao-aplicar{
color: #fff;
outline: none;
margin-right: 2px;
box-shadow: 0px 0px 4px #002808;
text-shadow: 0px 0px 10px #1cff00;
background-image: linear-gradient(to bottom, #009a3a, #003f18);
}
.botao-aplicar:active{
color: #e6ffdc;
background-image: linear-gradient(to bottom, #003f18, #009a3a);
}
.botao-aplicar:hover{
box-shadow: 0 0 10px #037f01;
}
.info-icon-holder{
margin-top: 8px;
}
.menu{
top: 84px;
width: 98%;
z-index: 1;
color: #fff;
padding: 6px;
height: 530px;
overflow: auto;
position: absolute;
border-radius: 6px;
background-image: linear-gradient(to bottom, #444, #333);
}
.log-text{
width: 99%;
color: #0f0;
text-shadow: 0px 0px 5px #367948;
}
.log-warn{
width: 99%;
color: #fffc84;
text-shadow: 0px 0px 5px #8a8c2b;
}
.log-error{
width: 99%;
color: #ffbdbd;
margin-top: 4px;
margin-bottom: 4px;
text-shadow: 0px 0px 5px #793636;
}
.log-ARDENABLER-counter{
position: sticky;
margin-top: -18px;
margin-left: 190px;
}
.log-holder{
top: 622px;
width: 98%;
color: #0f0;
padding: 6px;
height: 88px;
overflow: auto;
margin-top: 4px;
border-radius: 6px;
position: absolute;
box-shadow: 0 0 10px #000;
background-image: linear-gradient(to bottom, #151515, #191919);
}
.menu-general-content{
z-index: 1;
color: #fff;
padding: 4px;
height: 520px;
overflow: auto;
margin-top: 2px;
border-radius: 6px;
text-shadow: 0px 0px 5px #367948;
background-image: linear-gradient(to bottom, #212121c7, #000123b5);
}
.menu-geral-text{
left: 176px;
position: sticky;
}
.RDT-menu-geral-text{
left: 206px;
position: sticky;
}
.menu-general-btn{
left: 1246px;
margin-top: 1px;
padding-top: 2px;
position: sticky;
padding-bottom: 2px;
}
.menu-separador{
width: 78%;
color: #fff;
height: 2px;
margin-top: 4px;
border-radius: 4px;
margin-bottom: 4px;
background-image: linear-gradient(to right, #fff, #fff0);
}
.menu-separador-2{
color: #fff;
height: 2px;
margin-top: 4px;
border-radius: 4px;
margin-bottom: 4px;
background-image: linear-gradient(90deg, #0000, #ffff, #0000);
}
.separador-2-fix{
width: 342px;
}
.separador-log-fix{
width: 88%;
margin-top: 8px;
margin-bottom: 8px;
box-shadow: 0px 0px 10px #00330096;
background-image: linear-gradient(to right, #0f0, #0000);
}
.box-fix-lbl{
cursor: pointer;
margin-top: -22px;
}
.b-icon{
width: 57px;
cursor: pointer;
margin-left: -552px;
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
.b-label{
display: flex;
margin-left: 75px;
margin-top: -8.7px;
}
.inventario{
width: 218px;
height: 406px;
margin-top: 4px;
overflow: hidden;
border-radius: 4px;
background-color: #000040;
}
.invent-principal{
width: 110px;
cursor: pointer;
position: fixed;
}
.invent-01{
top: 182px;
left: 1090px;
}
.invent-02{
top: 182px;
left: 1195px;
}
.invent-03{
top: 263px;
left: 1090px;
}
.invent-04{
top: 263px;
left: 1195px;
}
.invent-05{
top: 344px;
left: 1090px;
}
.invent-06{
top: 344px;
left: 1195px;
}
.invent-07{
top: 424px;
left: 1090px;;
}
.invent-08{
top: 424px;
left: 1195px;
}
.invent-09{
top: 504px;
left: 1090px;
}
.invent-10{
top: 504px;
left: 1195px;
}
.overflow-hidden{
overflow: hidden !important;
}
.b-quant-lbl{
z-index: 1;
width: 50px;
font-size: 20px;
cursor: pointer;
margin-top: -26px;
position: relative;
margin-left: -578px;
display: -webkit-box;
text-shadow: 0px 0px 4px #bfbfbf85;
}
.menu-re3-box{
top: 149px;
left: 660px;
width: 417px;
height: 456px;
position: fixed;
overflow: hidden;
padding-top: 10px;
border-radius: 4px;
background-image: linear-gradient(to bottom, #000018, #00004d);
}
.info-details{
top: 376px;
left: 664px;
color: #fff;
width: 390px;
padding: 6px;
height: 216px;
border: solid;
position: fixed;
border-color: #e7e7e7;
text-align: -webkit-left;
background-image: linear-gradient(to bottom, #0c0c52, #0e0e6f);
}
.title-inv{
font-style: italic;
font-family: sans-serif;
}
.invent-fix{
top: 147px;
left: 1078px;
width: 225px;
padding: 10px;
height: 446px;
overflow: auto;
margin-top: 2px;
position: fixed;
border-radius: 4px;
background-image: linear-gradient(to bottom, #000018, #04042b);
}
.bau-item{
z-index: 1;
color: #fff;
width: 100%;
height: 45px;
margin-top: 4px;
border-radius: 6px;
text-shadow: 0 0 10px #7676e5;
background-image: linear-gradient(to right, #000040, #0d0d57);
}
.item-box{
width: 624px;
padding: 10px;
height: 446px;
overflow: auto;
margin-top: 2px;
border-radius: 4px;
background-color: #00001f;
}
.item-counter-invent-1{
z-index: 1;
width: 40px;
cursor: pointer;
margin-top: 54px;
position: relative;
font-size: x-large;
margin-left: -172px;
display: -webkit-box;
}
.item-counter-invent-2{
z-index: 1;
width: 40px;
cursor: pointer;
margin-top: -27px;
margin-left: 40px;
position: relative;
font-size: x-large;
display: -webkit-box;
}
.textbox{
color: #0f0;
width: 214px;
padding: 2px;
border-style: solid;
border-color: #a7a7a7;
background-color: #000;
}
.slot-presente{
background-image: linear-gradient(to bottom, #00ce2c, #03a700);
}
.slot-ausente{
background-image: linear-gradient(to bottom, #bcbcbc, #aaa);
}
.slot-presente:active{
background-image: linear-gradient(to bottom, #03a700, #00ce2c);
}
.slot-ausente:active{
background-image: linear-gradient(to bottom, #aaa, #bcbcbc);
}
.slot-easy{
color: #00f;
}
.slot-save{
height: 20px;
width: 186px;
cursor: pointer;
margin-top: 4px;
padding-top: 4px;
margin-left: 0px;
margin-right: 2px;
padding-bottom: 2px;
text-align: -webkit-center;
display: -webkit-inline-box;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.save-grid{
width: 1300px;
position: absolute;
}
.save-number{
color: #000;
width: 25px;
cursor: pointer;
padding-top: 4px;
padding-bottom: 4px;
background-color: #fff;
text-align: -webkit-center;
display: -webkit-inline-box;
border-top-left-radius: 4px;
text-shadow: 0px 0px 0px #000;
border-bottom-left-radius: 4px;
}
.txt-status{
position: fixed;
margin-top: 14px;
margin-left: 30px;
font-size: x-large;
display: inline-block;
}
.txt-fine{
color: #0f0;
text-shadow: 0px 0px 10px #fff;
}
.txt-caution{
color: #fff900;
text-shadow: 0px 0px 10px #fff;
}
.txt-caution-red{
color: #ff9b00;
text-shadow: 0px 0px 10px #fff;
}
.txt-danger{
color: #ff7373;
text-shadow: 0px 0px 10px #ffb5b5;
}
.txt-poison{
color: #c29aff;
text-shadow: 0px 0px 10px #fff;
}
.status-menu{
height: 51px;
border-radius: 4px;
padding-left: 14px;
background-image: linear-gradient(to right, #000039, #101051);
}
.img-person-icon{
width: 4%;
}
.titulo{
font-style: italic;
font-size: xx-large;
text-shadow: 0 0 10px #131329;
}
.titulo-2{
font-style: italic;
font-size: x-large;
text-shadow: 0 0 10px #131329;
}
.none{
display: none;
}
.right{
float: right;
}
.aba{
zoom: 0.9;
color: #fff;
border: none;
outline: none;
cursor: pointer;
margin-top: 58px;
padding-top: 6px;
margin-right: 2px;
padding-left: 16px;
padding-bottom: 6px;
padding-right: 16px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
background-image: linear-gradient(to bottom, #272727, #121212);
}
.aba:focus{
outline: none;
}
.abaFix{
margin-top: 52px;
}
.aba-left-fix{
outline: none;
margin-left: 12px;
}
.aba-select{
zoom: 1;
cursor: auto;
outline: none;
text-shadow: 0px 0px 6px #000;
background-image: linear-gradient(to bottom, #696969, #444);
}
.aba-select-2{
zoom: 1;
cursor: auto;
outline: none;
text-shadow: 0px 0px 6px #000;
background-image: linear-gradient(to bottom, #9e9e9e, #626262);
}
.espaco-right{
margin-right: 6px;
}
.espaco-left{
margin-left: 6px;
}
.RDT-item-select{
width: 510px !important;
text-transform: none !important;
}
.RDT_editItem_selectFix{
left: 52px;
position: sticky;
}
.RDT_editItem_iconPrevew{
top: 65px;
left: 560px;
width: 38px;
border-radius: 2px;
position: absolute;
-webkit-user-drag: none;
box-shadow: 0px 0px 10px #00285087;
}
.no-transform-text{
text-transform: none !important;
}
.RDT-item-pos{
left: 90px;
position: sticky;
width: 30px !important;
}
.RDT-btn-apply{
border: 1px;
width: 250px;
padding: 16px;
outline: none;
cursor: pointer;
margin-left: 4px;
border-radius: 0px;
border-style: double;
box-shadow: 0px 0px 15px #3d3d3d;
text-shadow: 0px 0px 10px #939393;
background-image: linear-gradient(to bottom, #222, #000);
}
.margin-fix{
margin-top: 0px !important;
}
.RDT-btn-apply:active{
background-image: linear-gradient(to bottom, #000, #212121);
}
.RDT-btn-apply:hover{
box-shadow: 0 0 15px #777;
}
.color-green{
color: #0f0;
}
.color-white{
color: #fff;
}
.RDT-applyBtn-div{
top: 88%;
left: 704px;
width: 612px;
position: absolute;
z-index: 1 !important;
text-align: -webkit-right;
}
.RDT-applyBtn-div_2{
top: 88%;
width: 98%;
position: absolute;
text-align: -webkit-center;
}
.menu-alterar-item{
top: 40%;
width: 70%;
z-index: 1;
left: 13.4%;
padding-top: 4px;
position: absolute;
padding-left: 20px;
border-radius: 6px;
padding-right: 20px;
padding-bottom: 4px;
text-align: -webkit-center;
box-shadow: 0px 0px 20px #0c0c52;
background-image: linear-gradient(to bottom, #332892, #1e1850);
}
.item-select-mod{
color: #0f0;
width: 190px;
border: none;
padding-top: 6px;
margin-top: 10px;
padding-left: 4px;
padding-right: 4px;
border-radius: 4px;
padding-bottom: 6px;
background-color: #000;
text-transform: uppercase;
box-shadow: 0px 0px 10px #00285087;
text-shadow: 0px 0px 10px #ffffff2e;
background-image: linear-gradient(to bottom, #000, #041300);
}
.btn-box{
top: -20px;
left: 264px;
color: #0f0;
border: none;
cursor: pointer;
margin-left: 2px;
padding-top: 4px;
padding-left: 10px;
border-radius: 4px;
position: relative;
padding-bottom: 4px;
padding-right: 10px;
background-color: #000;
box-shadow: 0px 0px 10px #000031;
}
.btn-box-fix{
top: -25px;
}
.invent-mod-btn{
top: 42px;
left: 75px;
z-index: 99;
padding: 4px;
font-size: 10px;
position: absolute;
text-decoration: none;
}
.invent-mod-fix-2{
left: 186px;
}
.invent-mod-fix-3{
top: 120px;
}
.invent-mod-fix-4{
left: 186px;
top: 120px;
}
.invent-mod-fix-5{
top: 202px;
}
.invent-mod-fix-6{
left: 186px;
top: 202px;
}
.invent-mod-fix-7{
top: 282px;
}
.invent-mod-fix-8{
left: 186px;
top: 282px;
}
.invent-mod-fix-9{
top: 362px;
}
.invent-mod-fix-10{
left: 186px;
top: 362px;
}
.save-alterar-menu{
top: 14px;
left: 994px;
width: 320px;
padding: 10px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(to bottom, #555, #222);
}
.msg-raw{
top: 455px;
width: 554px;
height: 152px;
overflow: auto;
margin-top: 4px;
padding-top: 6px;
padding-left: 10px;
border-radius: 6px;
position: absolute;
padding-right: 10px;
padding-bottom: 6px;
background-image: linear-gradient(to bottom, #283a29, #13251e);
}
.msg-textPreview{
top: 455px;
left: 578px;
width: 356px;
height: 152px;
overflow: auto;
margin-top: 4px;
padding-top: 6px;
padding-left: 10px;
border-radius: 6px;
position: absolute;
padding-right: 10px;
padding-bottom: 6px;
background-image: linear-gradient(to bottom, #354165, #222a42);
}
.msg-events{
top: 44px;
width: 934px;
height: 396px;
margin-top: 4px;
padding-top: 6px;
overflow: hidden;
padding-left: 10px;
border-radius: 6px;
position: absolute;
padding-right: 10px;
padding-bottom: 6px;
background-image: linear-gradient(to bottom, #2b3e46, #212121);
}
.msg-traduzido{
height: 100px;
overflow: auto;
margin-top: 4px;
padding-top: 6px;
padding-left: 10px;
border-radius: 6px;
padding-right: 10px;
padding-bottom: 6px;
background-image: linear-gradient(to bottom, #595959, #323240);
}
.msg-addcomand-menu{
top: 48px;
left: 960px;
width: 362px;
height: 350px;
overflow: auto;
padding-top: 6px;
position: absolute;
padding-left: 10px;
border-radius: 6px;
padding-right: 10px;
padding-bottom: 6px;
background-image: linear-gradient(to bottom, #23215f, #00004a);
}
.msg-hex{
top: 414px;
left: 960px;
width: 364px;
height: 197px;
padding-top: 6px;
position: absolute;
padding-left: 10px;
border-radius: 6px;
padding-right: 10px;
padding-bottom: 6px;
background-image: linear-gradient(to bottom, #373f42, #1f1e29);
}
.msg-txt-edit{
margin: 0px;
color: #0f0;
width: 338px;
padding: 6px;
resize: none;
border: none;
height: 138px;
font-size: 16px;
border-radius: 6px;
box-shadow: 0px 0px 2px #000;
text-shadow: rgba(255, 255, 255, 0.18) 0px 0px 10px;
background-image: linear-gradient(to bottom, #151515, #0f0f0f);
}
.title-eventos{
margin: 0;
font-size: 30px;
font-family: Times;
font-weight: normal;
font-style: oblique;
text-align: -webkit-center;
text-shadow: 0px 0px 2px #00f;
}
.italic{
font-style: italic;
word-wrap: break-word;
}
.div-eventos{
height: 338px;
padding: 10px;
overflow: auto;
margin-top: 6px;
border-radius: 6px;
background-image: linear-gradient(to bottom, #110f15, #131219);
}
.evento{
margin-top: 1px;
min-height: 36px;
padding-top: 4px;
padding-left: 6px;
margin-bottom: 4px;
padding-bottom: 4px;
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
.evt-type-0{ /* Function: Mostrar Texto */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #747463, transparent);
}
.evt-type-1{ /* Function: Reproduzir SE */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #60698b, transparent);
}
.evt-type-2{ /* Function: Mostrar Camera */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #00757ae8, transparent);
}
.evt-type-3{ /* Function: Mostar Char Especial */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #82af9a, transparent);
}
.evt-type-4{ /* Function: Inicalizar / Finalizar Mensagem */
background-image: linear-gradient(to right, #aa1717, transparent);
}
.evt-type-5{ /* Function: Mostrar Nome de Item */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #804987, transparent);
}
.evt-type-8{ /* Function: Funcion desconhecida usada em R101.RDT */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #bd93a3d6, transparent);
}
.evt-type-9{ /* Function: Trocar Cor do Texto */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #00950b, transparent);
}
.evt-type-11{ /* Function: Selecionar Opção */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #a29d00, transparent);
}
.camPreview{
z-index: 0;
display: none;
height: 260px;
position: inherit;
padding-top: 10px;
box-shadow: 0px 0px 10px #41419c;
}
.botao-add-comando{
width: 99%;
border: none;
outline: none;
cursor: pointer;
margin-top: 2px;
padding-top: 4px;
margin-bottom: 2px;
border-radius: 4px;
padding-bottom: 4px;
font-style: oblique;
text-shadow: 0px 0px 10px #fff;
background-image: linear-gradient(to bottom, #fff, #c4c4c4);
}
.botao-add-comando:active{
box-shadow: 0 0 4px #222;
text-shadow: 0px 0px 10px #fff;
background-image: linear-gradient(to bottom, #c1c1c1, #fff);
}
.btn-remover-comando{
color: #0e0;
float: right;
border: none;
width: 100px;
outline: none;
cursor: pointer;
margin-top: 5px;
padding-top: 5px;
margin-right: 8px;
border-radius: 6px;
padding-bottom: 7px;
box-shadow: 0px 0px 8px #383838;
background-image: linear-gradient(to bottom, #222, #000);
}
.btn-remover-comando:active{
color: #0f0;
box-shadow: 0px 0px 12px #444;
text-shadow: 0px 0px 10px #0f0;
background-image: linear-gradient(to bottom, #000, #222);
}
.btn-editMSGfix{
z-index: 4;
width: 80px;
}
.msg-render{
margin-bottom: 10px;
}
.msg-command-text-fix{
left: 82px;
width: 550px;
position: sticky;
margin-top: -18px;
text-align: -webkit-left;
}
.dialog-addcomando{
top: 208px;
width: 906px;
height: auto;
display: none;
padding-top: 4px;
position: absolute;
padding-left: 20px;
border-radius: 6px;
padding-right: 20px;
padding-bottom: 4px;
text-align: -webkit-center;
box-shadow: 0px 0px 20px #07072f;
background-image: linear-gradient(to bottom, #473cab, #251d65);
}
.RDT-holder{
width: 1312px;
height: 476px;
overflow: auto;
margin-top: 4px;
padding-left: 6px;
padding-right: 6px;
border-radius: 14px;
}
.RDT-Item{
color: #fff;
padding: 6px;
border-radius: 6px;
margin-bottom: 6px;
}
.RDT_door_leadBD{
z-index: 0;
width: 170px;
height: 128px;
margin-top: 0px;
margin-left: 0px;
border-radius: 6px;
margin-bottom: 10px;
background-color: #0000;
background-size: contain;
background-position: right;
background-repeat: no-repeat;
-webkit-mask-image: linear-gradient(to left, #ffffff, #000000);
}
.RDT_door_itemInfos{
z-index: 1;
width: 1114px;
margin-top: -136px;
margin-left: 176px;
position: relative;
}
.RDT_doorPosHolder{
margin-top: 14px;
}
.RDT_coordsHolder_A{
width: 172px;
margin-top: 8px;
}
.RDT_coordsHolder_B{
width: 172px;
margin-top: -5px;
}
.RDT_coordsHolder_C{
top: 12px;
left: 180px;
width: 230px;
position: absolute;
}
.RDT_coordsHolder_D{
width: 300px;
margin-top: -5px;
}
.RDT_coordsHolder_E{
margin-top: -5px;
}
.RDT_coordsHolder_F{
z-index: 2;
top: 132px;
left: 310px;
width: 180px;
position: absolute;
}
.RDT-3DProp-bg{
background-image: linear-gradient(to bottom, #017792, #14325c);
}
.RDT-item-bg{
background-image: linear-gradient(to bottom, #5755bd, #3a397d);
}
.RDT-file-bg{
background-image: linear-gradient(to bottom, #796293, #433850);
}
.RDT-map-bg{
background-image: linear-gradient(to bottom, #4e8b72, #275046);
}
.RDT-msg-bg{
background-image: linear-gradient(to bottom, #7f8470, #2e322a);
}
.RDT-itemDANGER-bg{
background-image: linear-gradient(to bottom, #ff0000, #9c0000);
}
.RDT-door-bg{
background-image: linear-gradient(to bottom, #507499, #273c50);
}
.RDT-MSGCODE-bg{
background-image: linear-gradient(to bottom, #17504d, #0a2829);
}
.RDT-audio-bg{
background-image: linear-gradient(to bottom, #354354, #111b33);
}
.RDT-enemy-bg{
background-image: linear-gradient(to bottom, #516b61, #0f432f);
}
.RDT-camera-bg{
background-image: linear-gradient(to bottom, #5a6282, #323544);
}
.RDT-SLD-BLOCK-bg{
background-image: linear-gradient(to bottom, #4b7571, #2c4245);
}
.txtarea-hex-fix{
width: 352px;
height: 128px;
outline: none;
margin-top: 8px;
}
.RDT-item-editOtherFix{
top: 266px;
left: 132px;
position: absolute;
}
.RDT_itemEditOtherLeftFix{
position: sticky;
left: 218px !important;
}
.RDT_itemEdit_IF_fix{
width: 20px;
left: 218px;
position: sticky;
}
.monospace{
font-family: monospace;
}
.user-can-select{
user-select: all;
}
.RDT-item-lbl-fix{
left: 258px;
position: sticky;
}
.RDT-item-lbl-fix-2{
left: 212px;
position: sticky;
}
.RDT-item-lbl-fix-3{
left: 430px;
position: sticky;
}
.RDT-item-lbl-fix-4{
left: 618px;
position: sticky;
}
.RDT-item-lbl-fix-5{
left: 766px;
position: sticky;
}
.RDT-item-lbl-fix-6{
left: 262px;
position: sticky;
}
.RDT-item-lbl-fix-7{
left: 108px;
width: 36px;
position: sticky;
}
.RDT-item-lbl-fix-8{
left: 334px;
position: sticky;
}
.RDT-item-lbl-fix-9{
left: 94px;
width: 34px;
position: sticky;
}
.RDT-item-lbl-fix-10{
left: 280px;
width: 20px;
position: sticky;
}
.RDT-item-lbl-fix-11{
left: 446px;
width: 20px;
margin-top: 4px;
position: sticky;
}
/*
Enemies / NPC lbl fix
*/
.RDT-lbl_enNPC-fix-1{
left: 85px;
position: sticky;
}
.RDT_HOLDER_enNPC-1{
width: 30%;
left: 126px;
height: 70px;
position: sticky;
margin-top: -73px;
padding-left: 10px;
}
.RDT-lbl_enNPC-fix-2{
left: 212px;
position: sticky;
}
.RDT_HOLDER_enNPC-2{
width: 30%;
left: 296px;
height: 70px;
position: sticky;
margin-top: -73px;
padding-left: 10px;
}
.RDT-lbl_enNPC-fix-3{
left: 85px;
position: sticky;
}
.RDT_HOLDER_enNPC-3{
width: 30%;
left: 266px;
height: 70px;
position: sticky;
margin-top: -70px;
padding-left: 10px;
margin-bottom: 6px;
}
/*
Item, files e maps
*/
.RDT-lbl_iFM-fix-1{
left: 84px;
position: sticky;
}
.RDT_HOLDER_iFM-1{
width: 30%;
left: 122px;
height: 70px;
position: sticky;
margin-top: -73px;
padding-left: 10px;
}
/*
Message Code
*/
.RDT-lbl_messageCode-fix-1{
left: 88px;
position: sticky;
}
.RDT_HOLDER_messageCode-2{
width: 30%;
left: 126px;
height: 70px;
position: sticky;
margin-top: -73px;
padding-left: 10px;
}
/*
*/
.RDT_doorEditHolderFix{
position: static;
margin-top: -16px;
}
.RDT_editSelectEnemyNPC-fix{
left: 94px;
margin-top: 6px;
margin-left: 5px;
position: sticky;
width: 380px !important;
}
.RDT_door_selectLockKeyFix{
width: 416px;
}
.RDT_door_textEditFix_0{
width: 36px;
}
.RDT_door_textEditFix_1{
width: 36px;
left: 1066px;
position: sticky;
}
.RDT_door_textEditFix_2{
width: 20px;
left: 1258px;
position: sticky;
}
.RDT_door_textEditFix_3{
width: 20px;
}
.RDT_door_textEditFix_4{
left: 882px;
width: 416px;
position: sticky;
}
.RDT_door_textEditFix_5{
width: 18px;
left: 1056px;
position: sticky;
}
.RDT_doorEdit_zIndexFix{
margin-top: -4px !important;
}
.RDT_doorKeyCopyDivFix{
margin-top: 4px;
}
.menu-utility-fix{
top: 526px;
}
.aba-utility-fix-2{
top: -20px;
display: none;
position: absolute;
cursor: unset !important;
background-image: linear-gradient(to bottom, #737373, #545454);
animation-timing-function: cubic-bezier(0.72, 0.01, 0.26, 0.99);
}
.menu-utility-patcher-main{
top: 70px;
width: 200px;
display: none;
}
.menu-utility-patcher-tab{
top: 40px;
display: none;
position: absolute;
background-image: linear-gradient(to bottom, #737373, #545454);
}
.menu-utility-exeEdit-main{
top: 102px;
left: 230px;
width: 402px; /* 402px */
display: none;
}
.menu-utility-exeEdit-tab{
top: 36px;
left: 230px;
cursor: auto;
display: none;
position: absolute;
background-image: linear-gradient(to bottom, #737373, #545454);
}
.aba-settings-fix{
left: 983px;
width: 350px;
}
.aba-principal-fix{
width: 546px;
}
.aba-settings-fix-2{
top: -44px;
left: 982px;
}
.aba-utility-fix{
top: 484px;
display: none;
position: absolute;
cursor: unset !important;
background-image: linear-gradient(to bottom, #737373, #545454);
animation-timing-function: cubic-bezier(0.72, 0.01, 0.26, 0.99);
}
.RDT_ITEM_MISC_FIX{
left: 250px !important;
margin-top: -70px !important;
}
.RDT_editEnemyNPC-misc{
z-index: 0;
top: 132px;
left: 140px;
width: 300px;
position: absolute;
}
.RDT_doorNextPosFix{
position: absolute;
left: 130px;
top: 45px;
}
.RDT_doorOtherFix{
top: 45px;
left: 312px;
position: absolute;
}
.RDT_doorUnkValFix{
width: 20px !important;
margin-top: 0px !important;
}
.RDT_modifyBtnFix{
margin-top: 0px;
margin-right: 0px;
}
.RDT_fixForSeparador{
margin-top: 0px !important;
}
.RE3_live_edit_xyzr_fix{
left: 560px;
width: 40px;
margin-top: 4px;
position: sticky;
margin-right: 6px;
}
.RDT_btn_fix1{
top: 174px;
left: 160px;
padding: 16px;
position: absolute;
}
.RDT_msg_block_health{
text-align: -webkit-center;
font-size: -webkit-xxx-large;
}
.RDT-message-content{
width: 78%;
min-height: 18px;
margin-top: -18px;
margin-left: 96px;
text-align: -webkit-left;
}
.RDT_msgLblErrorAtualLen{
left: 109px;
position: sticky;
}
.logo-fundo{
top: 32%;
left: 42%;
z-index: -1;
opacity: 0.4;
filter: blur(2px);
position: absolute;
}
.FRAME_BG{
top: 0px;
left: 0px;
width: 100%;
z-index: -1;
height: 100%;
opacity: 0.4;
display: none;
position: absolute;
}
.RDT_MSGCODE-eDisplay{
margin-top: 6px;
width: 318px !important;
}
.RDT_EDIT_ITEM_APPLY_FIX{
left: 674px !important;
}
.RDT_EDIT_ITEM_HOLDER{
width: 100%;
height: 98%;
position: absolute;
z-index: 1 !important;
}
.RDT_EDIT_ITEM_BG{
top: 0px;
left: 0px;
z-index: 0;
width: 100%;
height: 100%;
position: absolute;
background-color: #000;
background-size: auto 880px;
background-position: center;
background-repeat: no-repeat;
-webkit-mask-image: linear-gradient(to left, #0000007d, #0000);
}
.RDT-Item-Misc{
width: 30%;
left: 296px;
height: 70px;
position: sticky;
margin-top: -73px;
padding-left: 10px;
}
.RDT-Item-Misc-2{
width: 30%;
left: 468px;
height: 70px;
position: sticky;
margin-top: -70px;
padding-left: 10px;
}
.RDT-Item-Misc-3{
left: 634px;
width: 146px;
height: 70px;
position: sticky;
margin-top: -70px;
padding-left: 10px;
}
.RDT-Item-Misc-4{
width: 30%;
left: 250px;
height: 70px;
position: sticky;
margin-top: -70px;
padding-left: 10px;
}
.RDT-Item-Edit{
top: 53px;
padding: 6px;
width: 1312px;
height: 468px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(to bottom, #5c6499, #192432);
}
.RDT_door_select_width_fix{
width: 230px !important;
}
.RDT_item_convert_width_fix{
width: 60px;
}
.RDT_item_convert_btn_margin_fix{
margin-left: 8px;
}
.RE3_LIVESTATUS_OPENONR3D_margin_fix{
margin-top: 2px;
}
.new_update{
top: 6px;
left: 8px;
color: #fff;
width: 1326px;
height: 616px;
position: absolute;
border-radius: 6px;
background-image: linear-gradient(to bottom, #4d4d4d, #151b26);
}
.update_details{
width: 98%;
color: #fff;
height: 486px;
overflow: auto;
margin-top: 4px;
padding-top: 4px;
padding-left: 4px;
padding-right: 4px;
border-radius: 6px;
margin-bottom: 10px;
text-align: -webkit-left;
background-image: linear-gradient(to bottom, #0e0e0e, #29273300);
}
.li_div{
overflow: auto;
}
.center{
float: center;
}
.txt-center{
text-align: center;
}
.code{
padding: 4px;
color: #bfffc1;
user-select: all;
border-radius: 4px;
font-family: monospace;
background-color: #010101;
box-shadow: 0px 0px 10px #bfffc12b;
}
.update_subtitle{
font-size: x-large;
font-style: italic;
}
.mod_menu{
top: 80%;
}
.update_progress_window{
top: 558px;
height: 44px;
width: 1306px;
padding: 10px;
position: absolute;
border-radius: 6px;
text-align: -webkit-left;
background-image: linear-gradient(to bottom, #4f4566, #1a1624);
}
.progressBar{
width: 0.1%;
height: 6px;
margin-top: 4px;
border-radius: 6px;
margin-bottom: 8px;
background-color: #0f0;
box-shadow: 0px 0px 10px #26562e;
}
.WZ_info{
padding: 4px;
}
.btn-apply-fix{
margin-top: -4px;
}
.btn-goBack-fix{
top: 10px;
left: 616px;
position: absolute;
box-shadow: 0px 0px 6px #2b2b2b;
}
.btn-openImport-fix{
top: 10px;
left: 8px;
z-index: 1;
position: absolute;
box-shadow: 0px 0px 6px #2b2b2b;
}
.btn-closeImport-fix{
top: 10px;
z-index: 1;
left: 588px;
position: absolute;
box-shadow: 0px 0px 6px #2b2b2b;
}
.wizard{
top: 28%;
left: 28%;
width: 640px;
height: auto;
padding: 10px;
position: absolute;
margin-left: -50px;
border-radius: 6px;
background-color: #4c4c4c;
}
.RDT_BG_IMAGE{
top: 16px;
left: 10px;
opacity: 1;
z-index: -1;
width: 1324px;
height: 516px;
filter: blur(2px);
border-radius: 6px;
position: absolute;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.fileList{
top: 54px;
z-index: 2;
width: 670px;
padding: 6px;
height: 514px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(to bottom, #3f3f3f, #515151);
}
.RDT_IMPORT_CSS{
box-shadow: 0 0 10px #000 !important;
background-image: linear-gradient(to bottom, #060a0e, #080c12) !important;
}
.fileList_importRDT{
top: 54px;
left: 690px;
z-index: 10;
width: 634px;
height: 338px;
padding: 10px;
position: absolute;
border-radius: 6px;
box-shadow: 0 0 10px #222;
background-image: linear-gradient(170deg, #414141, #292929);
}
.fileList_checkBox{
cursor: pointer;
margin-top: 0px;
margin-left: 4px;
position: inherit;
}
.fileList_checkBox_dom{
top: 2px;
display: inline;
margin-right: -4px;
position: relative;
}
.fileList_IMPORT_DIV{
color: #fff;
width: 634px;
height: 274px;
margin-top: 8px;
border-radius: 6px;
background-color: #000;
box-shadow: 0 0 10px #212121;
background-image: linear-gradient(to bottom, #131d26, #1a2637);
}
.fileList_import_lbl{
left: 0px;
z-index: 1;
top: 194px;
width: 100%;
color: #fff;
opacity: 0.7;
font-size: 30px;
position: absolute;
text-align: center;
text-shadow: 0 0 10px #5555c5;
}
.fileList_import_bg{
top: 75px;
z-index: 0;
width: 634px;
height: 274px;
filter: blur(4px);
border-radius: 4px;
position: absolute;
background-color: #000;
background-size: auto 490px;
background-position: center;
background-repeat: no-repeat;
background-image: url(../img/JILL-ICON.png);
-webkit-mask-image: linear-gradient(to left, #ffffff3d, #0000002e);
}
.fileList_files{
top: 70px;
width: 658px;
padding: 6px;
height: auto;
overflow: auto;
position: absolute;
border-radius: 4px;
background-image: linear-gradient(to bottom, #626262, #0c0827);
}
.filelist_loadingFilesDiv{
top: 260px;
left: 240px;
z-index: 20;
color: #fff;
padding: 10px;
position: absolute;
border-radius: 6px;
box-shadow: 0 0 10px #222;
background-image: linear-gradient(to bottom, #494949, #626262);
}
.fileList_img{
width: 134px;
border-radius: 4px;
}
.fileList_item{
padding: 4px;
height: 100px;
margin-top: 2px;
cursor: pointer;
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
.fileList_serachBox{
top: 34px;
left: 406px;
padding: 4px;
width: 262px;
outline: none;
position: absolute;
text-transform: none;
background-color: #0000;
box-shadow: 0px 0px 0px #000;
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
background-image: linear-gradient(to right, #000, #0000);
}
.fileList_details{
margin-top: -104px;
margin-left: 138px;
}
.fileList_item_color_a{
background-image: linear-gradient(to right, #7a7a92, transparent);
}
.fileList_item_color_b{
background-image: linear-gradient(to right, #353592, transparent);
}
.fileList_item_color_c{
background-image: linear-gradient(to right, #2a2a6f, transparent);
}
.fileList_removeListBtn{
top: 10px;
left: 536px;
position: absolute;
box-shadow: 0px 0px 6px #222;
}
.blockInfo_fix{
left: 993px;
height: 449px;
box-shadow: 0px 0px 10px #a2a2a247;
}
.msg_holder_fix{
width: 964px;
}
/*
Item Map
*/
.divCanvas{
left: 62px;
border: 2px;
width: 430px;
height: 430px;
margin-left: 2px;
overflow: hidden;
border-radius: 2px;
border-color: #fff;
position: absolute;
border-style: solid;
background-color: #000;
background-position: center;
background-image: url('../Img/Grade.png');
}
.render-item{
top: 0px;
left: 0px;
z-index: 4;
color: #fff;
width: 18px;
height: 18px;
position: absolute;
text-align: -webkit-center;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.render-item-select{
box-shadow: 0px 0px 16px #fff;
}
.render-item-color-1{ /* Item */
text-shadow: 0px 0px 2px #124800;
background-image: linear-gradient(to bottom, #1aac00, #2c7300);
}
.render-item-color-2{ /* File */
text-shadow: 0px 0px 2px #aa98df;
background-image: linear-gradient(to bottom, #776191, #2a3e53);
}
.render-item-color-3{ /* Map */
text-shadow: 0px 0px 2px #00ff99;
background-image: linear-gradient(to bottom, #4d8a71, #275046);
}
.infoXY0{
top: 14px;
left: 10px;
position: absolute;
}
.infoXY1{
top: 450px;
left: 500px;
position: absolute;
}
.infoXY2{
top: 14px;
left: 500px;
position: absolute;
}
.infoXY3{
left: 8px;
top: 450px;
position: absolute;
}
.canvasInfos{
top: 46px;
left: 560px;
padding: 6px;
width: 470px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(to bottom, #555, #333);
}
.box-fix{
left: 60px;
width: 40px;
position: sticky;
}
.secondfieldSticky{
left: 756px;
position: sticky;
}
.canvasInfoOverflow{
height: 324px;
overflow: auto;
padding-right: 10px;
}
.MSG_editCameraSelectFix{
z-index: 3;
position: relative;
}
/*
FileGen
*/
.CURSOR_POINTER{
cursor: pointer;
}
.FILEGEN_saveImageBtn{
left: 816px !important;
}
.FG_selectColor_space_0{
position: sticky;
left: 130px;
}
.FG_selectColor_space_1{
position: sticky;
left: 146px;
}
.FG_CANVAS{
zoom: 2;
left: 406px;
width: 256px;
height: 176px;
overflow: hidden;
position: absolute;
background-color: #000;
box-shadow: 0px 0px 10px #33ff0050;
}
.FG_TEXT{
top: 74px;
z-index: 9;
color: #0f0;
border: 2px;
resize: none;
width: 772px;
height: 182px;
font-size: medium;
position: absolute;
border-color: #fff;
border-style: solid;
background-color: #141414;
}
.FG_BTN{
top: 424px;
left: 152px;
width: 492px;
position: absolute;
}
.FG_FILE_Options{
z-index: 1;
top: 290px;
color: #fff;
width: 760px;
height: 94px;
padding: 10px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(to bottom, #545454, #333);
}
.FG_ruler{
top: 50px;
width: 5px;
left: 257px;
z-index: 10;
height: 215px;
display: none;
border-radius: 6px;
position: absolute;
background-color: #64ff69;
}
/*
RDT Door Edit Prev
*/
.RDT_doorEdit_holderZFix{
width: 100%;
height: 100%;
position: absolute;
z-index: 1 !important;
}
.RDT_doorEditCamBg{
top: 0px;
z-index: 0;
height: 100%;
position: absolute;
border-radius: 4px;
background-size: cover;
background-color: #000;
width: calc(100% - 6px);
background-position: center;
background-repeat: no-repeat;
-webkit-mask-image: linear-gradient(to left, #0000007d, #0000);
}
.imgPreviewCamSpawn{
width: 220px;
margin-top: 6px;
border-radius: 4px;
box-shadow: 0px 0px 10px #858dbfa3;
}
.RDT_cam_holderInfos{
width: 63.2%;
position: sticky;
margin-left: 226px;
}
.RDT_editCam_direction{
top: -3px;
width: 30%;
left: 134px;
height: 70px;
position: relative;
margin-top: -106px;
}
.RDT_camImgItem{
width: 218px;
border-radius: 6px;
box-shadow: 0px 0px 4px #222;
}
.RDT_camShowMisc{
top: -1px;
width: 34%;
left: 292px;
position: relative;
}
.RDT_camFutureFix{
left: 600px;
position: sticky;
}
.RDT_camEditXYZOrigin{
left: 258px;
width: 38px;
position: sticky;
}
.RDT_camEditXYZDirection{
left: 400px;
width: 38px;
position: sticky;
}
.RDT_camEditXYZDirectionDiv{
top: 0px;
left: 110px;
position: absolute;
}
.RDT_camEditOtherInfo_holder{
top: 4px;
left: 250px;
position: absolute;
}
.RDT_camEdit_holder{
left: 200px;
width: 1092px;
position: absolute;
}
.RDT_cameraHolderFix{
z-index: 2;
display: flex;
overflow: hidden;
}
.RDT_cameraHolderFix_2{
z-index: 1;
}
.RDT_editCamera_iconPreviewDiv{
top: 66px;
width: 186px;
height: 360px;
position: absolute;
border-radius: 4px;
box-shadow: 0 0 10px #00002030;
background-image: linear-gradient(to bottom, #000b25, #212b3e00);
}
.RDT_editCamera_iconPreview{
width: 186px;
border-radius: 4px;
}
.RDT_cam_dirHolder{
top: 28px;
left: 100px;
width: 144px;
position: absolute;
}
.RDT_cam_otherValues{
top: 64px;
left: 240px;
width: 140px;
position: absolute;
}
.RDT_cam_lbl_fix_0{
left: 283px;
position: sticky;
}
.RDT_cam_lbl_fix_1{
left: 418px;
position: sticky;
}
.RDT_cam_lbl_fix_2{
left: 558px;
position: sticky;
}
.RDT_cam_imgFix{
margin-bottom: -168px !important;
}
.RDT_door_editCamSelectFix{
width: 98px;
}
/*
Filelist
*/
.fileList_aba_holder{
position: absolute;
top: -6px;
}
/*
RE3 LIVE STATUS
*/
.RE3_LIVESTATUS{
top: 48px;
z-index: 10;
padding: 6px;
width: 1334px;
height: 564px;
border-radius: 6px;
position: absolute;
box-shadow: 0px 0px 10px #222;
background-image: linear-gradient(to bottom, #424242, #333);
}
.RE3_LIVESTATUS_currentPlayerImgDiv{
z-index: 0;
position: absolute;
}
.RE3_LIVESTATUS_statusDiv{
z-index: 2;
position: absolute;
}
.RE3_LIVESTATUS_PERSON_IMG{
left: 138px;
width: 162px;
opacity: 0.4;
display: none;
filter: blur(2px);
position: absolute;
clip-path: inset(0px 60px 0px 0px);
}
.RE3_LIVESTATUS_CLOSEBTN{
top: 14px;
left: 1276px;
position: absolute;
}
.RE3_LIVESTATUS_MENU{
padding: 6px;
height: 484px;
border-radius: 6px;
background-image: linear-gradient(to bottom, #636363, #181818);
}
.RE3_LIVESTATUS_ABACONTENT{
padding: 6px;
height: 472px;
border-radius: 6px;
background-image: linear-gradient(170deg, #222, #03001ee3);
}
.RE3_LIVESTATUS_abaFix{
margin-top: 4px !important;
}
.RE3_LIVESTATUS_MINIWINDOW{
padding: 6px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(to bottom, #454545, #333);
}
.RE3_LIVESTATUS_inernalTab{
color: #fff;
border: none;
outline: none;
padding-top: 4px;
position: absolute;
padding-left: 14px;
padding-right: 14px;
padding-bottom: 4px;
cursor: unset !important;
background-color: #454545;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
text-shadow: 0px 0px 10px #010101;
}
.RE3_LIVESTATUS_CAM_IMG{
width: 266px;
margin-top: 8px;
border-radius: 6px;
box-shadow: 0px 0px 10px #222222a6;
}
.RE3_LIVESTATUS_CANVAS_CSS{
width: 438px;
height: 438px;
border-width: 2px;
border-radius: 4px;
border-style: solid;
background-image: linear-gradient(to bottom, #111, #000);
}
.RE3_LIVECANVAS_PLAYER_ARROW{
top: 50%;
left: 50%;
z-index: 1;
width: 16px;
height: 16px;
position: absolute;
background-image: url('../Img/arrow.png');
}
.RE3_LIVECANVAS_BOUNDARY_TEST{
height: 0px;
border: 1px solid;
position: absolute;
border-color: #bebeff;
background-color: #00f;
}
.RE3_LIVESTATUS_closeGameBtnFix{
margin-left: 38px;
}
.RE3_LIVESTATUS_INVENT_BG{
color: #fff;
height: 326px;
border-radius: 6px;
background-color: #000041;
}
.RE3_LIVESTATUS_INPUTNUM{
width: 44px;
}
.RE3_LIVESTATUS_SELECT{
width: 274px;
}
.RE3_LIVESTATUS_copyLoc{
position: absolute;
left: 218px;
top: 64px;
}
.RE3_LIVESTATUS_APPLYBTNFIX{
float: right;
margin-top: 12px;
padding-left: 26px;
padding-right: 26px;
}
.RE3_LIVESTATUS_lbl_window-1-fix{
left: 150px;
position: sticky;
}
.RE3_LIVESTATUS_lbl_window-2-fix{
left: 146px;
position: sticky;
}
.RE3_LIVESTATUS_lbl_window-3-fix{
left: 158px;
position: sticky;
}
/* Original location */
.RE3_LIVESTATUS_lbl_window-4-fix{
left: 444px;
position: sticky;
}
/* XYZR */
.RE3_LIVESTATUS_lbl_window-5-fix{
left: 368px;
position: sticky;
}
/* HP & IGT */
.RE3_LIVESTATUS_lbl_window-6-fix{
left: 64px;
position: sticky;
}
/* XYZR in decimal */
.RE3_LIVESTATUS_lbl_window-7-fix{
left: 616px;
position: sticky;
}
.RE3_LIVESTATUS_WINDOW-1{
top: 106px;
width: 240px;
height: 104px;
}
.RE3_LIVESTATUS_WINDOW-2{
top: 248px;
width: 240px;
height: 160px;
}
.RE3_LIVESTATUS_WINDOW-3{
top: 106px;
left: 476px;
width: 374px;
height: 442px;
}
.RE3_LIVESTATUS_WINDOW-4{
top: 106px;
left: 874px;
width: 442px;
height: 442px;
}
.RE3_LIVESTATUS_WINDOW-5{
top: 106px;
left: 276px;
width: 174px;
height: 326px;
overflow: hidden;
}
.RE3_LIVESTATUS_WINDOW-6{
top: 468px;
left: 18px;
width: 434px;
height: 80px;
}
.RE3_LIVESTATUS_tabPos-1{
top: 86px;
left: 28px;
}
.RE3_LIVESTATUS_tabPos-2{
left: 28px;
top: 228px;
}
.RE3_LIVESTATUS_tabPos-3{
top: 86px;
left: 487px;
}
.RE3_LIVESTATUS_tabPos-4{
top: 86px;
left: 884px;
}
.RE3_LIVESTATUS_tabPos-5{
top: 86px;
left: 286px;
}
.RE3_LIVESTATUS_tabPos-6{
left: 28px;
top: 446px;
}
.RE3_LIVESTATUS_X_color{
color: #ffe6e6;
text-shadow: 0px 0px 10px #4d0000;
}
.RE3_LIVESTATUS_Y_color{
color: #cdffc2;
text-shadow: 0px 0px 10px #cef6bd94;
}
.RE3_LIVESTATUS_Z_color{
color: #e0e1ff;
text-shadow: 0px 0px 10px #a5a5ff;
}
.RE3_LIVESTATUS_R_color{
color: #e9b0ef;
text-shadow: 0px 0px 10px #b74fc3c7;
}
.RE3_LIVESTATUS_INVENT_ICON_BASE{
zoom: 2;
cursor: pointer;
position: fixed;
margin-top: -2px;
}
.RE3_LIVESTATUS_INVENT_SLOT_1{
top: 80px;
margin-top: 0px !important;
border-top-left-radius: 6px;
}
.RE3_LIVESTATUS_INVENT_SLOT_2{
top: 80px;
left: 184px;
margin-top: 0px !important;
border-top-right-radius: 6px;
}
.RE3_LIVESTATUS_INVENT_SLOT_3{
top: 112px;
margin-top: 0px !important;
}
.RE3_LIVESTATUS_INVENT_SLOT_4{
top: 112px;
left: 184px;
margin-top: 0px !important;
}
.RE3_LIVESTATUS_INVENT_SLOT_5{
top: 144px;
margin-top: 0px !important;
}
.RE3_LIVESTATUS_INVENT_SLOT_6{
top: 144px;
left: 184px;
margin-top: 0px !important;
}
.RE3_LIVESTATUS_INVENT_SLOT_7{
top: 176px;
margin-top: 0px !important;
}
.RE3_LIVESTATUS_INVENT_SLOT_8{
top: 176px;
left: 184px;
margin-top: 0px !important;
}
.RE3_LIVESTATUS_INVENT_SLOT_9{
top: 208px;
margin-top: 0px !important;
border-bottom-left-radius: 6px;
}
.RE3_LIVESTATUS_INVENT_SLOT_10{
top: 208px;
left: 184px;
margin-top: 0px !important;
border-bottom-right-radius: 6px;
}
.RE3_LIVESTATUS_LBL_ITEM{
z-index: 1;
font-size: 24px;
cursor: pointer;
position: absolute;
display: -webkit-box;
}
.RE3_LIVESTATUS_LBL_ITEM_A{
left: 8px;
width: 40px;
}
.RE3_LIVESTATUS_LBL_ITEM_B{
left: 94px;
width: 40px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-1{
top: 44px;
left: 14px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-2{
top: 44px;
left: 102px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-3{
top: 108px;
left: 14px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-4{
top: 108px;
left: 102px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-5{
top: 174px;
left: 14px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-6{
top: 174px;
left: 102px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-7{
top: 240px;
left: 14px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-8{
top: 240px;
left: 102px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-9{
top: 304px;
left: 14px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-10{
top: 304px;
left: 102px;
}
/*
INI Editor
*/
.INI_general_adjust{
left: 146px;
position: sticky;
}
.INI_MINIWINDOW{
padding: 6px;
overflow: hidden;
position: absolute;
border-radius: 6px;
background-image: linear-gradient(to bottom, #454545, #333);
}
.INI_inernalTab{
color: #fff;
border: none;
outline: none;
padding-top: 4px;
position: absolute;
padding-left: 14px;
padding-right: 14px;
padding-bottom: 4px;
cursor: unset !important;
background-color: #454545;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
text-shadow: 0px 0px 10px #010101;
}
.INI_insertVal{
width: 68px !important;
}
.INI_rangeAudio{
margin-left: 10px;
width: 190px !important;
}
.INI_rangeAudio_fix{
margin-left: 26px;
}
.INI_fixAudioNumberInput{
left: 104px;
position: sticky;
}
.INI_selectBPP{
width: 78px !important;
}
.INI_videoOptionsFix{
top: 6px;
left: 166px;
position: absolute;
}
.INI_pathTextFix{
width: 338px;
margin-top: 8px;
}
.INI_fixMenuSeparador{
margin-top: 14px;
}
.INI_adjustPos1{
left: 540px;
width: 740px;
position: sticky;
}
.INI_adjustPos2{
left: 942px;
position: sticky;
}
.INI_pathRofsFix{
top: 150px;
left: 406px;
position: absolute;
}
.INI_fixInputKB{
left: 450px;
width: 206px;
margin-top: 6px;
position: sticky;
}
.INI_direct_fixInputKB{
left: 276px;
width: 366px;
margin-top: 6px;
position: sticky;
}
.INI_fixInputKB_2{
left: 900px;
margin-top: 6px;
position: sticky;
}
.INI_direct_fixInputKB_2{
left: 724px;
width: 366px;
margin-top: 6px;
position: sticky;
}
.title_mini{
font-size: x-large;
text-shadow: 0px 0px 10px #818181;
}
.INI_clearBtnFix{
top: 8px;
left: 322px;
position: absolute;
}
.INI_dataVars{
left: 830px;
width: 200px;
margin-top: 6px;
position: sticky;
}
.INI_displayDivFix{
margin-left: 4px;
}
.INI_displaySelectFix{
width: 110px;
padding: 2px;
margin-top: 0px;
}
.INI_tabPos-1{
left: 28px;
top: 46px;
}
.INI_tabPos-2{
left: 28px;
top: 168px;
}
.INI_tabPos-3{
left: 28px;
top: 298px;
}
.INI_tabPos-4{
left: 28px;
top: 428px;
}
.INI_tabPos-5{
top: 72px;
left: 494px;
}
.INI_tabPos-6{
top: 56px;
left: 228px;
}
.INI_tabPos-7{
top: 224px;
left: 682px;
}
.INI_tabPos-8{
top: 56px;
left: 682px;
}
.INI_WINDOW-1{
top: 68px;
left: 18px;
height: 80px;
width: 442px;
}
.INI_WINDOW-2{
left: 18px;
top: 190px;
height: 88px;
width: 442px;
}
.INI_WINDOW-3{
left: 18px;
top: 320px;
height: 88px;
width: 442px;
}
.INI_WINDOW-4{
left: 18px;
top: 450px;
height: 60px;
width: 442px;
}
.INI_WINDOW-5{
top: 94px;
left: 482px;
width: 812px;
height: 410px;
}
.INI_WINDOW-6{
top: 78px;
left: 216px;
width: 432px;
height: 436px;
}
.INI_WINDOW-7{
top: 246px;
left: 670px;
width: 354px;
height: 228px;
}
.INI_WINDOW-8{
top: 78px;
left: 670px;
width: 354px;
height: 128px;
}
/*
Settings
*/
.SETTINGS_slider{
width: 200px !important;
}
.SETTINGS_MENUBTNFIX{
width: 370px;
margin-top: 6px !important;
box-shadow: 0px 0px 10px #323232;
}
.SETTINGS_ABA-1{
left: 24px;
top: 56px;
}
.SETTINGS_ABA-2{
left: 424px;
top: 56px;
}
.SETTINGS_ABA-3{
left: 858px;
top: 56px;
}
.SETTINGS_ABA-4{
top: 146px;
left: 24px;
}
.SETTINGS_ABA-5{
top: 332px;
left: 24px;
}
.SETTINGS_ABA-6{
top: 254px;
left: 858px;
}
.SETTINGS_ABA-7{
top: 332px;
left: 858px;
}
.SETTINGS_ABA-8{
top: 392px;
left: 858px;
}
.SETTINGS_WINDOW-1{
top: 78px;
left: 14px;
height: 32px;
width: 374px;
}
.SETTINGS_WINDOW-2{
top: 78px;
left: 414px;
width: 408px;
height: 236px;
}
.SETTINGS_WINDOW-3{
top: 78px;
left: 848px;
width: 450px;
height: 134px;
}
.SETTINGS_WINDOW-4{
top: 168px;
left: 14px;
width: 374px;
height: 146px;
}
.SETTINGS_WINDOW-5{
top: 354px;
left: 14px;
width: 809px;
height: 79px;
}
.SETTINGS_WINDOW-6{
top: 276px;
left: 848px;
width: 450px;
height: 38px;
}
.SETTINGS_WINDOW-7{
top: 354px;
left: 848px;
width: 450px;
height: 20px;
}
.SETTINGS_WINDOW-8{
top: 414px;
left: 848px;
width: 450px;
height: 20px;
}
.SETTINGS_FUTURE{
top: 38px;
left: 10px;
width: 442px;
position: absolute;
}
/*
SLD Layer
*/
.RDT_SLD_mainMenuLeftFix{
position: sticky;
left: 403px !important;
}
.RDT_SLD_selectFix{
width: 120px;
}
.RDT_SLD_LAYER_otherInfo{
color: #fff;
width: 762px;
padding: 6px;
border-radius: 6px;
background-image: linear-gradient(to bottom, #768593, #3a4753);
}
.RDT_SLD_LAYER_CANVAS{
top: 98px;
color: #fff;
left: 802px;
width: 507px;
height: 380px;
overflow: hidden;
position: absolute;
background-color: #000;
box-shadow: 0 0 10px #85859d;
}
.RDT_SLD_CANVAS_BG_IMG{
top: 0;
left: 0;
z-index: 0;
opacity: 0.7;
width: 523px;
height: 380px;
position: absolute;
background-size: contain;
background-repeat: no-repeat;
background-image: linear-gradient(to bottom, #222, #000);
}
.RDT_SLD_LAYER_BLOCK_HOLDER{
padding: 4px;
width: 766px;
height: 242px;
overflow: auto;
margin-top: 6px;
}
.SLD_BLOCK_MENU_POSITION{
margin-left: 82px;
margin-top: -36px;
}
.SLD_BLOCK_MENU_SIZEDISPLAYMODE{
margin-left: 184px;
margin-top: -36px;
}
.SLD_BLOCK_MENU_OTHER{
margin-left: 298px;
margin-top: -36px;
}
.RDT_SLD_OPEN_RE3SLDE_btn{
left: 234px;
position: sticky;
}
.RDT_SLD_MASK_IMG_BLOCK{
zoom: 1.61;
opacity: 1;
position: absolute;
z-index: 2 !important;
}
.RDT_SLD_CANVAS_CONTROLS{
top: 53px;
z-index: 4;
color: #fff;
left: 802px;
width: 498px;
height: 38px;
padding-left: 10px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(to bottom, #879396, #4a4f50);
}
/*
Mix Edit
*/
/* 01: Combine */
.MIX_fixLabel{
left: 72px;
position: sticky;
}
/* 00: Reload / Sum */
.MIX_fixLabel-2{
left: 68px;
position: sticky;
}
/* 03: Change Bullet Function (Handgun / Magnum) */
.MIX_fixLabel-4{
left: 102px;
position: sticky;
}
/* 04: Change Bullet Function (G. Launcher) */
.MIX_fixLabel-3{
left: 102px;
position: sticky;
}
/* 05: Change Bullet Function (G. Launcher) */
.MIX_fixLabel-5{
left: 94px;
position: sticky;
}
/* 06: Add infinite ammo */
.MIX_fixLabel-6{
left: 130px;
position: sticky;
}
.MIX-combine-holder{
padding: 4px;
width: 1297px;
height: 470px;
overflow: auto;
margin-top: 4px;
border-radius: 6px;
}
.MIX_preview_item_shadow{
z-index: 2;
position: sticky;
box-shadow: 0 0 4px #09002e;
}
.MIX_preview_exchange_A{
z-index: 1;
top: 185px;
left: 50px;
width: 124px;
position: absolute;
}
.MIX_preview_exchange_B{
z-index: 0;
top: 148px;
left: 104px;
width: 124px;
position: absolute;
filter: hue-rotate(140deg);
}
.MIX_select_fix{
left: 812px;
width: 480px;
position: sticky;
}
.MIX_select_fix-2{
width: 310px;
}
.MIX_select_fix-3{
left: 848px;
width: 447px;
position: sticky;
}
.MIX_img_plus_fix{
width: 20px;
margin-left: 4px;
margin-right: 4px;
margin-bottom: 7px;
}
.MIX_img_equals_fix{
width: 28px;
padding-left: 4px;
padding-right: 4px;
margin-bottom: 10px;
}
.MIX_edit_preview_canvas{
zoom: 2.4;
width: 98%;
margin-top: 2px;
padding-top: 4px;
border-radius: 6px;
background-color: #000040;
box-shadow: 0 0 10px #0000403d;
}
.MIX-preview-04-img{
position: absolute;
top: 202px;
z-index: 4;
zoom: 0.8;
}
.MIX_IMG_04_FIX_01{
left: 48px;
}
.MIX_IMG_04_FIX_02{
left: 116px;
}
.MIX_IMG_04_FIX_03{
left: 189px;
}
.MIX_IMG_04_FIX_04{
left: 256px;
}
.MIX-func-sum-bg{
background-image: linear-gradient(to bottom, #497d54, #2d5035);
}
.MIX-func-comb-bg{
background-image: linear-gradient(to bottom, #497188, #2f4a5a);
}
.MIX-func-reloading-bg{
background-image: linear-gradient(to bottom, #816d96, #493e54);
}
.MIX-func-bullet-handMag-bg{
background-image: linear-gradient(to bottom, #5a688e, #222b3e);
}
.MIX-func-bullet-gLauncher-bg{
background-image: linear-gradient(to bottom, #987397, #54404f);
}
.MIX-func-bullet-powderGL-bg{
background-image: linear-gradient(to bottom, #885238, #583b0f);
}
.MIX-func-infBullets-bg{
background-image: linear-gradient(to bottom, #a26e6e, #805370);
}
/*
RE3SET
RE3 Settings Editor
*/
.RE3SET_itemDesc_topDiv{
top: 8px;
left: 94px;
display: none;
position: absolute;
}
.RE3SET_itemDesc_holder{
top: 52px;
width: 1318px;
height: 478px;
overflow: auto;
border-radius: 6px;
padding-right: 4px;
position: absolute;
}
.RE3SET-message-content{
width: 84%;
min-height: 18px;
margin-top: -18px;
margin-left: 84px;
text-align: -webkit-left;
}
.RE3SET_OTHER_startPosTab{
top: 61px;
left: 20px;
}
.RE3SET_OTHER_startPosDiv{
top: 84px;
width: 350px;
height: 214px;
}
.RE3SET_OTHER_STARTPOS_zFix{
margin-top: 10px;
}
.RE3SET_zFix{
width: 98%;
z-index: 1;
position: absolute;
}
.RE3SET_OTHER_startPosCamPrevDiv{
top: 50px;
left: 180px;
border-radius: 6px;
position: absolute;
}
.RE3SET_OTHER_startPosCamPrevImg{
width: 160px;
border-radius: 2px;
box-shadow: 0 0 10px #0000005e;
}
.RE3SET_OTHER_miniDivTab_base{
z-index: 1;
color: #fff;
border: none;
outline: none;
padding-top: 4px;
padding-left: 8px;
padding-right: 8px;
position: absolute;
padding-bottom: 4px;
text-shadow: 0 0 10px #000;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
background-image: linear-gradient(to bottom, #656565, #404040);
}
.RE3SET_OTHER_miniDiv_base{
padding: 6px;
border-radius: 6px;
position: absolute;
box-shadow: 0 0 10px #161616;
background-image: linear-gradient(to bottom, #404040, #222);
}
.RE3SET_EDIT_itemstart_infos{
width: 400px;
position: absolute;
}
.RE3SET_OTHER_startPos_inputRoomFix{
width: 18px !important;
}
.RE3SET_GLOBAL_APPLY{
z-index: 1;
top: 480px;
left: 1078px;
position: absolute;
}
.RE3SET_OTHER_startPos_LIVETSTATUS{
top: 190px;
left: 36px;
display: none;
position: absolute;
}
.RE3SET_STARTPOS_IMG_BG_DIV{
top: 0px;
z-index: 0;
height: 100%;
border-radius: 4px;
position: absolute;
background-color: #000;
width: calc(100% - 6px);
background-size: auto 490px;
background-position: center;
background-repeat: no-repeat;
-webkit-mask-image: linear-gradient(to left, #00000045, #0000);
}
.RE3SET_EDIT_itemBackground{
top: 0px;
z-index: -1;
height: 100%;
border-radius: 4px;
position: absolute;
background-color: #000;
width: calc(100% - 10px);
background-size: auto 490px;
background-position: center;
background-repeat: no-repeat;
-webkit-mask-image: linear-gradient(to left, #0000007d, #0000);
}
.RE3SET_EDIT_selectItemStart{
width: 384px;
text-transform: none !important;
}
.RE3SET_EDIT_startItemQuant{
width: 40px !important;
}
.RE3SET_DIV_startItemsApply{
top: 396px;
left: 22px;
width: 92%;
position: absolute;
}
.RE3SET_BTN_APPLYSTARTITEM{
width: 194px;
}
.RE3SET_editStartItemHolder{
top: 72px;
z-index: 0;
left: 890px;
color: #fff;
width: 422px;
height: 438px;
padding: 10px;
position: absolute;
border-radius: 4px;
background-image: linear-gradient(to bottom, #4067a8, #1a2f49);
}
.RE3SET_DIV_itemsAllHolder{
top: 14px;
left: 222px;
width: auto;
height: auto;
position: absolute;
}
.RE3SET_TAB_itemEasy{
top: 53px;
z-index: 2;
left: 14px;
color: #fff;
border: none;
outline: none;
padding-top: 2px;
position: absolute;
padding-left: 14px;
padding-right: 14px;
padding-bottom: 2px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
background-image: linear-gradient(to bottom, #7d67c9, #5842a2);
}
.RE3SET_TAB_itemHard{
top: 53px;
z-index: 2;
left: 454px;
color: #fff;
border: none;
outline: none;
padding-top: 2px;
position: absolute;
padding-left: 14px;
padding-right: 14px;
padding-bottom: 2px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
background-image: linear-gradient(to bottom, #4710ff, #2700ab);
}
.RE3SET_DIV_itemEasy_Holder{
top: 72px;
z-index: 1;
color: #fff;
width: 432px;
height: 434px;
border-radius: 6px;
position: absolute;
box-shadow: 0 0 10px #222;
background-image: linear-gradient(to bottom, #5842a2, #423471);
}
.RE3SET_DIV_itemHard_Holder{
top: 72px;
z-index: 1;
left: 440px;
color: #fff;
width: 432px;
height: 434px;
border-radius: 6px;
position: absolute;
box-shadow: 0 0 10px #222;
background-image: linear-gradient(to bottom, #2700ab, #1d066d);
}
.RE3SET_TAB_jillItems{
top: 7px;
left: 16px;
color: #fff;
border: none;
outline: none;
cursor: inherit;
padding-top: 4px;
padding-left: 8px;
position: absolute;
padding-right: 8px;
padding-bottom: 4px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
box-shadow: 0 0 10px #07004061;
background-image: linear-gradient(to bottom, #2a2a65, #000040);
}
.RE3SET_DIV_itemEasy_jillHolder{
top: 30px;
left: 4px;
width: 208px;
height: 400px;
border-radius: 6px;
position: absolute;
background-color: #00002b;
box-shadow: 0 0 10px #07004061;
}
.RE3SET_TAB_carlosItems{
top: 7px;
left: 232px;
color: #fff;
border: none;
outline: none;
cursor: inherit;
padding-top: 4px;
padding-left: 8px;
position: absolute;
padding-right: 8px;
padding-bottom: 4px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
box-shadow: 0 0 10px #07004061;
background-image: linear-gradient(to bottom, #2a2a65, #000040);
}
.RE3SET_DIV_itemEasy_carlosHolder{
top: 30px;
left: 220px;
width: 208px;
height: 400px;
border-radius: 6px;
position: absolute;
background-color: #00002b;
box-shadow: 0 0 10px #07004061;
}
/* Items Labels*/
.RE3SET_LBL_inventItem{
z-index: 3;
color: #fff;
font-size: 26px;
cursor: pointer;
position: absolute;
display: -webkit-box;
}
.RE3SET_LBL_inventAjust_1{
top: 48px;
left: 10px;
}
.RE3SET_LBL_inventAjust_2{
top: 48px;
left: 114px;
}
.RE3SET_LBL_inventAjust_3{
top: 128px;
left: 10px;
}
.RE3SET_LBL_inventAjust_4{
top: 128px;
left: 114px;
}
.RE3SET_LBL_inventAjust_5{
top: 208px;
left: 10px;
}
.RE3SET_LBL_inventAjust_6{
top: 208px;
left: 114px;
}
.RE3SET_LBL_inventAjust_7{
top: 288px;
left: 10px;
}
.RE3SET_LBL_inventAjust_8{
top: 288px;
left: 114px;
}
.RE3SET_LBL_inventAjust_9{
top: 368px;
left: 10px;
}
.RE3SET_LBL_inventAjust_10{
top: 368px;
left: 114px;
}
/* Items Imgs */
.RE3SET_IMG_item_1{
width: 104px;
z-index: 2;
cursor: pointer;
border-top-left-radius: 10px;
}
.RE3SET_IMG_item_2{
width: 104px;
z-index: 2;
cursor: pointer;
position: absolute;
border-top-right-radius: 10px;
}
.RE3SET_IMG_item_3{
top: 80px;
z-index: 2;
left: 0px;
width: 104px;
cursor: pointer;
position: absolute;
}
.RE3SET_IMG_item_4{
top: 80px;
z-index: 2;
width: 104px;
cursor: pointer;
position: absolute;
}
.RE3SET_IMG_item_5{
left: 0px;
z-index: 2;
top: 160px;
width: 104px;
cursor: pointer;
position: absolute;
}
.RE3SET_IMG_item_6{
top: 160px;
z-index: 2;
width: 104px;
cursor: pointer;
position: absolute;
}
.RE3SET_IMG_item_7{
left: 0px;
z-index: 2;
top: 240px;
width: 104px;
cursor: pointer;
position: absolute;
}
.RE3SET_IMG_item_8{
top: 240px;
z-index: 2;
width: 104px;
cursor: pointer;
position: absolute;
}
.RE3SET_IMG_item_9{
left: 0px;
z-index: 2;
top: 320px;
width: 104px;
cursor: pointer;
position: absolute;
border-bottom-left-radius: 10px;
}
.RE3SET_IMG_item_10{
top: 320px;
z-index: 2;
width: 104px;
cursor: pointer;
position: absolute;
border-bottom-right-radius: 10px;
}
/*
DROP
*/
.DROP-func-comb-bg{
background-image: linear-gradient(to bottom, #497188, #2f4a5a);
}
.DROP_imgPrev{
width: 60px;
border-radius: 4px;
box-shadow: 0 0 6px #002;
}
.DROP_divLeft{
margin-top: -50px;
margin-left: 66px;
}
.DROP_stickyFix{
left: 820px;
position: sticky;
}
/*
IEDIT
*/
.IEDIT_searchItemId_DIV{
top: 5px;
left: 92px;
width: 400px;
position: absolute;
}
.IEDIT_searchItemId_lbl{
top: 4px;
position: absolute;
}
.IEDIT_searchItemId_input{
color: #0f0;
left: 130px;
width: 262px;
height: 17px;
padding: 4px;
border: none;
outline: none;
border-radius: 2px;
position: absolute;
background-color: #0000;
text-transform: uppercase;
background-image: linear-gradient(to right, #000, #0000);
}
.IEDIT_lbl_item_sticky{
left: 110px;
position: sticky;
}
.IEDIT_lbl_item_hex_fix{
padding-top: 6px;
}
.IEDIT_ITEM_heightFix{
height: 126px;
}
.IEDIT_ITEM_holder{
width: 1314px;
height: 480px;
overflow: auto;
padding-left: 4px;
padding-right: 4px;
border-radius: 6px;
}
.IEDIT_edit_stickyFix{
position: sticky;
left: 866px;
}
.IEDIT_edit_select_fix{
width: 304px;
}
/*
R3ditor Patcher
*/
.R3_Patcher_main_menu_css{
top: 120px;
left: 450px;
color: #fff;
width: 440px;
padding: 4px;
height: 344px;
display: none;
overflow: hidden;
position: absolute;
border-radius: 6px;
box-shadow: 0 0 500px #5e337963;
background-image: linear-gradient(to bottom, #444, #222);
}
.R3_Patcher_details_holder_css{
color: #fff;
width: 420px;
padding: 6px;
height: 290px;
overflow: auto;
margin-top: 4px;
margin-left: 4px;
border-radius: 4px;
margin-bottom: 10px;
box-shadow: 0 0 7px #000;
background-image: linear-gradient(to bottom, #1100178c, #050417ba);
}
.R3_Patcher_btnFix{
width: 212px;
margin-top: -4px;
border-radius: 2px;
}
/*
3D props
*/
.RDT_3DProps_XYZR_fix{
left: 60px;
margin-top: 4px;
margin-left: 6px;
position: sticky;
width: 42px !important;
}
.RDT_3DProps_extraDivFix{
top: 48px;
left: 120px;
margin-top: 4px;
position: absolute;
}
.RDT_3DProps_extraTextValueFix{
left: 938px;
width: 34px;
position: sticky;
}
/*
ARD Enabler
*/
.UTILS_ARDEnabler_divHolder{
top: 310px;
left: 450px;
display: none;
position: absolute;
}
.FILELIST_ARDEnabler_warnDiv{
top: 180px;
left: 172px;
position: absolute;
text-shadow: 0 0 20px #009 !important;
}
/*
XDELTA
*/
.R3_Patcher_Xdelta_holderFix{
top: 244px !important;
left: 284px !important;
width: 812px !important;
height: 188px !important;
}
.R3_Patcher_Xdelta_infoFix{
overflow: hidden;
width: 794px !important;
height: 132px !important;
}
.R3_Patcher_Xdelta_openBtnFix{
left: 724px;
position: sticky;
}
.R3_Patcher_Xdelta_inputFinalNameFix{
width: 594px;
outline: none;
margin-top: 0px;
box-shadow: none;
background-color: #0000;
text-transform: none !important;
background-image: linear-gradient(to right, #000, #0000) !important;
}
.R3_Patcher_Xdelta_applyBtnDiv{
top: 136px;
width: 98%;
position: absolute;
background-color: #0000 !important;
}
.R3_Patcher_Xdelta_lbl{
position: fixed;
overflow: hidden;
max-width: 596px;
margin-top: -21px;
margin-left: 112px;
} | App/css/style.css | ::-webkit-scrollbar{
width: 8px;
border-radius: 4px;
}
::-webkit-scrollbar-track{
border-radius: 4px;
background-image: linear-gradient(to bottom, #292929, #212121);
}
::-webkit-scrollbar-thumb{
border-radius: 4px;
background: #e7e7e7;
}
::-webkit-scrollbar-thumb:hover{
border-radius: 4px;
background: #fafafa;
}
@font-face{
src: url('times.ttf');
font-family: 'timesNR';
}
html{
color: #fff;
scroll-behavior: smooth;
-webkit-user-select: none;
}
img{
-webkit-user-drag: none;
}
body{
color: #fff;
overflow: hidden;
font-family: 'timesNR', Fallback, times;
}
u{
text-shadow: 0px 0px 10px #ff000063;
}
a{
color: #fff;
}
audio{
width: 100%;
}
input[type='range' i]{
top: 6px;
width: 62%;
cursor: pointer;
margin-top: 4px;
margin-right: 6px;
position: relative;
}
/*
App Holder
*/
.R3DITOR_MAIN_APP_HOLDER{
color: #fff;
width: 1360px;
height: 733px;
position: fixed;
overflow: hidden;
transform-origin: top left;
transition: all .0.1s ease-in-out;
background-image: linear-gradient(to bottom, #020202, #0f0c23);
}
/*
Fill
*/
.fill{
width: 100%;
height: 100%;
}
/*
Cursor
*/
.CURSOR_NO{
cursor: no-drop !important;
}
.CURSOR_POINTER{
cursor: pointer !important;
}
/*
About
*/
.ABOUT_appLogo{
top: 148px;
position: absolute;
}
.ABOUT_right{
position: absolute;
}
.ABOUT_BG{
top: 0px;
left: 0px;
z-index: 0;
width: 100%;
height: 100%;
display: none;
filter: blur(4px);
position: absolute;
border-radius: 50px;
background-color: #000;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-image: url(../img/tms.png);
-webkit-mask-image: linear-gradient(to left, #ffffff14, #00000014);
}
.ABOUT_main{
top: 40px;
left: 140px;
width: 992px;
height: 582px;
padding: 34px;
overflow: hidden;
position: absolute;
border-radius: 50px;
box-shadow: 0px 0px 30px #5d46727a;
background-image: linear-gradient(to bottom, #5f4774, #17163f);
}
.appLogo{
width: 200px;
filter: blur(200px);
}
.ABOUT_separador{
top: 76px;
width: 2px;
left: 244px;
color: #fff;
height: 500px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(#ffffff00, #fff, #ffffff00);
}
.ABOUT_LEGAL_INFO{
top: 500px;
left: 276px;
width: 720px;
position: absolute;
}
.ABOUT_manyThanksLbl{
top: 68px;
left: 246px;
width: 130px;
position: absolute;
}
.ABOUT_manyThanksDiv{
top: 100px;
left: 256px;
width: 776px;
height: 252px;
overflow: auto;
position: absolute;
text-align: -webkit-left;
}
.ABOUT_specialThanks{
top: 360px;
left: 300px;
position: absolute;
text-align: -webkit-center;
}
.ABOUT_goBackBtn{
left: 4px;
top: 330px;
position: absolute;
width: 180px !important;
border-radius: 6px !important;
}
/*
FBoot
*/
.textLOGO{
color: #fff;
font-size: xx-large;
text-shadow: 0px 0px 30px #f00;
}
.FBOOT_logo{
top: 260px;
left: 588px;
width: 170px;
display: none;
position: absolute;
}
.FBOOT_DIV{
top: 410px;
left: 368px;
display: none;
position: absolute;
color: #222 !important;
text-shadow: 0 0 10px #ffb9b9;
}
.FBOOT_LEGAL_MESSAGE_CSS{
top: 680px;
left: 360px;
color: #000;
display: none;
position: absolute;
text-shadow: 0 0 20px #f00;
}
.fillScreen-white{
top: 0px;
left: 0px;
z-index: 999;
width: 1362px;
height: 808px;
display: none;
position: absolute;
background-color: #000;
}
.chkbox{
position: absolute;
}
.font-chkbox-fix{
cursor: pointer;
margin-left: 22px;
}
.updater_title_holder, li{
margin-top: 6px;
}
.padding-left{
padding-left: 4px;
}
.red{
color: #f00;
text-shadow: 0px 0px 10px #ff8e8e;
}
.green{
color: #0f0;
text-shadow: 0px 0px 10px #0f0;
}
.RDT_lbl_pointers{
left: 206px;
width: 1090px;
position: sticky;
margin-top: -18px;
}
.RDT_saveAsARD-btn{
left: 364px;
color: #0f0;
display: none;
margin-top: -4px;
position: absolute;
}
.blockUsage{
top: 596px;
width: 942px;
padding: 6px;
height: auto;
display: none;
position: absolute;
border-radius: 4px;
background-image: linear-gradient(to bottom, #555, #222);
}
.feature_title{
font-size: x-large;
text-decoration: underline;
text-shadow: 0px 0px 10px #555;
}
.msg-legenda-sticky{
left: 50px;
position: sticky;
}
.btn-apply-small{
width: 30%;
}
.menu-topo{
width: 98%;
padding: 6px;
height: auto;
position: absolute;
border-radius: 4px;
background-image: linear-gradient(to bottom, #555, #222);
}
.botao-menu{
color: #0e0;
border: none;
outline: none;
cursor: pointer;
margin-left: 2px;
padding-top: 4px;
padding-left: 10px;
border-radius: 4px;
padding-bottom: 4px;
padding-right: 10px;
text-shadow: 0px 0px 10px #888;
background-image: linear-gradient(to bottom, #232323, #000);
}
.botao-menu:active{
color: #0f0;
outline: none;
box-shadow: 0 0 4px #222;
text-shadow: 0 0 10px #fff;
background-image: linear-gradient(to bottom, #000, #001c00);
}
.botao-aplicar{
color: #fff;
outline: none;
margin-right: 2px;
box-shadow: 0px 0px 4px #002808;
text-shadow: 0px 0px 10px #1cff00;
background-image: linear-gradient(to bottom, #009a3a, #003f18);
}
.botao-aplicar:active{
color: #e6ffdc;
background-image: linear-gradient(to bottom, #003f18, #009a3a);
}
.botao-aplicar:hover{
box-shadow: 0 0 10px #037f01;
}
.info-icon-holder{
margin-top: 8px;
}
.menu{
top: 84px;
width: 98%;
z-index: 1;
color: #fff;
padding: 6px;
height: 530px;
overflow: auto;
position: absolute;
border-radius: 6px;
background-image: linear-gradient(to bottom, #444, #333);
}
.log-text{
width: 99%;
color: #0f0;
text-shadow: 0px 0px 5px #367948;
}
.log-warn{
width: 99%;
color: #fffc84;
text-shadow: 0px 0px 5px #8a8c2b;
}
.log-error{
width: 99%;
color: #ffbdbd;
margin-top: 4px;
margin-bottom: 4px;
text-shadow: 0px 0px 5px #793636;
}
.log-ARDENABLER-counter{
position: sticky;
margin-top: -18px;
margin-left: 190px;
}
.log-holder{
top: 622px;
width: 98%;
color: #0f0;
padding: 6px;
height: 88px;
overflow: auto;
margin-top: 4px;
border-radius: 6px;
position: absolute;
box-shadow: 0 0 10px #000;
background-image: linear-gradient(to bottom, #151515, #191919);
}
.menu-general-content{
z-index: 1;
color: #fff;
padding: 4px;
height: 520px;
overflow: auto;
margin-top: 2px;
border-radius: 6px;
text-shadow: 0px 0px 5px #367948;
background-image: linear-gradient(to bottom, #212121c7, #000123b5);
}
.menu-geral-text{
left: 176px;
position: sticky;
}
.RDT-menu-geral-text{
left: 206px;
position: sticky;
}
.menu-general-btn{
left: 1246px;
margin-top: 1px;
padding-top: 2px;
position: sticky;
padding-bottom: 2px;
}
.menu-separador{
width: 78%;
color: #fff;
height: 2px;
margin-top: 4px;
border-radius: 4px;
margin-bottom: 4px;
background-image: linear-gradient(to right, #fff, #fff0);
}
.menu-separador-2{
color: #fff;
height: 2px;
margin-top: 4px;
border-radius: 4px;
margin-bottom: 4px;
background-image: linear-gradient(90deg, #0000, #ffff, #0000);
}
.separador-2-fix{
width: 342px;
}
.separador-log-fix{
width: 88%;
margin-top: 8px;
margin-bottom: 8px;
box-shadow: 0px 0px 10px #00330096;
background-image: linear-gradient(to right, #0f0, #0000);
}
.box-fix-lbl{
cursor: pointer;
margin-top: -22px;
}
.b-icon{
width: 57px;
cursor: pointer;
margin-left: -552px;
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
.b-label{
display: flex;
margin-left: 75px;
margin-top: -8.7px;
}
.inventario{
width: 218px;
height: 406px;
margin-top: 4px;
overflow: hidden;
border-radius: 4px;
background-color: #000040;
}
.invent-principal{
width: 110px;
cursor: pointer;
position: fixed;
}
.invent-01{
top: 182px;
left: 1090px;
}
.invent-02{
top: 182px;
left: 1195px;
}
.invent-03{
top: 263px;
left: 1090px;
}
.invent-04{
top: 263px;
left: 1195px;
}
.invent-05{
top: 344px;
left: 1090px;
}
.invent-06{
top: 344px;
left: 1195px;
}
.invent-07{
top: 424px;
left: 1090px;;
}
.invent-08{
top: 424px;
left: 1195px;
}
.invent-09{
top: 504px;
left: 1090px;
}
.invent-10{
top: 504px;
left: 1195px;
}
.overflow-hidden{
overflow: hidden !important;
}
.b-quant-lbl{
z-index: 1;
width: 50px;
font-size: 20px;
cursor: pointer;
margin-top: -26px;
position: relative;
margin-left: -578px;
display: -webkit-box;
text-shadow: 0px 0px 4px #bfbfbf85;
}
.menu-re3-box{
top: 149px;
left: 660px;
width: 417px;
height: 456px;
position: fixed;
overflow: hidden;
padding-top: 10px;
border-radius: 4px;
background-image: linear-gradient(to bottom, #000018, #00004d);
}
.info-details{
top: 376px;
left: 664px;
color: #fff;
width: 390px;
padding: 6px;
height: 216px;
border: solid;
position: fixed;
border-color: #e7e7e7;
text-align: -webkit-left;
background-image: linear-gradient(to bottom, #0c0c52, #0e0e6f);
}
.title-inv{
font-style: italic;
font-family: sans-serif;
}
.invent-fix{
top: 147px;
left: 1078px;
width: 225px;
padding: 10px;
height: 446px;
overflow: auto;
margin-top: 2px;
position: fixed;
border-radius: 4px;
background-image: linear-gradient(to bottom, #000018, #04042b);
}
.bau-item{
z-index: 1;
color: #fff;
width: 100%;
height: 45px;
margin-top: 4px;
border-radius: 6px;
text-shadow: 0 0 10px #7676e5;
background-image: linear-gradient(to right, #000040, #0d0d57);
}
.item-box{
width: 624px;
padding: 10px;
height: 446px;
overflow: auto;
margin-top: 2px;
border-radius: 4px;
background-color: #00001f;
}
.item-counter-invent-1{
z-index: 1;
width: 40px;
cursor: pointer;
margin-top: 54px;
position: relative;
font-size: x-large;
margin-left: -172px;
display: -webkit-box;
}
.item-counter-invent-2{
z-index: 1;
width: 40px;
cursor: pointer;
margin-top: -27px;
margin-left: 40px;
position: relative;
font-size: x-large;
display: -webkit-box;
}
.textbox{
color: #0f0;
width: 214px;
padding: 2px;
border-style: solid;
border-color: #a7a7a7;
background-color: #000;
}
.slot-presente{
background-image: linear-gradient(to bottom, #00ce2c, #03a700);
}
.slot-ausente{
background-image: linear-gradient(to bottom, #bcbcbc, #aaa);
}
.slot-presente:active{
background-image: linear-gradient(to bottom, #03a700, #00ce2c);
}
.slot-ausente:active{
background-image: linear-gradient(to bottom, #aaa, #bcbcbc);
}
.slot-easy{
color: #00f;
}
.slot-save{
height: 20px;
width: 186px;
cursor: pointer;
margin-top: 4px;
padding-top: 4px;
margin-left: 0px;
margin-right: 2px;
padding-bottom: 2px;
text-align: -webkit-center;
display: -webkit-inline-box;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.save-grid{
width: 1300px;
position: absolute;
}
.save-number{
color: #000;
width: 25px;
cursor: pointer;
padding-top: 4px;
padding-bottom: 4px;
background-color: #fff;
text-align: -webkit-center;
display: -webkit-inline-box;
border-top-left-radius: 4px;
text-shadow: 0px 0px 0px #000;
border-bottom-left-radius: 4px;
}
.txt-status{
position: fixed;
margin-top: 14px;
margin-left: 30px;
font-size: x-large;
display: inline-block;
}
.txt-fine{
color: #0f0;
text-shadow: 0px 0px 10px #fff;
}
.txt-caution{
color: #fff900;
text-shadow: 0px 0px 10px #fff;
}
.txt-caution-red{
color: #ff9b00;
text-shadow: 0px 0px 10px #fff;
}
.txt-danger{
color: #ff7373;
text-shadow: 0px 0px 10px #ffb5b5;
}
.txt-poison{
color: #c29aff;
text-shadow: 0px 0px 10px #fff;
}
.status-menu{
height: 51px;
border-radius: 4px;
padding-left: 14px;
background-image: linear-gradient(to right, #000039, #101051);
}
.img-person-icon{
width: 4%;
}
.titulo{
font-style: italic;
font-size: xx-large;
text-shadow: 0 0 10px #131329;
}
.titulo-2{
font-style: italic;
font-size: x-large;
text-shadow: 0 0 10px #131329;
}
.none{
display: none;
}
.right{
float: right;
}
.aba{
zoom: 0.9;
color: #fff;
border: none;
outline: none;
cursor: pointer;
margin-top: 58px;
padding-top: 6px;
margin-right: 2px;
padding-left: 16px;
padding-bottom: 6px;
padding-right: 16px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
background-image: linear-gradient(to bottom, #272727, #121212);
}
.aba:focus{
outline: none;
}
.abaFix{
margin-top: 52px;
}
.aba-left-fix{
outline: none;
margin-left: 12px;
}
.aba-select{
zoom: 1;
cursor: auto;
outline: none;
text-shadow: 0px 0px 6px #000;
background-image: linear-gradient(to bottom, #696969, #444);
}
.aba-select-2{
zoom: 1;
cursor: auto;
outline: none;
text-shadow: 0px 0px 6px #000;
background-image: linear-gradient(to bottom, #9e9e9e, #626262);
}
.espaco-right{
margin-right: 6px;
}
.espaco-left{
margin-left: 6px;
}
.RDT-item-select{
width: 510px !important;
text-transform: none !important;
}
.RDT_editItem_selectFix{
left: 52px;
position: sticky;
}
.RDT_editItem_iconPrevew{
top: 65px;
left: 560px;
width: 38px;
border-radius: 2px;
position: absolute;
-webkit-user-drag: none;
box-shadow: 0px 0px 10px #00285087;
}
.no-transform-text{
text-transform: none !important;
}
.RDT-item-pos{
left: 90px;
position: sticky;
width: 30px !important;
}
.RDT-btn-apply{
border: 1px;
width: 250px;
padding: 16px;
outline: none;
cursor: pointer;
margin-left: 4px;
border-radius: 0px;
border-style: double;
box-shadow: 0px 0px 15px #3d3d3d;
text-shadow: 0px 0px 10px #939393;
background-image: linear-gradient(to bottom, #222, #000);
}
.margin-fix{
margin-top: 0px !important;
}
.RDT-btn-apply:active{
background-image: linear-gradient(to bottom, #000, #212121);
}
.RDT-btn-apply:hover{
box-shadow: 0 0 15px #777;
}
.color-green{
color: #0f0;
}
.color-white{
color: #fff;
}
.RDT-applyBtn-div{
top: 88%;
left: 704px;
width: 612px;
position: absolute;
z-index: 1 !important;
text-align: -webkit-right;
}
.RDT-applyBtn-div_2{
top: 88%;
width: 98%;
position: absolute;
text-align: -webkit-center;
}
.menu-alterar-item{
top: 40%;
width: 70%;
z-index: 1;
left: 13.4%;
padding-top: 4px;
position: absolute;
padding-left: 20px;
border-radius: 6px;
padding-right: 20px;
padding-bottom: 4px;
text-align: -webkit-center;
box-shadow: 0px 0px 20px #0c0c52;
background-image: linear-gradient(to bottom, #332892, #1e1850);
}
.item-select-mod{
color: #0f0;
width: 190px;
border: none;
padding-top: 6px;
margin-top: 10px;
padding-left: 4px;
padding-right: 4px;
border-radius: 4px;
padding-bottom: 6px;
background-color: #000;
text-transform: uppercase;
box-shadow: 0px 0px 10px #00285087;
text-shadow: 0px 0px 10px #ffffff2e;
background-image: linear-gradient(to bottom, #000, #041300);
}
.btn-box{
top: -20px;
left: 264px;
color: #0f0;
border: none;
cursor: pointer;
margin-left: 2px;
padding-top: 4px;
padding-left: 10px;
border-radius: 4px;
position: relative;
padding-bottom: 4px;
padding-right: 10px;
background-color: #000;
box-shadow: 0px 0px 10px #000031;
}
.btn-box-fix{
top: -25px;
}
.invent-mod-btn{
top: 42px;
left: 75px;
z-index: 99;
padding: 4px;
font-size: 10px;
position: absolute;
text-decoration: none;
}
.invent-mod-fix-2{
left: 186px;
}
.invent-mod-fix-3{
top: 120px;
}
.invent-mod-fix-4{
left: 186px;
top: 120px;
}
.invent-mod-fix-5{
top: 202px;
}
.invent-mod-fix-6{
left: 186px;
top: 202px;
}
.invent-mod-fix-7{
top: 282px;
}
.invent-mod-fix-8{
left: 186px;
top: 282px;
}
.invent-mod-fix-9{
top: 362px;
}
.invent-mod-fix-10{
left: 186px;
top: 362px;
}
.save-alterar-menu{
top: 14px;
left: 994px;
width: 320px;
padding: 10px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(to bottom, #555, #222);
}
.msg-raw{
top: 455px;
width: 554px;
height: 152px;
overflow: auto;
margin-top: 4px;
padding-top: 6px;
padding-left: 10px;
border-radius: 6px;
position: absolute;
padding-right: 10px;
padding-bottom: 6px;
background-image: linear-gradient(to bottom, #283a29, #13251e);
}
.msg-textPreview{
top: 455px;
left: 578px;
width: 356px;
height: 152px;
overflow: auto;
margin-top: 4px;
padding-top: 6px;
padding-left: 10px;
border-radius: 6px;
position: absolute;
padding-right: 10px;
padding-bottom: 6px;
background-image: linear-gradient(to bottom, #354165, #222a42);
}
.msg-events{
top: 44px;
width: 934px;
height: 396px;
margin-top: 4px;
padding-top: 6px;
overflow: hidden;
padding-left: 10px;
border-radius: 6px;
position: absolute;
padding-right: 10px;
padding-bottom: 6px;
background-image: linear-gradient(to bottom, #2b3e46, #212121);
}
.msg-traduzido{
height: 100px;
overflow: auto;
margin-top: 4px;
padding-top: 6px;
padding-left: 10px;
border-radius: 6px;
padding-right: 10px;
padding-bottom: 6px;
background-image: linear-gradient(to bottom, #595959, #323240);
}
.msg-addcomand-menu{
top: 48px;
left: 960px;
width: 362px;
height: 350px;
overflow: auto;
padding-top: 6px;
position: absolute;
padding-left: 10px;
border-radius: 6px;
padding-right: 10px;
padding-bottom: 6px;
background-image: linear-gradient(to bottom, #23215f, #00004a);
}
.msg-hex{
top: 414px;
left: 960px;
width: 364px;
height: 197px;
padding-top: 6px;
position: absolute;
padding-left: 10px;
border-radius: 6px;
padding-right: 10px;
padding-bottom: 6px;
background-image: linear-gradient(to bottom, #373f42, #1f1e29);
}
.msg-txt-edit{
margin: 0px;
color: #0f0;
width: 338px;
padding: 6px;
resize: none;
border: none;
height: 138px;
font-size: 16px;
border-radius: 6px;
box-shadow: 0px 0px 2px #000;
text-shadow: rgba(255, 255, 255, 0.18) 0px 0px 10px;
background-image: linear-gradient(to bottom, #151515, #0f0f0f);
}
.title-eventos{
margin: 0;
font-size: 30px;
font-family: Times;
font-weight: normal;
font-style: oblique;
text-align: -webkit-center;
text-shadow: 0px 0px 2px #00f;
}
.italic{
font-style: italic;
word-wrap: break-word;
}
.div-eventos{
height: 338px;
padding: 10px;
overflow: auto;
margin-top: 6px;
border-radius: 6px;
background-image: linear-gradient(to bottom, #110f15, #131219);
}
.evento{
margin-top: 1px;
min-height: 36px;
padding-top: 4px;
padding-left: 6px;
margin-bottom: 4px;
padding-bottom: 4px;
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
.evt-type-0{ /* Function: Mostrar Texto */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #747463, transparent);
}
.evt-type-1{ /* Function: Reproduzir SE */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #60698b, transparent);
}
.evt-type-2{ /* Function: Mostrar Camera */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #00757ae8, transparent);
}
.evt-type-3{ /* Function: Mostar Char Especial */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #82af9a, transparent);
}
.evt-type-4{ /* Function: Inicalizar / Finalizar Mensagem */
background-image: linear-gradient(to right, #aa1717, transparent);
}
.evt-type-5{ /* Function: Mostrar Nome de Item */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #804987, transparent);
}
.evt-type-8{ /* Function: Funcion desconhecida usada em R101.RDT */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #bd93a3d6, transparent);
}
.evt-type-9{ /* Function: Trocar Cor do Texto */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #00950b, transparent);
}
.evt-type-11{ /* Function: Selecionar Opção */
width: 96%;
margin-left: 30px;
background-image: linear-gradient(to right, #a29d00, transparent);
}
.camPreview{
z-index: 0;
display: none;
height: 260px;
position: inherit;
padding-top: 10px;
box-shadow: 0px 0px 10px #41419c;
}
.botao-add-comando{
width: 99%;
border: none;
outline: none;
cursor: pointer;
margin-top: 2px;
padding-top: 4px;
margin-bottom: 2px;
border-radius: 4px;
padding-bottom: 4px;
font-style: oblique;
text-shadow: 0px 0px 10px #fff;
background-image: linear-gradient(to bottom, #fff, #c4c4c4);
}
.botao-add-comando:active{
box-shadow: 0 0 4px #222;
text-shadow: 0px 0px 10px #fff;
background-image: linear-gradient(to bottom, #c1c1c1, #fff);
}
.btn-remover-comando{
color: #0e0;
float: right;
border: none;
width: 100px;
outline: none;
cursor: pointer;
margin-top: 5px;
padding-top: 5px;
margin-right: 8px;
border-radius: 6px;
padding-bottom: 7px;
box-shadow: 0px 0px 8px #383838;
background-image: linear-gradient(to bottom, #222, #000);
}
.btn-remover-comando:active{
color: #0f0;
box-shadow: 0px 0px 12px #444;
text-shadow: 0px 0px 10px #0f0;
background-image: linear-gradient(to bottom, #000, #222);
}
.btn-editMSGfix{
z-index: 4;
width: 80px;
}
.msg-render{
margin-bottom: 10px;
}
.msg-command-text-fix{
left: 82px;
width: 550px;
position: sticky;
margin-top: -18px;
text-align: -webkit-left;
}
.dialog-addcomando{
top: 208px;
width: 906px;
height: auto;
display: none;
padding-top: 4px;
position: absolute;
padding-left: 20px;
border-radius: 6px;
padding-right: 20px;
padding-bottom: 4px;
text-align: -webkit-center;
box-shadow: 0px 0px 20px #07072f;
background-image: linear-gradient(to bottom, #473cab, #251d65);
}
.RDT-holder{
width: 1312px;
height: 476px;
overflow: auto;
margin-top: 4px;
padding-left: 6px;
padding-right: 6px;
border-radius: 14px;
}
.RDT-Item{
color: #fff;
padding: 6px;
border-radius: 6px;
margin-bottom: 6px;
}
.RDT_door_leadBD{
z-index: 0;
width: 170px;
height: 128px;
margin-top: 0px;
margin-left: 0px;
border-radius: 6px;
margin-bottom: 10px;
background-color: #0000;
background-size: contain;
background-position: right;
background-repeat: no-repeat;
-webkit-mask-image: linear-gradient(to left, #ffffff, #000000);
}
.RDT_door_itemInfos{
z-index: 1;
width: 1114px;
margin-top: -136px;
margin-left: 176px;
position: relative;
}
.RDT_doorPosHolder{
margin-top: 14px;
}
.RDT_coordsHolder_A{
width: 172px;
margin-top: 8px;
}
.RDT_coordsHolder_B{
width: 172px;
margin-top: -5px;
}
.RDT_coordsHolder_C{
top: 12px;
left: 180px;
width: 230px;
position: absolute;
}
.RDT_coordsHolder_D{
width: 300px;
margin-top: -5px;
}
.RDT_coordsHolder_E{
margin-top: -5px;
}
.RDT_coordsHolder_F{
z-index: 2;
top: 132px;
left: 310px;
width: 180px;
position: absolute;
}
.RDT-3DProp-bg{
background-image: linear-gradient(to bottom, #017792, #14325c);
}
.RDT-item-bg{
background-image: linear-gradient(to bottom, #5755bd, #3a397d);
}
.RDT-file-bg{
background-image: linear-gradient(to bottom, #796293, #433850);
}
.RDT-map-bg{
background-image: linear-gradient(to bottom, #4e8b72, #275046);
}
.RDT-msg-bg{
background-image: linear-gradient(to bottom, #7f8470, #2e322a);
}
.RDT-itemDANGER-bg{
background-image: linear-gradient(to bottom, #ff0000, #9c0000);
}
.RDT-door-bg{
background-image: linear-gradient(to bottom, #507499, #273c50);
}
.RDT-MSGCODE-bg{
background-image: linear-gradient(to bottom, #17504d, #0a2829);
}
.RDT-audio-bg{
background-image: linear-gradient(to bottom, #354354, #111b33);
}
.RDT-enemy-bg{
background-image: linear-gradient(to bottom, #516b61, #0f432f);
}
.RDT-camera-bg{
background-image: linear-gradient(to bottom, #5a6282, #323544);
}
.RDT-SLD-BLOCK-bg{
background-image: linear-gradient(to bottom, #4b7571, #2c4245);
}
.txtarea-hex-fix{
width: 352px;
height: 128px;
outline: none;
margin-top: 8px;
}
.RDT-item-editOtherFix{
top: 266px;
left: 132px;
position: absolute;
}
.RDT_itemEditOtherLeftFix{
position: sticky;
left: 218px !important;
}
.RDT_itemEdit_IF_fix{
width: 20px;
left: 218px;
position: sticky;
}
.monospace{
font-family: monospace;
}
.user-can-select{
user-select: all;
}
.RDT-item-lbl-fix{
left: 258px;
position: sticky;
}
.RDT-item-lbl-fix-2{
left: 212px;
position: sticky;
}
.RDT-item-lbl-fix-3{
left: 430px;
position: sticky;
}
.RDT-item-lbl-fix-4{
left: 618px;
position: sticky;
}
.RDT-item-lbl-fix-5{
left: 766px;
position: sticky;
}
.RDT-item-lbl-fix-6{
left: 262px;
position: sticky;
}
.RDT-item-lbl-fix-7{
left: 108px;
width: 36px;
position: sticky;
}
.RDT-item-lbl-fix-8{
left: 334px;
position: sticky;
}
.RDT-item-lbl-fix-9{
left: 94px;
width: 34px;
position: sticky;
}
.RDT-item-lbl-fix-10{
left: 280px;
width: 20px;
position: sticky;
}
.RDT-item-lbl-fix-11{
left: 446px;
width: 20px;
margin-top: 4px;
position: sticky;
}
/*
Enemies / NPC lbl fix
*/
.RDT-lbl_enNPC-fix-1{
left: 85px;
position: sticky;
}
.RDT_HOLDER_enNPC-1{
width: 30%;
left: 126px;
height: 70px;
position: sticky;
margin-top: -73px;
padding-left: 10px;
}
.RDT-lbl_enNPC-fix-2{
left: 212px;
position: sticky;
}
.RDT_HOLDER_enNPC-2{
width: 30%;
left: 296px;
height: 70px;
position: sticky;
margin-top: -73px;
padding-left: 10px;
}
.RDT-lbl_enNPC-fix-3{
left: 85px;
position: sticky;
}
.RDT_HOLDER_enNPC-3{
width: 30%;
left: 266px;
height: 70px;
position: sticky;
margin-top: -70px;
padding-left: 10px;
margin-bottom: 6px;
}
/*
Item, files e maps
*/
.RDT-lbl_iFM-fix-1{
left: 84px;
position: sticky;
}
.RDT_HOLDER_iFM-1{
width: 30%;
left: 122px;
height: 70px;
position: sticky;
margin-top: -73px;
padding-left: 10px;
}
/*
Message Code
*/
.RDT-lbl_messageCode-fix-1{
left: 88px;
position: sticky;
}
.RDT_HOLDER_messageCode-2{
width: 30%;
left: 126px;
height: 70px;
position: sticky;
margin-top: -73px;
padding-left: 10px;
}
/*
*/
.RDT_doorEditHolderFix{
position: static;
margin-top: -16px;
}
.RDT_editSelectEnemyNPC-fix{
left: 94px;
margin-top: 6px;
margin-left: 5px;
position: sticky;
width: 380px !important;
}
.RDT_door_selectLockKeyFix{
width: 416px;
}
.RDT_door_textEditFix_0{
width: 36px;
}
.RDT_door_textEditFix_1{
width: 36px;
left: 1066px;
position: sticky;
}
.RDT_door_textEditFix_2{
width: 20px;
left: 1258px;
position: sticky;
}
.RDT_door_textEditFix_3{
width: 20px;
}
.RDT_door_textEditFix_4{
left: 882px;
width: 416px;
position: sticky;
}
.RDT_door_textEditFix_5{
width: 18px;
left: 1056px;
position: sticky;
}
.RDT_doorEdit_zIndexFix{
margin-top: -4px !important;
}
.RDT_doorKeyCopyDivFix{
margin-top: 4px;
}
.menu-utility-fix{
top: 526px;
}
.aba-utility-fix-2{
top: -20px;
display: none;
position: absolute;
cursor: unset !important;
background-image: linear-gradient(to bottom, #737373, #545454);
animation-timing-function: cubic-bezier(0.72, 0.01, 0.26, 0.99);
}
.menu-utility-patcher-main{
top: 70px;
width: 200px;
display: none;
}
.menu-utility-patcher-tab{
top: 40px;
display: none;
position: absolute;
background-image: linear-gradient(to bottom, #737373, #545454);
}
.menu-utility-exeEdit-main{
top: 102px;
left: 230px;
width: 402px; /* 402px */
display: none;
}
.menu-utility-exeEdit-tab{
top: 36px;
left: 230px;
cursor: auto;
display: none;
position: absolute;
background-image: linear-gradient(to bottom, #737373, #545454);
}
.aba-settings-fix{
left: 983px;
width: 350px;
}
.aba-principal-fix{
width: 546px;
}
.aba-settings-fix-2{
top: -44px;
left: 982px;
}
.aba-utility-fix{
top: 484px;
display: none;
position: absolute;
cursor: unset !important;
background-image: linear-gradient(to bottom, #737373, #545454);
animation-timing-function: cubic-bezier(0.72, 0.01, 0.26, 0.99);
}
.RDT_ITEM_MISC_FIX{
left: 250px !important;
margin-top: -70px !important;
}
.RDT_editEnemyNPC-misc{
z-index: 0;
top: 132px;
left: 140px;
width: 300px;
position: absolute;
}
.RDT_doorNextPosFix{
position: absolute;
left: 130px;
top: 45px;
}
.RDT_doorOtherFix{
top: 45px;
left: 312px;
position: absolute;
}
.RDT_doorUnkValFix{
width: 20px !important;
margin-top: 0px !important;
}
.RDT_modifyBtnFix{
margin-top: 0px;
margin-right: 0px;
}
.RDT_fixForSeparador{
margin-top: 0px !important;
}
.RE3_live_edit_xyzr_fix{
left: 560px;
width: 40px;
margin-top: 4px;
position: sticky;
margin-right: 6px;
}
.RDT_btn_fix1{
top: 174px;
left: 160px;
padding: 16px;
position: absolute;
}
.RDT_msg_block_health{
text-align: -webkit-center;
font-size: -webkit-xxx-large;
}
.RDT-message-content{
width: 78%;
min-height: 18px;
margin-top: -18px;
margin-left: 96px;
text-align: -webkit-left;
}
.RDT_msgLblErrorAtualLen{
left: 109px;
position: sticky;
}
.logo-fundo{
top: 32%;
left: 42%;
z-index: -1;
opacity: 0.4;
filter: blur(2px);
position: absolute;
}
.FRAME_BG{
top: 0px;
left: 0px;
width: 100%;
z-index: -1;
height: 100%;
opacity: 0.4;
display: none;
position: absolute;
}
.RDT_MSGCODE-eDisplay{
margin-top: 6px;
width: 318px !important;
}
.RDT_EDIT_ITEM_APPLY_FIX{
left: 674px !important;
}
.RDT_EDIT_ITEM_HOLDER{
width: 100%;
height: 98%;
position: absolute;
z-index: 1 !important;
}
.RDT_EDIT_ITEM_BG{
top: 0px;
left: 0px;
z-index: 0;
width: 100%;
height: 100%;
position: absolute;
background-color: #000;
background-size: auto 880px;
background-position: center;
background-repeat: no-repeat;
-webkit-mask-image: linear-gradient(to left, #0000007d, #0000);
}
.RDT-Item-Misc{
width: 30%;
left: 296px;
height: 70px;
position: sticky;
margin-top: -73px;
padding-left: 10px;
}
.RDT-Item-Misc-2{
width: 30%;
left: 468px;
height: 70px;
position: sticky;
margin-top: -70px;
padding-left: 10px;
}
.RDT-Item-Misc-3{
left: 634px;
width: 146px;
height: 70px;
position: sticky;
margin-top: -70px;
padding-left: 10px;
}
.RDT-Item-Misc-4{
width: 30%;
left: 250px;
height: 70px;
position: sticky;
margin-top: -70px;
padding-left: 10px;
}
.RDT-Item-Edit{
top: 53px;
padding: 6px;
width: 1312px;
height: 468px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(to bottom, #5c6499, #192432);
}
.RDT_door_select_width_fix{
width: 230px !important;
}
.RDT_item_convert_width_fix{
width: 60px;
}
.RDT_item_convert_btn_margin_fix{
margin-left: 8px;
}
.RE3_LIVESTATUS_OPENONR3D_margin_fix{
margin-top: 2px;
}
.new_update{
top: 6px;
left: 8px;
color: #fff;
width: 1326px;
height: 616px;
position: absolute;
border-radius: 6px;
background-image: linear-gradient(to bottom, #4d4d4d, #151b26);
}
.update_details{
width: 98%;
color: #fff;
height: 486px;
overflow: auto;
margin-top: 4px;
padding-top: 4px;
padding-left: 4px;
padding-right: 4px;
border-radius: 6px;
margin-bottom: 10px;
text-align: -webkit-left;
background-image: linear-gradient(to bottom, #0e0e0e, #29273300);
}
.li_div{
overflow: auto;
}
.center{
float: center;
}
.txt-center{
text-align: center;
}
.code{
padding: 4px;
color: #bfffc1;
user-select: all;
border-radius: 4px;
font-family: monospace;
background-color: #010101;
box-shadow: 0px 0px 10px #bfffc12b;
}
.update_subtitle{
font-size: x-large;
font-style: italic;
}
.mod_menu{
top: 80%;
}
.update_progress_window{
top: 558px;
height: 44px;
width: 1306px;
padding: 10px;
position: absolute;
border-radius: 6px;
text-align: -webkit-left;
background-image: linear-gradient(to bottom, #4f4566, #1a1624);
}
.progressBar{
width: 0.1%;
height: 6px;
margin-top: 4px;
border-radius: 6px;
margin-bottom: 8px;
background-color: #0f0;
box-shadow: 0px 0px 10px #26562e;
}
.WZ_info{
padding: 4px;
}
.btn-apply-fix{
margin-top: -4px;
}
.btn-goBack-fix{
top: 10px;
left: 616px;
position: absolute;
box-shadow: 0px 0px 6px #2b2b2b;
}
.btn-openImport-fix{
top: 10px;
left: 8px;
z-index: 1;
position: absolute;
box-shadow: 0px 0px 6px #2b2b2b;
}
.btn-closeImport-fix{
top: 10px;
z-index: 1;
left: 588px;
position: absolute;
box-shadow: 0px 0px 6px #2b2b2b;
}
.wizard{
top: 28%;
left: 28%;
width: 640px;
height: auto;
padding: 10px;
position: absolute;
margin-left: -50px;
border-radius: 6px;
background-color: #4c4c4c;
}
.RDT_BG_IMAGE{
top: 16px;
left: 10px;
opacity: 1;
z-index: -1;
width: 1324px;
height: 516px;
filter: blur(2px);
border-radius: 6px;
position: absolute;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.fileList{
top: 54px;
z-index: 2;
width: 670px;
padding: 6px;
height: 514px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(to bottom, #3f3f3f, #515151);
}
.RDT_IMPORT_CSS{
box-shadow: 0 0 10px #000 !important;
background-image: linear-gradient(to bottom, #060a0e, #080c12) !important;
}
.fileList_importRDT{
top: 54px;
left: 690px;
z-index: 10;
width: 634px;
height: 338px;
padding: 10px;
position: absolute;
border-radius: 6px;
box-shadow: 0 0 10px #222;
background-image: linear-gradient(170deg, #414141, #292929);
}
.fileList_checkBox{
cursor: pointer;
margin-top: 0px;
margin-left: 4px;
position: inherit;
}
.fileList_checkBox_dom{
top: 2px;
display: inline;
margin-right: -4px;
position: relative;
}
.fileList_IMPORT_DIV{
color: #fff;
width: 634px;
height: 274px;
margin-top: 8px;
border-radius: 6px;
background-color: #000;
box-shadow: 0 0 10px #212121;
background-image: linear-gradient(to bottom, #131d26, #1a2637);
}
.fileList_import_lbl{
left: 0px;
z-index: 1;
top: 194px;
width: 100%;
color: #fff;
opacity: 0.7;
font-size: 30px;
position: absolute;
text-align: center;
text-shadow: 0 0 10px #5555c5;
}
.fileList_import_bg{
top: 75px;
z-index: 0;
width: 634px;
height: 274px;
filter: blur(4px);
border-radius: 4px;
position: absolute;
background-color: #000;
background-size: auto 490px;
background-position: center;
background-repeat: no-repeat;
background-image: url(../img/JILL-ICON.png);
-webkit-mask-image: linear-gradient(to left, #ffffff3d, #0000002e);
}
.fileList_files{
top: 70px;
width: 658px;
padding: 6px;
height: auto;
overflow: auto;
position: absolute;
border-radius: 4px;
background-image: linear-gradient(to bottom, #626262, #0c0827);
}
.filelist_loadingFilesDiv{
top: 260px;
left: 240px;
z-index: 20;
color: #fff;
padding: 10px;
position: absolute;
border-radius: 6px;
box-shadow: 0 0 10px #222;
background-image: linear-gradient(to bottom, #494949, #626262);
}
.fileList_img{
width: 134px;
border-radius: 4px;
}
.fileList_item{
padding: 4px;
height: 100px;
margin-top: 2px;
cursor: pointer;
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
.fileList_serachBox{
top: 34px;
left: 406px;
padding: 4px;
width: 262px;
outline: none;
position: absolute;
text-transform: none;
background-color: #0000;
box-shadow: 0px 0px 0px #000;
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
background-image: linear-gradient(to right, #000, #0000);
}
.fileList_details{
margin-top: -104px;
margin-left: 138px;
}
.fileList_item_color_a{
background-image: linear-gradient(to right, #7a7a92, transparent);
}
.fileList_item_color_b{
background-image: linear-gradient(to right, #353592, transparent);
}
.fileList_item_color_c{
background-image: linear-gradient(to right, #2a2a6f, transparent);
}
.fileList_removeListBtn{
top: 10px;
left: 536px;
position: absolute;
box-shadow: 0px 0px 6px #222;
}
.blockInfo_fix{
left: 993px;
height: 449px;
box-shadow: 0px 0px 10px #a2a2a247;
}
.msg_holder_fix{
width: 964px;
}
/*
Item Map
*/
.divCanvas{
left: 62px;
border: 2px;
width: 430px;
height: 430px;
margin-left: 2px;
overflow: hidden;
border-radius: 2px;
border-color: #fff;
position: absolute;
border-style: solid;
background-color: #000;
background-position: center;
background-image: url('../Img/Grade.png');
}
.render-item{
top: 0px;
left: 0px;
z-index: 4;
color: #fff;
width: 18px;
height: 18px;
position: absolute;
text-align: -webkit-center;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.render-item-select{
box-shadow: 0px 0px 16px #fff;
}
.render-item-color-1{ /* Item */
text-shadow: 0px 0px 2px #124800;
background-image: linear-gradient(to bottom, #1aac00, #2c7300);
}
.render-item-color-2{ /* File */
text-shadow: 0px 0px 2px #aa98df;
background-image: linear-gradient(to bottom, #776191, #2a3e53);
}
.render-item-color-3{ /* Map */
text-shadow: 0px 0px 2px #00ff99;
background-image: linear-gradient(to bottom, #4d8a71, #275046);
}
.infoXY0{
top: 14px;
left: 10px;
position: absolute;
}
.infoXY1{
top: 450px;
left: 500px;
position: absolute;
}
.infoXY2{
top: 14px;
left: 500px;
position: absolute;
}
.infoXY3{
left: 8px;
top: 450px;
position: absolute;
}
.canvasInfos{
top: 46px;
left: 560px;
padding: 6px;
width: 470px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(to bottom, #555, #333);
}
.box-fix{
left: 60px;
width: 40px;
position: sticky;
}
.secondfieldSticky{
left: 756px;
position: sticky;
}
.canvasInfoOverflow{
height: 324px;
overflow: auto;
padding-right: 10px;
}
.MSG_editCameraSelectFix{
z-index: 3;
position: relative;
}
/*
FileGen
*/
.CURSOR_POINTER{
cursor: pointer;
}
.FILEGEN_saveImageBtn{
left: 816px !important;
}
.FG_selectColor_space_0{
position: sticky;
left: 130px;
}
.FG_selectColor_space_1{
position: sticky;
left: 146px;
}
.FG_CANVAS{
zoom: 2;
left: 406px;
width: 256px;
height: 176px;
overflow: hidden;
position: absolute;
background-color: #000;
box-shadow: 0px 0px 10px #33ff0050;
}
.FG_TEXT{
top: 74px;
z-index: 9;
color: #0f0;
border: 2px;
resize: none;
width: 772px;
height: 182px;
font-size: medium;
position: absolute;
border-color: #fff;
border-style: solid;
background-color: #141414;
}
.FG_BTN{
top: 424px;
left: 152px;
width: 492px;
position: absolute;
}
.FG_FILE_Options{
z-index: 1;
top: 290px;
color: #fff;
width: 760px;
height: 94px;
padding: 10px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(to bottom, #545454, #333);
}
.FG_ruler{
top: 50px;
width: 5px;
left: 257px;
z-index: 10;
height: 215px;
display: none;
border-radius: 6px;
position: absolute;
background-color: #64ff69;
}
/*
RDT Door Edit Prev
*/
.RDT_doorEdit_holderZFix{
width: 100%;
height: 100%;
position: absolute;
z-index: 1 !important;
}
.RDT_doorEditCamBg{
top: 0px;
z-index: 0;
height: 100%;
position: absolute;
border-radius: 4px;
background-size: cover;
background-color: #000;
width: calc(100% - 6px);
background-position: center;
background-repeat: no-repeat;
-webkit-mask-image: linear-gradient(to left, #0000007d, #0000);
}
.imgPreviewCamSpawn{
width: 220px;
margin-top: 6px;
border-radius: 4px;
box-shadow: 0px 0px 10px #858dbfa3;
}
.RDT_cam_holderInfos{
width: 63.2%;
position: sticky;
margin-left: 226px;
}
.RDT_editCam_direction{
top: -3px;
width: 30%;
left: 134px;
height: 70px;
position: relative;
margin-top: -106px;
}
.RDT_camImgItem{
width: 218px;
border-radius: 6px;
box-shadow: 0px 0px 4px #222;
}
.RDT_camShowMisc{
top: -1px;
width: 34%;
left: 292px;
position: relative;
}
.RDT_camFutureFix{
left: 600px;
position: sticky;
}
.RDT_camEditXYZOrigin{
left: 258px;
width: 38px;
position: sticky;
}
.RDT_camEditXYZDirection{
left: 400px;
width: 38px;
position: sticky;
}
.RDT_camEditXYZDirectionDiv{
top: 0px;
left: 110px;
position: absolute;
}
.RDT_camEditOtherInfo_holder{
top: 4px;
left: 250px;
position: absolute;
}
.RDT_camEdit_holder{
left: 200px;
width: 1092px;
position: absolute;
}
.RDT_cameraHolderFix{
z-index: 2;
display: flex;
overflow: hidden;
}
.RDT_cameraHolderFix_2{
z-index: 1;
}
.RDT_editCamera_iconPreviewDiv{
top: 66px;
width: 186px;
height: 360px;
position: absolute;
border-radius: 4px;
box-shadow: 0 0 10px #00002030;
background-image: linear-gradient(to bottom, #000b25, #212b3e00);
}
.RDT_editCamera_iconPreview{
width: 186px;
border-radius: 4px;
}
.RDT_cam_dirHolder{
top: 28px;
left: 100px;
width: 144px;
position: absolute;
}
.RDT_cam_otherValues{
top: 64px;
left: 240px;
width: 140px;
position: absolute;
}
.RDT_cam_lbl_fix_0{
left: 283px;
position: sticky;
}
.RDT_cam_lbl_fix_1{
left: 418px;
position: sticky;
}
.RDT_cam_lbl_fix_2{
left: 558px;
position: sticky;
}
.RDT_cam_imgFix{
margin-bottom: -168px !important;
}
.RDT_door_editCamSelectFix{
width: 98px;
}
/*
Filelist
*/
.fileList_aba_holder{
position: absolute;
top: -6px;
}
/*
RE3 LIVE STATUS
*/
.RE3_LIVESTATUS{
top: 48px;
z-index: 10;
padding: 6px;
width: 1334px;
height: 564px;
border-radius: 6px;
position: absolute;
box-shadow: 0px 0px 10px #222;
background-image: linear-gradient(to bottom, #424242, #333);
}
.RE3_LIVESTATUS_currentPlayerImgDiv{
z-index: 0;
position: absolute;
}
.RE3_LIVESTATUS_statusDiv{
z-index: 2;
position: absolute;
}
.RE3_LIVESTATUS_PERSON_IMG{
left: 138px;
width: 162px;
opacity: 0.4;
display: none;
filter: blur(2px);
position: absolute;
clip-path: inset(0px 60px 0px 0px);
}
.RE3_LIVESTATUS_CLOSEBTN{
top: 14px;
left: 1276px;
position: absolute;
}
.RE3_LIVESTATUS_MENU{
padding: 6px;
height: 484px;
border-radius: 6px;
background-image: linear-gradient(to bottom, #636363, #181818);
}
.RE3_LIVESTATUS_ABACONTENT{
padding: 6px;
height: 472px;
border-radius: 6px;
background-image: linear-gradient(170deg, #222, #03001ee3);
}
.RE3_LIVESTATUS_abaFix{
margin-top: 4px !important;
}
.RE3_LIVESTATUS_MINIWINDOW{
padding: 6px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(to bottom, #454545, #333);
}
.RE3_LIVESTATUS_inernalTab{
color: #fff;
border: none;
outline: none;
padding-top: 4px;
position: absolute;
padding-left: 14px;
padding-right: 14px;
padding-bottom: 4px;
cursor: unset !important;
background-color: #454545;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
text-shadow: 0px 0px 10px #010101;
}
.RE3_LIVESTATUS_CAM_IMG{
width: 266px;
margin-top: 8px;
border-radius: 6px;
box-shadow: 0px 0px 10px #222222a6;
}
.RE3_LIVESTATUS_CANVAS_CSS{
width: 438px;
height: 438px;
border-width: 2px;
border-radius: 4px;
border-style: solid;
background-image: linear-gradient(to bottom, #111, #000);
}
.RE3_LIVECANVAS_PLAYER_ARROW{
top: 50%;
left: 50%;
z-index: 1;
width: 16px;
height: 16px;
position: absolute;
background-image: url('../Img/arrow.png');
}
.RE3_LIVECANVAS_BOUNDARY_TEST{
height: 0px;
border: 1px solid;
position: absolute;
border-color: #bebeff;
background-color: #00f;
}
.RE3_LIVESTATUS_closeGameBtnFix{
margin-left: 38px;
}
.RE3_LIVESTATUS_INVENT_BG{
color: #fff;
height: 326px;
border-radius: 6px;
background-color: #000041;
}
.RE3_LIVESTATUS_INPUTNUM{
width: 44px;
}
.RE3_LIVESTATUS_SELECT{
width: 274px;
}
.RE3_LIVESTATUS_copyLoc{
position: absolute;
left: 218px;
top: 64px;
}
.RE3_LIVESTATUS_APPLYBTNFIX{
float: right;
margin-top: 12px;
padding-left: 26px;
padding-right: 26px;
}
.RE3_LIVESTATUS_lbl_window-1-fix{
left: 150px;
position: sticky;
}
.RE3_LIVESTATUS_lbl_window-2-fix{
left: 146px;
position: sticky;
}
.RE3_LIVESTATUS_lbl_window-3-fix{
left: 158px;
position: sticky;
}
/* Original location */
.RE3_LIVESTATUS_lbl_window-4-fix{
left: 444px;
position: sticky;
}
/* XYZR */
.RE3_LIVESTATUS_lbl_window-5-fix{
left: 368px;
position: sticky;
}
/* HP & IGT */
.RE3_LIVESTATUS_lbl_window-6-fix{
left: 64px;
position: sticky;
}
/* XYZR in decimal */
.RE3_LIVESTATUS_lbl_window-7-fix{
left: 616px;
position: sticky;
}
.RE3_LIVESTATUS_WINDOW-1{
top: 106px;
width: 240px;
height: 104px;
}
.RE3_LIVESTATUS_WINDOW-2{
top: 248px;
width: 240px;
height: 160px;
}
.RE3_LIVESTATUS_WINDOW-3{
top: 106px;
left: 476px;
width: 374px;
height: 442px;
}
.RE3_LIVESTATUS_WINDOW-4{
top: 106px;
left: 874px;
width: 442px;
height: 442px;
}
.RE3_LIVESTATUS_WINDOW-5{
top: 106px;
left: 276px;
width: 174px;
height: 326px;
overflow: hidden;
}
.RE3_LIVESTATUS_WINDOW-6{
top: 468px;
left: 18px;
width: 434px;
height: 80px;
}
.RE3_LIVESTATUS_tabPos-1{
top: 86px;
left: 28px;
}
.RE3_LIVESTATUS_tabPos-2{
left: 28px;
top: 228px;
}
.RE3_LIVESTATUS_tabPos-3{
top: 86px;
left: 487px;
}
.RE3_LIVESTATUS_tabPos-4{
top: 86px;
left: 884px;
}
.RE3_LIVESTATUS_tabPos-5{
top: 86px;
left: 286px;
}
.RE3_LIVESTATUS_tabPos-6{
left: 28px;
top: 446px;
}
.RE3_LIVESTATUS_X_color{
color: #ffe6e6;
text-shadow: 0px 0px 10px #4d0000;
}
.RE3_LIVESTATUS_Y_color{
color: #cdffc2;
text-shadow: 0px 0px 10px #cef6bd94;
}
.RE3_LIVESTATUS_Z_color{
color: #e0e1ff;
text-shadow: 0px 0px 10px #a5a5ff;
}
.RE3_LIVESTATUS_R_color{
color: #e9b0ef;
text-shadow: 0px 0px 10px #b74fc3c7;
}
.RE3_LIVESTATUS_INVENT_ICON_BASE{
zoom: 2;
cursor: pointer;
position: fixed;
margin-top: -2px;
}
.RE3_LIVESTATUS_INVENT_SLOT_1{
top: 80px;
margin-top: 0px !important;
border-top-left-radius: 6px;
}
.RE3_LIVESTATUS_INVENT_SLOT_2{
top: 80px;
left: 184px;
margin-top: 0px !important;
border-top-right-radius: 6px;
}
.RE3_LIVESTATUS_INVENT_SLOT_3{
top: 112px;
margin-top: 0px !important;
}
.RE3_LIVESTATUS_INVENT_SLOT_4{
top: 112px;
left: 184px;
margin-top: 0px !important;
}
.RE3_LIVESTATUS_INVENT_SLOT_5{
top: 144px;
margin-top: 0px !important;
}
.RE3_LIVESTATUS_INVENT_SLOT_6{
top: 144px;
left: 184px;
margin-top: 0px !important;
}
.RE3_LIVESTATUS_INVENT_SLOT_7{
top: 176px;
margin-top: 0px !important;
}
.RE3_LIVESTATUS_INVENT_SLOT_8{
top: 176px;
left: 184px;
margin-top: 0px !important;
}
.RE3_LIVESTATUS_INVENT_SLOT_9{
top: 208px;
margin-top: 0px !important;
border-bottom-left-radius: 6px;
}
.RE3_LIVESTATUS_INVENT_SLOT_10{
top: 208px;
left: 184px;
margin-top: 0px !important;
border-bottom-right-radius: 6px;
}
.RE3_LIVESTATUS_LBL_ITEM{
z-index: 1;
font-size: 24px;
cursor: pointer;
position: absolute;
display: -webkit-box;
}
.RE3_LIVESTATUS_LBL_ITEM_A{
left: 8px;
width: 40px;
}
.RE3_LIVESTATUS_LBL_ITEM_B{
left: 94px;
width: 40px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-1{
top: 44px;
left: 14px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-2{
top: 44px;
left: 102px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-3{
top: 108px;
left: 14px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-4{
top: 108px;
left: 102px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-5{
top: 174px;
left: 14px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-6{
top: 174px;
left: 102px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-7{
top: 240px;
left: 14px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-8{
top: 240px;
left: 102px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-9{
top: 304px;
left: 14px;
}
.RE3_LIVESTATUS_LBL_ITEM_ADJUST-10{
top: 304px;
left: 102px;
}
/*
INI Editor
*/
.INI_general_adjust{
left: 146px;
position: sticky;
}
.INI_MINIWINDOW{
padding: 6px;
overflow: hidden;
position: absolute;
border-radius: 6px;
background-image: linear-gradient(to bottom, #454545, #333);
}
.INI_inernalTab{
color: #fff;
border: none;
outline: none;
padding-top: 4px;
position: absolute;
padding-left: 14px;
padding-right: 14px;
padding-bottom: 4px;
cursor: unset !important;
background-color: #454545;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
text-shadow: 0px 0px 10px #010101;
}
.INI_insertVal{
width: 68px !important;
}
.INI_rangeAudio{
margin-left: 10px;
width: 190px !important;
}
.INI_rangeAudio_fix{
margin-left: 26px;
}
.INI_fixAudioNumberInput{
left: 104px;
position: sticky;
}
.INI_selectBPP{
width: 78px !important;
}
.INI_videoOptionsFix{
top: 6px;
left: 166px;
position: absolute;
}
.INI_pathTextFix{
width: 338px;
margin-top: 8px;
}
.INI_fixMenuSeparador{
margin-top: 14px;
}
.INI_adjustPos1{
left: 540px;
width: 740px;
position: sticky;
}
.INI_adjustPos2{
left: 942px;
position: sticky;
}
.INI_pathRofsFix{
top: 150px;
left: 406px;
position: absolute;
}
.INI_fixInputKB{
left: 450px;
width: 206px;
margin-top: 6px;
position: sticky;
}
.INI_direct_fixInputKB{
left: 276px;
width: 366px;
margin-top: 6px;
position: sticky;
}
.INI_fixInputKB_2{
left: 900px;
margin-top: 6px;
position: sticky;
}
.INI_direct_fixInputKB_2{
left: 724px;
width: 366px;
margin-top: 6px;
position: sticky;
}
.title_mini{
font-size: x-large;
text-shadow: 0px 0px 10px #818181;
}
.INI_clearBtnFix{
top: 8px;
left: 322px;
position: absolute;
}
.INI_dataVars{
left: 830px;
width: 200px;
margin-top: 6px;
position: sticky;
}
.INI_displayDivFix{
margin-left: 4px;
}
.INI_displaySelectFix{
width: 110px;
padding: 2px;
margin-top: 0px;
}
.INI_tabPos-1{
left: 28px;
top: 46px;
}
.INI_tabPos-2{
left: 28px;
top: 168px;
}
.INI_tabPos-3{
left: 28px;
top: 298px;
}
.INI_tabPos-4{
left: 28px;
top: 428px;
}
.INI_tabPos-5{
top: 72px;
left: 494px;
}
.INI_tabPos-6{
top: 56px;
left: 228px;
}
.INI_tabPos-7{
top: 224px;
left: 682px;
}
.INI_tabPos-8{
top: 56px;
left: 682px;
}
.INI_WINDOW-1{
top: 68px;
left: 18px;
height: 80px;
width: 442px;
}
.INI_WINDOW-2{
left: 18px;
top: 190px;
height: 88px;
width: 442px;
}
.INI_WINDOW-3{
left: 18px;
top: 320px;
height: 88px;
width: 442px;
}
.INI_WINDOW-4{
left: 18px;
top: 450px;
height: 60px;
width: 442px;
}
.INI_WINDOW-5{
top: 94px;
left: 482px;
width: 812px;
height: 410px;
}
.INI_WINDOW-6{
top: 78px;
left: 216px;
width: 432px;
height: 436px;
}
.INI_WINDOW-7{
top: 246px;
left: 670px;
width: 354px;
height: 228px;
}
.INI_WINDOW-8{
top: 78px;
left: 670px;
width: 354px;
height: 128px;
}
/*
Settings
*/
.SETTINGS_slider{
width: 200px !important;
}
.SETTINGS_MENUBTNFIX{
width: 370px;
margin-top: 6px !important;
box-shadow: 0px 0px 10px #323232;
}
.SETTINGS_ABA-1{
left: 24px;
top: 56px;
}
.SETTINGS_ABA-2{
left: 424px;
top: 56px;
}
.SETTINGS_ABA-3{
left: 858px;
top: 56px;
}
.SETTINGS_ABA-4{
top: 146px;
left: 24px;
}
.SETTINGS_ABA-5{
top: 332px;
left: 24px;
}
.SETTINGS_ABA-6{
top: 254px;
left: 858px;
}
.SETTINGS_ABA-7{
top: 332px;
left: 858px;
}
.SETTINGS_ABA-8{
top: 392px;
left: 858px;
}
.SETTINGS_WINDOW-1{
top: 78px;
left: 14px;
height: 32px;
width: 374px;
}
.SETTINGS_WINDOW-2{
top: 78px;
left: 414px;
width: 408px;
height: 236px;
}
.SETTINGS_WINDOW-3{
top: 78px;
left: 848px;
width: 450px;
height: 134px;
}
.SETTINGS_WINDOW-4{
top: 168px;
left: 14px;
width: 374px;
height: 146px;
}
.SETTINGS_WINDOW-5{
top: 354px;
left: 14px;
width: 809px;
height: 79px;
}
.SETTINGS_WINDOW-6{
top: 276px;
left: 848px;
width: 450px;
height: 38px;
}
.SETTINGS_WINDOW-7{
top: 354px;
left: 848px;
width: 450px;
height: 20px;
}
.SETTINGS_WINDOW-8{
top: 414px;
left: 848px;
width: 450px;
height: 20px;
}
.SETTINGS_FUTURE{
top: 38px;
left: 10px;
width: 442px;
position: absolute;
}
/*
SLD Layer
*/
.RDT_SLD_mainMenuLeftFix{
position: sticky;
left: 403px !important;
}
.RDT_SLD_selectFix{
width: 120px;
}
.RDT_SLD_LAYER_otherInfo{
color: #fff;
width: 762px;
padding: 6px;
border-radius: 6px;
background-image: linear-gradient(to bottom, #768593, #3a4753);
}
.RDT_SLD_LAYER_CANVAS{
top: 98px;
color: #fff;
left: 802px;
width: 507px;
height: 380px;
overflow: hidden;
position: absolute;
background-color: #000;
box-shadow: 0 0 10px #85859d;
}
.RDT_SLD_CANVAS_BG_IMG{
top: 0;
left: 0;
z-index: 0;
opacity: 0.7;
width: 523px;
height: 380px;
position: absolute;
background-size: contain;
background-repeat: no-repeat;
background-image: linear-gradient(to bottom, #222, #000);
}
.RDT_SLD_LAYER_BLOCK_HOLDER{
padding: 4px;
width: 766px;
height: 242px;
overflow: auto;
margin-top: 6px;
}
.SLD_BLOCK_MENU_POSITION{
margin-left: 82px;
margin-top: -36px;
}
.SLD_BLOCK_MENU_SIZEDISPLAYMODE{
margin-left: 184px;
margin-top: -36px;
}
.SLD_BLOCK_MENU_OTHER{
margin-left: 298px;
margin-top: -36px;
}
.RDT_SLD_OPEN_RE3SLDE_btn{
left: 234px;
position: sticky;
}
.RDT_SLD_MASK_IMG_BLOCK{
zoom: 1.61;
opacity: 1;
position: absolute;
z-index: 2 !important;
}
.RDT_SLD_CANVAS_CONTROLS{
top: 53px;
z-index: 4;
color: #fff;
left: 802px;
width: 498px;
height: 38px;
padding-left: 10px;
border-radius: 6px;
position: absolute;
background-image: linear-gradient(to bottom, #879396, #4a4f50);
}
/*
Mix Edit
*/
/* 01: Combine */
.MIX_fixLabel{
left: 72px;
position: sticky;
}
/* 00: Reload / Sum */
.MIX_fixLabel-2{
left: 68px;
position: sticky;
}
/* 03: Change Bullet Function (Handgun / Magnum) */
.MIX_fixLabel-4{
left: 102px;
position: sticky;
}
/* 04: Change Bullet Function (G. Launcher) */
.MIX_fixLabel-3{
left: 102px;
position: sticky;
}
/* 05: Change Bullet Function (G. Launcher) */
.MIX_fixLabel-5{
left: 94px;
position: sticky;
}
/* 06: Add infinite ammo */
.MIX_fixLabel-6{
left: 130px;
position: sticky;
}
.MIX-combine-holder{
padding: 4px;
width: 1297px;
height: 470px;
overflow: auto;
margin-top: 4px;
border-radius: 6px;
}
.MIX_preview_item_shadow{
z-index: 2;
position: sticky;
box-shadow: 0 0 4px #09002e;
}
.MIX_preview_exchange_A{
z-index: 1;
top: 185px;
left: 50px;
width: 124px;
position: absolute;
}
.MIX_preview_exchange_B{
z-index: 0;
top: 148px;
left: 104px;
width: 124px;
position: absolute;
filter: hue-rotate(140deg);
}
.MIX_select_fix{
left: 812px;
width: 480px;
position: sticky;
}
.MIX_select_fix-2{
width: 310px;
}
.MIX_select_fix-3{
left: 848px;
width: 447px;
position: sticky;
}
.MIX_img_plus_fix{
width: 20px;
margin-left: 4px;
margin-right: 4px;
margin-bottom: 7px;
}
.MIX_img_equals_fix{
width: 28px;
padding-left: 4px;
padding-right: 4px;
margin-bottom: 10px;
}
.MIX_edit_preview_canvas{
zoom: 2.4;
width: 98%;
margin-top: 2px;
padding-top: 4px;
border-radius: 6px;
background-color: #000040;
box-shadow: 0 0 10px #0000403d;
}
.MIX-preview-04-img{
position: absolute;
top: 202px;
z-index: 4;
zoom: 0.8;
}
.MIX_IMG_04_FIX_01{
left: 48px;
}
.MIX_IMG_04_FIX_02{
left: 116px;
}
.MIX_IMG_04_FIX_03{
left: 189px;
}
.MIX_IMG_04_FIX_04{
left: 256px;
}
.MIX-func-sum-bg{
background-image: linear-gradient(to bottom, #497d54, #2d5035);
}
.MIX-func-comb-bg{
background-image: linear-gradient(to bottom, #497188, #2f4a5a);
}
.MIX-func-reloading-bg{
background-image: linear-gradient(to bottom, #816d96, #493e54);
}
.MIX-func-bullet-handMag-bg{
background-image: linear-gradient(to bottom, #5a688e, #222b3e);
}
.MIX-func-bullet-gLauncher-bg{
background-image: linear-gradient(to bottom, #987397, #54404f);
}
.MIX-func-bullet-powderGL-bg{
background-image: linear-gradient(to bottom, #885238, #583b0f);
}
.MIX-func-infBullets-bg{
background-image: linear-gradient(to bottom, #a26e6e, #805370);
}
/*
RE3SET
RE3 Settings Editor
*/
.RE3SET_itemDesc_topDiv{
top: 8px;
left: 94px;
display: none;
position: absolute;
}
.RE3SET_itemDesc_holder{
top: 52px;
width: 1318px;
height: 478px;
overflow: auto;
border-radius: 6px;
padding-right: 4px;
position: absolute;
}
.RE3SET-message-content{
width: 84%;
min-height: 18px;
margin-top: -18px;
margin-left: 84px;
text-align: -webkit-left;
}
.RE3SET_OTHER_startPosTab{
top: 61px;
left: 20px;
}
.RE3SET_OTHER_startPosDiv{
top: 84px;
width: 350px;
height: 214px;
}
.RE3SET_OTHER_STARTPOS_zFix{
margin-top: 10px;
}
.RE3SET_zFix{
width: 98%;
z-index: 1;
position: absolute;
}
.RE3SET_OTHER_startPosCamPrevDiv{
top: 50px;
left: 180px;
border-radius: 6px;
position: absolute;
}
.RE3SET_OTHER_startPosCamPrevImg{
width: 160px;
border-radius: 2px;
box-shadow: 0 0 10px #0000005e;
}
.RE3SET_OTHER_miniDivTab_base{
z-index: 1;
color: #fff;
border: none;
outline: none;
padding-top: 4px;
padding-left: 8px;
padding-right: 8px;
position: absolute;
padding-bottom: 4px;
text-shadow: 0 0 10px #000;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
background-image: linear-gradient(to bottom, #656565, #404040);
}
.RE3SET_OTHER_miniDiv_base{
padding: 6px;
border-radius: 6px;
position: absolute;
box-shadow: 0 0 10px #161616;
background-image: linear-gradient(to bottom, #404040, #222);
}
.RE3SET_EDIT_itemstart_infos{
width: 400px;
position: absolute;
}
.RE3SET_OTHER_startPos_inputRoomFix{
width: 18px !important;
}
.RE3SET_GLOBAL_APPLY{
z-index: 1;
top: 480px;
left: 1078px;
position: absolute;
}
.RE3SET_OTHER_startPos_LIVETSTATUS{
top: 190px;
left: 36px;
display: none;
position: absolute;
}
.RE3SET_STARTPOS_IMG_BG_DIV{
top: 0px;
z-index: 0;
height: 100%;
border-radius: 4px;
position: absolute;
background-color: #000;
width: calc(100% - 6px);
background-size: auto 490px;
background-position: center;
background-repeat: no-repeat;
-webkit-mask-image: linear-gradient(to left, #00000045, #0000);
}
.RE3SET_EDIT_itemBackground{
top: 0px;
z-index: -1;
height: 100%;
border-radius: 4px;
position: absolute;
background-color: #000;
width: calc(100% - 10px);
background-size: auto 490px;
background-position: center;
background-repeat: no-repeat;
-webkit-mask-image: linear-gradient(to left, #0000007d, #0000);
}
.RE3SET_EDIT_selectItemStart{
width: 384px;
text-transform: none !important;
}
.RE3SET_EDIT_startItemQuant{
width: 40px !important;
}
.RE3SET_DIV_startItemsApply{
top: 396px;
left: 22px;
width: 92%;
position: absolute;
}
.RE3SET_BTN_APPLYSTARTITEM{
width: 194px;
}
.RE3SET_editStartItemHolder{
top: 72px;
z-index: 0;
left: 890px;
color: #fff;
width: 422px;
height: 438px;
padding: 10px;
position: absolute;
border-radius: 4px;
background-image: linear-gradient(to bottom, #4067a8, #1a2f49);
}
.RE3SET_DIV_itemsAllHolder{
top: 14px;
left: 222px;
width: auto;
height: auto;
position: absolute;
}
.RE3SET_TAB_itemEasy{
top: 53px;
z-index: 2;
left: 14px;
color: #fff;
border: none;
outline: none;
padding-top: 2px;
position: absolute;
padding-left: 14px;
padding-right: 14px;
padding-bottom: 2px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
background-image: linear-gradient(to bottom, #7d67c9, #5842a2);
}
.RE3SET_TAB_itemHard{
top: 53px;
z-index: 2;
left: 454px;
color: #fff;
border: none;
outline: none;
padding-top: 2px;
position: absolute;
padding-left: 14px;
padding-right: 14px;
padding-bottom: 2px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
background-image: linear-gradient(to bottom, #4710ff, #2700ab);
}
.RE3SET_DIV_itemEasy_Holder{
top: 72px;
z-index: 1;
color: #fff;
width: 432px;
height: 434px;
border-radius: 6px;
position: absolute;
box-shadow: 0 0 10px #222;
background-image: linear-gradient(to bottom, #5842a2, #423471);
}
.RE3SET_DIV_itemHard_Holder{
top: 72px;
z-index: 1;
left: 440px;
color: #fff;
width: 432px;
height: 434px;
border-radius: 6px;
position: absolute;
box-shadow: 0 0 10px #222;
background-image: linear-gradient(to bottom, #2700ab, #1d066d);
}
.RE3SET_TAB_jillItems{
top: 7px;
left: 16px;
color: #fff;
border: none;
outline: none;
cursor: inherit;
padding-top: 4px;
padding-left: 8px;
position: absolute;
padding-right: 8px;
padding-bottom: 4px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
box-shadow: 0 0 10px #07004061;
background-image: linear-gradient(to bottom, #2a2a65, #000040);
}
.RE3SET_DIV_itemEasy_jillHolder{
top: 30px;
left: 4px;
width: 208px;
height: 400px;
border-radius: 6px;
position: absolute;
background-color: #00002b;
box-shadow: 0 0 10px #07004061;
}
.RE3SET_TAB_carlosItems{
top: 7px;
left: 232px;
color: #fff;
border: none;
outline: none;
cursor: inherit;
padding-top: 4px;
padding-left: 8px;
position: absolute;
padding-right: 8px;
padding-bottom: 4px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
box-shadow: 0 0 10px #07004061;
background-image: linear-gradient(to bottom, #2a2a65, #000040);
}
.RE3SET_DIV_itemEasy_carlosHolder{
top: 30px;
left: 220px;
width: 208px;
height: 400px;
border-radius: 6px;
position: absolute;
background-color: #00002b;
box-shadow: 0 0 10px #07004061;
}
/* Items Labels*/
.RE3SET_LBL_inventItem{
z-index: 3;
color: #fff;
font-size: 26px;
cursor: pointer;
position: absolute;
display: -webkit-box;
}
.RE3SET_LBL_inventAjust_1{
top: 48px;
left: 10px;
}
.RE3SET_LBL_inventAjust_2{
top: 48px;
left: 114px;
}
.RE3SET_LBL_inventAjust_3{
top: 128px;
left: 10px;
}
.RE3SET_LBL_inventAjust_4{
top: 128px;
left: 114px;
}
.RE3SET_LBL_inventAjust_5{
top: 208px;
left: 10px;
}
.RE3SET_LBL_inventAjust_6{
top: 208px;
left: 114px;
}
.RE3SET_LBL_inventAjust_7{
top: 288px;
left: 10px;
}
.RE3SET_LBL_inventAjust_8{
top: 288px;
left: 114px;
}
.RE3SET_LBL_inventAjust_9{
top: 368px;
left: 10px;
}
.RE3SET_LBL_inventAjust_10{
top: 368px;
left: 114px;
}
/* Items Imgs */
.RE3SET_IMG_item_1{
width: 104px;
z-index: 2;
cursor: pointer;
border-top-left-radius: 10px;
}
.RE3SET_IMG_item_2{
width: 104px;
z-index: 2;
cursor: pointer;
position: absolute;
border-top-right-radius: 10px;
}
.RE3SET_IMG_item_3{
top: 80px;
z-index: 2;
left: 0px;
width: 104px;
cursor: pointer;
position: absolute;
}
.RE3SET_IMG_item_4{
top: 80px;
z-index: 2;
width: 104px;
cursor: pointer;
position: absolute;
}
.RE3SET_IMG_item_5{
left: 0px;
z-index: 2;
top: 160px;
width: 104px;
cursor: pointer;
position: absolute;
}
.RE3SET_IMG_item_6{
top: 160px;
z-index: 2;
width: 104px;
cursor: pointer;
position: absolute;
}
.RE3SET_IMG_item_7{
left: 0px;
z-index: 2;
top: 240px;
width: 104px;
cursor: pointer;
position: absolute;
}
.RE3SET_IMG_item_8{
top: 240px;
z-index: 2;
width: 104px;
cursor: pointer;
position: absolute;
}
.RE3SET_IMG_item_9{
left: 0px;
z-index: 2;
top: 320px;
width: 104px;
cursor: pointer;
position: absolute;
border-bottom-left-radius: 10px;
}
.RE3SET_IMG_item_10{
top: 320px;
z-index: 2;
width: 104px;
cursor: pointer;
position: absolute;
border-bottom-right-radius: 10px;
}
/*
DROP
*/
.DROP-func-comb-bg{
background-image: linear-gradient(to bottom, #497188, #2f4a5a);
}
.DROP_imgPrev{
width: 60px;
border-radius: 4px;
box-shadow: 0 0 6px #002;
}
.DROP_divLeft{
margin-top: -50px;
margin-left: 66px;
}
.DROP_stickyFix{
left: 820px;
position: sticky;
}
/*
IEDIT
*/
.IEDIT_searchItemId_DIV{
top: 5px;
left: 92px;
width: 400px;
position: absolute;
}
.IEDIT_searchItemId_lbl{
top: 4px;
position: absolute;
}
.IEDIT_searchItemId_input{
color: #0f0;
left: 130px;
width: 262px;
height: 17px;
padding: 4px;
border: none;
outline: none;
border-radius: 2px;
position: absolute;
background-color: #0000;
text-transform: uppercase;
background-image: linear-gradient(to right, #000, #0000);
}
.IEDIT_lbl_item_sticky{
left: 110px;
position: sticky;
}
.IEDIT_lbl_item_hex_fix{
padding-top: 6px;
}
.IEDIT_ITEM_heightFix{
height: 126px;
}
.IEDIT_ITEM_holder{
width: 1314px;
height: 480px;
overflow: auto;
padding-left: 4px;
padding-right: 4px;
border-radius: 6px;
}
.IEDIT_edit_stickyFix{
position: sticky;
left: 866px;
}
.IEDIT_edit_select_fix{
width: 304px;
}
/*
R3ditor Patcher
*/
.R3_Patcher_main_menu_css{
top: 120px;
left: 450px;
color: #fff;
width: 440px;
padding: 4px;
height: 344px;
display: none;
overflow: hidden;
position: absolute;
border-radius: 6px;
box-shadow: 0 0 500px #5e337963;
background-image: linear-gradient(to bottom, #444, #222);
}
.R3_Patcher_details_holder_css{
color: #fff;
width: 420px;
padding: 6px;
height: 290px;
overflow: auto;
margin-top: 4px;
margin-left: 4px;
border-radius: 4px;
margin-bottom: 10px;
box-shadow: 0 0 7px #000;
background-image: linear-gradient(to bottom, #1100178c, #050417ba);
}
.R3_Patcher_btnFix{
width: 212px;
margin-top: -4px;
border-radius: 2px;
}
/*
3D props
*/
.RDT_3DProps_XYZR_fix{
left: 60px;
margin-top: 4px;
margin-left: 6px;
position: sticky;
width: 42px !important;
}
.RDT_3DProps_extraDivFix{
top: 48px;
left: 120px;
margin-top: 4px;
position: absolute;
}
.RDT_3DProps_extraTextValueFix{
left: 938px;
width: 34px;
position: sticky;
}
/*
ARD Enabler
*/
.UTILS_ARDEnabler_divHolder{
top: 310px;
left: 450px;
display: none;
position: absolute;
}
.FILELIST_ARDEnabler_warnDiv{
top: 180px;
left: 172px;
position: absolute;
text-shadow: 0 0 20px #009 !important;
}
/*
XDELTA
*/
.R3_Patcher_Xdelta_holderFix{
top: 244px !important;
left: 284px !important;
width: 812px !important;
height: 188px !important;
}
.R3_Patcher_Xdelta_infoFix{
overflow: hidden;
width: 794px !important;
height: 132px !important;
}
.R3_Patcher_Xdelta_openBtnFix{
left: 724px;
position: sticky;
}
.R3_Patcher_Xdelta_inputFinalNameFix{
width: 594px;
outline: none;
margin-top: 0px;
box-shadow: none;
background-color: #0000;
text-transform: none !important;
background-image: linear-gradient(to right, #000, #0000) !important;
}
.R3_Patcher_Xdelta_applyBtnDiv{
top: 136px;
width: 98%;
position: absolute;
background-color: #0000 !important;
}
.R3_Patcher_Xdelta_lbl{
position: fixed;
overflow: hidden;
max-width: 596px;
margin-top: -21px;
margin-left: 112px;
} | 0.409575 | 0.050776 |
*{
margin: 0;
padding: 0;
}
a{
text-decoration: none;
}
html,body{
width: 100%;
height: 100%;
font-family: "黑体";
/*font-family: "微软雅黑";*/
}
input{
outline: none;
border: none;
}
input::-webkit-input-placeholder{
color: #a9a9a9;
}
button{
border: none;
outline: none;
}
.clearfix::after{
content: " ";
display: block;
height: 0;
line-height: 0;
clear: both;
zoom: 1;
}
.wrap{
width: 1000px;
margin: 0 auto;
position: relative;
}
.hidden{
display: none;
}
/*header部分*/
.header{
width: 100%;
height: 30px;
line-height: 30px;
font-size: 12px;
color: #868686;
background-color: #f5f5f5;
}
.header_phone{
background: url(../img/icon-call.png) left no-repeat ;
float: left;
padding-left: 22px;
}
.header_welcome{
float: right;
}
.header_welcome a{
color: #2da5e1;
}
.header_welcome a:nth-child(1){
margin-right: 15px;
margin-left: 30px;
}
.header_welcome a:nth-child(2) {
margin-right: 75px;
}
/*search区域*/
.search{
height: 90px;
background-color: #fff;
}
.search_log{
display: inline-block;
float: left;
width: 400px;
height: 90px;
background: url(../img/logo.png) center center no-repeat;
background-size:100% 90%;
}
.search_log:hover{
cursor: pointer;
}
.search_input{
position: relative;
float: right;
width: 325px;
height: 38px;
background: url(../img/ui-search.jpg) no-repeat;
background-size: cover;
margin-top: 30px;
}
.search_input-selected{
display: inline-block;
line-height: 38px;
text-indent: 13px;
width: 70px;
color: #fff;
}
.search_input-list{
display: none;
position: absolute;
width: 66px;
left: 2px;
top: 38px;
z-index: 2;
font-size: 14px;
line-height: 24px;
background-color: #fff;
box-shadow: 3px 3px 5px rgba(0,0,0,.2);
}
.search_input-list a{
color: #a5a2a2;
display: block;
text-align: center;
}
.search_input-list a:hover{
background-color: #ebeef5;
}
.search__input-text{
margin-top: 13px;
}
.search_input>a{
display: block;
height: 38px;
width: 43px;
float: right;
}
/*nav模块*/
.nav{
background-color: #60bff2;
width: 100%;
height: 35px;
line-height: 35px;
}
.nav-item{
float: left;
width: 110px;
color: #fff;
text-align: center;
}
.nav-item:first-child{
margin-left: 10px;
}
.nav-item:hover{
background-color: #87CEEB;
}
.nav .right{
margin-right: 0;
float:right;
text-align: right;
}
/*hospital-address模块*/
.hospital__address{
background-color: #f7f7f7;
margin-top: 30px;
padding: 0 25px;
width: 950px;
}
.hospital__address-caption{
height: 53px;
line-height: 53px;
border-bottom: 1px solid #dcdddd;
font-size: 13px;
color: #000;
text-align: center;
}
.hospital__address-caption a{
color: #f29600;
font-size: 12px;
margin-left: 13px;
}
.hospital__address-caption span{
color: #0000ff;
margin-left: 10px;
}
.hospital__address-caption-lf{
font-size: 18px;
float: left;
}
.hospital__address-caption-rt{
float: right;
}
.hospital__address-detail{
margin-top: 10px;
}
.hospital__address-detail >div{
float: left;
}
.hospital__address-detail >div:nth-child(3){
float: right;
background: url(../img/map-1.png) no-repeat center center;
width: 250px;
height: 165px;
margin-bottom: 30px;
}
.hospital__address-detail-imgL{
width: 200px;
height: 150px;
background: url(../img/hospital-1.jpg) no-repeat center center;
}
.hospital__address-detail-desc{
width: 463px;
margin-left: 25px;
color: #888;
font-size: 12px;
line-height: 20px;
}
.hospital__address-detail-desc p{
margin-top: 10px;
padding-left: 25px;
background-repeat: no-repeat;
background-image: url(../img/address-pt.png);
background-position:0 4px;
}
/*hospital__detail 科室详情模块*/
.hospital__detail{
margin-top: 40px;
}
.hospital__detail__nav{
border-bottom: 2px solid #60bff2;
margin-bottom: 20px;
}
.hospital__detail__nav a{
display: inline-block;
width: 110px;
height: 30px;
color: #00bff2;
text-align: center;
line-height: 30px;
font-size: 14px;
}
.hospital__detail__nav .nav-item-focus{
color: #fff;
background-color: #60bff2;
}
.hospital__detail-group{
}
/*预约*/
.hospital__detail__group-department{
float: left;
width: 705px;
border: 1px solid #f4f6fa;
border-bottom: none;
font-size: 16px;
}
.hospital__detail__group-department:last-child{
border-bottom: 1px solid #f4f6fa;
}
.hospital__detail__group-item:last-child{
border: none;
}
.hospital__detail__group-caption{
height: 45px;
background-color: #f4f6fa;
line-height: 45px;
color: #000;
font-size: 16px;
text-indent: 30px;
}
.hospital__detail__group-item{
border-bottom: 1px solid #f4f6fa;
height: auto;
/*overflow: hidden;*/
}
.hospital__detail__group-item-title{
width: 145px;
float: left;
background-color: #f2fbff;
color: #888;
text-align: center;
line-height: 35px;
height: 90px;
}
.hospital__detail__group-item-detail{
width: 560px;
float: right;
}
.hospital__detail__group-rule{
float: right;
width: 270px;
height: 280px;
border: 1px solid #f4f6fa;
overflow:auto;
}
.hospital__detail__group-item-detail a{
display: inline-block;
width: 100px;
height: 30px;
line-height: 30px;
font-size: 16px;
color: #4c4948;
font-weight: 700;
margin-left: 20px;
}
/*预约规则*/
.hospital__detail__group-rule-caption{
height: 40px;
background-color: #f4f6fa;
color: #555;
line-height: 40px;
text-indent: 10px;
}
.hospital__detail__group-rule-caption span{
color: #00b3ea;
font-size: 12px;
margin-top: 20px;
}
.hospital__detail__group-rule-item{
margin-top: 8px;
padding:0 10px;
font-size: 12px;
}
.hospital__detail__group-rule-item .rule-item-caption{
color: #555;
width: 68px;
font-size: 13px;
font-weight: 700;
}
.hospital__detail__group-rule-item span {
color: #888;
width: 160px;
display: inline-block;
vertical-align: top;
}
.hospital__detail__group-rule-item .special{
margin-top: 1em;
}
.hospital__detail__group p{
padding: 10px;
color: #3F3F3F;
font-size: 14px;
line-height: 20px;
}
.hospital__detail__group h4{
text-align: center;
font-size: 24px;
}
.hospital__detail__group h6{
padding-top: 30px;
}
/*停诊信息*/
.stop__information-caption{
text-align: center;
height: 60px;
line-height: 60px;
margin-top: 20px;
}
.stop__information-detail{
border-collapse:collapse;
font-size: 12px;
text-align: center;
}
.stop__information-detail tr{
line-height: 30px;
}
.stop__information-detail td{
border: 1px solid #dcdddd;
min-width: 50px;
padding: 0 20px;
}
/*查询*/
.hospital__detail-search{
margin-top: 80px;
height: 200px;
border-top: 1px solid #dcdddd;
border-bottom: 1px solid #dcdddd;
text-align: center;
line-height: 200px;
font-size: 16px;
}
.hospital__detail-search button{
width: 105px;
height: 30px;
background-color: #00b3ec;
text-align: center;
line-height: 30px;
color: #fff;
/*margin-left: 5px;*/
}
.hospital__detail-search button:hover{
cursor: pointer;
}
.hospital__detail-search input{
display: inline-block;
border: 1px solid #dcdcdc;
width: 195px;
height: 28px;
/*margin-left: 10px;*/
}
/*底部*/
.footer{
margin-top: 80px;
height: 70px;
background-color: #eceef2;
color: #acacac;
text-align: center;
line-height: 80px;
font-size: 12px;
width: 100%;
} | htmlProject/8HospitalRegistration/css/index.css | *{
margin: 0;
padding: 0;
}
a{
text-decoration: none;
}
html,body{
width: 100%;
height: 100%;
font-family: "黑体";
/*font-family: "微软雅黑";*/
}
input{
outline: none;
border: none;
}
input::-webkit-input-placeholder{
color: #a9a9a9;
}
button{
border: none;
outline: none;
}
.clearfix::after{
content: " ";
display: block;
height: 0;
line-height: 0;
clear: both;
zoom: 1;
}
.wrap{
width: 1000px;
margin: 0 auto;
position: relative;
}
.hidden{
display: none;
}
/*header部分*/
.header{
width: 100%;
height: 30px;
line-height: 30px;
font-size: 12px;
color: #868686;
background-color: #f5f5f5;
}
.header_phone{
background: url(../img/icon-call.png) left no-repeat ;
float: left;
padding-left: 22px;
}
.header_welcome{
float: right;
}
.header_welcome a{
color: #2da5e1;
}
.header_welcome a:nth-child(1){
margin-right: 15px;
margin-left: 30px;
}
.header_welcome a:nth-child(2) {
margin-right: 75px;
}
/*search区域*/
.search{
height: 90px;
background-color: #fff;
}
.search_log{
display: inline-block;
float: left;
width: 400px;
height: 90px;
background: url(../img/logo.png) center center no-repeat;
background-size:100% 90%;
}
.search_log:hover{
cursor: pointer;
}
.search_input{
position: relative;
float: right;
width: 325px;
height: 38px;
background: url(../img/ui-search.jpg) no-repeat;
background-size: cover;
margin-top: 30px;
}
.search_input-selected{
display: inline-block;
line-height: 38px;
text-indent: 13px;
width: 70px;
color: #fff;
}
.search_input-list{
display: none;
position: absolute;
width: 66px;
left: 2px;
top: 38px;
z-index: 2;
font-size: 14px;
line-height: 24px;
background-color: #fff;
box-shadow: 3px 3px 5px rgba(0,0,0,.2);
}
.search_input-list a{
color: #a5a2a2;
display: block;
text-align: center;
}
.search_input-list a:hover{
background-color: #ebeef5;
}
.search__input-text{
margin-top: 13px;
}
.search_input>a{
display: block;
height: 38px;
width: 43px;
float: right;
}
/*nav模块*/
.nav{
background-color: #60bff2;
width: 100%;
height: 35px;
line-height: 35px;
}
.nav-item{
float: left;
width: 110px;
color: #fff;
text-align: center;
}
.nav-item:first-child{
margin-left: 10px;
}
.nav-item:hover{
background-color: #87CEEB;
}
.nav .right{
margin-right: 0;
float:right;
text-align: right;
}
/*hospital-address模块*/
.hospital__address{
background-color: #f7f7f7;
margin-top: 30px;
padding: 0 25px;
width: 950px;
}
.hospital__address-caption{
height: 53px;
line-height: 53px;
border-bottom: 1px solid #dcdddd;
font-size: 13px;
color: #000;
text-align: center;
}
.hospital__address-caption a{
color: #f29600;
font-size: 12px;
margin-left: 13px;
}
.hospital__address-caption span{
color: #0000ff;
margin-left: 10px;
}
.hospital__address-caption-lf{
font-size: 18px;
float: left;
}
.hospital__address-caption-rt{
float: right;
}
.hospital__address-detail{
margin-top: 10px;
}
.hospital__address-detail >div{
float: left;
}
.hospital__address-detail >div:nth-child(3){
float: right;
background: url(../img/map-1.png) no-repeat center center;
width: 250px;
height: 165px;
margin-bottom: 30px;
}
.hospital__address-detail-imgL{
width: 200px;
height: 150px;
background: url(../img/hospital-1.jpg) no-repeat center center;
}
.hospital__address-detail-desc{
width: 463px;
margin-left: 25px;
color: #888;
font-size: 12px;
line-height: 20px;
}
.hospital__address-detail-desc p{
margin-top: 10px;
padding-left: 25px;
background-repeat: no-repeat;
background-image: url(../img/address-pt.png);
background-position:0 4px;
}
/*hospital__detail 科室详情模块*/
.hospital__detail{
margin-top: 40px;
}
.hospital__detail__nav{
border-bottom: 2px solid #60bff2;
margin-bottom: 20px;
}
.hospital__detail__nav a{
display: inline-block;
width: 110px;
height: 30px;
color: #00bff2;
text-align: center;
line-height: 30px;
font-size: 14px;
}
.hospital__detail__nav .nav-item-focus{
color: #fff;
background-color: #60bff2;
}
.hospital__detail-group{
}
/*预约*/
.hospital__detail__group-department{
float: left;
width: 705px;
border: 1px solid #f4f6fa;
border-bottom: none;
font-size: 16px;
}
.hospital__detail__group-department:last-child{
border-bottom: 1px solid #f4f6fa;
}
.hospital__detail__group-item:last-child{
border: none;
}
.hospital__detail__group-caption{
height: 45px;
background-color: #f4f6fa;
line-height: 45px;
color: #000;
font-size: 16px;
text-indent: 30px;
}
.hospital__detail__group-item{
border-bottom: 1px solid #f4f6fa;
height: auto;
/*overflow: hidden;*/
}
.hospital__detail__group-item-title{
width: 145px;
float: left;
background-color: #f2fbff;
color: #888;
text-align: center;
line-height: 35px;
height: 90px;
}
.hospital__detail__group-item-detail{
width: 560px;
float: right;
}
.hospital__detail__group-rule{
float: right;
width: 270px;
height: 280px;
border: 1px solid #f4f6fa;
overflow:auto;
}
.hospital__detail__group-item-detail a{
display: inline-block;
width: 100px;
height: 30px;
line-height: 30px;
font-size: 16px;
color: #4c4948;
font-weight: 700;
margin-left: 20px;
}
/*预约规则*/
.hospital__detail__group-rule-caption{
height: 40px;
background-color: #f4f6fa;
color: #555;
line-height: 40px;
text-indent: 10px;
}
.hospital__detail__group-rule-caption span{
color: #00b3ea;
font-size: 12px;
margin-top: 20px;
}
.hospital__detail__group-rule-item{
margin-top: 8px;
padding:0 10px;
font-size: 12px;
}
.hospital__detail__group-rule-item .rule-item-caption{
color: #555;
width: 68px;
font-size: 13px;
font-weight: 700;
}
.hospital__detail__group-rule-item span {
color: #888;
width: 160px;
display: inline-block;
vertical-align: top;
}
.hospital__detail__group-rule-item .special{
margin-top: 1em;
}
.hospital__detail__group p{
padding: 10px;
color: #3F3F3F;
font-size: 14px;
line-height: 20px;
}
.hospital__detail__group h4{
text-align: center;
font-size: 24px;
}
.hospital__detail__group h6{
padding-top: 30px;
}
/*停诊信息*/
.stop__information-caption{
text-align: center;
height: 60px;
line-height: 60px;
margin-top: 20px;
}
.stop__information-detail{
border-collapse:collapse;
font-size: 12px;
text-align: center;
}
.stop__information-detail tr{
line-height: 30px;
}
.stop__information-detail td{
border: 1px solid #dcdddd;
min-width: 50px;
padding: 0 20px;
}
/*查询*/
.hospital__detail-search{
margin-top: 80px;
height: 200px;
border-top: 1px solid #dcdddd;
border-bottom: 1px solid #dcdddd;
text-align: center;
line-height: 200px;
font-size: 16px;
}
.hospital__detail-search button{
width: 105px;
height: 30px;
background-color: #00b3ec;
text-align: center;
line-height: 30px;
color: #fff;
/*margin-left: 5px;*/
}
.hospital__detail-search button:hover{
cursor: pointer;
}
.hospital__detail-search input{
display: inline-block;
border: 1px solid #dcdcdc;
width: 195px;
height: 28px;
/*margin-left: 10px;*/
}
/*底部*/
.footer{
margin-top: 80px;
height: 70px;
background-color: #eceef2;
color: #acacac;
text-align: center;
line-height: 80px;
font-size: 12px;
width: 100%;
} | 0.292899 | 0.069954 |
.treeItemImage {
margin-right: 8px;
vertical-align: middle;
}
@sprite .treeItemSelected {
gwt-image: "arrow_left_white";
color: blue;
cursor: default;
font-weight: normal;
background-position: right center;
background-repeat: no-repeat;
}
.group {
font-weight: bold;
cursor: pointer;
display: block !important;
}
.title {
font-weight: bold;
color: darkblue;
}
.entry {
color: #3d73d5;
font-weight: normal;
cursor: pointer;
line-height: 26px;
display: block !important;
}
.entry:HOVER {
background-color: skyblue;
}
.entryImportent {
color: #ff0000;
font-weight: normal;
cursor: pointer;
line-height: 26px;
display: block !important;
}
.entryImportent:HOVER {
background-color: skyblue;
}
.entrySelected {
background-color: white;
}
.entrySelected:HOVER {
background-color: white;
}
.tableHeader {
font-weight: bold;
}
.name {
color: red;
}
.type {
color: darkblue;
}
.typeLink {
color: blue;
text-decoration: underline;
cursor: pointer;
}
.summary {
padding-top: 5px;
color: green;
}
.dlgSummary{
color: green;
font-weight: normal;
font-size: 12px;
}
.text {
color: black;
}
.row0 {
background-color: white;
}
.row1 {
background-color: #f8f8f8;
}
.rowh {
background-color: skyblue;
}
.cssString {
color: green;
}
.cssNumber {
color: darkorange;
}
.cssBoolean {
color: blue;
}
.cssNull {
color: magenta;
}
.cssKey {
color: red;
}
.cssTable {
background-color: #a0a0a0;
margin: 10px 0px;
width: 100%;
border: 0px;
}
.cssTable td {
padding: 10px;
}
.pre {
font-family: 'Anonymous Pro', sans-serif;
}
.entryTitle {
color: black;
font-size: 2em;
font-weight: bold;
}
.rowTitle {
background-color: #f0f0f0;
}
.desc {
color: green;
line-height: 28px;
}
.dlg {
background-color: white;
border: solid 5px #a0a0a0;
}
.btn {
background-color: skyblue;
color: black;
border: solid 1px darkblue;
height: 34px;
line-height: 28px;
padding: 0px 10px;
font-size: large;
}
.btn:HOVER {
background-color: darkblue;
color: white;
border: solid 1px skyblue;
}
.imgButton {
background-color: white;
border: solid 1px white;
margin-right: 8px;
}
.imgButton:HOVER {
background-color: skyblue;
border: solid 1px skyblue;
}
.refLink {
padding: 0px 3px;
color: skyblue;
cursor: pointer;
}
.refLink:hover {
text-decoration: underline;
}
.tag {
padding: 0px 3px 2px 3px;
font-size: 8px;
color: yellow;
margin: 0px;
line-height: 26px;
border-radius: 3px;
background-color: royalblue;
height: 26px;
vertical-align: bottom;
margin-right: 3px;
} | mapway-doc-ui/src/main/java/cn/mapway/document/ui/client/resource/style.css | .treeItemImage {
margin-right: 8px;
vertical-align: middle;
}
@sprite .treeItemSelected {
gwt-image: "arrow_left_white";
color: blue;
cursor: default;
font-weight: normal;
background-position: right center;
background-repeat: no-repeat;
}
.group {
font-weight: bold;
cursor: pointer;
display: block !important;
}
.title {
font-weight: bold;
color: darkblue;
}
.entry {
color: #3d73d5;
font-weight: normal;
cursor: pointer;
line-height: 26px;
display: block !important;
}
.entry:HOVER {
background-color: skyblue;
}
.entryImportent {
color: #ff0000;
font-weight: normal;
cursor: pointer;
line-height: 26px;
display: block !important;
}
.entryImportent:HOVER {
background-color: skyblue;
}
.entrySelected {
background-color: white;
}
.entrySelected:HOVER {
background-color: white;
}
.tableHeader {
font-weight: bold;
}
.name {
color: red;
}
.type {
color: darkblue;
}
.typeLink {
color: blue;
text-decoration: underline;
cursor: pointer;
}
.summary {
padding-top: 5px;
color: green;
}
.dlgSummary{
color: green;
font-weight: normal;
font-size: 12px;
}
.text {
color: black;
}
.row0 {
background-color: white;
}
.row1 {
background-color: #f8f8f8;
}
.rowh {
background-color: skyblue;
}
.cssString {
color: green;
}
.cssNumber {
color: darkorange;
}
.cssBoolean {
color: blue;
}
.cssNull {
color: magenta;
}
.cssKey {
color: red;
}
.cssTable {
background-color: #a0a0a0;
margin: 10px 0px;
width: 100%;
border: 0px;
}
.cssTable td {
padding: 10px;
}
.pre {
font-family: 'Anonymous Pro', sans-serif;
}
.entryTitle {
color: black;
font-size: 2em;
font-weight: bold;
}
.rowTitle {
background-color: #f0f0f0;
}
.desc {
color: green;
line-height: 28px;
}
.dlg {
background-color: white;
border: solid 5px #a0a0a0;
}
.btn {
background-color: skyblue;
color: black;
border: solid 1px darkblue;
height: 34px;
line-height: 28px;
padding: 0px 10px;
font-size: large;
}
.btn:HOVER {
background-color: darkblue;
color: white;
border: solid 1px skyblue;
}
.imgButton {
background-color: white;
border: solid 1px white;
margin-right: 8px;
}
.imgButton:HOVER {
background-color: skyblue;
border: solid 1px skyblue;
}
.refLink {
padding: 0px 3px;
color: skyblue;
cursor: pointer;
}
.refLink:hover {
text-decoration: underline;
}
.tag {
padding: 0px 3px 2px 3px;
font-size: 8px;
color: yellow;
margin: 0px;
line-height: 26px;
border-radius: 3px;
background-color: royalblue;
height: 26px;
vertical-align: bottom;
margin-right: 3px;
} | 0.593138 | 0.111 |
.label-field-area {
float:left;
height:210px;
width:250px;
}
#leave-info{
}
#item-list {
clear : both;
padding : 10px 0 0 190px;
}
#item-list .listodd{
background : #DFEAFF;
border-bottom:1px solid #BECFFB;
color : #444;
height : 1.5em; width : 30em;
list-style-type : none;
padding : 0.5em 0 0 2em;
}
#item-list .listeven{
background : #EEF2FD;
border-bottom:1px solid #BECFFB;
color : #444;
height : 1.5em; width : 30em;
list-style-type : none;
padding : 0.5em 0 0 2em;
}
#item-list li {
background:none repeat scroll 0 0 #EFF3FE;
color : #444;
height : 1.5em; width : 530px;
list-style-type : none;
padding : 0.8em 0 0 0em;
}
#item-list li div {
float : left;
}
#item-list li div.item-name {
width : 230px;
font-size: 13px;
font-weight: bold;
}
.item-edit a{
color : #000;
}
#item-list li div a {
color : #000;
}
.approve-deny{
width:125px;
margin:0 0 0 280px;
}
.approve-deny a{
color:black;
text-decoration:underline;
}
.approval-form{
width:626px;
height:110px;
background:url(../../images/form_bg/approval_form_bg.jpg);
margin:0 0 0 40px;
}
.approval-form a{
display:block;
height:35px;
float:right;
width:35px;
}
.remark-field-pair {
float : left;
height : 110px;
width : 450px;
}
.remark-field-pair label {
color : #444;
display : block;
font-weight : bold;
margin : 25px 0 0 75px;
}
.remark-field-pair input {
background : transparent;
border : 0;
margin : 5px 0 0 10px;
width : 330px;
}
.remark-input-bg {
background : #fff url(../../images/form_bg/remarks_text_bg.png) no-repeat;
height : 26px;
width : 341px;
margin: 5px 0 0 75px;
}
#form{
height:250px;
width:222px;
margin-top:14px;
margin-left:185px;
}
.reminder-link{
margin:0 0 0 191px;
}
.reminder-link a{
color:black;
}
#submit-button{
margin-left:45px;
}
.label-field-pair textarea {
-moz-background-inline-policy:continuous;
-moz-border-radius:10px 10px 10px 10px;
-webkit-border-radius:10px 10px 10px 10px;
background:none repeat scroll 0 0 #EEEEEE;
border:1px solid #C6C6C6;
margin:5px 0 0 10px;
padding:5px;
}
#submit-button input {
-moz-border-radius:10px 10px 10px 10px;
-webkit-border-radius:10px 10px 10px 10px;
background:none repeat scroll 0 0 #27292B;
border:medium none;
color:#FFFFFF;
cursor:pointer;
font-family:arial;
font-size:14px;
font-weight:bold;
margin-left:243px;
margin-top:170px;
padding:7px 10px;
} | public/stylesheets/employee_attendance/leave_app.css | .label-field-area {
float:left;
height:210px;
width:250px;
}
#leave-info{
}
#item-list {
clear : both;
padding : 10px 0 0 190px;
}
#item-list .listodd{
background : #DFEAFF;
border-bottom:1px solid #BECFFB;
color : #444;
height : 1.5em; width : 30em;
list-style-type : none;
padding : 0.5em 0 0 2em;
}
#item-list .listeven{
background : #EEF2FD;
border-bottom:1px solid #BECFFB;
color : #444;
height : 1.5em; width : 30em;
list-style-type : none;
padding : 0.5em 0 0 2em;
}
#item-list li {
background:none repeat scroll 0 0 #EFF3FE;
color : #444;
height : 1.5em; width : 530px;
list-style-type : none;
padding : 0.8em 0 0 0em;
}
#item-list li div {
float : left;
}
#item-list li div.item-name {
width : 230px;
font-size: 13px;
font-weight: bold;
}
.item-edit a{
color : #000;
}
#item-list li div a {
color : #000;
}
.approve-deny{
width:125px;
margin:0 0 0 280px;
}
.approve-deny a{
color:black;
text-decoration:underline;
}
.approval-form{
width:626px;
height:110px;
background:url(../../images/form_bg/approval_form_bg.jpg);
margin:0 0 0 40px;
}
.approval-form a{
display:block;
height:35px;
float:right;
width:35px;
}
.remark-field-pair {
float : left;
height : 110px;
width : 450px;
}
.remark-field-pair label {
color : #444;
display : block;
font-weight : bold;
margin : 25px 0 0 75px;
}
.remark-field-pair input {
background : transparent;
border : 0;
margin : 5px 0 0 10px;
width : 330px;
}
.remark-input-bg {
background : #fff url(../../images/form_bg/remarks_text_bg.png) no-repeat;
height : 26px;
width : 341px;
margin: 5px 0 0 75px;
}
#form{
height:250px;
width:222px;
margin-top:14px;
margin-left:185px;
}
.reminder-link{
margin:0 0 0 191px;
}
.reminder-link a{
color:black;
}
#submit-button{
margin-left:45px;
}
.label-field-pair textarea {
-moz-background-inline-policy:continuous;
-moz-border-radius:10px 10px 10px 10px;
-webkit-border-radius:10px 10px 10px 10px;
background:none repeat scroll 0 0 #EEEEEE;
border:1px solid #C6C6C6;
margin:5px 0 0 10px;
padding:5px;
}
#submit-button input {
-moz-border-radius:10px 10px 10px 10px;
-webkit-border-radius:10px 10px 10px 10px;
background:none repeat scroll 0 0 #27292B;
border:medium none;
color:#FFFFFF;
cursor:pointer;
font-family:arial;
font-size:14px;
font-weight:bold;
margin-left:243px;
margin-top:170px;
padding:7px 10px;
} | 0.393152 | 0.153422 |
html, body, #sb-site, .sb-slidebar {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html, body {
width: 100%;
overflow-x: hidden; /* Stops horizontal scrolling. */
}
html {
min-height: 100%;
}
body {
height: 100%;
}
/* ----------
* 002 - Site
*/
#sb-site {
width: 100%;
min-height: 100%; /* Initially set here but accurate height is set by slidebars.js */
position: relative;
z-index: 1; /* Site sits above Slidebars */
background-color: #ffffff; /* Default background colour, overwrite this with your own css. */
}
/* ---------------
* 003 - Slidebars
*/
.sb-slidebar {
height: 100%;
overflow-y: auto; /* Enable vertical scrolling on Slidebars when needed. */
position: fixed;
top: 0;
z-index: 0; /* Slidebars sit behind sb-site. */
visibility: hidden; /* Initially hide the Slidebars. */
background-color: #222222; /* Default Slidebars background colour, overwrite this with your own css. */
}
.sb-static { /* Makes Slidebars scroll naturally with the site, and unfixes them for Android Browser 2.X. */
position: absolute;
}
.sb-left {
left: 0; /* Sets Slidebar to the left. */
}
.sb-right {
right: 0; /* Sets Slidebar to the right. */
}
html.sb-active-left .sb-left,
html.sb-active-right .sb-right {
visibility: visible; /* Makes Slidebars visibile when open. */
}
/* Slidebar Widths */
.sb-slidebar {
width: 30%; /* Browsers that don't support media queries. */
}
.sb-width-custom {
/* To set a custom width, add this class to your Slidebar and pass a px or % value as a data attribute 'data-sb-width'. */
}
@media (max-width: 480px) {
.sb-slidebar {
width: 70%; /* Slidebar width on extra small screens. */
}
}
@media (min-width: 481px) {
.sb-slidebar {
width: 55%; /* Slidebar width on small screens. */
}
}
@media (min-width: 768px) {
.sb-slidebar {
width: 40%; /* Slidebar width on small screens. */
}
}
@media (min-width: 992px) {
.sb-slidebar {
width: 30%; /* Slidebar width on medium screens. */
}
}
@media (min-width: 1200px) {
.sb-slidebar {
width: 20%; /* Slidebar width on large screens. */
}
}
/* ---------------
* 004 - Animation
*/
html.sb-anim-type-translate .sb-slide, html.sb-anim-type-side .sb-slide {
-webkit-transition: -webkit-transform 400ms ease;
-moz-transition: -moz-transform 400ms ease;
-o-transition: -o-transform 400ms ease;
transition: transform 400ms ease;
-webkit-transition-property: -webkit-transform, left; /* Add 'left' for Android < 4.4 */
-webkit-backface-visibility: hidden; /* Prevents flickering. */
} | docs/manual/bower_components/Slidebars/distribution/0.8/slidebars.css | html, body, #sb-site, .sb-slidebar {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html, body {
width: 100%;
overflow-x: hidden; /* Stops horizontal scrolling. */
}
html {
min-height: 100%;
}
body {
height: 100%;
}
/* ----------
* 002 - Site
*/
#sb-site {
width: 100%;
min-height: 100%; /* Initially set here but accurate height is set by slidebars.js */
position: relative;
z-index: 1; /* Site sits above Slidebars */
background-color: #ffffff; /* Default background colour, overwrite this with your own css. */
}
/* ---------------
* 003 - Slidebars
*/
.sb-slidebar {
height: 100%;
overflow-y: auto; /* Enable vertical scrolling on Slidebars when needed. */
position: fixed;
top: 0;
z-index: 0; /* Slidebars sit behind sb-site. */
visibility: hidden; /* Initially hide the Slidebars. */
background-color: #222222; /* Default Slidebars background colour, overwrite this with your own css. */
}
.sb-static { /* Makes Slidebars scroll naturally with the site, and unfixes them for Android Browser 2.X. */
position: absolute;
}
.sb-left {
left: 0; /* Sets Slidebar to the left. */
}
.sb-right {
right: 0; /* Sets Slidebar to the right. */
}
html.sb-active-left .sb-left,
html.sb-active-right .sb-right {
visibility: visible; /* Makes Slidebars visibile when open. */
}
/* Slidebar Widths */
.sb-slidebar {
width: 30%; /* Browsers that don't support media queries. */
}
.sb-width-custom {
/* To set a custom width, add this class to your Slidebar and pass a px or % value as a data attribute 'data-sb-width'. */
}
@media (max-width: 480px) {
.sb-slidebar {
width: 70%; /* Slidebar width on extra small screens. */
}
}
@media (min-width: 481px) {
.sb-slidebar {
width: 55%; /* Slidebar width on small screens. */
}
}
@media (min-width: 768px) {
.sb-slidebar {
width: 40%; /* Slidebar width on small screens. */
}
}
@media (min-width: 992px) {
.sb-slidebar {
width: 30%; /* Slidebar width on medium screens. */
}
}
@media (min-width: 1200px) {
.sb-slidebar {
width: 20%; /* Slidebar width on large screens. */
}
}
/* ---------------
* 004 - Animation
*/
html.sb-anim-type-translate .sb-slide, html.sb-anim-type-side .sb-slide {
-webkit-transition: -webkit-transform 400ms ease;
-moz-transition: -moz-transform 400ms ease;
-o-transition: -o-transform 400ms ease;
transition: transform 400ms ease;
-webkit-transition-property: -webkit-transform, left; /* Add 'left' for Android < 4.4 */
-webkit-backface-visibility: hidden; /* Prevents flickering. */
} | 0.305179 | 0.050658 |
body{
background-color: #f6f7fb;
font-family: 'Open Sans', sans-serif;
/*font-family: "Proxima Nova", serif;*/
}
.right{
float:right;
margin-right:15px;
margin-bottom:15px;
color:#2d2f39;
}
/*-----------------------------------------------------------------------------------------------------------------------------
left sidebar style
-------------------------------------------------------------------------------------------------------------------------*/
.closestyle{
padding-left:20px;
margin-right:15px;
float:right;
}
th{
font-size:11px;
}
#response_wrp{
/* width:90%; */
z-index: 988;
display: block;
/* position: absolute; */
/* margin-top: 3px; */
/* margin-left: 30px; */
/* margin-right: 30px; */
margin: 0;
}
.qus_title {
width: 50%;
}
.qus_titles {
width: 70% !important;
}
*{
outline: none;
}
a:focus,
button:focus,
input:focus,
textarea:focus, .btn:focus {
outline: none !important;
box-shadow: none;
}
.green{
color:#acd373;
}
.menutick{
float:right;
padding:4px;
}
button {
outline: none !important;
box-shadow: none;
}
#sidebar {
width: 250px;
position: fixed;
top: 64px;
left: 0;
height: 100vh;
z-index: 999;
background: #ffffff;
color: #000000;
transition: all 0.3s;
box-shadow: 0 1px 2px 0 rgba(61, 61, 61, 0.075), 0 2px 20px 0 rgba(61, 61, 61, 0.075);
}
#sidebar.active {
margin-left: -250px;
}
#sidebar .sidebar-header {
padding: 30px;
background: #ffffff;
}
#sidebar ul.components {
padding: 0px 0;
}
#sidebar ul p {
color: #fff;
padding: 10px;
}
#sidebar ul li a {
padding: 14px;
/*font-size: 1.1em;*/
font-size: 14px;
display: block;
text-decoration: none;
color:#1c354e;
}
#sidebar ul li a:hover {
color: #000000;
background: #f6f7fb;
}
#sidebar ul li.active>a,
a[aria-expanded="true"] {
color: #1f3c57;
background: #f6f7fb;
font-weight: 600;
border-left:5px solid #f36363;
}
#sidebar a[data-toggle="collapse"] {
position:relative;
}
#sidebar .dropdown-toggle::after {
display: block;
position: absolute;
top: 50%;
right: 20px;
transform: translateY(-50%);
}
#pageSubmenu li:nth-child(n) a{
padding-left:50px;
}
.overlay.active {
display: block;
opacity: 1;
}
.overlay {
display: visible;
position: fixed;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.7);
z-index: 998;
opacity: 0;
transition: all 0.5s ease-in-out;
}
/* ----------------------------------------------------------------------------------------------------------------------------------------------
main header STYLE
--------------------------------------------------------------------------------------------------------------------------- */
.navbar{display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
box-sizing: border-box;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
width: 100%;
margin: 0;
padding: 0;
border: none;
min-height: 64px;
max-height: 1000px;
box-shadow: 0px 2px 43px -6px rgba(0,0,0,0.2);
background-color: #fff;
position: fixed;
}
.centertitle{
position: relative;
left:35%;
font-size:20px;
margin-bottom:.2rem;
}
.header{
height:64px;
}
.header button{
box-shadow:none;
transition: none;
transform:none;
}
.header button:hover{
box-shadow:none;
transition: none;
transform:none;
}
.header button .btn:not(:disabled):not(.disabled).active:focus, .btn:not(:disabled):not(.disabled):active:focus {
box-shadow: none;
}
#content ul li.active>a,
a[aria-expanded="true"] {
background:transparent;
border:none;
}
.user_name{
color: #000;
text-transform: none;
font-size: 16px;
font-weight: normal;
margin-right: 4px;
}
.user_icon{
width:36px;
height:36px;
background-color:#f36363;
border-radius:50%;
display:inline-block;
color:white;
text-align:center;
font-size:14px;
text-transform:uppercase;
font-weight: 600;
vertical-align: middle;
line-height: 36px;
}
.user_icon_collapse{
width:36px;
height:36px;
background-color:#f36363;
border-radius:50%;
display:inline-block;
color:white;
text-align:center;
font-size:14px;
text-transform:uppercase;
font-weight: 600;
margin-top:3px;
line-height: 36px;
}
.time span{
font-size:14px;
color:#000000;
line-height: 31px;
font-weight: normal;
}
.time a{
font-size:14px;
font-weight: normal;
color:#000000 !important;
}
.time i{
margin:0px;
}
.time .badge{
padding:3px;
}
.time .fa{
color:#f36363 !important;
}
/* -------------------------------------------------------------------------------------------------------------------------
CONTENT STYLE
------------------------------------------------------------------------------------------------------------------------- */
#content {
width: calc(100% - 250px);
padding: 80px 20px 20px 20px;
min-height: 100vh;
transition: all 0.3s;
position: absolute;
top: 0;
right: 0;
}
div#content-pending {
width: 100%;
padding: 80px 20px 20px 20px;
min-height: 100vh;
transition: all 0.3s;
position: absolute;
top: 0;
right: 0;
}
#content.active {
width: 100%;
}
/*---------------------------------------content and body css ----------------------------------------*/
.mycontainer{
background-color: #f6f7fb;
max-width: 1800px;
margin: 0px auto 0px;
border-radius: 8px;
}
.mycontainer .shadow{
box-shadow: 0px 10px 33px -2px rgba(0,0,0,0.1);
}
.heading{
border-bottom: 1px solid #d4d4d49f;
padding:15px 15px 15px 15px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
background-color: #ffffff;
}
.navbar-brand h5{
margin:0px;
padding:0px;
}
.title{
margin:0px;
padding:0px;
font-weight:600;
text-transform: initial;
font-size:14px;
}
.titles{
color:#3e566e;
}
.titles span{
color:red;
}
.contentbody{
margin-top:0px;
padding-left:20px;
padding-top:25px;
padding-bottom:25px;
padding-right:20px;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
background-color:#ffffff;
}
.contentbody .row div{
margin-top:2px;
margin-bottom:2px;
}
.contentbody .input-group-prepend{
margin-top:0px !important;
margin-right:0px;
}
.contentbody .input-group-prepend span{
background-color:#edf0f3;
}
.contentbodytwo .input-group-prepend{
margin-top:0px !important;
margin-right:0px;
background-color:#edf0f3;
}
.contentbodytwo .input-group-prepend span{
background-color:#edf0f3;
}
.contentbodytwo .add_segment .col-3 .form-group{margin-bottom:0px;}
.contentbody .input-group-append{
margin-top:0px !important;
}
.contentbody .input-group .form-control:not(:first-child) {
padding-left: 8px !important;
border-left: 0;
}
.contentbodytwo .input-group .form-control:not(:first-child) {
padding-left: 8px !important;
border-left: 0;
}
::-webkit-input-placeholder { /* Chrome */
color: rgb(141, 141, 141) !important;
}
:-ms-input-placeholder { /* IE 10+ */
color: rgb(141, 141, 141) !important;
}
::-moz-placeholder { /* Firefox 19+ */
color: rgb(141, 141, 141) !important;
opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
color: rgb(141, 141, 141) !important;
opacity: 1;
}
.eslip_leftscroll{
height:calc(100vh - 110px);
overflow-y:scroll;
}
.eslip_leftscroll .title{
font-size:11px;
}
.eslip_leftscroll .titles{
font-size:11px;
}
.eslip_rightscroll{
height:calc(100vh - 110px);
overflow-y:scroll;
}
.eslip_leftscroll::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 3px rgba(73, 73, 73, 0.3);
border-radius: 20px;
background-color: #F5F5F5;
}
label{
font-size:11px !important;
}
.eslip_leftscroll::-webkit-scrollbar
{
width:8px;
height:8px;
background-color: #F5F5F5;
}
.eslip_leftscroll::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 3px rgba(65, 64, 64, 0.212);
background-color: rgb(194, 192, 192);
}
.eslip_rightscroll::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 3px rgba(73, 73, 73, 0.3);
border-radius: 20px;
background-color: #F5F5F5;
}
.eslip_rightscroll::-webkit-scrollbar
{
width:8px;
height:8px;
background-color: #F5F5F5;
}
.eslip_rightscroll::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 3px rgba(65, 64, 64, 0.212);
background-color: rgb(194, 192, 192);
}
/*.contentbody .eslip{
background-color: #f6f7fb !important;
}*/
/*-------------------------------------------button style-----------------------------------------------------------------------*/
.commonbutton button{
margin-top:10px;
margin-bottom:10px;
margin-right:15px;
background-color: #2290ff;
border-color: #2290ff;
float:right;
padding: .625rem 1.25rem;
}
.commonbutton button a{
color:white;
}
.commonbutton button:hover{
color: #fff;
background-color: #188afc;
border-color: #188afc;
}
.commonbutton button:focus{
color: #fff;
background-color: #0a74df !important;
border-color: #0a74df !important;
}
.commonbutton button a:hover{
text-decoration: none;
}
.commonbutton button.close{
background-color:transparent;
border-color:transparent;
color:black;
}
/*.commonbutton .close>span:not(.sr-only){
color:black;
}*/
.commonbutton button.close:focus{
background-color: transparent !important;
border-color: transparent !important;
}
.commonbutton button.closebutton{
background-color:transparent;
border-color:transparent;
color:#0a74df;
}
.commonbutton button.closebutton:focus{
background-color:transparent !important;
border-color:transparent !important;
color:#0a74df;
}
.commonbutton .modal-header{
border-bottom: none;
}
.modal-body .alert-dismissible .close{
top:50%;
right:15px;
}
.modal-body .alert-dismissible .close>span:not(.sr-only){
color:grey;
}
.selectedcompany{
display:contents;
}
.selectedcompany .alert-dismissible {
padding-right: 4.5rem;
}
.modal-body .alert-secondary{
background-color:#ffffff;
border:1px solid #d6d6d6;
margin-right:10px;
}
.commonbutton .modal-footer{
padding-top:0rem;
border-top:none;
}
.commonbutton .modal-body{
padding-top:0rem;
}
/*----------------------------------------remove button----------------------------------------------------*/
.removebtn button{
float:right;
border:1px solid #cad1d7;
}
.removebtn input{
float:right;
border:1px solid #cad1d7;
}
/*-----------------------------form- fields------------------------------------------------------------------*/
/*----form field size change-----*/
.contentbody .form-control{
border-color: #d6d6d6;
color:#000000;
height: calc(2rem + 2px);
/*height:35px;*/
height:30px;
font-size:11px;
}
.contentbody .selectstyle .form-control{
padding:.375rem .75rem;
}
.contentbodytwo .form-control{
height:calc(2rem+2px);
/*height:35px;*/
height:30px;
}
.contentbody .form-control .btn{
padding:.375rem .75rem !important;
}
.contentbodytwo .form-control .btn{
padding:.375rem .75rem !important;
}
.selectreason .form-control .btn{
padding:.375rem .75rem !important;
}
.dropdown-toggle::after {
margin-left: -.5em;
}
.dropup .dropdown-toggle::after{
margin-left: -.6em;
}
.contentbody .input-group-text {
padding:.375rem .75rem !important;
/*height:34.5px;*/
height:30px;
font-size:11px !important;
}
.contentbodytwo .input-group-text {
padding:.375rem .75rem !important;
/*height:34.5px;*/
height:30px;
font-size:11px !important;
}
.contentbody textarea.form-control {
height: auto;
}
.contentbodytwo textarea.form-control {
height: auto;
}
table label{
margin-bottom:0px;
}
.materialetable .input-group-text {
padding:.375rem .75rem !important;
/*height:34.5px;*/
height:30px;
}
.materialetable .form-control{
height:calc(2rem+2px);
/*height:35px;*/
height:30px;
color:black;
}
.comparision .form-control{
height:calc(2rem+2px);
/*height:35px;*/
height:30px;
}
.alert{
padding: .4rem 1.5rem;
}
/*------------------*/
.contentbody .form-group ::placeholder{
font-weight:400;
color:#8d8d8d;
}
.contentbody textarea::placeholder{
font-weight:400;
color:#8d8d8d;
}
.contentbody .form-group .titles{
margin:0px;
font-weight:600;
/* padding: .625rem 0rem;*/
padding: .375rem 0rem;
list-style: height 1.5em;
display: block;
}
/* ------------------style added on 15-11-2019--start-----------------------------------*/
.dropdown.selectpicker {
display: none;
}
.contentbody button.btn.dropdown-toggle.btn-default.btn-light{
background-color: #ffffff;
color:#34393d;
border:1px solid #d6d6d6;
box-shadow:none;
}
.contentbody span.filter-option.pull-left{
color:#34393d;
text-transform: initial;
font-weight:400;
font-size:11px;
}
.contentbodytwo button.btn.dropdown-toggle.btn-default.btn-light{
background-color: #ffffff;
color:#34393d;
border:1px solid #d6d6d6;
box-shadow:none;
}
.selectreason button.btn.dropdown-toggle.btn-default.btn-light{
background-color: #ffffff;
color:#34393d;
border:1px solid #d6d6d6;
box-shadow:none;
font-size: 11px;
}
.contentbodytwo span.filter-option.pull-left{
color:#34393d;
text-transform: initial;
font-weight:400;
font-size:11px;
}
.selectreason span.filter-option.pull-left{
color:#34393d;
text-transform: initial;
font-weight:400;
}
.contentbodytwo .form-group a.dropdown-item.selected.active{
background-color: #2290ff;
}
.contentbody .form-group a.dropdown-item.selected.active{
background-color: #2290ff;
}
.contentbody .select2-container--default .select2-selection--single {
border:1px solid #d6d6d6;
}
.contentbody .select2-container--default .select2-selection--single .select2-selection__arrow b {
/*top:90%;*/
top:70%;
border-color: #000000 transparent transparent transparent;
}
/*-----paddingchange-------*/
.contentbody .select2-container .select2-selection--single .select2-selection__rendered{
/*padding: .375rem 1.25rem;
padding: .105rem 1.25rem;*/
padding: .105rem .8rem;
border-radius: 4px;
width:100% !important;
}
/*-------------*/
.contentbody .select2-container .select2-selection--single {
height:auto;
}
.contentbody .select2-container--default .select2-selection--single .select2-selection__placeholder{
color:#494f53;
font-weight:400;
font-size:11px;
}
/* ------------------style added on 15-11-2019--end----------------------------------*/
.contentbodytwo .titles{
font-weight:600;
padding: 0rem;
}
.contentbodytwo label{
padding-bottom: 0rem;
/*padding-bottom: .625rem;*/
padding-top: 0px !important;
}
.contentbody .form-group .error{
margin:0px;
padding: .2rem 0rem;
font-size:10px;
font-weight: 500;
color:red !important;
}
.error{
margin:0px;
padding: .2rem 0rem;
font-size:10px;
font-weight: 500;
color:red !important;
text-transform: capitalize;
}
.contentbody .form-inline .bootstrap-select.btn-group, .form-horizontal .bootstrap-select.btn-group, .form-group .bootstrap-select.btn-group {
/*margin-bottom: 10px !important;*/
margin-bottom: 10px !important;
}
/*.contentbody .form-group .bootstrap-select.btn-group {
margin-bottom: 10px;
}*/
.contentbodytwo .form-control{
border-color: #d6d6d6;
color:#7e7e7e;
font-size:11px;
}
.custom-radio .custom-control-input~.custom-control-label{
font-size:11px;
}
.contentbodytwo .form-group ::placeholder{
font-weight:400;
color:#7e7e7e;
}
.contentbodytwo textarea::placeholder{
font-weight:400;
color:#7e7e7e;
}
.contentbodytwo .form-group .titles{
/*margin:0px;*/
margin-bottom: 10px;
margin-top: 3px;
/*padding: .625rem 0rem;*/
list-style: height 1.5em;
display: block;
font-size:11px;
}
.contentbodytwo .add_segment .form-group{
margin-bottom: 10px;
}
.contentbodytwo .form-group .error{
margin:0px;
padding: .2rem 0rem;
font-size:10px;
font-weight: 500;
color:red !important;
}
.minTableWidth{
width: 100px;
}
.maxWidth{
width: 100% !important;
}
label .req:after{
content: " *";
}
/*.contentbodytwo .row div{
margin-top:8px;
margin-bottom:8px;
}*/
.contentbodytwo .custom-control-input:checked~.custom-control-label::before{
color: #fff;
border-color: #fc6e63;
background-color: #fc6e63;
box-shadow: none;
top:0;
}
.contentbody .custom-control-input:checked~.custom-control-label::before{
color: #fff;
border-color: #fc6e63;
background-color: #fc6e63;
box-shadow: none;
top:0;
}
.checkboxred .custom-control-input:checked~.custom-control-label::before{
color: #fff;
border-color: #fc6e63;
background-color: #fc6e63;
box-shadow: none;
top:0;
}
.checkboxred .custom-control-label::before{
top:0;
}
.checkboxred .custom-control-label::after{
top:0;
}
.radio .custom-control-input:checked~.custom-control-label::before{
color: #fff;
border-color: #fc6e63;
background-color: #fc6e63;
box-shadow: none;
top:0;
}
.contentbody .custom-control-label::before{
top:0;
}
.contentbody .custom-control-label::after{
top:0;
}
.contentbodytwo .custom-control-label::before{
top:0;
}
.contentbodytwo .custom-control-label::after{
top:0;
}
.radio .custom-control-label::before{
top:0;
}
.radio .custom-control-label::after{
top:0;
}
.blue{
color:#347abf;
}
.spacing{
padding-left:5px;
padding-right:5px;
}
.mycontainer .custom-checkbox .custom-control-input~.custom-control-label {
/*font-size: smaller;*/
font-size: 11px;
font-weight:600;
color:#3e566e;
padding-top: 3px;padding-bottom: 3px;
width:100%;
}
.mycontainer .custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
background-color: rgba(252,110,99,.8);
}
.table_right_pen .custom-control-input:checked~.custom-control-label::before{
color: #fff;
border-color: #fc6e63;
background-color: #fc6e63;
box-shadow: none;
}
.table_right_pen .custom-control-input:checked~.custom-control-label::before{
color: #fff;
border-color: #fc6e63;
background-color: #fc6e63;
box-shadow: none;
}
.table_right_pen .mb-3{
margin-bottom:0rem !important;
}
.table_right_pen .custom-checkbox .custom-control-input~.custom-control-label {
font-size:11px;
font-weight:600;
color: #707477;
padding-top: 3px;
padding-bottom: 3px;
width:100%;
/*display: block;*/
word-break: break-word;
white-space: normal;
}
.table_right_pen .custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
background-color: rgba(252,110,99,.8);
}
.table_right_pen .custom-control-label::before{
border:1px solid #fc6e63;
}
/*----------------------------------------------------------upload---------------------------------------------*/
.inputDnD .form-control-file {
/*font-size: .875rem;*/
font-size: 11px;
font-weight: 400;
line-height: 1.5;
display: block;
/* height: calc(1.5em + 1.25rem + 2px); change*/
height: calc(1.5em + .75rem + 2px);
padding: .625rem .75rem;
background-clip: padding-box;
transition: all .2s cubic-bezier(.68,-.55,.265,1.55);
color: #8898aa;
border: 1px solid #cad1d7;
position: relative;
width: 100%;
outline: none;
visibility:hidden;
cursor: pointer;
box-shadow:none;
margin:0px;
}
.inputDnD .form-control-file:before {
content: attr(data-title);
position: absolute;
margin-top:0px;
padding-top: 5px;
top:0;
left: 0;
width: 100%;
/*height: calc(1.5em + 1.25rem + 2px);....change---*/
height: calc(1.5em + .75rem + 2px);
line-height: 2em;
opacity: 1;
visibility:visible;
text-align: left;
padding-left:10px;
font-weight:normal;
color:#000000;
border:1px solid rgb(214, 214, 214);
border-radius: 4px;
overflow: hidden;
}
/* -----------------------------------------------------------------------equsetionnaire and e slip css------------------------*/
header{
box-sizing: border-box;
width: 100%;
margin: 0;
padding: 0px;
border: none;
min-height: 64px;
max-height: 1000px;
box-shadow: 0px 2px 43px -6px rgba(0,0,0,0.2);
background-color: #414453;
position: fixed;
z-index:999;
}
.hidesidebar{
/*display: none;*/
display: block;
cursor:pointer;
position:relative;
}
.headertitle{
padding-top:.625rem;
display:block;
word-break:break-all;
white-space: normal;
margin-top:8px;
flex:1;
}
.headbutton{
padding-top:1rem;
float:right;
padding-right:0px;
margin-right:0px;
flex:1;
}
header i{
color:white;
}
/*header h6{
margin-left:15px;
}*/
header .headbutton .btngroup{
float:right;
/*margin-right:25px;*/
position: relative;
display: inline-flex;
vertical-align: middle;
}
header .headbutton .btngroup button{
color: #9cecfa;
cursor: pointer;
float: right;
border:1px solid transparent;
}
header .headbutton .btngroup .btn-primary{
background-color: #2290ff;
border-color: #2290ff;
float:right;
color:white !important;
}
header .headbutton .btngroup .btn-primary:hover{
background-color: #007cf8;
border-color: #0080ff;
float:right;
color:white !important;
}
header .headbutton .btngroup .btn-primary a{
color:white !important;
}
header .headbutton .btngroup label{
color: #ffffff;
cursor: pointer;
margin-right: 10px;
margin-top: 5px;
background-color: #c9574f;
word-break: break-word;
white-space: normal;
line-height: normal;
}
header .btngroup button a{
color: #9cecfa;
}
/* Clear floats (clearfix hack) */
header .btngroup:after {
content: "";
clear: both;
display: table;
}
header .btngroup button:not(:last-child) {
border-radius:4px;
}
/* Add a background color on hover */
header .btngroup button:hover {
background-color: #2d2f39;
color: #9cecfa;
}
.insur_page{
box-sizing: border-box;
width: 100%;
margin: 0;
padding: 0px;
border: none;
min-height: 64px;
max-height: 1000px;
box-shadow: 0px 2px 43px -6px rgba(0,0,0,0.2);
background-color: #414453;
z-index:99;
}
.insur_page .headbutton .btngroup{
float:right;
margin-right:25px;
position: relative;
display: inline-flex;
vertical-align: middle;
}
.insur_page .headbutton .btngroup button{
color: #9cecfa;
cursor: pointer;
float: right;
border:1px solid transparent;
}
.insur_page .btngroup button a{
color: #9cecfa;
}
.insur_page .btngroup:after {
content: "";
clear: both;
display: table;
}
.insur_page .btngroup button:not(:last-child) {
border-radius:4px;
}
.insur_page .btngroup button:hover {
background-color: #2d2f39;
color: #9cecfa;
}
.insurtop{
padding-top:90px;
}
.white{
color:white;
text-transform: none;
}
.red{
color:#fc6e63;
}
.contentbodytwo{
margin-top:0px;
padding-left:0px;
padding-top:0px;
padding-bottom:0px;
padding-right:0px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
/* background-color:#f6f7fb;*/
}
.backgroundwhite{
background-color:white;
padding-left:20px;
padding-top:25px;
padding-bottom:25px;
padding-right:20px;
}
/*-------------------------------------------------datepicker-----------------------------------------------------------------------*/
.mycontainer .datepicker table tr td.active, .datepicker table tr td.active.highlighted, .datepicker table tr td.active.highlighted:hover, .datepicker table tr td.active:hover {
color: #fff;
background: #fc6e63;
box-shadow: none;
}
/*------------------------------------------claim history table style in e slip---------------------------------------------------------*/
.contentbodytwo table {
border-collapse: collapse;
border: 0px solid #d6d6d6;
}
.claimhistory th,.claimhistory td {
border: 1px solid #d6d6d6 !important;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
vertical-align: top;
}
.claimhistory th{
font-weight:600;
font-size:11px;
}
.claimhistory td{
font-weight:500;
font-size:11px;
vertical-align: top;
}
.contentbodytwo table.claimhistory {
table-layout: auto;
width: 100%;
}
table.claimhistorydata {
table-layout: fixed;
width: 100%;
font-size:11px;
}
table.claimhistorydata p{
margin-bottom:0rem;
font-size:11px;
}
.claimhistorydata th,.claimhistorydata td{
border: 1px solid #d6d6d6 !important;
padding-top:8px;
padding-bottom:8px;
padding-left:5px;
padding-right:5px;
}
.datatitle{
padding-left:25px;
padding-top:15px;
padding-bottom:15px;
padding-right:15px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
background-color:#ffffff;
}
.datatitle .form-group{
margin-bottom:0px;
}
/*--------------------------------------------------upload excel----------------------------------------------------------*/
.uploadbutton{
background-color: inherit;
border:none;
}
.file-upload {
background-color: #ffffff;
padding: 20px;
}
.file-upload-content {
display: none;
text-align: center;
}
.file-upload-input {
position: absolute;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
outline: none;
opacity: 0;
cursor: pointer;
}
.image-upload-wrap {
border: 2px dashed #e9b2ae;
position: relative;
}
.image-title-wrap {
padding: 0 15px 15px 15px;
color: #222;
}
.drag-text {
text-align: center;
}
.drag-text h6 {
font-weight: 300;
text-transform: initial;
color: rgb(41, 78, 99);
padding: 60px 0;
}
/*--------------------------------------------------table for e quotation old code modified------------------------------------------*/
.comparesec{
border:3px solid #f6f7fb;
border-radius:6px;
}
div.materialetable {
padding: 0;
}
div.materialetable table tr td {
padding: 5px 0 5px 56px;
/*height: 20px !important;*/
height: 12px !important;
font-size: 11px;
color: rgba(0, 0, 0, 1);
/*border-bottom: solid 1px #DDDDDD;
border-right: 2px solid #f6f7fb;*/
border-left: 2px solid #f6f7fb;
line-height: 20px;
font-weight: 600;
}
div.materialetable table tr td a {
color: inherit;
}
div.materialetable table tr td a i {
font-size: 18px;
color: rgba(0, 0, 0, 0.54);
}
div.materialetable table tr {
font-size: 11px;
}
div.materialetable table th {
font-size: 11px;
font-weight: 600;
color: #707477;
/*cursor: pointer;
white-space:nowrap;*/
padding: 0;
height: 64px;
padding-left: 56px;
vertical-align: middle;
outline: none !important;
border-right: 2px solid #f6f7fb;
border-bottom:none;
}
div.materialetable table tbody tr:hover {
background-color: #EEE;
}
div.materialetable table tbody tr:focus {
background-color: #EEE;
}
div.materialetable table th:first-child,
div.materialetable table td:first-child {
padding: 0 0 0 24px;
}
div.materialetable table th:last-child,
div.materialetable table td:last-child {
padding-right: 24px !important;
}
.dataatable{
margin-bottom: 78px;
}
.dataatable .materialetable{
margin: 0;
box-shadow: 0px 10px 33px -2px rgba(0,0,0,0.15);
background-color: #fff;
}
div.materialetable table thead tr {
font-size: 11px;
/*border-bottom: 1px solid #dadada;*/
text-transform: none;
font-weight: 600;
}
div.materialetable table td {
font-weight: 500;
font-size:11px;
}
div.materialetable .table-footer label{
position: relative;
}
div.materialetable .table-footer select{
padding: 0 14px;
/*z-index: 9999;*/
}
.materialetable table.comparison th, .materialetable table.comparison td{
/* padding: 10px 20px !important;*/
padding: 2px 20px !important;
position: relative;
}
.materialetable table.comparison th{
width:280px;
border-right: 2px solid #f6f7fb;
}
.table.comparison{
width: 100%;
table-layout: fixed;
}
.materialetable table.comparison tbody tr:hover{
background-color: #eeeef5 !important;
}
.materialetable table.comparison th:last-child,
.materialetable table.comparison td:last-child{
border-right: none !important;
}
.materialetable table.comparison th:first-child,
.materialetable table.comparison td:first-child{
/*border-left: none !important;*/
border-left: 2px solid #f6f7fb;
}
.materialetable table.comparison th{
border-top: none !important;
}
/*----------------------------------------------------------*/
.insurheightfix thead tr {
display: block;
position: relative;
}
.insurheightfix tbody {
overflow:auto;
width: 100%;
display:inline-block;
}
.insurheightfix tbody::-webkit-scrollbar {
display: block;
}
.insurheightfix tbody {
-ms-overflow-style: visible;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.insurheightfix::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE and Edge */
.insurheightfix{
-ms-overflow-style: none;
}
.form-control{
font-size:12px;
}
/*---------------------------------------------------------*/
.textcolor{
color:rgb(109, 108, 108) !important;
}
.pointer{
position: relative;
z-index: 99;
width: 25px;
/* padding: 2px 10px;*/
}
.checkoverlay::after{
content:'';
top:0;
left:0;
width:100%;
height:100%;
background-color: #fc6e63;
}
.syncscroll tr.first-child td.first-child.checkoverlay::before{
background-color: red;
height:100vh;
z-index:9;
position:absolute;
bottom:0;
}
.syncscroll tr:first-child td.checkoverlay::before{
content:'5';
width:100%;
left:0;
top:0;
background-color: red;
}
.table.comparison .cbx span:nth-of-type(2){
font-size: 11px;
padding-top: 0px;
font-weight: 600;
color: #707477;
}
.table.comparison .cbx span:first-child{
margin-top: 0px;
}
.table.comparison .inp-cbx:checked + .cbx span:nth-of-type(2) {
color: #fc6e63;
}
.table.comparison .custom_checkbox{
margin: 0;
}
.table.comparison{
margin: 0;
}
.tablefixed{
display: flex;
width: 100%;
}
.table_left_fix{
width: 544px !important;
}
.table_right_pen{
width: calc(100% - 544px);
}
.tablefixed th,
.tablefixed td{
/* padding: 10px 20px !important;*/
padding-top: 4px !important;
padding-bottom: 3px !important;
padding-right:20px !important;
padding-left:20px !important;
vertical-align: middle;
}
.table_left_fix .materialetable{
border-bottom: none;
overflow: hidden;
}
.table_right_pen .materialetable{
overflow-x: auto;
}
#scrollstyle::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 20px;
background-color: #F5F5F5;
}
#scrollstyle::-webkit-scrollbar
{
width:10px;
height:10px;
background-color: #F5F5F5;
}
#scrollstyle::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.212);
background-color: rgb(163, 161, 161);
}
.table_right_pen .materialetable table{
table-layout:auto;
}
table.table.customer_table .ans{
min-width: unset !important;
}
.tablefixed .ans{
min-width: 500px !important;
max-width: 500px !important;
width: 100% !important;
color:#707477;
word-break: break-word;
}
.heightfix table{
margin: 0 !important;
padding: 0 !important;
}
.heightfix thead,
.heightfix tfoot{
display: block;
}
.heightfix tbody{
height: calc(100vh - 200px);/*300px*/
overflow-y: auto;
overflow-x: hidden;
display: block;
}
#mailview .table_left_fix tbody{
overflow-y: hidden;
overflow-x: hidden;
}
.approvedheightfix{
height: calc(100vh - 250px);
overflow-y: auto;
overflow-x: hidden;
}
.insurheightfix{
height: calc(100vh - 200px);
overflow-y: auto;
overflow-x: auto;
}
.table_right_pen thead th{
height: 64px !important;
}
.tablefixed tr{
width: 100%;
}
.hoverx{
background-color: #eeeef5 !important;
}
.materialetable thead tr.hoverx{
background-color: #fff !important;
}
.commonfix .table_left_fix{
width: 544px !important;
}
.commonfix .table_right_pen {
width: calc(100% - 544px); /*456*/
}
.table_right_pen tbody tr{
border-right: 1px solid #ddd;
display: inline-table;
}
.table_right_pen thead{
overflow-y: hidden;
}
.materialetable thead tr{
border-bottom: none !important;
}
.materialetable thead th{
border-top:none;
}
.materialetable thead{
border-bottom: 6px solid #f6f7fb;
}
#pdfview label{
word-wrap: break-word;
display:block;
}
.mainsquestion{
min-width: 300px !important;
max-width: 300px !important;
width: 100% !important;
}
#pdfview .mainsquestion{
width: auto !important;
}
#pdfview table{
background-color:#ffffff;
}
.mainsanswer{
min-width: 200px !important;
max-width: 200px !important;
/*width: 100% !important;*/
}
.comparesec{
margin-bottom: 20px;
}
.comparesec .materialetable{
box-shadow: none;
/*border: 1px solid #ddd;*/
}
.comparesec .form_label{
color:#3e566e;
}
/*-------------------------------------check column---------------------------------------------------------------*/
/*.insurer_select{
background-color:rgba(252, 232, 231, 0.212);
}*/
/*.insurer_select::before {
content: '';
/* background: rgba(231, 130, 123, 0.686);
background: rgba(241, 241, 241, 0.686);
position: absolute;
width: 100%;
height: calc(100% + 2px);
left: 0;
top: 0;
z-index: 9;
}*/
/*.syncscroll tr:first-child .insurer_select::after {
content: '';
width: 100px;
height: 100px;*/
/* background: #ffffff; */
/* background: #737682;
background-image: url('../assets/img/images/tick.svg');
background-position: center;
font-size: xx-large;
position: absolute;
z-index: 99;
left: 50%;
margin: -50px 0 0 -50px;
top: 200px;
border-radius: 80px;
box-shadow: 0px 2px 8px 5px #eee0e086;
background-size: 60%;
background-repeat: no-repeat;
}*/
.insurer_select::before {
content: '';
/* background: rgba(231, 130, 123, 0.686); */
background: rgba(241, 241, 241, 0.686);
position: absolute;
width: 100%;
height: calc(100% + 2px);
left: 0;
top: 0;
z-index: 9;
}
.syncscroll tr:first-child .insurer_select::after {
content: '';
width: 100px;
height: 100px;
/* background: #ffffff; */
background: #737682;
background-image: url('../assets/img/images/tick.svg');
background-position: center;
font-size: xx-large;
position: absolute;
z-index: 99;
left: 50%;
margin: -50px 0 0 -50px;
top: 200px;
border-radius: 80px;
box-shadow: 0px 2px 8px 5px #eee0e086;
background-size: 60%;
background-repeat: no-repeat;
}
/*--------------------------------editable field-----------------------------------------------------------*/
.controls-update{position:relative;margin-top:4px;margin-right:2px;float:right;color: #347abf;font-size:11px;display:none;cursor:pointer;}
.edit-on-click{cursor:pointer;width:fit-content;}
.inputstyle{ padding:5px;border-radius:5px;margin-bottom:4px;margin-top:3px;width:220px;box-shadow: none;border:1px solid #cad1d7;}
.editbutton{
cursor:pointer;
}
.editbutton a{
padding:1px;
border:0px;
background-color:white;
text-transform: inherit;
font-size:11px;
cursor:pointer;
}
.editbutton .fa{
color:#fc6e63;
}
.editbutton:focus{
color:black;
}
.editbutton a:focus .fa{
color:#c9574f;
background-color:white;
}
.editbutton:hover {
color:#79322d;
}
.editbutton .btn-outline-light:hover {
background-color: #ffffff;
border:none;
color:#79322d;
box-shadow: none;
}
.editbutton .btn-outline-light:focus {
background-color: #ffffff;
border:none;
box-shadow: none;
/* color:#c9574f;*/
}
.editbutton .btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show>.btn-outline-light.dropdown-toggle{
background-color:#ffffff;
color:#79322d;
}
.editbutton a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover{
color:#79322d;
}
/*--------update---------*/
.updatebutton{
cursor:pointer;
}
.updatebutton a{
padding:0px;
border:0px;
background-color:white;
text-transform: inherit;
font-size:11px;
}
.updatebutton .fa{
color:#fc6e63;
}
.updatebutton:focus{
color:black;
}
.updatebutton a:focus .fa{
color:#c9574f;
background-color:white;
}
.updatebutton:hover {
color:#79322d;
}
.updatebutton .btn-outline-light:hover {
background-color: #ffffff;
border:none;
color:#79322d;
box-shadow: none;
}
.updatebutton .btn-outline-light:focus {
background-color: #ffffff;
border:none;
box-shadow: none;
/* color:#c9574f;*/
}
.updatebutton .btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show>.btn-outline-light.dropdown-toggle{
background-color:#ffffff;
color:#79322d;
}
.updatebutton a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover{
color:#79322d;
}
#show-button { cursor: pointer;border-top-right-radius: 4px;border-bottom-right-radius: 4px; }
#hide-button { cursor: pointer; display: none; }
/*-------------------------------------------------------collapsible pannels--------------------------------------------*/
.wrap{
width:100%;
}
.wrap .fa-check{
color:#acd373;
/* visibility:hidden;*/
}
.wrap .editpanel{
float:right;
font-weight:500;
font-size:11px;
color:#fc6e63;
}
/*.panel-group{
xbackground-color:#f6f7fb;
}*/
.center-block{margin:0px;}
.panel-default{
/*box-shadow: 0px 5px 2px #e6e7e9;*/
background-color:#ffffff;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
.panel-heading {
padding: 0px;
border:0;
margin:0px;
}
.panel-body{
border-bottom: 1px solid rgb(233, 233, 233);
padding:25px;
margin-bottom: 10px;
/*box-shadow: 0px 5px 2px #e6e7e9;*/
box-shadow: 0px 8px 5px -4px #e6e7e9;
}
.panel-title{
margin-bottom: 0px;
border-bottom: 1px solid rgb(233, 233, 233);
}
.panel-title>a, .panel-title>a:active{
display:block;
padding:25px;
color:#555;
font-size:14px;
font-weight:600;
background-color: #ffffff;
border-radius: 4px;
letter-spacing:1px;
word-spacing:3px;
text-decoration:none;
border:none;
}
.panel-heading a:before {
float: right;
transition: all 0.5s;
}
.panel-heading.active a:before {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
transform: rotate(180deg);
}
/*--------------------------------------------------------upload add table----------------------------------------------------------------------*/
.table-uploadwrapper {
width:100%;
background: #fff;
padding: 20px;
}
.uploadtable-title {
padding-bottom: 10px;
margin: 0 0 10px;
border-bottom:1px solid #e9e9e9;
}
.uploadtable-title .add-new {
float: right;
font-size: 11px;
text-shadow: none;
border-radius: 50px;
line-height: 13px;
box-shadow: none;
}
.table-uploadwrapper table.table {
table-layout: fixed;
}
.table-uploadwrapper table.table tr td{
border-bottom:1px solid #e9e9e9;
}
.table-uploadwrapper table.table th{
border:none;
}
/*--------------------------------------------------------------------------disclaimer-----------------------------------------------------------------*/
.disclaimer {
background-color: #ffffff;
border-radius: 6px;
}
.disclaimer p{
font-size:10px;
margin-top:1rem;
font-weight: 400;
}
/*-------------------------------------------------------------success and fail --alert----------------------------------------------------------*/
.successalert .alert-success{
background-color:#ffffff;
border:1px solid #8dc63f;
color:#64aa01a2;
}
.failalert .alert-danger{
background-color:#ffffff;
border:1px solid #fc6e63;
color:#c5271c;
}
/*-----------------------------------------------------mailview page------------------------------------------------------*/
div.mailviewheader{
position: -webkit-sticky; /* Safari */
position: sticky;
top: 0;
z-index:90;
}
.mailviewheader .bg-white{
border-radius: 4px;
border-bottom:1px solid #d6d4d4;
}
.mailviewheader img{
width:auto;
height:80px;
padding-right:15px;
}
.mailviewheader h5{
padding-top:20px;
padding-left:15px;
}
.mailsubheader {
background-color:#ffffff;
border-radius:4px;
}
.mailsubheader table{
table-layout: fixed;
}
.mailsubheader table td{
border: 3px solid #f6f7fb;
}
#mailview .mainsquestion{
min-width: 300px !important;
max-width: 500px !important;
}
#mailview .materialetable table.comparison th,
#mailview .materialetable table.comparison td{
width: 290px !important;
}
#mailview .materialetable table.comparison th:last-child,
#mailview .materialetable table.comparison td:last-child{
width: auto !important;
}
#mailview .tablefixed .ans {
min-width: 290px !important;
max-width: 290px !important;
}
/*-----------------------------------------floating chat-------------------------------------------------*/
.floatingchat {
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: white;
position: fixed;
bottom: 20px;
right: 10px;
width: 50px;
height: 50px;
/*transform: translateY(70px);*/
transition: all 250ms ease-out;
border-radius: 50%;
opacity: 1;
background: #414453;
z-index: 999999;
}
.floatingchat.enter:hover {
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
opacity: 1;
}
.floatingchat.enter {
transform: translateY(0);
opacity: 1;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.14);
}
.floatingchat.expand {
width: 400px;
max-height: 460px;
height: 460px;
border-radius: 5px;
cursor: auto;
opacity: 1;
background: #ffffff;
z-index: 99999999;
}
.floatingchat :focus {
outline: 0;
}
.floatingchat button {
background: transparent;
border: 0;
color: #414453;
text-transform: uppercase;
border-radius: 3px;
cursor: pointer;
font-weight: 600;
font-size: 14px;
}
.floatingchat .chat {
display: flex;
flex-direction: column;
position: absolute;
opacity: 0;
width: 1px;
height: 1px;
border-radius: 50%;
transition: all 250ms ease-out;
margin: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.floatingchat .chat.enter {
opacity: 1;
border-radius: 0;
margin: 10px;
width: auto;
height: auto;
}
.floatingchat .chat .chatheader {
flex-shrink: 0;
padding-bottom: 10px;
display: flex;
background: transparent;
}
.floatingchat .chat .chatheader .chattitle {
flex-grow: 1;
flex-shrink: 1;
padding: 0 5px;
margin: 5px 0 0 0;
color:#414453;
font-size: 14px;
border-bottom:1px solid #9e9fa7;
}
.floatingchat > .fa.fa-comments{
font-size: 24px;
}
.floatingchat .chat .header button {
flex-shrink: 0;
}
.floatingchat .chat .messages {
padding: 10px;
margin: 0;
list-style: none;
overflow-y: auto;
overflow-x: hidden;
flex-grow: 1;
border-radius: 4px;
background: transparent;
}
.floatingchat .chat .messages::-webkit-scrollbar {
width: 5px;
}
.floatingchat .chat .messages::-webkit-scrollbar-track {
border-radius: 5px;
background-color: rgba(25, 147, 147, 0.1);
}
.floatingchat .chat .messages::-webkit-scrollbar-thumb {
border-radius: 5px;
}
.floatingchat .chat .messages li {
position: relative;
clear: both;
display: inline-block;
padding: 8px 12px;
margin: 0 0 20px 0;
border-radius: 10px;
background-color:#fc6d6383;
word-wrap: break-word;
max-width: 100%;
font-size: 11px;
line-height: 20px;
}
.floatingchat .chat .messages li:before {
position: absolute;
top: 0;
width: 25px;
height: 25px;
border-radius: 25px;
content: '';
background-size: cover;
}
.floatingchat .chat .messages li:after {
position: absolute;
top: 10px;
content: '';
width: 0;
height: 0;
border-top: 10px solid rgba(255, 255, 255, 0.1);
}
.floatingchat .chat .messages li.other {
animation: show-chat-odd 0.15s 1 ease-in;
-moz-animation: show-chat-odd 0.15s 1 ease-in;
-webkit-animation: show-chat-odd 0.15s 1 ease-in;
float: right;
margin-right: 0px;
color: #0AD5C1;
}
.floatingchat .chat .messages li.other:after {
border-right: 10px solid transparent;
right: -10px;
}
.floatingchat .chat .messages li.self {
animation: show-chat-even 0.15s 1 ease-in;
-moz-animation: show-chat-even 0.15s 1 ease-in;
-webkit-animation: show-chat-even 0.15s 1 ease-in;
float: left;
margin-left: 0px;
color: rgb(36, 33, 33);
font-weight: 500;
font-size: 11px;
line-height: 20px;
}
.floatingchat .chat .messages li.self:after {
border-left: 10px solid transparent;
left: -10px;
}
.floatingchat .chat .chatfooter {
flex-shrink: 0;
display: flex;
padding-top: 10px;
max-height: 90px;
background: transparent;
}
.floatingchat .chat .chatfooter button{
color:#2291ff;
}
.floatingchat .chat .chatfooter .text-box {
border-radius: 3px;
background: #e4e4e4;
width: 100%;
margin-right: 5px;
color: #000;
overflow-y: auto;
padding: 6px 8px;
font-size: 11px;
font-weight: 500;
min-height: 65px;
line-height: 18px;
}
.floatingchat .chat .chatfooter .text-box::-webkit-scrollbar {
width: 5px;
}
.floatingchat .chat .chatfooter .text-box::-webkit-scrollbar-track {
border-radius: 5px;
}
.floatingchat .chat .chatfooter .text-box::-webkit-scrollbar-thumb {
border-radius: 5px;
}
.floatingchat .date{
font-size:11px;
color:#ffffff;
}
.floatingchat h6{
color:#000000;
margin-bottom: 4px;
padding-bottom:0px;
}
.tooltip {
z-index: 99999999;
}
#modal-default-chat .modal-body{
height:350px;
overflow-y: scroll;
}
.scrollstyle::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 20px;
background-color: #F5F5F5;
}
.scrollstyle::-webkit-scrollbar
{
width:10px;
height:10px;
background-color: #F5F5F5;
}
.scrollstyle::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.123);
background-color: rgb(163, 161, 161);
}
/*----------------------------------------------*/
.floatingupload{
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: white;
position: fixed;
bottom: 80px;
right: 10px;
width: 50px;
height: 50px;
transition: all 250ms ease-out;
border-radius: 50%;
opacity: 1;
background: #414453;
z-index: 999999;
}
.floatingupload i{
font-size:24px;
color:#ffffff;
}
.right-sidebar{
height:100%;
width:350px;
background-color:#fff;
position:fixed!important;
z-index:9999999;
overflow:auto;
box-shadow: 0 1px 2px 0 rgba(61, 61, 61, 0.075), 0 2px 40px 0 rgba(61, 61, 61, 0.13);
}
.right-bar-block .w3-dropdown-hover,.right-bar-block .w3-dropdown-click{
width:100%;
}
.right-bar-block .w3-dropdown-hover .w3-dropdown-content,.right-bar-block .w3-dropdown-click .w3-dropdown-content{
min-width:100%;
}
.right-bar-block .w3-dropdown-hover .w3-button,.right-bar-block .w3-dropdown-click .w3-button{
width:100%;
text-align:left;
padding:8px 16px;
}
.right-bar-block .right-bar-item{
width:100%;
display:block;
padding:8px 16px;
text-align:left;
border:none;
white-space:normal;
float:none;
outline:0;
}
button.right-bar-item{
background-color:#f6f7fb;
font-weight:600;
color:#1f3c57;
}
.right-bar-block.w3-center .right-bar-item{
text-align:center
}
.w3-block{
display:block;
width:100%;
}
.rightside-animate-right{
position:relative;
animation:animateright 0.4s}
@keyframes animateright{
from{right:-300px;opacity:0} to{right:0;opacity:1}
}
.w3-bar .right-bar-item{
padding:8px 16px;
float:left;
width:auto;
border:none;
display:block;
outline:0;
}
.listofupload{
padding-top:80px;
}
.listofupload label{
font-weight:600;
padding-left:8px;
padding-right:0px;
padding-top:0px;
padding-bottom:0px;
}
.listofupload .media{
margin-top:8px;
}
.listofupload .media img{
width:40px;
height:40px;
background-color:#bbbaba;
}
.viewbutton button{
float:right;
background-color: #2290ff;
border:none;
}
.viewbutton button:hover{
float:right;
background-color: #0f75db;
border:none;
}
/*-------------------insure page styles--------------------------------------------------------*/
.table.comparison_insur{
width: 100%;
table-layout: fixed;
}
.materialetable table.comparison_insur th{
padding: 8px 12px !important;
position: relative;
/*width:395px !important;*/
width:500px !important;
}
.materialetable table.comparison_insur td{
padding: 8px 12px !important;
position: relative;
/*width:395px !important;*/
width:500px !important;
}
.materialetable table.comparison_insur th, .materialetable table.comparison_insur td:last-child{
width:fit-content;
}
.materialetable table.comparison_insur th{
border-right: 2px solid #f6f7fb;
}
.insurmainsquestion{
background-color:white;
}
.insurmainsanswer{
background-color:white
}
/*.table.comparison_insur .mainsquestion{
min-width:368px !important;
max-width: 368px !important;
width:100%;
}
.table.comparison_insur .mainsanswer{
min-width:368px !important;
max-width: 368px !important;
width:100%;
}*/
.materialetable table.comparison_insur tbody tr:hover{
background-color: #eeeef5 !important;
}
.materialetable table.comparison_insur th:last-child,
.materialetable table.comparison_insur td:last-child{
border-right: none !important;
}
.materialetable table.comparison_insur th:first-child,
.materialetable table.comparison_insur td:first-child{
border-left: none !important;
}
.materialetable table.comparison_insur th{
border-top: none !important;
}
.materialetable table.comparison_insur .mb-3{
margin-bottom:0rem ! important;
}
.materialetable table.comparison_insur .form-group{
margin-bottom:0rem ! important;
}
/*----------------------------------------equotation for excel upload=-----------------*/
#excel_save_form .table_left_fix .mainsquestion{
min-width:300px!important;
max-width:500px !important;
}
#excel_save_form .table_left_fix th{
width:350px !important;
border-right:none;
}
#excel_save_form .table_right_pen .form-group{
margin-bottom: .3rem;
margin-top: .3rem;
margin-right:0rem;
}
/* ---------------------------------------------------
MEDIAQUERIES
----------------------------------------------------- */
@media (min-width:993px){
.right-sidebar.w3-collapse
{display:block!important
}
}
@media (max-width:992px){
.right-sidebar.w3-collapse{display:none};
.header{
height:72px;
}
}
@media (max-width:600px){
.right-bar-item.w3-mobile,.w3-dropdown-hover.w3-mobile,.w3-dropdown-click.w3-mobile{text-align:center}
.w3-button{width:100%}
}
@media (max-width:1024px){
.header{
height:72px;
}
.headertitle.col-7{
max-width:40%;
flex: 0 0 40%;
}
.headbutton.col-4{
max-width:50%;
flex: 0 0 50%;
}
.closestyle{
padding-left:10px;
padding-right:0px;
float:right;
}
.mainsquestion{
min-width: 318px !important;
max-width: 318px !important;
}
.mainsanswer{
min-width: 200px !important;
max-width: 200px !important;
}
.materialetable table.comparison_insur th{
padding: 8px 12px !important;
position: relative;
width:258px !important;
}
.materialetable table.comparison_insur td{
padding: 8px 12px !important;
position: relative;
width:258px !important;
}
.table_left_fix {
width: 520px !important;
}
.table_right_pen {
width: calc(100% - 520px);
}
.table_left_fix .ans {
min-width: 270px !important;
max-width: 270px !important;
word-break: break-all;
word-spacing: normal;
}
.commonfix .table_left_fix{
width:350px !important;
}
.commonfix .table_right_pen{
width: calc(100% - 350px);
}
}
@media (max-width:1324px){
.header{
height:72px;
}
.headertitle.col-7{
max-width:40%;
flex: 0 0 40%;
}
.headbutton.col-4{
max-width:50%;
flex: 0 0 50%;
}
.materialetable table.comparison_insur th{
padding: 8px 12px !important;
position: relative;
width:320px !important;
}
.materialetable table.comparison_insur td{
padding: 8px 12px !important;
position: relative;
width:320px !important;
}
}
@media (max-width:1023px){
.headertitle{
display:none;
}
.headbutton.col-4{
max-width:90%;
flex: 0 0 90%;
}
.headertitle {
margin-top: 0px;
}
.materialetable table.comparison_insur th{
padding: 8px 12px !important;
position: relative;
width:258px !important;
}
.materialetable table.comparison_insur td{
padding: 8px 12px !important;
position: relative;
width:258px !important;
}
}
@media (max-width: 768px) {
#content {
width: 100%;
padding: 70px 20px 20px 20px;
}
#sidebar ul.components {
padding: 0px 0;
}
.contentbody .row div{
margin-top:3px;
margin-bottom:4px;
}
.headertitle{
display:none;
}
.hidesidebar{
display:block;
}
.headbutton{
padding-top:1rem;
}
.headbutton.col-4{
max-width:90%;
flex: 0 0 90%;
}
.closestyle{
padding-left:10px;
padding-right:10px;
float:right;
}
.mainsquestion{
min-width: 200px !important;
max-width: 200px !important;
}
.mainsanswer{
min-width: 190px !important;
max-width: 190px !important;
}
.materialetable table.comparison_insur th{
padding: 8px 12px !important;
position: relative;
width:190px !important;
}
.materialetable table.comparison_insur td{
padding: 8px 12px !important;
position: relative;
width:190px !important;
}
.table_left_fix {
width: 400px !important;
}
.table_right_pen {
width: calc(100% - 400px);
}
.table_right_pen .ans {
min-width: 260px !important;
max-width: 260px !important;
}
.table_left_fix .ans {
min-width: 170px !important;
max-width: 170px !important;
word-break: break-all;
word-spacing: normal;
}
.commonfix .table_left_fix{
width:220px !important;
}
.commonfix .table_right_pen{
width: calc(100% - 220px);
}
#excel_save_form .commonfix .table_left_fix{
width:350px !important;
}
#excel_save_form .commonfix .table_right_pen{
width: calc(100% - 350px);
}
}
@media (max-width: 900px){
#content {
width: 100%;
padding: 70px 20px 20px 20px;
}
}
@media (max-width: 400px){
.navbar-brand h5 {
display:none;
}
}
@media only screen and (max-width: 600px) {
#content {
padding: 70px 1px 1px 1px;
}
.contentbody .row div{
margin-top:2px;
margin-bottom:2px;
}
.time span{
display:none;
}
.time a{
display:none;
}
}
@media (min-width: 1700px) and (max-width: 1920px){
.materialetable table.comparison th{
/*width: 368px;
width: 515px;*/
width: 480px;
}
.materialetable table.comparison_insur th{
width: 368px !important;
}
/* #mailview .materialetable table.comparison th{
width: 515px !important;
} */
#mailview .mainsquestion{
width: 540px !important;
}
.materialetable table.comparison_insur th{
padding: 8px 12px !important;
position: relative;
width:450px !important;
}
.materialetable table.comparison_insur td{
padding: 8px 12px !important;
position: relative;
width:450px !important;
}
}
@media (min-width: 1150px) and (max-width: 2200px){
#mailview .materialetable table.comparison th,
#mailview .materialetable table.comparison td{
width: 290px !important;
}
#mailview .materialetable table.comparison th:last-child,
#mailview .materialetable table.comparison td:last-child{
width: auto !important;
}
#mailview .tablefixed .ans {
min-width: 290px !important;
max-width: 290px !important;
}
#mailview .mainsquestion{
width: 540px !important;
}
}
/*---------------------------------------datepicker-------------------------------------------*/
.ui-datepicker {
width: 17em;
padding: .2em .2em 0;
display: none;
}
.ui-datepicker .ui-datepicker-header {
position: relative;
padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
position: absolute;
top: 2px;
width: 1.8em;
height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
left: 2px;
background-color: #dfe0e2;
border-radius: 50px;
border:1px solid #ffffff;
cursor:pointer;
}
.ui-datepicker .ui-datepicker-prev:hover {
background-color: #b9babb;
}
.ui-datepicker .ui-datepicker-prev::after {
content:"\02C2";
font-weight:600;
position:absolute;
left:30%;
top:8%;
color:#707477;
}
.ui-datepicker .ui-datepicker-next {
right: 2px;
background-color: #dfe0e2;
border-radius: 50px;
border:1px solid #ffffff;
cursor: pointer;
}
.ui-datepicker .ui-datepicker-next:hover{
background-color: #b9babb;
}
.ui-datepicker .ui-datepicker-next::after {
content:"\02C3";
font-weight:600;
position:absolute;
left:30%;
top:8%;
color:#707477;
}
.ui-datepicker .ui-datepicker-prev-hover {
left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
display: block;
position: absolute;
left: 50%;
margin-left: -8px;
top: 50%;
margin-top: -8px;
opacity:0;
}
.ui-datepicker .ui-datepicker-title {
margin: 0 2.3em;
line-height: 1.8em;
text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
font-size: 1em;
margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
width: 45%;
margin-left:2px;
margin-right:2px;
border-radius:3px;
border:1px solid #ffffff;
background-color:whitesmoke;
cursor:pointer;
}
.ui-datepicker select.ui-datepicker-year:hover{
background-color:gainsboro;
}
.ui-datepicker select.ui-datepicker-month:hover{
background-color:gainsboro;
}
.ui-datepicker table {
width: 100%;
font-size: .9em;
border-collapse: collapse;
margin: 0 0 .4em;
}
.ui-datepicker th {
padding: .7em .3em;
text-align: center;
font-weight: bold;
border: 0;
}
.ui-datepicker td {
border: 0;
padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
display: block;
padding: .2em;
text-align: right;
text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
background-image: none;
margin: .7em 0 0 0;
padding: 0 .2em;
border-left: 0;
border-right: 0;
border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
float: right;
margin: .5em .2em .4em;
cursor: pointer;
padding: .2em .6em .3em .6em;
width: auto;
overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
float: left;
}
/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
width: 95%;
margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
clear: left;
}
.ui-datepicker-row-break {
clear: both;
width: 100%;
font-size: 0;
}
/* RTL support */
.ui-datepicker-rtl {
direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
right: 2px;
left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
left: 2px;
right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
right: 1px;
left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
left: 1px;
right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
border-right-width: 0;
border-left-width: 1px;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
border: 1px solid #ffffff;
background: #f8f8f8;
font-weight: normal;
color: #3a3838;
margin:1px;
text-align: center;
border-radius: 50px;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
color: #555555;
text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
border: 1px solid #ffffff;
background: #2290ff;
font-weight: normal;
color: #ffffff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
color: #212121;
text-decoration: none;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
border-bottom-right-radius: 4px;
}
.ui-state-disabled {
cursor: default !important;
}
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
filter: inherit;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
cursor: text;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
opacity: .35;
filter:Alpha(Opacity=35); /* support: IE8 */
background-image: none;
}
.ui-state-disabled .ui-icon {
filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}
.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 {
border: 1px solid #ffffff;
background: #2290ff ;
font-weight: normal;
color: #ffffff;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
color: #212121;
text-decoration: none;
}
.ui-state-hover .ui-icon,
.ui-icon {
width: 16px;
height: 16px;
}
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-widget-content {
border: 1px solid #ffffff;
background: #ffffff;
color: #222222;
padding: 20px 22px;
box-shadow: 0 50px 100px rgba(50,50,93,.1), 0 15px 35px rgba(50,50,93,.15), 0 5px 15px rgba(0,0,0,.1);
}
/*----------------------extra styles for fixing ------------------------------------------------------------------------------------*/
.intendcheckbox{
margin-left:20px;
}
.top_space {
margin-top: 21px;
}
.bottom_space {
margin-bottom: 21px;
}
.three_rem_width {
padding-left:3rem !important;
padding-top:5px !important;
}
.child_space {
margin-left: 10px;
}
.radiobuttonstyle{
padding-left:2.75rem;
padding-top:0rem;
}
.radiobuttonstyle label{
padding-top:3px !important;
}
.tablefull{
width:100%;
}
.marginstyle_adjust{
margin-top:-10px;
}
.custom-file-label::after{
display: none;
}
.custom-file-label{
background-color:#ffffff;
color:#34393d;
border: 1px solid#d6d6d6;
box-shadow: none;
/*height:35px;*/
height:30px;
font-size: 11px;
padding: .375rem .75rem !important;
}
.materialetable .input-group-append{
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
}
.materialetable .input-group-text{
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
}
label.custom-file-label {
padding: 7px 10px !important;
word-break: break-all;
overflow-wrap: break-word;
overflow: hidden;
}
.red i{
margin: 0 !important;
}
.inputDnD .form-control-file{
display: none;
}
#multiFileUpload .inputDnD .form-control-file{
display: none !important;
}
.inputDnD .red{
color: #fff;
background: #fc6e63;
font-size: 12px;
padding: 2px 6px;
}
.listofupload {
padding-top: 10px;
}
.right-sidebar .commonbutton{
width: 100%;
float: left;
}
.approvedquote div.materialetable table tr td {
border-left: none;
}
.approvedquote div.materialetable table th {
border-right:none;
}
.fontsizenew{
font-size:12px !important;
}
.materialetable .comparison_insur table th {
font-size: 12px !important;
font-weight: 600;
}
textarea{
max-height: inherit;
/*height: 30px !important;*/
min-height: 30px !important;
}
.form-control{
height: 30px;
padding: .35rem;
}
.table_left_fix tbody::-webkit-scrollbar {
display: none;
}
.table_left_fix tbody{
-ms-overflow-style: none;
}
/*:-moz-any(.syncscroll) browser{
margin-right:-14px!important;
overflow-y:scroll;
margin-bottom:-14px!important;
overflow-x:scroll;
}
.syncscroll::-moz-scrollbars {display:none;}*/
/*to reduce font size in select*/
li.select2-results__option{
font-size: 12px !important;
}
span#select2-customer-container.select2-selection__rendered{
font-size:11px !important;
}
.border_line{
border-right: 1px solid #dedede;
}
.borderless_table{
width: 100% !important;
}
.borderless_table td{
border: none;
padding:0px;
}
.colon {
width: 1px;
text-align: center;
padding-left:15px;
padding-right:0px;
}
#content_full {
width: calc(100% - 0px);
padding: 80px 20px 20px 20px;
min-height: 100vh;
transition: all 0.3s;
position: absolute;
top: 50;
right: 0;
}
#content_pending {
width: calc(100% - 0px);
padding: 80px 20px 20px 20px;
min-height: 100vh;
transition: all 0.3s;
position: absolute;
top: 50;
right: 0;
}
.col-adjust{
margin-left:15px;
}
/*-----------------------------for popup page-----------------------------*/
.btn-primary{
background-color:#2290ff;
border-color: #2290ff;
}
.btnred{
background-color:#f36363;
color:white;
}
.btnred:hover{
color:white;
}
.modal button.btn.dropdown-toggle.btn-default.btn-light{
background-color: #ffffff;
color:#34393d;
border:1px solid #d6d6d6;
box-shadow:none;
padding: 6px 12px 6px 6px;
}
.modal span.filter-option.pull-left{
color:#34393d;
text-transform: initial;
font-weight:400;
font-size:11px;
}
.flexboxcontent{
display:flex;
flex-wrap: nowrap;
}
.flexboxcontent div{
margin:5px;
}
.flexcontent-items{
width:20%;
}
.modal select.selectpicker{
display:block !important;
}
.modal-xxl{max-width: 80%;}
.testtable th{
padding:5px;
}
.testtable td{
padding:5px;
border:1px solid #dee2e6;
}
.testtable {
border:1px solid #dee2e6;
}
.text{
font-size: 12px;
}
.btnxsm{
font-size: .55rem !important;
}
.add_segment .input-group-text{
color: #495057;
text-align: center;
background-color: #e9ecef;
border: 1px solid #ced4da;
padding: 2px 10px;
font-size: 11px !important;
}
.add_segment .input-group .form-control:not(:first-child) {
padding-left: 8px;
}
.formMultiView td {
padding: 8px 15px !important;
}
.file_uploadBtn{
text-align: right !important;
float: right !important;
margin-left: 21px;
}
.file_upload .row .col-2{
margin-bottom: 10px !important;
}
.flex_label {
display: flex !important;
align-items: flex-start !important;
margin-bottom: 10px;
}
.flex_label .titles{
width: 60% !important;
}
.eslipHr {
border-top: .1rem solid rgba(0,0,0,.1);
}
.viewbutton button a {
color: white !important;
}
#fullPageLoader{
width: 100%;
height: 100%;
position: fixed;
z-index: 9999;
background: rgba(255,255,255,0.9);
display: flex;
align-items: center;
justify-content: center;
display: none;
}
.lds-ellipsis {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
}
.lds-ellipsis div {
position: absolute;
top: 33px;
width: 13px;
height: 13px;
border-radius: 50%;
background: rgb(58, 58, 58);
animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
left: 8px;
animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
left: 8px;
animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
left: 32px;
animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
left: 56px;
animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
0% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
@keyframes lds-ellipsis3 {
0% {
transform: scale(1);
}
100% {
transform: scale(0);
}
}
@keyframes lds-ellipsis2 {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(24px, 0);
}
}
.btnForCC{
padding:3px 13px 7px 13px !important;
margin: 27px 10px 14px 10px !important;
}
.colon-padding{
padding-left: 12px !important;
padding-right: 8px !important;
} | public/widgetStyle/css/style.css | body{
background-color: #f6f7fb;
font-family: 'Open Sans', sans-serif;
/*font-family: "Proxima Nova", serif;*/
}
.right{
float:right;
margin-right:15px;
margin-bottom:15px;
color:#2d2f39;
}
/*-----------------------------------------------------------------------------------------------------------------------------
left sidebar style
-------------------------------------------------------------------------------------------------------------------------*/
.closestyle{
padding-left:20px;
margin-right:15px;
float:right;
}
th{
font-size:11px;
}
#response_wrp{
/* width:90%; */
z-index: 988;
display: block;
/* position: absolute; */
/* margin-top: 3px; */
/* margin-left: 30px; */
/* margin-right: 30px; */
margin: 0;
}
.qus_title {
width: 50%;
}
.qus_titles {
width: 70% !important;
}
*{
outline: none;
}
a:focus,
button:focus,
input:focus,
textarea:focus, .btn:focus {
outline: none !important;
box-shadow: none;
}
.green{
color:#acd373;
}
.menutick{
float:right;
padding:4px;
}
button {
outline: none !important;
box-shadow: none;
}
#sidebar {
width: 250px;
position: fixed;
top: 64px;
left: 0;
height: 100vh;
z-index: 999;
background: #ffffff;
color: #000000;
transition: all 0.3s;
box-shadow: 0 1px 2px 0 rgba(61, 61, 61, 0.075), 0 2px 20px 0 rgba(61, 61, 61, 0.075);
}
#sidebar.active {
margin-left: -250px;
}
#sidebar .sidebar-header {
padding: 30px;
background: #ffffff;
}
#sidebar ul.components {
padding: 0px 0;
}
#sidebar ul p {
color: #fff;
padding: 10px;
}
#sidebar ul li a {
padding: 14px;
/*font-size: 1.1em;*/
font-size: 14px;
display: block;
text-decoration: none;
color:#1c354e;
}
#sidebar ul li a:hover {
color: #000000;
background: #f6f7fb;
}
#sidebar ul li.active>a,
a[aria-expanded="true"] {
color: #1f3c57;
background: #f6f7fb;
font-weight: 600;
border-left:5px solid #f36363;
}
#sidebar a[data-toggle="collapse"] {
position:relative;
}
#sidebar .dropdown-toggle::after {
display: block;
position: absolute;
top: 50%;
right: 20px;
transform: translateY(-50%);
}
#pageSubmenu li:nth-child(n) a{
padding-left:50px;
}
.overlay.active {
display: block;
opacity: 1;
}
.overlay {
display: visible;
position: fixed;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.7);
z-index: 998;
opacity: 0;
transition: all 0.5s ease-in-out;
}
/* ----------------------------------------------------------------------------------------------------------------------------------------------
main header STYLE
--------------------------------------------------------------------------------------------------------------------------- */
.navbar{display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
box-sizing: border-box;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
width: 100%;
margin: 0;
padding: 0;
border: none;
min-height: 64px;
max-height: 1000px;
box-shadow: 0px 2px 43px -6px rgba(0,0,0,0.2);
background-color: #fff;
position: fixed;
}
.centertitle{
position: relative;
left:35%;
font-size:20px;
margin-bottom:.2rem;
}
.header{
height:64px;
}
.header button{
box-shadow:none;
transition: none;
transform:none;
}
.header button:hover{
box-shadow:none;
transition: none;
transform:none;
}
.header button .btn:not(:disabled):not(.disabled).active:focus, .btn:not(:disabled):not(.disabled):active:focus {
box-shadow: none;
}
#content ul li.active>a,
a[aria-expanded="true"] {
background:transparent;
border:none;
}
.user_name{
color: #000;
text-transform: none;
font-size: 16px;
font-weight: normal;
margin-right: 4px;
}
.user_icon{
width:36px;
height:36px;
background-color:#f36363;
border-radius:50%;
display:inline-block;
color:white;
text-align:center;
font-size:14px;
text-transform:uppercase;
font-weight: 600;
vertical-align: middle;
line-height: 36px;
}
.user_icon_collapse{
width:36px;
height:36px;
background-color:#f36363;
border-radius:50%;
display:inline-block;
color:white;
text-align:center;
font-size:14px;
text-transform:uppercase;
font-weight: 600;
margin-top:3px;
line-height: 36px;
}
.time span{
font-size:14px;
color:#000000;
line-height: 31px;
font-weight: normal;
}
.time a{
font-size:14px;
font-weight: normal;
color:#000000 !important;
}
.time i{
margin:0px;
}
.time .badge{
padding:3px;
}
.time .fa{
color:#f36363 !important;
}
/* -------------------------------------------------------------------------------------------------------------------------
CONTENT STYLE
------------------------------------------------------------------------------------------------------------------------- */
#content {
width: calc(100% - 250px);
padding: 80px 20px 20px 20px;
min-height: 100vh;
transition: all 0.3s;
position: absolute;
top: 0;
right: 0;
}
div#content-pending {
width: 100%;
padding: 80px 20px 20px 20px;
min-height: 100vh;
transition: all 0.3s;
position: absolute;
top: 0;
right: 0;
}
#content.active {
width: 100%;
}
/*---------------------------------------content and body css ----------------------------------------*/
.mycontainer{
background-color: #f6f7fb;
max-width: 1800px;
margin: 0px auto 0px;
border-radius: 8px;
}
.mycontainer .shadow{
box-shadow: 0px 10px 33px -2px rgba(0,0,0,0.1);
}
.heading{
border-bottom: 1px solid #d4d4d49f;
padding:15px 15px 15px 15px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
background-color: #ffffff;
}
.navbar-brand h5{
margin:0px;
padding:0px;
}
.title{
margin:0px;
padding:0px;
font-weight:600;
text-transform: initial;
font-size:14px;
}
.titles{
color:#3e566e;
}
.titles span{
color:red;
}
.contentbody{
margin-top:0px;
padding-left:20px;
padding-top:25px;
padding-bottom:25px;
padding-right:20px;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
background-color:#ffffff;
}
.contentbody .row div{
margin-top:2px;
margin-bottom:2px;
}
.contentbody .input-group-prepend{
margin-top:0px !important;
margin-right:0px;
}
.contentbody .input-group-prepend span{
background-color:#edf0f3;
}
.contentbodytwo .input-group-prepend{
margin-top:0px !important;
margin-right:0px;
background-color:#edf0f3;
}
.contentbodytwo .input-group-prepend span{
background-color:#edf0f3;
}
.contentbodytwo .add_segment .col-3 .form-group{margin-bottom:0px;}
.contentbody .input-group-append{
margin-top:0px !important;
}
.contentbody .input-group .form-control:not(:first-child) {
padding-left: 8px !important;
border-left: 0;
}
.contentbodytwo .input-group .form-control:not(:first-child) {
padding-left: 8px !important;
border-left: 0;
}
::-webkit-input-placeholder { /* Chrome */
color: rgb(141, 141, 141) !important;
}
:-ms-input-placeholder { /* IE 10+ */
color: rgb(141, 141, 141) !important;
}
::-moz-placeholder { /* Firefox 19+ */
color: rgb(141, 141, 141) !important;
opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
color: rgb(141, 141, 141) !important;
opacity: 1;
}
.eslip_leftscroll{
height:calc(100vh - 110px);
overflow-y:scroll;
}
.eslip_leftscroll .title{
font-size:11px;
}
.eslip_leftscroll .titles{
font-size:11px;
}
.eslip_rightscroll{
height:calc(100vh - 110px);
overflow-y:scroll;
}
.eslip_leftscroll::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 3px rgba(73, 73, 73, 0.3);
border-radius: 20px;
background-color: #F5F5F5;
}
label{
font-size:11px !important;
}
.eslip_leftscroll::-webkit-scrollbar
{
width:8px;
height:8px;
background-color: #F5F5F5;
}
.eslip_leftscroll::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 3px rgba(65, 64, 64, 0.212);
background-color: rgb(194, 192, 192);
}
.eslip_rightscroll::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 3px rgba(73, 73, 73, 0.3);
border-radius: 20px;
background-color: #F5F5F5;
}
.eslip_rightscroll::-webkit-scrollbar
{
width:8px;
height:8px;
background-color: #F5F5F5;
}
.eslip_rightscroll::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 3px rgba(65, 64, 64, 0.212);
background-color: rgb(194, 192, 192);
}
/*.contentbody .eslip{
background-color: #f6f7fb !important;
}*/
/*-------------------------------------------button style-----------------------------------------------------------------------*/
.commonbutton button{
margin-top:10px;
margin-bottom:10px;
margin-right:15px;
background-color: #2290ff;
border-color: #2290ff;
float:right;
padding: .625rem 1.25rem;
}
.commonbutton button a{
color:white;
}
.commonbutton button:hover{
color: #fff;
background-color: #188afc;
border-color: #188afc;
}
.commonbutton button:focus{
color: #fff;
background-color: #0a74df !important;
border-color: #0a74df !important;
}
.commonbutton button a:hover{
text-decoration: none;
}
.commonbutton button.close{
background-color:transparent;
border-color:transparent;
color:black;
}
/*.commonbutton .close>span:not(.sr-only){
color:black;
}*/
.commonbutton button.close:focus{
background-color: transparent !important;
border-color: transparent !important;
}
.commonbutton button.closebutton{
background-color:transparent;
border-color:transparent;
color:#0a74df;
}
.commonbutton button.closebutton:focus{
background-color:transparent !important;
border-color:transparent !important;
color:#0a74df;
}
.commonbutton .modal-header{
border-bottom: none;
}
.modal-body .alert-dismissible .close{
top:50%;
right:15px;
}
.modal-body .alert-dismissible .close>span:not(.sr-only){
color:grey;
}
.selectedcompany{
display:contents;
}
.selectedcompany .alert-dismissible {
padding-right: 4.5rem;
}
.modal-body .alert-secondary{
background-color:#ffffff;
border:1px solid #d6d6d6;
margin-right:10px;
}
.commonbutton .modal-footer{
padding-top:0rem;
border-top:none;
}
.commonbutton .modal-body{
padding-top:0rem;
}
/*----------------------------------------remove button----------------------------------------------------*/
.removebtn button{
float:right;
border:1px solid #cad1d7;
}
.removebtn input{
float:right;
border:1px solid #cad1d7;
}
/*-----------------------------form- fields------------------------------------------------------------------*/
/*----form field size change-----*/
.contentbody .form-control{
border-color: #d6d6d6;
color:#000000;
height: calc(2rem + 2px);
/*height:35px;*/
height:30px;
font-size:11px;
}
.contentbody .selectstyle .form-control{
padding:.375rem .75rem;
}
.contentbodytwo .form-control{
height:calc(2rem+2px);
/*height:35px;*/
height:30px;
}
.contentbody .form-control .btn{
padding:.375rem .75rem !important;
}
.contentbodytwo .form-control .btn{
padding:.375rem .75rem !important;
}
.selectreason .form-control .btn{
padding:.375rem .75rem !important;
}
.dropdown-toggle::after {
margin-left: -.5em;
}
.dropup .dropdown-toggle::after{
margin-left: -.6em;
}
.contentbody .input-group-text {
padding:.375rem .75rem !important;
/*height:34.5px;*/
height:30px;
font-size:11px !important;
}
.contentbodytwo .input-group-text {
padding:.375rem .75rem !important;
/*height:34.5px;*/
height:30px;
font-size:11px !important;
}
.contentbody textarea.form-control {
height: auto;
}
.contentbodytwo textarea.form-control {
height: auto;
}
table label{
margin-bottom:0px;
}
.materialetable .input-group-text {
padding:.375rem .75rem !important;
/*height:34.5px;*/
height:30px;
}
.materialetable .form-control{
height:calc(2rem+2px);
/*height:35px;*/
height:30px;
color:black;
}
.comparision .form-control{
height:calc(2rem+2px);
/*height:35px;*/
height:30px;
}
.alert{
padding: .4rem 1.5rem;
}
/*------------------*/
.contentbody .form-group ::placeholder{
font-weight:400;
color:#8d8d8d;
}
.contentbody textarea::placeholder{
font-weight:400;
color:#8d8d8d;
}
.contentbody .form-group .titles{
margin:0px;
font-weight:600;
/* padding: .625rem 0rem;*/
padding: .375rem 0rem;
list-style: height 1.5em;
display: block;
}
/* ------------------style added on 15-11-2019--start-----------------------------------*/
.dropdown.selectpicker {
display: none;
}
.contentbody button.btn.dropdown-toggle.btn-default.btn-light{
background-color: #ffffff;
color:#34393d;
border:1px solid #d6d6d6;
box-shadow:none;
}
.contentbody span.filter-option.pull-left{
color:#34393d;
text-transform: initial;
font-weight:400;
font-size:11px;
}
.contentbodytwo button.btn.dropdown-toggle.btn-default.btn-light{
background-color: #ffffff;
color:#34393d;
border:1px solid #d6d6d6;
box-shadow:none;
}
.selectreason button.btn.dropdown-toggle.btn-default.btn-light{
background-color: #ffffff;
color:#34393d;
border:1px solid #d6d6d6;
box-shadow:none;
font-size: 11px;
}
.contentbodytwo span.filter-option.pull-left{
color:#34393d;
text-transform: initial;
font-weight:400;
font-size:11px;
}
.selectreason span.filter-option.pull-left{
color:#34393d;
text-transform: initial;
font-weight:400;
}
.contentbodytwo .form-group a.dropdown-item.selected.active{
background-color: #2290ff;
}
.contentbody .form-group a.dropdown-item.selected.active{
background-color: #2290ff;
}
.contentbody .select2-container--default .select2-selection--single {
border:1px solid #d6d6d6;
}
.contentbody .select2-container--default .select2-selection--single .select2-selection__arrow b {
/*top:90%;*/
top:70%;
border-color: #000000 transparent transparent transparent;
}
/*-----paddingchange-------*/
.contentbody .select2-container .select2-selection--single .select2-selection__rendered{
/*padding: .375rem 1.25rem;
padding: .105rem 1.25rem;*/
padding: .105rem .8rem;
border-radius: 4px;
width:100% !important;
}
/*-------------*/
.contentbody .select2-container .select2-selection--single {
height:auto;
}
.contentbody .select2-container--default .select2-selection--single .select2-selection__placeholder{
color:#494f53;
font-weight:400;
font-size:11px;
}
/* ------------------style added on 15-11-2019--end----------------------------------*/
.contentbodytwo .titles{
font-weight:600;
padding: 0rem;
}
.contentbodytwo label{
padding-bottom: 0rem;
/*padding-bottom: .625rem;*/
padding-top: 0px !important;
}
.contentbody .form-group .error{
margin:0px;
padding: .2rem 0rem;
font-size:10px;
font-weight: 500;
color:red !important;
}
.error{
margin:0px;
padding: .2rem 0rem;
font-size:10px;
font-weight: 500;
color:red !important;
text-transform: capitalize;
}
.contentbody .form-inline .bootstrap-select.btn-group, .form-horizontal .bootstrap-select.btn-group, .form-group .bootstrap-select.btn-group {
/*margin-bottom: 10px !important;*/
margin-bottom: 10px !important;
}
/*.contentbody .form-group .bootstrap-select.btn-group {
margin-bottom: 10px;
}*/
.contentbodytwo .form-control{
border-color: #d6d6d6;
color:#7e7e7e;
font-size:11px;
}
.custom-radio .custom-control-input~.custom-control-label{
font-size:11px;
}
.contentbodytwo .form-group ::placeholder{
font-weight:400;
color:#7e7e7e;
}
.contentbodytwo textarea::placeholder{
font-weight:400;
color:#7e7e7e;
}
.contentbodytwo .form-group .titles{
/*margin:0px;*/
margin-bottom: 10px;
margin-top: 3px;
/*padding: .625rem 0rem;*/
list-style: height 1.5em;
display: block;
font-size:11px;
}
.contentbodytwo .add_segment .form-group{
margin-bottom: 10px;
}
.contentbodytwo .form-group .error{
margin:0px;
padding: .2rem 0rem;
font-size:10px;
font-weight: 500;
color:red !important;
}
.minTableWidth{
width: 100px;
}
.maxWidth{
width: 100% !important;
}
label .req:after{
content: " *";
}
/*.contentbodytwo .row div{
margin-top:8px;
margin-bottom:8px;
}*/
.contentbodytwo .custom-control-input:checked~.custom-control-label::before{
color: #fff;
border-color: #fc6e63;
background-color: #fc6e63;
box-shadow: none;
top:0;
}
.contentbody .custom-control-input:checked~.custom-control-label::before{
color: #fff;
border-color: #fc6e63;
background-color: #fc6e63;
box-shadow: none;
top:0;
}
.checkboxred .custom-control-input:checked~.custom-control-label::before{
color: #fff;
border-color: #fc6e63;
background-color: #fc6e63;
box-shadow: none;
top:0;
}
.checkboxred .custom-control-label::before{
top:0;
}
.checkboxred .custom-control-label::after{
top:0;
}
.radio .custom-control-input:checked~.custom-control-label::before{
color: #fff;
border-color: #fc6e63;
background-color: #fc6e63;
box-shadow: none;
top:0;
}
.contentbody .custom-control-label::before{
top:0;
}
.contentbody .custom-control-label::after{
top:0;
}
.contentbodytwo .custom-control-label::before{
top:0;
}
.contentbodytwo .custom-control-label::after{
top:0;
}
.radio .custom-control-label::before{
top:0;
}
.radio .custom-control-label::after{
top:0;
}
.blue{
color:#347abf;
}
.spacing{
padding-left:5px;
padding-right:5px;
}
.mycontainer .custom-checkbox .custom-control-input~.custom-control-label {
/*font-size: smaller;*/
font-size: 11px;
font-weight:600;
color:#3e566e;
padding-top: 3px;padding-bottom: 3px;
width:100%;
}
.mycontainer .custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
background-color: rgba(252,110,99,.8);
}
.table_right_pen .custom-control-input:checked~.custom-control-label::before{
color: #fff;
border-color: #fc6e63;
background-color: #fc6e63;
box-shadow: none;
}
.table_right_pen .custom-control-input:checked~.custom-control-label::before{
color: #fff;
border-color: #fc6e63;
background-color: #fc6e63;
box-shadow: none;
}
.table_right_pen .mb-3{
margin-bottom:0rem !important;
}
.table_right_pen .custom-checkbox .custom-control-input~.custom-control-label {
font-size:11px;
font-weight:600;
color: #707477;
padding-top: 3px;
padding-bottom: 3px;
width:100%;
/*display: block;*/
word-break: break-word;
white-space: normal;
}
.table_right_pen .custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
background-color: rgba(252,110,99,.8);
}
.table_right_pen .custom-control-label::before{
border:1px solid #fc6e63;
}
/*----------------------------------------------------------upload---------------------------------------------*/
.inputDnD .form-control-file {
/*font-size: .875rem;*/
font-size: 11px;
font-weight: 400;
line-height: 1.5;
display: block;
/* height: calc(1.5em + 1.25rem + 2px); change*/
height: calc(1.5em + .75rem + 2px);
padding: .625rem .75rem;
background-clip: padding-box;
transition: all .2s cubic-bezier(.68,-.55,.265,1.55);
color: #8898aa;
border: 1px solid #cad1d7;
position: relative;
width: 100%;
outline: none;
visibility:hidden;
cursor: pointer;
box-shadow:none;
margin:0px;
}
.inputDnD .form-control-file:before {
content: attr(data-title);
position: absolute;
margin-top:0px;
padding-top: 5px;
top:0;
left: 0;
width: 100%;
/*height: calc(1.5em + 1.25rem + 2px);....change---*/
height: calc(1.5em + .75rem + 2px);
line-height: 2em;
opacity: 1;
visibility:visible;
text-align: left;
padding-left:10px;
font-weight:normal;
color:#000000;
border:1px solid rgb(214, 214, 214);
border-radius: 4px;
overflow: hidden;
}
/* -----------------------------------------------------------------------equsetionnaire and e slip css------------------------*/
header{
box-sizing: border-box;
width: 100%;
margin: 0;
padding: 0px;
border: none;
min-height: 64px;
max-height: 1000px;
box-shadow: 0px 2px 43px -6px rgba(0,0,0,0.2);
background-color: #414453;
position: fixed;
z-index:999;
}
.hidesidebar{
/*display: none;*/
display: block;
cursor:pointer;
position:relative;
}
.headertitle{
padding-top:.625rem;
display:block;
word-break:break-all;
white-space: normal;
margin-top:8px;
flex:1;
}
.headbutton{
padding-top:1rem;
float:right;
padding-right:0px;
margin-right:0px;
flex:1;
}
header i{
color:white;
}
/*header h6{
margin-left:15px;
}*/
header .headbutton .btngroup{
float:right;
/*margin-right:25px;*/
position: relative;
display: inline-flex;
vertical-align: middle;
}
header .headbutton .btngroup button{
color: #9cecfa;
cursor: pointer;
float: right;
border:1px solid transparent;
}
header .headbutton .btngroup .btn-primary{
background-color: #2290ff;
border-color: #2290ff;
float:right;
color:white !important;
}
header .headbutton .btngroup .btn-primary:hover{
background-color: #007cf8;
border-color: #0080ff;
float:right;
color:white !important;
}
header .headbutton .btngroup .btn-primary a{
color:white !important;
}
header .headbutton .btngroup label{
color: #ffffff;
cursor: pointer;
margin-right: 10px;
margin-top: 5px;
background-color: #c9574f;
word-break: break-word;
white-space: normal;
line-height: normal;
}
header .btngroup button a{
color: #9cecfa;
}
/* Clear floats (clearfix hack) */
header .btngroup:after {
content: "";
clear: both;
display: table;
}
header .btngroup button:not(:last-child) {
border-radius:4px;
}
/* Add a background color on hover */
header .btngroup button:hover {
background-color: #2d2f39;
color: #9cecfa;
}
.insur_page{
box-sizing: border-box;
width: 100%;
margin: 0;
padding: 0px;
border: none;
min-height: 64px;
max-height: 1000px;
box-shadow: 0px 2px 43px -6px rgba(0,0,0,0.2);
background-color: #414453;
z-index:99;
}
.insur_page .headbutton .btngroup{
float:right;
margin-right:25px;
position: relative;
display: inline-flex;
vertical-align: middle;
}
.insur_page .headbutton .btngroup button{
color: #9cecfa;
cursor: pointer;
float: right;
border:1px solid transparent;
}
.insur_page .btngroup button a{
color: #9cecfa;
}
.insur_page .btngroup:after {
content: "";
clear: both;
display: table;
}
.insur_page .btngroup button:not(:last-child) {
border-radius:4px;
}
.insur_page .btngroup button:hover {
background-color: #2d2f39;
color: #9cecfa;
}
.insurtop{
padding-top:90px;
}
.white{
color:white;
text-transform: none;
}
.red{
color:#fc6e63;
}
.contentbodytwo{
margin-top:0px;
padding-left:0px;
padding-top:0px;
padding-bottom:0px;
padding-right:0px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
/* background-color:#f6f7fb;*/
}
.backgroundwhite{
background-color:white;
padding-left:20px;
padding-top:25px;
padding-bottom:25px;
padding-right:20px;
}
/*-------------------------------------------------datepicker-----------------------------------------------------------------------*/
.mycontainer .datepicker table tr td.active, .datepicker table tr td.active.highlighted, .datepicker table tr td.active.highlighted:hover, .datepicker table tr td.active:hover {
color: #fff;
background: #fc6e63;
box-shadow: none;
}
/*------------------------------------------claim history table style in e slip---------------------------------------------------------*/
.contentbodytwo table {
border-collapse: collapse;
border: 0px solid #d6d6d6;
}
.claimhistory th,.claimhistory td {
border: 1px solid #d6d6d6 !important;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
vertical-align: top;
}
.claimhistory th{
font-weight:600;
font-size:11px;
}
.claimhistory td{
font-weight:500;
font-size:11px;
vertical-align: top;
}
.contentbodytwo table.claimhistory {
table-layout: auto;
width: 100%;
}
table.claimhistorydata {
table-layout: fixed;
width: 100%;
font-size:11px;
}
table.claimhistorydata p{
margin-bottom:0rem;
font-size:11px;
}
.claimhistorydata th,.claimhistorydata td{
border: 1px solid #d6d6d6 !important;
padding-top:8px;
padding-bottom:8px;
padding-left:5px;
padding-right:5px;
}
.datatitle{
padding-left:25px;
padding-top:15px;
padding-bottom:15px;
padding-right:15px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
background-color:#ffffff;
}
.datatitle .form-group{
margin-bottom:0px;
}
/*--------------------------------------------------upload excel----------------------------------------------------------*/
.uploadbutton{
background-color: inherit;
border:none;
}
.file-upload {
background-color: #ffffff;
padding: 20px;
}
.file-upload-content {
display: none;
text-align: center;
}
.file-upload-input {
position: absolute;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
outline: none;
opacity: 0;
cursor: pointer;
}
.image-upload-wrap {
border: 2px dashed #e9b2ae;
position: relative;
}
.image-title-wrap {
padding: 0 15px 15px 15px;
color: #222;
}
.drag-text {
text-align: center;
}
.drag-text h6 {
font-weight: 300;
text-transform: initial;
color: rgb(41, 78, 99);
padding: 60px 0;
}
/*--------------------------------------------------table for e quotation old code modified------------------------------------------*/
.comparesec{
border:3px solid #f6f7fb;
border-radius:6px;
}
div.materialetable {
padding: 0;
}
div.materialetable table tr td {
padding: 5px 0 5px 56px;
/*height: 20px !important;*/
height: 12px !important;
font-size: 11px;
color: rgba(0, 0, 0, 1);
/*border-bottom: solid 1px #DDDDDD;
border-right: 2px solid #f6f7fb;*/
border-left: 2px solid #f6f7fb;
line-height: 20px;
font-weight: 600;
}
div.materialetable table tr td a {
color: inherit;
}
div.materialetable table tr td a i {
font-size: 18px;
color: rgba(0, 0, 0, 0.54);
}
div.materialetable table tr {
font-size: 11px;
}
div.materialetable table th {
font-size: 11px;
font-weight: 600;
color: #707477;
/*cursor: pointer;
white-space:nowrap;*/
padding: 0;
height: 64px;
padding-left: 56px;
vertical-align: middle;
outline: none !important;
border-right: 2px solid #f6f7fb;
border-bottom:none;
}
div.materialetable table tbody tr:hover {
background-color: #EEE;
}
div.materialetable table tbody tr:focus {
background-color: #EEE;
}
div.materialetable table th:first-child,
div.materialetable table td:first-child {
padding: 0 0 0 24px;
}
div.materialetable table th:last-child,
div.materialetable table td:last-child {
padding-right: 24px !important;
}
.dataatable{
margin-bottom: 78px;
}
.dataatable .materialetable{
margin: 0;
box-shadow: 0px 10px 33px -2px rgba(0,0,0,0.15);
background-color: #fff;
}
div.materialetable table thead tr {
font-size: 11px;
/*border-bottom: 1px solid #dadada;*/
text-transform: none;
font-weight: 600;
}
div.materialetable table td {
font-weight: 500;
font-size:11px;
}
div.materialetable .table-footer label{
position: relative;
}
div.materialetable .table-footer select{
padding: 0 14px;
/*z-index: 9999;*/
}
.materialetable table.comparison th, .materialetable table.comparison td{
/* padding: 10px 20px !important;*/
padding: 2px 20px !important;
position: relative;
}
.materialetable table.comparison th{
width:280px;
border-right: 2px solid #f6f7fb;
}
.table.comparison{
width: 100%;
table-layout: fixed;
}
.materialetable table.comparison tbody tr:hover{
background-color: #eeeef5 !important;
}
.materialetable table.comparison th:last-child,
.materialetable table.comparison td:last-child{
border-right: none !important;
}
.materialetable table.comparison th:first-child,
.materialetable table.comparison td:first-child{
/*border-left: none !important;*/
border-left: 2px solid #f6f7fb;
}
.materialetable table.comparison th{
border-top: none !important;
}
/*----------------------------------------------------------*/
.insurheightfix thead tr {
display: block;
position: relative;
}
.insurheightfix tbody {
overflow:auto;
width: 100%;
display:inline-block;
}
.insurheightfix tbody::-webkit-scrollbar {
display: block;
}
.insurheightfix tbody {
-ms-overflow-style: visible;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.insurheightfix::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE and Edge */
.insurheightfix{
-ms-overflow-style: none;
}
.form-control{
font-size:12px;
}
/*---------------------------------------------------------*/
.textcolor{
color:rgb(109, 108, 108) !important;
}
.pointer{
position: relative;
z-index: 99;
width: 25px;
/* padding: 2px 10px;*/
}
.checkoverlay::after{
content:'';
top:0;
left:0;
width:100%;
height:100%;
background-color: #fc6e63;
}
.syncscroll tr.first-child td.first-child.checkoverlay::before{
background-color: red;
height:100vh;
z-index:9;
position:absolute;
bottom:0;
}
.syncscroll tr:first-child td.checkoverlay::before{
content:'5';
width:100%;
left:0;
top:0;
background-color: red;
}
.table.comparison .cbx span:nth-of-type(2){
font-size: 11px;
padding-top: 0px;
font-weight: 600;
color: #707477;
}
.table.comparison .cbx span:first-child{
margin-top: 0px;
}
.table.comparison .inp-cbx:checked + .cbx span:nth-of-type(2) {
color: #fc6e63;
}
.table.comparison .custom_checkbox{
margin: 0;
}
.table.comparison{
margin: 0;
}
.tablefixed{
display: flex;
width: 100%;
}
.table_left_fix{
width: 544px !important;
}
.table_right_pen{
width: calc(100% - 544px);
}
.tablefixed th,
.tablefixed td{
/* padding: 10px 20px !important;*/
padding-top: 4px !important;
padding-bottom: 3px !important;
padding-right:20px !important;
padding-left:20px !important;
vertical-align: middle;
}
.table_left_fix .materialetable{
border-bottom: none;
overflow: hidden;
}
.table_right_pen .materialetable{
overflow-x: auto;
}
#scrollstyle::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 20px;
background-color: #F5F5F5;
}
#scrollstyle::-webkit-scrollbar
{
width:10px;
height:10px;
background-color: #F5F5F5;
}
#scrollstyle::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.212);
background-color: rgb(163, 161, 161);
}
.table_right_pen .materialetable table{
table-layout:auto;
}
table.table.customer_table .ans{
min-width: unset !important;
}
.tablefixed .ans{
min-width: 500px !important;
max-width: 500px !important;
width: 100% !important;
color:#707477;
word-break: break-word;
}
.heightfix table{
margin: 0 !important;
padding: 0 !important;
}
.heightfix thead,
.heightfix tfoot{
display: block;
}
.heightfix tbody{
height: calc(100vh - 200px);/*300px*/
overflow-y: auto;
overflow-x: hidden;
display: block;
}
#mailview .table_left_fix tbody{
overflow-y: hidden;
overflow-x: hidden;
}
.approvedheightfix{
height: calc(100vh - 250px);
overflow-y: auto;
overflow-x: hidden;
}
.insurheightfix{
height: calc(100vh - 200px);
overflow-y: auto;
overflow-x: auto;
}
.table_right_pen thead th{
height: 64px !important;
}
.tablefixed tr{
width: 100%;
}
.hoverx{
background-color: #eeeef5 !important;
}
.materialetable thead tr.hoverx{
background-color: #fff !important;
}
.commonfix .table_left_fix{
width: 544px !important;
}
.commonfix .table_right_pen {
width: calc(100% - 544px); /*456*/
}
.table_right_pen tbody tr{
border-right: 1px solid #ddd;
display: inline-table;
}
.table_right_pen thead{
overflow-y: hidden;
}
.materialetable thead tr{
border-bottom: none !important;
}
.materialetable thead th{
border-top:none;
}
.materialetable thead{
border-bottom: 6px solid #f6f7fb;
}
#pdfview label{
word-wrap: break-word;
display:block;
}
.mainsquestion{
min-width: 300px !important;
max-width: 300px !important;
width: 100% !important;
}
#pdfview .mainsquestion{
width: auto !important;
}
#pdfview table{
background-color:#ffffff;
}
.mainsanswer{
min-width: 200px !important;
max-width: 200px !important;
/*width: 100% !important;*/
}
.comparesec{
margin-bottom: 20px;
}
.comparesec .materialetable{
box-shadow: none;
/*border: 1px solid #ddd;*/
}
.comparesec .form_label{
color:#3e566e;
}
/*-------------------------------------check column---------------------------------------------------------------*/
/*.insurer_select{
background-color:rgba(252, 232, 231, 0.212);
}*/
/*.insurer_select::before {
content: '';
/* background: rgba(231, 130, 123, 0.686);
background: rgba(241, 241, 241, 0.686);
position: absolute;
width: 100%;
height: calc(100% + 2px);
left: 0;
top: 0;
z-index: 9;
}*/
/*.syncscroll tr:first-child .insurer_select::after {
content: '';
width: 100px;
height: 100px;*/
/* background: #ffffff; */
/* background: #737682;
background-image: url('../assets/img/images/tick.svg');
background-position: center;
font-size: xx-large;
position: absolute;
z-index: 99;
left: 50%;
margin: -50px 0 0 -50px;
top: 200px;
border-radius: 80px;
box-shadow: 0px 2px 8px 5px #eee0e086;
background-size: 60%;
background-repeat: no-repeat;
}*/
.insurer_select::before {
content: '';
/* background: rgba(231, 130, 123, 0.686); */
background: rgba(241, 241, 241, 0.686);
position: absolute;
width: 100%;
height: calc(100% + 2px);
left: 0;
top: 0;
z-index: 9;
}
.syncscroll tr:first-child .insurer_select::after {
content: '';
width: 100px;
height: 100px;
/* background: #ffffff; */
background: #737682;
background-image: url('../assets/img/images/tick.svg');
background-position: center;
font-size: xx-large;
position: absolute;
z-index: 99;
left: 50%;
margin: -50px 0 0 -50px;
top: 200px;
border-radius: 80px;
box-shadow: 0px 2px 8px 5px #eee0e086;
background-size: 60%;
background-repeat: no-repeat;
}
/*--------------------------------editable field-----------------------------------------------------------*/
.controls-update{position:relative;margin-top:4px;margin-right:2px;float:right;color: #347abf;font-size:11px;display:none;cursor:pointer;}
.edit-on-click{cursor:pointer;width:fit-content;}
.inputstyle{ padding:5px;border-radius:5px;margin-bottom:4px;margin-top:3px;width:220px;box-shadow: none;border:1px solid #cad1d7;}
.editbutton{
cursor:pointer;
}
.editbutton a{
padding:1px;
border:0px;
background-color:white;
text-transform: inherit;
font-size:11px;
cursor:pointer;
}
.editbutton .fa{
color:#fc6e63;
}
.editbutton:focus{
color:black;
}
.editbutton a:focus .fa{
color:#c9574f;
background-color:white;
}
.editbutton:hover {
color:#79322d;
}
.editbutton .btn-outline-light:hover {
background-color: #ffffff;
border:none;
color:#79322d;
box-shadow: none;
}
.editbutton .btn-outline-light:focus {
background-color: #ffffff;
border:none;
box-shadow: none;
/* color:#c9574f;*/
}
.editbutton .btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show>.btn-outline-light.dropdown-toggle{
background-color:#ffffff;
color:#79322d;
}
.editbutton a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover{
color:#79322d;
}
/*--------update---------*/
.updatebutton{
cursor:pointer;
}
.updatebutton a{
padding:0px;
border:0px;
background-color:white;
text-transform: inherit;
font-size:11px;
}
.updatebutton .fa{
color:#fc6e63;
}
.updatebutton:focus{
color:black;
}
.updatebutton a:focus .fa{
color:#c9574f;
background-color:white;
}
.updatebutton:hover {
color:#79322d;
}
.updatebutton .btn-outline-light:hover {
background-color: #ffffff;
border:none;
color:#79322d;
box-shadow: none;
}
.updatebutton .btn-outline-light:focus {
background-color: #ffffff;
border:none;
box-shadow: none;
/* color:#c9574f;*/
}
.updatebutton .btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show>.btn-outline-light.dropdown-toggle{
background-color:#ffffff;
color:#79322d;
}
.updatebutton a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover{
color:#79322d;
}
#show-button { cursor: pointer;border-top-right-radius: 4px;border-bottom-right-radius: 4px; }
#hide-button { cursor: pointer; display: none; }
/*-------------------------------------------------------collapsible pannels--------------------------------------------*/
.wrap{
width:100%;
}
.wrap .fa-check{
color:#acd373;
/* visibility:hidden;*/
}
.wrap .editpanel{
float:right;
font-weight:500;
font-size:11px;
color:#fc6e63;
}
/*.panel-group{
xbackground-color:#f6f7fb;
}*/
.center-block{margin:0px;}
.panel-default{
/*box-shadow: 0px 5px 2px #e6e7e9;*/
background-color:#ffffff;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
.panel-heading {
padding: 0px;
border:0;
margin:0px;
}
.panel-body{
border-bottom: 1px solid rgb(233, 233, 233);
padding:25px;
margin-bottom: 10px;
/*box-shadow: 0px 5px 2px #e6e7e9;*/
box-shadow: 0px 8px 5px -4px #e6e7e9;
}
.panel-title{
margin-bottom: 0px;
border-bottom: 1px solid rgb(233, 233, 233);
}
.panel-title>a, .panel-title>a:active{
display:block;
padding:25px;
color:#555;
font-size:14px;
font-weight:600;
background-color: #ffffff;
border-radius: 4px;
letter-spacing:1px;
word-spacing:3px;
text-decoration:none;
border:none;
}
.panel-heading a:before {
float: right;
transition: all 0.5s;
}
.panel-heading.active a:before {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
transform: rotate(180deg);
}
/*--------------------------------------------------------upload add table----------------------------------------------------------------------*/
.table-uploadwrapper {
width:100%;
background: #fff;
padding: 20px;
}
.uploadtable-title {
padding-bottom: 10px;
margin: 0 0 10px;
border-bottom:1px solid #e9e9e9;
}
.uploadtable-title .add-new {
float: right;
font-size: 11px;
text-shadow: none;
border-radius: 50px;
line-height: 13px;
box-shadow: none;
}
.table-uploadwrapper table.table {
table-layout: fixed;
}
.table-uploadwrapper table.table tr td{
border-bottom:1px solid #e9e9e9;
}
.table-uploadwrapper table.table th{
border:none;
}
/*--------------------------------------------------------------------------disclaimer-----------------------------------------------------------------*/
.disclaimer {
background-color: #ffffff;
border-radius: 6px;
}
.disclaimer p{
font-size:10px;
margin-top:1rem;
font-weight: 400;
}
/*-------------------------------------------------------------success and fail --alert----------------------------------------------------------*/
.successalert .alert-success{
background-color:#ffffff;
border:1px solid #8dc63f;
color:#64aa01a2;
}
.failalert .alert-danger{
background-color:#ffffff;
border:1px solid #fc6e63;
color:#c5271c;
}
/*-----------------------------------------------------mailview page------------------------------------------------------*/
div.mailviewheader{
position: -webkit-sticky; /* Safari */
position: sticky;
top: 0;
z-index:90;
}
.mailviewheader .bg-white{
border-radius: 4px;
border-bottom:1px solid #d6d4d4;
}
.mailviewheader img{
width:auto;
height:80px;
padding-right:15px;
}
.mailviewheader h5{
padding-top:20px;
padding-left:15px;
}
.mailsubheader {
background-color:#ffffff;
border-radius:4px;
}
.mailsubheader table{
table-layout: fixed;
}
.mailsubheader table td{
border: 3px solid #f6f7fb;
}
#mailview .mainsquestion{
min-width: 300px !important;
max-width: 500px !important;
}
#mailview .materialetable table.comparison th,
#mailview .materialetable table.comparison td{
width: 290px !important;
}
#mailview .materialetable table.comparison th:last-child,
#mailview .materialetable table.comparison td:last-child{
width: auto !important;
}
#mailview .tablefixed .ans {
min-width: 290px !important;
max-width: 290px !important;
}
/*-----------------------------------------floating chat-------------------------------------------------*/
.floatingchat {
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: white;
position: fixed;
bottom: 20px;
right: 10px;
width: 50px;
height: 50px;
/*transform: translateY(70px);*/
transition: all 250ms ease-out;
border-radius: 50%;
opacity: 1;
background: #414453;
z-index: 999999;
}
.floatingchat.enter:hover {
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
opacity: 1;
}
.floatingchat.enter {
transform: translateY(0);
opacity: 1;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.14);
}
.floatingchat.expand {
width: 400px;
max-height: 460px;
height: 460px;
border-radius: 5px;
cursor: auto;
opacity: 1;
background: #ffffff;
z-index: 99999999;
}
.floatingchat :focus {
outline: 0;
}
.floatingchat button {
background: transparent;
border: 0;
color: #414453;
text-transform: uppercase;
border-radius: 3px;
cursor: pointer;
font-weight: 600;
font-size: 14px;
}
.floatingchat .chat {
display: flex;
flex-direction: column;
position: absolute;
opacity: 0;
width: 1px;
height: 1px;
border-radius: 50%;
transition: all 250ms ease-out;
margin: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.floatingchat .chat.enter {
opacity: 1;
border-radius: 0;
margin: 10px;
width: auto;
height: auto;
}
.floatingchat .chat .chatheader {
flex-shrink: 0;
padding-bottom: 10px;
display: flex;
background: transparent;
}
.floatingchat .chat .chatheader .chattitle {
flex-grow: 1;
flex-shrink: 1;
padding: 0 5px;
margin: 5px 0 0 0;
color:#414453;
font-size: 14px;
border-bottom:1px solid #9e9fa7;
}
.floatingchat > .fa.fa-comments{
font-size: 24px;
}
.floatingchat .chat .header button {
flex-shrink: 0;
}
.floatingchat .chat .messages {
padding: 10px;
margin: 0;
list-style: none;
overflow-y: auto;
overflow-x: hidden;
flex-grow: 1;
border-radius: 4px;
background: transparent;
}
.floatingchat .chat .messages::-webkit-scrollbar {
width: 5px;
}
.floatingchat .chat .messages::-webkit-scrollbar-track {
border-radius: 5px;
background-color: rgba(25, 147, 147, 0.1);
}
.floatingchat .chat .messages::-webkit-scrollbar-thumb {
border-radius: 5px;
}
.floatingchat .chat .messages li {
position: relative;
clear: both;
display: inline-block;
padding: 8px 12px;
margin: 0 0 20px 0;
border-radius: 10px;
background-color:#fc6d6383;
word-wrap: break-word;
max-width: 100%;
font-size: 11px;
line-height: 20px;
}
.floatingchat .chat .messages li:before {
position: absolute;
top: 0;
width: 25px;
height: 25px;
border-radius: 25px;
content: '';
background-size: cover;
}
.floatingchat .chat .messages li:after {
position: absolute;
top: 10px;
content: '';
width: 0;
height: 0;
border-top: 10px solid rgba(255, 255, 255, 0.1);
}
.floatingchat .chat .messages li.other {
animation: show-chat-odd 0.15s 1 ease-in;
-moz-animation: show-chat-odd 0.15s 1 ease-in;
-webkit-animation: show-chat-odd 0.15s 1 ease-in;
float: right;
margin-right: 0px;
color: #0AD5C1;
}
.floatingchat .chat .messages li.other:after {
border-right: 10px solid transparent;
right: -10px;
}
.floatingchat .chat .messages li.self {
animation: show-chat-even 0.15s 1 ease-in;
-moz-animation: show-chat-even 0.15s 1 ease-in;
-webkit-animation: show-chat-even 0.15s 1 ease-in;
float: left;
margin-left: 0px;
color: rgb(36, 33, 33);
font-weight: 500;
font-size: 11px;
line-height: 20px;
}
.floatingchat .chat .messages li.self:after {
border-left: 10px solid transparent;
left: -10px;
}
.floatingchat .chat .chatfooter {
flex-shrink: 0;
display: flex;
padding-top: 10px;
max-height: 90px;
background: transparent;
}
.floatingchat .chat .chatfooter button{
color:#2291ff;
}
.floatingchat .chat .chatfooter .text-box {
border-radius: 3px;
background: #e4e4e4;
width: 100%;
margin-right: 5px;
color: #000;
overflow-y: auto;
padding: 6px 8px;
font-size: 11px;
font-weight: 500;
min-height: 65px;
line-height: 18px;
}
.floatingchat .chat .chatfooter .text-box::-webkit-scrollbar {
width: 5px;
}
.floatingchat .chat .chatfooter .text-box::-webkit-scrollbar-track {
border-radius: 5px;
}
.floatingchat .chat .chatfooter .text-box::-webkit-scrollbar-thumb {
border-radius: 5px;
}
.floatingchat .date{
font-size:11px;
color:#ffffff;
}
.floatingchat h6{
color:#000000;
margin-bottom: 4px;
padding-bottom:0px;
}
.tooltip {
z-index: 99999999;
}
#modal-default-chat .modal-body{
height:350px;
overflow-y: scroll;
}
.scrollstyle::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 20px;
background-color: #F5F5F5;
}
.scrollstyle::-webkit-scrollbar
{
width:10px;
height:10px;
background-color: #F5F5F5;
}
.scrollstyle::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.123);
background-color: rgb(163, 161, 161);
}
/*----------------------------------------------*/
.floatingupload{
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: white;
position: fixed;
bottom: 80px;
right: 10px;
width: 50px;
height: 50px;
transition: all 250ms ease-out;
border-radius: 50%;
opacity: 1;
background: #414453;
z-index: 999999;
}
.floatingupload i{
font-size:24px;
color:#ffffff;
}
.right-sidebar{
height:100%;
width:350px;
background-color:#fff;
position:fixed!important;
z-index:9999999;
overflow:auto;
box-shadow: 0 1px 2px 0 rgba(61, 61, 61, 0.075), 0 2px 40px 0 rgba(61, 61, 61, 0.13);
}
.right-bar-block .w3-dropdown-hover,.right-bar-block .w3-dropdown-click{
width:100%;
}
.right-bar-block .w3-dropdown-hover .w3-dropdown-content,.right-bar-block .w3-dropdown-click .w3-dropdown-content{
min-width:100%;
}
.right-bar-block .w3-dropdown-hover .w3-button,.right-bar-block .w3-dropdown-click .w3-button{
width:100%;
text-align:left;
padding:8px 16px;
}
.right-bar-block .right-bar-item{
width:100%;
display:block;
padding:8px 16px;
text-align:left;
border:none;
white-space:normal;
float:none;
outline:0;
}
button.right-bar-item{
background-color:#f6f7fb;
font-weight:600;
color:#1f3c57;
}
.right-bar-block.w3-center .right-bar-item{
text-align:center
}
.w3-block{
display:block;
width:100%;
}
.rightside-animate-right{
position:relative;
animation:animateright 0.4s}
@keyframes animateright{
from{right:-300px;opacity:0} to{right:0;opacity:1}
}
.w3-bar .right-bar-item{
padding:8px 16px;
float:left;
width:auto;
border:none;
display:block;
outline:0;
}
.listofupload{
padding-top:80px;
}
.listofupload label{
font-weight:600;
padding-left:8px;
padding-right:0px;
padding-top:0px;
padding-bottom:0px;
}
.listofupload .media{
margin-top:8px;
}
.listofupload .media img{
width:40px;
height:40px;
background-color:#bbbaba;
}
.viewbutton button{
float:right;
background-color: #2290ff;
border:none;
}
.viewbutton button:hover{
float:right;
background-color: #0f75db;
border:none;
}
/*-------------------insure page styles--------------------------------------------------------*/
.table.comparison_insur{
width: 100%;
table-layout: fixed;
}
.materialetable table.comparison_insur th{
padding: 8px 12px !important;
position: relative;
/*width:395px !important;*/
width:500px !important;
}
.materialetable table.comparison_insur td{
padding: 8px 12px !important;
position: relative;
/*width:395px !important;*/
width:500px !important;
}
.materialetable table.comparison_insur th, .materialetable table.comparison_insur td:last-child{
width:fit-content;
}
.materialetable table.comparison_insur th{
border-right: 2px solid #f6f7fb;
}
.insurmainsquestion{
background-color:white;
}
.insurmainsanswer{
background-color:white
}
/*.table.comparison_insur .mainsquestion{
min-width:368px !important;
max-width: 368px !important;
width:100%;
}
.table.comparison_insur .mainsanswer{
min-width:368px !important;
max-width: 368px !important;
width:100%;
}*/
.materialetable table.comparison_insur tbody tr:hover{
background-color: #eeeef5 !important;
}
.materialetable table.comparison_insur th:last-child,
.materialetable table.comparison_insur td:last-child{
border-right: none !important;
}
.materialetable table.comparison_insur th:first-child,
.materialetable table.comparison_insur td:first-child{
border-left: none !important;
}
.materialetable table.comparison_insur th{
border-top: none !important;
}
.materialetable table.comparison_insur .mb-3{
margin-bottom:0rem ! important;
}
.materialetable table.comparison_insur .form-group{
margin-bottom:0rem ! important;
}
/*----------------------------------------equotation for excel upload=-----------------*/
#excel_save_form .table_left_fix .mainsquestion{
min-width:300px!important;
max-width:500px !important;
}
#excel_save_form .table_left_fix th{
width:350px !important;
border-right:none;
}
#excel_save_form .table_right_pen .form-group{
margin-bottom: .3rem;
margin-top: .3rem;
margin-right:0rem;
}
/* ---------------------------------------------------
MEDIAQUERIES
----------------------------------------------------- */
@media (min-width:993px){
.right-sidebar.w3-collapse
{display:block!important
}
}
@media (max-width:992px){
.right-sidebar.w3-collapse{display:none};
.header{
height:72px;
}
}
@media (max-width:600px){
.right-bar-item.w3-mobile,.w3-dropdown-hover.w3-mobile,.w3-dropdown-click.w3-mobile{text-align:center}
.w3-button{width:100%}
}
@media (max-width:1024px){
.header{
height:72px;
}
.headertitle.col-7{
max-width:40%;
flex: 0 0 40%;
}
.headbutton.col-4{
max-width:50%;
flex: 0 0 50%;
}
.closestyle{
padding-left:10px;
padding-right:0px;
float:right;
}
.mainsquestion{
min-width: 318px !important;
max-width: 318px !important;
}
.mainsanswer{
min-width: 200px !important;
max-width: 200px !important;
}
.materialetable table.comparison_insur th{
padding: 8px 12px !important;
position: relative;
width:258px !important;
}
.materialetable table.comparison_insur td{
padding: 8px 12px !important;
position: relative;
width:258px !important;
}
.table_left_fix {
width: 520px !important;
}
.table_right_pen {
width: calc(100% - 520px);
}
.table_left_fix .ans {
min-width: 270px !important;
max-width: 270px !important;
word-break: break-all;
word-spacing: normal;
}
.commonfix .table_left_fix{
width:350px !important;
}
.commonfix .table_right_pen{
width: calc(100% - 350px);
}
}
@media (max-width:1324px){
.header{
height:72px;
}
.headertitle.col-7{
max-width:40%;
flex: 0 0 40%;
}
.headbutton.col-4{
max-width:50%;
flex: 0 0 50%;
}
.materialetable table.comparison_insur th{
padding: 8px 12px !important;
position: relative;
width:320px !important;
}
.materialetable table.comparison_insur td{
padding: 8px 12px !important;
position: relative;
width:320px !important;
}
}
@media (max-width:1023px){
.headertitle{
display:none;
}
.headbutton.col-4{
max-width:90%;
flex: 0 0 90%;
}
.headertitle {
margin-top: 0px;
}
.materialetable table.comparison_insur th{
padding: 8px 12px !important;
position: relative;
width:258px !important;
}
.materialetable table.comparison_insur td{
padding: 8px 12px !important;
position: relative;
width:258px !important;
}
}
@media (max-width: 768px) {
#content {
width: 100%;
padding: 70px 20px 20px 20px;
}
#sidebar ul.components {
padding: 0px 0;
}
.contentbody .row div{
margin-top:3px;
margin-bottom:4px;
}
.headertitle{
display:none;
}
.hidesidebar{
display:block;
}
.headbutton{
padding-top:1rem;
}
.headbutton.col-4{
max-width:90%;
flex: 0 0 90%;
}
.closestyle{
padding-left:10px;
padding-right:10px;
float:right;
}
.mainsquestion{
min-width: 200px !important;
max-width: 200px !important;
}
.mainsanswer{
min-width: 190px !important;
max-width: 190px !important;
}
.materialetable table.comparison_insur th{
padding: 8px 12px !important;
position: relative;
width:190px !important;
}
.materialetable table.comparison_insur td{
padding: 8px 12px !important;
position: relative;
width:190px !important;
}
.table_left_fix {
width: 400px !important;
}
.table_right_pen {
width: calc(100% - 400px);
}
.table_right_pen .ans {
min-width: 260px !important;
max-width: 260px !important;
}
.table_left_fix .ans {
min-width: 170px !important;
max-width: 170px !important;
word-break: break-all;
word-spacing: normal;
}
.commonfix .table_left_fix{
width:220px !important;
}
.commonfix .table_right_pen{
width: calc(100% - 220px);
}
#excel_save_form .commonfix .table_left_fix{
width:350px !important;
}
#excel_save_form .commonfix .table_right_pen{
width: calc(100% - 350px);
}
}
@media (max-width: 900px){
#content {
width: 100%;
padding: 70px 20px 20px 20px;
}
}
@media (max-width: 400px){
.navbar-brand h5 {
display:none;
}
}
@media only screen and (max-width: 600px) {
#content {
padding: 70px 1px 1px 1px;
}
.contentbody .row div{
margin-top:2px;
margin-bottom:2px;
}
.time span{
display:none;
}
.time a{
display:none;
}
}
@media (min-width: 1700px) and (max-width: 1920px){
.materialetable table.comparison th{
/*width: 368px;
width: 515px;*/
width: 480px;
}
.materialetable table.comparison_insur th{
width: 368px !important;
}
/* #mailview .materialetable table.comparison th{
width: 515px !important;
} */
#mailview .mainsquestion{
width: 540px !important;
}
.materialetable table.comparison_insur th{
padding: 8px 12px !important;
position: relative;
width:450px !important;
}
.materialetable table.comparison_insur td{
padding: 8px 12px !important;
position: relative;
width:450px !important;
}
}
@media (min-width: 1150px) and (max-width: 2200px){
#mailview .materialetable table.comparison th,
#mailview .materialetable table.comparison td{
width: 290px !important;
}
#mailview .materialetable table.comparison th:last-child,
#mailview .materialetable table.comparison td:last-child{
width: auto !important;
}
#mailview .tablefixed .ans {
min-width: 290px !important;
max-width: 290px !important;
}
#mailview .mainsquestion{
width: 540px !important;
}
}
/*---------------------------------------datepicker-------------------------------------------*/
.ui-datepicker {
width: 17em;
padding: .2em .2em 0;
display: none;
}
.ui-datepicker .ui-datepicker-header {
position: relative;
padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
position: absolute;
top: 2px;
width: 1.8em;
height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
left: 2px;
background-color: #dfe0e2;
border-radius: 50px;
border:1px solid #ffffff;
cursor:pointer;
}
.ui-datepicker .ui-datepicker-prev:hover {
background-color: #b9babb;
}
.ui-datepicker .ui-datepicker-prev::after {
content:"\02C2";
font-weight:600;
position:absolute;
left:30%;
top:8%;
color:#707477;
}
.ui-datepicker .ui-datepicker-next {
right: 2px;
background-color: #dfe0e2;
border-radius: 50px;
border:1px solid #ffffff;
cursor: pointer;
}
.ui-datepicker .ui-datepicker-next:hover{
background-color: #b9babb;
}
.ui-datepicker .ui-datepicker-next::after {
content:"\02C3";
font-weight:600;
position:absolute;
left:30%;
top:8%;
color:#707477;
}
.ui-datepicker .ui-datepicker-prev-hover {
left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
display: block;
position: absolute;
left: 50%;
margin-left: -8px;
top: 50%;
margin-top: -8px;
opacity:0;
}
.ui-datepicker .ui-datepicker-title {
margin: 0 2.3em;
line-height: 1.8em;
text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
font-size: 1em;
margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
width: 45%;
margin-left:2px;
margin-right:2px;
border-radius:3px;
border:1px solid #ffffff;
background-color:whitesmoke;
cursor:pointer;
}
.ui-datepicker select.ui-datepicker-year:hover{
background-color:gainsboro;
}
.ui-datepicker select.ui-datepicker-month:hover{
background-color:gainsboro;
}
.ui-datepicker table {
width: 100%;
font-size: .9em;
border-collapse: collapse;
margin: 0 0 .4em;
}
.ui-datepicker th {
padding: .7em .3em;
text-align: center;
font-weight: bold;
border: 0;
}
.ui-datepicker td {
border: 0;
padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
display: block;
padding: .2em;
text-align: right;
text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
background-image: none;
margin: .7em 0 0 0;
padding: 0 .2em;
border-left: 0;
border-right: 0;
border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
float: right;
margin: .5em .2em .4em;
cursor: pointer;
padding: .2em .6em .3em .6em;
width: auto;
overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
float: left;
}
/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
width: 95%;
margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
clear: left;
}
.ui-datepicker-row-break {
clear: both;
width: 100%;
font-size: 0;
}
/* RTL support */
.ui-datepicker-rtl {
direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
right: 2px;
left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
left: 2px;
right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
right: 1px;
left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
left: 1px;
right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
border-right-width: 0;
border-left-width: 1px;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
border: 1px solid #ffffff;
background: #f8f8f8;
font-weight: normal;
color: #3a3838;
margin:1px;
text-align: center;
border-radius: 50px;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
color: #555555;
text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
border: 1px solid #ffffff;
background: #2290ff;
font-weight: normal;
color: #ffffff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
color: #212121;
text-decoration: none;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
border-bottom-right-radius: 4px;
}
.ui-state-disabled {
cursor: default !important;
}
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
filter: inherit;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
cursor: text;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
opacity: .35;
filter:Alpha(Opacity=35); /* support: IE8 */
background-image: none;
}
.ui-state-disabled .ui-icon {
filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}
.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 {
border: 1px solid #ffffff;
background: #2290ff ;
font-weight: normal;
color: #ffffff;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
color: #212121;
text-decoration: none;
}
.ui-state-hover .ui-icon,
.ui-icon {
width: 16px;
height: 16px;
}
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-widget-content {
border: 1px solid #ffffff;
background: #ffffff;
color: #222222;
padding: 20px 22px;
box-shadow: 0 50px 100px rgba(50,50,93,.1), 0 15px 35px rgba(50,50,93,.15), 0 5px 15px rgba(0,0,0,.1);
}
/*----------------------extra styles for fixing ------------------------------------------------------------------------------------*/
.intendcheckbox{
margin-left:20px;
}
.top_space {
margin-top: 21px;
}
.bottom_space {
margin-bottom: 21px;
}
.three_rem_width {
padding-left:3rem !important;
padding-top:5px !important;
}
.child_space {
margin-left: 10px;
}
.radiobuttonstyle{
padding-left:2.75rem;
padding-top:0rem;
}
.radiobuttonstyle label{
padding-top:3px !important;
}
.tablefull{
width:100%;
}
.marginstyle_adjust{
margin-top:-10px;
}
.custom-file-label::after{
display: none;
}
.custom-file-label{
background-color:#ffffff;
color:#34393d;
border: 1px solid#d6d6d6;
box-shadow: none;
/*height:35px;*/
height:30px;
font-size: 11px;
padding: .375rem .75rem !important;
}
.materialetable .input-group-append{
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
}
.materialetable .input-group-text{
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
}
label.custom-file-label {
padding: 7px 10px !important;
word-break: break-all;
overflow-wrap: break-word;
overflow: hidden;
}
.red i{
margin: 0 !important;
}
.inputDnD .form-control-file{
display: none;
}
#multiFileUpload .inputDnD .form-control-file{
display: none !important;
}
.inputDnD .red{
color: #fff;
background: #fc6e63;
font-size: 12px;
padding: 2px 6px;
}
.listofupload {
padding-top: 10px;
}
.right-sidebar .commonbutton{
width: 100%;
float: left;
}
.approvedquote div.materialetable table tr td {
border-left: none;
}
.approvedquote div.materialetable table th {
border-right:none;
}
.fontsizenew{
font-size:12px !important;
}
.materialetable .comparison_insur table th {
font-size: 12px !important;
font-weight: 600;
}
textarea{
max-height: inherit;
/*height: 30px !important;*/
min-height: 30px !important;
}
.form-control{
height: 30px;
padding: .35rem;
}
.table_left_fix tbody::-webkit-scrollbar {
display: none;
}
.table_left_fix tbody{
-ms-overflow-style: none;
}
/*:-moz-any(.syncscroll) browser{
margin-right:-14px!important;
overflow-y:scroll;
margin-bottom:-14px!important;
overflow-x:scroll;
}
.syncscroll::-moz-scrollbars {display:none;}*/
/*to reduce font size in select*/
li.select2-results__option{
font-size: 12px !important;
}
span#select2-customer-container.select2-selection__rendered{
font-size:11px !important;
}
.border_line{
border-right: 1px solid #dedede;
}
.borderless_table{
width: 100% !important;
}
.borderless_table td{
border: none;
padding:0px;
}
.colon {
width: 1px;
text-align: center;
padding-left:15px;
padding-right:0px;
}
#content_full {
width: calc(100% - 0px);
padding: 80px 20px 20px 20px;
min-height: 100vh;
transition: all 0.3s;
position: absolute;
top: 50;
right: 0;
}
#content_pending {
width: calc(100% - 0px);
padding: 80px 20px 20px 20px;
min-height: 100vh;
transition: all 0.3s;
position: absolute;
top: 50;
right: 0;
}
.col-adjust{
margin-left:15px;
}
/*-----------------------------for popup page-----------------------------*/
.btn-primary{
background-color:#2290ff;
border-color: #2290ff;
}
.btnred{
background-color:#f36363;
color:white;
}
.btnred:hover{
color:white;
}
.modal button.btn.dropdown-toggle.btn-default.btn-light{
background-color: #ffffff;
color:#34393d;
border:1px solid #d6d6d6;
box-shadow:none;
padding: 6px 12px 6px 6px;
}
.modal span.filter-option.pull-left{
color:#34393d;
text-transform: initial;
font-weight:400;
font-size:11px;
}
.flexboxcontent{
display:flex;
flex-wrap: nowrap;
}
.flexboxcontent div{
margin:5px;
}
.flexcontent-items{
width:20%;
}
.modal select.selectpicker{
display:block !important;
}
.modal-xxl{max-width: 80%;}
.testtable th{
padding:5px;
}
.testtable td{
padding:5px;
border:1px solid #dee2e6;
}
.testtable {
border:1px solid #dee2e6;
}
.text{
font-size: 12px;
}
.btnxsm{
font-size: .55rem !important;
}
.add_segment .input-group-text{
color: #495057;
text-align: center;
background-color: #e9ecef;
border: 1px solid #ced4da;
padding: 2px 10px;
font-size: 11px !important;
}
.add_segment .input-group .form-control:not(:first-child) {
padding-left: 8px;
}
.formMultiView td {
padding: 8px 15px !important;
}
.file_uploadBtn{
text-align: right !important;
float: right !important;
margin-left: 21px;
}
.file_upload .row .col-2{
margin-bottom: 10px !important;
}
.flex_label {
display: flex !important;
align-items: flex-start !important;
margin-bottom: 10px;
}
.flex_label .titles{
width: 60% !important;
}
.eslipHr {
border-top: .1rem solid rgba(0,0,0,.1);
}
.viewbutton button a {
color: white !important;
}
#fullPageLoader{
width: 100%;
height: 100%;
position: fixed;
z-index: 9999;
background: rgba(255,255,255,0.9);
display: flex;
align-items: center;
justify-content: center;
display: none;
}
.lds-ellipsis {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
}
.lds-ellipsis div {
position: absolute;
top: 33px;
width: 13px;
height: 13px;
border-radius: 50%;
background: rgb(58, 58, 58);
animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
left: 8px;
animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
left: 8px;
animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
left: 32px;
animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
left: 56px;
animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
0% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
@keyframes lds-ellipsis3 {
0% {
transform: scale(1);
}
100% {
transform: scale(0);
}
}
@keyframes lds-ellipsis2 {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(24px, 0);
}
}
.btnForCC{
padding:3px 13px 7px 13px !important;
margin: 27px 10px 14px 10px !important;
}
.colon-padding{
padding-left: 12px !important;
padding-right: 8px !important;
} | 0.214034 | 0.056159 |
body .page-container{
font-family: "Benton Sans", "Helvetica Neue", helvetica, arial, sans-serif;
margin: 0 auto;
width:100%;
height:100%;
}
h1 {
font-style: italic;
color: #373fff;
}
.center{
display:inline-block;
}
.wrapper{
position:fixed;
top:80%;
width:100%;
z-index:31;
text-align:center;
}
.switch_btn{
position:fixed;
top:10%;
width:100%;
z-index:31;
text-align:right;
}
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 32; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
text-align:center;
}
/* Modal Content (image) */
.modal-content {
margin: auto;
display: block;
width: 80%;
max-width: 80%;
}
.btn-save{
position: relative;
}
/* The Close Button */
.close {
position: absolute;
top: 10px;
right: 12%;
color: red;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
z-index: 33;
}
.close:hover,
.close:focus {
color: #ff00ff;
text-decoration: none;
cursor: pointer;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
.modal-content {
width: 100%;
}
}
.resize_drag{
width:300px;
height: 300px;
background:url('../assets/mask_hacker.png');
-moz-background-size:100% 100%;
-webkit-background-size:100% 100%;
background-size:100% 100%;
}
.btn_scale{
width:30px;
height: 30px;
background:url('../assets/scale.png');
-moz-background-size:100% 100%;
-webkit-background-size:100% 100%;
background-size:100% 100%;
position: absolute;
top:0;
left:0;
display: none;
}
.btn_rotate{
width:30px;
height: 30px;
background:url('../assets/rotate.png');
-moz-background-size:100% 100%;
-webkit-background-size:100% 100%;
background-size:100% 100%;
position: absolute;
top:0;
right:0;
display: none;
}
.mask_container{
width:100%;
height:100%;
position:fixed;
top:0;
left:0;
z-index:30;
}
.camera_image{
width: 100%;
height: 100%;
position: fixed;
top:0;
left: 0;
z-index: -1;
}
.ascene{
z-index: -1;
} | css/style.css |
body .page-container{
font-family: "Benton Sans", "Helvetica Neue", helvetica, arial, sans-serif;
margin: 0 auto;
width:100%;
height:100%;
}
h1 {
font-style: italic;
color: #373fff;
}
.center{
display:inline-block;
}
.wrapper{
position:fixed;
top:80%;
width:100%;
z-index:31;
text-align:center;
}
.switch_btn{
position:fixed;
top:10%;
width:100%;
z-index:31;
text-align:right;
}
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 32; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
text-align:center;
}
/* Modal Content (image) */
.modal-content {
margin: auto;
display: block;
width: 80%;
max-width: 80%;
}
.btn-save{
position: relative;
}
/* The Close Button */
.close {
position: absolute;
top: 10px;
right: 12%;
color: red;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
z-index: 33;
}
.close:hover,
.close:focus {
color: #ff00ff;
text-decoration: none;
cursor: pointer;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
.modal-content {
width: 100%;
}
}
.resize_drag{
width:300px;
height: 300px;
background:url('../assets/mask_hacker.png');
-moz-background-size:100% 100%;
-webkit-background-size:100% 100%;
background-size:100% 100%;
}
.btn_scale{
width:30px;
height: 30px;
background:url('../assets/scale.png');
-moz-background-size:100% 100%;
-webkit-background-size:100% 100%;
background-size:100% 100%;
position: absolute;
top:0;
left:0;
display: none;
}
.btn_rotate{
width:30px;
height: 30px;
background:url('../assets/rotate.png');
-moz-background-size:100% 100%;
-webkit-background-size:100% 100%;
background-size:100% 100%;
position: absolute;
top:0;
right:0;
display: none;
}
.mask_container{
width:100%;
height:100%;
position:fixed;
top:0;
left:0;
z-index:30;
}
.camera_image{
width: 100%;
height: 100%;
position: fixed;
top:0;
left: 0;
z-index: -1;
}
.ascene{
z-index: -1;
} | 0.238284 | 0.037857 |
.ar-form {
position: relative;
text-align: left;
max-width: 860px;
height: 160px;
width: 100%; }
.ar-form .questions {
list-style: none;
padding: 0;
margin: 0; }
.ar-form .error,
.ar-form .count,
.ar-form .question label {
font-size: 16px;
font-weight: normal;
line-height: 32px; }
.ar-form .question {
visibility: hidden;
z-index: 100;
height: 0; }
.ar-form .question label {
position: absolute;
left: 0;
top: 0;
transition: opacity 0.4s, transform 0.4s;
transform: translateY(-100%);
overflow: hidden;
opacity: 0; }
.ar-form .question input {
outline: none;
display: inline-block;
line-height: 32px;
background: #f1f1f1;
font-size: 32px;
padding: 16px;
border: none;
width: 85%;
color: #313131;
margin: 0;
margin-top: 32px; }
.ar-form .question.current {
visibility: visible;
height: auto; }
.ar-form .question.current label {
transform: translateY(0);
opacity: 1; }
.ar-form .progress {
z-index: 100;
background: #d8d8d8;
height: 4px;
width: 100%; }
.ar-form .progress .progress-bar {
transition: width 0.4s, ease-in-out;
background: #313131;
height: 100%;
width: 0%; }
.ar-form .next {
outline: none;
height: 64px;
position: absolute;
background: #f1f1f1;
width: 15%;
padding: 0;
border: 0;
right: 0;
top: 32px; }
.ar-form .next .arrow {
transition: opacity .5s;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32px' height='32px' viewBox='0 0 32px 32px'><path fill='#313131' d='M19.414 27.414l10-10c0.781-0.781 0.781-2.047 0-2.828l-10-10c-0.781-0.781-2.047-0.781-2.828 0s-0.781 2.047 0 2.828l6.586 6.586h-19.172c-1.105 0-2 0.895-2 2s0.895 2 2 2h19.172l-6.586 6.586c-0.39 0.39-0.586 0.902-0.586 1.414s0.195 1.024 0.586 1.414c0.781 0.781 2.047 0.781 2.828 0z'></path></svg>");
opacity: 0.2;
background-position: center center;
background-repeat: no-repeat;
height: 64px;
width: 100%; }
.ar-form .next:hover .arrow {
transition: opacity .5s;
opacity: 1;
cursor: pointer; }
.ar-form .count,
.ar-form .error {
float: left; }
.ar-form .count {
text-align: right;
width: 15%; }
.ar-form .error {
font-style: italic;
width: 85%; }
.ar-form.change .questions .question.current label {
animation: MoveUpFromDown 0.4s both; }
.ar-form.change .count .itr {
transition: transform 0.4s;
transform: translateY(-100%); }
.ar-form.change .count .total {
animation: MoveUpFromDown 0.4s both; }
@keyframes MoveUpFromDown {
from {
transform: translateY(100%); }
to {
transform: translateY(0); } }
/*# sourceMappingURL=form.css.map */ | _site/rsrc/singleline-form/css/form.css | .ar-form {
position: relative;
text-align: left;
max-width: 860px;
height: 160px;
width: 100%; }
.ar-form .questions {
list-style: none;
padding: 0;
margin: 0; }
.ar-form .error,
.ar-form .count,
.ar-form .question label {
font-size: 16px;
font-weight: normal;
line-height: 32px; }
.ar-form .question {
visibility: hidden;
z-index: 100;
height: 0; }
.ar-form .question label {
position: absolute;
left: 0;
top: 0;
transition: opacity 0.4s, transform 0.4s;
transform: translateY(-100%);
overflow: hidden;
opacity: 0; }
.ar-form .question input {
outline: none;
display: inline-block;
line-height: 32px;
background: #f1f1f1;
font-size: 32px;
padding: 16px;
border: none;
width: 85%;
color: #313131;
margin: 0;
margin-top: 32px; }
.ar-form .question.current {
visibility: visible;
height: auto; }
.ar-form .question.current label {
transform: translateY(0);
opacity: 1; }
.ar-form .progress {
z-index: 100;
background: #d8d8d8;
height: 4px;
width: 100%; }
.ar-form .progress .progress-bar {
transition: width 0.4s, ease-in-out;
background: #313131;
height: 100%;
width: 0%; }
.ar-form .next {
outline: none;
height: 64px;
position: absolute;
background: #f1f1f1;
width: 15%;
padding: 0;
border: 0;
right: 0;
top: 32px; }
.ar-form .next .arrow {
transition: opacity .5s;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32px' height='32px' viewBox='0 0 32px 32px'><path fill='#313131' d='M19.414 27.414l10-10c0.781-0.781 0.781-2.047 0-2.828l-10-10c-0.781-0.781-2.047-0.781-2.828 0s-0.781 2.047 0 2.828l6.586 6.586h-19.172c-1.105 0-2 0.895-2 2s0.895 2 2 2h19.172l-6.586 6.586c-0.39 0.39-0.586 0.902-0.586 1.414s0.195 1.024 0.586 1.414c0.781 0.781 2.047 0.781 2.828 0z'></path></svg>");
opacity: 0.2;
background-position: center center;
background-repeat: no-repeat;
height: 64px;
width: 100%; }
.ar-form .next:hover .arrow {
transition: opacity .5s;
opacity: 1;
cursor: pointer; }
.ar-form .count,
.ar-form .error {
float: left; }
.ar-form .count {
text-align: right;
width: 15%; }
.ar-form .error {
font-style: italic;
width: 85%; }
.ar-form.change .questions .question.current label {
animation: MoveUpFromDown 0.4s both; }
.ar-form.change .count .itr {
transition: transform 0.4s;
transform: translateY(-100%); }
.ar-form.change .count .total {
animation: MoveUpFromDown 0.4s both; }
@keyframes MoveUpFromDown {
from {
transform: translateY(100%); }
to {
transform: translateY(0); } }
/*# sourceMappingURL=form.css.map */ | 0.599602 | 0.06256 |
.svg_editor {
font-size: 8pt;
font-family: Verdana, Helvetica, Arial;
color: #000000;
}
.svg_editor a {
color: #0000FF;
}
.svg_editor hr {
border: none;
border-bottom: 1px solid #808080;
}
.svg_editor select {
margin-top: 4px;
}
.svg_editor #svgroot {
width: 640px;
height: 480px;
-moz-user-select: none;
}
.svg_editor #svgcanvas {
width: 640px;
height: 480px;
border: 1px solid #808080;
}
.svg_editor div#palette_holder {
border: 1px solid #808080;
border-top: none;
float: left;
width: 640px;
overflow-x: scroll;
overflow-y: hidden;
height: 31px;
}
.svg_editor #fill_color, .svg_editor #stroke_color {
height: 16px;
width: 16px;
border: 1px solid #808080;
cursor: pointer;
}
.svg_editor #fill_color {
background: url('../images/none.png');
}
.svg_editor #stroke_color {
background: #000000;
}
.svg_editor div#palette {
float: left;
width: 6848px;
height: 16px;
}
.svg_editor div#workarea {
padding-left: 65px;
padding-top: 34px;
}
.svg_editor div.palette_item {
height: 16px;
width: 16px;
float: left;
}
.svg_editor .tools_panel {
background: #E8E8E8;
border: 1px solid #808080;
padding: 4px;
float: left;
clear: both;
}
.svg_editor #context_tools {
width: 705px;
height: 34px;
border-bottom: none;
}
.svg_editor #context_tools div {
float: left;
}
.svg_editor #tools {
border-right: none;
height: 511px;
width: 64px;
}
.svg_editor #selected_panel {
display: none;
}
.svg_editor #rect_panel {
display: none;
}
.svg_editor #text_panel {
display: none;
}
.svg_editor #text_panel .text_tool {
vertical-align:12px;
}
.svg_editor #rect_panel .rect_tool {
vertical-align:12px;
}
.svg_editor .tool_button, .svg_editor .tool_button_current, .svg_editor .tool_button_disabled {
height: 24px;
width: 24px;
margin: 2px;
padding: 2px;
border-left: 1px solid #FFFFFF;
border-top: 1px solid #FFFFFF;
border-right: 1px solid #808080;
border-bottom: 1px solid #808080;
cursor: pointer;
}
.svg_editor .tool_button_current {
border-left: 1px solid #808080;
border-top: 1px solid #808080;
border-right: 1px solid #FFFFFF;
border-bottom: 1px solid #FFFFFF;
background-color: #B0B0B0;
}
.svg_editor .tool_button_disabled {
opacity: 0.5;
cursor: default;
}
.svg_editor .tool_sep {
width: 2px;
height: 24px;
margin: 2px;
margin-right: 0;
padding: 2px;
}
.svg_editor #color_pick {
position: absolute;
display: none;
background: #E8E8E8;
border: 1px solid #808080;
padding: 5px;
}
.svg_editor .tools_flyout {
position: absolute;
display: none;
cursor: pointer;
float: left;
}
.svg_editor #tool_square {
background: 2px 2px url('../images/square.png') no-repeat;
}
.svg_editor #tool_rect {
background: 2px 2px url('../images/rect.png') no-repeat;
}
.svg_editor #tool_fhrect {
background: 2px 2px url('../images/path.png') no-repeat;
}
.svg_editor #tool_circle {
background: 2px 2px url('../images/circle.png') no-repeat;
}
.svg_editor #tool_ellipse {
background: 2px 2px url('../images/ellipse.png') no-repeat;
}
.svg_editor #tool_fhellipse {
background: 2px 2px url('../images/path.png') no-repeat;
}
.svg_editor #tools_rect div, .svg_editor #tools_ellipse div {
float: left;
background-color: #E8E8E8;
border-left: 1px solid #FFFFFF;
border-top: 1px solid #FFFFFF;
border-right: 1px solid #808080;
border-bottom: 1px solid #808080;
height: 28px;
width: 28px;
}
.svg_editor #footer {
width: 705px;
border-top: none;
text-align: right;
} | app/styles/svg-editor.css | .svg_editor {
font-size: 8pt;
font-family: Verdana, Helvetica, Arial;
color: #000000;
}
.svg_editor a {
color: #0000FF;
}
.svg_editor hr {
border: none;
border-bottom: 1px solid #808080;
}
.svg_editor select {
margin-top: 4px;
}
.svg_editor #svgroot {
width: 640px;
height: 480px;
-moz-user-select: none;
}
.svg_editor #svgcanvas {
width: 640px;
height: 480px;
border: 1px solid #808080;
}
.svg_editor div#palette_holder {
border: 1px solid #808080;
border-top: none;
float: left;
width: 640px;
overflow-x: scroll;
overflow-y: hidden;
height: 31px;
}
.svg_editor #fill_color, .svg_editor #stroke_color {
height: 16px;
width: 16px;
border: 1px solid #808080;
cursor: pointer;
}
.svg_editor #fill_color {
background: url('../images/none.png');
}
.svg_editor #stroke_color {
background: #000000;
}
.svg_editor div#palette {
float: left;
width: 6848px;
height: 16px;
}
.svg_editor div#workarea {
padding-left: 65px;
padding-top: 34px;
}
.svg_editor div.palette_item {
height: 16px;
width: 16px;
float: left;
}
.svg_editor .tools_panel {
background: #E8E8E8;
border: 1px solid #808080;
padding: 4px;
float: left;
clear: both;
}
.svg_editor #context_tools {
width: 705px;
height: 34px;
border-bottom: none;
}
.svg_editor #context_tools div {
float: left;
}
.svg_editor #tools {
border-right: none;
height: 511px;
width: 64px;
}
.svg_editor #selected_panel {
display: none;
}
.svg_editor #rect_panel {
display: none;
}
.svg_editor #text_panel {
display: none;
}
.svg_editor #text_panel .text_tool {
vertical-align:12px;
}
.svg_editor #rect_panel .rect_tool {
vertical-align:12px;
}
.svg_editor .tool_button, .svg_editor .tool_button_current, .svg_editor .tool_button_disabled {
height: 24px;
width: 24px;
margin: 2px;
padding: 2px;
border-left: 1px solid #FFFFFF;
border-top: 1px solid #FFFFFF;
border-right: 1px solid #808080;
border-bottom: 1px solid #808080;
cursor: pointer;
}
.svg_editor .tool_button_current {
border-left: 1px solid #808080;
border-top: 1px solid #808080;
border-right: 1px solid #FFFFFF;
border-bottom: 1px solid #FFFFFF;
background-color: #B0B0B0;
}
.svg_editor .tool_button_disabled {
opacity: 0.5;
cursor: default;
}
.svg_editor .tool_sep {
width: 2px;
height: 24px;
margin: 2px;
margin-right: 0;
padding: 2px;
}
.svg_editor #color_pick {
position: absolute;
display: none;
background: #E8E8E8;
border: 1px solid #808080;
padding: 5px;
}
.svg_editor .tools_flyout {
position: absolute;
display: none;
cursor: pointer;
float: left;
}
.svg_editor #tool_square {
background: 2px 2px url('../images/square.png') no-repeat;
}
.svg_editor #tool_rect {
background: 2px 2px url('../images/rect.png') no-repeat;
}
.svg_editor #tool_fhrect {
background: 2px 2px url('../images/path.png') no-repeat;
}
.svg_editor #tool_circle {
background: 2px 2px url('../images/circle.png') no-repeat;
}
.svg_editor #tool_ellipse {
background: 2px 2px url('../images/ellipse.png') no-repeat;
}
.svg_editor #tool_fhellipse {
background: 2px 2px url('../images/path.png') no-repeat;
}
.svg_editor #tools_rect div, .svg_editor #tools_ellipse div {
float: left;
background-color: #E8E8E8;
border-left: 1px solid #FFFFFF;
border-top: 1px solid #FFFFFF;
border-right: 1px solid #808080;
border-bottom: 1px solid #808080;
height: 28px;
width: 28px;
}
.svg_editor #footer {
width: 705px;
border-top: none;
text-align: right;
} | 0.309024 | 0.115861 |
/* light buttons */
.lighticon-menu .lightbutton {
display: inline-block;
text-align: center;
background: #f2f2f2;
padding: .4rem 0 .5rem .1rem;
}
.lightbutton {
line-height: 1.25; /* default: 1.5 */
cursor: pointer;
padding: 0 1px;
margin: 0;
min-width: 40px;
/*color: see theme*/
}
a {
cursor: pointer;
}
.lightbutton:hover {
/*color: see theme*/
}
.lightbutton.disabled {
cursor: not-allowed;
opacity: 0.5;
}
.lightbutton-icon {
font-size: 1.2em;
}
/* Reduce lightbutton text size */
.lightbutton-text {
font-size: 0.82em;
}
/* bootstrap override */
.report-name, .output-name {
color: #000 !important;
padding: 0px;
cursor: pointer;
}
.bootstrap-select2 {
width: 100% !important;
}
#file-table-view > div > .row {
margin-right: 0px !important; /* avoid overflow on datatable */
}
#schedule-row > div > .form-group, #schedule-exec > .form-group {
margin-bottom: 2px;
}
/* jstree */
.jstree-wholerow-clicked {
background: #d9d9d9 !important;
}
#elements-tree {
background: none !important;
}
/* Drag panels */
.drag-panel {
padding: 1px !important;
margin: 2px 0px !important;
background: linear-gradient(#FFF, #d9d9d9);
overflow: auto;
}
.drop-span {
margin: 10px;
position: absolute;
font-style: italic;
}
.over {
border: 1px dashed #000;
opacity: 0.5;
background: #cccccc;
}
.over2 {
opacity: 0.5;
background: orange !important;
}
#wait-dialog {
top: 80px;
z-index: 100000 !important;
}
@media (min-width: 768px) {
#wait-dialog > .modal-dialog {
width: 300px;
}
}
.properties-label {
display: inline;
padding-top: 8px;
width: 35%;
float: left;
}
.properties-value {
display: inline;
width: 65%;
float: left;
}
#action-tableheader {
width: 120px;
min-width: 120px;
text-align: center;
}
@media (max-width: 768px) {
#action-tableheader {
width: 60px;
min-width: 60px;
}
}
/* Element buttons */
.element-btn-group {
display: none;
width: 100%;
}
.numeric {
text-align: right;
}
/* editor panels */
.editor-panel {
height: 520px;
}
/* dataTables */
table.dataTable {
margin: 0px !important;
}
/*dashboards */
.grid {
position: relative;
}
.item {
position: absolute;
margin: 5px;
z-index: 1;
border-width: 2px;
}
.item.muuri-item-hidden {
z-index: 0;
}
.item.muuri-item-positioning {
z-index: 2;
}
.item.muuri-item-releasing {
z-index: 3;
}
.item.muuri-item-dragging {
z-index: 4;
}
.dashboard-personal {
font-weight: bold;
font-style: italic;
} | Projects/SealWebServer/Content/SealWeb.css | /* light buttons */
.lighticon-menu .lightbutton {
display: inline-block;
text-align: center;
background: #f2f2f2;
padding: .4rem 0 .5rem .1rem;
}
.lightbutton {
line-height: 1.25; /* default: 1.5 */
cursor: pointer;
padding: 0 1px;
margin: 0;
min-width: 40px;
/*color: see theme*/
}
a {
cursor: pointer;
}
.lightbutton:hover {
/*color: see theme*/
}
.lightbutton.disabled {
cursor: not-allowed;
opacity: 0.5;
}
.lightbutton-icon {
font-size: 1.2em;
}
/* Reduce lightbutton text size */
.lightbutton-text {
font-size: 0.82em;
}
/* bootstrap override */
.report-name, .output-name {
color: #000 !important;
padding: 0px;
cursor: pointer;
}
.bootstrap-select2 {
width: 100% !important;
}
#file-table-view > div > .row {
margin-right: 0px !important; /* avoid overflow on datatable */
}
#schedule-row > div > .form-group, #schedule-exec > .form-group {
margin-bottom: 2px;
}
/* jstree */
.jstree-wholerow-clicked {
background: #d9d9d9 !important;
}
#elements-tree {
background: none !important;
}
/* Drag panels */
.drag-panel {
padding: 1px !important;
margin: 2px 0px !important;
background: linear-gradient(#FFF, #d9d9d9);
overflow: auto;
}
.drop-span {
margin: 10px;
position: absolute;
font-style: italic;
}
.over {
border: 1px dashed #000;
opacity: 0.5;
background: #cccccc;
}
.over2 {
opacity: 0.5;
background: orange !important;
}
#wait-dialog {
top: 80px;
z-index: 100000 !important;
}
@media (min-width: 768px) {
#wait-dialog > .modal-dialog {
width: 300px;
}
}
.properties-label {
display: inline;
padding-top: 8px;
width: 35%;
float: left;
}
.properties-value {
display: inline;
width: 65%;
float: left;
}
#action-tableheader {
width: 120px;
min-width: 120px;
text-align: center;
}
@media (max-width: 768px) {
#action-tableheader {
width: 60px;
min-width: 60px;
}
}
/* Element buttons */
.element-btn-group {
display: none;
width: 100%;
}
.numeric {
text-align: right;
}
/* editor panels */
.editor-panel {
height: 520px;
}
/* dataTables */
table.dataTable {
margin: 0px !important;
}
/*dashboards */
.grid {
position: relative;
}
.item {
position: absolute;
margin: 5px;
z-index: 1;
border-width: 2px;
}
.item.muuri-item-hidden {
z-index: 0;
}
.item.muuri-item-positioning {
z-index: 2;
}
.item.muuri-item-releasing {
z-index: 3;
}
.item.muuri-item-dragging {
z-index: 4;
}
.dashboard-personal {
font-weight: bold;
font-style: italic;
} | 0.344664 | 0.064535 |
@font-face {
font-family: Baloo_pajja;
src: url('../../fonts/Baloo_Paaji_2/BalooPaaji2-Bold.ttf');
}
@font-face {
font-family: merriweather;
src: url('../../fonts/Merriweather/Merriweather-Black.ttf');
}
@font-face{
font-family: sketcha;
src: url('../../fonts/Sketcha/Sketcha.ttf');
}
.section{
background-image: url('../../images/RCT/Asset/background_desktop_layout.png');
background-repeat: no-repeat;
background-size: cover;
background-position: 0 4%;
width: 100%;
padding:60px 100px;
color:white;
}
.section-1{
padding: 50px 30px 200px 30px;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.section img{
width: 45%;
}
.name{
font-size: 4.8em;
margin-top: 0.2em;
font-family: sketcha;
}
.tagline{
font-size: 2em;
margin-top: 0.3em;
font-family: baloo_pajja;
}
.program{
font-size: 3.4em;
font-family: merriweather;
margin-bottom: 3em;
}
.section-2{
width: 100%;
padding:40px 0px;
margin-bottom: 250px;
display: flex;
justify-content: space-between;
align-items: center;
}
.section-2 .image{
width: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.section-2 .image img{
width: 80%;
}
.section-2 .information{
width: 50%;
padding:10px;
}
.information .tujuan{
font-family: merriweather;
letter-spacing: 0.05em;
font-size: 50px;
margin-bottom:20px;
width: 90%;
}
.information .desc{
font-size: 19px;
width: 80%;
text-align: justify;
}
.img{
width: 100%;
}
.content-four{
width: 100%;
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
padding: 0px 100px 100px 100px;
color:white;
}
.dokumentasi{
text-align: center;
font-size: 50px;
font-weight: bold;
margin-bottom: 70px;
font-family: merriweather;
}
.gallery{
width: 100%;
background-color: white;
border-radius: 10px;
box-shadow: 0px 0px 30px 0px black;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.gallery img{
width: 33.33%;
}
.row{
width: 100%;
}
@media (max-width : 992px){
.section-1 img{
width:70%;
}
.name{
font-size: 3.2em;
text-align: center;
}
.program{
flex-direction: column;
text-align: center;
font-size: 2.5em;
}
.section-2 .image{
width: 70%;
margin-bottom: 40px;
}
.section-2 .information{
width: 100%;
text-align: center;
}
.information .tujuan{
width: 100%;
}
.information .desc{
width: 100%;
}
.section-2{
flex-direction: column;
align-items: center;
}
}
@media (min-width:769px){
.carousel{
display: none;
}
}
@media (max-width: 768px){
.section-1 img{
width:80%;
}
.content-four{
padding: 0px 50px 100px 50px;
color:white;
}
.section-2 .image{
width: 100%;
margin-bottom: 40px;
}
.gallery{
display: none;
}
.gallery img{
width: 50%;
}
.carousel-inner img{
border-radius: 10px;
}
}
@media (max-width: 578px){
.section{
padding:60px 20px;
background-image: url('../../images/RCT/Asset//background_mobile-layout.png');
}
.section-1{
padding:0px 15px;
padding-bottom:100px;
}
.section-1 img{
width: 70%;
}
.name{
font-size: 2.3em;
}
.tagline{
font-size:1em ;
}
.program{
margin-bottom: 20px;
font-size: 1.5em;
text-align: left;
}
.section-2 .image{
width: 90%;
margin-bottom: 40px;
}
.section-2{
padding:10px 0px 70px 0px;
margin-bottom:70px;
}
.information .desc{
font-size: 15px;
}
.section-2 .image{
margin:10px;
}
.section-2 .image .img{
width: 100%;
}
.content-three{
padding:0px 20px 100px 20px;
}
.content-four{
padding:15px;
padding-bottom: 100px;
}
.information .tujuan{
font-size: 2em;
letter-spacing: 0;
}
.section-1 img{
width:100%;
}
.dokumentasi{
font-size: 2em;
margin-bottom: 30px;
}
} | public/css/RCT/rct.css | @font-face {
font-family: Baloo_pajja;
src: url('../../fonts/Baloo_Paaji_2/BalooPaaji2-Bold.ttf');
}
@font-face {
font-family: merriweather;
src: url('../../fonts/Merriweather/Merriweather-Black.ttf');
}
@font-face{
font-family: sketcha;
src: url('../../fonts/Sketcha/Sketcha.ttf');
}
.section{
background-image: url('../../images/RCT/Asset/background_desktop_layout.png');
background-repeat: no-repeat;
background-size: cover;
background-position: 0 4%;
width: 100%;
padding:60px 100px;
color:white;
}
.section-1{
padding: 50px 30px 200px 30px;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.section img{
width: 45%;
}
.name{
font-size: 4.8em;
margin-top: 0.2em;
font-family: sketcha;
}
.tagline{
font-size: 2em;
margin-top: 0.3em;
font-family: baloo_pajja;
}
.program{
font-size: 3.4em;
font-family: merriweather;
margin-bottom: 3em;
}
.section-2{
width: 100%;
padding:40px 0px;
margin-bottom: 250px;
display: flex;
justify-content: space-between;
align-items: center;
}
.section-2 .image{
width: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.section-2 .image img{
width: 80%;
}
.section-2 .information{
width: 50%;
padding:10px;
}
.information .tujuan{
font-family: merriweather;
letter-spacing: 0.05em;
font-size: 50px;
margin-bottom:20px;
width: 90%;
}
.information .desc{
font-size: 19px;
width: 80%;
text-align: justify;
}
.img{
width: 100%;
}
.content-four{
width: 100%;
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
padding: 0px 100px 100px 100px;
color:white;
}
.dokumentasi{
text-align: center;
font-size: 50px;
font-weight: bold;
margin-bottom: 70px;
font-family: merriweather;
}
.gallery{
width: 100%;
background-color: white;
border-radius: 10px;
box-shadow: 0px 0px 30px 0px black;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.gallery img{
width: 33.33%;
}
.row{
width: 100%;
}
@media (max-width : 992px){
.section-1 img{
width:70%;
}
.name{
font-size: 3.2em;
text-align: center;
}
.program{
flex-direction: column;
text-align: center;
font-size: 2.5em;
}
.section-2 .image{
width: 70%;
margin-bottom: 40px;
}
.section-2 .information{
width: 100%;
text-align: center;
}
.information .tujuan{
width: 100%;
}
.information .desc{
width: 100%;
}
.section-2{
flex-direction: column;
align-items: center;
}
}
@media (min-width:769px){
.carousel{
display: none;
}
}
@media (max-width: 768px){
.section-1 img{
width:80%;
}
.content-four{
padding: 0px 50px 100px 50px;
color:white;
}
.section-2 .image{
width: 100%;
margin-bottom: 40px;
}
.gallery{
display: none;
}
.gallery img{
width: 50%;
}
.carousel-inner img{
border-radius: 10px;
}
}
@media (max-width: 578px){
.section{
padding:60px 20px;
background-image: url('../../images/RCT/Asset//background_mobile-layout.png');
}
.section-1{
padding:0px 15px;
padding-bottom:100px;
}
.section-1 img{
width: 70%;
}
.name{
font-size: 2.3em;
}
.tagline{
font-size:1em ;
}
.program{
margin-bottom: 20px;
font-size: 1.5em;
text-align: left;
}
.section-2 .image{
width: 90%;
margin-bottom: 40px;
}
.section-2{
padding:10px 0px 70px 0px;
margin-bottom:70px;
}
.information .desc{
font-size: 15px;
}
.section-2 .image{
margin:10px;
}
.section-2 .image .img{
width: 100%;
}
.content-three{
padding:0px 20px 100px 20px;
}
.content-four{
padding:15px;
padding-bottom: 100px;
}
.information .tujuan{
font-size: 2em;
letter-spacing: 0;
}
.section-1 img{
width:100%;
}
.dokumentasi{
font-size: 2em;
margin-bottom: 30px;
}
} | 0.409811 | 0.091342 |
.btn-default {
color: #333;
background-color: #FFF;
border-color: #CCC;
}
.btn-primary {
color: #FFFFFF;
background-color: #44AB53;
border-color: #3D994A;
}
.btn-success {
color: #FFF;
background-color: #33658A;
border-color: #2C5777;
}
.btn-warning {
color: #FFF;
background-color: #F6AE2D;
border-color: #F5A515;
}
.btn-danger {
color: #FFF;
background-color: #F26419;
border-color: #E5570D;
}
.btn-info {
color: #FFF;
background-color: #3680A8;
border-color: #307195;
}
.btn-default:hover {
background-color: #E6E6E6;
border-color: #B3B3B3;
}
.btn-primary:hover {
background-color: #358741;
border-color: #2E7438;
}
.btn-success:hover {
background-color: #254A65;
border-color: #1E3C52;
}
.btn-warning:hover {
background-color: #E6970A;
border-color: #CE8709;
}
.btn-danger:hover {
background-color: #CC4E0C;
border-color: #B4450A;
}
.btn-info:hover {
background-color: #2A6382;
border-color: #24546E;
}
.btn-default:focus {
background-color: #F2F2F2;
border-color: #BFBFBF;
}
.btn-primary:focus {
background-color: #3D994A;
border-color: #358741;
}
.btn-success:focus {
background-color: #2C5777;
border-color: #254A65;
}
.btn-warning:focus {
background-color: #F5A515;
border-color: #E6970A;
}
.btn-danger:focus {
background-color: #E5570D;
border-color: #CC4E0C;
}
.btn-info:focus {
background-color: #307195;
border-color: #2A6382;
}
.btn-default:active {
background-color: #E6E6E6;
border-color: #B3B3B3;
}
.btn-primary:active {
background-color: #358741;
border-color: #2E7438;
}
.btn-success:active {
background-color: #254A65;
border-color: #1E3C52;
}
.btn-warning:active {
background-color: #E6970A;
border-color: #CE8709;
}
.btn-danger:active {
background-color: #CC4E0C;
border-color: #B4450A;
}
.btn-info:active {
background-color: #2A6382;
border-color: #24546E;
}
.btn-default.disabled {
background-color: #FFFFFF;
border-color: #CFCFCF;
}
.btn-primary.disabled {
background-color: #45AF55;
border-color: #3E9C4C;
}
.btn-success.disabled {
background-color: #34688E;
border-color: #2D5A7B;
}
.btn-warning.disabled {
background-color: #F6B032;
border-color: #F5A619;
}
.btn-danger.disabled {
background-color: #F2671E;
border-color: #E9590D;
}
.btn-info.disabled {
background-color: #3783AC;
border-color: #317499;
}
a {
color: #3680A8;
}
a:hover,
a:focus {
color: #24546E;
}
.text-primary {
color: #44AB53;
}
.text-danger {
color: #F26419;
}
.form-control .has-error {
border-color: #EED3D7;
}
.form-control .has-success {
border-color: #D6E9C6;
}
.navbar-default {
background-color: #44AB53;
}
.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-header .navbar-brand {
color: #FFF;
}
@media (max-width: 768px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #FFF;
}
}
.navbar-default .navbar-nav > li > a:hover {
background-color: #3D994A;
}
.navbar-default .navbar-toggle > .icon-bar {
background-color: #FFF;
}
.navbar-default .navbar-toggle:focus > .icon-bar {
background-color: #555;
color: #24546E;
}
.navbar-default .navbar-toggle:hover > .icon-bar {
background-color: #FFF;
}
.navbar-default .navbar-toggle:hover {
background-color: #3D994A;
}
.panel.panel-primary {
border-color: #3D994A;
}
.panel.panel-primary .panel-heading {
border-color: #3D994A;
background-color: #3D994A;
}
.alert.alert-warning a {
color: #68522C;
}
.alert.alert-danger a {
color: #B4450A;
}
html {
position: relative;
min-height: 100%;
}
body {
padding-bottom: 80px;
}
table {
font-size: inherit;
}
.versiontable > tbody > tr > th {
text-align: right;
}
.versiontable > thead > tr > th {
vertical-align: top;
}
.homesection + .homesection {
border-top: solid 1px #EEE;
}
.homesection {
text-align: center;
margin: 40px 0;
padding: 40px 0;
}
img.jumbo {
margin-top: -40px;
margin-left: -60px;
}
h1.jumbo {
margin-top: 0;
}
footer {
text-align: center;
height: 80px;
position: absolute;
bottom: 0;
width: 100%;
}
@media (min-width: 768px) {
h1.jumbo,
h3.jumbo {
text-align: right;
}
}
@media (max-width: 767px) {
h1.jumbo,
h3.jumbo {
text-align: center;
}
}
@media (min-width: 1200px) {
h1.jumbo {
margin-top: 40px;
}
}
@media (min-width: 768px) {
h3.jumbo {
margin-top: -6px;
}
}
.vertical-align {
display: flex;
align-items: center;
}
.hide_ {
display: none;
}
.dropdown-submenu {
position: relative;
}
.dropdown-submenu > .dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: 10px;
-webkit-border-radius: 0 6px 6px 6px;
-moz-border-radius: 0 6px 6px 6px;
border-radius: 0 6px 6px 6px;
}
button > .fa-caret-down {
height: 100%;
display: inline;
margin-left: -.75em;
margin-right: -1em;
}
@media (min-width: 768px) {
.dropdown-submenu:hover > .dropdown-menu {
display: block;
}
.dropdown-submenu > .dropdown-menu {
margin-left: -1px;
}
}
.dropdown-submenu > a:after {
display: block;
content: " ";
float: right;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
border-width: 5px 0 5px 5px;
border-left-color: #CCCCCC;
margin-top: 5px;
margin-right: -10px;
}
.dropdown-submenu:hover > a:after {
border-left-color: #FFFFFF;
}
.dropdown-submenu.pull-left {
float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
left: -100%;
margin-left: 10px;
-webkit-border-radius: 6px 0 6px 6px;
-moz-border-radius: 6px 0 6px 6px;
border-radius: 6px 0 6px 6px;
}
.tip {
border-bottom: 1px dashed;
}
code {
color: #31708F;
background-color: #D9EDF7;
}
input[type='radio'] {
margin-left: .5em;
}
#printersLog {
max-height: 20em;
overflow: auto;
}
#printersLog .INFO {
color: #303030;
}
#printersLog .WARN {
color: #9F7435;
}
#printersLog .FATAL {
color: #9F3535;
} | css/style.css | .btn-default {
color: #333;
background-color: #FFF;
border-color: #CCC;
}
.btn-primary {
color: #FFFFFF;
background-color: #44AB53;
border-color: #3D994A;
}
.btn-success {
color: #FFF;
background-color: #33658A;
border-color: #2C5777;
}
.btn-warning {
color: #FFF;
background-color: #F6AE2D;
border-color: #F5A515;
}
.btn-danger {
color: #FFF;
background-color: #F26419;
border-color: #E5570D;
}
.btn-info {
color: #FFF;
background-color: #3680A8;
border-color: #307195;
}
.btn-default:hover {
background-color: #E6E6E6;
border-color: #B3B3B3;
}
.btn-primary:hover {
background-color: #358741;
border-color: #2E7438;
}
.btn-success:hover {
background-color: #254A65;
border-color: #1E3C52;
}
.btn-warning:hover {
background-color: #E6970A;
border-color: #CE8709;
}
.btn-danger:hover {
background-color: #CC4E0C;
border-color: #B4450A;
}
.btn-info:hover {
background-color: #2A6382;
border-color: #24546E;
}
.btn-default:focus {
background-color: #F2F2F2;
border-color: #BFBFBF;
}
.btn-primary:focus {
background-color: #3D994A;
border-color: #358741;
}
.btn-success:focus {
background-color: #2C5777;
border-color: #254A65;
}
.btn-warning:focus {
background-color: #F5A515;
border-color: #E6970A;
}
.btn-danger:focus {
background-color: #E5570D;
border-color: #CC4E0C;
}
.btn-info:focus {
background-color: #307195;
border-color: #2A6382;
}
.btn-default:active {
background-color: #E6E6E6;
border-color: #B3B3B3;
}
.btn-primary:active {
background-color: #358741;
border-color: #2E7438;
}
.btn-success:active {
background-color: #254A65;
border-color: #1E3C52;
}
.btn-warning:active {
background-color: #E6970A;
border-color: #CE8709;
}
.btn-danger:active {
background-color: #CC4E0C;
border-color: #B4450A;
}
.btn-info:active {
background-color: #2A6382;
border-color: #24546E;
}
.btn-default.disabled {
background-color: #FFFFFF;
border-color: #CFCFCF;
}
.btn-primary.disabled {
background-color: #45AF55;
border-color: #3E9C4C;
}
.btn-success.disabled {
background-color: #34688E;
border-color: #2D5A7B;
}
.btn-warning.disabled {
background-color: #F6B032;
border-color: #F5A619;
}
.btn-danger.disabled {
background-color: #F2671E;
border-color: #E9590D;
}
.btn-info.disabled {
background-color: #3783AC;
border-color: #317499;
}
a {
color: #3680A8;
}
a:hover,
a:focus {
color: #24546E;
}
.text-primary {
color: #44AB53;
}
.text-danger {
color: #F26419;
}
.form-control .has-error {
border-color: #EED3D7;
}
.form-control .has-success {
border-color: #D6E9C6;
}
.navbar-default {
background-color: #44AB53;
}
.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-header .navbar-brand {
color: #FFF;
}
@media (max-width: 768px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #FFF;
}
}
.navbar-default .navbar-nav > li > a:hover {
background-color: #3D994A;
}
.navbar-default .navbar-toggle > .icon-bar {
background-color: #FFF;
}
.navbar-default .navbar-toggle:focus > .icon-bar {
background-color: #555;
color: #24546E;
}
.navbar-default .navbar-toggle:hover > .icon-bar {
background-color: #FFF;
}
.navbar-default .navbar-toggle:hover {
background-color: #3D994A;
}
.panel.panel-primary {
border-color: #3D994A;
}
.panel.panel-primary .panel-heading {
border-color: #3D994A;
background-color: #3D994A;
}
.alert.alert-warning a {
color: #68522C;
}
.alert.alert-danger a {
color: #B4450A;
}
html {
position: relative;
min-height: 100%;
}
body {
padding-bottom: 80px;
}
table {
font-size: inherit;
}
.versiontable > tbody > tr > th {
text-align: right;
}
.versiontable > thead > tr > th {
vertical-align: top;
}
.homesection + .homesection {
border-top: solid 1px #EEE;
}
.homesection {
text-align: center;
margin: 40px 0;
padding: 40px 0;
}
img.jumbo {
margin-top: -40px;
margin-left: -60px;
}
h1.jumbo {
margin-top: 0;
}
footer {
text-align: center;
height: 80px;
position: absolute;
bottom: 0;
width: 100%;
}
@media (min-width: 768px) {
h1.jumbo,
h3.jumbo {
text-align: right;
}
}
@media (max-width: 767px) {
h1.jumbo,
h3.jumbo {
text-align: center;
}
}
@media (min-width: 1200px) {
h1.jumbo {
margin-top: 40px;
}
}
@media (min-width: 768px) {
h3.jumbo {
margin-top: -6px;
}
}
.vertical-align {
display: flex;
align-items: center;
}
.hide_ {
display: none;
}
.dropdown-submenu {
position: relative;
}
.dropdown-submenu > .dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: 10px;
-webkit-border-radius: 0 6px 6px 6px;
-moz-border-radius: 0 6px 6px 6px;
border-radius: 0 6px 6px 6px;
}
button > .fa-caret-down {
height: 100%;
display: inline;
margin-left: -.75em;
margin-right: -1em;
}
@media (min-width: 768px) {
.dropdown-submenu:hover > .dropdown-menu {
display: block;
}
.dropdown-submenu > .dropdown-menu {
margin-left: -1px;
}
}
.dropdown-submenu > a:after {
display: block;
content: " ";
float: right;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
border-width: 5px 0 5px 5px;
border-left-color: #CCCCCC;
margin-top: 5px;
margin-right: -10px;
}
.dropdown-submenu:hover > a:after {
border-left-color: #FFFFFF;
}
.dropdown-submenu.pull-left {
float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
left: -100%;
margin-left: 10px;
-webkit-border-radius: 6px 0 6px 6px;
-moz-border-radius: 6px 0 6px 6px;
border-radius: 6px 0 6px 6px;
}
.tip {
border-bottom: 1px dashed;
}
code {
color: #31708F;
background-color: #D9EDF7;
}
input[type='radio'] {
margin-left: .5em;
}
#printersLog {
max-height: 20em;
overflow: auto;
}
#printersLog .INFO {
color: #303030;
}
#printersLog .WARN {
color: #9F7435;
}
#printersLog .FATAL {
color: #9F3535;
} | 0.427516 | 0.089574 |
*{
margin: 0;
padding: 0;
}
a {
color: rgb(0, 0, 0);
text-decoration: none;
transition: 0.3s;
padding-left: 16px;
}
a:hover {
opacity: 0.7;
}
.logo {
font-size: 24px;
text-transform: uppercase;
letter-spacing: 4px;
}
nav {
display: flex;
justify-content: space-around;
align-items: center;
font-family: system-ui,
-apple-system, Arial, Helvetica, sans-serif;
background: #296d31c4;
height: 8vh;
}
/*vh é viewport height, altura responsiva
*/
main {
background-size: cover;
height: 92vh;
}
.nav-list {
list-style: none;
display: flex;
}
.nav-list li {
letter-spacing: 3px;
margin-left: 32px;
}
.mobile-menu {
display: none;
cursor: pointer;
}
.mobile-menu div {
width: 32px;
height: 2px;
background: #fff;
margin: 8px;
transition: 0.3s;
}
body {
background-size: 100vw;
background-position: top;
background-color: #85c78dc4;
background-size: 50%;
}
@media (max-width: 999px) {
body{
overflow-x:hidden; /* se algo transborda fica escondido*/
}
.nav-list{
position: absolute;
top: 8vh;
right: 0;
width: 50vw;
height: 92vh;
background: rgba(192, 192, 192, 0.952);
flex-direction: column;
align-items: center;
justify-content: space-around;
transform: translateX(100%);
transition: transform 0.3s ease-in;
}
}
.nav-list li {
margin-left: 0;
opacity: 0;
}
.mobile-menu {
display: block;
}
.nav-list.active {
transform:translateX(0)
}
@keyframes navLinkFade {
from {
opacity: 0;
transform: 50px;
}
to {
opacity: 1;
transform: translateX(0);
}
}
.mobile-menu.active .line1 {
transform: rotate(-45deg) translate(-8px, 8px);
}
.mobile-menu.active .line2 {
opacity: 0;
}
.mobile-menu.active .line3 {
transform: rotate(45deg) translate(-5px, -7px);
}
#txt {
font-size: 37px;
color: aliceblue;
font-family:system-ui;
}
/* §§§§§§§§§§§§§§§§§§§§§§§§§§§§§§ CONTENT
/* §§§§§§§§§§§§§§§§§§§§§§§§§§§§§§ CONTENT */
main.main1{
max-width: 40%;
min-width: 50%;
background-color: #85c78d7c;
font-family: system-ui,Helvetica, sans-serif;
font-size: x-small;
color: rgba(255, 255, 255, 0.685);
font-weight: lighter;
height: 100%;
}
main.main1, h1{
font-weight: lighter;
font-size: 2.5em;
padding-bottom: 5%;
}
main.main1, h2 {
font-size: larger;
font-weight: lighter;
padding-right: 10%;
}
main.main1, h3 {
font-size: larger;
font-weight: lighter;
padding-right: 10%;
}
#img1 {
min-width: 50%;
max-width: 100%;
}
#img2 {
padding-top: 10%;
}
#fottxt{
font-size: larger;
font-weight: normal;
padding-right: 10%;
padding-left: 40%;
align-items: right;
font-family: system-ui,
-apple-system, Arial, Helvetica, sans-serif;
background: #165c015e;
width: 50%;
}
footer{
align-items: right;
width: 90vw;
padding-left: 15%;
padding-left: 15%;
display: block;
} | 6/style.css | *{
margin: 0;
padding: 0;
}
a {
color: rgb(0, 0, 0);
text-decoration: none;
transition: 0.3s;
padding-left: 16px;
}
a:hover {
opacity: 0.7;
}
.logo {
font-size: 24px;
text-transform: uppercase;
letter-spacing: 4px;
}
nav {
display: flex;
justify-content: space-around;
align-items: center;
font-family: system-ui,
-apple-system, Arial, Helvetica, sans-serif;
background: #296d31c4;
height: 8vh;
}
/*vh é viewport height, altura responsiva
*/
main {
background-size: cover;
height: 92vh;
}
.nav-list {
list-style: none;
display: flex;
}
.nav-list li {
letter-spacing: 3px;
margin-left: 32px;
}
.mobile-menu {
display: none;
cursor: pointer;
}
.mobile-menu div {
width: 32px;
height: 2px;
background: #fff;
margin: 8px;
transition: 0.3s;
}
body {
background-size: 100vw;
background-position: top;
background-color: #85c78dc4;
background-size: 50%;
}
@media (max-width: 999px) {
body{
overflow-x:hidden; /* se algo transborda fica escondido*/
}
.nav-list{
position: absolute;
top: 8vh;
right: 0;
width: 50vw;
height: 92vh;
background: rgba(192, 192, 192, 0.952);
flex-direction: column;
align-items: center;
justify-content: space-around;
transform: translateX(100%);
transition: transform 0.3s ease-in;
}
}
.nav-list li {
margin-left: 0;
opacity: 0;
}
.mobile-menu {
display: block;
}
.nav-list.active {
transform:translateX(0)
}
@keyframes navLinkFade {
from {
opacity: 0;
transform: 50px;
}
to {
opacity: 1;
transform: translateX(0);
}
}
.mobile-menu.active .line1 {
transform: rotate(-45deg) translate(-8px, 8px);
}
.mobile-menu.active .line2 {
opacity: 0;
}
.mobile-menu.active .line3 {
transform: rotate(45deg) translate(-5px, -7px);
}
#txt {
font-size: 37px;
color: aliceblue;
font-family:system-ui;
}
/* §§§§§§§§§§§§§§§§§§§§§§§§§§§§§§ CONTENT
/* §§§§§§§§§§§§§§§§§§§§§§§§§§§§§§ CONTENT */
main.main1{
max-width: 40%;
min-width: 50%;
background-color: #85c78d7c;
font-family: system-ui,Helvetica, sans-serif;
font-size: x-small;
color: rgba(255, 255, 255, 0.685);
font-weight: lighter;
height: 100%;
}
main.main1, h1{
font-weight: lighter;
font-size: 2.5em;
padding-bottom: 5%;
}
main.main1, h2 {
font-size: larger;
font-weight: lighter;
padding-right: 10%;
}
main.main1, h3 {
font-size: larger;
font-weight: lighter;
padding-right: 10%;
}
#img1 {
min-width: 50%;
max-width: 100%;
}
#img2 {
padding-top: 10%;
}
#fottxt{
font-size: larger;
font-weight: normal;
padding-right: 10%;
padding-left: 40%;
align-items: right;
font-family: system-ui,
-apple-system, Arial, Helvetica, sans-serif;
background: #165c015e;
width: 50%;
}
footer{
align-items: right;
width: 90vw;
padding-left: 15%;
padding-left: 15%;
display: block;
} | 0.353651 | 0.08141 |
.top {
width: 452px;
height: 35px;
}
/* upper scrolling text */
.marqueeTopBg {
width: 452px;
height: 38px;
/*background-image: url(/images/rotator/top.gif);
background-repeat: no-repeat;*/
}
.marqueeTop_Text {
/*padding-top: 13px;*/
padding-left: 10px;
padding-right: 10px;
font: normal 12px Arial, Verdana, Helvetica, Sans-Serif;
}
/* lower scrolling text */
.marqueeBottomBg {
width: 452px;
height: 35px;
/*background-image: url(/images/rotator/marqueeBottomBg.gif);
background-repeat: no-repeat;*/
}
.marqueeBottom_Text {
/*padding-top: 8px;*/
padding-left: 10px;
padding-right: 10px;
font: normal 12px Arial, Verdana, Helvetica, Sans-Serif;
}
.bottom {
width: 452px;
height: 25px;
}
.top, .marqueeTopBg, .marqueeBottomBg, .bottom {
padding: 0;
margin: 0 auto;
}
.Rotator {
background-color: black;
cursor: default;
}
.itemTemplate {
margin: 5px;
width: 140px;
height: 24px;
}
.Symbol {
font-family: Verdana, Arial;
font-weight: bold;
font-size: 9pt;
color: #3E7DBC;
cursor: default;
float: left;
}
.Quote {
font-family: Verdana, Arial;
font-size: 11px;
color: #64962D;
float: left;
margin-left: 5px;
}
.Change {
font-family: Verdana, Arial;
font-size: 11px;
color: gray;
float: left;
margin-left: 5px;
}
.Link {
font-family: Verdana, Arial;
font-size: 10px;
color: #3E7DBC;
}
table.nsrssTable {
/*margin: 4px 15px;*/
color: #87888A;
}
.nsrssTable td {
vertical-align: top;
}
.nsrssContent {
font-size: .8em;
text-align: justify;
}
.nslayoutWrapper {
margin: 0 auto;
font-family: "Segoe UI", helvetica,arial,sans-serif;
color: #eee;
padding: 5px;
height: 500px;
position: relative;
}
.nsrssDate {
color: #389E3B;
font-size: .8em;
float: right;
}
.nsrssTitle {
/*width: 560px;
white-space: nowrap;
overflow: hidden;*/
text-overflow: ellipsis;
font-size: 1.15em;
/*color: cadetblue;
position: relative;
left: 160px;
top: -90px;
margin-bottom: -50px;*/
}
.nsrssTitle a {
font-size: 1em;
color: cadetblue;
text-decoration: none;
}
.nsrssSubHeader {
font-size: 10pt;
padding-left: 3px;
color: #999;
}
.nsrssTable table a > img {
height: 50px;
width: 50px;
}
.nsrssButtons {
width: 24px;
height: 24px;
padding: 0 10px;
}
.nsimageWrapper {
width: 100%;
text-align: center;
}
.RadMediaPlayer {
width: auto !important;
height: auto !important;
min-height: 400px !important;
min-width: 400px !important;
}
.sfPublicWrapper {
width: auto !important;
height: auto !important;
min-height: 400px !important;
} | USFarmExchange/USFarmExchange/styles/scroller.css | .top {
width: 452px;
height: 35px;
}
/* upper scrolling text */
.marqueeTopBg {
width: 452px;
height: 38px;
/*background-image: url(/images/rotator/top.gif);
background-repeat: no-repeat;*/
}
.marqueeTop_Text {
/*padding-top: 13px;*/
padding-left: 10px;
padding-right: 10px;
font: normal 12px Arial, Verdana, Helvetica, Sans-Serif;
}
/* lower scrolling text */
.marqueeBottomBg {
width: 452px;
height: 35px;
/*background-image: url(/images/rotator/marqueeBottomBg.gif);
background-repeat: no-repeat;*/
}
.marqueeBottom_Text {
/*padding-top: 8px;*/
padding-left: 10px;
padding-right: 10px;
font: normal 12px Arial, Verdana, Helvetica, Sans-Serif;
}
.bottom {
width: 452px;
height: 25px;
}
.top, .marqueeTopBg, .marqueeBottomBg, .bottom {
padding: 0;
margin: 0 auto;
}
.Rotator {
background-color: black;
cursor: default;
}
.itemTemplate {
margin: 5px;
width: 140px;
height: 24px;
}
.Symbol {
font-family: Verdana, Arial;
font-weight: bold;
font-size: 9pt;
color: #3E7DBC;
cursor: default;
float: left;
}
.Quote {
font-family: Verdana, Arial;
font-size: 11px;
color: #64962D;
float: left;
margin-left: 5px;
}
.Change {
font-family: Verdana, Arial;
font-size: 11px;
color: gray;
float: left;
margin-left: 5px;
}
.Link {
font-family: Verdana, Arial;
font-size: 10px;
color: #3E7DBC;
}
table.nsrssTable {
/*margin: 4px 15px;*/
color: #87888A;
}
.nsrssTable td {
vertical-align: top;
}
.nsrssContent {
font-size: .8em;
text-align: justify;
}
.nslayoutWrapper {
margin: 0 auto;
font-family: "Segoe UI", helvetica,arial,sans-serif;
color: #eee;
padding: 5px;
height: 500px;
position: relative;
}
.nsrssDate {
color: #389E3B;
font-size: .8em;
float: right;
}
.nsrssTitle {
/*width: 560px;
white-space: nowrap;
overflow: hidden;*/
text-overflow: ellipsis;
font-size: 1.15em;
/*color: cadetblue;
position: relative;
left: 160px;
top: -90px;
margin-bottom: -50px;*/
}
.nsrssTitle a {
font-size: 1em;
color: cadetblue;
text-decoration: none;
}
.nsrssSubHeader {
font-size: 10pt;
padding-left: 3px;
color: #999;
}
.nsrssTable table a > img {
height: 50px;
width: 50px;
}
.nsrssButtons {
width: 24px;
height: 24px;
padding: 0 10px;
}
.nsimageWrapper {
width: 100%;
text-align: center;
}
.RadMediaPlayer {
width: auto !important;
height: auto !important;
min-height: 400px !important;
min-width: 400px !important;
}
.sfPublicWrapper {
width: auto !important;
height: auto !important;
min-height: 400px !important;
} | 0.352982 | 0.065485 |
.half-opacity {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
}
.grayscale {
-webkit-filter: grayscale(1);
filter: grayscale(1);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.grayscale:hover {
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
.sepia {
-webkit-filter: sepia(1);
filter: sepia(1);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.sepia:hover {
-webkit-filter: sepia(0);
filter: sepia(0);
}
.saturate {
-webkit-filter: saturate(8);
filter: saturate(8);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.saturate:hover {
-webkit-filter: saturate(0);
filter: saturate(0);
}
.hue_rotate {
-webkit-filter: hue-rotate(90deg);
filter: hue-rotate(90deg);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.hue_rotate:hover {
-webkit-filter: hue-rotate(0deg);
filter: hue-rotate(0deg);
}
.invert {
-webkit-filter: invert(0.8);
filter: invert(0.8);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.invert:hover {
-webkit-filter: invert(0);
filter: invert(0);
}
/*.opacity {
-webkit-filter: opacity(.4);
filter: opacity(.4);
.transition(all 1s ease);
}
.opacity:hover {
-webkit-filter: opacity(1);
filter: opacity(1);
}*/
.brightness {
-webkit-filter: brightness(3);
filter: brightness(3);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.brightness:hover {
-webkit-filter: brightness(1);
filter: brightness(1);
}
.contrast {
-webkit-filter: contrast(4);
filter: contrast(4);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.contrast:hover {
-webkit-filter: contrast(1);
filter: contrast(1);
}
.blur {
-webkit-filter: blur(5px);
filter: blur(5px);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.blur:hover {
-webkit-filter: blur(0px);
filter: blur(0px);
}
.drop-shadow {
-webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9));
filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9));
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.drop-shadow:hover {
-webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9));
filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9));
} | P4/Proyecto Cowork/css/img_filters.css | .half-opacity {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
}
.grayscale {
-webkit-filter: grayscale(1);
filter: grayscale(1);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.grayscale:hover {
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
.sepia {
-webkit-filter: sepia(1);
filter: sepia(1);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.sepia:hover {
-webkit-filter: sepia(0);
filter: sepia(0);
}
.saturate {
-webkit-filter: saturate(8);
filter: saturate(8);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.saturate:hover {
-webkit-filter: saturate(0);
filter: saturate(0);
}
.hue_rotate {
-webkit-filter: hue-rotate(90deg);
filter: hue-rotate(90deg);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.hue_rotate:hover {
-webkit-filter: hue-rotate(0deg);
filter: hue-rotate(0deg);
}
.invert {
-webkit-filter: invert(0.8);
filter: invert(0.8);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.invert:hover {
-webkit-filter: invert(0);
filter: invert(0);
}
/*.opacity {
-webkit-filter: opacity(.4);
filter: opacity(.4);
.transition(all 1s ease);
}
.opacity:hover {
-webkit-filter: opacity(1);
filter: opacity(1);
}*/
.brightness {
-webkit-filter: brightness(3);
filter: brightness(3);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.brightness:hover {
-webkit-filter: brightness(1);
filter: brightness(1);
}
.contrast {
-webkit-filter: contrast(4);
filter: contrast(4);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.contrast:hover {
-webkit-filter: contrast(1);
filter: contrast(1);
}
.blur {
-webkit-filter: blur(5px);
filter: blur(5px);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.blur:hover {
-webkit-filter: blur(0px);
filter: blur(0px);
}
.drop-shadow {
-webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9));
filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9));
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.drop-shadow:hover {
-webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9));
filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9));
} | 0.563258 | 0.158337 |
@import "./properties.css";
.label {
align-items: center;
cursor: pointer;
display: inline-flex;
flex-direction: var(--checkbox-radio-flex-direction);
position: relative;
user-select: var(--checkbox-radio-user-select);
vertical-align: middle;
}
.label input {
left: 0;
opacity: 0;
pointer-events: none;
position: absolute;
top: 0;
}
.input {
background-color: var(--checkbox-radio-input-background-color);
border-color: var(--checkbox-radio-input-border-color);
border-style: var(--checkbox-radio-input-border-style);
border-width: var(--checkbox-radio-input-border-width);
box-sizing: border-box;
height: var(--checkbox-radio-input-size);
margin-right: var(--checkbox-radio-input-margin-right);
min-width: var(--checkbox-radio-input-size);
position: relative;
transition:
border-color var(--checkbox-radio-transition-speed),
box-shadow var(--checkbox-radio-transition-speed);
width: var(--checkbox-radio-input-size);
}
.title {
color: var(--checkbox-radio-title-color);
font-size: var(--checkbox-radio-title-font-size);
}
.secondaryText {
font-size: var(--checkbox-radio-secondary-text-font-size);
margin: var(--checkbox-radio-secondary-text-margin);
position: relative;
}
/* checked */
.label input:checked ~ .title {
color: var(--checkbox-radio-title-checked);
}
/* hover and focus */
.label:hover .input,
.label input:focus + .input {
box-shadow: var(--checkbox-radio-input-box-shadow-hover-focus);
}
/* hover */
.label:hover .input {
border-color: var(--checkbox-radio-input-border-color-hover);
}
/* focus */
.label input:focus + .input {
border-color: var(--checkbox-radio-input-border-color-focus);
}
/* active */
.label:active .input {
border-color: var(--checkbox-radio-input-border-color-active);
box-shadow: var(--checkbox-radio-input-box-shadow-active);
}
/* error */
.error {
& .input {
border-color: var(--checkbox-radio-color-error);
}
& .secondaryText,
& input:checked ~ .title {
color: var(--checkbox-radio-color-error);
}
& .label:hover .input,
& .label input:focus + .input {
box-shadow: 2px 2px var(--checkbox-radio-color-error-50);
}
& .label:hover .input {
border-color: var(--checkbox-radio-color-error-50);
}
& .label input:focus + .input {
border-color: var(--checkbox-radio-color-error);
}
& .label:active .input {
border-color: var(--checkbox-radio-color-error);
box-shadow: var(--checkbox-radio-box-shadow-error);
}
}
/* disabled */
.disabled {
& .label {
cursor: not-allowed;
}
& .input {
background-color: var(--checkbox-radio-background-color-disabled);
border-color: var(--checkbox-radio-border-color-disabled);
}
& .title,
& input:checked ~ .title {
color: var(--checkbox-radio-title-color-disabled);
}
& input:hover + .input {
border-color: var(--checkbox-radio-border-color-disabled);
box-shadow: none;
}
} | src/styles/checkbox-radio/index.css | @import "./properties.css";
.label {
align-items: center;
cursor: pointer;
display: inline-flex;
flex-direction: var(--checkbox-radio-flex-direction);
position: relative;
user-select: var(--checkbox-radio-user-select);
vertical-align: middle;
}
.label input {
left: 0;
opacity: 0;
pointer-events: none;
position: absolute;
top: 0;
}
.input {
background-color: var(--checkbox-radio-input-background-color);
border-color: var(--checkbox-radio-input-border-color);
border-style: var(--checkbox-radio-input-border-style);
border-width: var(--checkbox-radio-input-border-width);
box-sizing: border-box;
height: var(--checkbox-radio-input-size);
margin-right: var(--checkbox-radio-input-margin-right);
min-width: var(--checkbox-radio-input-size);
position: relative;
transition:
border-color var(--checkbox-radio-transition-speed),
box-shadow var(--checkbox-radio-transition-speed);
width: var(--checkbox-radio-input-size);
}
.title {
color: var(--checkbox-radio-title-color);
font-size: var(--checkbox-radio-title-font-size);
}
.secondaryText {
font-size: var(--checkbox-radio-secondary-text-font-size);
margin: var(--checkbox-radio-secondary-text-margin);
position: relative;
}
/* checked */
.label input:checked ~ .title {
color: var(--checkbox-radio-title-checked);
}
/* hover and focus */
.label:hover .input,
.label input:focus + .input {
box-shadow: var(--checkbox-radio-input-box-shadow-hover-focus);
}
/* hover */
.label:hover .input {
border-color: var(--checkbox-radio-input-border-color-hover);
}
/* focus */
.label input:focus + .input {
border-color: var(--checkbox-radio-input-border-color-focus);
}
/* active */
.label:active .input {
border-color: var(--checkbox-radio-input-border-color-active);
box-shadow: var(--checkbox-radio-input-box-shadow-active);
}
/* error */
.error {
& .input {
border-color: var(--checkbox-radio-color-error);
}
& .secondaryText,
& input:checked ~ .title {
color: var(--checkbox-radio-color-error);
}
& .label:hover .input,
& .label input:focus + .input {
box-shadow: 2px 2px var(--checkbox-radio-color-error-50);
}
& .label:hover .input {
border-color: var(--checkbox-radio-color-error-50);
}
& .label input:focus + .input {
border-color: var(--checkbox-radio-color-error);
}
& .label:active .input {
border-color: var(--checkbox-radio-color-error);
box-shadow: var(--checkbox-radio-box-shadow-error);
}
}
/* disabled */
.disabled {
& .label {
cursor: not-allowed;
}
& .input {
background-color: var(--checkbox-radio-background-color-disabled);
border-color: var(--checkbox-radio-border-color-disabled);
}
& .title,
& input:checked ~ .title {
color: var(--checkbox-radio-title-color-disabled);
}
& input:hover + .input {
border-color: var(--checkbox-radio-border-color-disabled);
box-shadow: none;
}
} | 0.453988 | 0.063861 |
body {
margin:0px;
background-image:none;
position:static;
left:auto;
width:376px;
margin-left:0;
margin-right:0;
text-align:left;
}
#base {
position:absolute;
z-index:0;
}
#u0 {
position:absolute;
left:0px;
top:-2px;
width:376px;
height:647px;
}
#u0_img {
position:absolute;
left:0px;
top:0px;
width:377px;
height:648px;
}
#u1 {
position:absolute;
left:2px;
top:316px;
width:372px;
visibility:hidden;
word-wrap:break-word;
}
#u2 {
position:absolute;
left:28px;
top:225px;
width:30px;
height:25px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:18px;
}
#u2_img {
position:absolute;
left:0px;
top:0px;
width:31px;
height:26px;
}
#u3 {
position:absolute;
left:2px;
top:2px;
width:26px;
word-wrap:break-word;
}
#u4 {
position:absolute;
left:0px;
top:0px;
width:376px;
height:59px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:16px;
}
#u4_img {
position:absolute;
left:0px;
top:0px;
width:377px;
height:60px;
}
#u5 {
position:absolute;
left:2px;
top:20px;
width:372px;
word-wrap:break-word;
}
#u6 {
position:absolute;
left:16px;
top:15px;
width:37px;
height:30px;
}
#u6_img {
position:absolute;
left:0px;
top:0px;
width:38px;
height:31px;
}
#u7 {
position:absolute;
left:2px;
top:8px;
width:33px;
word-wrap:break-word;
}
#u8 {
position:absolute;
left:28px;
top:200px;
width:320px;
height:10px;
}
#u8_start {
position:absolute;
left:-4px;
top:-5px;
width:14px;
height:20px;
}
#u8_end {
position:absolute;
left:311px;
top:-5px;
width:14px;
height:20px;
}
#u8_line {
position:absolute;
left:0px;
top:5px;
width:320px;
height:1px;
}
#u9 {
position:absolute;
left:28px;
top:75px;
width:320px;
height:25px;
font-family:'Helvetica Medium', 'Helvetica';
font-weight:400;
font-style:normal;
font-size:16px;
}
#u9_img {
position:absolute;
left:0px;
top:0px;
width:321px;
height:26px;
}
#u10 {
position:absolute;
left:0px;
top:0px;
width:320px;
word-wrap:break-word;
}
#u11 {
position:absolute;
left:68px;
top:228px;
width:290px;
height:25px;
font-family:'Helvetica Medium', 'Helvetica';
font-weight:400;
font-style:normal;
font-size:16px;
}
#u11_img {
position:absolute;
left:0px;
top:0px;
width:291px;
height:26px;
}
#u12 {
position:absolute;
left:0px;
top:0px;
width:290px;
word-wrap:break-word;
}
#u13 {
position:absolute;
left:28px;
top:563px;
width:320px;
height:57px;
font-family:'Helvetica Bold', 'Helvetica';
font-weight:700;
font-style:normal;
font-size:16px;
}
#u13_img {
position:absolute;
left:0px;
top:0px;
width:321px;
height:58px;
}
#u14 {
position:absolute;
left:2px;
top:19px;
width:316px;
word-wrap:break-word;
}
#u15 {
position:absolute;
left:28px;
top:114px;
width:320px;
height:36px;
}
#u15_input {
position:absolute;
left:0px;
top:0px;
width:320px;
height:36px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
}
#u15_input:disabled {
color:grayText;
}
#u16 {
position:absolute;
left:190px;
top:260px;
width:158px;
height:34px;
}
#u16_input {
position:absolute;
left:0px;
top:0px;
width:158px;
height:34px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
text-align:left;
}
#u17 {
position:absolute;
left:28px;
top:355px;
width:320px;
height:35px;
}
#u17_input {
position:absolute;
left:0px;
top:0px;
width:320px;
height:35px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
text-align:left;
}
#u18 {
position:absolute;
left:28px;
top:260px;
width:152px;
height:34px;
}
#u18_input {
position:absolute;
left:0px;
top:0px;
width:152px;
height:34px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
text-align:left;
}
#u19 {
position:absolute;
left:28px;
top:304px;
width:320px;
height:36px;
}
#u19_input {
position:absolute;
left:0px;
top:0px;
width:320px;
height:36px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
}
#u19_input:disabled {
color:grayText;
}
#u20 {
position:absolute;
left:192px;
top:400px;
width:156px;
height:35px;
}
#u20_input {
position:absolute;
left:0px;
top:0px;
width:156px;
height:35px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
text-align:left;
}
#u21 {
position:absolute;
left:28px;
top:400px;
width:154px;
height:35px;
}
#u21_input {
position:absolute;
left:0px;
top:0px;
width:154px;
height:35px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
text-align:left;
}
#u22 {
position:absolute;
left:28px;
top:225px;
width:30px;
height:25px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:18px;
}
#u22_img {
position:absolute;
left:0px;
top:0px;
width:31px;
height:26px;
}
#u23 {
position:absolute;
left:2px;
top:2px;
width:26px;
word-wrap:break-word;
}
#u24 {
position:absolute;
left:208px;
top:445px;
width:140px;
height:12px;
font-family:'Helvetica Bold', 'Helvetica';
font-weight:700;
font-style:normal;
font-size:10px;
}
#u25 {
position:absolute;
left:16px;
top:0px;
width:122px;
word-wrap:break-word;
}
#u24_input {
position:absolute;
left:-3px;
top:-2px;
} | docs/Frinkles/files/payment/styles.css | body {
margin:0px;
background-image:none;
position:static;
left:auto;
width:376px;
margin-left:0;
margin-right:0;
text-align:left;
}
#base {
position:absolute;
z-index:0;
}
#u0 {
position:absolute;
left:0px;
top:-2px;
width:376px;
height:647px;
}
#u0_img {
position:absolute;
left:0px;
top:0px;
width:377px;
height:648px;
}
#u1 {
position:absolute;
left:2px;
top:316px;
width:372px;
visibility:hidden;
word-wrap:break-word;
}
#u2 {
position:absolute;
left:28px;
top:225px;
width:30px;
height:25px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:18px;
}
#u2_img {
position:absolute;
left:0px;
top:0px;
width:31px;
height:26px;
}
#u3 {
position:absolute;
left:2px;
top:2px;
width:26px;
word-wrap:break-word;
}
#u4 {
position:absolute;
left:0px;
top:0px;
width:376px;
height:59px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:16px;
}
#u4_img {
position:absolute;
left:0px;
top:0px;
width:377px;
height:60px;
}
#u5 {
position:absolute;
left:2px;
top:20px;
width:372px;
word-wrap:break-word;
}
#u6 {
position:absolute;
left:16px;
top:15px;
width:37px;
height:30px;
}
#u6_img {
position:absolute;
left:0px;
top:0px;
width:38px;
height:31px;
}
#u7 {
position:absolute;
left:2px;
top:8px;
width:33px;
word-wrap:break-word;
}
#u8 {
position:absolute;
left:28px;
top:200px;
width:320px;
height:10px;
}
#u8_start {
position:absolute;
left:-4px;
top:-5px;
width:14px;
height:20px;
}
#u8_end {
position:absolute;
left:311px;
top:-5px;
width:14px;
height:20px;
}
#u8_line {
position:absolute;
left:0px;
top:5px;
width:320px;
height:1px;
}
#u9 {
position:absolute;
left:28px;
top:75px;
width:320px;
height:25px;
font-family:'Helvetica Medium', 'Helvetica';
font-weight:400;
font-style:normal;
font-size:16px;
}
#u9_img {
position:absolute;
left:0px;
top:0px;
width:321px;
height:26px;
}
#u10 {
position:absolute;
left:0px;
top:0px;
width:320px;
word-wrap:break-word;
}
#u11 {
position:absolute;
left:68px;
top:228px;
width:290px;
height:25px;
font-family:'Helvetica Medium', 'Helvetica';
font-weight:400;
font-style:normal;
font-size:16px;
}
#u11_img {
position:absolute;
left:0px;
top:0px;
width:291px;
height:26px;
}
#u12 {
position:absolute;
left:0px;
top:0px;
width:290px;
word-wrap:break-word;
}
#u13 {
position:absolute;
left:28px;
top:563px;
width:320px;
height:57px;
font-family:'Helvetica Bold', 'Helvetica';
font-weight:700;
font-style:normal;
font-size:16px;
}
#u13_img {
position:absolute;
left:0px;
top:0px;
width:321px;
height:58px;
}
#u14 {
position:absolute;
left:2px;
top:19px;
width:316px;
word-wrap:break-word;
}
#u15 {
position:absolute;
left:28px;
top:114px;
width:320px;
height:36px;
}
#u15_input {
position:absolute;
left:0px;
top:0px;
width:320px;
height:36px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
}
#u15_input:disabled {
color:grayText;
}
#u16 {
position:absolute;
left:190px;
top:260px;
width:158px;
height:34px;
}
#u16_input {
position:absolute;
left:0px;
top:0px;
width:158px;
height:34px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
text-align:left;
}
#u17 {
position:absolute;
left:28px;
top:355px;
width:320px;
height:35px;
}
#u17_input {
position:absolute;
left:0px;
top:0px;
width:320px;
height:35px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
text-align:left;
}
#u18 {
position:absolute;
left:28px;
top:260px;
width:152px;
height:34px;
}
#u18_input {
position:absolute;
left:0px;
top:0px;
width:152px;
height:34px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
text-align:left;
}
#u19 {
position:absolute;
left:28px;
top:304px;
width:320px;
height:36px;
}
#u19_input {
position:absolute;
left:0px;
top:0px;
width:320px;
height:36px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
}
#u19_input:disabled {
color:grayText;
}
#u20 {
position:absolute;
left:192px;
top:400px;
width:156px;
height:35px;
}
#u20_input {
position:absolute;
left:0px;
top:0px;
width:156px;
height:35px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
text-align:left;
}
#u21 {
position:absolute;
left:28px;
top:400px;
width:154px;
height:35px;
}
#u21_input {
position:absolute;
left:0px;
top:0px;
width:154px;
height:35px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
text-align:left;
}
#u22 {
position:absolute;
left:28px;
top:225px;
width:30px;
height:25px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:18px;
}
#u22_img {
position:absolute;
left:0px;
top:0px;
width:31px;
height:26px;
}
#u23 {
position:absolute;
left:2px;
top:2px;
width:26px;
word-wrap:break-word;
}
#u24 {
position:absolute;
left:208px;
top:445px;
width:140px;
height:12px;
font-family:'Helvetica Bold', 'Helvetica';
font-weight:700;
font-style:normal;
font-size:10px;
}
#u25 {
position:absolute;
left:16px;
top:0px;
width:122px;
word-wrap:break-word;
}
#u24_input {
position:absolute;
left:-3px;
top:-2px;
} | 0.419648 | 0.053874 |
body{font-family:"Microsoft YaHei"}
.ico{background:url(/xin/images/common/xin_ico.png) no-repeat 0 0}
.header-wrap,
.main-wrap,
.footer-wrap{width:100%;min-width:1100px}
.header-wrap{margin-bottom:70px}
.header,
.main,
.footer{width:100%;margin:0 auto;position:relative;}
.header{padding-top:40px}
.select-city{top:55px;left:175px;background:#fff;font:normal 14px/normal "Microsoft YaHei";color:#333}
.select-city dt{position:absolute;z-index:100;top:-55px;padding-right:25px;text-align:right;background:#fdfdfd;width:60px;height:58px;line-height:58px;cursor:pointer;background:url('/xin/images/common/down.png') right no-repeat}
.select-city .city-txt{padding-right:28px}
.select-city .city-ico{background-position:0 -52px;top:25px;right:15px;height:9px;width:15px}
.select-city dt.active{color:#ff5837;background:url('/xin/images/common/up.png') right no-repeat}
.select-city dd{display:none;width:750px;height:450px;margin-top:5px;border:1px solid #e5e5e5;overflow-y:scroll}
.select-city dt.active .city-txt{color:#ff5837}
.select-city dd ul li{width:100%;border-bottom:1px dashed #ebebeb;font:normal 14px/40px "Microsoft YaHei";color:#666}
.select-city dd ul li a,
.select-city .hot-city a{_display:inline;display:block;float:left;width:60px;padding-left:18px;text-align:left;color:#666}
.select-city dd ul li a:hover,
.select-city .hot-city a:hover,
.select-city .pro-letter a:hover,
.select-city dd ul li a.cur,
.select-city .hot-city a.cur,
.select-city .pro-letter a.cur{color:#ff5837}
.select-city dd ul li span{_display:inline;display:block;float:left;width:100px;background:#f2f2f2;text-indent:10px}
.select-city dd ul li span.mcity,
.select-city dd ul li span.mcity b,
.select-city dd ul li span.scity b{color:#f2f2f2}
.select-city dd ul li span b{color:#999;display:inline-block;width:30px}
.select-city .hot-city{height:40px;border-bottom:1px solid #e5e5e5;font:normal 14px/40px "Microsoft YaHei";position:relative}
.select-city .hot-city span{_display:inline;display:block;float:left;width:100px;background:#f2f2f2;text-align:center;color:#ff5837}
.select-city .pro-letter{height:40px;border-bottom:1px solid #e5e5e5;font:normal 14px/40px "Microsoft YaHei"}
.select-city .pro-letter span{_display:inline;display:block;float:left;width:100px;background:#f2f2f2;text-align:center;color:#666}
.select-city .pro-letter em{_display:inline;display:block;float:left;width:15px;margin-left:20px;text-align:left;color:#666;cursor:pointer}
.select-city .pro-letter em:hover{color:#ff5837}
.select-city .cityMore{float:left;font:normal 14px/normal "Microsoft YaHei";color:#666;background:#f2f2f2 url('/xin/images/common/dashed.png') bottom repeat-x}
.select-city .cityMore span{display:inline-block;float:left}
.select-city .cityMore span:first-child{position:relative;width:100px;text-indent:40px;font:normal 14px/22px 'Microsoft YaHei';padding:10px 0;z-index:11}
.select-city .cityMore span:first-child b{position:absolute;top:12px;left:-16px;color:#999999;font:normal 14px/normal 'Microsoft YaHei'}
.select-city .cityMore span + span{width:629px;text-align:left;color:#666;overflow:hidden;background:white url('/xin/images/common/dashed.png') bottom repeat-x}
.select-city .cityMore span + span em{width:100%;display:inline-block;background:white url('/xin/images/common/dashed.png') bottom repeat-x}
.select-city .cityMore span + span a{width:60px;color:#666;font:normal 14px/22px 'Microsoft YaHei';padding-left:18px;padding:10px 0 10px 14px;display:inline-block}
.select-city .cityMore a:hover,
.select-city .cityMore a.cur{color:#ff5837}
.select-city .noDas{background:#f2f2f2!important}
.select-city .noDas em{background:white!important}
.nav-list{top:40px;right:0}
.nav-list li{float:left;margin-left:16px;font-size:14px}
.nav-list li a{color:#414141;text-decoration:none}
.nav-list li a:hover,
.nav-list li a.active{color:#ff5400;}
.nav-list li a.buy-car{color:#ff5a37;}
.nav-list li.top-search input{display:none}
.nav-list li.search-focus{position:relative;background:#fafafa;border:2px solid #e5e5e5;border-radius:5px;height:30px;line-height:30px;width:190px}
.nav-list li.search-focus input{display:block;border:none;background:none;font:normal 14px/20px "Microsoft YaHei";padding:5px 0;color:#c5c5c5;margin-left:10px;width:145px}
.search-ico{display:block;background-position:0 8px;height:34px;width:18px;cursor:pointer}
.nav-list li.search-focus .search-ico{background-position:-77px 3px;position:absolute;right:10px;top:4px}
.nav-list li.search-focus .search-ico:hover{background-position:-39px 3px}
.app-ico{background-position:0 -85px;height:34px;width:13px;margin-right:5px}
a:hover .app-ico,
a.active .app-ico{background-position:-39px -85px}
.sbx-ico{display:block;width:38px;height:20px;left:42px;top:-7px;position:absolute;}
.hot-ico{background-position:2px -245px;height:20px;width:30px;left:32px;top:-5px}
.logo{display:block;height:80px;width:80px;margin:80px auto 0}
.header h1,
.header h2{text-align:center}
.header h1{margin-top:63px}
.header h2{margin-top:25px}
.fixed-head-wrap{z-index:99999999;left:0;top:0;background:#fdfdfd;border-bottom:1px solid #e4e4e4;height:64px;width:100%;min-width:1100px}
.addShadow{box-shadow:0 3px 4px rgba(0,0,0,0.1)}
.fixed-head{width:1100px;margin:0 auto;z-index:99}
.fixed-head strong{display:none}
.fixed-logo{display:inline-block;height:26px;width:163px;margin-top:16px;background:url(/xin/images/common/logo.png) no-repeat 0 0;margin-top:16px}
.fixed-list{top:13px;right:0}
.fixed-list li{margin-left:20px;line-height:34px}
.fixed-list li .person-wrap{position:relative;background:#fdfdfd;zoom:1;top:-5px;cursor:pointer;padding:0px 8px;border:1px solid #fdfdfd;border-bottom:none}
.fixed-list li.div{display:inline-block;width:135px}
.fixed-list li a.apply{color:#2293fb}
.person-wrap p{font:normal 14px/44px "Microsoft YaHei";color:#333}
.person-wrap .phone-info{position:relative;zoom:1;padding-left:27px}
.person-wrap .phone-info .person-ico{position:absolute;left:0;top:12px;background-position:0 -205px;height:20px;width:20px}
.person-wrap .exit{display:none}
.fixed-list li .person-info{background:#fff;border:1px solid #e4e4e4;border-radius:4px}
.person-info .phone-info{border-bottom:1px dashed #ebebeb}
.person-info .exit{display:block;text-align:center}
.main-wrap{overflow:hidden}
.footer-wrap{background:#444}
.footer p{font:normal 12px/22px "Microsoft YaHei";color:#acacac}
.footer p strong a{color:#acacac}
.footer .contact{margin:0 auto 12px;padding:45px 0;border-bottom:1px solid #5e5e5e;text-align:center}
.contact a{padding:0 15px;font:normal 16px/46px "Microsoft YaHei";color:#e5e5e5}
.contact a:hover{text-decoration:underline}
.qr-code{position:absolute;right:0;top:54px;width:142px}
.qr-code .scan-txt{margin-top:10px;font:normal 12px/20px "Microsoft YaHei";color:#999}
.qr-code .arrow-ico{background-position:0 -143px;position:absolute;top:-25px;left:-25px;height:32px;width:23px}
.footer2{width:600px;margin:0 auto;margin-top:8px;padding-top:8px;text-align:center}
.footer span{font:normal 12px/40px "Microsoft YaHei";color:#acacac}
.footer p strong a{color:#acacac}
.footer .contact_new{width:1100px;padding:55px 0;border-bottom:1px solid #515151;color:#e5e5e5}
.contact_new a{margin-right:30px;font:normal 16px/46px "Microsoft YaHei";color:#e5e5e5}
.contact_new a:hover{text-decoration:underline}
.footer3{width:1100px;border-top:1px solid #515151;border-bottom:1px solid #515151}
.footer3 p{font:normal 12px/40px "Microsoft YaHei";position:relative}
.footer3 em{margin-left:10px}
.footer3 a.bot-logo{margin-left:10px;display:inline-block}
.index-code{position:absolute;right:300px;top:29px;height:100px}
.index-code2{position:absolute;right:25px;top:29px;height:100px}
.index-code img,
.index-code2 img{float:left}
.index-code .scan-txt,
.index-code2 .scan-txt{margin:30px 0 0 10px;font:normal 14px/20px "Microsoft YaHei";color:#e5e5e5}
.brand-search input.Hsearch{border:none;width:345px;text-indent:12px;margin-left:70px;padding:12px 0;font:normal 16px/22px "Microsoft YaHei";color:#999999}
.select-tit{position:absolute;left:0;top:0;width:70px;color:#333}
.select-tit .Sitem{height:47px;width:70px;font:normal 16px/47px "Microsoft YaHei";border:none;background:#fff;text-align:left;text-indent:9px;border-radius:4px;cursor:pointer}
.select-tit b{display:block;width:9px;height:6px;position:absolute;right:10px;top:21px;background:url(/xin/images/home/arrow_icon.png) no-repeat}
.select-tit b.select-on{background:url(/xin/images/home/arrow_icon2.png) no-repeat}
.select-tit ul{display:block;border-radius:4px;margin-top:5px;background:#fff;border:1px solid #e5e5e5;display:none;position:relative;z-index:100}
.select-tit ul li{height:34px;width:70px;font:normal 16px/34px "Microsoft YaHei";text-indent:26px;cursor:pointer}
.select-tit ul li.select-car{border-bottom:1px solid #e5e5e5;background:url(/xin/images/home/car_icon.png) no-repeat 7px center}
.select-tit ul li.select-shop{background:url(/xin/images/home/shop_icon.png) no-repeat 7px center}
.hot-city .search-focus{position:relative;border:1px solid #e5e5e5;border-radius:4px;-webkit-border-radius:4px;height:28px;line-height:28px;width:360px;margin:10px auto}
.hot-city .search-focus input{display:block;border:none;background:none;font:normal 14px/28px "Microsoft YaHei";height:28px;color:#c5c5c5;text-indent:40px;width:360px}
.search-ico{display:block;background-position:0 8px;height:34px;width:18px;cursor:pointer}
.hot-city .search-focus .search-ico{background-position:-77px 3px;position:absolute;left:10px;top:2px}
.hot-city .search-focus .search-ico:hover{background-position:-39px 3px}
.city-blur{width:360px;border:1px solid #e5e5e5;border-radius:4px;-webkit-border-radius:4px;position:absolute;left:0;right:0;margin:auto;top:32px;z-index:10;background:#fff;display:none}
.city-blur a{display:block;width:330px;height:30px;padding:0 15px;color:#333!important;font:normal 14px/30px "Microsoft YaHei"}
.city-blur a:hover{background:#f2f2f2;color:#333!important}
.city-blur a em{float:right;color:#c5c5c5}
.CommonSearch{width:310px!important;height:30px!important;padding:0 15px!important;color:#333!important;font:normal 14px/30px "Microsoft YaHei"!important;display:block!important;background:white!important;border:0!important}
.CommonSearch.ui-state-focus{height:32px!important;line-height:32px!important;background:#f2f2f2!important;border-radius:0!important;padding-left:16px!important}
.ui-widget-content{background:white!important;}
.placeholder-em{
position: absolute;
color: #bfbfbf;
left: 0;
top: 0;
z-index: 2;
font-style: normal;
height: 18px;
width: 260px;
font: normal 14px/34px "Microsoft YaHei";
line-height: 18px;
padding: 8px 10px;
}
/* 20171212 头部新车添加一成购样式 */
.nav-list li .newcar {
position: relative;
display: none;
height: 34px;
line-height: 34px;
}
.nav-list li .h-yc{
position: absolute;
background-image: url(/www/img/newcar.png) ;
background-image: -webkit-image-set(url(/www/img/newcar.png) 1x, url(/www/img/newcar@2x.png) 2x);
background-repeat: no-repeat;
width: 34px;
height: 15px;
top: -7px;
right: -14px;
} | public/css/gerenzhongxin/common.css | body{font-family:"Microsoft YaHei"}
.ico{background:url(/xin/images/common/xin_ico.png) no-repeat 0 0}
.header-wrap,
.main-wrap,
.footer-wrap{width:100%;min-width:1100px}
.header-wrap{margin-bottom:70px}
.header,
.main,
.footer{width:100%;margin:0 auto;position:relative;}
.header{padding-top:40px}
.select-city{top:55px;left:175px;background:#fff;font:normal 14px/normal "Microsoft YaHei";color:#333}
.select-city dt{position:absolute;z-index:100;top:-55px;padding-right:25px;text-align:right;background:#fdfdfd;width:60px;height:58px;line-height:58px;cursor:pointer;background:url('/xin/images/common/down.png') right no-repeat}
.select-city .city-txt{padding-right:28px}
.select-city .city-ico{background-position:0 -52px;top:25px;right:15px;height:9px;width:15px}
.select-city dt.active{color:#ff5837;background:url('/xin/images/common/up.png') right no-repeat}
.select-city dd{display:none;width:750px;height:450px;margin-top:5px;border:1px solid #e5e5e5;overflow-y:scroll}
.select-city dt.active .city-txt{color:#ff5837}
.select-city dd ul li{width:100%;border-bottom:1px dashed #ebebeb;font:normal 14px/40px "Microsoft YaHei";color:#666}
.select-city dd ul li a,
.select-city .hot-city a{_display:inline;display:block;float:left;width:60px;padding-left:18px;text-align:left;color:#666}
.select-city dd ul li a:hover,
.select-city .hot-city a:hover,
.select-city .pro-letter a:hover,
.select-city dd ul li a.cur,
.select-city .hot-city a.cur,
.select-city .pro-letter a.cur{color:#ff5837}
.select-city dd ul li span{_display:inline;display:block;float:left;width:100px;background:#f2f2f2;text-indent:10px}
.select-city dd ul li span.mcity,
.select-city dd ul li span.mcity b,
.select-city dd ul li span.scity b{color:#f2f2f2}
.select-city dd ul li span b{color:#999;display:inline-block;width:30px}
.select-city .hot-city{height:40px;border-bottom:1px solid #e5e5e5;font:normal 14px/40px "Microsoft YaHei";position:relative}
.select-city .hot-city span{_display:inline;display:block;float:left;width:100px;background:#f2f2f2;text-align:center;color:#ff5837}
.select-city .pro-letter{height:40px;border-bottom:1px solid #e5e5e5;font:normal 14px/40px "Microsoft YaHei"}
.select-city .pro-letter span{_display:inline;display:block;float:left;width:100px;background:#f2f2f2;text-align:center;color:#666}
.select-city .pro-letter em{_display:inline;display:block;float:left;width:15px;margin-left:20px;text-align:left;color:#666;cursor:pointer}
.select-city .pro-letter em:hover{color:#ff5837}
.select-city .cityMore{float:left;font:normal 14px/normal "Microsoft YaHei";color:#666;background:#f2f2f2 url('/xin/images/common/dashed.png') bottom repeat-x}
.select-city .cityMore span{display:inline-block;float:left}
.select-city .cityMore span:first-child{position:relative;width:100px;text-indent:40px;font:normal 14px/22px 'Microsoft YaHei';padding:10px 0;z-index:11}
.select-city .cityMore span:first-child b{position:absolute;top:12px;left:-16px;color:#999999;font:normal 14px/normal 'Microsoft YaHei'}
.select-city .cityMore span + span{width:629px;text-align:left;color:#666;overflow:hidden;background:white url('/xin/images/common/dashed.png') bottom repeat-x}
.select-city .cityMore span + span em{width:100%;display:inline-block;background:white url('/xin/images/common/dashed.png') bottom repeat-x}
.select-city .cityMore span + span a{width:60px;color:#666;font:normal 14px/22px 'Microsoft YaHei';padding-left:18px;padding:10px 0 10px 14px;display:inline-block}
.select-city .cityMore a:hover,
.select-city .cityMore a.cur{color:#ff5837}
.select-city .noDas{background:#f2f2f2!important}
.select-city .noDas em{background:white!important}
.nav-list{top:40px;right:0}
.nav-list li{float:left;margin-left:16px;font-size:14px}
.nav-list li a{color:#414141;text-decoration:none}
.nav-list li a:hover,
.nav-list li a.active{color:#ff5400;}
.nav-list li a.buy-car{color:#ff5a37;}
.nav-list li.top-search input{display:none}
.nav-list li.search-focus{position:relative;background:#fafafa;border:2px solid #e5e5e5;border-radius:5px;height:30px;line-height:30px;width:190px}
.nav-list li.search-focus input{display:block;border:none;background:none;font:normal 14px/20px "Microsoft YaHei";padding:5px 0;color:#c5c5c5;margin-left:10px;width:145px}
.search-ico{display:block;background-position:0 8px;height:34px;width:18px;cursor:pointer}
.nav-list li.search-focus .search-ico{background-position:-77px 3px;position:absolute;right:10px;top:4px}
.nav-list li.search-focus .search-ico:hover{background-position:-39px 3px}
.app-ico{background-position:0 -85px;height:34px;width:13px;margin-right:5px}
a:hover .app-ico,
a.active .app-ico{background-position:-39px -85px}
.sbx-ico{display:block;width:38px;height:20px;left:42px;top:-7px;position:absolute;}
.hot-ico{background-position:2px -245px;height:20px;width:30px;left:32px;top:-5px}
.logo{display:block;height:80px;width:80px;margin:80px auto 0}
.header h1,
.header h2{text-align:center}
.header h1{margin-top:63px}
.header h2{margin-top:25px}
.fixed-head-wrap{z-index:99999999;left:0;top:0;background:#fdfdfd;border-bottom:1px solid #e4e4e4;height:64px;width:100%;min-width:1100px}
.addShadow{box-shadow:0 3px 4px rgba(0,0,0,0.1)}
.fixed-head{width:1100px;margin:0 auto;z-index:99}
.fixed-head strong{display:none}
.fixed-logo{display:inline-block;height:26px;width:163px;margin-top:16px;background:url(/xin/images/common/logo.png) no-repeat 0 0;margin-top:16px}
.fixed-list{top:13px;right:0}
.fixed-list li{margin-left:20px;line-height:34px}
.fixed-list li .person-wrap{position:relative;background:#fdfdfd;zoom:1;top:-5px;cursor:pointer;padding:0px 8px;border:1px solid #fdfdfd;border-bottom:none}
.fixed-list li.div{display:inline-block;width:135px}
.fixed-list li a.apply{color:#2293fb}
.person-wrap p{font:normal 14px/44px "Microsoft YaHei";color:#333}
.person-wrap .phone-info{position:relative;zoom:1;padding-left:27px}
.person-wrap .phone-info .person-ico{position:absolute;left:0;top:12px;background-position:0 -205px;height:20px;width:20px}
.person-wrap .exit{display:none}
.fixed-list li .person-info{background:#fff;border:1px solid #e4e4e4;border-radius:4px}
.person-info .phone-info{border-bottom:1px dashed #ebebeb}
.person-info .exit{display:block;text-align:center}
.main-wrap{overflow:hidden}
.footer-wrap{background:#444}
.footer p{font:normal 12px/22px "Microsoft YaHei";color:#acacac}
.footer p strong a{color:#acacac}
.footer .contact{margin:0 auto 12px;padding:45px 0;border-bottom:1px solid #5e5e5e;text-align:center}
.contact a{padding:0 15px;font:normal 16px/46px "Microsoft YaHei";color:#e5e5e5}
.contact a:hover{text-decoration:underline}
.qr-code{position:absolute;right:0;top:54px;width:142px}
.qr-code .scan-txt{margin-top:10px;font:normal 12px/20px "Microsoft YaHei";color:#999}
.qr-code .arrow-ico{background-position:0 -143px;position:absolute;top:-25px;left:-25px;height:32px;width:23px}
.footer2{width:600px;margin:0 auto;margin-top:8px;padding-top:8px;text-align:center}
.footer span{font:normal 12px/40px "Microsoft YaHei";color:#acacac}
.footer p strong a{color:#acacac}
.footer .contact_new{width:1100px;padding:55px 0;border-bottom:1px solid #515151;color:#e5e5e5}
.contact_new a{margin-right:30px;font:normal 16px/46px "Microsoft YaHei";color:#e5e5e5}
.contact_new a:hover{text-decoration:underline}
.footer3{width:1100px;border-top:1px solid #515151;border-bottom:1px solid #515151}
.footer3 p{font:normal 12px/40px "Microsoft YaHei";position:relative}
.footer3 em{margin-left:10px}
.footer3 a.bot-logo{margin-left:10px;display:inline-block}
.index-code{position:absolute;right:300px;top:29px;height:100px}
.index-code2{position:absolute;right:25px;top:29px;height:100px}
.index-code img,
.index-code2 img{float:left}
.index-code .scan-txt,
.index-code2 .scan-txt{margin:30px 0 0 10px;font:normal 14px/20px "Microsoft YaHei";color:#e5e5e5}
.brand-search input.Hsearch{border:none;width:345px;text-indent:12px;margin-left:70px;padding:12px 0;font:normal 16px/22px "Microsoft YaHei";color:#999999}
.select-tit{position:absolute;left:0;top:0;width:70px;color:#333}
.select-tit .Sitem{height:47px;width:70px;font:normal 16px/47px "Microsoft YaHei";border:none;background:#fff;text-align:left;text-indent:9px;border-radius:4px;cursor:pointer}
.select-tit b{display:block;width:9px;height:6px;position:absolute;right:10px;top:21px;background:url(/xin/images/home/arrow_icon.png) no-repeat}
.select-tit b.select-on{background:url(/xin/images/home/arrow_icon2.png) no-repeat}
.select-tit ul{display:block;border-radius:4px;margin-top:5px;background:#fff;border:1px solid #e5e5e5;display:none;position:relative;z-index:100}
.select-tit ul li{height:34px;width:70px;font:normal 16px/34px "Microsoft YaHei";text-indent:26px;cursor:pointer}
.select-tit ul li.select-car{border-bottom:1px solid #e5e5e5;background:url(/xin/images/home/car_icon.png) no-repeat 7px center}
.select-tit ul li.select-shop{background:url(/xin/images/home/shop_icon.png) no-repeat 7px center}
.hot-city .search-focus{position:relative;border:1px solid #e5e5e5;border-radius:4px;-webkit-border-radius:4px;height:28px;line-height:28px;width:360px;margin:10px auto}
.hot-city .search-focus input{display:block;border:none;background:none;font:normal 14px/28px "Microsoft YaHei";height:28px;color:#c5c5c5;text-indent:40px;width:360px}
.search-ico{display:block;background-position:0 8px;height:34px;width:18px;cursor:pointer}
.hot-city .search-focus .search-ico{background-position:-77px 3px;position:absolute;left:10px;top:2px}
.hot-city .search-focus .search-ico:hover{background-position:-39px 3px}
.city-blur{width:360px;border:1px solid #e5e5e5;border-radius:4px;-webkit-border-radius:4px;position:absolute;left:0;right:0;margin:auto;top:32px;z-index:10;background:#fff;display:none}
.city-blur a{display:block;width:330px;height:30px;padding:0 15px;color:#333!important;font:normal 14px/30px "Microsoft YaHei"}
.city-blur a:hover{background:#f2f2f2;color:#333!important}
.city-blur a em{float:right;color:#c5c5c5}
.CommonSearch{width:310px!important;height:30px!important;padding:0 15px!important;color:#333!important;font:normal 14px/30px "Microsoft YaHei"!important;display:block!important;background:white!important;border:0!important}
.CommonSearch.ui-state-focus{height:32px!important;line-height:32px!important;background:#f2f2f2!important;border-radius:0!important;padding-left:16px!important}
.ui-widget-content{background:white!important;}
.placeholder-em{
position: absolute;
color: #bfbfbf;
left: 0;
top: 0;
z-index: 2;
font-style: normal;
height: 18px;
width: 260px;
font: normal 14px/34px "Microsoft YaHei";
line-height: 18px;
padding: 8px 10px;
}
/* 20171212 头部新车添加一成购样式 */
.nav-list li .newcar {
position: relative;
display: none;
height: 34px;
line-height: 34px;
}
.nav-list li .h-yc{
position: absolute;
background-image: url(/www/img/newcar.png) ;
background-image: -webkit-image-set(url(/www/img/newcar.png) 1x, url(/www/img/newcar@2x.png) 2x);
background-repeat: no-repeat;
width: 34px;
height: 15px;
top: -7px;
right: -14px;
} | 0.270191 | 0.067332 |
@font-face {font-family: "iconfont";
src: url('//at.alicdn.com/t/font_h1aah82qzeabgldi.eot?t=1491019191730'); /* IE9*/
src: url('//at.alicdn.com/t/font_h1aah82qzeabgldi.eot?t=1491019191730#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('//at.alicdn.com/t/font_h1aah82qzeabgldi.woff?t=1491019191730') format('woff'), /* chrome, firefox */
url('//at.alicdn.com/t/font_h1aah82qzeabgldi.ttf?t=1491019191730') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
url('//at.alicdn.com/t/font_h1aah82qzeabgldi.svg?t=1491019191730#iconfont') format('svg'); /* iOS 4.1- */
}
.iconfont {
font-family:"iconfont" !important;
font-size:16px;
font-style:normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-tikuantubiao:before { content: "\e60a"; }
.icon-time1:before { content: "\e617"; }
.icon-service1:before { content: "\e607"; }
.icon-linechart:before { content: "\e85e"; }
.icon-kongxinhand:before { content: "\e6b0"; }
.icon-tax:before { content: "\e64f"; }
.icon-anquanzhongxin:before { content: "\e614"; }
.icon-company:before { content: "\e6c2"; }
.icon-money1:before { content: "\e638"; }
.icon-team:before { content: "\e6ce"; }
.icon-yujishuliang:before { content: "\e616"; }
.icon-homedetailcalculator:before { content: "\e8e7"; }
.icon-file:before { content: "\e720"; }
.icon-people:before { content: "\e627"; }
.icon-zengzhifuwu:before { content: "\e60c"; }
.icon-service:before { content: "\e648"; }
.icon-account-service:before { content: "\e6dd"; }
.icon-time:before { content: "\e615"; }
.icon-helidekefufenpei:before { content: "\e692"; }
.icon-toolmine:before { content: "\e691"; }
.icon-shihui:before { content: "\e649"; }
.icon-risk:before { content: "\e61a"; }
.icon-jizhangfuwu:before { content: "\e604"; }
.icon-icon_tool:before { content: "\e601"; }
.icon-gaoxiaobianjie:before { content: "\e630"; }
.icon-zengzhifuwu1:before { content: "\e619"; }
.icon-money:before { content: "\e636"; }
.icon-linghuo:before { content: "\e603"; }
.icon-hand-stop-o:before { content: "\e7e9"; }
.icon-investcosticon:before { content: "\e60b"; }
.icon-ldc-cooperation:before { content: "\e612"; }
.icon-Message-Smile:before { content: "\e85f"; } | src/assets/css/font_h1aah82qzeabgldi.css | @font-face {font-family: "iconfont";
src: url('//at.alicdn.com/t/font_h1aah82qzeabgldi.eot?t=1491019191730'); /* IE9*/
src: url('//at.alicdn.com/t/font_h1aah82qzeabgldi.eot?t=1491019191730#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('//at.alicdn.com/t/font_h1aah82qzeabgldi.woff?t=1491019191730') format('woff'), /* chrome, firefox */
url('//at.alicdn.com/t/font_h1aah82qzeabgldi.ttf?t=1491019191730') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
url('//at.alicdn.com/t/font_h1aah82qzeabgldi.svg?t=1491019191730#iconfont') format('svg'); /* iOS 4.1- */
}
.iconfont {
font-family:"iconfont" !important;
font-size:16px;
font-style:normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-tikuantubiao:before { content: "\e60a"; }
.icon-time1:before { content: "\e617"; }
.icon-service1:before { content: "\e607"; }
.icon-linechart:before { content: "\e85e"; }
.icon-kongxinhand:before { content: "\e6b0"; }
.icon-tax:before { content: "\e64f"; }
.icon-anquanzhongxin:before { content: "\e614"; }
.icon-company:before { content: "\e6c2"; }
.icon-money1:before { content: "\e638"; }
.icon-team:before { content: "\e6ce"; }
.icon-yujishuliang:before { content: "\e616"; }
.icon-homedetailcalculator:before { content: "\e8e7"; }
.icon-file:before { content: "\e720"; }
.icon-people:before { content: "\e627"; }
.icon-zengzhifuwu:before { content: "\e60c"; }
.icon-service:before { content: "\e648"; }
.icon-account-service:before { content: "\e6dd"; }
.icon-time:before { content: "\e615"; }
.icon-helidekefufenpei:before { content: "\e692"; }
.icon-toolmine:before { content: "\e691"; }
.icon-shihui:before { content: "\e649"; }
.icon-risk:before { content: "\e61a"; }
.icon-jizhangfuwu:before { content: "\e604"; }
.icon-icon_tool:before { content: "\e601"; }
.icon-gaoxiaobianjie:before { content: "\e630"; }
.icon-zengzhifuwu1:before { content: "\e619"; }
.icon-money:before { content: "\e636"; }
.icon-linghuo:before { content: "\e603"; }
.icon-hand-stop-o:before { content: "\e7e9"; }
.icon-investcosticon:before { content: "\e60b"; }
.icon-ldc-cooperation:before { content: "\e612"; }
.icon-Message-Smile:before { content: "\e85f"; } | 0.212232 | 0.075961 |
*{
text-align: center;
}
body{
margin: 0;
padding: 0;
min-height: 100vh;
background:#003e46;
display: flex;
justify-content: center;
align-items: center;
font-family: consolas;
}
.container{
width: 1000px;
position: relative;
display: flex;
justify-content: space-between;
}
.container .card{
position: relative;
cursor: pointer;
margin: 0 auto;
}
.container .card .face{
width: 300px;
height: 200px;
transition: 0.5s;
}
.container .card .face.face1{
position: relative;
background: #333;
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
transform: translateY(100px);
}
.container .card:hover .face.face1{
background: #00bfff;
transform: translateY(0);
}
.container .card .face.face1 .content{
opacity: 0.2;
transition: 0.5s;
}
.container .card:hover .face.face1 .content{
opacity: 1;
}
.container .card .face.face1 .content img{
max-width: 100px;
max-height: 100px;
display: flex;
left:0;
top:00;
transform: translate(0, 0);
}
.container .card .face.face1 .content h3{
margin: 10px 0 0;
padding: 0;
color: #fff;
text-align: center;
font-size: 1.5em;
}
.container .card .face.face2{
position: relative;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
box-sizing: border-box;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
transform: translateY(-100px);
}
.container .card:hover .face.face2{
transform: translateY(0);
}
.container .card .face.face2 .content p{
margin: 0;
padding: 0;
}
.container .card .face.face2 .content a{
margin: 15px 0 0;
display: inline-block;
text-decoration: none;
font-weight: 900;
color: #333;
padding: 5px;
border: 1px solid #333;
}
.container .card .face.face2 .content a:hover{
background: #333;
color: #fff;
}
.blocos{
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
#urna{
background: lightgray;
margin: 10px 0px 10px 0px;
padding: 6px;
border: 1px solid #666666;
border-radius: 5px;
box-shadow: 2px 2px 8px black;
}
#prefeito{
width: 250px;
height: 250px;
background: lightgray;
}
#nome{
display: none;
}
img{
width: 250px;
height: 250px;
margin-left: auto;
margin-right: auto;
display: none;
position: relative;
left:44%;
top:40%;
transform: translate(-50%, -50%);
}
#teclado{
margin-top: 5px;
width: 300px;
}
button{
box-shadow: 2px 2px 8px black;
}
.mais-maior{
max-width: 300px;
width: 350px;
font-size: 28pt;
background: white;
}
.btn-lgx{
width: 80px;
height: 70px;
font-size: 20pt;
margin: 5px;
}
.btn-lgx:focus-visible{
border: #eeeeee;
}
.centro{
display: flex;
justify-content: center;
align-content: center;
}
.fonte{
font-size: 10pt;
padding: 0;
font-weight: bold;
color: #000000;
}
@media(max-width: 992px){
img{
width: 220px;
}
}
@media(max-width: 767px){
#prefeito{
width: 300px;
height: 300px;
}
img{
height: 250px;
width: 250px;
display: block;
}
}
@media(max-width: 330px){
body{
width: 330px;
}
} | votacaoWEB/WebContent/urna.css | *{
text-align: center;
}
body{
margin: 0;
padding: 0;
min-height: 100vh;
background:#003e46;
display: flex;
justify-content: center;
align-items: center;
font-family: consolas;
}
.container{
width: 1000px;
position: relative;
display: flex;
justify-content: space-between;
}
.container .card{
position: relative;
cursor: pointer;
margin: 0 auto;
}
.container .card .face{
width: 300px;
height: 200px;
transition: 0.5s;
}
.container .card .face.face1{
position: relative;
background: #333;
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
transform: translateY(100px);
}
.container .card:hover .face.face1{
background: #00bfff;
transform: translateY(0);
}
.container .card .face.face1 .content{
opacity: 0.2;
transition: 0.5s;
}
.container .card:hover .face.face1 .content{
opacity: 1;
}
.container .card .face.face1 .content img{
max-width: 100px;
max-height: 100px;
display: flex;
left:0;
top:00;
transform: translate(0, 0);
}
.container .card .face.face1 .content h3{
margin: 10px 0 0;
padding: 0;
color: #fff;
text-align: center;
font-size: 1.5em;
}
.container .card .face.face2{
position: relative;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
box-sizing: border-box;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
transform: translateY(-100px);
}
.container .card:hover .face.face2{
transform: translateY(0);
}
.container .card .face.face2 .content p{
margin: 0;
padding: 0;
}
.container .card .face.face2 .content a{
margin: 15px 0 0;
display: inline-block;
text-decoration: none;
font-weight: 900;
color: #333;
padding: 5px;
border: 1px solid #333;
}
.container .card .face.face2 .content a:hover{
background: #333;
color: #fff;
}
.blocos{
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
#urna{
background: lightgray;
margin: 10px 0px 10px 0px;
padding: 6px;
border: 1px solid #666666;
border-radius: 5px;
box-shadow: 2px 2px 8px black;
}
#prefeito{
width: 250px;
height: 250px;
background: lightgray;
}
#nome{
display: none;
}
img{
width: 250px;
height: 250px;
margin-left: auto;
margin-right: auto;
display: none;
position: relative;
left:44%;
top:40%;
transform: translate(-50%, -50%);
}
#teclado{
margin-top: 5px;
width: 300px;
}
button{
box-shadow: 2px 2px 8px black;
}
.mais-maior{
max-width: 300px;
width: 350px;
font-size: 28pt;
background: white;
}
.btn-lgx{
width: 80px;
height: 70px;
font-size: 20pt;
margin: 5px;
}
.btn-lgx:focus-visible{
border: #eeeeee;
}
.centro{
display: flex;
justify-content: center;
align-content: center;
}
.fonte{
font-size: 10pt;
padding: 0;
font-weight: bold;
color: #000000;
}
@media(max-width: 992px){
img{
width: 220px;
}
}
@media(max-width: 767px){
#prefeito{
width: 300px;
height: 300px;
}
img{
height: 250px;
width: 250px;
display: block;
}
}
@media(max-width: 330px){
body{
width: 330px;
}
} | 0.335677 | 0.064535 |
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* ------------------------------ General ------------------------------ */
*, *::before, *::after {
box-sizing: border-box;
}
@font-face {
font-family: 'MaximumSecurity';
src: url('../fonts/MAXIMUMSECURITY.woff');
font-weight: normal;
font-style: normal;
}
body {
background-image: url(/images/omg.png);
background-color: #F1F1F1;
color: #6C6D6F;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
}
*::selection {
background: #666;
color: #eee;
}
*::-moz-selection {
background: #666;
color: #eee;
}
h1, h2, h3, h4, h5, h6 {
color: #2A2D33;
font-family: 'MaximumSecurity';
font-weight: 300;
}
h4, h5, h6 {
font-family: 'Arial', sans-serif;
}
a {
color: #6AB2EE;
text-decoration: none;
-webkit-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-moz-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-ms-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
}
a:link {
color: #6AB2EE;
text-decoration: none;
}
a:visited {
color: #6AB2EE;
text-decoration: none;
}
a:hover {
color: #A5D1F5;
text-decoration: none;
}
a:active {
color: #6AB2EE;
text-decoration: none;
}
/* ------------------------------ Error ------------------------------ */
body.error {
text-align: center;
}
body.error section h1 {
color: #ff3dab;
font-size: 3rem;
margin: 20px 0;
text-transform: uppercase;
}
body.error h2 {
color: #eee;
font-size: 2.2rem;
margin-bottom: 20px;
}
/* ------------------------------ Header ------------------------------ */
body > header {
position: relative;
width: 100%;
background: #2F323A;
z-index: 2;
}
body > header h1 {
float: left;
margin-right: 15px;
color: #959CAC;
letter-spacing: 2px;
text-transform: uppercase;
}
body > header h1 a,
body > header h1 a:link,
body > header h1 a:visited,
body > header h1 a:hover,
body > header h1 a:active {
color: #959CAC;
font-size: 1.8rem;
}
body > header h1 a span {
margin-left: -1px;
opacity: .25;
-webkit-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-moz-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-ms-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
}
body > header h1 a:hover span {
opacity: 1;
}
body > header > div {
position: relative;
margin: 0 auto;
max-width: 800px;
height: 60px;
line-height: 60px;
}
body > header nav {
text-align: right;
}
body > header nav a#live {
color: #FFFF33;
font-family: 'MaximumSecurity';
font-size: 1.8rem;
text-transform: uppercase;
}
body > header nav a#live:hover {
color: #FFF;
}
body > header .token {
margin-top: 18px;
display: block;
float: right;
}
/* ------------------------------ Uploader ------------------------------ */
.uploader, #preview {
display: block;
position: relative;
margin: 10px 0;
min-height: 42px;
border: 1px solid #D5D5D5;
border-radius: 4px;
background: #FFF;
background-clip: padding-box;
overflow: hidden;
}
#photo-picker {
display: block;
position: absolute;
top: 50%;
left: 25%;
margin: 0 auto 0;
width: 50%;
-moz-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-o-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
#preview {
display: none;
}
#preview > canvas {
display: block;
margin: 0 auto;
}
#photo {
visibility: hidden;
}
/* ------------------------------ Buttons ------------------------------ */
#reset {
background-color: #f1f1f1;
}
.button {
display: block;
margin: 0;
padding: 0 20px;
border: 1px solid #6CB5F4;
border-radius: 2.3px;
font-family: 'MaximumSecurity';
line-height: 2.3rem;
background: #6CB5F4;
color: #FFF;
cursor: pointer;
font-size: 1.9rem;
font-weight: 500;
padding: 5px 10px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1), background-color .24s cubic-bezier(0.645, 0.045, 0.355, 1), border-color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-moz-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1), background-color .24s cubic-bezier(0.645, 0.045, 0.355, 1), border-color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-ms-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1), background-color .24s cubic-bezier(0.645, 0.045, 0.355, 1), border-color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1), background-color .24s cubic-bezier(0.645, 0.045, 0.355, 1), border-color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1), background-color .24s cubic-bezier(0.645, 0.045, 0.355, 1), border-color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.button,
.button:link,
.button:visited,
.button:hover,
.button:active {
color: #FFF;
}
.button:hover {
border-color: #0079FF;
background: #0079FF;
}
.button.subtle {
background: transparent;
border-color: #D8D8D8;
color: #6C6D6F;
}
.button.subtle:hover {
background: transparent;
border-color: #D8D8D8;
color: #2A2D33;
}
.button[disabled] {
background: #D8D8D8;
border-color: #D8D8D8;
color: #F7F7F7;
}
.button-row {
overflow: hidden;
text-align: right;
}
.button-row .button {
display: inline-block;
}
.button-row .button + .button {
margin-left: 15px;
}
/* ------------------------------ Structure ------------------------------ */
.wrapper {
position: relative;
margin: 0 auto;
max-width: 800px;
padding-bottom: 100px;
}
section {
margin: 0;
max-width: 900px;
padding: 10px 0 0;
}
section h3 {
color: #aaa;
text-shadow: #111 1px 1px 0;
margin: 25px 0 15px;
font-size: 2.3rem;
text-transform: uppercase;
}
/* ------------------------------ Result ------------------------------ */
.result {
margin: 20px 0;
}
.result img {
display: block;
}
.replay {
float: left;
}
.tumblr {
display: inline-block;
float: right;
font-size: 1rem;
line-height: 1.7rem;
width: 300px;
}
.status-message-row {
margin: 20px 0;
}
.status-message-row a {
font-size: 1.5rem;
}
/* ------------------------------ Services Added ------------------------------ */
.services-added {
padding: 5px;
min-height: 42px;
border-radius: 4px;
background: rgba(1, 1, 1, 0.7);
font-size: .85rem;
}
.services-added li {
display: inline-block;
position: relative;
margin: 0 5px 5px 0;
padding: 0 15px;
height: 30px;
line-height: 30px;
border-radius: 4px;
background: #36d6c3;
color: #113632;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-moz-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-ms-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.services-added.editable li {
padding-right: 36px;
}
.services-added.editable li::after {
content: '';
display: block;
position: absolute;
top: 9px;
right: 15px;
width: 12px;
height: 12px;
background: transparent url(/img/close.svg) center center no-repeat;
background-size: 100%;
}
.services-added-container {
left: 0;
right: 0;
top: 0;
position: fixed;
z-index: 1;
}
.services-added-container .placeholder {
position: absolute;
top: 14px;
left: 15px;
margin: 0;
padding: 0;
color: #eee;
font-size: 1em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: opacity .24s .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-moz-transition: opacity .24s .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-ms-transition: opacity .24s .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: opacity .24s .24s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: opacity .24s .24s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.services-added.active + .placeholder {
display: none;
}
.services-added.active.alert {
background-color: #ce2f7e;
}
.services-added.active.alert li {
opacity: 0;
}
.services-added.active.alert + .placeholder {
display: block;
opacity: 1;
}
/* ------------------------------ Steps ------------------------------ */
section.step {
position: relative;
margin-top: -10px;
padding-left: 62px;
}
section.step::before {
content: '';
display: block;
position: absolute;
top: 0;
left: 10px;
bottom: 0;
height: 100%;
width: 1px;
background: #D5D5D5;
}
section.step::after {
content: '';
display: block;
position: absolute;
top: 40px;
left: -1px;
width: 24px;
height: 24px;
border: 4px solid #F7F7F7;
border-radius: 50%;
background: #F7F7F7 url(/img/step.svg) center center no-repeat;
background-size: 100%;
}
section.step.no-icon::after {
display: none;
}
/* ------------------------------ Image Preview ------------------------------ */
.image-preview {
display: block;
height: 50px;
width: 50px;
border-radius: 50%;
overflow: hidden;
}
.image-preview > img {
display: block;
height: 50px;
width: 50px;
}
/* ------------------------------ Service List ------------------------------ */
#service-list {
margin: 20px 0;
padding: 0;
list-style-type: none;
}
#service-list .loading {
color: #fff;
font-family: 'MaximumSecurity';
font-size: 2rem;
}
.service-list-item {
display: block;
margin: 5px 8px;
border-radius: 3px;
background: rgba(255, 255, 255, 0.4);
cursor: not-allowed;
overflow: hidden;
}
.service-list-item .image-preview {
float: left;
margin: 5px 10px;
opacity: .66;
}
.service-list-item h4 {
font-size: 1.2rem;
line-height: 1.2rem;
margin: 20px 15px 0 0;
opacity: .66;
}
.service-list-item small {
float: right;
font-size: 1em;
font-weight: 700;
font-variant: small-caps;
margin-right: 7px;
}
.service-list-item .description {
padding: 15px;
background: #F7F7F7;
clear: both;
color: #595A5C;
font-size: .85rem;
opacity: .66;
}
.service-list-item.online {
background: #FFF;
cursor: pointer;
}
.service-list-item.online:hover,
.service-list-item.online.supports:hover {
background-color: #88fbdc;
}
.service-list-item.online.supports {
background-color: #c0feca;
}
.service-list-item.online .image-preview,
.service-list-item.online h4,
.service-list-item.online .description {
opacity: 1;
}
/* ------------------------------ Mobile View ------------------------------ */
@media only screen and (max-width: 680px) {
header h1 {
padding-left: 10px;
}
#live {
padding-right: 10px;
}
.result img {
margin: 0 auto;
width: 100%;
}
.uploader {
margin-right: 10px;
}
.button-row {
padding: 0 10px;
}
.services-added {
min-height: 60px;
}
.final {
padding: 10px;
}
}
@media only screen and (max-width: 680px) {
.services-added {
min-height: 50px;
}
.services-added-container .placeholder {
font-size: 0.8rem;
font-weight: 100;
}
.services-added li {
margin: 0 2px 2px 0;
}
.tumblr {
margin-top: 20px;
}
.service-list-item h4 {
font-size: 0.9rem;
margin-top: 15px;
}
} | public/css/main.css | html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* ------------------------------ General ------------------------------ */
*, *::before, *::after {
box-sizing: border-box;
}
@font-face {
font-family: 'MaximumSecurity';
src: url('../fonts/MAXIMUMSECURITY.woff');
font-weight: normal;
font-style: normal;
}
body {
background-image: url(/images/omg.png);
background-color: #F1F1F1;
color: #6C6D6F;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
}
*::selection {
background: #666;
color: #eee;
}
*::-moz-selection {
background: #666;
color: #eee;
}
h1, h2, h3, h4, h5, h6 {
color: #2A2D33;
font-family: 'MaximumSecurity';
font-weight: 300;
}
h4, h5, h6 {
font-family: 'Arial', sans-serif;
}
a {
color: #6AB2EE;
text-decoration: none;
-webkit-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-moz-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-ms-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
}
a:link {
color: #6AB2EE;
text-decoration: none;
}
a:visited {
color: #6AB2EE;
text-decoration: none;
}
a:hover {
color: #A5D1F5;
text-decoration: none;
}
a:active {
color: #6AB2EE;
text-decoration: none;
}
/* ------------------------------ Error ------------------------------ */
body.error {
text-align: center;
}
body.error section h1 {
color: #ff3dab;
font-size: 3rem;
margin: 20px 0;
text-transform: uppercase;
}
body.error h2 {
color: #eee;
font-size: 2.2rem;
margin-bottom: 20px;
}
/* ------------------------------ Header ------------------------------ */
body > header {
position: relative;
width: 100%;
background: #2F323A;
z-index: 2;
}
body > header h1 {
float: left;
margin-right: 15px;
color: #959CAC;
letter-spacing: 2px;
text-transform: uppercase;
}
body > header h1 a,
body > header h1 a:link,
body > header h1 a:visited,
body > header h1 a:hover,
body > header h1 a:active {
color: #959CAC;
font-size: 1.8rem;
}
body > header h1 a span {
margin-left: -1px;
opacity: .25;
-webkit-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-moz-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-ms-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
}
body > header h1 a:hover span {
opacity: 1;
}
body > header > div {
position: relative;
margin: 0 auto;
max-width: 800px;
height: 60px;
line-height: 60px;
}
body > header nav {
text-align: right;
}
body > header nav a#live {
color: #FFFF33;
font-family: 'MaximumSecurity';
font-size: 1.8rem;
text-transform: uppercase;
}
body > header nav a#live:hover {
color: #FFF;
}
body > header .token {
margin-top: 18px;
display: block;
float: right;
}
/* ------------------------------ Uploader ------------------------------ */
.uploader, #preview {
display: block;
position: relative;
margin: 10px 0;
min-height: 42px;
border: 1px solid #D5D5D5;
border-radius: 4px;
background: #FFF;
background-clip: padding-box;
overflow: hidden;
}
#photo-picker {
display: block;
position: absolute;
top: 50%;
left: 25%;
margin: 0 auto 0;
width: 50%;
-moz-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-o-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
#preview {
display: none;
}
#preview > canvas {
display: block;
margin: 0 auto;
}
#photo {
visibility: hidden;
}
/* ------------------------------ Buttons ------------------------------ */
#reset {
background-color: #f1f1f1;
}
.button {
display: block;
margin: 0;
padding: 0 20px;
border: 1px solid #6CB5F4;
border-radius: 2.3px;
font-family: 'MaximumSecurity';
line-height: 2.3rem;
background: #6CB5F4;
color: #FFF;
cursor: pointer;
font-size: 1.9rem;
font-weight: 500;
padding: 5px 10px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1), background-color .24s cubic-bezier(0.645, 0.045, 0.355, 1), border-color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-moz-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1), background-color .24s cubic-bezier(0.645, 0.045, 0.355, 1), border-color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-ms-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1), background-color .24s cubic-bezier(0.645, 0.045, 0.355, 1), border-color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1), background-color .24s cubic-bezier(0.645, 0.045, 0.355, 1), border-color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: color .24s cubic-bezier(0.645, 0.045, 0.355, 1), background-color .24s cubic-bezier(0.645, 0.045, 0.355, 1), border-color .24s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.button,
.button:link,
.button:visited,
.button:hover,
.button:active {
color: #FFF;
}
.button:hover {
border-color: #0079FF;
background: #0079FF;
}
.button.subtle {
background: transparent;
border-color: #D8D8D8;
color: #6C6D6F;
}
.button.subtle:hover {
background: transparent;
border-color: #D8D8D8;
color: #2A2D33;
}
.button[disabled] {
background: #D8D8D8;
border-color: #D8D8D8;
color: #F7F7F7;
}
.button-row {
overflow: hidden;
text-align: right;
}
.button-row .button {
display: inline-block;
}
.button-row .button + .button {
margin-left: 15px;
}
/* ------------------------------ Structure ------------------------------ */
.wrapper {
position: relative;
margin: 0 auto;
max-width: 800px;
padding-bottom: 100px;
}
section {
margin: 0;
max-width: 900px;
padding: 10px 0 0;
}
section h3 {
color: #aaa;
text-shadow: #111 1px 1px 0;
margin: 25px 0 15px;
font-size: 2.3rem;
text-transform: uppercase;
}
/* ------------------------------ Result ------------------------------ */
.result {
margin: 20px 0;
}
.result img {
display: block;
}
.replay {
float: left;
}
.tumblr {
display: inline-block;
float: right;
font-size: 1rem;
line-height: 1.7rem;
width: 300px;
}
.status-message-row {
margin: 20px 0;
}
.status-message-row a {
font-size: 1.5rem;
}
/* ------------------------------ Services Added ------------------------------ */
.services-added {
padding: 5px;
min-height: 42px;
border-radius: 4px;
background: rgba(1, 1, 1, 0.7);
font-size: .85rem;
}
.services-added li {
display: inline-block;
position: relative;
margin: 0 5px 5px 0;
padding: 0 15px;
height: 30px;
line-height: 30px;
border-radius: 4px;
background: #36d6c3;
color: #113632;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-moz-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-ms-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: opacity .24s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.services-added.editable li {
padding-right: 36px;
}
.services-added.editable li::after {
content: '';
display: block;
position: absolute;
top: 9px;
right: 15px;
width: 12px;
height: 12px;
background: transparent url(/img/close.svg) center center no-repeat;
background-size: 100%;
}
.services-added-container {
left: 0;
right: 0;
top: 0;
position: fixed;
z-index: 1;
}
.services-added-container .placeholder {
position: absolute;
top: 14px;
left: 15px;
margin: 0;
padding: 0;
color: #eee;
font-size: 1em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: opacity .24s .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-moz-transition: opacity .24s .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-ms-transition: opacity .24s .24s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: opacity .24s .24s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: opacity .24s .24s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.services-added.active + .placeholder {
display: none;
}
.services-added.active.alert {
background-color: #ce2f7e;
}
.services-added.active.alert li {
opacity: 0;
}
.services-added.active.alert + .placeholder {
display: block;
opacity: 1;
}
/* ------------------------------ Steps ------------------------------ */
section.step {
position: relative;
margin-top: -10px;
padding-left: 62px;
}
section.step::before {
content: '';
display: block;
position: absolute;
top: 0;
left: 10px;
bottom: 0;
height: 100%;
width: 1px;
background: #D5D5D5;
}
section.step::after {
content: '';
display: block;
position: absolute;
top: 40px;
left: -1px;
width: 24px;
height: 24px;
border: 4px solid #F7F7F7;
border-radius: 50%;
background: #F7F7F7 url(/img/step.svg) center center no-repeat;
background-size: 100%;
}
section.step.no-icon::after {
display: none;
}
/* ------------------------------ Image Preview ------------------------------ */
.image-preview {
display: block;
height: 50px;
width: 50px;
border-radius: 50%;
overflow: hidden;
}
.image-preview > img {
display: block;
height: 50px;
width: 50px;
}
/* ------------------------------ Service List ------------------------------ */
#service-list {
margin: 20px 0;
padding: 0;
list-style-type: none;
}
#service-list .loading {
color: #fff;
font-family: 'MaximumSecurity';
font-size: 2rem;
}
.service-list-item {
display: block;
margin: 5px 8px;
border-radius: 3px;
background: rgba(255, 255, 255, 0.4);
cursor: not-allowed;
overflow: hidden;
}
.service-list-item .image-preview {
float: left;
margin: 5px 10px;
opacity: .66;
}
.service-list-item h4 {
font-size: 1.2rem;
line-height: 1.2rem;
margin: 20px 15px 0 0;
opacity: .66;
}
.service-list-item small {
float: right;
font-size: 1em;
font-weight: 700;
font-variant: small-caps;
margin-right: 7px;
}
.service-list-item .description {
padding: 15px;
background: #F7F7F7;
clear: both;
color: #595A5C;
font-size: .85rem;
opacity: .66;
}
.service-list-item.online {
background: #FFF;
cursor: pointer;
}
.service-list-item.online:hover,
.service-list-item.online.supports:hover {
background-color: #88fbdc;
}
.service-list-item.online.supports {
background-color: #c0feca;
}
.service-list-item.online .image-preview,
.service-list-item.online h4,
.service-list-item.online .description {
opacity: 1;
}
/* ------------------------------ Mobile View ------------------------------ */
@media only screen and (max-width: 680px) {
header h1 {
padding-left: 10px;
}
#live {
padding-right: 10px;
}
.result img {
margin: 0 auto;
width: 100%;
}
.uploader {
margin-right: 10px;
}
.button-row {
padding: 0 10px;
}
.services-added {
min-height: 60px;
}
.final {
padding: 10px;
}
}
@media only screen and (max-width: 680px) {
.services-added {
min-height: 50px;
}
.services-added-container .placeholder {
font-size: 0.8rem;
font-weight: 100;
}
.services-added li {
margin: 0 2px 2px 0;
}
.tumblr {
margin-top: 20px;
}
.service-list-item h4 {
font-size: 0.9rem;
margin-top: 15px;
}
} | 0.434461 | 0.092074 |
body {
font-family: -apple-system, 'Helvetica Neue', 'Arial', 'Tahoma';
margin: 0;
display: flex;
}
* {
box-sizing: border-box;
}
body > .train {
flex-wrap: wrap;
width: 100vw;
transition: filter 1s ease-in-out;
}
body > .train:not(:first-of-type) {
border-left: thin solid black;
}
@media screen and (min-width:600px) {
.train:not(:only-of-type) {
max-width: 50vw;
}
}
.flex > * {
flex: 0 0 auto;
}
.train > section:first-child {
position: sticky;
position: -webkit-sticky;
top: 0;
background-color: white;
flex: 1 0 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
box-sizing: border-box;
z-index: 10;
border-bottom: thin solid #555;
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
.train > section:first-child {
-webkit-backdrop-filter: blur(0.8em);
background-color: rgba(255,255,255,0.6);
}
}
input[name=name]:invalid {
background-color: mistyrose;
}
input[name=name] {
appearance: none;
-webkit-appearance: none;
font-size: 1.5rem;
background-color: transparent;
border: none;
max-width: 50vw;
}
.train > section:first-child > * {
flex: 0 0 auto;
}
.button {
touch-action: manipulation;
appearance: none;
-webkit-appearance: none;
margin: 0;
height: 5rem;
width: 5rem;
border-radius: 50%;
border: none;
display: block;
cursor: pointer;
padding: 0;
box-sizing: border-box;
transform: scale(0.9);
transition: transform 0.3s ease-in-out;
background-position: center;
background-repeat: no-repeat;
}
.button.repeater {
background-repeat: repeat-x;
}
.button:focus {
outline: none;
}
.button:hover {
opacity: 1;
transform: scale(0.95);
}
.button:checked, .button:active {
opacity: 1;
transform: scale(1);
}
.button + label {
touch-action: manipulation;
display: block;
text-align: center;
border-radius: 0.3em;
margin-top: 1vh;
}
.stop {
background-image: url(stop.svg);
}
.forward {
background-image: url(forward.svg);
}
.reverse {
background-image: url(reverse.svg);
}
.sound {
background-image: url(sound.svg);
background-color: gold;
}
.refill {
background-color: darkblue;
}
.green {
background-color: green;
}
.green:checked + label {
background-color: green;
color: white;
}
.blue {
background-color: blue;
}
.blue:checked + label {
background-color: blue;
color: white;
}
.red, input[name^=direction].stop {
background-color: red;
/* border: thin darkred solid;*/
}
.red:checked + label, input[name^=direction].stop:checked + label {
background-color: red;
color: white;
}
.yellow {
background-color: yellow;
}
.yellow:checked + label {
background-color: yellow;
}
.orange {
background-color: orange;
}
.orange:checked + label {
background-color: orange;
color: white;
}
.purple {
background-color: purple;
}
.purple:checked + label {
background-color: purple;
color: white;
}
.pink {
background-color: pink;
}
.pink:checked + label {
background-color: pink;
}
.flex {
display: flex;
}
section {
padding: 1rem 0 1rem 1rem;
padding: 1.5vh;
}
.lights {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
section > div {
padding: 0 0.3em;
}
.lights .button {
background-image: url(light.svg);
}
.motor {
flex: 1 0;
flex-wrap: wrap;
}
input[type=range] {
-webkit-appearance: none;
background-color: darkgreen;
border-radius: 1em;
}
input[name^=direction] {
background-color: grey;
}
input[name^=direction]:checked {
background-color: darkgreen;
}
input[name^=direction]:checked + label {
background-color: darkgreen;
color: white;
}
input[name^=color] {
border: thin solid #aaa;
}
input[name^=color] + label {
text-transform: capitalize;
}
input.off + label {
border-top-right-radius: 0.3em;
border-bottom-right-radius: 0.3em;
border-right: thin solid #333;
}
input.off:checked + label {
background-color: red;
color: white;
}
input.throttle {
flex: 1 0 100%;
margin-top: 2em;
display: block;
width: 100%;
}
header.flex {
align-items: center;
background-color: #eef;
}
header.flex > h3 {
font-size: 3vh;
padding: 0.5rem 0 0.5rem 1rem;
font-weight: 500;
margin: 0;
flex: 1 0;
}
header input[type=checkbox] {
display: none;
}
header label {
padding: 0 0.5em;
}
label[for] {
cursor: pointer;
}
header input:checked + label {
background-color: yellow;
}
@keyframes moving {
0% {
background-position: 50% 50%;
}
100% {
background-position: 450% 50%;
}
}
input[name^=direction].stop:checked {
background-color: red;
animation: none;
}
input[name^=direction]:checked {
animation: moving 0.65s infinite;
animation-timing-function: ease-out;
}
input[name^=direction].reverse:checked {
animation-direction: reverse;
animation-timing-function: ease-in;
/* animation-timing-function: linear;*/
}
.freeze {
filter: grayscale(1);
}
p {
text-align: center;
font-size: 1.5rem;
width: 100vw;
}
:root {
--width: 50px;
--height: 20px;
/* --switch-color: rgb(165, 175, 255);*/
--switch-color: darkblue;
}
/*switch*/
input[type=checkbox].switch {
max-height: 0;
max-width: 0;
opacity: 0;
}
input[type=checkbox].switch + label {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
display: inline-block;
position: relative;
box-shadow: inset 0 0 0px 1px #d5d5d5;
text-indent: calc(var(--width) + 5px);
white-space: nowrap;
height: var(--height);
width: var(--width);
border-radius: calc(var(--height) / 2);
padding: 0;
background-color: white;
}
input[type=checkbox].switch + label::before {
background: transparent;
content: '';
position: absolute;
display: block;
height: var(--height);
width: var(--height);
top: 0;
left: 0;
border-radius: calc(var(--height) / 2);
transition: .25s ease-in-out;
}
input[type=checkbox].switch + label::after {
content: '';
position: absolute;
display: block;
height: var(--height);
width: var(--height);
top: 0;
left: 0px;
border-radius: calc(var(--height) / 2);
background: white;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2), 0 2px 4px rgba(0, 0, 0, .2);
transition: .25s ease-in-out;
}
input[type=checkbox].switch:active + label::after {
background: #ddd;
}
input[type=checkbox].switch:checked + label::before {
width: var(--width);
background: var(--switch-color);
}
input[type=checkbox].switch:checked + label::after {
left: calc(var(--width) - var(--height));
box-shadow: inset 0 0 0 1px var(--switch-color), 0 2px 4px rgba(0, 0, 0, .2);
} | public/index.css | body {
font-family: -apple-system, 'Helvetica Neue', 'Arial', 'Tahoma';
margin: 0;
display: flex;
}
* {
box-sizing: border-box;
}
body > .train {
flex-wrap: wrap;
width: 100vw;
transition: filter 1s ease-in-out;
}
body > .train:not(:first-of-type) {
border-left: thin solid black;
}
@media screen and (min-width:600px) {
.train:not(:only-of-type) {
max-width: 50vw;
}
}
.flex > * {
flex: 0 0 auto;
}
.train > section:first-child {
position: sticky;
position: -webkit-sticky;
top: 0;
background-color: white;
flex: 1 0 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
box-sizing: border-box;
z-index: 10;
border-bottom: thin solid #555;
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
.train > section:first-child {
-webkit-backdrop-filter: blur(0.8em);
background-color: rgba(255,255,255,0.6);
}
}
input[name=name]:invalid {
background-color: mistyrose;
}
input[name=name] {
appearance: none;
-webkit-appearance: none;
font-size: 1.5rem;
background-color: transparent;
border: none;
max-width: 50vw;
}
.train > section:first-child > * {
flex: 0 0 auto;
}
.button {
touch-action: manipulation;
appearance: none;
-webkit-appearance: none;
margin: 0;
height: 5rem;
width: 5rem;
border-radius: 50%;
border: none;
display: block;
cursor: pointer;
padding: 0;
box-sizing: border-box;
transform: scale(0.9);
transition: transform 0.3s ease-in-out;
background-position: center;
background-repeat: no-repeat;
}
.button.repeater {
background-repeat: repeat-x;
}
.button:focus {
outline: none;
}
.button:hover {
opacity: 1;
transform: scale(0.95);
}
.button:checked, .button:active {
opacity: 1;
transform: scale(1);
}
.button + label {
touch-action: manipulation;
display: block;
text-align: center;
border-radius: 0.3em;
margin-top: 1vh;
}
.stop {
background-image: url(stop.svg);
}
.forward {
background-image: url(forward.svg);
}
.reverse {
background-image: url(reverse.svg);
}
.sound {
background-image: url(sound.svg);
background-color: gold;
}
.refill {
background-color: darkblue;
}
.green {
background-color: green;
}
.green:checked + label {
background-color: green;
color: white;
}
.blue {
background-color: blue;
}
.blue:checked + label {
background-color: blue;
color: white;
}
.red, input[name^=direction].stop {
background-color: red;
/* border: thin darkred solid;*/
}
.red:checked + label, input[name^=direction].stop:checked + label {
background-color: red;
color: white;
}
.yellow {
background-color: yellow;
}
.yellow:checked + label {
background-color: yellow;
}
.orange {
background-color: orange;
}
.orange:checked + label {
background-color: orange;
color: white;
}
.purple {
background-color: purple;
}
.purple:checked + label {
background-color: purple;
color: white;
}
.pink {
background-color: pink;
}
.pink:checked + label {
background-color: pink;
}
.flex {
display: flex;
}
section {
padding: 1rem 0 1rem 1rem;
padding: 1.5vh;
}
.lights {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
section > div {
padding: 0 0.3em;
}
.lights .button {
background-image: url(light.svg);
}
.motor {
flex: 1 0;
flex-wrap: wrap;
}
input[type=range] {
-webkit-appearance: none;
background-color: darkgreen;
border-radius: 1em;
}
input[name^=direction] {
background-color: grey;
}
input[name^=direction]:checked {
background-color: darkgreen;
}
input[name^=direction]:checked + label {
background-color: darkgreen;
color: white;
}
input[name^=color] {
border: thin solid #aaa;
}
input[name^=color] + label {
text-transform: capitalize;
}
input.off + label {
border-top-right-radius: 0.3em;
border-bottom-right-radius: 0.3em;
border-right: thin solid #333;
}
input.off:checked + label {
background-color: red;
color: white;
}
input.throttle {
flex: 1 0 100%;
margin-top: 2em;
display: block;
width: 100%;
}
header.flex {
align-items: center;
background-color: #eef;
}
header.flex > h3 {
font-size: 3vh;
padding: 0.5rem 0 0.5rem 1rem;
font-weight: 500;
margin: 0;
flex: 1 0;
}
header input[type=checkbox] {
display: none;
}
header label {
padding: 0 0.5em;
}
label[for] {
cursor: pointer;
}
header input:checked + label {
background-color: yellow;
}
@keyframes moving {
0% {
background-position: 50% 50%;
}
100% {
background-position: 450% 50%;
}
}
input[name^=direction].stop:checked {
background-color: red;
animation: none;
}
input[name^=direction]:checked {
animation: moving 0.65s infinite;
animation-timing-function: ease-out;
}
input[name^=direction].reverse:checked {
animation-direction: reverse;
animation-timing-function: ease-in;
/* animation-timing-function: linear;*/
}
.freeze {
filter: grayscale(1);
}
p {
text-align: center;
font-size: 1.5rem;
width: 100vw;
}
:root {
--width: 50px;
--height: 20px;
/* --switch-color: rgb(165, 175, 255);*/
--switch-color: darkblue;
}
/*switch*/
input[type=checkbox].switch {
max-height: 0;
max-width: 0;
opacity: 0;
}
input[type=checkbox].switch + label {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
display: inline-block;
position: relative;
box-shadow: inset 0 0 0px 1px #d5d5d5;
text-indent: calc(var(--width) + 5px);
white-space: nowrap;
height: var(--height);
width: var(--width);
border-radius: calc(var(--height) / 2);
padding: 0;
background-color: white;
}
input[type=checkbox].switch + label::before {
background: transparent;
content: '';
position: absolute;
display: block;
height: var(--height);
width: var(--height);
top: 0;
left: 0;
border-radius: calc(var(--height) / 2);
transition: .25s ease-in-out;
}
input[type=checkbox].switch + label::after {
content: '';
position: absolute;
display: block;
height: var(--height);
width: var(--height);
top: 0;
left: 0px;
border-radius: calc(var(--height) / 2);
background: white;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2), 0 2px 4px rgba(0, 0, 0, .2);
transition: .25s ease-in-out;
}
input[type=checkbox].switch:active + label::after {
background: #ddd;
}
input[type=checkbox].switch:checked + label::before {
width: var(--width);
background: var(--switch-color);
}
input[type=checkbox].switch:checked + label::after {
left: calc(var(--width) - var(--height));
box-shadow: inset 0 0 0 1px var(--switch-color), 0 2px 4px rgba(0, 0, 0, .2);
} | 0.513912 | 0.079246 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#app {
width: 100vw;
height: 100vh;
font-family: 'Exo 2', sans-serif;
background-color: #c4c4c4;
display: flex;
align-items: center;
justify-content: center;
}
.marvin-index {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
border-radius: 50px;
width: 95%;
height: 95%;
}
.box-left {
width: 350px;
height: 100%;
background-color: #e6e6e6;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: space-between;
border-top-left-radius: 3em;
border-bottom-left-radius: 3em;
padding: 2.5em;
}
.box-left .github {
display: flex;
flex-direction: row;
align-items: center;
}
.box-left .github img {
width: 50px;
}
.box-left .github a {
margin-left: .5rem;
text-decoration: none;
color: black;
}
.box-left .github .username {
font-size: 1.2rem;
}
.box-left .description {
font-size: 1rem;
}
.box-left .description .logo {
font-weight: bold;
}
.box-left .description .logo a {
text-decoration: none;
color: black;
}
.box-right {
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background-color: #ffffff;
border-top-right-radius: 3em;
border-bottom-right-radius: 3em;
}
.cards-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: space-evenly;
}
.card {
padding: 1em;
margin: 1em 1em 1em 1em;
background-color: #eeeeee;
border-radius: 2em;
display: flex;
flex-direction: column;
align-items: center;
transition: 1s;
}
.card:hover {
transform: translateY(-5px);
}
.card a {
padding: 1em;
color: #fff;
background-color: rgb(0,219,201);
font-weight: bold;
text-decoration: none;
border-radius: 1em;
transition: 1s;
}
.card a:hover {
background-color: rgb(0, 189, 173);
}
.card img {
width: 200px;
border-radius: .8em;
padding: .5em;
} | assets/css/marvin-index-styles.css | * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#app {
width: 100vw;
height: 100vh;
font-family: 'Exo 2', sans-serif;
background-color: #c4c4c4;
display: flex;
align-items: center;
justify-content: center;
}
.marvin-index {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
border-radius: 50px;
width: 95%;
height: 95%;
}
.box-left {
width: 350px;
height: 100%;
background-color: #e6e6e6;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: space-between;
border-top-left-radius: 3em;
border-bottom-left-radius: 3em;
padding: 2.5em;
}
.box-left .github {
display: flex;
flex-direction: row;
align-items: center;
}
.box-left .github img {
width: 50px;
}
.box-left .github a {
margin-left: .5rem;
text-decoration: none;
color: black;
}
.box-left .github .username {
font-size: 1.2rem;
}
.box-left .description {
font-size: 1rem;
}
.box-left .description .logo {
font-weight: bold;
}
.box-left .description .logo a {
text-decoration: none;
color: black;
}
.box-right {
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background-color: #ffffff;
border-top-right-radius: 3em;
border-bottom-right-radius: 3em;
}
.cards-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: space-evenly;
}
.card {
padding: 1em;
margin: 1em 1em 1em 1em;
background-color: #eeeeee;
border-radius: 2em;
display: flex;
flex-direction: column;
align-items: center;
transition: 1s;
}
.card:hover {
transform: translateY(-5px);
}
.card a {
padding: 1em;
color: #fff;
background-color: rgb(0,219,201);
font-weight: bold;
text-decoration: none;
border-radius: 1em;
transition: 1s;
}
.card a:hover {
background-color: rgb(0, 189, 173);
}
.card img {
width: 200px;
border-radius: .8em;
padding: .5em;
} | 0.55917 | 0.155848 |
.ThemeOfficeMenu,.ThemeOfficeSubMenuTable
{
font-family: verdana, arial, sans-serif;
font-size: 13px;
padding: 0;
white-space: nowrap;
cursor: default;
}
.ThemeOfficeSubMenu
{
position: absolute;
visibility: hidden;
overflow: hidden;
padding: 0px;
border: 0px;
background-color: transparent;
}
.ThemeOfficeSubMenuShadow
{
z-index: -1;
position: absolute;
top: 9px;
left: 9px;
width: 100%;
height: 300em;
background-color: black;
opacity: 0.15;
border: 0;
margin: 0;
}
.ThemeOfficeSubMenuTable
{
border: 1px solid #ADAA9C;
background-color: white;
padding: 1px;
margin: 0px 2px 2px 0px;
}
.ThemeOfficeMainItem,.ThemeOfficeMainItemHover,.ThemeOfficeMainItemActive,
.ThemeOfficeMenuItem,.ThemeOfficeMenuItemHover,.ThemeOfficeMenuItemActive
{
border: 0;
cursor: default;
white-space: nowrap;
}
/* common background color to both horizontal and vertical menus */
.ThemeOfficeMainItem
{
background-color: #EFEBDE;
}
.ThemeOfficeMainItemHover,.ThemeOfficeMainItemActive
{
background-color: #C6D3EF;
}
/* horizontal main menu */
.ThemeOfficeMainItem
{
padding: 1px;
border: 0;
}
td.ThemeOfficeMainItemHover,td.ThemeOfficeMainItemActive
{
padding: 0px;
border: 1px solid #3169C6;
}
.ThemeOfficeMainFolderLeft,.ThemeOfficeMainItemLeft,
.ThemeOfficeMainFolderText,.ThemeOfficeMainItemText,
.ThemeOfficeMainFolderRight,.ThemeOfficeMainItemRight
{
background-color: inherit;
white-space: nowrap;
}
/* vertical main menu sub components */
td.ThemeOfficeMainFolderLeft,
td.ThemeOfficeMainItemLeft
{
padding: 3px 2px 3px 1px;
border: 0;
background-color: inherit;
white-space: nowrap;
}
td.ThemeOfficeMainFolderText,
td.ThemeOfficeMainItemText
{
padding: 3px 5px 3px 5px;
border: 0;
background-color: inherit;
white-space: nowrap;
}
td.ThemeOfficeMainItemRight,
td.ThemeOfficeMainFolderRight
{
padding: 3px 1px 3px 0px;
border: 0;
background-color: inherit;
white-space: nowrap;
}
tr.ThemeOfficeMainItemHover td.ThemeOfficeMainFolderLeft,
tr.ThemeOfficeMainItemActive td.ThemeOfficeMainFolderLeft,
tr.ThemeOfficeMainItemHover td.ThemeOfficeMainItemLeft,
tr.ThemeOfficeMainItemActive td.ThemeOfficeMainItemLeft
{
padding: 2px 2px 2px 0px;
border-width: 1px 0px 1px 1px;
border-style: solid;
border-color: #3169C6;
}
tr.ThemeOfficeMainItemHover td.ThemeOfficeMainFolderText,
tr.ThemeOfficeMainItemActive td.ThemeOfficeMainFolderText,
tr.ThemeOfficeMainItemHover td.ThemeOfficeMainItemText,
tr.ThemeOfficeMainItemActive td.ThemeOfficeMainItemText
{
padding: 2px 5px 2px 5px;
border-width: 1px 0px 1px 0px;
border-style: solid;
border-color: #3169C6;
}
tr.ThemeOfficeMainItemHover td.ThemeOfficeMainFolderRight,
tr.ThemeOfficeMainItemActive td.ThemeOfficeMainFolderRight,
tr.ThemeOfficeMainItemHover td.ThemeOfficeMainItemRight,
tr.ThemeOfficeMainItemActive td.ThemeOfficeMainItemRight
{
padding: 2px 0px 2px 0px;
border-width: 1px 1px 1px 0px;
border-style: solid;
border-color: #3169C6;
}
/* sub menu sub components */
.ThemeOfficeMenuItem
{
background-color: white;
}
.ThemeOfficeMenuItemHover,.ThemeOfficeMenuItemActive
{
background-color: #C6D3EF;
}
.ThemeOfficeMenuFolderLeft,
.ThemeOfficeMenuItemLeft
{
padding: 3px 3px 3px 2px;
border: 0;
white-space: nowrap;
background-color: #EFEFDE;
}
.ThemeOfficeMenuFolderText,
.ThemeOfficeMenuItemText
{
padding: 3px 5px 3px 5px;
border: 0;
white-space: nowrap;
}
.ThemeOfficeMenuFolderRight,
.ThemeOfficeMenuItemRight
{
padding: 3px 1px 3px 0px;
border: 0;
white-space: nowrap;
}
.ThemeOfficeMenuItemHover .ThemeOfficeMenuFolderLeft,
.ThemeOfficeMenuItemActive .ThemeOfficeMenuFolderLeft,
.ThemeOfficeMenuItemHover .ThemeOfficeMenuItemLeft,
.ThemeOfficeMenuItemActive .ThemeOfficeMenuItemLeft
{
padding: 2px 3px 2px 1px;
background-color: #C6D3EF;
border-width: 1px 0px 1px 1px;
border-style: solid;
border-color: #3169C6;
}
.ThemeOfficeMenuItemHover .ThemeOfficeMenuFolderText,
.ThemeOfficeMenuItemActive .ThemeOfficeMenuFolderText,
.ThemeOfficeMenuItemHover .ThemeOfficeMenuItemText,
.ThemeOfficeMenuItemActive .ThemeOfficeMenuItemText
{
padding: 2px 5px 2px 5px;
border-width: 1px 0px 1px 0px;
border-style: solid;
border-color: #3169C6;
}
.ThemeOfficeMenuItemHover .ThemeOfficeMenuFolderRight,
.ThemeOfficeMenuItemActive .ThemeOfficeMenuFolderRight,
.ThemeOfficeMenuItemHover .ThemeOfficeMenuItemRight,
.ThemeOfficeMenuItemActive .ThemeOfficeMenuItemRight
{
padding: 2px 0px 2px 0px;
border-width: 1px 1px 1px 0px;
border-style: solid;
border-color: #3169C6;
}
/* menu splits */
td.ThemeOfficeMenuSplit
{
margin: 0px;
padding: 0px;
border: 0px;
}
div.ThemeOfficeMenuSplit
{
margin: 3px;
height: 1px;
overflow: hidden;
background-color: inherit;
border-top: 1px solid #C6C3BD;
}
/* image shadow animation */
/*
seq1: image for normal
seq2: image for hover and active
To use, in the icon field, input the following:
<img class="seq1" src="normal.gif" /><img class="seq2" src="hover.gif" />
*/
.ThemeOfficeMenuItem img.seq1
{
display: inline;
}
.ThemeOfficeMenuItemHover seq2,
.ThemeOfficeMenuItemActive seq2
{
display: inline;
}
.ThemeOfficeMenuItem .seq2,
.ThemeOfficeMenuItemHover .seq1,
.ThemeOfficeMenuItemActive .seq1
{
display: none;
} | plugins/pmJSCookMenuPlugin/web/css/ThemeOffice/theme.css |
.ThemeOfficeMenu,.ThemeOfficeSubMenuTable
{
font-family: verdana, arial, sans-serif;
font-size: 13px;
padding: 0;
white-space: nowrap;
cursor: default;
}
.ThemeOfficeSubMenu
{
position: absolute;
visibility: hidden;
overflow: hidden;
padding: 0px;
border: 0px;
background-color: transparent;
}
.ThemeOfficeSubMenuShadow
{
z-index: -1;
position: absolute;
top: 9px;
left: 9px;
width: 100%;
height: 300em;
background-color: black;
opacity: 0.15;
border: 0;
margin: 0;
}
.ThemeOfficeSubMenuTable
{
border: 1px solid #ADAA9C;
background-color: white;
padding: 1px;
margin: 0px 2px 2px 0px;
}
.ThemeOfficeMainItem,.ThemeOfficeMainItemHover,.ThemeOfficeMainItemActive,
.ThemeOfficeMenuItem,.ThemeOfficeMenuItemHover,.ThemeOfficeMenuItemActive
{
border: 0;
cursor: default;
white-space: nowrap;
}
/* common background color to both horizontal and vertical menus */
.ThemeOfficeMainItem
{
background-color: #EFEBDE;
}
.ThemeOfficeMainItemHover,.ThemeOfficeMainItemActive
{
background-color: #C6D3EF;
}
/* horizontal main menu */
.ThemeOfficeMainItem
{
padding: 1px;
border: 0;
}
td.ThemeOfficeMainItemHover,td.ThemeOfficeMainItemActive
{
padding: 0px;
border: 1px solid #3169C6;
}
.ThemeOfficeMainFolderLeft,.ThemeOfficeMainItemLeft,
.ThemeOfficeMainFolderText,.ThemeOfficeMainItemText,
.ThemeOfficeMainFolderRight,.ThemeOfficeMainItemRight
{
background-color: inherit;
white-space: nowrap;
}
/* vertical main menu sub components */
td.ThemeOfficeMainFolderLeft,
td.ThemeOfficeMainItemLeft
{
padding: 3px 2px 3px 1px;
border: 0;
background-color: inherit;
white-space: nowrap;
}
td.ThemeOfficeMainFolderText,
td.ThemeOfficeMainItemText
{
padding: 3px 5px 3px 5px;
border: 0;
background-color: inherit;
white-space: nowrap;
}
td.ThemeOfficeMainItemRight,
td.ThemeOfficeMainFolderRight
{
padding: 3px 1px 3px 0px;
border: 0;
background-color: inherit;
white-space: nowrap;
}
tr.ThemeOfficeMainItemHover td.ThemeOfficeMainFolderLeft,
tr.ThemeOfficeMainItemActive td.ThemeOfficeMainFolderLeft,
tr.ThemeOfficeMainItemHover td.ThemeOfficeMainItemLeft,
tr.ThemeOfficeMainItemActive td.ThemeOfficeMainItemLeft
{
padding: 2px 2px 2px 0px;
border-width: 1px 0px 1px 1px;
border-style: solid;
border-color: #3169C6;
}
tr.ThemeOfficeMainItemHover td.ThemeOfficeMainFolderText,
tr.ThemeOfficeMainItemActive td.ThemeOfficeMainFolderText,
tr.ThemeOfficeMainItemHover td.ThemeOfficeMainItemText,
tr.ThemeOfficeMainItemActive td.ThemeOfficeMainItemText
{
padding: 2px 5px 2px 5px;
border-width: 1px 0px 1px 0px;
border-style: solid;
border-color: #3169C6;
}
tr.ThemeOfficeMainItemHover td.ThemeOfficeMainFolderRight,
tr.ThemeOfficeMainItemActive td.ThemeOfficeMainFolderRight,
tr.ThemeOfficeMainItemHover td.ThemeOfficeMainItemRight,
tr.ThemeOfficeMainItemActive td.ThemeOfficeMainItemRight
{
padding: 2px 0px 2px 0px;
border-width: 1px 1px 1px 0px;
border-style: solid;
border-color: #3169C6;
}
/* sub menu sub components */
.ThemeOfficeMenuItem
{
background-color: white;
}
.ThemeOfficeMenuItemHover,.ThemeOfficeMenuItemActive
{
background-color: #C6D3EF;
}
.ThemeOfficeMenuFolderLeft,
.ThemeOfficeMenuItemLeft
{
padding: 3px 3px 3px 2px;
border: 0;
white-space: nowrap;
background-color: #EFEFDE;
}
.ThemeOfficeMenuFolderText,
.ThemeOfficeMenuItemText
{
padding: 3px 5px 3px 5px;
border: 0;
white-space: nowrap;
}
.ThemeOfficeMenuFolderRight,
.ThemeOfficeMenuItemRight
{
padding: 3px 1px 3px 0px;
border: 0;
white-space: nowrap;
}
.ThemeOfficeMenuItemHover .ThemeOfficeMenuFolderLeft,
.ThemeOfficeMenuItemActive .ThemeOfficeMenuFolderLeft,
.ThemeOfficeMenuItemHover .ThemeOfficeMenuItemLeft,
.ThemeOfficeMenuItemActive .ThemeOfficeMenuItemLeft
{
padding: 2px 3px 2px 1px;
background-color: #C6D3EF;
border-width: 1px 0px 1px 1px;
border-style: solid;
border-color: #3169C6;
}
.ThemeOfficeMenuItemHover .ThemeOfficeMenuFolderText,
.ThemeOfficeMenuItemActive .ThemeOfficeMenuFolderText,
.ThemeOfficeMenuItemHover .ThemeOfficeMenuItemText,
.ThemeOfficeMenuItemActive .ThemeOfficeMenuItemText
{
padding: 2px 5px 2px 5px;
border-width: 1px 0px 1px 0px;
border-style: solid;
border-color: #3169C6;
}
.ThemeOfficeMenuItemHover .ThemeOfficeMenuFolderRight,
.ThemeOfficeMenuItemActive .ThemeOfficeMenuFolderRight,
.ThemeOfficeMenuItemHover .ThemeOfficeMenuItemRight,
.ThemeOfficeMenuItemActive .ThemeOfficeMenuItemRight
{
padding: 2px 0px 2px 0px;
border-width: 1px 1px 1px 0px;
border-style: solid;
border-color: #3169C6;
}
/* menu splits */
td.ThemeOfficeMenuSplit
{
margin: 0px;
padding: 0px;
border: 0px;
}
div.ThemeOfficeMenuSplit
{
margin: 3px;
height: 1px;
overflow: hidden;
background-color: inherit;
border-top: 1px solid #C6C3BD;
}
/* image shadow animation */
/*
seq1: image for normal
seq2: image for hover and active
To use, in the icon field, input the following:
<img class="seq1" src="normal.gif" /><img class="seq2" src="hover.gif" />
*/
.ThemeOfficeMenuItem img.seq1
{
display: inline;
}
.ThemeOfficeMenuItemHover seq2,
.ThemeOfficeMenuItemActive seq2
{
display: inline;
}
.ThemeOfficeMenuItem .seq2,
.ThemeOfficeMenuItemHover .seq1,
.ThemeOfficeMenuItemActive .seq1
{
display: none;
} | 0.136206 | 0.033463 |
.caption, #query, .pager {
text-align: center;
}
#legend {
float: left;
width: 200px;
margin: 2px;
margin-left: 20px;
}
#legend .count {
line-height: 20px;
}
#legend .count span {
width: 20px;
border: 1px solid black;
}
#taxons {
display: none;
}
#taxon-display {
float: right;
}
#taxon-display .taxon {
font-size: 8pt;
}
#taxon-display .taxon .name {
border: 1px solid;
width: 32px;
float: right;
text-align: center;
}
#taxon-display .taxon .description {
display: none;
}
#taxon-display .taxon .expand-handle, #taxon-display .taxon .collapse-handle, #taxon-display .taxon .hide-handle {
cursor: pointer;
margin-top: 4px;
}
#result {
clear: both;
width: 90%;
}
#groups .group{
clear: both;
}
#groups .group[even="true"] {
background-color:#DCDCDC;
}
#groups .group .phyletic-pattern {
margin-top: 3px;
clear: both;
}
#groups .group .count-data {
display: none;
}
#taxon-display .taxon[abbrev="OBAC"] .name, #groups .group .phyletic-pattern .branch[abbrev="OBAC"] .taxon { background-color: #9999CC; }
#taxon-display .taxon[abbrev="FIRM"] .name, #groups .group .phyletic-pattern .branch[abbrev="FIRM"] .taxon { background-color: #33CC99; }
#taxon-display .taxon[abbrev="PROT"] .name, #groups .group .phyletic-pattern .branch[abbrev="PROT"] .taxon { background-color: #99CC66; }
#taxon-display .taxon[abbrev="ARCH"] .name, #groups .group .phyletic-pattern .branch[abbrev="ARCH"] .taxon { background-color: #77CCDD; }
#taxon-display .taxon[abbrev="OEUK"] .name, #groups .group .phyletic-pattern .branch[abbrev="OEUK"] .taxon { background-color: #CC9999; }
#taxon-display .taxon[abbrev="VIRI"] .name, #groups .group .phyletic-pattern .branch[abbrev="VIRI"] .taxon { background-color: #CC9933; }
#taxon-display .taxon[abbrev="EUGL"] .name, #groups .group .phyletic-pattern .branch[abbrev="EUGL"] .taxon { background-color: #CCCC66; }
#taxon-display .taxon[abbrev="ALVE"] .name, #groups .group .phyletic-pattern .branch[abbrev="ALVE"] .taxon { background-color: #CC3399; }
#taxon-display .taxon[abbrev="FUNG"] .name, #groups .group .phyletic-pattern .branch[abbrev="FUNG"] .taxon { background-color: #AA44DD; }
#taxon-display .taxon[abbrev="META"] .name, #groups .group .phyletic-pattern .branch[abbrev="META"] .taxon { background-color: #CC6666; }
#taxon-display .taxon[abbrev="AMOE"] .name, #groups .group .phyletic-pattern .branch[abbrev="AMOE"] .taxon { background-color: #3399CC; }
#groups .group .phyletic-pattern .taxon {
text-align: center;
width: 26px;
font-family: sans-serif, serif;
font-size: 7pt;
overflow: visible;
margin-bottom: 1px;
margin-right: 1px;
border: 1px solid black;
float: left;
}
#groups .group .phyletic-pattern .taxon .name {
color: black;
height: 12px;
line-height: 12px;
}
#groups .group .phyletic-pattern .taxon .count {
line-height: 12px;
height: 10px;
}
#legend .count span, #groups .group .phyletic-pattern .taxon .count {
background-color: black;
color: white;
}
#legend .count span[count="0"], #groups .group .phyletic-pattern .taxon[count="0"] .count {
background-color: white;
color: black;
}
#legend .count span[count="1"], #groups .group .phyletic-pattern .taxon[count="1"] .count {
background-color: #ABABAB;
color: black;
}
#groups .group .phyletic-pattern .taxon .description {
display: none;
position: absolute;
max-width: 300px;
border: 1px solid #A99B45;
color: black;
background-color: #FAFB98;
}
#groups .group .shortcut {
float: left;
margin: 2px;
}
#groups .group .group-detail {
margin: 2px;
text-align: center;
}
#sequences {
clear: both;
} | Site/htdocs/css/group.css | .caption, #query, .pager {
text-align: center;
}
#legend {
float: left;
width: 200px;
margin: 2px;
margin-left: 20px;
}
#legend .count {
line-height: 20px;
}
#legend .count span {
width: 20px;
border: 1px solid black;
}
#taxons {
display: none;
}
#taxon-display {
float: right;
}
#taxon-display .taxon {
font-size: 8pt;
}
#taxon-display .taxon .name {
border: 1px solid;
width: 32px;
float: right;
text-align: center;
}
#taxon-display .taxon .description {
display: none;
}
#taxon-display .taxon .expand-handle, #taxon-display .taxon .collapse-handle, #taxon-display .taxon .hide-handle {
cursor: pointer;
margin-top: 4px;
}
#result {
clear: both;
width: 90%;
}
#groups .group{
clear: both;
}
#groups .group[even="true"] {
background-color:#DCDCDC;
}
#groups .group .phyletic-pattern {
margin-top: 3px;
clear: both;
}
#groups .group .count-data {
display: none;
}
#taxon-display .taxon[abbrev="OBAC"] .name, #groups .group .phyletic-pattern .branch[abbrev="OBAC"] .taxon { background-color: #9999CC; }
#taxon-display .taxon[abbrev="FIRM"] .name, #groups .group .phyletic-pattern .branch[abbrev="FIRM"] .taxon { background-color: #33CC99; }
#taxon-display .taxon[abbrev="PROT"] .name, #groups .group .phyletic-pattern .branch[abbrev="PROT"] .taxon { background-color: #99CC66; }
#taxon-display .taxon[abbrev="ARCH"] .name, #groups .group .phyletic-pattern .branch[abbrev="ARCH"] .taxon { background-color: #77CCDD; }
#taxon-display .taxon[abbrev="OEUK"] .name, #groups .group .phyletic-pattern .branch[abbrev="OEUK"] .taxon { background-color: #CC9999; }
#taxon-display .taxon[abbrev="VIRI"] .name, #groups .group .phyletic-pattern .branch[abbrev="VIRI"] .taxon { background-color: #CC9933; }
#taxon-display .taxon[abbrev="EUGL"] .name, #groups .group .phyletic-pattern .branch[abbrev="EUGL"] .taxon { background-color: #CCCC66; }
#taxon-display .taxon[abbrev="ALVE"] .name, #groups .group .phyletic-pattern .branch[abbrev="ALVE"] .taxon { background-color: #CC3399; }
#taxon-display .taxon[abbrev="FUNG"] .name, #groups .group .phyletic-pattern .branch[abbrev="FUNG"] .taxon { background-color: #AA44DD; }
#taxon-display .taxon[abbrev="META"] .name, #groups .group .phyletic-pattern .branch[abbrev="META"] .taxon { background-color: #CC6666; }
#taxon-display .taxon[abbrev="AMOE"] .name, #groups .group .phyletic-pattern .branch[abbrev="AMOE"] .taxon { background-color: #3399CC; }
#groups .group .phyletic-pattern .taxon {
text-align: center;
width: 26px;
font-family: sans-serif, serif;
font-size: 7pt;
overflow: visible;
margin-bottom: 1px;
margin-right: 1px;
border: 1px solid black;
float: left;
}
#groups .group .phyletic-pattern .taxon .name {
color: black;
height: 12px;
line-height: 12px;
}
#groups .group .phyletic-pattern .taxon .count {
line-height: 12px;
height: 10px;
}
#legend .count span, #groups .group .phyletic-pattern .taxon .count {
background-color: black;
color: white;
}
#legend .count span[count="0"], #groups .group .phyletic-pattern .taxon[count="0"] .count {
background-color: white;
color: black;
}
#legend .count span[count="1"], #groups .group .phyletic-pattern .taxon[count="1"] .count {
background-color: #ABABAB;
color: black;
}
#groups .group .phyletic-pattern .taxon .description {
display: none;
position: absolute;
max-width: 300px;
border: 1px solid #A99B45;
color: black;
background-color: #FAFB98;
}
#groups .group .shortcut {
float: left;
margin: 2px;
}
#groups .group .group-detail {
margin: 2px;
text-align: center;
}
#sequences {
clear: both;
} | 0.417271 | 0.194674 |
.about{
font-family: 'Raleway', sans-serif;
font-weight: 900;
color: #101f1d;
font-size: 35px;
text-align: center;
}
.title{
font-family: 'Raleway', sans-serif;
font-weight: 750;
color: #101f1d;
font-size: 30px;
}
.slogan{
font-family: 'Raleway', sans-serif;
font-weight: 500;
font-size: 27px;
margin-top:12px;
}
.edit-reply-form{
display:none;
}
.bottom{
color:gray;
}
.footer {
bottom:0;
width: 100%;
background-color: #ECE9E9;
color: black;
height:95px;
margin-top: 250px;
}
#addComment{
border: 1px solid #0C92F2;
border-top: none;
border-left: none;
border-right: none;
box-shadow: none;
}
/* BUTTON HOVERS */
/* cancel password hover in forgot route */
.cancelpass:hover {
background: #e7e7e7;
}
.fa-edit{
color: #79A7C8
}
/*edit button hover */
.fa-edit:hover{
color: #6395BA;
}
/* save button hover */
.save{
background-color: #0C92F2;
}
.save:hover{
background-color:#0A74C6;
}
/*reset password button hover */
.reset{
background-color: #2D7EBC;
}
.reset:hover{
background-color: #1766A2;
}
.dot {
height: 5px;
width: 5px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
margin-bottom:5px;
}
/* Edit Navbar anchor colors */
/* selected link */
#spaceNavbar .navbar-nav li > a {
color: #DCDADA;
}
#spaceNavbar .navbar-nav li > a:hover {
color: white;
}
#spaceNavbar .navbar-nav .active > a {
background-color: #3F3737;
color: white;
}
/* flash message contact page */
.contactFlash{
font-size:18px;
}
/* footer to stay at bottom for contact and login/forgot password pages */
.forgotPage{
position:fixed;
}
.contactPage{
position:fixed;
}
.profileFooter{
position:relative;
margin-top:200px;
}
.profileFooterUser{
position:fixed;
}
.profilePage{
margin-top:400px;
}
#commentReplies{
margin-left:70px;
}
.showPage{
margin-top:400px;
}
.logoHome{
margin-right:2px; font-size:58px;
}
@media only screen and (max-width: 1000px) {
#button {
display: none;
}
.contactFlash{
font-size:16px;
}
.footer {
bottom:0;
width: 100%;
background-color: #ECE9E9;
color: black;
height:95px;
margin-top: 120px;
}
.forgotPage{
position:relative;
margin-top:320px;
}
.contactPage{
position:relative;
}
.profileFooter{
position:relative;
}
.profileFooterUser{
position:relative;
margin-top:320px;
}
.profilePage{
margin-top:120px;
}
.showPage{
margin-top:500px;
}
.logoHome{
margin-right:2px; font-size:32px;
}
.slogan{
font-family: 'Raleway', sans-serif;
font-weight: 525;
font-size: 20px;
margin-top:0px;
}
.title{
font-family: 'Raleway', sans-serif;
font-weight: 900;
color: #101f1d;
font-size: 35px;
}
#commentReplies{
margin-left:45px;
}
#commentTime{
font-size:14px;
}
#replycommentTime{
font-size:12px;
}
}
/* Make navbar collapse button white when opened and back to black when closed */
.changeColor{
background-color:#3F3737 !important;
}
/*give S icon at navbar a hover effect */
#sHover:hover{
background-color: #48BDCA !important;
cursor: pointer;
}
/* Edit Jumbotron */
.jumbotron{
text-align: center;
background-color: #7DDBE5;
border-style: double;
border-width: 1.5px;
border-color: black;
}
#delete-book{
display: inline;
}
.fa-dollar-sign {
color:#17A140;
}
.thumbnail{
padding: 10px 8px 10px;
}
/*toggle edit profile pic form */
.image-post-form{
display: none;
}
/*toggle edit school form */
.school-post-form{
display: none;
}
/*toggle edit email form */
.email-post-form{
display: none;
}
/*toggle post comment form */
.edit-post-form{
display: none;
}
/* toggle edit comment form */
.edit-comment-form{
display: none;
}
.delete-icon{
display: none;
}
/* number of images text */
.imageNum{
display: none;
}
/*when small square pics are hovered upon */
.allPics:hover{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* add image slider */
.swiper-slide {
text-align: center;
}
#button{
width: 50px;
height: 50px;
border-radius: 25px;
border-color: #48BDCA;
top: 170px;
background: #7DDBE5;
color: black;
font-size: 20px;
}
#button:hover{
background: #48BDCA;
}
#btn1:hover{
box-shadow: 10px 0px 20px 0px black;
}
#btn2:hover{
box-shadow: -10px 0px 20px 0px black;
}
#btn2{
float: right;
}
/* edit login page so it will show "or" text in between horizontal line */
.horizontalOr{
width: 75%;
text-align: center;
border-bottom: 1px solid #D6DED8;
line-height: 0.1em;
margin: auto;
}
.orText{
background:#fff; padding:0 10px;
}
/* edit post drop down */
.dropbtn {
background-color:white;
font-size: 20px;
border: none;
color:#67696B;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 120px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #f1f1f1}
.dropdown-content button:hover {background-color: #f1f1f1}
.dropdown:hover .dropdown-content {display: block;}
#deleteButton{
border:none; background-color: #f9f9f9; padding:15px 0px 15px 15px;
}
.circle{
height: 19px; width: 20px;background-color: red; border-radius: 50%; display: inline-block;
} | public/app.css | .about{
font-family: 'Raleway', sans-serif;
font-weight: 900;
color: #101f1d;
font-size: 35px;
text-align: center;
}
.title{
font-family: 'Raleway', sans-serif;
font-weight: 750;
color: #101f1d;
font-size: 30px;
}
.slogan{
font-family: 'Raleway', sans-serif;
font-weight: 500;
font-size: 27px;
margin-top:12px;
}
.edit-reply-form{
display:none;
}
.bottom{
color:gray;
}
.footer {
bottom:0;
width: 100%;
background-color: #ECE9E9;
color: black;
height:95px;
margin-top: 250px;
}
#addComment{
border: 1px solid #0C92F2;
border-top: none;
border-left: none;
border-right: none;
box-shadow: none;
}
/* BUTTON HOVERS */
/* cancel password hover in forgot route */
.cancelpass:hover {
background: #e7e7e7;
}
.fa-edit{
color: #79A7C8
}
/*edit button hover */
.fa-edit:hover{
color: #6395BA;
}
/* save button hover */
.save{
background-color: #0C92F2;
}
.save:hover{
background-color:#0A74C6;
}
/*reset password button hover */
.reset{
background-color: #2D7EBC;
}
.reset:hover{
background-color: #1766A2;
}
.dot {
height: 5px;
width: 5px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
margin-bottom:5px;
}
/* Edit Navbar anchor colors */
/* selected link */
#spaceNavbar .navbar-nav li > a {
color: #DCDADA;
}
#spaceNavbar .navbar-nav li > a:hover {
color: white;
}
#spaceNavbar .navbar-nav .active > a {
background-color: #3F3737;
color: white;
}
/* flash message contact page */
.contactFlash{
font-size:18px;
}
/* footer to stay at bottom for contact and login/forgot password pages */
.forgotPage{
position:fixed;
}
.contactPage{
position:fixed;
}
.profileFooter{
position:relative;
margin-top:200px;
}
.profileFooterUser{
position:fixed;
}
.profilePage{
margin-top:400px;
}
#commentReplies{
margin-left:70px;
}
.showPage{
margin-top:400px;
}
.logoHome{
margin-right:2px; font-size:58px;
}
@media only screen and (max-width: 1000px) {
#button {
display: none;
}
.contactFlash{
font-size:16px;
}
.footer {
bottom:0;
width: 100%;
background-color: #ECE9E9;
color: black;
height:95px;
margin-top: 120px;
}
.forgotPage{
position:relative;
margin-top:320px;
}
.contactPage{
position:relative;
}
.profileFooter{
position:relative;
}
.profileFooterUser{
position:relative;
margin-top:320px;
}
.profilePage{
margin-top:120px;
}
.showPage{
margin-top:500px;
}
.logoHome{
margin-right:2px; font-size:32px;
}
.slogan{
font-family: 'Raleway', sans-serif;
font-weight: 525;
font-size: 20px;
margin-top:0px;
}
.title{
font-family: 'Raleway', sans-serif;
font-weight: 900;
color: #101f1d;
font-size: 35px;
}
#commentReplies{
margin-left:45px;
}
#commentTime{
font-size:14px;
}
#replycommentTime{
font-size:12px;
}
}
/* Make navbar collapse button white when opened and back to black when closed */
.changeColor{
background-color:#3F3737 !important;
}
/*give S icon at navbar a hover effect */
#sHover:hover{
background-color: #48BDCA !important;
cursor: pointer;
}
/* Edit Jumbotron */
.jumbotron{
text-align: center;
background-color: #7DDBE5;
border-style: double;
border-width: 1.5px;
border-color: black;
}
#delete-book{
display: inline;
}
.fa-dollar-sign {
color:#17A140;
}
.thumbnail{
padding: 10px 8px 10px;
}
/*toggle edit profile pic form */
.image-post-form{
display: none;
}
/*toggle edit school form */
.school-post-form{
display: none;
}
/*toggle edit email form */
.email-post-form{
display: none;
}
/*toggle post comment form */
.edit-post-form{
display: none;
}
/* toggle edit comment form */
.edit-comment-form{
display: none;
}
.delete-icon{
display: none;
}
/* number of images text */
.imageNum{
display: none;
}
/*when small square pics are hovered upon */
.allPics:hover{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* add image slider */
.swiper-slide {
text-align: center;
}
#button{
width: 50px;
height: 50px;
border-radius: 25px;
border-color: #48BDCA;
top: 170px;
background: #7DDBE5;
color: black;
font-size: 20px;
}
#button:hover{
background: #48BDCA;
}
#btn1:hover{
box-shadow: 10px 0px 20px 0px black;
}
#btn2:hover{
box-shadow: -10px 0px 20px 0px black;
}
#btn2{
float: right;
}
/* edit login page so it will show "or" text in between horizontal line */
.horizontalOr{
width: 75%;
text-align: center;
border-bottom: 1px solid #D6DED8;
line-height: 0.1em;
margin: auto;
}
.orText{
background:#fff; padding:0 10px;
}
/* edit post drop down */
.dropbtn {
background-color:white;
font-size: 20px;
border: none;
color:#67696B;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 120px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #f1f1f1}
.dropdown-content button:hover {background-color: #f1f1f1}
.dropdown:hover .dropdown-content {display: block;}
#deleteButton{
border:none; background-color: #f9f9f9; padding:15px 0px 15px 15px;
}
.circle{
height: 19px; width: 20px;background-color: red; border-radius: 50%; display: inline-block;
} | 0.262275 | 0.063773 |
@charset "UTF-8";
/* line 1, ../../_scss/style.scss */
* {
font-size: inherit;
-webkit-margin-before: 0em;
-webkit-margin-after: 0em;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
font-weight: normal;
list-style-type: none; }
/* line 10, ../../_scss/style.scss */
body {
padding: 0 !important;
margin: 0 !important;
background-color: #f7f7f7;
font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif; }
/* line 18, ../../_scss/style.scss */
div#catch {
position: fixed;
z-index: -1;
top: 0;
left: 0; }
/* line 24, ../../_scss/style.scss */
header {
background-color: rgba(0, 0, 0, 0.5);
color: white;
padding: 50px; }
/* line 28, ../../_scss/style.scss */
header .title {
font-size: 30px;
letter-spacing: 5px; }
/* line 32, ../../_scss/style.scss */
header .sub {
font-size: 11px;
margin-top: 5px; }
/* line 38, ../../_scss/style.scss */
#headtitle {
background-color: rgba(0, 0, 0, 0.5);
color: #fff; }
/* line 44, ../../_scss/style.scss */
#mainBody {
background-color: #f7f7f7; }
/* line 46, ../../_scss/style.scss */
#mainBody li {
width: 250px;
margin: 15px;
background-color: #fff;
float: left; }
/* line 54, ../../_scss/style.scss */
#headtitle {
padding: 30px; }
/* line 55, ../../_scss/style.scss */
#headtitle a {
color: #fff;
text-decoration: none; }
/* line 63, ../../_scss/style.scss */
#headtitle .title {
font-size: 30px;
font-weight: bold;
letter-spacing: 5px;
padding: 20px 0; }
/* line 72, ../../_scss/style.scss */
.flex-container {
-webkit-flex-wrap: wrap;
/* Safari */
flex-wrap: wrap;
-webkit-justify-content: space-around;
/* Safari */
justify-content: space-around; }
/* line 79, ../../_scss/style.scss */
.flex-container li {
padding-top: 100px; }
/* line 80, ../../_scss/style.scss */
.flex-container li a {
color: #333;
text-decoration: none; }
/* line 85, ../../_scss/style.scss */
.flex-container li p.date {
font-size: 12px;
margin: 5px 10px; }
/* line 89, ../../_scss/style.scss */
.flex-container li .maintitle {
font-size: 17px;
font-weight: bold;
letter-spacing: 2px;
margin: 5px 10px; }
/* line 96, ../../_scss/style.scss */
.flex-container li .content p {
font-size: 12px;
margin: 5px 10px; }
/* line 105, ../../_scss/style.scss */
#secondary {
position: absolute;
right: 0;
top: 340px;
width: 200px;
background-color: #fff; } | common/css/style.css | @charset "UTF-8";
/* line 1, ../../_scss/style.scss */
* {
font-size: inherit;
-webkit-margin-before: 0em;
-webkit-margin-after: 0em;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
font-weight: normal;
list-style-type: none; }
/* line 10, ../../_scss/style.scss */
body {
padding: 0 !important;
margin: 0 !important;
background-color: #f7f7f7;
font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif; }
/* line 18, ../../_scss/style.scss */
div#catch {
position: fixed;
z-index: -1;
top: 0;
left: 0; }
/* line 24, ../../_scss/style.scss */
header {
background-color: rgba(0, 0, 0, 0.5);
color: white;
padding: 50px; }
/* line 28, ../../_scss/style.scss */
header .title {
font-size: 30px;
letter-spacing: 5px; }
/* line 32, ../../_scss/style.scss */
header .sub {
font-size: 11px;
margin-top: 5px; }
/* line 38, ../../_scss/style.scss */
#headtitle {
background-color: rgba(0, 0, 0, 0.5);
color: #fff; }
/* line 44, ../../_scss/style.scss */
#mainBody {
background-color: #f7f7f7; }
/* line 46, ../../_scss/style.scss */
#mainBody li {
width: 250px;
margin: 15px;
background-color: #fff;
float: left; }
/* line 54, ../../_scss/style.scss */
#headtitle {
padding: 30px; }
/* line 55, ../../_scss/style.scss */
#headtitle a {
color: #fff;
text-decoration: none; }
/* line 63, ../../_scss/style.scss */
#headtitle .title {
font-size: 30px;
font-weight: bold;
letter-spacing: 5px;
padding: 20px 0; }
/* line 72, ../../_scss/style.scss */
.flex-container {
-webkit-flex-wrap: wrap;
/* Safari */
flex-wrap: wrap;
-webkit-justify-content: space-around;
/* Safari */
justify-content: space-around; }
/* line 79, ../../_scss/style.scss */
.flex-container li {
padding-top: 100px; }
/* line 80, ../../_scss/style.scss */
.flex-container li a {
color: #333;
text-decoration: none; }
/* line 85, ../../_scss/style.scss */
.flex-container li p.date {
font-size: 12px;
margin: 5px 10px; }
/* line 89, ../../_scss/style.scss */
.flex-container li .maintitle {
font-size: 17px;
font-weight: bold;
letter-spacing: 2px;
margin: 5px 10px; }
/* line 96, ../../_scss/style.scss */
.flex-container li .content p {
font-size: 12px;
margin: 5px 10px; }
/* line 105, ../../_scss/style.scss */
#secondary {
position: absolute;
right: 0;
top: 340px;
width: 200px;
background-color: #fff; } | 0.118717 | 0.034947 |
.box {
position: relative;
top: 0;
left: 0;
text-align: center;
transition: 0.25s;
}
.box input[type="text"],
.box input[type="password"] {
border: 0;
background: none;
display: block;
margin: 20px auto;
text-align: center;
border: 2px solid #6222CC;
padding: 10px 10px;
width: 250px;
outline: none;
color: rgb(0, 0, 0);
border-radius: 24px;
transition: 0.25s
}
.box h1 {
color: rgb(0, 0, 0);
text-transform: uppercase;
font-weight: 500
}
.box input[type="text"]:focus,
.box input[type="password"]:focus {
width: 280px;
border-color: #fba504
}
.box input[type="submit"] {
border: 0;
background: none;
display: block;
margin: 20px auto;
text-align: center;
border: 2px solid #fba504;
padding: 14px 40px;
outline: none;
color: rgb(0, 0, 0);
border-radius: 24px;
transition: 0.25s;
cursor: pointer
}
.box input[type="submit"]:hover {
background: #fba504
}
.forgot {
text-decoration: underline
}
ul.social-network {
list-style: none;
display: inline;
margin-left: 0 !important;
padding: 0
}
ul.social-network li {
display: inline;
}
.social-network a.icoFacebook:hover {
background-color: #3B5998
}
.social-network a.icoTwitter:hover {
background-color: #33ccff
}
.social-network a.icoGoogle:hover {
background-color: #BD3518
}
.social-network a.icoFacebook:hover i,
.social-network a.icoTwitter:hover i,
.social-network a.icoGoogle:hover i {
color: #fff
}
a.socialIcon:hover,
.socialHoverClass {
color: #44BCDD
}
.social-circle li a {
display: inline-block;
position: relative;
margin: 0 auto 0 auto;
border-radius: 50%;
text-align: center;
width: 50px;
height: 50px;
font-size: 20px
}
.social-circle li i {
margin: 0;
line-height: 50px;
text-align: center
}
.social-circle li a:hover i,
.triggeredHover {
transform: rotate(360deg);
transition: all 0.2s
}
.social-circle i {
color: rgba(98,34,204, 0.91);
transition: all 0.8s;
transition: all 0.8s
}
/*** Footer ***/
.footers {
background-position:
center top,
center center;
background-repeat: no-repeat;
}
.footers .btn.btn-social {
margin-right: 5px;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
color: var(--light);
border: 1px solid rgba(256, 256, 256, .1);
border-radius: 40px;
transition: .3s;
}
.footers .btn.btn-social:hover {
color: var(--primary);
}
.footers .btn.btn-link {
display: block;
margin-bottom: 10px;
padding: 0;
text-align: left;
color: var(--light);
font-weight: normal;
transition: .3s;
}
.footers .btn.btn-link::before {
position: relative;
content: "\f105";
font-family: "Font Awesome 5 Free";
font-weight: 900;
margin-right: 10px;
}
.footers .btn.btn-link:hover {
letter-spacing: 1px;
box-shadow: none;
color: var(--secondary);
}
.footers .copyright {
padding: 25px 0;
font-size: 14px;
border-top: 1px solid rgba(256, 256, 256, .1);
}
.footers .copyright a {
color: var(--light);
}
.footers .footers-menu a {
margin-right: 15px;
padding-right: 15px;
border-right: 1px solid rgba(255, 255, 255, .1);
}
.footers .footers-menu a:last-child {
margin-right: 0;
padding-right: 0;
border-right: none;
}
.footers .copyright a:hover,
.footers .footers-menu a:hover {
color: var(--secondary);
} | digital-hero/public/css/login_style.css | .box {
position: relative;
top: 0;
left: 0;
text-align: center;
transition: 0.25s;
}
.box input[type="text"],
.box input[type="password"] {
border: 0;
background: none;
display: block;
margin: 20px auto;
text-align: center;
border: 2px solid #6222CC;
padding: 10px 10px;
width: 250px;
outline: none;
color: rgb(0, 0, 0);
border-radius: 24px;
transition: 0.25s
}
.box h1 {
color: rgb(0, 0, 0);
text-transform: uppercase;
font-weight: 500
}
.box input[type="text"]:focus,
.box input[type="password"]:focus {
width: 280px;
border-color: #fba504
}
.box input[type="submit"] {
border: 0;
background: none;
display: block;
margin: 20px auto;
text-align: center;
border: 2px solid #fba504;
padding: 14px 40px;
outline: none;
color: rgb(0, 0, 0);
border-radius: 24px;
transition: 0.25s;
cursor: pointer
}
.box input[type="submit"]:hover {
background: #fba504
}
.forgot {
text-decoration: underline
}
ul.social-network {
list-style: none;
display: inline;
margin-left: 0 !important;
padding: 0
}
ul.social-network li {
display: inline;
}
.social-network a.icoFacebook:hover {
background-color: #3B5998
}
.social-network a.icoTwitter:hover {
background-color: #33ccff
}
.social-network a.icoGoogle:hover {
background-color: #BD3518
}
.social-network a.icoFacebook:hover i,
.social-network a.icoTwitter:hover i,
.social-network a.icoGoogle:hover i {
color: #fff
}
a.socialIcon:hover,
.socialHoverClass {
color: #44BCDD
}
.social-circle li a {
display: inline-block;
position: relative;
margin: 0 auto 0 auto;
border-radius: 50%;
text-align: center;
width: 50px;
height: 50px;
font-size: 20px
}
.social-circle li i {
margin: 0;
line-height: 50px;
text-align: center
}
.social-circle li a:hover i,
.triggeredHover {
transform: rotate(360deg);
transition: all 0.2s
}
.social-circle i {
color: rgba(98,34,204, 0.91);
transition: all 0.8s;
transition: all 0.8s
}
/*** Footer ***/
.footers {
background-position:
center top,
center center;
background-repeat: no-repeat;
}
.footers .btn.btn-social {
margin-right: 5px;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
color: var(--light);
border: 1px solid rgba(256, 256, 256, .1);
border-radius: 40px;
transition: .3s;
}
.footers .btn.btn-social:hover {
color: var(--primary);
}
.footers .btn.btn-link {
display: block;
margin-bottom: 10px;
padding: 0;
text-align: left;
color: var(--light);
font-weight: normal;
transition: .3s;
}
.footers .btn.btn-link::before {
position: relative;
content: "\f105";
font-family: "Font Awesome 5 Free";
font-weight: 900;
margin-right: 10px;
}
.footers .btn.btn-link:hover {
letter-spacing: 1px;
box-shadow: none;
color: var(--secondary);
}
.footers .copyright {
padding: 25px 0;
font-size: 14px;
border-top: 1px solid rgba(256, 256, 256, .1);
}
.footers .copyright a {
color: var(--light);
}
.footers .footers-menu a {
margin-right: 15px;
padding-right: 15px;
border-right: 1px solid rgba(255, 255, 255, .1);
}
.footers .footers-menu a:last-child {
margin-right: 0;
padding-right: 0;
border-right: none;
}
.footers .copyright a:hover,
.footers .footers-menu a:hover {
color: var(--secondary);
} | 0.506103 | 0.135403 |
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
body {
background-color: #3883fa;
color: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
margin: 4px;
}
select {
margin-left: 50px;
background-color: #3681f8;
color: #FFFFFF;
font-size: 80%;
height: fit-content;
vertical-align: middle;
cursor: pointer;
}
.button {
background-color: #3681f8;
color: #E0E0E0;
font-size: 14px;
cursor: pointer;
border-radius: 5px;
padding: 2px 10px 2px 8px;
border: none;
margin-left: 5px;
}
div.main {
display: flex;
flex-direction: row;
}
code {
background-color: #f5f5f5;
}
#mainContainer {
width: 58vw;
height: 93vh;
}
#viewerContainer {
background-color: #3883fa;
}
/* disable pdf text-selection */
div.textLayer > span {
cursor: default;
}
/* initial window positions */
#dataWindow {
position: absolute;
top: 0px;
left: 0px;
}
#templateWindow {
position: absolute;
top: 460px;
left: 0px;
}
/* initial window sizes */
#dataWindow, #templateWindow {
overflow: hidden;
width: 680px;
height: 440px;
}
#htmlPreviewWindow {
margin: 0px;
padding: 0px;
position: absolute;
top: 0px;
left: 700px;
}
#htmlPreviewControl {
margin: 0px;
padding: 0px;
width: 420mm;
height: 594mm;
color: black;
background-color: white;
}
/* resizable windows */
#dataEditor, #templateEditor {
width: 100%;
height: calc(100% - 25px);
}
.resizable {
resize: both;
overflow: scroll;
}
/* window header and functions */
span.header {
margin: 2px 20px 2px 5px;
vertical-align: middle;
font-size: 18px;
font-weight: bold;
cursor: default;
display: flex;
}
div.header {
display: flex;
justify-content: space-between;
background: blue;
}
#htmlPreviewHeader {
display: flex;
justify-content: space-between;
background: blue;
width: 1115px;
margin: 2px 20px 2px 5px;
vertical-align: middle;
font-size: 18px;
font-weight: bold;
cursor: default;
margin: 0;
}
#dataHeader, #templateHeader {
width: 100%;
}
#position {
cursor: default;
font-weight: normal;
font-size: 90%;
color: #FFFFFF;
vertical-align: middle;
padding-top: 3px;
position: absolute;
left: 950px;
}
#positionValue {
cursor: default;
font-weight: normal;
font-size: 90%;
color: #FFFFFF;
vertical-align: middle;
position: absolute;
left: 1015px;
padding-top: 3px;
}
.title {
white-space: nowrap;
}
span.window-functions {
display: flex;
align-content: flex-end;
}
input.hidden {
display: none;
}
/* drag-n-drop-buttons */
#dataWindowDrag, #templateWindowDrag {
background-color: #3681f8;
color: #E0E0E0;
cursor: move;
width: 17px;
height: 25px;
border: none;
text-align: center;
outline: none;
font-size: 15px;
padding: 0;
margin: 0;
border-radius: 0;
margin-left: 5px;
}
#htmlPreviewWindowDrag {
background-color: blue;
cursor: move;
width: 25px;
height: 25px;
position: absolute;
left: 1114px;
border-width: 0;
border-radius: 0 10px 10px 0;
padding: 0;
margin: 0;
}
/* collapse-buttons */
#toggleData, #toggleOverlay {
background-color: #3681f8;
color: #E0E0E0;
cursor: pointer;
width: 17px;
height: 25px;
border: none;
text-align: center;
outline: none;
font-size: 15px;
padding: 0;
margin: 0;
border-radius: 0;
}
/* ruler */
#toggleRuler {
margin-left: 10px;
}
#ruler {
display: none;
}
.ruler {
position: absolute;
top: 470px;
left: 912px;
width: 793px;
height: 30px;
background: yellow;
border-top: 1px solid #555;
border-bottom: 1px solid #555;
z-index: 1000;
cursor: move;
}
.ruler .cm, .ruler .mm {
position: absolute;
border-left: 1px solid #555;
height: 14px;
width: calc(100%/21);
}
.ruler .cm:nth-of-type(1) {
border-left: none;
}
.ruler .cm:after {
position: absolute;
bottom: -15px;
font: 11px/1 sans-serif;
}
.ruler .mm {
height: 5px;
}
.ruler .mm:nth-of-type(5) {
height: 10px;
}
/* cm lines */
.ruler .cm:nth-of-type(1) {
left: 0%;
}
.ruler .cm:nth-of-type(1):after {
content: "0cm";
color: black;
}
.ruler .cm:nth-of-type(2) {
left: calc(100%/21);
}
.ruler .cm:nth-of-type(2):after {
content: "1";
color: black;
}
.ruler .cm:nth-of-type(3) {
left: calc(100%/21*2);
}
.ruler .cm:nth-of-type(3):after {
content: "2";
color: black;
}
.ruler .cm:nth-of-type(4) {
left: calc(100%/21*3);
}
.ruler .cm:nth-of-type(4):after {
content: "3";
color: black;
}
.ruler .cm:nth-of-type(5) {
left: calc(100%/21*4);
}
.ruler .cm:nth-of-type(5):after {
content: "4";
color: black;
}
.ruler .cm:nth-of-type(6) {
left: calc(100%/21*5);
}
.ruler .cm:nth-of-type(6):after {
content: "5";
color: black;
}
.ruler .cm:nth-of-type(7) {
left: calc(100%/21*6);
}
.ruler .cm:nth-of-type(7):after {
content: "6";
color: black;
}
.ruler .cm:nth-of-type(8) {
left: calc(100%/21*7);
}
.ruler .cm:nth-of-type(8):after {
content: "7";
color: black;
}
.ruler .cm:nth-of-type(9) {
left: calc(100%/21*8);
}
.ruler .cm:nth-of-type(9):after {
content: "8";
color: black;
}
.ruler .cm:nth-of-type(10) {
left: calc(100%/21*9);
}
.ruler .cm:nth-of-type(10):after {
content: "9";
color: black;
}
.ruler .cm:nth-of-type(11) {
left: calc(100%/21*10);
}
.ruler .cm:nth-of-type(11):after {
content: "10";
color: black;
}
.ruler .cm:nth-of-type(12) {
left: calc(100%/21*11);
}
.ruler .cm:nth-of-type(12):after {
content: "11";
color: black;
}
.ruler .cm:nth-of-type(13) {
left: calc(100%/21*12);
}
.ruler .cm:nth-of-type(13):after {
content: "12";
color: black;
}
.ruler .cm:nth-of-type(14) {
left: calc(100%/21*13);
}
.ruler .cm:nth-of-type(14):after {
content: "13";
color: black;
}
.ruler .cm:nth-of-type(15) {
left: calc(100%/21*14);
}
.ruler .cm:nth-of-type(15):after {
content: "14";
color: black;
}
.ruler .cm:nth-of-type(16) {
left: calc(100%/21*15);
}
.ruler .cm:nth-of-type(16):after {
content: "15";
color: black;
}
.ruler .cm:nth-of-type(17) {
left: calc(100%/21*16);
}
.ruler .cm:nth-of-type(17):after {
content: "16";
color: black;
}
.ruler .cm:nth-of-type(18) {
left: calc(100%/21*17);
}
.ruler .cm:nth-of-type(18):after {
content: "17";
color: black;
}
.ruler .cm:nth-of-type(19) {
left: calc(100%/21*18);
}
.ruler .cm:nth-of-type(19):after {
content: "18";
color: black;
}
.ruler .cm:nth-of-type(20) {
left: calc(100%/21*19);
}
.ruler .cm:nth-of-type(20):after {
content: "19";
color: black;
}
.ruler .cm:nth-of-type(21) {
left: calc(100%/21*20);
}
.ruler .cm:nth-of-type(21):after {
content: "20";
color: black;
}
.ruler .cm:nth-of-type(22) {
left: 100%;
}
.ruler .cm:nth-of-type(22):after {
content: "";
color: black;
}
/* mm lines */
.ruler .mm:nth-of-type(1) {
left: 2px;
}
.ruler .mm:nth-of-type(2) {
left: 6px;
}
.ruler .mm:nth-of-type(3) {
left: 10px;
}
.ruler .mm:nth-of-type(4) {
left: 14px;
}
.ruler .mm:nth-of-type(5) {
left: 18px;
}
.ruler .mm:nth-of-type(6) {
left: 22px;
}
.ruler .mm:nth-of-type(7) {
left: 26px;
}
.ruler .mm:nth-of-type(8) {
left: 30px;
}
.ruler .mm:nth-of-type(9) {
left: 34px;
}
/* rotate ruler */
.ruler.vertical {
transform: rotate(90deg);
}
#rulerRotate {
display: none;
cursor: pointer;
margin-left: 5px;
} | src/main/resources/static/template.css | html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
body {
background-color: #3883fa;
color: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
margin: 4px;
}
select {
margin-left: 50px;
background-color: #3681f8;
color: #FFFFFF;
font-size: 80%;
height: fit-content;
vertical-align: middle;
cursor: pointer;
}
.button {
background-color: #3681f8;
color: #E0E0E0;
font-size: 14px;
cursor: pointer;
border-radius: 5px;
padding: 2px 10px 2px 8px;
border: none;
margin-left: 5px;
}
div.main {
display: flex;
flex-direction: row;
}
code {
background-color: #f5f5f5;
}
#mainContainer {
width: 58vw;
height: 93vh;
}
#viewerContainer {
background-color: #3883fa;
}
/* disable pdf text-selection */
div.textLayer > span {
cursor: default;
}
/* initial window positions */
#dataWindow {
position: absolute;
top: 0px;
left: 0px;
}
#templateWindow {
position: absolute;
top: 460px;
left: 0px;
}
/* initial window sizes */
#dataWindow, #templateWindow {
overflow: hidden;
width: 680px;
height: 440px;
}
#htmlPreviewWindow {
margin: 0px;
padding: 0px;
position: absolute;
top: 0px;
left: 700px;
}
#htmlPreviewControl {
margin: 0px;
padding: 0px;
width: 420mm;
height: 594mm;
color: black;
background-color: white;
}
/* resizable windows */
#dataEditor, #templateEditor {
width: 100%;
height: calc(100% - 25px);
}
.resizable {
resize: both;
overflow: scroll;
}
/* window header and functions */
span.header {
margin: 2px 20px 2px 5px;
vertical-align: middle;
font-size: 18px;
font-weight: bold;
cursor: default;
display: flex;
}
div.header {
display: flex;
justify-content: space-between;
background: blue;
}
#htmlPreviewHeader {
display: flex;
justify-content: space-between;
background: blue;
width: 1115px;
margin: 2px 20px 2px 5px;
vertical-align: middle;
font-size: 18px;
font-weight: bold;
cursor: default;
margin: 0;
}
#dataHeader, #templateHeader {
width: 100%;
}
#position {
cursor: default;
font-weight: normal;
font-size: 90%;
color: #FFFFFF;
vertical-align: middle;
padding-top: 3px;
position: absolute;
left: 950px;
}
#positionValue {
cursor: default;
font-weight: normal;
font-size: 90%;
color: #FFFFFF;
vertical-align: middle;
position: absolute;
left: 1015px;
padding-top: 3px;
}
.title {
white-space: nowrap;
}
span.window-functions {
display: flex;
align-content: flex-end;
}
input.hidden {
display: none;
}
/* drag-n-drop-buttons */
#dataWindowDrag, #templateWindowDrag {
background-color: #3681f8;
color: #E0E0E0;
cursor: move;
width: 17px;
height: 25px;
border: none;
text-align: center;
outline: none;
font-size: 15px;
padding: 0;
margin: 0;
border-radius: 0;
margin-left: 5px;
}
#htmlPreviewWindowDrag {
background-color: blue;
cursor: move;
width: 25px;
height: 25px;
position: absolute;
left: 1114px;
border-width: 0;
border-radius: 0 10px 10px 0;
padding: 0;
margin: 0;
}
/* collapse-buttons */
#toggleData, #toggleOverlay {
background-color: #3681f8;
color: #E0E0E0;
cursor: pointer;
width: 17px;
height: 25px;
border: none;
text-align: center;
outline: none;
font-size: 15px;
padding: 0;
margin: 0;
border-radius: 0;
}
/* ruler */
#toggleRuler {
margin-left: 10px;
}
#ruler {
display: none;
}
.ruler {
position: absolute;
top: 470px;
left: 912px;
width: 793px;
height: 30px;
background: yellow;
border-top: 1px solid #555;
border-bottom: 1px solid #555;
z-index: 1000;
cursor: move;
}
.ruler .cm, .ruler .mm {
position: absolute;
border-left: 1px solid #555;
height: 14px;
width: calc(100%/21);
}
.ruler .cm:nth-of-type(1) {
border-left: none;
}
.ruler .cm:after {
position: absolute;
bottom: -15px;
font: 11px/1 sans-serif;
}
.ruler .mm {
height: 5px;
}
.ruler .mm:nth-of-type(5) {
height: 10px;
}
/* cm lines */
.ruler .cm:nth-of-type(1) {
left: 0%;
}
.ruler .cm:nth-of-type(1):after {
content: "0cm";
color: black;
}
.ruler .cm:nth-of-type(2) {
left: calc(100%/21);
}
.ruler .cm:nth-of-type(2):after {
content: "1";
color: black;
}
.ruler .cm:nth-of-type(3) {
left: calc(100%/21*2);
}
.ruler .cm:nth-of-type(3):after {
content: "2";
color: black;
}
.ruler .cm:nth-of-type(4) {
left: calc(100%/21*3);
}
.ruler .cm:nth-of-type(4):after {
content: "3";
color: black;
}
.ruler .cm:nth-of-type(5) {
left: calc(100%/21*4);
}
.ruler .cm:nth-of-type(5):after {
content: "4";
color: black;
}
.ruler .cm:nth-of-type(6) {
left: calc(100%/21*5);
}
.ruler .cm:nth-of-type(6):after {
content: "5";
color: black;
}
.ruler .cm:nth-of-type(7) {
left: calc(100%/21*6);
}
.ruler .cm:nth-of-type(7):after {
content: "6";
color: black;
}
.ruler .cm:nth-of-type(8) {
left: calc(100%/21*7);
}
.ruler .cm:nth-of-type(8):after {
content: "7";
color: black;
}
.ruler .cm:nth-of-type(9) {
left: calc(100%/21*8);
}
.ruler .cm:nth-of-type(9):after {
content: "8";
color: black;
}
.ruler .cm:nth-of-type(10) {
left: calc(100%/21*9);
}
.ruler .cm:nth-of-type(10):after {
content: "9";
color: black;
}
.ruler .cm:nth-of-type(11) {
left: calc(100%/21*10);
}
.ruler .cm:nth-of-type(11):after {
content: "10";
color: black;
}
.ruler .cm:nth-of-type(12) {
left: calc(100%/21*11);
}
.ruler .cm:nth-of-type(12):after {
content: "11";
color: black;
}
.ruler .cm:nth-of-type(13) {
left: calc(100%/21*12);
}
.ruler .cm:nth-of-type(13):after {
content: "12";
color: black;
}
.ruler .cm:nth-of-type(14) {
left: calc(100%/21*13);
}
.ruler .cm:nth-of-type(14):after {
content: "13";
color: black;
}
.ruler .cm:nth-of-type(15) {
left: calc(100%/21*14);
}
.ruler .cm:nth-of-type(15):after {
content: "14";
color: black;
}
.ruler .cm:nth-of-type(16) {
left: calc(100%/21*15);
}
.ruler .cm:nth-of-type(16):after {
content: "15";
color: black;
}
.ruler .cm:nth-of-type(17) {
left: calc(100%/21*16);
}
.ruler .cm:nth-of-type(17):after {
content: "16";
color: black;
}
.ruler .cm:nth-of-type(18) {
left: calc(100%/21*17);
}
.ruler .cm:nth-of-type(18):after {
content: "17";
color: black;
}
.ruler .cm:nth-of-type(19) {
left: calc(100%/21*18);
}
.ruler .cm:nth-of-type(19):after {
content: "18";
color: black;
}
.ruler .cm:nth-of-type(20) {
left: calc(100%/21*19);
}
.ruler .cm:nth-of-type(20):after {
content: "19";
color: black;
}
.ruler .cm:nth-of-type(21) {
left: calc(100%/21*20);
}
.ruler .cm:nth-of-type(21):after {
content: "20";
color: black;
}
.ruler .cm:nth-of-type(22) {
left: 100%;
}
.ruler .cm:nth-of-type(22):after {
content: "";
color: black;
}
/* mm lines */
.ruler .mm:nth-of-type(1) {
left: 2px;
}
.ruler .mm:nth-of-type(2) {
left: 6px;
}
.ruler .mm:nth-of-type(3) {
left: 10px;
}
.ruler .mm:nth-of-type(4) {
left: 14px;
}
.ruler .mm:nth-of-type(5) {
left: 18px;
}
.ruler .mm:nth-of-type(6) {
left: 22px;
}
.ruler .mm:nth-of-type(7) {
left: 26px;
}
.ruler .mm:nth-of-type(8) {
left: 30px;
}
.ruler .mm:nth-of-type(9) {
left: 34px;
}
/* rotate ruler */
.ruler.vertical {
transform: rotate(90deg);
}
#rulerRotate {
display: none;
cursor: pointer;
margin-left: 5px;
} | 0.410993 | 0.092976 |
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html {
font-size: 62.5%;
}
body {
height: 100vh;
position: relative;
display: flex;
justify-content: space-between;
}
.container1 {
position: relative;
display:flex;
justify-content: center;
align-items: center;
width: 100%;
min-height: 100vh;
background-image: url('../assets/static/smoke2.gif');
background-size: cover;
}
.header {
display: flex;
position: fixed;
z-index: 95;
width: 100%;
top: 0;
justify-content: space-between;
align-items: stretch;
background-color: #201a16;
height: 95px;
padding: 20px 20px;
font-size: 13px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
margin-bottom: 0.5px;
}
.header__logo img {
width: 150px;
}
.header__logo a {
display: block;
}
.header__user-nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.header__user-link:link,
.header__user-link:visited {
display: block;
line-height: 13px;
font-family: "Roboto Condensed";
font-size: 400;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 2px;
padding: 0.75em 1em;
margin-left: 4px;
cursor: pointer;
color: #ffffff;
}
.header__user-link:hover {
color: rgba(155, 151, 151, 0.91);
}
.header__contact:link,
.header__contact:visited {
text-decoration: none;
display: block;
font-family: "futura-pt";
text-transform: uppercase;
font-weight: 500;
line-height: 13px;
letter-spacing: 2px;
margin-left: 17px;
padding: 13px 19.5px;
border: 2px solid rgb(255, 255, 255);
border-radius: 3px;
color: #ffffff;
}
.header__contact:hover {
background-color: #ffffff;
color: #201a16;
transition: all 0.1s;
}
.header__mobile-btn {
display: none;
background-color: #201a16;
border: none;
position: absolute;
top: 32.5px;
left: -60px;
height: 30px;
z-index: 102;
outline: none;
}
.header__mobile-btn:active {
transform: scale(0.95);
}
.mobile-btn-img1 {
width: 35px;
visibility: visible;
cursor: pointer;
position: absolute;
z-index: 102;
top: 0;
right: 0;
background-color: #201a16;
transition: transform 0.3s;
transform: scale(1);
}
.mobile-btn-img2 {
width: 22px;
cursor: pointer;
position: absolute;
top: 0;
right: 0;
transition: transform 0.3s;
transform: scale(0);
}
.mobile-nav {
position: fixed;
z-index: 101;
top: 0;
right: 0;
bottom: 0;
background-color: #201a16;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
width: 0;
height: 100vh;
font-size: 13px;
transition: width 0.3s;
}
.mobile-nav a:link,
.mobile-nav a:visited {
display: block;
line-height: 13px;
font-family: "Roboto Condensed";
font-size: 400;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 2px;
padding: 0.75em 1em;
cursor: pointer;
margin-left: 20px;
color: #ffffff;
}
.mobile-link:first-of-type {
margin-top: 24.5px;
}
.mobile-contact {
text-decoration: none;
display: block;
font-family: "futura-pt";
font-weight: 500;
line-height: 13px;
letter-spacing: 2px;
border: 2px solid rgb(255, 255, 255);
border-radius: 3px;
color: #ffffff;
}
@media (max-width: 640px) {
.header__user-nav {
display: none;
}
.header__mobile-btn {
width: 35px;
display: block;
}
}
/* Logogram Specific style */
.main {
flex:1;
max-width: 850px;
}
.text-bar {
width: 70%;
margin: 0 auto;
margin-bottom: 30px;
}
.text-bar--text {
height: 30px;
width:100%;
display: block;
opacity: .6;
text-decoration: none;
font-family: inherit;
font-size: 2.4rem;
border-radius: 5px;
border: none;
}
.text-bar--text:focus {
outline:none;
border: 1px solid black;
padding: 12px;
}
.options {
opacity: 0.5;
width:70%;
font-size: 1.6rem;
margin: 0 auto;
background-color: #ffffff49;
display: flex;
padding: 15px;
justify-content: space-around;
border-radius: 5px;
}
.options__form {
display:flex;
flex-direction: column;
margin-top: 10px;
font-size: 2rem;
line-height: 20px;
}
.option__item{
display: flex;
align-items: center;
margin-bottom: 3px;
text-decoration: none;
color: black;
}
.option__item label {
cursor: pointer;
margin-left: 5px;
}
.option__item input {
cursor: pointer;
}
@media (max-width:600px) {
html {
font-size: 50%;
}
.text-bar{
width:90%;
}
.options {
width:90%;
font-size: 1.3rem;
}
}
.btn {
margin: auto;
}
.btn__btn {
display: block;
margin: 40px auto;
padding: 5px;
border-radius: 5px;
font-size: 2rem;
font-weight: 700;
background-image: url('../assets/static/smoke2.gif');
background-size: cover;
color: black;
opacity: 0.6;
border: 0.4px solid black;
cursor: pointer;
}
.btn__btn:active {
transform: translateY(-1px) scale(0.98);
} | www/logogram/style/style.css | * {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html {
font-size: 62.5%;
}
body {
height: 100vh;
position: relative;
display: flex;
justify-content: space-between;
}
.container1 {
position: relative;
display:flex;
justify-content: center;
align-items: center;
width: 100%;
min-height: 100vh;
background-image: url('../assets/static/smoke2.gif');
background-size: cover;
}
.header {
display: flex;
position: fixed;
z-index: 95;
width: 100%;
top: 0;
justify-content: space-between;
align-items: stretch;
background-color: #201a16;
height: 95px;
padding: 20px 20px;
font-size: 13px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
margin-bottom: 0.5px;
}
.header__logo img {
width: 150px;
}
.header__logo a {
display: block;
}
.header__user-nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.header__user-link:link,
.header__user-link:visited {
display: block;
line-height: 13px;
font-family: "Roboto Condensed";
font-size: 400;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 2px;
padding: 0.75em 1em;
margin-left: 4px;
cursor: pointer;
color: #ffffff;
}
.header__user-link:hover {
color: rgba(155, 151, 151, 0.91);
}
.header__contact:link,
.header__contact:visited {
text-decoration: none;
display: block;
font-family: "futura-pt";
text-transform: uppercase;
font-weight: 500;
line-height: 13px;
letter-spacing: 2px;
margin-left: 17px;
padding: 13px 19.5px;
border: 2px solid rgb(255, 255, 255);
border-radius: 3px;
color: #ffffff;
}
.header__contact:hover {
background-color: #ffffff;
color: #201a16;
transition: all 0.1s;
}
.header__mobile-btn {
display: none;
background-color: #201a16;
border: none;
position: absolute;
top: 32.5px;
left: -60px;
height: 30px;
z-index: 102;
outline: none;
}
.header__mobile-btn:active {
transform: scale(0.95);
}
.mobile-btn-img1 {
width: 35px;
visibility: visible;
cursor: pointer;
position: absolute;
z-index: 102;
top: 0;
right: 0;
background-color: #201a16;
transition: transform 0.3s;
transform: scale(1);
}
.mobile-btn-img2 {
width: 22px;
cursor: pointer;
position: absolute;
top: 0;
right: 0;
transition: transform 0.3s;
transform: scale(0);
}
.mobile-nav {
position: fixed;
z-index: 101;
top: 0;
right: 0;
bottom: 0;
background-color: #201a16;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
width: 0;
height: 100vh;
font-size: 13px;
transition: width 0.3s;
}
.mobile-nav a:link,
.mobile-nav a:visited {
display: block;
line-height: 13px;
font-family: "Roboto Condensed";
font-size: 400;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 2px;
padding: 0.75em 1em;
cursor: pointer;
margin-left: 20px;
color: #ffffff;
}
.mobile-link:first-of-type {
margin-top: 24.5px;
}
.mobile-contact {
text-decoration: none;
display: block;
font-family: "futura-pt";
font-weight: 500;
line-height: 13px;
letter-spacing: 2px;
border: 2px solid rgb(255, 255, 255);
border-radius: 3px;
color: #ffffff;
}
@media (max-width: 640px) {
.header__user-nav {
display: none;
}
.header__mobile-btn {
width: 35px;
display: block;
}
}
/* Logogram Specific style */
.main {
flex:1;
max-width: 850px;
}
.text-bar {
width: 70%;
margin: 0 auto;
margin-bottom: 30px;
}
.text-bar--text {
height: 30px;
width:100%;
display: block;
opacity: .6;
text-decoration: none;
font-family: inherit;
font-size: 2.4rem;
border-radius: 5px;
border: none;
}
.text-bar--text:focus {
outline:none;
border: 1px solid black;
padding: 12px;
}
.options {
opacity: 0.5;
width:70%;
font-size: 1.6rem;
margin: 0 auto;
background-color: #ffffff49;
display: flex;
padding: 15px;
justify-content: space-around;
border-radius: 5px;
}
.options__form {
display:flex;
flex-direction: column;
margin-top: 10px;
font-size: 2rem;
line-height: 20px;
}
.option__item{
display: flex;
align-items: center;
margin-bottom: 3px;
text-decoration: none;
color: black;
}
.option__item label {
cursor: pointer;
margin-left: 5px;
}
.option__item input {
cursor: pointer;
}
@media (max-width:600px) {
html {
font-size: 50%;
}
.text-bar{
width:90%;
}
.options {
width:90%;
font-size: 1.3rem;
}
}
.btn {
margin: auto;
}
.btn__btn {
display: block;
margin: 40px auto;
padding: 5px;
border-radius: 5px;
font-size: 2rem;
font-weight: 700;
background-image: url('../assets/static/smoke2.gif');
background-size: cover;
color: black;
opacity: 0.6;
border: 0.4px solid black;
cursor: pointer;
}
.btn__btn:active {
transform: translateY(-1px) scale(0.98);
} | 0.46223 | 0.097562 |
––––––––––––––––––––––––––––––––– */
/*
3.815rem
3.052rem
2.441rem
1.953rem
1.563rem
1.25rem
1rem
0.8rem
0.64rem
0.512rem
0.41rem
0.328rem
0.262rem
0.209rem
*/
/* Root
––––––––––––––––––––––––––––––––– */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html {
font-size: calc(1rem + 2px + ((100vw - 600px) / 250));
font-family:
-apple-system,
BlinkMacSystemFont,
'avenir next',
avenir,
'helvetica neue',
helvetica,
ubuntu,
roboto,
noto,
'segoe ui',
arial,
sans-serif;
margin: 0;
padding: 0;
text-decoration-skip-ink: 'auto';
}
body {
padding: 0;
margin: calc((100vh / 25) * 1.563) calc((100vw / 25) * 1.563);
background-color: white;
font-weight: 400;
line-height: 1.563;
color: #343334;
}
/* Typography
––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4,
h5,
h6 {
margin-bottom: 1rem;
margin-top: 1em;
font-weight: bold;
}
h1 {
font-size: 3.052rem;
letter-spacing: -0.15rem;
line-height: 1;
}
h2 {
font-size: 2.441rem;
letter-spacing: -0.12rem;
line-height: 1.2;
}
h3 {
font-size: 1.953rem;
letter-spacing: -0.09rem;
line-height: 1.2;
}
h4 {
font-size: 1.563rem;
letter-spacing: -0.06rem;
line-height: 1.3;
}
h5 {
font-size: 1.25rem;
letter-spacing: -0.03rem;
line-height: 1.4;
}
h6 {
font-size: 1rem;
letter-spacing: 0;
line-height: 1.5;
}
p {
margin-bottom: 1.563rem;
}
p > *:last-child {
margin-bottom: 0;
}
a {
color: #343334;
text-decoration: underline;
text-decoration-color: #c0bfc0;
-webkit-text-decoration-color: #c0bfc0;
}
a:hover {
text-decoration: underline;
}
small {
font-size: 0.888rem;
}
hr {
border: 1px solid #343334;
margin: 3.052rem 0;
}
/* Buttons
––––––––––––––––––––––––––––––––– */
.button,
input[type=submit],
input[type=reset],
input[type=button],
button {
padding: 0.5rem 1.25rem;
font-size: 1rem;
border-radius: 0;
border: 2px solid #d8d8d8;
background-color: #d8d8d8;
color: white;
text-decoration: none;
margin-bottom: 1rem;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
display: inline-block;
line-height: initial;
}
.button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
button:hover {
cursor: pointer;
background-color: #c0bfc0;
border: 2px solid #c0bfc0;
color: white;
}
.button-primary,
button.button-primary,
input[type=submit].button-primary,
input[type=reset].button-primary,
input[type=button].button-primary {
color: white;
background-color: #343334;
border: 2px solid #343334;
}
.button-primary:hover,
button.button-primary:hover,
input[type=submit].button-primary:hover,
input[type=reset].button-primary:hover,
input[type=button].button-primary:hover {
color: white;
background-color: #272727;
border: 2px solid #272727;
}
.button-primary:focus,
button.button-primary:focus,
input[type=submit].button-primary:focus,
input[type=reset].button-primary:focus,
input[type=button].button-primary:focus {
border-color: #4178be;
}
/* Form
––––––––––––––––––––––––––––––––– */
label {
font-weight: bold;
display: flex;
}
input[type=email],
input[type=text],
input[type=number] {
padding: 0.5rem;
font-size: 1rem;
border: 2px solid #f6f6f6;
background-color: #f6f6f6;
color: #343334;
border-radius: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
input[type=checkbox] {
display: inline-block;
height: 1rem;
}
input:focus,
select:focus,
textarea:focus {
border: 2px solid #5aaafa;
outline: none;
}
input:invalid,
select:invalid,
textarea:invalid {
border: 2px solid #ff7d87;
box-shadow: none;
}
select {
-webkit-appearance: none;
padding: 0.5rem;
font-size: 1rem;
border: 2px solid #f6f6f6;
color: #343334;
border-radius: 0;
height: 2.5rem;
background-color: #f6f6f6;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 125.304 125.304"><path d="M62.652 103.895L0 21.41h125.304" fill="#343334"/></svg>');
background-repeat: no-repeat;
background-size: 1rem;
background-position: center right 0.5rem;
}
textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
font-size: 1rem;
border: 2px solid #f6f6f6;
color: #343334;
border-radius: 0;
resize: vertical;
background-color: #f6f6f6;;
box-sizing: border-box;
padding: 0.5rem;
font-family:
-apple-system,
BlinkMacSystemFont,
'avenir next',
avenir,
'helvetica neue',
helvetica,
ubuntu,
roboto,
noto,
'segoe ui',
arial,
sans-serif;
}
input[type=checkbox] {
font-size: 1rem;
border-radius: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: 2px solid #d8d8d8;
width: 1rem;
background-color: white;
align-self: center;
margin-right: 0.5rem;
}
input[type=checkbox]:focus,
input[type=checkbox]:checked:focus {
border-color: #5aaafa;
}
input[type=checkbox]:hover {
cursor: pointer;
}
input[type=checkbox]:checked {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="78.369" height="78.369" viewBox="0 0 78.369 78.369"><path fill="white" d="M78.05 19.015l-48.592 48.59c-.428.43-1.12.43-1.548 0L.32 40.016c-.427-.426-.427-1.12 0-1.547l6.704-6.704c.428-.427 1.12-.427 1.548 0l20.113 20.112 41.113-41.113c.43-.427 1.12-.427 1.548 0l6.703 6.704c.427.427.427 1.12 0 1.548z"/></svg>');
background-size: contain;
background-color: #343334;
border: 2px solid #343334;
}
input[type=radio] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 50%;
border: 2px solid #d8d8d8;
height: 1rem;
width: 1rem;
margin-right: 0.5rem;
align-self: center;
justify-content: center;
position: relative;
display: flex;
}
input[type=radio]:hover {
cursor: pointer;
}
input[type=radio]:focus,
input[type=radio]:checked:focus {
border-color: #5aaafa;
}
input[type=radio]:checked {
border: 2px solid #343334;
}
input[type=radio]:checked::before {
content: "";
width: calc(100% - 4px);
height: calc(100% - 4px);
background-color: #343334;
align-self: center;
border-radius: 50%;
}
/* Tables
––––––––––––––––––––––––––––––––– */
table {
width: 100%;
border-spacing: 0;
margin-bottom: 1.563rem;
}
th,
td {
padding: 0.5rem 0.5rem 0.5rem 0;
margin: 0;
}
th {
font-weight: bold;
text-align: left;
border-bottom: 2px solid #d8d8d8;
}
td {
border-bottom: 2px solid #eaeaea;
}
/* Code
––––––––––––––––––––––––––––––––– */
code {
font-family:
"SFMono-Regular",
Consolas,
"Liberation Mono",
Menlo,
Courier,
monospace;
font-size: 0.8rem;
white-space: nowrap;
background: #f6f6f6;
padding: 0 0.328rem;
display: inline-block;
vertical-align: middle;
}
p > code {
white-space: normal;
}
pre > code {
line-height: 1.563em;
display: block;
padding: 1rem;
white-space: pre;
margin-bottom: 1.563rem;
overflow: scroll;
}
/* Forces a new-line at the end of a code block for layout purposes. */
pre > code::after {
content: " ";
}
/* Blockquote
––––––––––––––––––––––––––––––––– */
blockquote {
border-left: 0.25rem solid #f6f6f6;
padding: 0 1rem;
margin-bottom: 1.563rem;
}
/* List
––––––––––––––––––––––––––––––––– */
ul {
margin: 0;
padding: 0;
list-style: disc outside;
}
ol {
list-style: decimal outside;
}
ol,
ul {
padding-left: 0;
margin-top: 0;
margin-bottom: 1.563rem;
}
li {
margin-left: 1.953rem;
margin-bottom: 0.64rem;
}
/* Keyboard
––––––––––––––––––––––––––––––––– */
kbd {
display: inline-block;
padding: 0 0.328rem;
font-family:
"SFMono-Regular",
Consolas,
"Liberation Mono",
Menlo,
Courier,
monospace;
font-size: 0.64rem;
color: #343334;
vertical-align: middle;
background-color: #f9f9f9;
border: solid 1px #d8d8d8;
border-bottom: solid 2px #a6a5a6;
}
/* Abbreviation
––––––––––––––––––––––––––––––––– */
abbr {
text-decoration: none;
border-bottom: 1px dashed #949394;
}
abbr:hover {
cursor: help;
}
/* Spinner
----------- */
.ss-spinner {
width: 2rem;
height: 2rem;
border-top: 2px solid black;
border-bottom: 2px solid black;
border-left: 2px solid black;
border-right: 2px solid transparent;
border-radius: 50%;
box-sizing: border-box;
animation: ss-spin 1s infinite linear;
}
@keyframes ss-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/* Util
––––––––––––––––––––––––––––––––– */
.u-readable {
max-width: 60ch;
width: 100%;
}
.u-full-width {
width: 100%;
}
.u-separator {
border-top: 2px solid #343334;
padding-top: 0.5rem;
margin-bottom: 2rem;
width: 100%;
}
.u-horizontal-center {
margin: 0 auto;
} | style.css | ––––––––––––––––––––––––––––––––– */
/*
3.815rem
3.052rem
2.441rem
1.953rem
1.563rem
1.25rem
1rem
0.8rem
0.64rem
0.512rem
0.41rem
0.328rem
0.262rem
0.209rem
*/
/* Root
––––––––––––––––––––––––––––––––– */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html {
font-size: calc(1rem + 2px + ((100vw - 600px) / 250));
font-family:
-apple-system,
BlinkMacSystemFont,
'avenir next',
avenir,
'helvetica neue',
helvetica,
ubuntu,
roboto,
noto,
'segoe ui',
arial,
sans-serif;
margin: 0;
padding: 0;
text-decoration-skip-ink: 'auto';
}
body {
padding: 0;
margin: calc((100vh / 25) * 1.563) calc((100vw / 25) * 1.563);
background-color: white;
font-weight: 400;
line-height: 1.563;
color: #343334;
}
/* Typography
––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4,
h5,
h6 {
margin-bottom: 1rem;
margin-top: 1em;
font-weight: bold;
}
h1 {
font-size: 3.052rem;
letter-spacing: -0.15rem;
line-height: 1;
}
h2 {
font-size: 2.441rem;
letter-spacing: -0.12rem;
line-height: 1.2;
}
h3 {
font-size: 1.953rem;
letter-spacing: -0.09rem;
line-height: 1.2;
}
h4 {
font-size: 1.563rem;
letter-spacing: -0.06rem;
line-height: 1.3;
}
h5 {
font-size: 1.25rem;
letter-spacing: -0.03rem;
line-height: 1.4;
}
h6 {
font-size: 1rem;
letter-spacing: 0;
line-height: 1.5;
}
p {
margin-bottom: 1.563rem;
}
p > *:last-child {
margin-bottom: 0;
}
a {
color: #343334;
text-decoration: underline;
text-decoration-color: #c0bfc0;
-webkit-text-decoration-color: #c0bfc0;
}
a:hover {
text-decoration: underline;
}
small {
font-size: 0.888rem;
}
hr {
border: 1px solid #343334;
margin: 3.052rem 0;
}
/* Buttons
––––––––––––––––––––––––––––––––– */
.button,
input[type=submit],
input[type=reset],
input[type=button],
button {
padding: 0.5rem 1.25rem;
font-size: 1rem;
border-radius: 0;
border: 2px solid #d8d8d8;
background-color: #d8d8d8;
color: white;
text-decoration: none;
margin-bottom: 1rem;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
display: inline-block;
line-height: initial;
}
.button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
button:hover {
cursor: pointer;
background-color: #c0bfc0;
border: 2px solid #c0bfc0;
color: white;
}
.button-primary,
button.button-primary,
input[type=submit].button-primary,
input[type=reset].button-primary,
input[type=button].button-primary {
color: white;
background-color: #343334;
border: 2px solid #343334;
}
.button-primary:hover,
button.button-primary:hover,
input[type=submit].button-primary:hover,
input[type=reset].button-primary:hover,
input[type=button].button-primary:hover {
color: white;
background-color: #272727;
border: 2px solid #272727;
}
.button-primary:focus,
button.button-primary:focus,
input[type=submit].button-primary:focus,
input[type=reset].button-primary:focus,
input[type=button].button-primary:focus {
border-color: #4178be;
}
/* Form
––––––––––––––––––––––––––––––––– */
label {
font-weight: bold;
display: flex;
}
input[type=email],
input[type=text],
input[type=number] {
padding: 0.5rem;
font-size: 1rem;
border: 2px solid #f6f6f6;
background-color: #f6f6f6;
color: #343334;
border-radius: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
input[type=checkbox] {
display: inline-block;
height: 1rem;
}
input:focus,
select:focus,
textarea:focus {
border: 2px solid #5aaafa;
outline: none;
}
input:invalid,
select:invalid,
textarea:invalid {
border: 2px solid #ff7d87;
box-shadow: none;
}
select {
-webkit-appearance: none;
padding: 0.5rem;
font-size: 1rem;
border: 2px solid #f6f6f6;
color: #343334;
border-radius: 0;
height: 2.5rem;
background-color: #f6f6f6;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 125.304 125.304"><path d="M62.652 103.895L0 21.41h125.304" fill="#343334"/></svg>');
background-repeat: no-repeat;
background-size: 1rem;
background-position: center right 0.5rem;
}
textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
font-size: 1rem;
border: 2px solid #f6f6f6;
color: #343334;
border-radius: 0;
resize: vertical;
background-color: #f6f6f6;;
box-sizing: border-box;
padding: 0.5rem;
font-family:
-apple-system,
BlinkMacSystemFont,
'avenir next',
avenir,
'helvetica neue',
helvetica,
ubuntu,
roboto,
noto,
'segoe ui',
arial,
sans-serif;
}
input[type=checkbox] {
font-size: 1rem;
border-radius: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: 2px solid #d8d8d8;
width: 1rem;
background-color: white;
align-self: center;
margin-right: 0.5rem;
}
input[type=checkbox]:focus,
input[type=checkbox]:checked:focus {
border-color: #5aaafa;
}
input[type=checkbox]:hover {
cursor: pointer;
}
input[type=checkbox]:checked {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="78.369" height="78.369" viewBox="0 0 78.369 78.369"><path fill="white" d="M78.05 19.015l-48.592 48.59c-.428.43-1.12.43-1.548 0L.32 40.016c-.427-.426-.427-1.12 0-1.547l6.704-6.704c.428-.427 1.12-.427 1.548 0l20.113 20.112 41.113-41.113c.43-.427 1.12-.427 1.548 0l6.703 6.704c.427.427.427 1.12 0 1.548z"/></svg>');
background-size: contain;
background-color: #343334;
border: 2px solid #343334;
}
input[type=radio] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 50%;
border: 2px solid #d8d8d8;
height: 1rem;
width: 1rem;
margin-right: 0.5rem;
align-self: center;
justify-content: center;
position: relative;
display: flex;
}
input[type=radio]:hover {
cursor: pointer;
}
input[type=radio]:focus,
input[type=radio]:checked:focus {
border-color: #5aaafa;
}
input[type=radio]:checked {
border: 2px solid #343334;
}
input[type=radio]:checked::before {
content: "";
width: calc(100% - 4px);
height: calc(100% - 4px);
background-color: #343334;
align-self: center;
border-radius: 50%;
}
/* Tables
––––––––––––––––––––––––––––––––– */
table {
width: 100%;
border-spacing: 0;
margin-bottom: 1.563rem;
}
th,
td {
padding: 0.5rem 0.5rem 0.5rem 0;
margin: 0;
}
th {
font-weight: bold;
text-align: left;
border-bottom: 2px solid #d8d8d8;
}
td {
border-bottom: 2px solid #eaeaea;
}
/* Code
––––––––––––––––––––––––––––––––– */
code {
font-family:
"SFMono-Regular",
Consolas,
"Liberation Mono",
Menlo,
Courier,
monospace;
font-size: 0.8rem;
white-space: nowrap;
background: #f6f6f6;
padding: 0 0.328rem;
display: inline-block;
vertical-align: middle;
}
p > code {
white-space: normal;
}
pre > code {
line-height: 1.563em;
display: block;
padding: 1rem;
white-space: pre;
margin-bottom: 1.563rem;
overflow: scroll;
}
/* Forces a new-line at the end of a code block for layout purposes. */
pre > code::after {
content: " ";
}
/* Blockquote
––––––––––––––––––––––––––––––––– */
blockquote {
border-left: 0.25rem solid #f6f6f6;
padding: 0 1rem;
margin-bottom: 1.563rem;
}
/* List
––––––––––––––––––––––––––––––––– */
ul {
margin: 0;
padding: 0;
list-style: disc outside;
}
ol {
list-style: decimal outside;
}
ol,
ul {
padding-left: 0;
margin-top: 0;
margin-bottom: 1.563rem;
}
li {
margin-left: 1.953rem;
margin-bottom: 0.64rem;
}
/* Keyboard
––––––––––––––––––––––––––––––––– */
kbd {
display: inline-block;
padding: 0 0.328rem;
font-family:
"SFMono-Regular",
Consolas,
"Liberation Mono",
Menlo,
Courier,
monospace;
font-size: 0.64rem;
color: #343334;
vertical-align: middle;
background-color: #f9f9f9;
border: solid 1px #d8d8d8;
border-bottom: solid 2px #a6a5a6;
}
/* Abbreviation
––––––––––––––––––––––––––––––––– */
abbr {
text-decoration: none;
border-bottom: 1px dashed #949394;
}
abbr:hover {
cursor: help;
}
/* Spinner
----------- */
.ss-spinner {
width: 2rem;
height: 2rem;
border-top: 2px solid black;
border-bottom: 2px solid black;
border-left: 2px solid black;
border-right: 2px solid transparent;
border-radius: 50%;
box-sizing: border-box;
animation: ss-spin 1s infinite linear;
}
@keyframes ss-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/* Util
––––––––––––––––––––––––––––––––– */
.u-readable {
max-width: 60ch;
width: 100%;
}
.u-full-width {
width: 100%;
}
.u-separator {
border-top: 2px solid #343334;
padding-top: 0.5rem;
margin-bottom: 2rem;
width: 100%;
}
.u-horizontal-center {
margin: 0 auto;
} | 0.297572 | 0.075414 |
@charset "UTF-8"
/* CSS Document */
.hidden
{
display: none;
}
body
{
background-color: white;
}
body
{
font-family:Times New Roman, Helvetica, sans-serif;
font-size:14px;
}
h2 {
color: white;
}
img {
border-radius: 20%;
isolation: ;
display: block;
margin-left: auto;
margin-right: auto;
}
h1
{
color: red;
}
h3{
font-style: sans-serif;
font-size: 16px;
}
/*container for all page*/
#container
{
margin: auto;
width:1000px;
height: auto;
overflow: hidden;
background-color: pink;
padding: 20px 10px;
flex-wrap: wrap;
}
/*Main page*/
.mainheading {
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
justify-content: space-between;
width: 1000px;
height: 200px;
background-color: pink;
}
.navcon {
background-color: pink;
width: 300px;
height: 200px;
margin: 20px;
}
.mainnav {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
flex-direction: column;
width: 400px;
height: 250px;
background-color: pink;
}
.nornav {
background-color: pink;
width: 400px;
height: 190px;
margin: 10px;
}
.flex-container {
display: -webkit-flex;
display: row;
-webkit-flex-direction: row;
flex-direction: row;
width: 400px;
height: 250px;
background-color: pink;
}
.flex-item {
background-color: pink;
width: 100px;
height: 100px;
margin: 10px;
}
#navCon
{
width: 650px;
overflow: hidden;
margin-bottom: auto;
margin-left: auto;
display: flex;
flex-direction: column-reverse;
align-items: flex-end;
}
#posting
{
width: 400px;
height: auto;
background-color: #9a0d67;
margin-top: auto;
margin-left: auto;
}
.oldpic {
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
width: 1100px;
height: 550px;
background-color: pink;
}
.olditem {
background-color: black;
width: 330px;
height: 410px;
margin: 50px;
}
div {
font-size:medium;
}
.newpic {
display: -webkit-flex;
display: flex;
width: 1100px;
height: 550px;
background-color: pink;
}
.newitem {
background-color: grey;
width: 330px;
height: 410px;
margin: 20px;
margin-top: 70px;
}
.punch {
display: -webkit-flex;
display: flex;
width: 600px;
height: 550px;
background-color: pink;
}
.punchitem {
background-color: #FFE4E1;
width: 410px;
height: 510px;
margin: auto;
}
/* css for footer*/
.lastthing {
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
width: 1000px;
height: 160px;
background-color: #FFDEAD;
}
.lastitem {
background-color: #FFDEAD;
width: 300px;
height: 100px;
margin: 10px;
}
/*About Us page*/
.aboutbox {
display: -webkit-flex;
display: flex;
-webkit-align-items: flex-start;
justify-content: space-around;
align-items: flex-start;
width: 1000px;
height: 100px;
background-color: pink;
}
.aboutitem {
background-color: #FFE4C4;
width: 500px;
height: 200px;
margin: 10px;
}
.downabout {
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
align-items: center;
width: 1000px;
height: 500px;
background-color: pink;
}
.downtext {
background-color: pink;
width: 500px;
height: 150px;
margin: 40px;
}
/*css for blog page*/
.blogformid {
display: flex;
width: 1000px;
height: 350px;
background-color: pink;
}
.formiditem {
background-color: pink;
width: 190px;
min-height: 200px;
margin: 5px;
}
.formiditem1 {
align-self: flex-start;
}
.formiditem2 {
align-self: flex-end;
}
.formiditem3 {
align-self: center;
}
.formiditem4 {
align-self: baseline;
}
.formiditem5 {
align-self: stretch;
}
.blogforbreme {
display: flex;
width: 1000px;
height: 350px;
background-color: pink;
}
.bremeitem {
background-color: pink;
width: 190px;
min-height: 100px;
margin: 0px;
}
.bremeitem1 {
align-self: flex-end;
}
.bremeitem2 {
align-self: flex-start;
}
.bremeitem3 {
align-self: flex-end;
}
.bremeitem4 {
align-self: flex-start;
height: 100px
width:10px;
}
.bremeitem5 {
align-self: baseline;
}
.blogforsei {
display: flex;
width: 1000px;
height: 470px;
}
.seiitem {
width: 300px;
height: 450px;
margin: 10px;
}
.blogfornun {
display: flex;
width: 1000px;
height: 470px;
}
.nunitem {
width: 300px;
height: 450px;
margin: 10px;
} | css/main.css | @charset "UTF-8"
/* CSS Document */
.hidden
{
display: none;
}
body
{
background-color: white;
}
body
{
font-family:Times New Roman, Helvetica, sans-serif;
font-size:14px;
}
h2 {
color: white;
}
img {
border-radius: 20%;
isolation: ;
display: block;
margin-left: auto;
margin-right: auto;
}
h1
{
color: red;
}
h3{
font-style: sans-serif;
font-size: 16px;
}
/*container for all page*/
#container
{
margin: auto;
width:1000px;
height: auto;
overflow: hidden;
background-color: pink;
padding: 20px 10px;
flex-wrap: wrap;
}
/*Main page*/
.mainheading {
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
justify-content: space-between;
width: 1000px;
height: 200px;
background-color: pink;
}
.navcon {
background-color: pink;
width: 300px;
height: 200px;
margin: 20px;
}
.mainnav {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
flex-direction: column;
width: 400px;
height: 250px;
background-color: pink;
}
.nornav {
background-color: pink;
width: 400px;
height: 190px;
margin: 10px;
}
.flex-container {
display: -webkit-flex;
display: row;
-webkit-flex-direction: row;
flex-direction: row;
width: 400px;
height: 250px;
background-color: pink;
}
.flex-item {
background-color: pink;
width: 100px;
height: 100px;
margin: 10px;
}
#navCon
{
width: 650px;
overflow: hidden;
margin-bottom: auto;
margin-left: auto;
display: flex;
flex-direction: column-reverse;
align-items: flex-end;
}
#posting
{
width: 400px;
height: auto;
background-color: #9a0d67;
margin-top: auto;
margin-left: auto;
}
.oldpic {
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
width: 1100px;
height: 550px;
background-color: pink;
}
.olditem {
background-color: black;
width: 330px;
height: 410px;
margin: 50px;
}
div {
font-size:medium;
}
.newpic {
display: -webkit-flex;
display: flex;
width: 1100px;
height: 550px;
background-color: pink;
}
.newitem {
background-color: grey;
width: 330px;
height: 410px;
margin: 20px;
margin-top: 70px;
}
.punch {
display: -webkit-flex;
display: flex;
width: 600px;
height: 550px;
background-color: pink;
}
.punchitem {
background-color: #FFE4E1;
width: 410px;
height: 510px;
margin: auto;
}
/* css for footer*/
.lastthing {
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
width: 1000px;
height: 160px;
background-color: #FFDEAD;
}
.lastitem {
background-color: #FFDEAD;
width: 300px;
height: 100px;
margin: 10px;
}
/*About Us page*/
.aboutbox {
display: -webkit-flex;
display: flex;
-webkit-align-items: flex-start;
justify-content: space-around;
align-items: flex-start;
width: 1000px;
height: 100px;
background-color: pink;
}
.aboutitem {
background-color: #FFE4C4;
width: 500px;
height: 200px;
margin: 10px;
}
.downabout {
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
align-items: center;
width: 1000px;
height: 500px;
background-color: pink;
}
.downtext {
background-color: pink;
width: 500px;
height: 150px;
margin: 40px;
}
/*css for blog page*/
.blogformid {
display: flex;
width: 1000px;
height: 350px;
background-color: pink;
}
.formiditem {
background-color: pink;
width: 190px;
min-height: 200px;
margin: 5px;
}
.formiditem1 {
align-self: flex-start;
}
.formiditem2 {
align-self: flex-end;
}
.formiditem3 {
align-self: center;
}
.formiditem4 {
align-self: baseline;
}
.formiditem5 {
align-self: stretch;
}
.blogforbreme {
display: flex;
width: 1000px;
height: 350px;
background-color: pink;
}
.bremeitem {
background-color: pink;
width: 190px;
min-height: 100px;
margin: 0px;
}
.bremeitem1 {
align-self: flex-end;
}
.bremeitem2 {
align-self: flex-start;
}
.bremeitem3 {
align-self: flex-end;
}
.bremeitem4 {
align-self: flex-start;
height: 100px
width:10px;
}
.bremeitem5 {
align-self: baseline;
}
.blogforsei {
display: flex;
width: 1000px;
height: 470px;
}
.seiitem {
width: 300px;
height: 450px;
margin: 10px;
}
.blogfornun {
display: flex;
width: 1000px;
height: 470px;
}
.nunitem {
width: 300px;
height: 450px;
margin: 10px;
} | 0.241937 | 0.043834 |
@media (min-width:576px) {
.box-comment-figure img {
max-width: none
}
.box-info-creative {
text-align: left;
padding: 26px 0 0
}
.box-info-creative-link {
top: 20px;
margin-left: 46%
}
* + .box-info-creative-text {
margin-top: 18px
}
* + .box-info-creative-link {
margin-top: 0
}
.box-info-rose {
padding-bottom: 0
}
.box-info-rose-2 {
padding-top: 0
}
html .group-custom {
-webkit-flex-wrap: nowrap;
flex-wrap: nowrap
}
html .group-custom > * {
-webkit-box-flex: 1;
-webkit-flex: 1 1 auto;
flex: 1 1 auto
}
.table-checkout td {
padding: 22px 50px 22px 24px
}
.rd-form .button {
width: auto
}
#form-output-global {
left: 30px
}
.rd-form-inline {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
flex-direction: row
}
.rd-form-inline .button {
display: block
}
.snackbars {
max-width: 540px;
padding: 12px 15px;
font-size: 15px
}
* + .list-schedule {
margin-top: 20px
}
.footer-classic-brand + * {
margin-top: 20px
}
.footer-classic-title + * {
margin-top: 20px
}
.product-modern {
max-width: none
}
.product-dawn .unit-left {
-webkit-flex-basis: 37%;
flex-basis: 37%;
max-width: 37%
}
.product-terri {
text-align: center;
max-width: none;
margin-left: 0;
margin-right: 0
}
.product-terri-figure {
min-height: 260px
}
.product-top-panel {
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
justify-content: space-between
}
.box-radio {
padding-left: 26px;
padding-right: 26px
}
.event-classic {
text-align: left
}
.event-classic > .unit {
min-height: 310px
}
.event-classic > .unit > .unit-left {
width: 25%;
height: auto
}
.row-sm-30 {
margin-bottom: -30px
}
.row-sm-30:empty {
margin-bottom: 0
}
.row-sm-30 > * {
margin-bottom: 30px
}
.container-fluid.grid-demonstration [class^=col] {
padding: 10px
}
.grid-system-bordered * + .row {
margin-top: 0
}
.bg-image-4::before {
display: none
}
.bg-image-6,
.bg-image-7 {
display: block
}
.ui-to-top {
right: 40px;
bottom: 40px
}
.rd-navbar-project {
width: 350px
}
.swiper-slider-5.swiper-container-vertical {
max-height: 520px
}
.swiper-slider-5.swiper-container-vertical .swiper-slide-last {
height: 170px
}
.swiper-slider-6 .swiper-title-3 {
letter-spacing: .2em
}
.swiper-slider-6 .swiper-slide::before {
display: none
}
.swiper-slider-7.swiper-container-vertical {
max-height: 350px
}
.swiper-slider-7.swiper-container-vertical .swiper-slide-last {
height: 42px
}
.google-map {
height: 400px
}
.tabs-jean .nav-tabs-wrap {
padding: 0 20px 1px
}
.tabs-jean .nav-tabs {
counter-reset: li;
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-around;
justify-content: space-around;
margin-left: -30px
}
.tabs-jean .nav-tabs > * {
margin-left: 30px
}
.tabs-jean .nav-tabs li a::before {
content: counter(li,decimal-leading-zero);
counter-increment: li
}
.tabs-jean .nav-link {
padding: 35px 0
}
.tabs-jean .nav-link::after {
display: block
}
.tabs-jean .nav-link.active,
.tabs-jean .nav-link:hover {
color: #76aa6f;
background: 0 0
}
.tabs-jean .tab-content {
position: relative;
padding: 8% 0 14% 17%;
z-index: 1
}
.tabs-jean .tab-content::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
width: 44%;
border: 15px solid #f5f5f5;
z-index: -1
}
.tabs-jean * + .nav-tabs-wrap {
margin-top: 40px
}
.countdown-wrap {
margin-bottom: -30px;
margin-left: -30px
}
.countdown-wrap:empty {
margin-bottom: 0;
margin-left: 0
}
.countdown-wrap > * {
display: inline-block;
margin-top: 0;
margin-bottom: 30px;
margin-left: 30px
}
.countdown-seconds {
display: block
}
* + .countdown-heading {
margin-top: 14px
}
.owl-style-14 .owl-style-14 {
padding-left: 30px;
padding-right: 30px
}
.slick-slider-2 {
max-width: 510px
}
.product-stepper .stepper {
padding-right: 38px
}
.product-stepper input[type=number] {
padding: 17px 10px;
max-width: 70px;
min-height: 70px;
font-size: 24px
}
.product-stepper .stepper-arrow {
width: 32px;
height: 32px;
font-size: 24px;
line-height: 32px
}
}
@media (min-width:768px) {
body {
font-size: 15px
}
.heading-1,
h1 {
font-size: 50px
}
.counter-classic-number .symbol,
.heading-2,
h2 {
font-size: 35px
}
.event-classic-date,
.heading-3,
h3 {
font-size: 26px
}
.event-classic-month,
.heading-4,
.quote-classic-text,
h4 {
font-size: 20px
}
.event-classic-hours,
.heading-5,
.heading-7,
.product-dawn-price,
h5 {
font-size: 18px
}
.heading-6,
h6 {
font-size: 16px
}
.big {
font-size: 18px
}
* + .privacy-link {
margin-top: 45px
}
.row + .link-classic {
margin-top: 45px
}
.box-icon-classic {
text-align: left
}
.box-icon-classic-icon,
.box-icon-classic-svg {
height: 70px;
width: 70px
}
.box-icon-classic-icon {
font-size: 30px;
line-height: 70px
}
.box-icon-classic-svg svg {
max-width: 46px
}
* + .box-icon-classic-text {
margin-top: 10px
}
.box-icon-modern {
text-align: left
}
.box-icon-modern-header {
min-height: 70px
}
.box-icon-modern-icon {
font-size: 42px
}
.box-icon-modern-count {
font-size: 60px
}
.box-icon-modern-svg {
top: -10px
}
.box-icon-modern-svg svg {
max-width: 60px
}
.box-icon-modern-count + .box-icon-modern-icon {
margin-left: 30px
}
.box-icon-modern-count + .box-icon-modern-svg {
margin-left: 20px
}
* + .box-icon-classic-text {
margin-top: 10px
}
.box-icon-creative {
text-align: left
}
.box-icon-creative-icon {
font-size: 40px
}
* + .box-icon-creative-text {
margin-top: 4px
}
.box-icon-nancy {
text-align: left
}
.box-icon-nancy-icon,
.box-icon-nancy-svg {
height: 70px;
width: 70px
}
.box-icon-nancy-svg .svg-bg {
width: 67px
}
.box-icon-nancy-svg .svg-icon {
width: 54px
}
* + .box-icon-nancy-text {
margin-top: 10px
}
.box-icon-kelly {
text-align: left;
padding-top: 30px;
padding-bottom: 30px
}
.box-icon-kelly-svg .svg-icon {
width: 60px
}
.box-comment {
padding-bottom: 45px
}
.box-comment > .box-comment {
margin-top: 45px;
padding-top: 45px;
margin-left: 70px
}
.box-comment + h4 {
margin-top: 40px
}
.box-comment + .box-comment {
margin-top: 45px
}
.box-info-modern-figure {
padding: 15px
}
* + .box-info-modern-title {
margin-top: 22px
}
* + .box-info-modern-text {
margin-top: 10px
}
.box-info-renee-decor::before {
height: 54px
}
* + .box-info-renee-subtitle {
margin-top: 25px
}
* + .box-info-renee-title {
margin-top: 20px
}
* + .box-info-renee-text {
margin-top: 20px
}
* + .box-info-renee-link {
margin-top: 20px
}
.box-info-rose {
text-align: left
}
.box-info-rose-icon {
font-size: 30px;
line-height: 1.6
}
.box-info-rose-title + .unit {
margin-top: 18px
}
.box-info-rose-text + .link-classic {
margin-top: 16px
}
.box-info-beryl-time {
letter-spacing: .3em
}
* + .box-info-beryl-time {
margin-top: 20px
}
* + .box-info-beryl-text {
margin-top: 20px
}
.box-about h2 + p {
margin-top: 20px
}
.box-about p + p {
margin-top: 20px
}
.list-xl > li + li {
margin-top: 50px
}
.list-terms dd + dt {
margin-top: 45px
}
* + .table-custom-responsive {
margin-top: 40px
}
.table-checkout td {
font-size: 18px
}
.button {
padding: 9px 29px
}
.button-sm {
padding: 6px 14px
}
.group-middle .button-sm {
padding: 6px 0
}
.button-lg {
padding: 14px 45px
}
.button-xl {
padding: 11px 45px
}
.button-icon-2 {
font-size: 24px;
min-width: 50px
}
.button-icon-3 {
font-size: 22px;
min-width: 40px;
padding-left: 5px;
padding-right: 5px
}
.rd-form .button-icon-2 {
min-width: 60px
}
.rd-form .row + .button,
.rd-form .row + .group-middle {
margin-top: 60px
}
* + .rd-form {
margin-top: 30px
}
.form-wrap + * {
margin-top: 30px
}
.form-wrap + .button,
.form-wrap + .group-button-1 {
margin-top: 60px
}
.form-input {
font-size: 15px;
min-height: 60px;
padding: 17px 0
}
.form-label {
top: 30px;
font-size: 15px
}
.form-label-outside {
position: static
}
.form-label-outside,
.form-label-outside.auto-fill,
.form-label-outside.focus {
-webkit-transform: none;
-ms-transform: none;
transform: none
}
.checkbox-inline + .group-button-1 {
margin-top: 60px
}
.rd-form-inline .form-button {
min-height: 60px
}
.rd-form-inline .form-button .button {
padding-top: 14px;
padding-bottom: 14px
}
.post-classic-content {
padding: 25px 7% 30px
}
.post-classic-text {
line-height: 1.74
}
* + .post-classic-title {
margin-top: 14px
}
* + .post-classic-text {
margin-top: 12px
}
* + .post-modern-title {
margin-top: 20px
}
* + .post-modern-figure {
margin-top: 30px
}
* + .post-modern-text {
margin-top: 30px
}
* + .post-modern-link {
margin-top: 22px
}
* + .post-creative-content {
margin-top: 18px
}
* + .post-creative-time {
margin-top: 12px
}
.post-lisa-content {
padding: 30px
}
.post-nikki {
text-align: left
}
.post-nikki .unit .post-nikki-figure {
width: 150px
}
.post-nikki-body {
padding: 30px
}
.quote-classic {
text-align: left
}
.quote-classic-text {
padding-top: 0
}
.quote-classic-text::before {
top: 8%;
left: -4px;
font-size: 80px;
-webkit-transform: none;
-ms-transform: none;
transform: none
}
.quote-classic-author {
padding-top: 24px
}
.quote-classic-author,
.quote-classic-text {
padding-left: 58px
}
* + .quote-classic {
margin-top: 34px
}
* + .quote-classic-author {
margin-top: 22px
}
.post-modern + .quote-classic {
margin-top: 40px
}
.quote-classic + p {
margin-top: 36px
}
.quote-classic-big {
text-align: left
}
.quote-classic-big-text {
padding-top: 0
}
.quote-classic-big-text {
padding-left: 70px
}
.quote-classic-big-text::before {
top: 8%;
left: -4px;
font-size: 80px;
-webkit-transform: none;
-ms-transform: none;
transform: none
}
* + .quote-classic-big {
margin-top: 34px
}
.quote-modern .unit {
display: -webkit-inline-flex;
display: inline-flex;
text-align: left
}
.quote-creative {
text-align: left;
padding: 40px 30px
}
.quote-creative-text {
font-size: 20px
}
.quote-creative-rating .icon {
font-size: 24px
}
* + .quote-creative-rating {
margin-top: 18px
}
.quote-creative-rating + .unit {
margin-top: 35px
}
.quote-minimal-text {
font-size: 18px
}
.quote-carly {
text-align: left
}
.quote-carly-text {
padding-top: 0;
font-size: 18px
}
.quote-carly-text::before {
top: 6px;
left: 0;
font-size: 80px;
-webkit-transform: none;
-ms-transform: none;
transform: none
}
.quote-carly-footer,
.quote-carly-text {
padding-left: 60px
}
* + .quote-carly-footer {
margin-top: 30px;
padding-top: 30px
}
* + .breadcrumbs-custom-text {
margin-top: 20px
}
.pagination {
padding-left: 70px;
padding-right: 70px
}
.page-item-control:first-child {
left: 30px
}
.page-item-control:last-child {
right: 30px
}
* + .pagination-wrap {
margin-top: 55px
}
.contacts-creative .icon {
line-height: 24px
}
.contacts-creative li + li {
margin-top: 18px
}
.footer-classic {
text-align: left
}
.footer-classic-panel {
text-align: left;
padding: 30px 0
}
.list-schedule li > :first-child {
min-width: 174px
}
* + .list-schedule {
margin-top: 30px
}
.footer-classic-brand + * {
margin-top: 30px
}
.footer-classic-title + * {
margin-top: 30px
}
.footer-modern {
text-align: left
}
.footer-modern-list > li {
text-indent: -34px;
padding-left: 34px
}
.footer-modern-list > li::before {
width: 17px;
margin-right: 17px
}
.footer-modern-title + .row {
margin-top: 35px
}
.footer-creative {
text-align: left
}
.footer-creative .row + .row {
margin-top: 60px
}
.footer-creative-title {
display: block;
padding-right: 0;
border-right-width: 0
}
.footer-creative-list li + li {
margin-top: 20px
}
.contacts-holly li + li {
margin-top: 30px
}
.footer-creative-panel {
padding: 30px 0
}
.footer-creative-title + * {
margin-top: 34px
}
.footer-corporate {
text-align: left
}
.footer-corporate-panel {
padding: 30px 0
}
.footer-corporate-info {
text-align: left
}
.footer-corporate-list {
margin-bottom: -9px;
max-width: 250px
}
.footer-corporate-list > * {
margin-bottom: 9px
}
.footer-corporate-info .icon {
font-size: 40px;
min-width: 40px
}
.footer-corporate-info > li + li {
margin-top: 22px
}
* + .footer-corporate-decor {
margin-top: 16px
}
.footer-corporate-decor + * {
margin-top: 28px
}
.product-modern .product-badge {
top: 20px;
left: 25px
}
* + .product-modern-text {
margin-top: 18px
}
.product-modern-text + .button {
margin-top: 30px
}
.product-beth {
text-align: left
}
* + .product-beth-subtitle {
margin-top: 20px
}
* + .product-beth-text {
margin-top: 20px
}
.product-beth-text + .group-middle {
margin-top: 40px
}
.product-dawn .unit-body {
padding-left: 30px
}
* + .product-dawn-price {
margin-top: 14px
}
.product-dawn-price + .button {
margin-top: 20px
}
.single-product .group-middle + p {
margin-top: 30px
}
.single-product hr + .group-middle {
margin-top: 30px
}
* + .list-description {
margin-top: 30px
}
.radio-panel .radio-custom,
.radio-panel .radio-custom-dummy {
top: 4px
}
.radio-panel .radio-inline {
font-size: 18px
}
* + .box-radio {
margin-top: 40px
}
.promo-classic {
padding: 40px 30px 120px
}
.team-karen-body {
padding-top: 2px;
padding-bottom: 40px
}
* + .team-karen-list-social {
margin-top: 14px
}
.team-info {
padding-top: 25px;
padding-bottom: 40px
}
* + .team-info-title {
margin-top: 16px
}
* + .team-info-text {
margin-top: 12px
}
.event-classic > .unit {
min-height: 350px
}
.event-classic-body {
padding: 30px 5%
}
.event-classic-body .unit-body {
max-width: 70%
}
.event-classic-hours {
display: block;
margin-left: 0
}
* + .event-classic-panel {
margin-top: 12px
}
* + .event-classic-text {
margin-top: 20px
}
* + .event-classic-link {
margin-top: 20px
}
* + .row {
margin-top: 40px
}
* + .owl-carousel {
margin-top: 40px
}
* + .row-sm {
margin-top: 35px
}
* + .offset-top-md-20 {
margin-top: 20px
}
h3 + .big {
margin-top: 24px
}
.row + .row {
margin-top: 50px
}
.row + .button {
margin-top: 50px
}
.row-md-30 {
margin-bottom: -30px
}
.row-md-30:empty {
margin-bottom: 0
}
.row-md-30 > * {
margin-bottom: 30px
}
.row-md-40 {
margin-bottom: -40px
}
.row-md-40:empty {
margin-bottom: 0
}
.row-md-40 > * {
margin-bottom: 40px
}
.row-md-50 {
margin-bottom: -50px
}
.row-md-50:empty {
margin-bottom: 0
}
.row-md-50 > * {
margin-bottom: 50px
}
.row-md-60 {
margin-bottom: -60px
}
.row-md-60:empty {
margin-bottom: 0
}
.row-md-60 > * {
margin-bottom: 60px
}
.section-sm {
padding: 40px 0
}
.section-sm.section-first {
padding-top: 80px
}
.section-sm.section-last {
padding-bottom: 80px
}
.section-md {
padding: 60px 0
}
.section-lg {
padding: 70px 0
}
.section-xl {
padding: 80px 0
}
.section-xxl {
padding: 90px 0
}
.section-inset-2 {
padding: 65px 0
}
.section-single * + .countdown-wrap {
margin-top: 40px
}
.section-single * + .rd-mailform-wrap {
margin-top: 40px
}
.container-fluid.grid-demonstration [class^=col] {
padding: 15px 10px
}
.grid-system-bordered [class*=col] {
padding-top: 25px;
padding-bottom: 25px
}
.grid-system-outline * + .row {
margin-top: 45px
}
.image-decor-left {
left: -12%;
right: auto
}
.image-decor-right {
right: -12%;
left: auto
}
.box-color-line {
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
justify-content: flex-start
}
.title-classic {
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center
}
.title-classic-title {
max-width: 40%;
-webkit-flex-shrink: 0;
flex-shrink: 0
}
.title-classic-title + .title-classic-subtitle {
padding-left: 40px;
border-left: 1px solid #e1e1e1
}
* + .title-style-3 {
margin-top: 12px
}
* + .title-style-4 {
margin-top: 12px
}
* + .title-style-5 {
margin-top: 25px
}
.bordered-2 > div + div > * {
padding-top: 40px;
border-top: 1px solid #e1e1e1
}
.swiper-slider-1 * + .swiper-title-1 {
margin-top: 12px
}
.swiper-slider-1 * + .swiper-title-2 {
margin-top: 16px
}
.swiper-slider-2 * + .swiper-text {
margin-top: 18px
}
.swiper-slider-3 .swiper-title-2 span {
display: inline-block;
vertical-align: middle;
margin-right: 22px;
margin-bottom: 0
}
.swiper-slider-5.swiper-container-vertical {
max-height: 600px
}
.swiper-slider-5.swiper-container-vertical .swiper-slide-last {
height: 210px
}
* + .swiper-slider-5 {
margin-top: 40px
}
.swiper-slider-6 .swiper-box {
padding-left: 30px
}
.swiper-slider-6 .swiper-box .swiper-title-1 {
margin-left: -30px
}
.swiper-slider-6 * + .swiper-title-1 {
margin-top: 25px
}
.swiper-slider-6 * + .swiper-title-2 {
margin-top: 24px
}
.swiper-slider-6 * + .button,
.swiper-slider-6 * + .button-wrap {
margin-top: 40px
}
.swiper-slider-7.swiper-container-vertical {
max-height: 445px;
padding-right: 55px
}
.swiper-slider-7.swiper-container-vertical .swiper-slide-last {
height: 68px
}
* + .swiper-slider-7 {
margin-top: 68px
}
.rd-search-results .search-list-item::before {
font-size: 18px
}
.rd-search-results * + p {
margin-top: 12px
}
* + .rd-search-results {
margin-top: 55px
}
.form-search .form-input,
.form-search .form-label {
padding-left: 25px
}
* + .form-search {
margin-top: 50px
}
* + .isotope {
margin-top: 50px
}
* + .isotope-wrap {
margin-top: 44px
}
.isotope-filters-list-wrap {
display: inline-block;
position: relative;
padding-bottom: 4px
}
.isotope-filters-list-wrap::before {
position: absolute;
content: '';
bottom: 0;
left: 0;
height: 4px;
width: 100%;
border-radius: 6px;
background: #d7d7d7
}
.isotope-filters-list {
position: static;
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
justify-content: space-between;
max-width: none;
top: auto;
left: auto;
width: auto;
padding: 0;
box-shadow: none;
background: 0 0;
-webkit-transform: none;
-ms-transform: none;
transform: none;
visibility: visible;
opacity: 1;
margin-left: -30px;
margin-right: -30px
}
.isotope-filters-list > * {
padding-left: 30px;
padding-right: 30px
}
.isotope-filters-list a {
display: inline-block;
padding: 0 0 16px
}
.isotope-filters-list a::after {
position: absolute;
content: '';
bottom: -4px;
left: 50%;
width: 130%;
height: 4px;
border-radius: 6px;
background: #76aa6f;
-webkit-transform: translate3d(-50%,0,0);
transform: translate3d(-50%,0,0);
opacity: 0;
-webkit-transition: all .25s ease;
transition: all .25s ease
}
.isotope-filters-list a.active::after,
.isotope-filters-list a:hover::after {
width: 100%;
opacity: 1
}
.isotope-filters-toggle {
display: none
}
* + .tabs-line {
margin-top: 40px
}
.row + .tabs-line {
margin-top: 65px
}
.tabs-line + .button {
margin-top: 50px
}
.tabs-horizontal.tabs-corporate .nav-tabs {
position: relative;
width: 100%;
border: 0;
will-change: transform;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
justify-content: flex-start
}
.tabs-horizontal.tabs-corporate .nav-item {
will-change: transform
}
.tabs-horizontal.tabs-corporate .nav-link {
display: block;
position: relative;
z-index: 1;
min-width: 188px;
letter-spacing: .1em;
padding: 26px 20px;
border-width: 1px 1px 0;
border-style: solid;
border-color: transparent
}
.tabs-horizontal.tabs-corporate .nav-link.active,
.tabs-horizontal.tabs-corporate .nav-link:hover {
color: #151515
}
.tabs-horizontal.tabs-corporate .nav-link.active {
border-color: #f5f5f5
}
.tabs-horizontal.tabs-corporate .tab-content {
border: 1px solid #f5f5f5
}
.tabs-horizontal.tabs-line .nav-tabs-wrap {
padding-bottom: 4px
}
.tabs-horizontal.tabs-line .nav-tabs-wrap::before {
height: 4px;
border-radius: 6px
}
.tabs-horizontal.tabs-line .nav-tabs {
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
justify-content: space-between
}
.tabs-horizontal.tabs-line .nav-tabs-1 {
margin-left: -30px;
margin-right: -30px;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
justify-content: flex-start
}
.tabs-horizontal.tabs-line .nav-tabs-1 > * {
padding-left: 30px;
padding-right: 30px
}
.tabs-horizontal.tabs-line .nav-item {
display: inline-block
}
.tabs-horizontal.tabs-line .nav-link {
padding-top: 0;
padding-bottom: 16px;
font-size: 14px
}
.tabs-horizontal.tabs-line .nav-link::after {
bottom: -4px;
height: 4px;
border-radius: 6px
}
.tabs-horizontal.tabs-line * + .tab-content {
margin-top: 30px
}
.tabs-vertical {
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-align: start;
-webkit-align-items: flex-start;
align-items: flex-start
}
.tabs-vertical .nav-tabs {
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
flex-direction: column;
-webkit-box-align: stretch;
-webkit-align-items: stretch;
align-items: stretch;
-webkit-flex-shrink: 0;
flex-shrink: 0;
max-width: 50%
}
.tabs-vertical .nav-item {
border: 0;
width: 100%;
text-align: left
}
.tabs-vertical .tab-content {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
flex-grow: 1
}
.tabs-vertical.tabs-line .nav-tabs {
width: auto;
min-width: 167px;
border: 0
}
.tabs-vertical.tabs-line .nav-item {
margin: 0
}
.tabs-vertical.tabs-line .nav-link {
position: relative;
padding: 21px 0 17px;
border: 0;
overflow: hidden;
text-align: left
}
.tabs-vertical.tabs-line .nav-link.active,
.tabs-vertical.tabs-line .nav-link:hover {
color: #76aa6f
}
.tabs-vertical.tabs-line .nav-item + .nav-item {
border-top: 1px solid #f5f5f5
}
.tabs-vertical.tabs-line .tab-content {
padding: 0 0 0 35px
}
.tabs-vertical.tabs-line * + .tab-content {
margin-top: 0
}
.tabs-jean .nav-link {
padding: 40px 0
}
.tabs-jean .nav-link::before {
font-size: 80px
}
.card-corporate .card-title a {
padding: 25px 0 25px 56px
}
.card-corporate .card-arrow .icon {
font-size: 22px;
line-height: 36px;
width: 36px;
height: 36px
}
.card-corporate .card-body {
padding: 25px 0 10px
}
.counter-classic-decor::before {
width: 66px
}
* + .counter-classic-decor {
margin-top: 20px
}
* + .counter-classic-title {
margin-top: 25px
}
.counter-modern-decor::before {
width: 42px
}
* + .counter-modern-decor {
margin-top: 16px
}
* + .counter-modern-title {
margin-top: 18px
}
.progress-linear {
font-size: 14px
}
.progress-linear + .progress-linear {
margin-top: 40px
}
.owl-dots {
margin-top: 45px
}
.owl-nav-1 .owl-next::after,
.owl-nav-1 .owl-prev::after {
width: 100px;
height: 100px
}
.owl-nav-1 .owl-prev::after {
right: -24px
}
.owl-nav-1 .owl-next::after {
left: -24px
}
.owl-style-3 {
padding: 0 120px
}
.owl-style-3 .owl-stage-outer {
margin-left: -60px;
margin-right: -60px;
padding-left: 60px;
padding-right: 60px
}
.owl-style-3 .owl-stage-outer::before {
position: absolute;
content: '';
top: 20px;
right: 0;
bottom: 20px;
left: 0;
border-radius: 60px;
background: rgba(255,255,255,.57);
-webkit-transform: scaleY(.9);
-ms-transform: scaleY(.9);
transform: scaleY(.9)
}
.owl-style-3 .owl-nav {
display: block
}
.owl-style-3 .owl-dots {
display: none
}
.owl-style-7 {
padding: 0 75px
}
.owl-style-7 .owl-nav {
display: block
}
.owl-style-7 .owl-dots {
display: none
}
* + .owl-style-7 {
margin-top: 35px
}
* + .owl-style-11 {
margin-top: 40px
}
.owl-style-14 {
padding: 40px
}
.rd-range__pointer.active {
-webkit-transform: scale3d(1.1,1.1,1.1) translate(-50%,-50%);
transform: scale3d(1.1,1.1,1.1) translate(-50%,-50%)
}
.child-carousel .slick-slide {
max-width: 100%
}
.slick-history .child-carousel {
margin-top: 40px;
padding-top: 30px;
padding-bottom: 30px
}
.slick-history .child-carousel::after,
.slick-history .child-carousel::before {
width: 70px
}
.slick-history .child-carousel .slick-slide::after {
top: -37px
}
.slick-history .child-carousel .slick-prev {
left: 20px
}
.slick-history .child-carousel .slick-next {
right: 20px
}
* + .slick-history {
margin-top: 40px
}
}
@media (min-width:992px) {
.heading-1,
h1 {
font-size: 70px
}
.counter-classic-number .symbol,
.heading-2,
h2 {
font-size: 45px
}
.event-classic-date,
.heading-3,
h3 {
font-size: 28px
}
.event-classic-month,
.heading-4,
.quote-classic-text,
h4 {
font-size: 22px
}
.box-icon-classic-icon,
.box-icon-classic-svg {
height: 90px;
width: 90px
}
.box-icon-classic-icon {
font-size: 40px;
line-height: 90px
}
.box-icon-classic-svg svg {
max-width: none
}
* + .box-icon-classic-text {
margin-top: 14px
}
.box-icon-modern-text {
max-width: 95%
}
* + .box-icon-modern-text {
margin-top: 14px
}
.box-icon-creative {
padding: 30px
}
.box-icon-creative-icon {
font-size: 44px
}
.box-icon-nancy-right .box-icon-nancy-svg .svg-bg {
-webkit-transform: translate3d(-50%,-50%,0) rotateY(180deg);
transform: translate3d(-50%,-50%,0) rotateY(180deg)
}
.box-icon-nancy-icon,
.box-icon-nancy-svg {
height: 80px;
width: 80px;
margin-top: 5px
}
.box-icon-nancy-icon {
font-size: 40px;
line-height: 80px
}
.box-icon-nancy-svg .svg-bg {
width: auto
}
.box-icon-nancy-svg .svg-icon {
width: 64px
}
* + .box-icon-nancy-text {
margin-top: 14px
}
.desktop .box-icon-nancy:hover .box-icon-nancy-svg .svg-icon {
-webkit-transform: translate3d(0,-8px,0);
transform: translate3d(0,-8px,0)
}
.desktop .box-icon-nancy-left:hover .box-icon-nancy-svg .svg-bg {
-webkit-transform: translate3d(-50%,-50%,0) rotate(35deg);
transform: translate3d(-50%,-50%,0) rotate(35deg)
}
.desktop .box-icon-nancy-right:hover .box-icon-nancy-svg .svg-bg {
-webkit-transform: translate3d(-50%,-50%,0) rotateY(180deg) rotate(35deg);
transform: translate3d(-50%,-50%,0) rotateY(180deg) rotate(35deg)
}
.box-icon-kelly {
padding: 40px 30px
}
.box-icon-kelly-svg .svg-icon {
width: 70px
}
* + .box-icon-kelly-text {
margin-top: 12px
}
.box-comment .unit {
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center
}
.box-comment + h4 {
margin-top: 50px
}
.desktop .box-info-modern-link:hover {
color: #a3a3a3
}
.desktop .box-info-modern:hover::before {
top: -15px;
right: -15px;
bottom: -60px;
left: -15px;
visibility: visible;
opacity: 1
}
.desktop .box-info-modern:hover .box-info-modern-figure {
border-color: transparent
}
.desktop .box-info-modern:hover .box-info-modern-figure img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1)
}
.desktop .box-info-modern:hover .box-info-modern-link {
-webkit-transform: translate3d(0,10px,0);
transform: translate3d(0,10px,0)
}
.desktop .box-info-modern:hover .box-info-modern-link,
.desktop .box-info-modern:hover .box-info-modern-link:active,
.desktop .box-info-modern:hover .box-info-modern-link:focus {
color: #76aa6f
}
.desktop .box-info-modern:hover .box-info-modern-link:hover {
color: #151515
}
.desktop .box-info-modern:hover .box-info-modern-link::before {
width: 100%;
height: 100%;
border-color: inherit;
-webkit-transition: border-color .3s ease-in-out,width .25s ease,height .25s ease;
transition: border-color .3s ease-in-out,width .25s ease,height .25s ease
}
* + .box-info-renee-subtitle {
margin-top: 35px
}
* + .box-info-renee-title {
margin-top: 30px
}
* + .box-info-renee-text {
margin-top: 30px
}
* + .box-info-renee-link {
margin-top: 36px
}
* + .box-info-beryl-time {
margin-top: 34px
}
* + .box-info-beryl-text {
margin-top: 34px
}
.box-info-beryl-text + .button {
margin-top: 40px
}
.box-cta h2 + .button {
margin-top: 40px
}
.box-about h2 + p {
margin-top: 30px
}
.box-about p + p {
margin-top: 30px
}
.box-about * + img {
margin-top: 50px
}
h3 + .group-xs {
margin-top: 45px
}
h3 + .table-custom-responsive {
margin-top: 50px
}
.title-group + .table-custom-responsive {
margin-top: 55px
}
.table-custom-responsive + .group-justify {
margin-top: 35px
}
.table-cart td:first-child,
.table-cart th:first-child {
padding-left: 30px
}
.table-cart th {
font-size: 18px;
padding-top: 21px;
padding-bottom: 21px
}
.table-cart td:first-child {
min-width: 500px
}
.table-cart td {
font-size: 14px
}
.table-cart-figure {
max-width: 100px
}
/*.table-cart-figure + a {*/
/* margin-left: 30px*/
/*}*/
.button {
padding: 14px 34px
}
.button-sm {
padding: 11px 16px
}
.group-middle .button-sm {
padding: 11px 0
}
.button-lg {
padding: 19px 50px
}
.button-xl {
padding: 16px 50px
}
.button-xl {
padding: 20px 80px
}
.button-icon-2 {
min-width: 60px
}
.button-icon-3 {
min-width: 50px
}
.rd-form-inline .form-button .button-lg {
padding-top: 19px;
padding-bottom: 19px
}
.rd-form-inline-2 {
-webkit-flex-wrap: nowrap;
flex-wrap: nowrap
}
.form-lg .form-input,
.form-lg .form-label {
font-size: 18px;
font-weight: 300;
letter-spacing: .05em
}
.form-lg .form-input {
min-height: 70px;
padding-top: 22px;
padding-bottom: 22px
}
.form-lg .form-label {
top: 35px
}
.rd-form-coupon .form-input {
min-height: 70px;
padding-top: 22px;
padding-bottom: 22px
}
.rd-form-coupon .form-label {
top: 35px
}
.form-style-1 {
padding-top: 6%;
padding-bottom: 8%
}
.form-style-1 * + .rd-form {
margin-top: 30px
}
.form-style-1 * + .form-button {
margin-top: 50px
}
.desktop .post-classic:hover .post-classic-figure img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1)
}
.post-modern-title {
max-width: 85%
}
.desktop .post-modern:hover .post-modern-figure img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1)
}
.desktop .post-creative:hover .post-creative-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
.desktop .post-lisa:hover .post-lisa-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
.post-nikki .unit .post-nikki-figure {
width: 210px
}
.post-nikki-title {
font-size: 22px
}
* + .post-nikki-title {
margin-top: 14px
}
.desktop .post-nikki:hover .post-nikki-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
.desktop .post-minimal:hover .post-minimal-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
.quote-modern {
padding: 45px 30px
}
.quote-modern-text {
padding-top: 65px;
font-size: 18px
}
.quote-modern-text::before {
font-size: 100px
}
.quote-modern-text + .unit {
margin-top: 30px
}
.quote-carly-footer,
.quote-carly-text {
padding-left: 68px
}
.desktop .thumbnail-classic {
overflow: hidden
}
.desktop .thumbnail-classic-caption {
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: 0 0;
pointer-events: none;
z-index: 1
}
.desktop .thumbnail-classic-caption::before {
position: absolute;
content: '';
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(255,255,255,.96);
-webkit-transform: scale(.8);
-ms-transform: scale(.8);
transform: scale(.8);
-webkit-transition: all .3s ease;
transition: all .3s ease;
opacity: 0;
z-index: -1
}
.desktop .thumbnail-classic-caption > div {
pointer-events: auto
}
.desktop .thumbnail-classic-title {
-webkit-transform: translate3d(0,-30px,0);
transform: translate3d(0,-30px,0);
-webkit-transition: all .4s ease;
transition: all .4s ease;
opacity: 0
}
.desktop .thumbnail-classic-price,
.desktop .thumbnail-classic-tag {
-webkit-transform: translate3d(0,30px,0);
transform: translate3d(0,30px,0);
-webkit-transition: all .4s ease;
transition: all .4s ease;
opacity: 0
}
.desktop .thumbnail-classic-button {
-webkit-transition: all .4s ease;
transition: all .4s ease;
opacity: 0
}
.desktop .thumbnail-classic-button:nth-child(1) {
-webkit-transform: translate3d(-40px,40px,0);
transform: translate3d(-40px,40px,0)
}
.desktop .thumbnail-classic-button:nth-child(2) {
-webkit-transform: translate3d(40px,40px,0);
transform: translate3d(40px,40px,0)
}
.desktop .thumbnail-classic:hover .thumbnail-classic-button,
.desktop .thumbnail-classic:hover .thumbnail-classic-caption::before,
.desktop .thumbnail-classic:hover .thumbnail-classic-price,
.desktop .thumbnail-classic:hover .thumbnail-classic-tag,
.desktop .thumbnail-classic:hover .thumbnail-classic-title {
-webkit-transform: none;
-ms-transform: none;
transform: none;
opacity: 1
}
.desktop * + .thumbnail-classic-button-wrap {
margin-top: 24px
}
.desktop .thumbnail-modern {
overflow: hidden
}
.desktop .thumbnail-modern-caption {
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
padding: 15px;
top: 0;
background: 0 0;
pointer-events: none;
z-index: 1
}
.desktop .thumbnail-modern-caption::before {
position: absolute;
content: '';
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(255,255,255,.83);
-webkit-transform: scale(.8);
-ms-transform: scale(.8);
transform: scale(.8);
-webkit-transition: all .3s ease;
transition: all .3s ease;
opacity: 0;
z-index: -1
}
.desktop .thumbnail-modern-caption > div {
pointer-events: auto
}
.desktop .thumbnail-modern-title {
-webkit-transform: scale(1.5);
-ms-transform: scale(1.5);
transform: scale(1.5);
-webkit-transition: all .4s ease;
transition: all .4s ease;
opacity: 0
}
.desktop .thumbnail-modern:hover .thumbnail-modern-caption::before,
.desktop .thumbnail-modern:hover .thumbnail-modern-title {
-webkit-transform: none;
-ms-transform: none;
transform: none;
opacity: 1
}
.breadcrumbs-custom-body {
padding: 20px 0
}
* + .breadcrumbs-custom-text {
margin-top: 30px
}
.footer-classic-title + * {
margin-top: 45px
}
.footer-modern-panel {
padding: 30px 0
}
.footer-creative .row + .row {
margin-top: 80px
}
.footer-creative-panel {
padding: 40px 0
}
.product-2 .product-figure {
min-height: 240px
}
.product-figure {
min-height: 200px
}
.desktop .product {
padding-bottom: 40px
}
.desktop .product::before {
display: none
}
.desktop .product-badge,
.desktop .product-body {
-webkit-transition: all .2s ease;
transition: all .2s ease
}
.desktop .product-button-wrap {
-webkit-box-align: end;
-webkit-align-items: flex-end;
align-items: flex-end;
position: absolute;
content: '';
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 20px 20px 40px;
background: #f5f5f5;
border-radius: 6px;
-webkit-transition: all .2s ease;
transition: all .2s ease;
z-index: -1
}
.desktop .product-button {
opacity: 0;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: all .15s ease;
transition: all .15s ease
}
.desktop .product:hover {
z-index: 2
}
.desktop .product:hover .product-badge,
.desktop .product:hover .product-body {
-webkit-transform: translate3d(0,-18px,0);
transform: translate3d(0,-18px,0)
}
.desktop .product:hover .product-button-wrap {
top: -18px;
bottom: -60px;
background: #fff;
box-shadow: 0 1px 18px 0 rgba(0,0,0,.09)
}
.desktop .product:hover .product-button {
opacity: 1;
-webkit-transform: none;
-ms-transform: none;
transform: none;
-webkit-transition-duration: .3s;
transition-duration: .3s
}
.desktop .product:hover .product-button:nth-child(1) {
-webkit-transition-delay: .1s;
transition-delay: .1s
}
.desktop .product:hover .product-button:nth-child(2) {
-webkit-transition-delay: .25s;
transition-delay: .25s
}
.desktop * + .product-button-wrap {
margin-top: 0
}
.desktop .bg-gray-1 .product-button-wrap,
.desktop .bg-image-1 .product-button-wrap {
background: #fff
}
.desktop .bg-image-1 .product-button-wrap {
box-shadow: 0 1px 18px 0 rgba(0,0,0,.09)
}
* + .product-beth-subtitle {
margin-top: 20px
}
* + .product-beth-text {
margin-top: 30px
}
.product-beth-text + .group-middle {
margin-top: 50px
}
.desktop .product-dawn-figure img {
-webkit-transform: translate3d(-15px,0,0);
transform: translate3d(-15px,0,0);
-webkit-transition: all .3s ease;
transition: all .3s ease;
will-change: transform
}
.desktop .product-dawn:hover .product-dawn-figure img {
-webkit-transform: none;
-ms-transform: none;
transform: none
}
.desktop .product-dawn:hover .product-dawn-button,
.desktop .product-dawn:hover .product-dawn-button:focus {
color: #fff;
background-color: #76aa6f;
border-color: #76aa6f
}
.desktop .product-minimal:hover .product-minimal-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
.product-top-panel + .row {
margin-top: 55px
}
* + .box-radio {
margin-top: 50px
}
.pricing-classic-body {
padding-top: 35px;
padding-bottom: 45px
}
.pricing-classic-list + .button {
margin-top: 35px
}
.desktop .clients-classic:hover img {
opacity: .7
}
.desktop .clients-modern:hover img {
opacity: 1
}
.promo-classic {
padding-top: 75px;
padding-bottom: 185px
}
.team-classic-name {
letter-spacing: .1em
}
* + .team-classic-name {
margin-top: 35px
}
* + .team-classic-text {
margin-top: 20px
}
* + .team-classic-list-social {
margin-top: 25px
}
.desktop .team-classic:hover .team-classic-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
* + .team-modern-name {
margin-top: 28px
}
* + .team-modern-list-social {
margin-top: 22px
}
.desktop .team-modern:hover .team-modern-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
.team-creative-header {
max-width: 277px
}
* + .team-creative-text {
margin-top: 10px
}
* + .team-creative-list-social {
margin-top: 25px
}
.desktop .team-creative:hover .team-creative-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
.desktop .team-creative:hover .team-creative-decor {
-webkit-transform: none;
-ms-transform: none;
transform: none
}
.desktop .team-creative:hover .team-creative-body {
-webkit-transform: translate3d(0,20px,0);
transform: translate3d(0,20px,0)
}
.desktop .team-amy-caption {
position: absolute;
left: 50%;
bottom: 10%;
width: 62%;
min-width: 180px;
padding-top: 20px;
padding-bottom: 20px;
border-radius: 6px;
-webkit-transform: translate3d(-50%,30px,0);
transform: translate3d(-50%,30px,0);
-webkit-transition: all .3s ease;
transition: all .3s ease;
visibility: hidden;
opacity: 0
}
.desktop .team-amy-caption::before {
position: absolute;
content: '';
top: 0;
left: 50%;
width: 0;
height: 0;
border-style: solid;
border-width: 16px 0 16px 32px;
border-color: transparent transparent transparent #fff;
-webkit-transform: translate3d(-50%,-50%,0);
transform: translate3d(-50%,-50%,0)
}
.desktop .team-amy-text {
display: block
}
.desktop .team-amy:hover .team-amy-caption {
opacity: 1;
visibility: visible;
-webkit-transform: translate3d(-50%,0,0);
transform: translate3d(-50%,0,0)
}
.desktop .team-karen-body {
padding-bottom: 10px
}
.desktop .team-karen-list-social > li {
opacity: 0;
visibility: hidden;
-webkit-transform: rotateY(90deg);
transform: rotateY(90deg)
}
.desktop .team-karen:hover .team-karen-figure img {
-webkit-transform: translate3d(0,-14px,0);
transform: translate3d(0,-14px,0)
}
.desktop .team-karen:hover .team-karen-header svg {
fill: #ebebeb
}
.desktop .team-karen:hover .team-karen-body::before {
bottom: -30px;
background: #ebebeb
}
.desktop .team-karen:hover .team-karen-list-social > li {
opacity: 1;
visibility: visible;
-webkit-transform: none;
-ms-transform: none;
transform: none
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(2) {
-webkit-transition-delay: 50ms;
transition-delay: 50ms
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(3) {
-webkit-transition-delay: .1s;
transition-delay: .1s
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(4) {
-webkit-transition-delay: 150ms;
transition-delay: 150ms
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(5) {
-webkit-transition-delay: .2s;
transition-delay: .2s
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(6) {
-webkit-transition-delay: 250ms;
transition-delay: 250ms
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(7) {
-webkit-transition-delay: .3s;
transition-delay: .3s
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(8) {
-webkit-transition-delay: 350ms;
transition-delay: 350ms
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(9) {
-webkit-transition-delay: .4s;
transition-delay: .4s
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(10) {
-webkit-transition-delay: 450ms;
transition-delay: 450ms
}
.desktop .team-info:hover .team-info-figure img {
box-shadow: 0 3px 18px 0 rgba(0,0,0,.15)
}
.event-classic > .unit {
min-height: 390px
}
.event-classic > .unit > .unit-left {
width: 30%
}
.event-classic-body {
padding-left: 7%;
padding-right: 7%
}
* + .event-classic-text {
margin-top: 30px
}
* + .event-classic-link {
margin-top: 34px
}
.row-lg-20 {
margin-bottom: -20px
}
.row-lg-20:empty {
margin-bottom: 0
}
.row-lg-20 > * {
margin-bottom: 20px
}
.row-lg-50 {
margin-bottom: -50px
}
.row-lg-50:empty {
margin-bottom: 0
}
.row-lg-50 > * {
margin-bottom: 50px
}
.row-lg-60 {
margin-bottom: -60px
}
.row-lg-60:empty {
margin-bottom: 0
}
.row-lg-60 > * {
margin-bottom: 60px
}
.row-lg-70 {
margin-bottom: -70px
}
.row-lg-70:empty {
margin-bottom: 0
}
.row-lg-70 > * {
margin-bottom: 70px
}
.row-lg-80 {
margin-bottom: -80px
}
.row-lg-80:empty {
margin-bottom: 0
}
.row-lg-80 > * {
margin-bottom: 80px
}
html [class*=section-].section-lg-0 {
padding: 0 0 1px
}
.section-sm {
padding: 50px 0
}
.section-sm.section-first {
padding-top: 100px
}
.section-sm.section-last {
padding-bottom: 100px
}
.section-md {
padding: 70px 0
}
.section-lg {
padding: 80px 0
}
.section-xl {
padding: 90px 0
}
.section-xxl {
padding: 100px 0
}
.section-single .countdown-wrap {
margin-bottom: -30px;
margin-left: -65px
}
.section-single .countdown-wrap:empty {
margin-bottom: 0;
margin-left: 0
}
.section-single .countdown-wrap > * {
display: inline-block;
margin-top: 0;
margin-bottom: 30px;
margin-left: 65px
}
.section-single * + .button {
margin-top: 50px
}
.section-single * + .countdown-wrap {
margin-top: 55px
}
.section-single * + .rd-mailform-wrap {
margin-top: 60px
}
.container-fluid.grid-demonstration [class^=col] {
padding: 20px
}
html:not(.tablet):not(.mobile) .bg-fixed {
background-attachment: fixed
}
.inset-lg-bottom-10 {
padding-bottom: 10px
}
.aside-typography-item {
padding-left: 30px;
border-left: 1px solid #e1e1e1
}
.title-modern {
font-size: 13em
}
* + .title-style-4 {
margin-top: 20px
}
.title-style-4 + .tabs-line {
margin-top: 50px
}
.title-style-5 + .button {
margin-top: 35px
}
.bordered-2 > div + div > * {
padding-top: 50px;
border-top: 1px solid #e1e1e1
}
.rd-navbar-project {
padding: 33px 15px 30px
}
* + .rd-navbar-project-content {
margin-top: 33px
}
.swiper-button-next,
.swiper-button-prev {
display: block
}
.swiper-pagination {
display: none
}
.swiper-slider-1 .swiper-slide-caption {
padding-right: 90px;
padding-left: 90px
}
.swiper-slider-2 .swiper-slide-caption {
padding-right: 90px;
padding-left: 90px
}
.swiper-slider-3 .swiper-slide-caption {
padding-right: 90px;
padding-left: 90px
}
.swiper-slider-4 .swiper-slide-caption {
padding-right: 90px;
padding-left: 90px
}
.swiper-slider-4 .swiper-pagination {
display: none
}
.swiper-slider-4 .swiper-title-1 {
line-height: 1.364
}
.swiper-slider-4 * + .button,
.swiper-slider-4 * + .button-wrap {
margin-top: 40px
}
.rd-navbar-static-linked .header-creative-wrap + .section-custom-1,
.rd-navbar-static-linked .header-creative-wrap + .swiper-slider-4 .swiper-slide {
padding-top: 172px
}
.swiper-slider-5.swiper-container-vertical {
max-height: 685px;
padding-right: 70px
}
.swiper-slider-5.swiper-container-vertical .swiper-slide-last {
height: 255px
}
.swiper-slider-6 .swiper-slide-caption {
padding-right: 90px;
padding-left: 90px
}
.swiper-slider-6 .swiper-box {
padding-left: 70px
}
.swiper-slider-6 .swiper-box .swiper-title-1 {
margin-left: -70px
}
.swiper-slider-7.swiper-container-vertical .swiper-slide-last {
height: 64px
}
* + .swiper-slider-7 {
margin-top: 45px
}
.google-map {
height: 520px
}
.rd-search-results .search-list-item {
padding-left: 40px
}
.isotope-filters-modern .inline-list {
-webkit-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0);
margin-bottom: -10px;
margin-left: -23px;
margin-right: -23px
}
.isotope-filters-modern .inline-list > * {
margin-top: 10px;
padding-left: 23px;
padding-right: 23px
}
html:not(.tablet):not(.mobile) .isotope-modern-wrap [class*=col] {
margin-top: 0
}
.desktop .isotope-custom-2 {
padding-left: 0;
padding-right: 0
}
.desktop .isotope-custom-2 .row {
margin-right: 0;
margin-left: 0;
margin-bottom: 0
}
.desktop .isotope-custom-2 .row > .col,
.desktop .isotope-custom-2 .row >[class*=col-] {
padding-right: 0;
padding-left: 0;
margin-bottom: 0
}
.tabs-horizontal.tabs-line .nav-tabs-1 {
margin-left: -45px;
margin-right: -45px
}
.tabs-horizontal.tabs-line .nav-tabs-1 > * {
padding-left: 45px;
padding-right: 45px
}
.tabs-horizontal.tabs-line .nav-tabs-1 .nav-link {
letter-spacing: .075em
}
.tabs-horizontal.tabs-line * + .tab-content {
margin-top: 35px
}
.tabs-horizontal.tabs-line * + .tab-content-1 {
margin-top: 45px
}
* + .card-group-custom {
margin-top: 30px
}
* + .card-group-custom-1 {
margin-top: 20px
}
.card-corporate .card-title a {
font-size: 16px
}
.desktop .card-corporate .card-title a:hover .card-arrow .icon {
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg)
}
.desktop .card-corporate .card-title a.collapsed:hover .card-arrow .icon {
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg)
}
* + .counter-classic-decor {
margin-top: 24px
}
* + .counter-classic-title {
margin-top: 30px
}
* + .counter-modern-decor {
margin-top: 18px
}
* + .counter-modern-title {
margin-top: 24px
}
.progress-linear + .progress-linear {
margin-top: 46px
}
.owl-style-3 {
padding: 0 160px
}
.owl-style-3 .owl-stage-outer {
margin-left: -85px;
margin-right: -85px;
padding-left: 85px;
padding-right: 85px
}
.owl-style-6 {
padding: 40px 0
}
.owl-style-14 {
padding-top: 60px;
padding-bottom: 60px
}
.slick-product.slick-vertical {
margin-right: 25px
}
.slick-quote-nav {
max-width: 85%;
margin-left: auto;
margin-right: auto
}
.slick-history .child-carousel {
margin-top: 50px
}
* + .slick-history {
margin-top: 50px
}
}
@media (min-width:1025px) {
.lg-outer .lg-thumb-item {
-webkit-transition: border-color .25s ease;
transition: border-color .25s ease
}
}
@media (min-width:1200px) {
.heading-1,
h1 {
font-size: 100px
}
.counter-classic-number .symbol,
.heading-2,
h2 {
font-size: 55px
}
.event-classic-date,
.heading-3,
h3 {
font-size: 30px
}
.event-classic-month,
.heading-4,
.quote-classic-text,
h4 {
font-size: 24px
}
.box-icon-classic-title {
margin-top: 4px
}
.box-icon-modern-header {
min-height: 80px
}
.box-icon-modern-count {
font-size: 70px
}
.box-icon-modern-icon {
font-size: 48px
}
.box-icon-modern-icon.fl-bigmug-line-big104 {
font-size: 56px
}
.box-icon-modern-icon.fl-bigmug-line-giftbox54 {
font-size: 50px
}
.box-icon-modern-svg svg {
max-width: none
}
.box-icon-creative {
padding: 42px
}
.box-icon-creative-icon {
font-size: 48px
}
.box-icon-kelly {
padding-left: 40px;
padding-right: 40px
}
.box-icon-kelly-svg .svg-icon {
width: 74px
}
.box-comment > .box-comment {
margin-left: 145px
}
.box-info-classic {
padding: 60px 40px 90px
}
.box-info-classic-year {
max-width: 174px
}
* + .box-info-classic-text {
margin-top: 18px
}
.box-info-rose-text {
padding: 4px 8px
}
.box-info-rose-icon {
font-size: 35px
}
.table-cart td {
font-size: 18px
}
.table-cart td:first-child {
font-size: 18px
}
.rd-form .button {
min-width: 190px
}
.rd-form .button-icon-2 {
min-width: 60px
}
.rd-form-inline {
margin-left: -46px
}
.rd-form-inline > * {
margin-left: 46px
}
.form-style-1 * + .rd-form {
margin-top: 50px
}
.form-style-1 * + .form-button {
margin-top: 65px
}
.post-classic-content {
padding: 34px 10% 45px
}
* + .post-classic-title {
margin-top: 20px
}
* + .post-classic-text {
margin-top: 18px
}
.post-modern-title {
max-width: 80%
}
* + .post-creative-content {
margin-top: 24px
}
* + .post-creative-time {
margin-top: 15px
}
.post-lisa-content {
padding: 35px 65px
}
.post-nikki .unit .post-nikki-figure {
width: auto
}
.post-nikki-body {
padding: 12% 10%
}
.post-nikki-title {
font-size: 24px
}
.quote-classic-big-text {
line-height: 1.53
}
.quote-modern {
padding: 60px 45px
}
.quote-modern-2 {
padding: 70px 80px
}
.quote-creative {
padding: 50px 50px 60px
}
.quote-creative-text {
font-size: 24px
}
.footer-classic-panel {
padding: 40px 0
}
.footer-modern-list {
max-width: 94%
}
.footer-modern-list > li {
padding-right: 17px
}
.footer-modern-list > li:hover {
padding-right: 0
}
.footer-modern-list > li:hover::before {
width: 34px;
background: #76aa6f
}
.footer-modern-panel {
padding: 35px 0
}
.footer-creative .row + .row {
margin-top: 100px
}
.footer-creative-panel {
padding: 50px 0
}
.footer-corporate-panel {
padding: 45px 0
}
.product-wrap-1 {
padding: 40px
}
.product-dawn .unit-left {
-webkit-flex-basis: 50%;
flex-basis: 50%;
max-width: 50%
}
* + .product-dawn-price {
margin-top: 26px
}
.product-dawn-price + .button {
margin-top: 35px
}
.product-terri-figure {
min-height: 280px
}
.list-shop-filter .checkbox,
.list-shop-filter .checkbox-inline {
padding-left: 40px
}
.team-creative-body {
padding: 0 40px
}
.event-classic > .unit > .unit-left {
width: 35%
}
.event-classic-body {
padding-left: 10%;
padding-right: 10%
}
h1 + p {
margin-top: 6px
}
* + .row-lg {
margin-top: 50px
}
* + .row-xl {
margin-top: 60px
}
* + .row-xxl {
margin-top: 70px
}
* + .owl-carousel {
margin-top: 50px
}
.container + .container {
margin-top: 60px
}
.row + .row {
margin-top: 60px
}
.row + .button {
margin-top: 60px
}
.row-xl-100 {
margin-bottom: -100px
}
.row-xl-100:empty {
margin-bottom: 0
}
.row-xl-100 > * {
margin-bottom: 100px
}
.section-md {
padding: 80px 0
}
.section-lg {
padding: 90px 0
}
.section-xl {
padding: 100px 0
}
.section-xxl {
padding: 110px 0
}
.section-inset-1 {
padding: 120px 0
}
.section-inset-4,
.section-inset-5 {
padding-top: 120px
}
.grid-demonstration * + p {
margin-top: 22px
}
.container-fluid.grid-demonstration [class^=col] {
padding: 30px
}
.grid-system-bordered [class*=col] {
padding-top: 40px;
padding-bottom: 40px
}
.image-decor-left {
left: -10%
}
.image-decor-right {
right: -10%
}
.inset-xl-left-35 {
padding-left: 35px
}
.inset-xl-right-20 {
padding-right: 20px
}
.inset-xl-right-30 {
padding-right: 30px
}
.inset-xl-right-35 {
padding-right: 35px
}
.inset-xl-right-50 {
padding-right: 50px
}
.inset-xl-right-55 {
padding-right: 55px
}
.inset-xl-right-70 {
padding-right: 70px
}
.inset-xl-right-100 {
padding-right: 100px
}
.typography-style-1 p {
max-width: 95%
}
.aside-typography {
padding-top: 20px
}
.title-modern {
font-size: 15em
}
* + .title-style-5 {
margin-top: 35px
}
.rd-navbar-static .rd-navbar-dropdown {
padding: 40px 44px;
margin-left: -44px
}
.rd-navbar-static .rd-dropdown-item + .rd-dropdown-item {
margin-top: 24px
}
.rd-navbar-static .rd-dropdown-link,
.rd-navbar-static .rd-megamenu-list-link {
font-size: 14px
}
.rd-navbar-static .rd-navbar-megamenu {
padding: 30px 70px 70px
}
.rd-navbar-static .rd-megamenu-item + .rd-megamenu-item {
padding-left: 40px
}
.rd-navbar-static .rd-megamenu-banner .banner-classic {
max-width: 300px
}
.rd-navbar-static .rd-megamenu-icon {
font-size: 30px
}
.rd-navbar-static .rd-megamenu-text {
font-size: 14px
}
.rd-navbar-static .rd-megamenu-list-item + .rd-megamenu-list-item {
margin-top: 24px
}
.rd-navbar-static * + .rd-megamenu-list {
margin-top: 35px
}
.rd-navbar-static .rd-megamenu-title + .banner-classic {
margin-top: 42px
}
.rd-navbar-static .rd-navbar-search-2.active .rd-search .form-wrap {
max-width: 1000px
}
.rd-navbar-classic.rd-navbar-static .rd-navbar-main {
padding-top: 18px;
padding-bottom: 18px
}
.rd-navbar-project {
width: 410px;
padding: 38px 30px 50px
}
* + .rd-navbar-project-content {
margin-top: 38px
}
* + .contacts-modern {
margin-top: 60px
}
.rd-navbar-modern.rd-navbar-static .rd-navbar-aside {
padding-top: 15px;
padding-bottom: 35px
}
.rd-navbar-creative.rd-navbar-static .rd-navbar-aside {
padding: 13px 0
}
.rd-navbar-corporate.rd-navbar-static .rd-navbar-aside {
padding: 15px 0 12px
}
.rd-navbar-corporate.rd-navbar-static .rd-navbar-main-element {
padding: 20px 0
}
.swiper-slider-1 * + .button,
.swiper-slider-1 * + .button-wrap {
margin-top: 40px
}
.swiper-slider-1 * + .swiper-title-1 {
margin-top: 18px
}
.swiper-slider-1 * + .swiper-title-2 {
margin-top: 18px
}
.swiper-slider-2 * + .button,
.swiper-slider-2 * + .button-wrap {
margin-top: 45px
}
.swiper-slider-2 * + .swiper-text {
margin-top: 28px
}
.swiper-slider-2 * + .swiper-title-1 {
margin-top: 16px
}
.swiper-slider-3 * + .button,
.swiper-slider-3 * + .button-wrap {
margin-top: 35px
}
.swiper-slider-3 * + .swiper-title-3 {
margin-top: 26px
}
.swiper-slider-4 * + .swiper-title-2 {
margin-top: 24px
}
.swiper-slider-4 * + .button,
.swiper-slider-4 * + .button-wrap {
margin-top: 50px
}
.rd-navbar-static-linked .header-creative-wrap + .section-custom-1,
.rd-navbar-static-linked .header-creative-wrap + .swiper-slider-4 .swiper-slide {
padding-top: 184px
}
* + .swiper-slider-5 {
margin-top: 50px
}
.swiper-slider-6 * + .button,
.swiper-slider-6 * + .button-wrap {
margin-top: 50px
}
.swiper-slider-7.swiper-container-vertical .swiper-slide-last {
height: 60px
}
* + .form-search {
margin-top: 60px
}
.tabs-jean .nav-tabs-wrap {
padding-left: 30px;
padding-right: 30px
}
.tabs-jean .nav-link {
padding: 56px 0
}
.tabs-jean .nav-link::before {
font-size: 100px
}
.tabs-jean .tab-content {
padding-right: 5%
}
.tabs-jean * + .nav-tabs-wrap {
margin-top: 55px
}
.card-corporate .card-title a {
padding: 30px 0 30px 66px;
font-size: 18px
}
.card-corporate .card-arrow .icon {
font-size: 24px;
line-height: 42px;
width: 42px;
height: 42px
}
* + .counter-classic-title {
margin-top: 36px
}
* + .countdown-wrap {
margin-top: 50px
}
.countdown-wrap + p {
margin-top: 40px
}
.owl-style-1 .owl-dots {
margin-top: 55px
}
.owl-style-3 {
padding: 0 215px
}
.owl-style-3 .owl-prev {
left: 30px
}
.owl-style-3 .owl-next {
right: 30px
}
.owl-style-6 {
padding: 50px 30px
}
.owl-style-12 .owl-dots {
margin-top: 55px
}
.slick-product.slick-vertical {
margin-right: 38px
}
.slick-history .child-carousel {
margin-top: 75px
}
.slick-history .child-carousel::after,
.slick-history .child-carousel::before {
width: 7.5%
}
.slick-history .child-carousel .slick-slide::before {
width: calc(100% - 174px + 30px)
}
.slick-history .child-carousel .slick-prev {
left: 3.3%
}
.slick-history .child-carousel .slick-next {
right: 3.3%
}
}
@media (min-width:1500px) {
.image-decor-left {
left: 0
}
.image-decor-right {
right: 0
}
}
@media (min-width:1600px) {
.post-creative-content {
padding: 0 6%
}
.section-xxl {
padding: 120px 0
}
.section-inset-1 {
padding: 140px 0
}
.section-inset-3,
.section-inset-4 {
padding-top: 140px
}
.section-inset-5 {
padding-top: 150px
}
.section-single-header {
padding-top: calc(1em + 9vh)
}
.section-single-main {
padding: calc(1em + 1vh) 0 calc(1em + 10vh)
}
.section-single-footer {
padding-bottom: calc(1em + 4vh)
}
.section-fluid {
padding-left: 75px;
padding-right: 75px
}
.section-fluid .container-fluid {
padding-left: 0;
padding-right: 0;
max-width: 1770px;
margin-left: auto;
margin-right: auto
}
.container-fluid.grid-demonstration .row {
margin-left: -35px;
margin-right: -35px
}
.container-fluid.grid-demonstration [class^=col] {
padding: 40px 40px 40px 60px
}
.container-fluid.grid-demonstration .col-12,
.container-fluid.grid-demonstration .col-6 {
padding-right: 60px
}
.title-modern {
font-size: 20em
}
.rd-navbar-static .rd-navbar-search-2 .rd-search .form-wrap {
margin-top: 15%
}
.rd-navbar-classic.rd-navbar-static .rd-navbar-main {
padding-top: 30px;
padding-bottom: 30px
}
.rd-navbar-project {
padding-top: 50px;
padding-bottom: 90px
}
* + .rd-navbar-project-content {
margin-top: 50px
}
.rd-navbar-modern.rd-navbar-static .rd-navbar-aside {
padding-top: 25px;
padding-bottom: 45px
}
.rd-navbar-creative.rd-navbar-static .rd-navbar-aside {
padding: 23px 0
}
.rd-navbar-corporate.rd-navbar-static .rd-navbar-aside {
padding: 19px 0 16px
}
.rd-navbar-corporate.rd-navbar-static .rd-navbar-main-element {
padding: 32px 0
}
.rd-navbar-static-linked .header-creative-wrap + .section-custom-1,
.rd-navbar-static-linked .header-creative-wrap + .swiper-slider-4 .swiper-slide {
padding-top: 204px
}
.owl-style-4 {
padding: 0
}
* + .owl-style-12 {
margin-top: 65px
}
.child-carousel::after,
.child-carousel::before {
width: 6.5%
}
}
@media (min-width:1630px) {
html.boxed .page {
max-width: 1600px;
margin-left: auto;
margin-right: auto;
box-shadow: 0 0 23px 0 rgba(1,1,1,.1)
}
html.boxed .rd-navbar-static {
max-width: 1600px;
margin-left: auto;
margin-right: auto
}
html.boxed .rd-navbar-static.rd-navbar--is-stuck {
max-width: 1600px;
width: 100%;
left: calc(50% - 1600px);
right: calc(50% - 1600px)
}
}
@media (min-width:1800px) {
.container-fluid.grid-demonstration .row {
margin-left: -75px;
margin-right: -75px
}
.container-fluid.grid-demonstration [class^=col] {
padding: 45px 80px 45px 100px
}
.container-fluid.grid-demonstration .col-12,
.container-fluid.grid-demonstration .col-6 {
padding-right: 100px
}
}
@media (max-width:1600px) {
.block-center {
padding: 20px
}
.block-center:hover .block-center-header {
background-color: #fff
}
.block-center-header {
background-color: #76aa6f
}
.grid-demonstration p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis
}
}
@media (max-width:992px) {
.table-custom th {
padding-top: 20px;
padding-bottom: 20px
}
.table-custom-responsive {
display: block;
width: 100%;
overflow-x: auto;
-ms-overflow-style: -ms-autohiding-scrollbar
}
.table-custom-responsive.table-bordered {
border: 0
}
.container-fluid.grid-demonstration .row {
margin-left: 0;
margin-right: 0
}
.swiper-slide-caption {
padding-bottom: 70px
}
.isotope-condensed {
padding: 0 0 30px;
margin-left: 0;
margin-right: 0
}
.isotope-condensed .row.row-condensed >[class*=col] {
padding-left: 10px;
padding-right: 10px
}
.isotope-condensed .row.row-condensed >[class*=col] +[class*=col] {
margin-top: 25px
}
.card-corporate-2:last-child .card-title a.collapsed {
border-bottom-color: #e1e1e1
}
.item-description-wrap {
padding: 25px 10px;
}
}
@media (max-width:768px) {
.section .row .col-md-6:first-child .youtube-box {
margin: 0 0 2rem 0;
}
.grid-demonstration * + p {
margin-top: 6px
}
.visible-xs {
display: block;
}
.form_question .form-wrap {
display: block;
min-width: 260px;
}
.form_question .form-wrap input {
text-align: center;
}
.swiper-title-1 {
font-size: 30px;
}
.form_question .rd-form-inline .form-button {
margin: 1em auto 0;
}
.form_question .form-wrap + .form-wrap {
margin-left: 0;
}
[data-isotope-layout] [class*=col-] {
max-width: 100%
}
.isotope-modern-wrap [class*=col] {
width: 100%;
max-width: 100%
}
.tabs-corporate .nav-tabs {
margin-bottom: 0;
margin-left: -20px
}
.tabs-corporate .nav-tabs:empty {
margin-bottom: 0;
margin-left: 0
}
.tabs-corporate .nav-tabs > * {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
margin-left: 20px
}
.tabs-corporate .nav-link {
border-width: 1px;
border-style: solid;
border-color: transparent
}
.tabs-corporate .nav-link.active {
border-color: transparent transparent #e9da5d transparent
}
.counter-classic-title {
font-size: 14px
}
.counter-modern-title {
font-size: 14px
}
#lg-zoom-in,
#lg-zoom-out,
.lg-fullscreen {
display: none
}
.lg-icon {
font-size: 22px;
width: 45px
}
.call__qa, .call__qa2 {
display: flex;
align-items: center;
justify-content: center;
bottom: 0;
top: unset;
width: 49%;
left: 0;
color: #151515;
font-weight: 700;
height: 38px;
font-size: 13px;
line-height: normal;
text-align: center;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
border-top-right-radius: 10px;
-ms-transform: none;
-moz-transform: none;
-webkit-transform: none;
transform: none;
-ms-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
.call__qa2 {
right: 0;
left: unset;
margin: 0 0 0 2%;
border-top-left-radius: 10px;
border-top-right-radius: 0
}
}
@media (max-width:576px) {
.rd-form-inline .form-input,
.rd-form-inline .form-label {
text-align: center
}
.container.grid-demonstration [class^=col] {
padding: 5px
}
.isotope-custom-1 [class*=col] > * {
max-width: 270px;
margin-left: auto;
margin-right: auto
}
.countdown-heading {
font-size: 14px
}
.swiper-slider .button-lg {
font-size: 12px;
padding: 9px 10px;
}
.rd-navbar-basket span {
right: -5px;
}
.swiper-slide-caption .swiper-title-2 {
font-size: 16px;
line-height: 24px;
}
.call__qa, .call__qa2 {
display: flex;
align-items: center;
justify-content: center;
bottom: 0;
top: unset;
width: 49%;
left: 0;
color: #151515;
font-weight: 700;
height: 38px;
font-size: 13px;
line-height: normal;
text-align: center;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
border-top-right-radius: 10px;
-ms-transform: none;
-moz-transform: none;
-webkit-transform: none;
transform: none;
-ms-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
.call__qa2 {
right: 0;
left: unset;
margin: 0 0 0 2%;
border-top-left-radius: 10px;
border-top-right-radius: 0
}
}
@media (min-width:576px) and (max-width:767px) {
.footer-modern-list-2 {
-webkit-columns: 1;
columns: 1
}
.product-modern-figure img {
max-width: 230px
}
.swiper-slider-1 *+.swiper-title-2 {
font-size: 18px;
}
}
@media (min-width:992px) and (max-width:1200px) {
.footer-corporate .button {
padding-left: 15px;
padding-right: 15px
}
.product-3 .product-figure {
min-height: 180px
}
.product-modern-figure img {
max-width: 230px
}
.mobile .isotope-custom-1 .col-lg-8,
.tablet .isotope-custom-1 .col-lg-8 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%
}
}
@media (min-width:768px) and (max-width:991px) {
.slick-product.slick-vertical {
display: -webkit-box;
display: -webkit-flex;
display: flex;
margin-left: -6px;
margin-right: -6px
}
.slick-product.slick-vertical .carousel-parent,
.slick-product.slick-vertical .child-carousel {
padding-left: 6px;
padding-right: 6px
}
.slick-product.slick-vertical .carousel-parent {
width: 74%;
margin-bottom: 0
}
.slick-product.slick-vertical .child-carousel {
width: 26%;
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-align-content: stretch;
align-content: stretch
}
.slick-product.slick-vertical .child-carousel .slick-list {
display: -webkit-box;
display: -webkit-flex;
display: flex;
margin-left: 0;
margin-right: 0
}
.slick-product.slick-vertical .child-carousel .slick-slide {
width: calc(100% - 10px)!important;
margin-left: 5px;
margin-right: 5px
}
.slick-product.slick-vertical .slick-arrow {
right: auto;
left: 50%;
-webkit-transform: translate(-50%,0);
-ms-transform: translate(-50%,0);
transform: translate(-50%,0)
}
.slick-product.slick-vertical .slick-prev {
top: -10px
}
.slick-product.slick-vertical .slick-prev::before {
content: '\f239'
}
.slick-product.slick-vertical .slick-next {
top: auto;
bottom: -10px
}
.slick-product.slick-vertical .slick-next::before {
content: '\f236'
}
} | resources/css/responsive.css | @media (min-width:576px) {
.box-comment-figure img {
max-width: none
}
.box-info-creative {
text-align: left;
padding: 26px 0 0
}
.box-info-creative-link {
top: 20px;
margin-left: 46%
}
* + .box-info-creative-text {
margin-top: 18px
}
* + .box-info-creative-link {
margin-top: 0
}
.box-info-rose {
padding-bottom: 0
}
.box-info-rose-2 {
padding-top: 0
}
html .group-custom {
-webkit-flex-wrap: nowrap;
flex-wrap: nowrap
}
html .group-custom > * {
-webkit-box-flex: 1;
-webkit-flex: 1 1 auto;
flex: 1 1 auto
}
.table-checkout td {
padding: 22px 50px 22px 24px
}
.rd-form .button {
width: auto
}
#form-output-global {
left: 30px
}
.rd-form-inline {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
flex-direction: row
}
.rd-form-inline .button {
display: block
}
.snackbars {
max-width: 540px;
padding: 12px 15px;
font-size: 15px
}
* + .list-schedule {
margin-top: 20px
}
.footer-classic-brand + * {
margin-top: 20px
}
.footer-classic-title + * {
margin-top: 20px
}
.product-modern {
max-width: none
}
.product-dawn .unit-left {
-webkit-flex-basis: 37%;
flex-basis: 37%;
max-width: 37%
}
.product-terri {
text-align: center;
max-width: none;
margin-left: 0;
margin-right: 0
}
.product-terri-figure {
min-height: 260px
}
.product-top-panel {
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
justify-content: space-between
}
.box-radio {
padding-left: 26px;
padding-right: 26px
}
.event-classic {
text-align: left
}
.event-classic > .unit {
min-height: 310px
}
.event-classic > .unit > .unit-left {
width: 25%;
height: auto
}
.row-sm-30 {
margin-bottom: -30px
}
.row-sm-30:empty {
margin-bottom: 0
}
.row-sm-30 > * {
margin-bottom: 30px
}
.container-fluid.grid-demonstration [class^=col] {
padding: 10px
}
.grid-system-bordered * + .row {
margin-top: 0
}
.bg-image-4::before {
display: none
}
.bg-image-6,
.bg-image-7 {
display: block
}
.ui-to-top {
right: 40px;
bottom: 40px
}
.rd-navbar-project {
width: 350px
}
.swiper-slider-5.swiper-container-vertical {
max-height: 520px
}
.swiper-slider-5.swiper-container-vertical .swiper-slide-last {
height: 170px
}
.swiper-slider-6 .swiper-title-3 {
letter-spacing: .2em
}
.swiper-slider-6 .swiper-slide::before {
display: none
}
.swiper-slider-7.swiper-container-vertical {
max-height: 350px
}
.swiper-slider-7.swiper-container-vertical .swiper-slide-last {
height: 42px
}
.google-map {
height: 400px
}
.tabs-jean .nav-tabs-wrap {
padding: 0 20px 1px
}
.tabs-jean .nav-tabs {
counter-reset: li;
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-around;
justify-content: space-around;
margin-left: -30px
}
.tabs-jean .nav-tabs > * {
margin-left: 30px
}
.tabs-jean .nav-tabs li a::before {
content: counter(li,decimal-leading-zero);
counter-increment: li
}
.tabs-jean .nav-link {
padding: 35px 0
}
.tabs-jean .nav-link::after {
display: block
}
.tabs-jean .nav-link.active,
.tabs-jean .nav-link:hover {
color: #76aa6f;
background: 0 0
}
.tabs-jean .tab-content {
position: relative;
padding: 8% 0 14% 17%;
z-index: 1
}
.tabs-jean .tab-content::before {
position: absolute;
content: '';
top: 0;
bottom: 0;
left: 0;
width: 44%;
border: 15px solid #f5f5f5;
z-index: -1
}
.tabs-jean * + .nav-tabs-wrap {
margin-top: 40px
}
.countdown-wrap {
margin-bottom: -30px;
margin-left: -30px
}
.countdown-wrap:empty {
margin-bottom: 0;
margin-left: 0
}
.countdown-wrap > * {
display: inline-block;
margin-top: 0;
margin-bottom: 30px;
margin-left: 30px
}
.countdown-seconds {
display: block
}
* + .countdown-heading {
margin-top: 14px
}
.owl-style-14 .owl-style-14 {
padding-left: 30px;
padding-right: 30px
}
.slick-slider-2 {
max-width: 510px
}
.product-stepper .stepper {
padding-right: 38px
}
.product-stepper input[type=number] {
padding: 17px 10px;
max-width: 70px;
min-height: 70px;
font-size: 24px
}
.product-stepper .stepper-arrow {
width: 32px;
height: 32px;
font-size: 24px;
line-height: 32px
}
}
@media (min-width:768px) {
body {
font-size: 15px
}
.heading-1,
h1 {
font-size: 50px
}
.counter-classic-number .symbol,
.heading-2,
h2 {
font-size: 35px
}
.event-classic-date,
.heading-3,
h3 {
font-size: 26px
}
.event-classic-month,
.heading-4,
.quote-classic-text,
h4 {
font-size: 20px
}
.event-classic-hours,
.heading-5,
.heading-7,
.product-dawn-price,
h5 {
font-size: 18px
}
.heading-6,
h6 {
font-size: 16px
}
.big {
font-size: 18px
}
* + .privacy-link {
margin-top: 45px
}
.row + .link-classic {
margin-top: 45px
}
.box-icon-classic {
text-align: left
}
.box-icon-classic-icon,
.box-icon-classic-svg {
height: 70px;
width: 70px
}
.box-icon-classic-icon {
font-size: 30px;
line-height: 70px
}
.box-icon-classic-svg svg {
max-width: 46px
}
* + .box-icon-classic-text {
margin-top: 10px
}
.box-icon-modern {
text-align: left
}
.box-icon-modern-header {
min-height: 70px
}
.box-icon-modern-icon {
font-size: 42px
}
.box-icon-modern-count {
font-size: 60px
}
.box-icon-modern-svg {
top: -10px
}
.box-icon-modern-svg svg {
max-width: 60px
}
.box-icon-modern-count + .box-icon-modern-icon {
margin-left: 30px
}
.box-icon-modern-count + .box-icon-modern-svg {
margin-left: 20px
}
* + .box-icon-classic-text {
margin-top: 10px
}
.box-icon-creative {
text-align: left
}
.box-icon-creative-icon {
font-size: 40px
}
* + .box-icon-creative-text {
margin-top: 4px
}
.box-icon-nancy {
text-align: left
}
.box-icon-nancy-icon,
.box-icon-nancy-svg {
height: 70px;
width: 70px
}
.box-icon-nancy-svg .svg-bg {
width: 67px
}
.box-icon-nancy-svg .svg-icon {
width: 54px
}
* + .box-icon-nancy-text {
margin-top: 10px
}
.box-icon-kelly {
text-align: left;
padding-top: 30px;
padding-bottom: 30px
}
.box-icon-kelly-svg .svg-icon {
width: 60px
}
.box-comment {
padding-bottom: 45px
}
.box-comment > .box-comment {
margin-top: 45px;
padding-top: 45px;
margin-left: 70px
}
.box-comment + h4 {
margin-top: 40px
}
.box-comment + .box-comment {
margin-top: 45px
}
.box-info-modern-figure {
padding: 15px
}
* + .box-info-modern-title {
margin-top: 22px
}
* + .box-info-modern-text {
margin-top: 10px
}
.box-info-renee-decor::before {
height: 54px
}
* + .box-info-renee-subtitle {
margin-top: 25px
}
* + .box-info-renee-title {
margin-top: 20px
}
* + .box-info-renee-text {
margin-top: 20px
}
* + .box-info-renee-link {
margin-top: 20px
}
.box-info-rose {
text-align: left
}
.box-info-rose-icon {
font-size: 30px;
line-height: 1.6
}
.box-info-rose-title + .unit {
margin-top: 18px
}
.box-info-rose-text + .link-classic {
margin-top: 16px
}
.box-info-beryl-time {
letter-spacing: .3em
}
* + .box-info-beryl-time {
margin-top: 20px
}
* + .box-info-beryl-text {
margin-top: 20px
}
.box-about h2 + p {
margin-top: 20px
}
.box-about p + p {
margin-top: 20px
}
.list-xl > li + li {
margin-top: 50px
}
.list-terms dd + dt {
margin-top: 45px
}
* + .table-custom-responsive {
margin-top: 40px
}
.table-checkout td {
font-size: 18px
}
.button {
padding: 9px 29px
}
.button-sm {
padding: 6px 14px
}
.group-middle .button-sm {
padding: 6px 0
}
.button-lg {
padding: 14px 45px
}
.button-xl {
padding: 11px 45px
}
.button-icon-2 {
font-size: 24px;
min-width: 50px
}
.button-icon-3 {
font-size: 22px;
min-width: 40px;
padding-left: 5px;
padding-right: 5px
}
.rd-form .button-icon-2 {
min-width: 60px
}
.rd-form .row + .button,
.rd-form .row + .group-middle {
margin-top: 60px
}
* + .rd-form {
margin-top: 30px
}
.form-wrap + * {
margin-top: 30px
}
.form-wrap + .button,
.form-wrap + .group-button-1 {
margin-top: 60px
}
.form-input {
font-size: 15px;
min-height: 60px;
padding: 17px 0
}
.form-label {
top: 30px;
font-size: 15px
}
.form-label-outside {
position: static
}
.form-label-outside,
.form-label-outside.auto-fill,
.form-label-outside.focus {
-webkit-transform: none;
-ms-transform: none;
transform: none
}
.checkbox-inline + .group-button-1 {
margin-top: 60px
}
.rd-form-inline .form-button {
min-height: 60px
}
.rd-form-inline .form-button .button {
padding-top: 14px;
padding-bottom: 14px
}
.post-classic-content {
padding: 25px 7% 30px
}
.post-classic-text {
line-height: 1.74
}
* + .post-classic-title {
margin-top: 14px
}
* + .post-classic-text {
margin-top: 12px
}
* + .post-modern-title {
margin-top: 20px
}
* + .post-modern-figure {
margin-top: 30px
}
* + .post-modern-text {
margin-top: 30px
}
* + .post-modern-link {
margin-top: 22px
}
* + .post-creative-content {
margin-top: 18px
}
* + .post-creative-time {
margin-top: 12px
}
.post-lisa-content {
padding: 30px
}
.post-nikki {
text-align: left
}
.post-nikki .unit .post-nikki-figure {
width: 150px
}
.post-nikki-body {
padding: 30px
}
.quote-classic {
text-align: left
}
.quote-classic-text {
padding-top: 0
}
.quote-classic-text::before {
top: 8%;
left: -4px;
font-size: 80px;
-webkit-transform: none;
-ms-transform: none;
transform: none
}
.quote-classic-author {
padding-top: 24px
}
.quote-classic-author,
.quote-classic-text {
padding-left: 58px
}
* + .quote-classic {
margin-top: 34px
}
* + .quote-classic-author {
margin-top: 22px
}
.post-modern + .quote-classic {
margin-top: 40px
}
.quote-classic + p {
margin-top: 36px
}
.quote-classic-big {
text-align: left
}
.quote-classic-big-text {
padding-top: 0
}
.quote-classic-big-text {
padding-left: 70px
}
.quote-classic-big-text::before {
top: 8%;
left: -4px;
font-size: 80px;
-webkit-transform: none;
-ms-transform: none;
transform: none
}
* + .quote-classic-big {
margin-top: 34px
}
.quote-modern .unit {
display: -webkit-inline-flex;
display: inline-flex;
text-align: left
}
.quote-creative {
text-align: left;
padding: 40px 30px
}
.quote-creative-text {
font-size: 20px
}
.quote-creative-rating .icon {
font-size: 24px
}
* + .quote-creative-rating {
margin-top: 18px
}
.quote-creative-rating + .unit {
margin-top: 35px
}
.quote-minimal-text {
font-size: 18px
}
.quote-carly {
text-align: left
}
.quote-carly-text {
padding-top: 0;
font-size: 18px
}
.quote-carly-text::before {
top: 6px;
left: 0;
font-size: 80px;
-webkit-transform: none;
-ms-transform: none;
transform: none
}
.quote-carly-footer,
.quote-carly-text {
padding-left: 60px
}
* + .quote-carly-footer {
margin-top: 30px;
padding-top: 30px
}
* + .breadcrumbs-custom-text {
margin-top: 20px
}
.pagination {
padding-left: 70px;
padding-right: 70px
}
.page-item-control:first-child {
left: 30px
}
.page-item-control:last-child {
right: 30px
}
* + .pagination-wrap {
margin-top: 55px
}
.contacts-creative .icon {
line-height: 24px
}
.contacts-creative li + li {
margin-top: 18px
}
.footer-classic {
text-align: left
}
.footer-classic-panel {
text-align: left;
padding: 30px 0
}
.list-schedule li > :first-child {
min-width: 174px
}
* + .list-schedule {
margin-top: 30px
}
.footer-classic-brand + * {
margin-top: 30px
}
.footer-classic-title + * {
margin-top: 30px
}
.footer-modern {
text-align: left
}
.footer-modern-list > li {
text-indent: -34px;
padding-left: 34px
}
.footer-modern-list > li::before {
width: 17px;
margin-right: 17px
}
.footer-modern-title + .row {
margin-top: 35px
}
.footer-creative {
text-align: left
}
.footer-creative .row + .row {
margin-top: 60px
}
.footer-creative-title {
display: block;
padding-right: 0;
border-right-width: 0
}
.footer-creative-list li + li {
margin-top: 20px
}
.contacts-holly li + li {
margin-top: 30px
}
.footer-creative-panel {
padding: 30px 0
}
.footer-creative-title + * {
margin-top: 34px
}
.footer-corporate {
text-align: left
}
.footer-corporate-panel {
padding: 30px 0
}
.footer-corporate-info {
text-align: left
}
.footer-corporate-list {
margin-bottom: -9px;
max-width: 250px
}
.footer-corporate-list > * {
margin-bottom: 9px
}
.footer-corporate-info .icon {
font-size: 40px;
min-width: 40px
}
.footer-corporate-info > li + li {
margin-top: 22px
}
* + .footer-corporate-decor {
margin-top: 16px
}
.footer-corporate-decor + * {
margin-top: 28px
}
.product-modern .product-badge {
top: 20px;
left: 25px
}
* + .product-modern-text {
margin-top: 18px
}
.product-modern-text + .button {
margin-top: 30px
}
.product-beth {
text-align: left
}
* + .product-beth-subtitle {
margin-top: 20px
}
* + .product-beth-text {
margin-top: 20px
}
.product-beth-text + .group-middle {
margin-top: 40px
}
.product-dawn .unit-body {
padding-left: 30px
}
* + .product-dawn-price {
margin-top: 14px
}
.product-dawn-price + .button {
margin-top: 20px
}
.single-product .group-middle + p {
margin-top: 30px
}
.single-product hr + .group-middle {
margin-top: 30px
}
* + .list-description {
margin-top: 30px
}
.radio-panel .radio-custom,
.radio-panel .radio-custom-dummy {
top: 4px
}
.radio-panel .radio-inline {
font-size: 18px
}
* + .box-radio {
margin-top: 40px
}
.promo-classic {
padding: 40px 30px 120px
}
.team-karen-body {
padding-top: 2px;
padding-bottom: 40px
}
* + .team-karen-list-social {
margin-top: 14px
}
.team-info {
padding-top: 25px;
padding-bottom: 40px
}
* + .team-info-title {
margin-top: 16px
}
* + .team-info-text {
margin-top: 12px
}
.event-classic > .unit {
min-height: 350px
}
.event-classic-body {
padding: 30px 5%
}
.event-classic-body .unit-body {
max-width: 70%
}
.event-classic-hours {
display: block;
margin-left: 0
}
* + .event-classic-panel {
margin-top: 12px
}
* + .event-classic-text {
margin-top: 20px
}
* + .event-classic-link {
margin-top: 20px
}
* + .row {
margin-top: 40px
}
* + .owl-carousel {
margin-top: 40px
}
* + .row-sm {
margin-top: 35px
}
* + .offset-top-md-20 {
margin-top: 20px
}
h3 + .big {
margin-top: 24px
}
.row + .row {
margin-top: 50px
}
.row + .button {
margin-top: 50px
}
.row-md-30 {
margin-bottom: -30px
}
.row-md-30:empty {
margin-bottom: 0
}
.row-md-30 > * {
margin-bottom: 30px
}
.row-md-40 {
margin-bottom: -40px
}
.row-md-40:empty {
margin-bottom: 0
}
.row-md-40 > * {
margin-bottom: 40px
}
.row-md-50 {
margin-bottom: -50px
}
.row-md-50:empty {
margin-bottom: 0
}
.row-md-50 > * {
margin-bottom: 50px
}
.row-md-60 {
margin-bottom: -60px
}
.row-md-60:empty {
margin-bottom: 0
}
.row-md-60 > * {
margin-bottom: 60px
}
.section-sm {
padding: 40px 0
}
.section-sm.section-first {
padding-top: 80px
}
.section-sm.section-last {
padding-bottom: 80px
}
.section-md {
padding: 60px 0
}
.section-lg {
padding: 70px 0
}
.section-xl {
padding: 80px 0
}
.section-xxl {
padding: 90px 0
}
.section-inset-2 {
padding: 65px 0
}
.section-single * + .countdown-wrap {
margin-top: 40px
}
.section-single * + .rd-mailform-wrap {
margin-top: 40px
}
.container-fluid.grid-demonstration [class^=col] {
padding: 15px 10px
}
.grid-system-bordered [class*=col] {
padding-top: 25px;
padding-bottom: 25px
}
.grid-system-outline * + .row {
margin-top: 45px
}
.image-decor-left {
left: -12%;
right: auto
}
.image-decor-right {
right: -12%;
left: auto
}
.box-color-line {
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
justify-content: flex-start
}
.title-classic {
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center
}
.title-classic-title {
max-width: 40%;
-webkit-flex-shrink: 0;
flex-shrink: 0
}
.title-classic-title + .title-classic-subtitle {
padding-left: 40px;
border-left: 1px solid #e1e1e1
}
* + .title-style-3 {
margin-top: 12px
}
* + .title-style-4 {
margin-top: 12px
}
* + .title-style-5 {
margin-top: 25px
}
.bordered-2 > div + div > * {
padding-top: 40px;
border-top: 1px solid #e1e1e1
}
.swiper-slider-1 * + .swiper-title-1 {
margin-top: 12px
}
.swiper-slider-1 * + .swiper-title-2 {
margin-top: 16px
}
.swiper-slider-2 * + .swiper-text {
margin-top: 18px
}
.swiper-slider-3 .swiper-title-2 span {
display: inline-block;
vertical-align: middle;
margin-right: 22px;
margin-bottom: 0
}
.swiper-slider-5.swiper-container-vertical {
max-height: 600px
}
.swiper-slider-5.swiper-container-vertical .swiper-slide-last {
height: 210px
}
* + .swiper-slider-5 {
margin-top: 40px
}
.swiper-slider-6 .swiper-box {
padding-left: 30px
}
.swiper-slider-6 .swiper-box .swiper-title-1 {
margin-left: -30px
}
.swiper-slider-6 * + .swiper-title-1 {
margin-top: 25px
}
.swiper-slider-6 * + .swiper-title-2 {
margin-top: 24px
}
.swiper-slider-6 * + .button,
.swiper-slider-6 * + .button-wrap {
margin-top: 40px
}
.swiper-slider-7.swiper-container-vertical {
max-height: 445px;
padding-right: 55px
}
.swiper-slider-7.swiper-container-vertical .swiper-slide-last {
height: 68px
}
* + .swiper-slider-7 {
margin-top: 68px
}
.rd-search-results .search-list-item::before {
font-size: 18px
}
.rd-search-results * + p {
margin-top: 12px
}
* + .rd-search-results {
margin-top: 55px
}
.form-search .form-input,
.form-search .form-label {
padding-left: 25px
}
* + .form-search {
margin-top: 50px
}
* + .isotope {
margin-top: 50px
}
* + .isotope-wrap {
margin-top: 44px
}
.isotope-filters-list-wrap {
display: inline-block;
position: relative;
padding-bottom: 4px
}
.isotope-filters-list-wrap::before {
position: absolute;
content: '';
bottom: 0;
left: 0;
height: 4px;
width: 100%;
border-radius: 6px;
background: #d7d7d7
}
.isotope-filters-list {
position: static;
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
justify-content: space-between;
max-width: none;
top: auto;
left: auto;
width: auto;
padding: 0;
box-shadow: none;
background: 0 0;
-webkit-transform: none;
-ms-transform: none;
transform: none;
visibility: visible;
opacity: 1;
margin-left: -30px;
margin-right: -30px
}
.isotope-filters-list > * {
padding-left: 30px;
padding-right: 30px
}
.isotope-filters-list a {
display: inline-block;
padding: 0 0 16px
}
.isotope-filters-list a::after {
position: absolute;
content: '';
bottom: -4px;
left: 50%;
width: 130%;
height: 4px;
border-radius: 6px;
background: #76aa6f;
-webkit-transform: translate3d(-50%,0,0);
transform: translate3d(-50%,0,0);
opacity: 0;
-webkit-transition: all .25s ease;
transition: all .25s ease
}
.isotope-filters-list a.active::after,
.isotope-filters-list a:hover::after {
width: 100%;
opacity: 1
}
.isotope-filters-toggle {
display: none
}
* + .tabs-line {
margin-top: 40px
}
.row + .tabs-line {
margin-top: 65px
}
.tabs-line + .button {
margin-top: 50px
}
.tabs-horizontal.tabs-corporate .nav-tabs {
position: relative;
width: 100%;
border: 0;
will-change: transform;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
justify-content: flex-start
}
.tabs-horizontal.tabs-corporate .nav-item {
will-change: transform
}
.tabs-horizontal.tabs-corporate .nav-link {
display: block;
position: relative;
z-index: 1;
min-width: 188px;
letter-spacing: .1em;
padding: 26px 20px;
border-width: 1px 1px 0;
border-style: solid;
border-color: transparent
}
.tabs-horizontal.tabs-corporate .nav-link.active,
.tabs-horizontal.tabs-corporate .nav-link:hover {
color: #151515
}
.tabs-horizontal.tabs-corporate .nav-link.active {
border-color: #f5f5f5
}
.tabs-horizontal.tabs-corporate .tab-content {
border: 1px solid #f5f5f5
}
.tabs-horizontal.tabs-line .nav-tabs-wrap {
padding-bottom: 4px
}
.tabs-horizontal.tabs-line .nav-tabs-wrap::before {
height: 4px;
border-radius: 6px
}
.tabs-horizontal.tabs-line .nav-tabs {
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
justify-content: space-between
}
.tabs-horizontal.tabs-line .nav-tabs-1 {
margin-left: -30px;
margin-right: -30px;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
justify-content: flex-start
}
.tabs-horizontal.tabs-line .nav-tabs-1 > * {
padding-left: 30px;
padding-right: 30px
}
.tabs-horizontal.tabs-line .nav-item {
display: inline-block
}
.tabs-horizontal.tabs-line .nav-link {
padding-top: 0;
padding-bottom: 16px;
font-size: 14px
}
.tabs-horizontal.tabs-line .nav-link::after {
bottom: -4px;
height: 4px;
border-radius: 6px
}
.tabs-horizontal.tabs-line * + .tab-content {
margin-top: 30px
}
.tabs-vertical {
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-align: start;
-webkit-align-items: flex-start;
align-items: flex-start
}
.tabs-vertical .nav-tabs {
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
flex-direction: column;
-webkit-box-align: stretch;
-webkit-align-items: stretch;
align-items: stretch;
-webkit-flex-shrink: 0;
flex-shrink: 0;
max-width: 50%
}
.tabs-vertical .nav-item {
border: 0;
width: 100%;
text-align: left
}
.tabs-vertical .tab-content {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
flex-grow: 1
}
.tabs-vertical.tabs-line .nav-tabs {
width: auto;
min-width: 167px;
border: 0
}
.tabs-vertical.tabs-line .nav-item {
margin: 0
}
.tabs-vertical.tabs-line .nav-link {
position: relative;
padding: 21px 0 17px;
border: 0;
overflow: hidden;
text-align: left
}
.tabs-vertical.tabs-line .nav-link.active,
.tabs-vertical.tabs-line .nav-link:hover {
color: #76aa6f
}
.tabs-vertical.tabs-line .nav-item + .nav-item {
border-top: 1px solid #f5f5f5
}
.tabs-vertical.tabs-line .tab-content {
padding: 0 0 0 35px
}
.tabs-vertical.tabs-line * + .tab-content {
margin-top: 0
}
.tabs-jean .nav-link {
padding: 40px 0
}
.tabs-jean .nav-link::before {
font-size: 80px
}
.card-corporate .card-title a {
padding: 25px 0 25px 56px
}
.card-corporate .card-arrow .icon {
font-size: 22px;
line-height: 36px;
width: 36px;
height: 36px
}
.card-corporate .card-body {
padding: 25px 0 10px
}
.counter-classic-decor::before {
width: 66px
}
* + .counter-classic-decor {
margin-top: 20px
}
* + .counter-classic-title {
margin-top: 25px
}
.counter-modern-decor::before {
width: 42px
}
* + .counter-modern-decor {
margin-top: 16px
}
* + .counter-modern-title {
margin-top: 18px
}
.progress-linear {
font-size: 14px
}
.progress-linear + .progress-linear {
margin-top: 40px
}
.owl-dots {
margin-top: 45px
}
.owl-nav-1 .owl-next::after,
.owl-nav-1 .owl-prev::after {
width: 100px;
height: 100px
}
.owl-nav-1 .owl-prev::after {
right: -24px
}
.owl-nav-1 .owl-next::after {
left: -24px
}
.owl-style-3 {
padding: 0 120px
}
.owl-style-3 .owl-stage-outer {
margin-left: -60px;
margin-right: -60px;
padding-left: 60px;
padding-right: 60px
}
.owl-style-3 .owl-stage-outer::before {
position: absolute;
content: '';
top: 20px;
right: 0;
bottom: 20px;
left: 0;
border-radius: 60px;
background: rgba(255,255,255,.57);
-webkit-transform: scaleY(.9);
-ms-transform: scaleY(.9);
transform: scaleY(.9)
}
.owl-style-3 .owl-nav {
display: block
}
.owl-style-3 .owl-dots {
display: none
}
.owl-style-7 {
padding: 0 75px
}
.owl-style-7 .owl-nav {
display: block
}
.owl-style-7 .owl-dots {
display: none
}
* + .owl-style-7 {
margin-top: 35px
}
* + .owl-style-11 {
margin-top: 40px
}
.owl-style-14 {
padding: 40px
}
.rd-range__pointer.active {
-webkit-transform: scale3d(1.1,1.1,1.1) translate(-50%,-50%);
transform: scale3d(1.1,1.1,1.1) translate(-50%,-50%)
}
.child-carousel .slick-slide {
max-width: 100%
}
.slick-history .child-carousel {
margin-top: 40px;
padding-top: 30px;
padding-bottom: 30px
}
.slick-history .child-carousel::after,
.slick-history .child-carousel::before {
width: 70px
}
.slick-history .child-carousel .slick-slide::after {
top: -37px
}
.slick-history .child-carousel .slick-prev {
left: 20px
}
.slick-history .child-carousel .slick-next {
right: 20px
}
* + .slick-history {
margin-top: 40px
}
}
@media (min-width:992px) {
.heading-1,
h1 {
font-size: 70px
}
.counter-classic-number .symbol,
.heading-2,
h2 {
font-size: 45px
}
.event-classic-date,
.heading-3,
h3 {
font-size: 28px
}
.event-classic-month,
.heading-4,
.quote-classic-text,
h4 {
font-size: 22px
}
.box-icon-classic-icon,
.box-icon-classic-svg {
height: 90px;
width: 90px
}
.box-icon-classic-icon {
font-size: 40px;
line-height: 90px
}
.box-icon-classic-svg svg {
max-width: none
}
* + .box-icon-classic-text {
margin-top: 14px
}
.box-icon-modern-text {
max-width: 95%
}
* + .box-icon-modern-text {
margin-top: 14px
}
.box-icon-creative {
padding: 30px
}
.box-icon-creative-icon {
font-size: 44px
}
.box-icon-nancy-right .box-icon-nancy-svg .svg-bg {
-webkit-transform: translate3d(-50%,-50%,0) rotateY(180deg);
transform: translate3d(-50%,-50%,0) rotateY(180deg)
}
.box-icon-nancy-icon,
.box-icon-nancy-svg {
height: 80px;
width: 80px;
margin-top: 5px
}
.box-icon-nancy-icon {
font-size: 40px;
line-height: 80px
}
.box-icon-nancy-svg .svg-bg {
width: auto
}
.box-icon-nancy-svg .svg-icon {
width: 64px
}
* + .box-icon-nancy-text {
margin-top: 14px
}
.desktop .box-icon-nancy:hover .box-icon-nancy-svg .svg-icon {
-webkit-transform: translate3d(0,-8px,0);
transform: translate3d(0,-8px,0)
}
.desktop .box-icon-nancy-left:hover .box-icon-nancy-svg .svg-bg {
-webkit-transform: translate3d(-50%,-50%,0) rotate(35deg);
transform: translate3d(-50%,-50%,0) rotate(35deg)
}
.desktop .box-icon-nancy-right:hover .box-icon-nancy-svg .svg-bg {
-webkit-transform: translate3d(-50%,-50%,0) rotateY(180deg) rotate(35deg);
transform: translate3d(-50%,-50%,0) rotateY(180deg) rotate(35deg)
}
.box-icon-kelly {
padding: 40px 30px
}
.box-icon-kelly-svg .svg-icon {
width: 70px
}
* + .box-icon-kelly-text {
margin-top: 12px
}
.box-comment .unit {
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center
}
.box-comment + h4 {
margin-top: 50px
}
.desktop .box-info-modern-link:hover {
color: #a3a3a3
}
.desktop .box-info-modern:hover::before {
top: -15px;
right: -15px;
bottom: -60px;
left: -15px;
visibility: visible;
opacity: 1
}
.desktop .box-info-modern:hover .box-info-modern-figure {
border-color: transparent
}
.desktop .box-info-modern:hover .box-info-modern-figure img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1)
}
.desktop .box-info-modern:hover .box-info-modern-link {
-webkit-transform: translate3d(0,10px,0);
transform: translate3d(0,10px,0)
}
.desktop .box-info-modern:hover .box-info-modern-link,
.desktop .box-info-modern:hover .box-info-modern-link:active,
.desktop .box-info-modern:hover .box-info-modern-link:focus {
color: #76aa6f
}
.desktop .box-info-modern:hover .box-info-modern-link:hover {
color: #151515
}
.desktop .box-info-modern:hover .box-info-modern-link::before {
width: 100%;
height: 100%;
border-color: inherit;
-webkit-transition: border-color .3s ease-in-out,width .25s ease,height .25s ease;
transition: border-color .3s ease-in-out,width .25s ease,height .25s ease
}
* + .box-info-renee-subtitle {
margin-top: 35px
}
* + .box-info-renee-title {
margin-top: 30px
}
* + .box-info-renee-text {
margin-top: 30px
}
* + .box-info-renee-link {
margin-top: 36px
}
* + .box-info-beryl-time {
margin-top: 34px
}
* + .box-info-beryl-text {
margin-top: 34px
}
.box-info-beryl-text + .button {
margin-top: 40px
}
.box-cta h2 + .button {
margin-top: 40px
}
.box-about h2 + p {
margin-top: 30px
}
.box-about p + p {
margin-top: 30px
}
.box-about * + img {
margin-top: 50px
}
h3 + .group-xs {
margin-top: 45px
}
h3 + .table-custom-responsive {
margin-top: 50px
}
.title-group + .table-custom-responsive {
margin-top: 55px
}
.table-custom-responsive + .group-justify {
margin-top: 35px
}
.table-cart td:first-child,
.table-cart th:first-child {
padding-left: 30px
}
.table-cart th {
font-size: 18px;
padding-top: 21px;
padding-bottom: 21px
}
.table-cart td:first-child {
min-width: 500px
}
.table-cart td {
font-size: 14px
}
.table-cart-figure {
max-width: 100px
}
/*.table-cart-figure + a {*/
/* margin-left: 30px*/
/*}*/
.button {
padding: 14px 34px
}
.button-sm {
padding: 11px 16px
}
.group-middle .button-sm {
padding: 11px 0
}
.button-lg {
padding: 19px 50px
}
.button-xl {
padding: 16px 50px
}
.button-xl {
padding: 20px 80px
}
.button-icon-2 {
min-width: 60px
}
.button-icon-3 {
min-width: 50px
}
.rd-form-inline .form-button .button-lg {
padding-top: 19px;
padding-bottom: 19px
}
.rd-form-inline-2 {
-webkit-flex-wrap: nowrap;
flex-wrap: nowrap
}
.form-lg .form-input,
.form-lg .form-label {
font-size: 18px;
font-weight: 300;
letter-spacing: .05em
}
.form-lg .form-input {
min-height: 70px;
padding-top: 22px;
padding-bottom: 22px
}
.form-lg .form-label {
top: 35px
}
.rd-form-coupon .form-input {
min-height: 70px;
padding-top: 22px;
padding-bottom: 22px
}
.rd-form-coupon .form-label {
top: 35px
}
.form-style-1 {
padding-top: 6%;
padding-bottom: 8%
}
.form-style-1 * + .rd-form {
margin-top: 30px
}
.form-style-1 * + .form-button {
margin-top: 50px
}
.desktop .post-classic:hover .post-classic-figure img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1)
}
.post-modern-title {
max-width: 85%
}
.desktop .post-modern:hover .post-modern-figure img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1)
}
.desktop .post-creative:hover .post-creative-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
.desktop .post-lisa:hover .post-lisa-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
.post-nikki .unit .post-nikki-figure {
width: 210px
}
.post-nikki-title {
font-size: 22px
}
* + .post-nikki-title {
margin-top: 14px
}
.desktop .post-nikki:hover .post-nikki-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
.desktop .post-minimal:hover .post-minimal-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
.quote-modern {
padding: 45px 30px
}
.quote-modern-text {
padding-top: 65px;
font-size: 18px
}
.quote-modern-text::before {
font-size: 100px
}
.quote-modern-text + .unit {
margin-top: 30px
}
.quote-carly-footer,
.quote-carly-text {
padding-left: 68px
}
.desktop .thumbnail-classic {
overflow: hidden
}
.desktop .thumbnail-classic-caption {
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: 0 0;
pointer-events: none;
z-index: 1
}
.desktop .thumbnail-classic-caption::before {
position: absolute;
content: '';
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(255,255,255,.96);
-webkit-transform: scale(.8);
-ms-transform: scale(.8);
transform: scale(.8);
-webkit-transition: all .3s ease;
transition: all .3s ease;
opacity: 0;
z-index: -1
}
.desktop .thumbnail-classic-caption > div {
pointer-events: auto
}
.desktop .thumbnail-classic-title {
-webkit-transform: translate3d(0,-30px,0);
transform: translate3d(0,-30px,0);
-webkit-transition: all .4s ease;
transition: all .4s ease;
opacity: 0
}
.desktop .thumbnail-classic-price,
.desktop .thumbnail-classic-tag {
-webkit-transform: translate3d(0,30px,0);
transform: translate3d(0,30px,0);
-webkit-transition: all .4s ease;
transition: all .4s ease;
opacity: 0
}
.desktop .thumbnail-classic-button {
-webkit-transition: all .4s ease;
transition: all .4s ease;
opacity: 0
}
.desktop .thumbnail-classic-button:nth-child(1) {
-webkit-transform: translate3d(-40px,40px,0);
transform: translate3d(-40px,40px,0)
}
.desktop .thumbnail-classic-button:nth-child(2) {
-webkit-transform: translate3d(40px,40px,0);
transform: translate3d(40px,40px,0)
}
.desktop .thumbnail-classic:hover .thumbnail-classic-button,
.desktop .thumbnail-classic:hover .thumbnail-classic-caption::before,
.desktop .thumbnail-classic:hover .thumbnail-classic-price,
.desktop .thumbnail-classic:hover .thumbnail-classic-tag,
.desktop .thumbnail-classic:hover .thumbnail-classic-title {
-webkit-transform: none;
-ms-transform: none;
transform: none;
opacity: 1
}
.desktop * + .thumbnail-classic-button-wrap {
margin-top: 24px
}
.desktop .thumbnail-modern {
overflow: hidden
}
.desktop .thumbnail-modern-caption {
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
padding: 15px;
top: 0;
background: 0 0;
pointer-events: none;
z-index: 1
}
.desktop .thumbnail-modern-caption::before {
position: absolute;
content: '';
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(255,255,255,.83);
-webkit-transform: scale(.8);
-ms-transform: scale(.8);
transform: scale(.8);
-webkit-transition: all .3s ease;
transition: all .3s ease;
opacity: 0;
z-index: -1
}
.desktop .thumbnail-modern-caption > div {
pointer-events: auto
}
.desktop .thumbnail-modern-title {
-webkit-transform: scale(1.5);
-ms-transform: scale(1.5);
transform: scale(1.5);
-webkit-transition: all .4s ease;
transition: all .4s ease;
opacity: 0
}
.desktop .thumbnail-modern:hover .thumbnail-modern-caption::before,
.desktop .thumbnail-modern:hover .thumbnail-modern-title {
-webkit-transform: none;
-ms-transform: none;
transform: none;
opacity: 1
}
.breadcrumbs-custom-body {
padding: 20px 0
}
* + .breadcrumbs-custom-text {
margin-top: 30px
}
.footer-classic-title + * {
margin-top: 45px
}
.footer-modern-panel {
padding: 30px 0
}
.footer-creative .row + .row {
margin-top: 80px
}
.footer-creative-panel {
padding: 40px 0
}
.product-2 .product-figure {
min-height: 240px
}
.product-figure {
min-height: 200px
}
.desktop .product {
padding-bottom: 40px
}
.desktop .product::before {
display: none
}
.desktop .product-badge,
.desktop .product-body {
-webkit-transition: all .2s ease;
transition: all .2s ease
}
.desktop .product-button-wrap {
-webkit-box-align: end;
-webkit-align-items: flex-end;
align-items: flex-end;
position: absolute;
content: '';
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 20px 20px 40px;
background: #f5f5f5;
border-radius: 6px;
-webkit-transition: all .2s ease;
transition: all .2s ease;
z-index: -1
}
.desktop .product-button {
opacity: 0;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: all .15s ease;
transition: all .15s ease
}
.desktop .product:hover {
z-index: 2
}
.desktop .product:hover .product-badge,
.desktop .product:hover .product-body {
-webkit-transform: translate3d(0,-18px,0);
transform: translate3d(0,-18px,0)
}
.desktop .product:hover .product-button-wrap {
top: -18px;
bottom: -60px;
background: #fff;
box-shadow: 0 1px 18px 0 rgba(0,0,0,.09)
}
.desktop .product:hover .product-button {
opacity: 1;
-webkit-transform: none;
-ms-transform: none;
transform: none;
-webkit-transition-duration: .3s;
transition-duration: .3s
}
.desktop .product:hover .product-button:nth-child(1) {
-webkit-transition-delay: .1s;
transition-delay: .1s
}
.desktop .product:hover .product-button:nth-child(2) {
-webkit-transition-delay: .25s;
transition-delay: .25s
}
.desktop * + .product-button-wrap {
margin-top: 0
}
.desktop .bg-gray-1 .product-button-wrap,
.desktop .bg-image-1 .product-button-wrap {
background: #fff
}
.desktop .bg-image-1 .product-button-wrap {
box-shadow: 0 1px 18px 0 rgba(0,0,0,.09)
}
* + .product-beth-subtitle {
margin-top: 20px
}
* + .product-beth-text {
margin-top: 30px
}
.product-beth-text + .group-middle {
margin-top: 50px
}
.desktop .product-dawn-figure img {
-webkit-transform: translate3d(-15px,0,0);
transform: translate3d(-15px,0,0);
-webkit-transition: all .3s ease;
transition: all .3s ease;
will-change: transform
}
.desktop .product-dawn:hover .product-dawn-figure img {
-webkit-transform: none;
-ms-transform: none;
transform: none
}
.desktop .product-dawn:hover .product-dawn-button,
.desktop .product-dawn:hover .product-dawn-button:focus {
color: #fff;
background-color: #76aa6f;
border-color: #76aa6f
}
.desktop .product-minimal:hover .product-minimal-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
.product-top-panel + .row {
margin-top: 55px
}
* + .box-radio {
margin-top: 50px
}
.pricing-classic-body {
padding-top: 35px;
padding-bottom: 45px
}
.pricing-classic-list + .button {
margin-top: 35px
}
.desktop .clients-classic:hover img {
opacity: .7
}
.desktop .clients-modern:hover img {
opacity: 1
}
.promo-classic {
padding-top: 75px;
padding-bottom: 185px
}
.team-classic-name {
letter-spacing: .1em
}
* + .team-classic-name {
margin-top: 35px
}
* + .team-classic-text {
margin-top: 20px
}
* + .team-classic-list-social {
margin-top: 25px
}
.desktop .team-classic:hover .team-classic-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
* + .team-modern-name {
margin-top: 28px
}
* + .team-modern-list-social {
margin-top: 22px
}
.desktop .team-modern:hover .team-modern-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
.team-creative-header {
max-width: 277px
}
* + .team-creative-text {
margin-top: 10px
}
* + .team-creative-list-social {
margin-top: 25px
}
.desktop .team-creative:hover .team-creative-figure img {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05)
}
.desktop .team-creative:hover .team-creative-decor {
-webkit-transform: none;
-ms-transform: none;
transform: none
}
.desktop .team-creative:hover .team-creative-body {
-webkit-transform: translate3d(0,20px,0);
transform: translate3d(0,20px,0)
}
.desktop .team-amy-caption {
position: absolute;
left: 50%;
bottom: 10%;
width: 62%;
min-width: 180px;
padding-top: 20px;
padding-bottom: 20px;
border-radius: 6px;
-webkit-transform: translate3d(-50%,30px,0);
transform: translate3d(-50%,30px,0);
-webkit-transition: all .3s ease;
transition: all .3s ease;
visibility: hidden;
opacity: 0
}
.desktop .team-amy-caption::before {
position: absolute;
content: '';
top: 0;
left: 50%;
width: 0;
height: 0;
border-style: solid;
border-width: 16px 0 16px 32px;
border-color: transparent transparent transparent #fff;
-webkit-transform: translate3d(-50%,-50%,0);
transform: translate3d(-50%,-50%,0)
}
.desktop .team-amy-text {
display: block
}
.desktop .team-amy:hover .team-amy-caption {
opacity: 1;
visibility: visible;
-webkit-transform: translate3d(-50%,0,0);
transform: translate3d(-50%,0,0)
}
.desktop .team-karen-body {
padding-bottom: 10px
}
.desktop .team-karen-list-social > li {
opacity: 0;
visibility: hidden;
-webkit-transform: rotateY(90deg);
transform: rotateY(90deg)
}
.desktop .team-karen:hover .team-karen-figure img {
-webkit-transform: translate3d(0,-14px,0);
transform: translate3d(0,-14px,0)
}
.desktop .team-karen:hover .team-karen-header svg {
fill: #ebebeb
}
.desktop .team-karen:hover .team-karen-body::before {
bottom: -30px;
background: #ebebeb
}
.desktop .team-karen:hover .team-karen-list-social > li {
opacity: 1;
visibility: visible;
-webkit-transform: none;
-ms-transform: none;
transform: none
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(2) {
-webkit-transition-delay: 50ms;
transition-delay: 50ms
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(3) {
-webkit-transition-delay: .1s;
transition-delay: .1s
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(4) {
-webkit-transition-delay: 150ms;
transition-delay: 150ms
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(5) {
-webkit-transition-delay: .2s;
transition-delay: .2s
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(6) {
-webkit-transition-delay: 250ms;
transition-delay: 250ms
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(7) {
-webkit-transition-delay: .3s;
transition-delay: .3s
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(8) {
-webkit-transition-delay: 350ms;
transition-delay: 350ms
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(9) {
-webkit-transition-delay: .4s;
transition-delay: .4s
}
.desktop .team-karen:hover .team-karen-list-social li:nth-child(10) {
-webkit-transition-delay: 450ms;
transition-delay: 450ms
}
.desktop .team-info:hover .team-info-figure img {
box-shadow: 0 3px 18px 0 rgba(0,0,0,.15)
}
.event-classic > .unit {
min-height: 390px
}
.event-classic > .unit > .unit-left {
width: 30%
}
.event-classic-body {
padding-left: 7%;
padding-right: 7%
}
* + .event-classic-text {
margin-top: 30px
}
* + .event-classic-link {
margin-top: 34px
}
.row-lg-20 {
margin-bottom: -20px
}
.row-lg-20:empty {
margin-bottom: 0
}
.row-lg-20 > * {
margin-bottom: 20px
}
.row-lg-50 {
margin-bottom: -50px
}
.row-lg-50:empty {
margin-bottom: 0
}
.row-lg-50 > * {
margin-bottom: 50px
}
.row-lg-60 {
margin-bottom: -60px
}
.row-lg-60:empty {
margin-bottom: 0
}
.row-lg-60 > * {
margin-bottom: 60px
}
.row-lg-70 {
margin-bottom: -70px
}
.row-lg-70:empty {
margin-bottom: 0
}
.row-lg-70 > * {
margin-bottom: 70px
}
.row-lg-80 {
margin-bottom: -80px
}
.row-lg-80:empty {
margin-bottom: 0
}
.row-lg-80 > * {
margin-bottom: 80px
}
html [class*=section-].section-lg-0 {
padding: 0 0 1px
}
.section-sm {
padding: 50px 0
}
.section-sm.section-first {
padding-top: 100px
}
.section-sm.section-last {
padding-bottom: 100px
}
.section-md {
padding: 70px 0
}
.section-lg {
padding: 80px 0
}
.section-xl {
padding: 90px 0
}
.section-xxl {
padding: 100px 0
}
.section-single .countdown-wrap {
margin-bottom: -30px;
margin-left: -65px
}
.section-single .countdown-wrap:empty {
margin-bottom: 0;
margin-left: 0
}
.section-single .countdown-wrap > * {
display: inline-block;
margin-top: 0;
margin-bottom: 30px;
margin-left: 65px
}
.section-single * + .button {
margin-top: 50px
}
.section-single * + .countdown-wrap {
margin-top: 55px
}
.section-single * + .rd-mailform-wrap {
margin-top: 60px
}
.container-fluid.grid-demonstration [class^=col] {
padding: 20px
}
html:not(.tablet):not(.mobile) .bg-fixed {
background-attachment: fixed
}
.inset-lg-bottom-10 {
padding-bottom: 10px
}
.aside-typography-item {
padding-left: 30px;
border-left: 1px solid #e1e1e1
}
.title-modern {
font-size: 13em
}
* + .title-style-4 {
margin-top: 20px
}
.title-style-4 + .tabs-line {
margin-top: 50px
}
.title-style-5 + .button {
margin-top: 35px
}
.bordered-2 > div + div > * {
padding-top: 50px;
border-top: 1px solid #e1e1e1
}
.rd-navbar-project {
padding: 33px 15px 30px
}
* + .rd-navbar-project-content {
margin-top: 33px
}
.swiper-button-next,
.swiper-button-prev {
display: block
}
.swiper-pagination {
display: none
}
.swiper-slider-1 .swiper-slide-caption {
padding-right: 90px;
padding-left: 90px
}
.swiper-slider-2 .swiper-slide-caption {
padding-right: 90px;
padding-left: 90px
}
.swiper-slider-3 .swiper-slide-caption {
padding-right: 90px;
padding-left: 90px
}
.swiper-slider-4 .swiper-slide-caption {
padding-right: 90px;
padding-left: 90px
}
.swiper-slider-4 .swiper-pagination {
display: none
}
.swiper-slider-4 .swiper-title-1 {
line-height: 1.364
}
.swiper-slider-4 * + .button,
.swiper-slider-4 * + .button-wrap {
margin-top: 40px
}
.rd-navbar-static-linked .header-creative-wrap + .section-custom-1,
.rd-navbar-static-linked .header-creative-wrap + .swiper-slider-4 .swiper-slide {
padding-top: 172px
}
.swiper-slider-5.swiper-container-vertical {
max-height: 685px;
padding-right: 70px
}
.swiper-slider-5.swiper-container-vertical .swiper-slide-last {
height: 255px
}
.swiper-slider-6 .swiper-slide-caption {
padding-right: 90px;
padding-left: 90px
}
.swiper-slider-6 .swiper-box {
padding-left: 70px
}
.swiper-slider-6 .swiper-box .swiper-title-1 {
margin-left: -70px
}
.swiper-slider-7.swiper-container-vertical .swiper-slide-last {
height: 64px
}
* + .swiper-slider-7 {
margin-top: 45px
}
.google-map {
height: 520px
}
.rd-search-results .search-list-item {
padding-left: 40px
}
.isotope-filters-modern .inline-list {
-webkit-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0);
margin-bottom: -10px;
margin-left: -23px;
margin-right: -23px
}
.isotope-filters-modern .inline-list > * {
margin-top: 10px;
padding-left: 23px;
padding-right: 23px
}
html:not(.tablet):not(.mobile) .isotope-modern-wrap [class*=col] {
margin-top: 0
}
.desktop .isotope-custom-2 {
padding-left: 0;
padding-right: 0
}
.desktop .isotope-custom-2 .row {
margin-right: 0;
margin-left: 0;
margin-bottom: 0
}
.desktop .isotope-custom-2 .row > .col,
.desktop .isotope-custom-2 .row >[class*=col-] {
padding-right: 0;
padding-left: 0;
margin-bottom: 0
}
.tabs-horizontal.tabs-line .nav-tabs-1 {
margin-left: -45px;
margin-right: -45px
}
.tabs-horizontal.tabs-line .nav-tabs-1 > * {
padding-left: 45px;
padding-right: 45px
}
.tabs-horizontal.tabs-line .nav-tabs-1 .nav-link {
letter-spacing: .075em
}
.tabs-horizontal.tabs-line * + .tab-content {
margin-top: 35px
}
.tabs-horizontal.tabs-line * + .tab-content-1 {
margin-top: 45px
}
* + .card-group-custom {
margin-top: 30px
}
* + .card-group-custom-1 {
margin-top: 20px
}
.card-corporate .card-title a {
font-size: 16px
}
.desktop .card-corporate .card-title a:hover .card-arrow .icon {
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg)
}
.desktop .card-corporate .card-title a.collapsed:hover .card-arrow .icon {
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg)
}
* + .counter-classic-decor {
margin-top: 24px
}
* + .counter-classic-title {
margin-top: 30px
}
* + .counter-modern-decor {
margin-top: 18px
}
* + .counter-modern-title {
margin-top: 24px
}
.progress-linear + .progress-linear {
margin-top: 46px
}
.owl-style-3 {
padding: 0 160px
}
.owl-style-3 .owl-stage-outer {
margin-left: -85px;
margin-right: -85px;
padding-left: 85px;
padding-right: 85px
}
.owl-style-6 {
padding: 40px 0
}
.owl-style-14 {
padding-top: 60px;
padding-bottom: 60px
}
.slick-product.slick-vertical {
margin-right: 25px
}
.slick-quote-nav {
max-width: 85%;
margin-left: auto;
margin-right: auto
}
.slick-history .child-carousel {
margin-top: 50px
}
* + .slick-history {
margin-top: 50px
}
}
@media (min-width:1025px) {
.lg-outer .lg-thumb-item {
-webkit-transition: border-color .25s ease;
transition: border-color .25s ease
}
}
@media (min-width:1200px) {
.heading-1,
h1 {
font-size: 100px
}
.counter-classic-number .symbol,
.heading-2,
h2 {
font-size: 55px
}
.event-classic-date,
.heading-3,
h3 {
font-size: 30px
}
.event-classic-month,
.heading-4,
.quote-classic-text,
h4 {
font-size: 24px
}
.box-icon-classic-title {
margin-top: 4px
}
.box-icon-modern-header {
min-height: 80px
}
.box-icon-modern-count {
font-size: 70px
}
.box-icon-modern-icon {
font-size: 48px
}
.box-icon-modern-icon.fl-bigmug-line-big104 {
font-size: 56px
}
.box-icon-modern-icon.fl-bigmug-line-giftbox54 {
font-size: 50px
}
.box-icon-modern-svg svg {
max-width: none
}
.box-icon-creative {
padding: 42px
}
.box-icon-creative-icon {
font-size: 48px
}
.box-icon-kelly {
padding-left: 40px;
padding-right: 40px
}
.box-icon-kelly-svg .svg-icon {
width: 74px
}
.box-comment > .box-comment {
margin-left: 145px
}
.box-info-classic {
padding: 60px 40px 90px
}
.box-info-classic-year {
max-width: 174px
}
* + .box-info-classic-text {
margin-top: 18px
}
.box-info-rose-text {
padding: 4px 8px
}
.box-info-rose-icon {
font-size: 35px
}
.table-cart td {
font-size: 18px
}
.table-cart td:first-child {
font-size: 18px
}
.rd-form .button {
min-width: 190px
}
.rd-form .button-icon-2 {
min-width: 60px
}
.rd-form-inline {
margin-left: -46px
}
.rd-form-inline > * {
margin-left: 46px
}
.form-style-1 * + .rd-form {
margin-top: 50px
}
.form-style-1 * + .form-button {
margin-top: 65px
}
.post-classic-content {
padding: 34px 10% 45px
}
* + .post-classic-title {
margin-top: 20px
}
* + .post-classic-text {
margin-top: 18px
}
.post-modern-title {
max-width: 80%
}
* + .post-creative-content {
margin-top: 24px
}
* + .post-creative-time {
margin-top: 15px
}
.post-lisa-content {
padding: 35px 65px
}
.post-nikki .unit .post-nikki-figure {
width: auto
}
.post-nikki-body {
padding: 12% 10%
}
.post-nikki-title {
font-size: 24px
}
.quote-classic-big-text {
line-height: 1.53
}
.quote-modern {
padding: 60px 45px
}
.quote-modern-2 {
padding: 70px 80px
}
.quote-creative {
padding: 50px 50px 60px
}
.quote-creative-text {
font-size: 24px
}
.footer-classic-panel {
padding: 40px 0
}
.footer-modern-list {
max-width: 94%
}
.footer-modern-list > li {
padding-right: 17px
}
.footer-modern-list > li:hover {
padding-right: 0
}
.footer-modern-list > li:hover::before {
width: 34px;
background: #76aa6f
}
.footer-modern-panel {
padding: 35px 0
}
.footer-creative .row + .row {
margin-top: 100px
}
.footer-creative-panel {
padding: 50px 0
}
.footer-corporate-panel {
padding: 45px 0
}
.product-wrap-1 {
padding: 40px
}
.product-dawn .unit-left {
-webkit-flex-basis: 50%;
flex-basis: 50%;
max-width: 50%
}
* + .product-dawn-price {
margin-top: 26px
}
.product-dawn-price + .button {
margin-top: 35px
}
.product-terri-figure {
min-height: 280px
}
.list-shop-filter .checkbox,
.list-shop-filter .checkbox-inline {
padding-left: 40px
}
.team-creative-body {
padding: 0 40px
}
.event-classic > .unit > .unit-left {
width: 35%
}
.event-classic-body {
padding-left: 10%;
padding-right: 10%
}
h1 + p {
margin-top: 6px
}
* + .row-lg {
margin-top: 50px
}
* + .row-xl {
margin-top: 60px
}
* + .row-xxl {
margin-top: 70px
}
* + .owl-carousel {
margin-top: 50px
}
.container + .container {
margin-top: 60px
}
.row + .row {
margin-top: 60px
}
.row + .button {
margin-top: 60px
}
.row-xl-100 {
margin-bottom: -100px
}
.row-xl-100:empty {
margin-bottom: 0
}
.row-xl-100 > * {
margin-bottom: 100px
}
.section-md {
padding: 80px 0
}
.section-lg {
padding: 90px 0
}
.section-xl {
padding: 100px 0
}
.section-xxl {
padding: 110px 0
}
.section-inset-1 {
padding: 120px 0
}
.section-inset-4,
.section-inset-5 {
padding-top: 120px
}
.grid-demonstration * + p {
margin-top: 22px
}
.container-fluid.grid-demonstration [class^=col] {
padding: 30px
}
.grid-system-bordered [class*=col] {
padding-top: 40px;
padding-bottom: 40px
}
.image-decor-left {
left: -10%
}
.image-decor-right {
right: -10%
}
.inset-xl-left-35 {
padding-left: 35px
}
.inset-xl-right-20 {
padding-right: 20px
}
.inset-xl-right-30 {
padding-right: 30px
}
.inset-xl-right-35 {
padding-right: 35px
}
.inset-xl-right-50 {
padding-right: 50px
}
.inset-xl-right-55 {
padding-right: 55px
}
.inset-xl-right-70 {
padding-right: 70px
}
.inset-xl-right-100 {
padding-right: 100px
}
.typography-style-1 p {
max-width: 95%
}
.aside-typography {
padding-top: 20px
}
.title-modern {
font-size: 15em
}
* + .title-style-5 {
margin-top: 35px
}
.rd-navbar-static .rd-navbar-dropdown {
padding: 40px 44px;
margin-left: -44px
}
.rd-navbar-static .rd-dropdown-item + .rd-dropdown-item {
margin-top: 24px
}
.rd-navbar-static .rd-dropdown-link,
.rd-navbar-static .rd-megamenu-list-link {
font-size: 14px
}
.rd-navbar-static .rd-navbar-megamenu {
padding: 30px 70px 70px
}
.rd-navbar-static .rd-megamenu-item + .rd-megamenu-item {
padding-left: 40px
}
.rd-navbar-static .rd-megamenu-banner .banner-classic {
max-width: 300px
}
.rd-navbar-static .rd-megamenu-icon {
font-size: 30px
}
.rd-navbar-static .rd-megamenu-text {
font-size: 14px
}
.rd-navbar-static .rd-megamenu-list-item + .rd-megamenu-list-item {
margin-top: 24px
}
.rd-navbar-static * + .rd-megamenu-list {
margin-top: 35px
}
.rd-navbar-static .rd-megamenu-title + .banner-classic {
margin-top: 42px
}
.rd-navbar-static .rd-navbar-search-2.active .rd-search .form-wrap {
max-width: 1000px
}
.rd-navbar-classic.rd-navbar-static .rd-navbar-main {
padding-top: 18px;
padding-bottom: 18px
}
.rd-navbar-project {
width: 410px;
padding: 38px 30px 50px
}
* + .rd-navbar-project-content {
margin-top: 38px
}
* + .contacts-modern {
margin-top: 60px
}
.rd-navbar-modern.rd-navbar-static .rd-navbar-aside {
padding-top: 15px;
padding-bottom: 35px
}
.rd-navbar-creative.rd-navbar-static .rd-navbar-aside {
padding: 13px 0
}
.rd-navbar-corporate.rd-navbar-static .rd-navbar-aside {
padding: 15px 0 12px
}
.rd-navbar-corporate.rd-navbar-static .rd-navbar-main-element {
padding: 20px 0
}
.swiper-slider-1 * + .button,
.swiper-slider-1 * + .button-wrap {
margin-top: 40px
}
.swiper-slider-1 * + .swiper-title-1 {
margin-top: 18px
}
.swiper-slider-1 * + .swiper-title-2 {
margin-top: 18px
}
.swiper-slider-2 * + .button,
.swiper-slider-2 * + .button-wrap {
margin-top: 45px
}
.swiper-slider-2 * + .swiper-text {
margin-top: 28px
}
.swiper-slider-2 * + .swiper-title-1 {
margin-top: 16px
}
.swiper-slider-3 * + .button,
.swiper-slider-3 * + .button-wrap {
margin-top: 35px
}
.swiper-slider-3 * + .swiper-title-3 {
margin-top: 26px
}
.swiper-slider-4 * + .swiper-title-2 {
margin-top: 24px
}
.swiper-slider-4 * + .button,
.swiper-slider-4 * + .button-wrap {
margin-top: 50px
}
.rd-navbar-static-linked .header-creative-wrap + .section-custom-1,
.rd-navbar-static-linked .header-creative-wrap + .swiper-slider-4 .swiper-slide {
padding-top: 184px
}
* + .swiper-slider-5 {
margin-top: 50px
}
.swiper-slider-6 * + .button,
.swiper-slider-6 * + .button-wrap {
margin-top: 50px
}
.swiper-slider-7.swiper-container-vertical .swiper-slide-last {
height: 60px
}
* + .form-search {
margin-top: 60px
}
.tabs-jean .nav-tabs-wrap {
padding-left: 30px;
padding-right: 30px
}
.tabs-jean .nav-link {
padding: 56px 0
}
.tabs-jean .nav-link::before {
font-size: 100px
}
.tabs-jean .tab-content {
padding-right: 5%
}
.tabs-jean * + .nav-tabs-wrap {
margin-top: 55px
}
.card-corporate .card-title a {
padding: 30px 0 30px 66px;
font-size: 18px
}
.card-corporate .card-arrow .icon {
font-size: 24px;
line-height: 42px;
width: 42px;
height: 42px
}
* + .counter-classic-title {
margin-top: 36px
}
* + .countdown-wrap {
margin-top: 50px
}
.countdown-wrap + p {
margin-top: 40px
}
.owl-style-1 .owl-dots {
margin-top: 55px
}
.owl-style-3 {
padding: 0 215px
}
.owl-style-3 .owl-prev {
left: 30px
}
.owl-style-3 .owl-next {
right: 30px
}
.owl-style-6 {
padding: 50px 30px
}
.owl-style-12 .owl-dots {
margin-top: 55px
}
.slick-product.slick-vertical {
margin-right: 38px
}
.slick-history .child-carousel {
margin-top: 75px
}
.slick-history .child-carousel::after,
.slick-history .child-carousel::before {
width: 7.5%
}
.slick-history .child-carousel .slick-slide::before {
width: calc(100% - 174px + 30px)
}
.slick-history .child-carousel .slick-prev {
left: 3.3%
}
.slick-history .child-carousel .slick-next {
right: 3.3%
}
}
@media (min-width:1500px) {
.image-decor-left {
left: 0
}
.image-decor-right {
right: 0
}
}
@media (min-width:1600px) {
.post-creative-content {
padding: 0 6%
}
.section-xxl {
padding: 120px 0
}
.section-inset-1 {
padding: 140px 0
}
.section-inset-3,
.section-inset-4 {
padding-top: 140px
}
.section-inset-5 {
padding-top: 150px
}
.section-single-header {
padding-top: calc(1em + 9vh)
}
.section-single-main {
padding: calc(1em + 1vh) 0 calc(1em + 10vh)
}
.section-single-footer {
padding-bottom: calc(1em + 4vh)
}
.section-fluid {
padding-left: 75px;
padding-right: 75px
}
.section-fluid .container-fluid {
padding-left: 0;
padding-right: 0;
max-width: 1770px;
margin-left: auto;
margin-right: auto
}
.container-fluid.grid-demonstration .row {
margin-left: -35px;
margin-right: -35px
}
.container-fluid.grid-demonstration [class^=col] {
padding: 40px 40px 40px 60px
}
.container-fluid.grid-demonstration .col-12,
.container-fluid.grid-demonstration .col-6 {
padding-right: 60px
}
.title-modern {
font-size: 20em
}
.rd-navbar-static .rd-navbar-search-2 .rd-search .form-wrap {
margin-top: 15%
}
.rd-navbar-classic.rd-navbar-static .rd-navbar-main {
padding-top: 30px;
padding-bottom: 30px
}
.rd-navbar-project {
padding-top: 50px;
padding-bottom: 90px
}
* + .rd-navbar-project-content {
margin-top: 50px
}
.rd-navbar-modern.rd-navbar-static .rd-navbar-aside {
padding-top: 25px;
padding-bottom: 45px
}
.rd-navbar-creative.rd-navbar-static .rd-navbar-aside {
padding: 23px 0
}
.rd-navbar-corporate.rd-navbar-static .rd-navbar-aside {
padding: 19px 0 16px
}
.rd-navbar-corporate.rd-navbar-static .rd-navbar-main-element {
padding: 32px 0
}
.rd-navbar-static-linked .header-creative-wrap + .section-custom-1,
.rd-navbar-static-linked .header-creative-wrap + .swiper-slider-4 .swiper-slide {
padding-top: 204px
}
.owl-style-4 {
padding: 0
}
* + .owl-style-12 {
margin-top: 65px
}
.child-carousel::after,
.child-carousel::before {
width: 6.5%
}
}
@media (min-width:1630px) {
html.boxed .page {
max-width: 1600px;
margin-left: auto;
margin-right: auto;
box-shadow: 0 0 23px 0 rgba(1,1,1,.1)
}
html.boxed .rd-navbar-static {
max-width: 1600px;
margin-left: auto;
margin-right: auto
}
html.boxed .rd-navbar-static.rd-navbar--is-stuck {
max-width: 1600px;
width: 100%;
left: calc(50% - 1600px);
right: calc(50% - 1600px)
}
}
@media (min-width:1800px) {
.container-fluid.grid-demonstration .row {
margin-left: -75px;
margin-right: -75px
}
.container-fluid.grid-demonstration [class^=col] {
padding: 45px 80px 45px 100px
}
.container-fluid.grid-demonstration .col-12,
.container-fluid.grid-demonstration .col-6 {
padding-right: 100px
}
}
@media (max-width:1600px) {
.block-center {
padding: 20px
}
.block-center:hover .block-center-header {
background-color: #fff
}
.block-center-header {
background-color: #76aa6f
}
.grid-demonstration p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis
}
}
@media (max-width:992px) {
.table-custom th {
padding-top: 20px;
padding-bottom: 20px
}
.table-custom-responsive {
display: block;
width: 100%;
overflow-x: auto;
-ms-overflow-style: -ms-autohiding-scrollbar
}
.table-custom-responsive.table-bordered {
border: 0
}
.container-fluid.grid-demonstration .row {
margin-left: 0;
margin-right: 0
}
.swiper-slide-caption {
padding-bottom: 70px
}
.isotope-condensed {
padding: 0 0 30px;
margin-left: 0;
margin-right: 0
}
.isotope-condensed .row.row-condensed >[class*=col] {
padding-left: 10px;
padding-right: 10px
}
.isotope-condensed .row.row-condensed >[class*=col] +[class*=col] {
margin-top: 25px
}
.card-corporate-2:last-child .card-title a.collapsed {
border-bottom-color: #e1e1e1
}
.item-description-wrap {
padding: 25px 10px;
}
}
@media (max-width:768px) {
.section .row .col-md-6:first-child .youtube-box {
margin: 0 0 2rem 0;
}
.grid-demonstration * + p {
margin-top: 6px
}
.visible-xs {
display: block;
}
.form_question .form-wrap {
display: block;
min-width: 260px;
}
.form_question .form-wrap input {
text-align: center;
}
.swiper-title-1 {
font-size: 30px;
}
.form_question .rd-form-inline .form-button {
margin: 1em auto 0;
}
.form_question .form-wrap + .form-wrap {
margin-left: 0;
}
[data-isotope-layout] [class*=col-] {
max-width: 100%
}
.isotope-modern-wrap [class*=col] {
width: 100%;
max-width: 100%
}
.tabs-corporate .nav-tabs {
margin-bottom: 0;
margin-left: -20px
}
.tabs-corporate .nav-tabs:empty {
margin-bottom: 0;
margin-left: 0
}
.tabs-corporate .nav-tabs > * {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
margin-left: 20px
}
.tabs-corporate .nav-link {
border-width: 1px;
border-style: solid;
border-color: transparent
}
.tabs-corporate .nav-link.active {
border-color: transparent transparent #e9da5d transparent
}
.counter-classic-title {
font-size: 14px
}
.counter-modern-title {
font-size: 14px
}
#lg-zoom-in,
#lg-zoom-out,
.lg-fullscreen {
display: none
}
.lg-icon {
font-size: 22px;
width: 45px
}
.call__qa, .call__qa2 {
display: flex;
align-items: center;
justify-content: center;
bottom: 0;
top: unset;
width: 49%;
left: 0;
color: #151515;
font-weight: 700;
height: 38px;
font-size: 13px;
line-height: normal;
text-align: center;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
border-top-right-radius: 10px;
-ms-transform: none;
-moz-transform: none;
-webkit-transform: none;
transform: none;
-ms-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
.call__qa2 {
right: 0;
left: unset;
margin: 0 0 0 2%;
border-top-left-radius: 10px;
border-top-right-radius: 0
}
}
@media (max-width:576px) {
.rd-form-inline .form-input,
.rd-form-inline .form-label {
text-align: center
}
.container.grid-demonstration [class^=col] {
padding: 5px
}
.isotope-custom-1 [class*=col] > * {
max-width: 270px;
margin-left: auto;
margin-right: auto
}
.countdown-heading {
font-size: 14px
}
.swiper-slider .button-lg {
font-size: 12px;
padding: 9px 10px;
}
.rd-navbar-basket span {
right: -5px;
}
.swiper-slide-caption .swiper-title-2 {
font-size: 16px;
line-height: 24px;
}
.call__qa, .call__qa2 {
display: flex;
align-items: center;
justify-content: center;
bottom: 0;
top: unset;
width: 49%;
left: 0;
color: #151515;
font-weight: 700;
height: 38px;
font-size: 13px;
line-height: normal;
text-align: center;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
border-top-right-radius: 10px;
-ms-transform: none;
-moz-transform: none;
-webkit-transform: none;
transform: none;
-ms-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
.call__qa2 {
right: 0;
left: unset;
margin: 0 0 0 2%;
border-top-left-radius: 10px;
border-top-right-radius: 0
}
}
@media (min-width:576px) and (max-width:767px) {
.footer-modern-list-2 {
-webkit-columns: 1;
columns: 1
}
.product-modern-figure img {
max-width: 230px
}
.swiper-slider-1 *+.swiper-title-2 {
font-size: 18px;
}
}
@media (min-width:992px) and (max-width:1200px) {
.footer-corporate .button {
padding-left: 15px;
padding-right: 15px
}
.product-3 .product-figure {
min-height: 180px
}
.product-modern-figure img {
max-width: 230px
}
.mobile .isotope-custom-1 .col-lg-8,
.tablet .isotope-custom-1 .col-lg-8 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%
}
}
@media (min-width:768px) and (max-width:991px) {
.slick-product.slick-vertical {
display: -webkit-box;
display: -webkit-flex;
display: flex;
margin-left: -6px;
margin-right: -6px
}
.slick-product.slick-vertical .carousel-parent,
.slick-product.slick-vertical .child-carousel {
padding-left: 6px;
padding-right: 6px
}
.slick-product.slick-vertical .carousel-parent {
width: 74%;
margin-bottom: 0
}
.slick-product.slick-vertical .child-carousel {
width: 26%;
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-align-content: stretch;
align-content: stretch
}
.slick-product.slick-vertical .child-carousel .slick-list {
display: -webkit-box;
display: -webkit-flex;
display: flex;
margin-left: 0;
margin-right: 0
}
.slick-product.slick-vertical .child-carousel .slick-slide {
width: calc(100% - 10px)!important;
margin-left: 5px;
margin-right: 5px
}
.slick-product.slick-vertical .slick-arrow {
right: auto;
left: 50%;
-webkit-transform: translate(-50%,0);
-ms-transform: translate(-50%,0);
transform: translate(-50%,0)
}
.slick-product.slick-vertical .slick-prev {
top: -10px
}
.slick-product.slick-vertical .slick-prev::before {
content: '\f239'
}
.slick-product.slick-vertical .slick-next {
top: auto;
bottom: -10px
}
.slick-product.slick-vertical .slick-next::before {
content: '\f236'
}
} | 0.397588 | 0.100304 |
div {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#optionsframework {
max-width: none;
}
#optionsframework-wrap {
overflow: hidden;
border: 1px solid #ccc;
background-color: #fff;
}
#optionsframework-wrap a:hover {
text-decoration: none;
}
#optionsframework-wrap h2 {
background-color: #eee;
padding: 10px 20px;
border-bottom: 1px solid #ccc;
box-shadow: 1px 1px 0 #fff inset;
text-shadow: 1px 1px #fff;
}
#optionsframework-wrap h2.nav-tab-wrapper {
width: 200px;
float: left;
padding: 0;
margin-right: 1px;
border-bottom: 0;
margin-bottom: 10px;
}
h2 .nav-tab {
display: block;
height: 50px;
line-height: 50px;
padding: 0 20px;
font-size: 13px;
margin: 0;
border-right: 1px solid #ccc;
margin-right: -1px;
border-left: 0;
border-top: 0;
border-bottom: 1px solid #ccc!important;
background-color: #f5f5f5;
box-shadow: 1px 1px 0 #fff inset;
width:160px;
}
h2 .nav-tab-active {
border-right: 2px solid #fff;
margin-right: -2px;
position: relative;
z-index:9;
}
h2 a.nav-tab:hover {
text-decoration: none;
background-color: #f5f5f5;
}
h2 a.nav-tab-active:hover {
border-bottom: inherit;
background: inherit;
}
div#optionsframework-metabox {
float: left;
width: calc(100% - 201px);
padding-top: 0;
}
.postbox {
border: 0;
margin-bottom: 0;
border-left: 1px solid #ccc;
margin-left: -1px;
}
#optionsframework-wrap .nav-tab-wrapper .nav-tab {
}
#optionsframework-wrap .nav-tab-wrapper .nav-tab-active {
background-color: #fff;
border-right: 1px solid #FFF;
margin-right: -1px;
}
#optionsframework-wrap .group {
padding: 10px 20px 10px;
}
#optionsframework-wrap .group h3 {
display: none;
}
#optionsframework-wrap .group .section {
padding: 0 10px;
margin-bottom: 20px;
border-bottom: 1px dashed #ccc;
padding-bottom: 20px;
}
#optionsframework-wrap .group .section h4 {
margin-bottom: 15px;
font-size: 1.3em;
margin-top: 10px;
}
#optionsframework-wrap .group .section.sub_section_titled {
padding: 0;
border-top: none;
border-bottom: 0;
margin-bottom: 10px;
}
#optionsframework-wrap .group .sub_section_titled h4 {
border: 1px solid #ccc;
padding: 10px;
background-color: #f4f4f4;
font-size: 1.5em;
margin-bottom: 20px;
}
#optionsframework-wrap .group .sub_section_titled .option {
padding: 0 10px;
}
.wp-color-result {
height: 30px;
}
.wp-color-result:after {
line-height: 30px;
}
#optionsframework-wrap .group .section input[type="text"],
#optionsframework-wrap .group .section input[type="number"],
#optionsframework-wrap .group .section textarea,
#optionsframework-wrap .group .section select {
height: auto;
padding: 5px 10px;
}
#optionsframework-submit {
border-bottom: 1px solid #ccc;
margin-bottom: -1px;
}
#optionsframework-wrap .group .section-accordion {
background-color: #f5f5f5;
padding: 10px;
border-bottom: 0;
border: 1px solid #ccc;
overflow: hidden;
color: #555;
}
#optionsframework-wrap .group .section-accordion.close {
opacity: 1;
}
#optionsframework-wrap .group .section-accordion h4 {
margin: 0;
color: inherit;
}
#optionsframework-wrap .group .section-accordion .fa {
float: right;
}
#setting-error-save_options .faded {
opacity: 1;
}
#wpbody-content .metabox-holder {
padding-top: 0;
}
#setting-error-save_options {
margin-left: 201px;
margin-bottom: 10px;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
#optionsframework-wrap {
border-radius: 5px;
}
#optionsframework-wrap .group .section-text.mini .option .explain {
margin-left: 10px;
}
#optionsframework-wrap .group .section-accordion {
cursor: pointer;
}
img.of-radio-img-img {
width: 20px;
height: 20px;
}
#optionsframework .controls .of-radio-img-img {
width: 30px;
height: 30px;
border-width: 1px;
opacity: 1;
}
#optionsframework .controls .of-radio-img-selected {
border-color: #5B9DD9;
box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
opacity: 1;
}
h2.nav-tab-wrapper i.fa {
width: 1.1em;
}
ul.options-links {
display: inline;
margin: 0;
font-size: 13px;
float: right;
}
ul.options-links li {
display: inline;
}
ul.options-links li + li:before {
content: "|";
margin: 0 5px;
}
ul.options-links li a {
text-decoration: none;
}
.accordion-group-item{
display:none;
}
#optionsframework-wrap .group .section.section-start_group,
#optionsframework-wrap .group .section.section-end_group{
padding:0;
margin:0;
border:none;
}
.controls#optionsframework .mini .controls input,
#optionsframework .mini .controls {
margin-right: 20px;
}
#optionsframework .section .explain {
font-size: 13px;
line-height: 1.5;
max-width: 45%;
} | new/wp-content/themes/onetone/css/options.css | div {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#optionsframework {
max-width: none;
}
#optionsframework-wrap {
overflow: hidden;
border: 1px solid #ccc;
background-color: #fff;
}
#optionsframework-wrap a:hover {
text-decoration: none;
}
#optionsframework-wrap h2 {
background-color: #eee;
padding: 10px 20px;
border-bottom: 1px solid #ccc;
box-shadow: 1px 1px 0 #fff inset;
text-shadow: 1px 1px #fff;
}
#optionsframework-wrap h2.nav-tab-wrapper {
width: 200px;
float: left;
padding: 0;
margin-right: 1px;
border-bottom: 0;
margin-bottom: 10px;
}
h2 .nav-tab {
display: block;
height: 50px;
line-height: 50px;
padding: 0 20px;
font-size: 13px;
margin: 0;
border-right: 1px solid #ccc;
margin-right: -1px;
border-left: 0;
border-top: 0;
border-bottom: 1px solid #ccc!important;
background-color: #f5f5f5;
box-shadow: 1px 1px 0 #fff inset;
width:160px;
}
h2 .nav-tab-active {
border-right: 2px solid #fff;
margin-right: -2px;
position: relative;
z-index:9;
}
h2 a.nav-tab:hover {
text-decoration: none;
background-color: #f5f5f5;
}
h2 a.nav-tab-active:hover {
border-bottom: inherit;
background: inherit;
}
div#optionsframework-metabox {
float: left;
width: calc(100% - 201px);
padding-top: 0;
}
.postbox {
border: 0;
margin-bottom: 0;
border-left: 1px solid #ccc;
margin-left: -1px;
}
#optionsframework-wrap .nav-tab-wrapper .nav-tab {
}
#optionsframework-wrap .nav-tab-wrapper .nav-tab-active {
background-color: #fff;
border-right: 1px solid #FFF;
margin-right: -1px;
}
#optionsframework-wrap .group {
padding: 10px 20px 10px;
}
#optionsframework-wrap .group h3 {
display: none;
}
#optionsframework-wrap .group .section {
padding: 0 10px;
margin-bottom: 20px;
border-bottom: 1px dashed #ccc;
padding-bottom: 20px;
}
#optionsframework-wrap .group .section h4 {
margin-bottom: 15px;
font-size: 1.3em;
margin-top: 10px;
}
#optionsframework-wrap .group .section.sub_section_titled {
padding: 0;
border-top: none;
border-bottom: 0;
margin-bottom: 10px;
}
#optionsframework-wrap .group .sub_section_titled h4 {
border: 1px solid #ccc;
padding: 10px;
background-color: #f4f4f4;
font-size: 1.5em;
margin-bottom: 20px;
}
#optionsframework-wrap .group .sub_section_titled .option {
padding: 0 10px;
}
.wp-color-result {
height: 30px;
}
.wp-color-result:after {
line-height: 30px;
}
#optionsframework-wrap .group .section input[type="text"],
#optionsframework-wrap .group .section input[type="number"],
#optionsframework-wrap .group .section textarea,
#optionsframework-wrap .group .section select {
height: auto;
padding: 5px 10px;
}
#optionsframework-submit {
border-bottom: 1px solid #ccc;
margin-bottom: -1px;
}
#optionsframework-wrap .group .section-accordion {
background-color: #f5f5f5;
padding: 10px;
border-bottom: 0;
border: 1px solid #ccc;
overflow: hidden;
color: #555;
}
#optionsframework-wrap .group .section-accordion.close {
opacity: 1;
}
#optionsframework-wrap .group .section-accordion h4 {
margin: 0;
color: inherit;
}
#optionsframework-wrap .group .section-accordion .fa {
float: right;
}
#setting-error-save_options .faded {
opacity: 1;
}
#wpbody-content .metabox-holder {
padding-top: 0;
}
#setting-error-save_options {
margin-left: 201px;
margin-bottom: 10px;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
#optionsframework-wrap {
border-radius: 5px;
}
#optionsframework-wrap .group .section-text.mini .option .explain {
margin-left: 10px;
}
#optionsframework-wrap .group .section-accordion {
cursor: pointer;
}
img.of-radio-img-img {
width: 20px;
height: 20px;
}
#optionsframework .controls .of-radio-img-img {
width: 30px;
height: 30px;
border-width: 1px;
opacity: 1;
}
#optionsframework .controls .of-radio-img-selected {
border-color: #5B9DD9;
box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
opacity: 1;
}
h2.nav-tab-wrapper i.fa {
width: 1.1em;
}
ul.options-links {
display: inline;
margin: 0;
font-size: 13px;
float: right;
}
ul.options-links li {
display: inline;
}
ul.options-links li + li:before {
content: "|";
margin: 0 5px;
}
ul.options-links li a {
text-decoration: none;
}
.accordion-group-item{
display:none;
}
#optionsframework-wrap .group .section.section-start_group,
#optionsframework-wrap .group .section.section-end_group{
padding:0;
margin:0;
border:none;
}
.controls#optionsframework .mini .controls input,
#optionsframework .mini .controls {
margin-right: 20px;
}
#optionsframework .section .explain {
font-size: 13px;
line-height: 1.5;
max-width: 45%;
} | 0.223038 | 0.056262 |
:root {
box-sizing: border-box;
margin: 0;
padding: 0;
/* Color variables */
--theme1-main-color: #343a40;
--theme1-secondary-color: #6c757d;
--theme1-td-color: #454d55;
--theme1-currweek-hover-color: #dee2e6;
--theme1-row-hover-color: #dee2e6;
--theme1-currday-color: #000;
--theme1-badge-color: #007bff;
--theme1-bg-color: #000;
--text-light: #fff;
--text-dark: #000;
--valid: #00c853;
--valid-background: #e8f5e9;
--invalid: #ff5252;
--invalid-background: #ffcdd2;
}
/* */
/* Loader animation */
/* */
@keyframes ldio-voeg20dzl7 {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
.ldio-voeg20dzl7 div {
box-sizing: border-box !important;
}
.ldio-voeg20dzl7 > div {
position: absolute;
width: 176px;
height: 176px;
top: 12px;
left: 12px;
border-radius: 50%;
border: 16px solid #000;
border-color: var(--text-light) transparent var(--text-light) transparent;
animation: ldio-voeg20dzl7 1s linear infinite;
}
.ldio-voeg20dzl7 > div:nth-child(2),
.ldio-voeg20dzl7 > div:nth-child(4) {
width: 140px;
height: 140px;
top: 30px;
left: 30px;
animation: ldio-voeg20dzl7 1s linear infinite reverse;
}
.ldio-voeg20dzl7 > div:nth-child(2) {
border-color: transparent var(--theme1-secondary-color) transparent var(--theme1-secondary-color);
}
.ldio-voeg20dzl7 > div:nth-child(3) {
border-color: transparent;
}
.ldio-voeg20dzl7 > div:nth-child(3) div {
position: absolute;
width: 100%;
height: 100%;
transform: rotate(45deg);
}
.ldio-voeg20dzl7 > div:nth-child(3) div:before,
.ldio-voeg20dzl7 > div:nth-child(3) div:after {
content: "";
display: block;
position: absolute;
width: 16px;
height: 16px;
top: -16px;
left: 64px;
background: var(--text-light);
border-radius: 50%;
box-shadow: 0 160px 0 0 var(--text-light);
}
.ldio-voeg20dzl7 > div:nth-child(3) div:after {
left: -16px;
top: 64px;
box-shadow: 160px 0 0 0 var(--text-light);
}
.ldio-voeg20dzl7 > div:nth-child(4) {
border-color: transparent;
}
.ldio-voeg20dzl7 > div:nth-child(4) div {
position: absolute;
width: 100%;
height: 100%;
transform: rotate(45deg);
}
.ldio-voeg20dzl7 > div:nth-child(4) div:before,
.ldio-voeg20dzl7 > div:nth-child(4) div:after {
content: "";
display: block;
position: absolute;
width: 16px;
height: 16px;
top: -16px;
left: 46px;
background: var(--theme1-secondary-color);
border-radius: 50%;
box-shadow: 0 124px 0 0 var(--theme1-secondary-color);
}
.ldio-voeg20dzl7 > div:nth-child(4) div:after {
left: -16px;
top: 46px;
box-shadow: 124px 0 0 0 var(--theme1-secondary-color);
}
.loadingio-spinner-double-ring-qvrskz4wwq {
width: 200px;
height: 200px;
display: inline-block;
overflow: hidden;
background: var(--theme1-bg-color);
background: transparent;
}
.ldio-voeg20dzl7 {
width: 100%;
height: 100%;
position: relative;
transform: translateZ(0) scale(1);
backface-visibility: hidden;
transform-origin: 0 0;
}
.ldio-voeg20dzl7 div {
box-sizing: content-box;
}
/* generated by https://loading.io/ */
/* */
/* Fonts */
/* */
@font-face {
font-family: 'caveat';
src:
url('../fonts/Caveat/Caveat-VariableFont_wght.ttf') format('truetype');
}
@font-face {
font-family: 'roboto-mono';
src:
url('../fonts/Roboto_Mono/RobotoMono-VariableFont_wght.ttf') format('truetype');
}
/* */
/* General Styling */
/* */
body {
background-color: var(--theme1-bg-color) !important;
overflow: hidden;
font-family: 'roboto-mono', Arial, Helvetica, sans-serif !important;
}
.container {
background-color: var(--theme1-main-color);
width: 50% !important;
}
a {
color: var(--text-dark) !important;
cursor: pointer;
}
a:hover,
.dropdown-menu button:hover {
color: var(--theme1-row-hover-color) !important;
background-color: var(--theme1-secondary-color) !important;
outline: none !important;
}
a:active,
.dropdown-menu button:active {
color: var(--theme1-secondary-color) !important;
background-color: var(--theme1-row-hover-color) !important;
outline: none !important;
}
.dropdown-menu button:focus {
outline: none !important;
}
#main-body {
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
/* */
/* Utility classes */
/* */
.display-4 {
font-size: 3rem !important;
}
.task-item.filtered,
.hide {
display: none !important;
}
.disabled-li {
cursor: auto;
filter: brightness(80%);
pointer-events: none;
}
.editable {
background-color: var(--theme1-badge-color) !important;
color: var(--text-dark) !important;
margin: 0.5rem !important;
}
.theme-active,
.avatar-active,
.toast-active {
background-color: var(--theme1-secondary-color) !important;
border-color: var(--theme1-secondary-color) !important;
color: var(--text-light) !important;
}
.avatar {
width: 50px;
height: 50px;
}
.show-password {
color: var(--text-light);
font-size: 0.75rem;
cursor: pointer;
}
.fade-out {
background-color: var(--theme1-bg-color) !important;
color: var(--text-light) !important;
transition: opacity 1.5s ease-in-out !important;
opacity: 0 !important;
}
.delete,
.edit,
.ongoing-edit,
.uncompleted,
.completed,
.fa-window-close {
cursor: pointer;
font-size: 1.5rem;
padding: 0.2rem;
}
.progress {
height: 2rem !important;
background-color: var(--theme1-main-color) !important;
border: 1px solid var(--text-light);
}
.progress-bar {
background-color: var(--theme1-bg-color) !important;
}
.selected {
color: var(--theme1-badge-color) !important;
background-color: var(--theme1-td-color) !important;
border: 2px solid var(--theme1-badge-color);
}
#mode-btns button {
width: 33.33%;
}
#main-options-btn div div.btn-group {
width: 33.33%;
}
.btn-group > .btn-group:not(:first-child), .btn-group > .btn:not(:first-child) {
margin-left: 0;
}
#task-tabs .btn.active {
z-index: 0 !important;
}
.login-wrapper .container {
background-color: transparent;
}
/* DnD classes */
.over {
border: 2px dashed var(--theme1-bg-color) !important;
margin: 1rem;
}
/* Text */
h1.main-header,
.welcome-heading,
.lead,
.brand-header {
color: var(--text-light);
word-break: break-word;
}
/* Arrows */
#l-month-arrow,
#r-month-arrow,
#l-week-arrow,
#r-week-arrow,
#l-day-arrow,
#r-day-arrow {
padding: 0.5rem 1rem;
cursor: pointer;
}
#l-month-arrow i:first-child,
#l-week-arrow i:first-child,
#l-day-arrow i:first-child {
margin: 0 -0.2rem;
}
#l-month-arrow > span,
#r-month-arrow > span {
margin: 0 0.5rem;
}
#r-month-arrow i:last-child,
#r-week-arrow i:last-child,
#r-day-arrow i:last-child {
margin: 0 -0.2rem;
}
/* Toasts */
.toast {
width: 100% !important;
max-width: none !important;
border: none !important;
}
.toast:not(:last-child) {
margin: 0;
}
#main-div-msg .toast,
#task-div-msg .toast,
#past-tasks-div-msg .toast,
#offline-div-msg .toast,
#settings-div-msg .toast,
#delete-div-msg .toast {
flex-basis: 100%;
}
.date-toasts {
width: 100%;
}
.date-toasts .toast {
flex-basis: 33%;
}
button.close {
position: absolute;
right: 5px;
top: 5px;
}
.toast-status,
.toast-alert {
font-size: 1.25rem;
color: var(--valid) !important;
background-color: var(--valid-background) !important;
border: none !important;
}
.toast-alert {
color: var(--invalid) !important;
background-color: var(--invalid-background) !important;
}
/* Badge */
.badge {
background-color: var(--theme1-badge-color);
color: var(--text-light);
}
button.btn .custom-badge,
a .custom-badge,
td .custom-badge {
position: absolute;
top: -15px;
right: -15px;
font-size: 1rem;
width: 25px;
height: 25px;
display: inline-flex;
justify-content: center;
align-items: center;
}
a .custom-badge {
top: 10px;
right: 5px;
}
td .custom-badge{
top: -10px;
right: 10px;
}
/* */
/* Table */
/* */
table {
table-layout: fixed;
border-collapse: separate !important;
border-spacing: 0px;
color: var(--text-light) !important;
background-color: var(--theme1-main-color);
margin: 1rem 0 0 0 !important;
}
td {
position: relative;
text-align: center;
vertical-align: middle !important;
border: 1px solid var(--theme1-td-color) !important;
cursor: pointer;
border-radius: 15px;
padding: 2rem !important;
transition: all 0.4s ease;
}
.week-mode-active td {
padding: 2rem 1.5rem !important;
}
td:hover {
color: var(--text-dark) !important;
background-color: var(--theme1-currweek-hover-color) !important;
}
.table-hover tbody tr:hover {
color: var(--text-light) !important;
background-color: var(--theme1-td-color) !important;
}
.table thead th {
border-top: 1px solid var(--theme1-secondary-color);
border-bottom: none !important;
}
.current-week td {
color: var(--text-light);
background-color: var(--theme1-secondary-color);
}
.current-day {
background-color: var(--theme1-currday-color) !important;
color: var(--text-light) !important;
}
td.disabled {
cursor: auto;
background-color: var(--theme1-td-color);
color: var(--theme1-td-color);
pointer-events: none;
}
td.disabled:hover {
background-color: var(--theme1-td-color);
}
td.invalid-day {
background-color: var(--theme1-td-color);
color: var(--text-dark);
}
td:hover.invalid-day {
background-color: var(--theme1-td-color);
cursor: not-allowed;
}
/* */
/* List Elements */
/* */
ul.tasks li,
ul.past-tasks li {
background-color: var(--theme1-secondary-color);
transition: all 0.4s ease;
color: var(--text-light);
opacity: 1;
font-size: 1.25rem;
}
ul.tasks li:hover,
ul.past-tasks li:hover {
background-color: var(--theme1-row-hover-color);
color: var(--theme1-currday-color);
}
ul.tasks li:hover div.lead {
color: var(--theme1-currday-color);
}
/* */
/* Main screen */
/* */
.login-wrapper {
position: fixed;
top: 0;
right: 0;
width: 100%;
height: 100%;
background-color: var(--text-dark);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
max-height: 10000px;
z-index: 10;
transition: all 0.4s ease;
overflow: hidden;
}
.login-inner-wrapper {
position: relative;
margin: 0 2rem;
height: 500px;
overflow: hidden;
}
.login-confirm,
.login-add-mode {
border: 2px solid var(--text-light);
border-radius: 10px;
position: absolute;
top: 0;
left: 0;
transform: translateX(1000px) scale(1);
transition: all 0.25s ease;
z-index: 100;
}
.login-add-mode {
transform: translateY(1000px) scale(1);
}
.login-main-div {
border: 2px solid var(--text-light);
border-radius: 10px;
position: relative;
transition: all 0.25s ease;
}
.login-main-div,
.login-add-mode,
.login-confirm {
width: 40vw;
background-color: var(--theme1-main-color);
margin: 1rem;
transition: all 0.25s ease;
}
#login-loader {
margin: 1rem;
width: 40vw;
background-color: transparent;
position: absolute;
top: 0;
left: 0;
transition: all 0.4s ease;
z-index: 100;
display: flex;
justify-content: center;
}
.input-group-prepend {
width: 45px;
}
.input-group-prepend span.input-group-text {
width: 100%;
}
/* */
/* Navbar */
/* */
nav {
background-color: var(--theme1-main-color);
border-bottom: 2px solid var(--theme1-currweek-hover-color);
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
#main-navbar {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
/* */
/* Search, add, pick date, select all */
/* */
#search-form-wrapper,
#add-form-wrapper,
#pick-date-form-wrapper,
#select-all-options {
max-height: 0px;
padding: 0 !important;
overflow: hidden;
transition: all 0.25s ease;
}
#search-form-wrapper.search-form-open,
#add-form-wrapper.add-form-open,
#pick-date-form-wrapper.pick-date-form-open,
.main-options-btn-open,
#select-all-options.select-all-options-open {
max-height: 700px !important;
overflow: visible !important;
padding: 0.5rem 1rem !important;
transition: all 0.25s ease;
}
/* */
/* Animations */
/* */
.move-x-left {
transform: translateX(-1000px) !important;
}
.move-x-zero {
transform: translateX(0px) !important;
}
.move-y-up {
transform: translateY(-1000px) !important;
}
.move-y-zero {
transform: translateY(0px) !important;
}
.roll-up {
transition-delay: 0.5s;
max-height: 0px;
overflow: hidden;
}
/* */
/* Message wrappers */
/* */
#alert-message-wrapper,
#toast-message-wrapper,
#settings-wrapper,
#delete-account-wrapper {
position: fixed;
top: 0;
right: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
display: none;
z-index: 100;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
border: 2px solid var(--theme1-bg-color);
border-radius: 10px;
position: relative;
background-color: var(--text-light);
width: 100%;
max-width: 40%;
}
.alert-message .lead,
.toast-message .lead,
.settings .lead,
.delete-account .lead {
color: var(--text-dark);
}
#alert-close-btn,
#toast-close-btn,
#settings-close-btn,
#delete-account-close-btn {
position: absolute;
top: 10px;
right: 16px;
cursor: pointer;
}
/* */
/* Input, select */
/* */
.custom-select {
color: var(--text-dark) !important;
background-color: var(--theme1-secondary-color) !important;
transition: all 0.25s ease !important;
}
.custom-select:hover {
color: var(--text-light) !important;
background-color: var(--theme1-row-hover-color) !important;
transition: all 0.25s ease !important;
}
input[type="text"].valid,
input[type="password"].valid,
span.valid {
border-color: var(--valid);
border-width: 1px;
box-shadow: 0 1px 0 0 var(--valid);
color: var(--valid);
background-color: var(--valid-background);
}
input[type="text"]:focus.valid,
input[type="password"]:focus.valid,
span:focus.valid {
border-color: var(--valid) !important;
border-width: 1px;
box-shadow: 0 1px 0 0 var(--valid) !important;
color: var(--valid);
}
input[type="text"].invalid,
input[type="password"].invalid,
span.invalid {
border-color: var(--invalid);
border-width: 1px;
box-shadow: 0 1px 0 0 var(--invalid);
color: var(--invalid);
background-color: var(--invalid-background);
}
input[type="text"]:focus.invalid,
input[type="password"]:focus.invalid,
span:focus.invalid {
border-color: var(--invalid) !important;
border-width: 1px;
box-shadow: 0 1px 0 0 var(--invalid) !important;
color: var(--invalid);
}
.search-form .form-control:focus,
.add-username .form-control:focus,
.add-email .form-control:focus,
.add-password .form-control:focus,
#password.form-control:focus,
#email.form-control:focus,
.add .form-control:focus,
#delete-account-form .form-control:focus,
.month-mode-wrapper .custom-select:focus {
border-color: var(--theme1-row-hover-color);
box-shadow: 0 0 0 .2rem var(--theme1-row-hover-color);
}
p.invalid {
color: var(--invalid) !important;
}
/* MQs */
@media screen and (max-width: 1500px) {
.container {
width: 70% !important;
}
#login-loader,
.login-main-div,
.login-add-mode,
.login-confirm {
width: 60vw;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
max-width: 60%;
}
}
@media screen and (max-width: 1199.98px) {
.week-mode-active td {
padding: 1.5rem 1rem !important;
}
}
@media (max-width: 991.98px) {
.container {
width: 90% !important;
}
#login-loader,
.login-main-div,
.login-add-mode,
.login-confirm {
width: 80vw;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
max-width: 70%;
}
ul.tasks li, ul.past-tasks li {
font-size: 1rem;
}
.delete, .edit, .ongoing-edit, .uncompleted, .completed, .fa-window-close {
font-size: 1.25rem;
padding: 0.1rem;
}
}
@media screen and (max-width: 767.98px) {
.container {
width: 100% !important;
max-width: none !important;
}
#login-loader,
.login-main-div,
.login-add-mode,
.login-confirm {
width: 90vw;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
max-width: 90%;
}
#main-navbar {
margin-top: 0rem !important;
border-radius: 0;
}
#main-body {
margin-bottom: 0rem !important;
border-radius: 0;
}
nav {
border-radius: 0;
}
.lead {
font-size: 1.1rem !important;
}
td {
padding: 1.5rem !important;
}
.week-mode-active td {
padding: 1rem 0.5rem !important;
}
.display-4 {
font-size: 2.5rem !important;
}
.display-3 {
font-size: 4rem !important;
}
.day-mode-arrow > div,
.day-mode-arrow > div button,
.week-mode-arrow > div,
.week-mode-arrow > div button,
.month-mode-arrow > div,
.month-mode-arrow > div button {
width: 100% !important;
}
}
@media screen and (max-width: 575.98px) {
td {
padding: 1rem !important;
}
.week-mode-active td {
padding: 0.75rem 0.25rem !important;
}
.brand-header {
font-size: 3rem !important;
}
.display-4 {
font-size: 2rem !important;
}
.delete, .edit, .ongoing-edit, .uncompleted, .completed, .fa-window-close {
font-size: 1rem;
padding: 0.1rem;
}
}
@media screen and (max-width: 450px) {
.lead {
font-size: 1rem !important;
}
.login-wrapper #login-loader,
.login-wrapper .login-main-div,
.login-wrapper .login-add-mode,
.login-wrapper .login-confirm {
width: 100vw;
padding-right: 0.75rem !important;
padding-left: 0.75rem !important;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
max-width: 100%;
}
td {
padding: 0.75rem!important;
}
td .custom-badge {
right: 0;
}
.week-mode-active td {
padding: 0.75rem !important;
}
.brand-header {
font-size: 2.5rem !important;
}
.display-4 {
font-size: 1.75rem !important;
}
#main-body .display-4 {
padding-top: 1rem !important;
padding-bottom: 0rem !important;
}
.week-mode-active table,
.month-mode-active table,
#avatar-btns-wrapper {
display: flex;
}
.week-mode-active thead {
width: 33.33%;
}
.week-mode-active thead tr,
.month-mode-active thead tr,
.week-mode-active tbody tr {
display: flex;
flex-direction: column;
width: 100%;
}
.week-mode-active tbody {
width: 66.66%;
}
.month-mode-active thead {
width: 13%;
}
.month-mode-active tbody {
width: 87%;
display: flex;
}
.month-mode-active tbody tr {
display: flex;
flex-direction: column;
flex-grow: 1;
}
.table thead th {
border-top: 2px solid var(--theme1-secondary-color);
}
#avatar-btns-wrapper div:first-child,
#avatar-btns-wrapper div:last-child {
width: 50%;
display: flex;
flex-direction: column;
}
#avatar-btns-wrapper div button,
#avatar-btns-wrapper div button {
width: 100%;
border-radius: 0 !important;
}
#alert-message-wrapper,
#toast-message-wrapper,
#settings-wrapper,
#delete-account-wrapper {
overflow: scroll;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
display: flex;
flex-direction: column;
justify-content: center;
overflow: scroll;
height: 100%;
}
#lead-today-date-p {
margin: 0 !important;
}
#main-body .month-mode-wrapper,
#main-body .week-mode-wrapper,
#main-body .day-mode-wrapper,
#main-body #day-mode-content,
#main-body #week-mode-content,
#main-body .month-mode-arrow + div,
#main-body #main-options-btn {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
#main-body #task-tabs,
#main-body #task-tabs + div {
padding-bottom: 0 !important;
}
#task-progress-wrapper p.lead {
margin: 0 !important;
}
#task-progress-wrapper .progress {
padding: 0.25rem 0;
}
}
@media screen and (max-width: 400px) {
#lead-today-date {
display: block;
}
td {
padding: 0.75rem 0.5rem !important;
}
th {
padding: 0.75rem 0.25rem !important;
}
.week-mode-active td {
padding: 0.75rem !important;
}
nav.navbar {
display: flex;
flex-direction: column;
padding-top: 0rem !important;
}
div.dropdown {
width: 100%;
margin: 0 !important;
}
nav .dropdown-toggle::after {
position: absolute;
top: 22px;
right: 20px;
}
.navbar-brand {
margin: 0 !important;
}
#main-drop-menu {
width: 100%;
}
.brand-header {
font-size: 2.25rem !important;
}
.brand-header i {
display: none;
}
.display-4 {
font-size: 2rem !important;
}
#main-body .display-4 {
font-size: 1.6rem !important;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
justify-content: start;
}
}
@media screen and (max-height: 450px) and (orientation: landscape) {
.login-wrapper .brand-header {
margin-top: 1.5rem !important;
font-size: 2.5rem !important;
}
.login-wrapper .display-4 {
font-size: 1.75rem !important;
}
#alert-message-wrapper,
#toast-message-wrapper,
#settings-wrapper,
#delete-account-wrapper {
overflow: scroll;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
display: flex;
flex-direction: column;
justify-content: start;
overflow: scroll;
height: 100%;
}
} | 2_modules_JSpatterns_firestore_firebase/src/css/style.css | :root {
box-sizing: border-box;
margin: 0;
padding: 0;
/* Color variables */
--theme1-main-color: #343a40;
--theme1-secondary-color: #6c757d;
--theme1-td-color: #454d55;
--theme1-currweek-hover-color: #dee2e6;
--theme1-row-hover-color: #dee2e6;
--theme1-currday-color: #000;
--theme1-badge-color: #007bff;
--theme1-bg-color: #000;
--text-light: #fff;
--text-dark: #000;
--valid: #00c853;
--valid-background: #e8f5e9;
--invalid: #ff5252;
--invalid-background: #ffcdd2;
}
/* */
/* Loader animation */
/* */
@keyframes ldio-voeg20dzl7 {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
.ldio-voeg20dzl7 div {
box-sizing: border-box !important;
}
.ldio-voeg20dzl7 > div {
position: absolute;
width: 176px;
height: 176px;
top: 12px;
left: 12px;
border-radius: 50%;
border: 16px solid #000;
border-color: var(--text-light) transparent var(--text-light) transparent;
animation: ldio-voeg20dzl7 1s linear infinite;
}
.ldio-voeg20dzl7 > div:nth-child(2),
.ldio-voeg20dzl7 > div:nth-child(4) {
width: 140px;
height: 140px;
top: 30px;
left: 30px;
animation: ldio-voeg20dzl7 1s linear infinite reverse;
}
.ldio-voeg20dzl7 > div:nth-child(2) {
border-color: transparent var(--theme1-secondary-color) transparent var(--theme1-secondary-color);
}
.ldio-voeg20dzl7 > div:nth-child(3) {
border-color: transparent;
}
.ldio-voeg20dzl7 > div:nth-child(3) div {
position: absolute;
width: 100%;
height: 100%;
transform: rotate(45deg);
}
.ldio-voeg20dzl7 > div:nth-child(3) div:before,
.ldio-voeg20dzl7 > div:nth-child(3) div:after {
content: "";
display: block;
position: absolute;
width: 16px;
height: 16px;
top: -16px;
left: 64px;
background: var(--text-light);
border-radius: 50%;
box-shadow: 0 160px 0 0 var(--text-light);
}
.ldio-voeg20dzl7 > div:nth-child(3) div:after {
left: -16px;
top: 64px;
box-shadow: 160px 0 0 0 var(--text-light);
}
.ldio-voeg20dzl7 > div:nth-child(4) {
border-color: transparent;
}
.ldio-voeg20dzl7 > div:nth-child(4) div {
position: absolute;
width: 100%;
height: 100%;
transform: rotate(45deg);
}
.ldio-voeg20dzl7 > div:nth-child(4) div:before,
.ldio-voeg20dzl7 > div:nth-child(4) div:after {
content: "";
display: block;
position: absolute;
width: 16px;
height: 16px;
top: -16px;
left: 46px;
background: var(--theme1-secondary-color);
border-radius: 50%;
box-shadow: 0 124px 0 0 var(--theme1-secondary-color);
}
.ldio-voeg20dzl7 > div:nth-child(4) div:after {
left: -16px;
top: 46px;
box-shadow: 124px 0 0 0 var(--theme1-secondary-color);
}
.loadingio-spinner-double-ring-qvrskz4wwq {
width: 200px;
height: 200px;
display: inline-block;
overflow: hidden;
background: var(--theme1-bg-color);
background: transparent;
}
.ldio-voeg20dzl7 {
width: 100%;
height: 100%;
position: relative;
transform: translateZ(0) scale(1);
backface-visibility: hidden;
transform-origin: 0 0;
}
.ldio-voeg20dzl7 div {
box-sizing: content-box;
}
/* generated by https://loading.io/ */
/* */
/* Fonts */
/* */
@font-face {
font-family: 'caveat';
src:
url('../fonts/Caveat/Caveat-VariableFont_wght.ttf') format('truetype');
}
@font-face {
font-family: 'roboto-mono';
src:
url('../fonts/Roboto_Mono/RobotoMono-VariableFont_wght.ttf') format('truetype');
}
/* */
/* General Styling */
/* */
body {
background-color: var(--theme1-bg-color) !important;
overflow: hidden;
font-family: 'roboto-mono', Arial, Helvetica, sans-serif !important;
}
.container {
background-color: var(--theme1-main-color);
width: 50% !important;
}
a {
color: var(--text-dark) !important;
cursor: pointer;
}
a:hover,
.dropdown-menu button:hover {
color: var(--theme1-row-hover-color) !important;
background-color: var(--theme1-secondary-color) !important;
outline: none !important;
}
a:active,
.dropdown-menu button:active {
color: var(--theme1-secondary-color) !important;
background-color: var(--theme1-row-hover-color) !important;
outline: none !important;
}
.dropdown-menu button:focus {
outline: none !important;
}
#main-body {
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
/* */
/* Utility classes */
/* */
.display-4 {
font-size: 3rem !important;
}
.task-item.filtered,
.hide {
display: none !important;
}
.disabled-li {
cursor: auto;
filter: brightness(80%);
pointer-events: none;
}
.editable {
background-color: var(--theme1-badge-color) !important;
color: var(--text-dark) !important;
margin: 0.5rem !important;
}
.theme-active,
.avatar-active,
.toast-active {
background-color: var(--theme1-secondary-color) !important;
border-color: var(--theme1-secondary-color) !important;
color: var(--text-light) !important;
}
.avatar {
width: 50px;
height: 50px;
}
.show-password {
color: var(--text-light);
font-size: 0.75rem;
cursor: pointer;
}
.fade-out {
background-color: var(--theme1-bg-color) !important;
color: var(--text-light) !important;
transition: opacity 1.5s ease-in-out !important;
opacity: 0 !important;
}
.delete,
.edit,
.ongoing-edit,
.uncompleted,
.completed,
.fa-window-close {
cursor: pointer;
font-size: 1.5rem;
padding: 0.2rem;
}
.progress {
height: 2rem !important;
background-color: var(--theme1-main-color) !important;
border: 1px solid var(--text-light);
}
.progress-bar {
background-color: var(--theme1-bg-color) !important;
}
.selected {
color: var(--theme1-badge-color) !important;
background-color: var(--theme1-td-color) !important;
border: 2px solid var(--theme1-badge-color);
}
#mode-btns button {
width: 33.33%;
}
#main-options-btn div div.btn-group {
width: 33.33%;
}
.btn-group > .btn-group:not(:first-child), .btn-group > .btn:not(:first-child) {
margin-left: 0;
}
#task-tabs .btn.active {
z-index: 0 !important;
}
.login-wrapper .container {
background-color: transparent;
}
/* DnD classes */
.over {
border: 2px dashed var(--theme1-bg-color) !important;
margin: 1rem;
}
/* Text */
h1.main-header,
.welcome-heading,
.lead,
.brand-header {
color: var(--text-light);
word-break: break-word;
}
/* Arrows */
#l-month-arrow,
#r-month-arrow,
#l-week-arrow,
#r-week-arrow,
#l-day-arrow,
#r-day-arrow {
padding: 0.5rem 1rem;
cursor: pointer;
}
#l-month-arrow i:first-child,
#l-week-arrow i:first-child,
#l-day-arrow i:first-child {
margin: 0 -0.2rem;
}
#l-month-arrow > span,
#r-month-arrow > span {
margin: 0 0.5rem;
}
#r-month-arrow i:last-child,
#r-week-arrow i:last-child,
#r-day-arrow i:last-child {
margin: 0 -0.2rem;
}
/* Toasts */
.toast {
width: 100% !important;
max-width: none !important;
border: none !important;
}
.toast:not(:last-child) {
margin: 0;
}
#main-div-msg .toast,
#task-div-msg .toast,
#past-tasks-div-msg .toast,
#offline-div-msg .toast,
#settings-div-msg .toast,
#delete-div-msg .toast {
flex-basis: 100%;
}
.date-toasts {
width: 100%;
}
.date-toasts .toast {
flex-basis: 33%;
}
button.close {
position: absolute;
right: 5px;
top: 5px;
}
.toast-status,
.toast-alert {
font-size: 1.25rem;
color: var(--valid) !important;
background-color: var(--valid-background) !important;
border: none !important;
}
.toast-alert {
color: var(--invalid) !important;
background-color: var(--invalid-background) !important;
}
/* Badge */
.badge {
background-color: var(--theme1-badge-color);
color: var(--text-light);
}
button.btn .custom-badge,
a .custom-badge,
td .custom-badge {
position: absolute;
top: -15px;
right: -15px;
font-size: 1rem;
width: 25px;
height: 25px;
display: inline-flex;
justify-content: center;
align-items: center;
}
a .custom-badge {
top: 10px;
right: 5px;
}
td .custom-badge{
top: -10px;
right: 10px;
}
/* */
/* Table */
/* */
table {
table-layout: fixed;
border-collapse: separate !important;
border-spacing: 0px;
color: var(--text-light) !important;
background-color: var(--theme1-main-color);
margin: 1rem 0 0 0 !important;
}
td {
position: relative;
text-align: center;
vertical-align: middle !important;
border: 1px solid var(--theme1-td-color) !important;
cursor: pointer;
border-radius: 15px;
padding: 2rem !important;
transition: all 0.4s ease;
}
.week-mode-active td {
padding: 2rem 1.5rem !important;
}
td:hover {
color: var(--text-dark) !important;
background-color: var(--theme1-currweek-hover-color) !important;
}
.table-hover tbody tr:hover {
color: var(--text-light) !important;
background-color: var(--theme1-td-color) !important;
}
.table thead th {
border-top: 1px solid var(--theme1-secondary-color);
border-bottom: none !important;
}
.current-week td {
color: var(--text-light);
background-color: var(--theme1-secondary-color);
}
.current-day {
background-color: var(--theme1-currday-color) !important;
color: var(--text-light) !important;
}
td.disabled {
cursor: auto;
background-color: var(--theme1-td-color);
color: var(--theme1-td-color);
pointer-events: none;
}
td.disabled:hover {
background-color: var(--theme1-td-color);
}
td.invalid-day {
background-color: var(--theme1-td-color);
color: var(--text-dark);
}
td:hover.invalid-day {
background-color: var(--theme1-td-color);
cursor: not-allowed;
}
/* */
/* List Elements */
/* */
ul.tasks li,
ul.past-tasks li {
background-color: var(--theme1-secondary-color);
transition: all 0.4s ease;
color: var(--text-light);
opacity: 1;
font-size: 1.25rem;
}
ul.tasks li:hover,
ul.past-tasks li:hover {
background-color: var(--theme1-row-hover-color);
color: var(--theme1-currday-color);
}
ul.tasks li:hover div.lead {
color: var(--theme1-currday-color);
}
/* */
/* Main screen */
/* */
.login-wrapper {
position: fixed;
top: 0;
right: 0;
width: 100%;
height: 100%;
background-color: var(--text-dark);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
max-height: 10000px;
z-index: 10;
transition: all 0.4s ease;
overflow: hidden;
}
.login-inner-wrapper {
position: relative;
margin: 0 2rem;
height: 500px;
overflow: hidden;
}
.login-confirm,
.login-add-mode {
border: 2px solid var(--text-light);
border-radius: 10px;
position: absolute;
top: 0;
left: 0;
transform: translateX(1000px) scale(1);
transition: all 0.25s ease;
z-index: 100;
}
.login-add-mode {
transform: translateY(1000px) scale(1);
}
.login-main-div {
border: 2px solid var(--text-light);
border-radius: 10px;
position: relative;
transition: all 0.25s ease;
}
.login-main-div,
.login-add-mode,
.login-confirm {
width: 40vw;
background-color: var(--theme1-main-color);
margin: 1rem;
transition: all 0.25s ease;
}
#login-loader {
margin: 1rem;
width: 40vw;
background-color: transparent;
position: absolute;
top: 0;
left: 0;
transition: all 0.4s ease;
z-index: 100;
display: flex;
justify-content: center;
}
.input-group-prepend {
width: 45px;
}
.input-group-prepend span.input-group-text {
width: 100%;
}
/* */
/* Navbar */
/* */
nav {
background-color: var(--theme1-main-color);
border-bottom: 2px solid var(--theme1-currweek-hover-color);
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
#main-navbar {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
/* */
/* Search, add, pick date, select all */
/* */
#search-form-wrapper,
#add-form-wrapper,
#pick-date-form-wrapper,
#select-all-options {
max-height: 0px;
padding: 0 !important;
overflow: hidden;
transition: all 0.25s ease;
}
#search-form-wrapper.search-form-open,
#add-form-wrapper.add-form-open,
#pick-date-form-wrapper.pick-date-form-open,
.main-options-btn-open,
#select-all-options.select-all-options-open {
max-height: 700px !important;
overflow: visible !important;
padding: 0.5rem 1rem !important;
transition: all 0.25s ease;
}
/* */
/* Animations */
/* */
.move-x-left {
transform: translateX(-1000px) !important;
}
.move-x-zero {
transform: translateX(0px) !important;
}
.move-y-up {
transform: translateY(-1000px) !important;
}
.move-y-zero {
transform: translateY(0px) !important;
}
.roll-up {
transition-delay: 0.5s;
max-height: 0px;
overflow: hidden;
}
/* */
/* Message wrappers */
/* */
#alert-message-wrapper,
#toast-message-wrapper,
#settings-wrapper,
#delete-account-wrapper {
position: fixed;
top: 0;
right: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
display: none;
z-index: 100;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
border: 2px solid var(--theme1-bg-color);
border-radius: 10px;
position: relative;
background-color: var(--text-light);
width: 100%;
max-width: 40%;
}
.alert-message .lead,
.toast-message .lead,
.settings .lead,
.delete-account .lead {
color: var(--text-dark);
}
#alert-close-btn,
#toast-close-btn,
#settings-close-btn,
#delete-account-close-btn {
position: absolute;
top: 10px;
right: 16px;
cursor: pointer;
}
/* */
/* Input, select */
/* */
.custom-select {
color: var(--text-dark) !important;
background-color: var(--theme1-secondary-color) !important;
transition: all 0.25s ease !important;
}
.custom-select:hover {
color: var(--text-light) !important;
background-color: var(--theme1-row-hover-color) !important;
transition: all 0.25s ease !important;
}
input[type="text"].valid,
input[type="password"].valid,
span.valid {
border-color: var(--valid);
border-width: 1px;
box-shadow: 0 1px 0 0 var(--valid);
color: var(--valid);
background-color: var(--valid-background);
}
input[type="text"]:focus.valid,
input[type="password"]:focus.valid,
span:focus.valid {
border-color: var(--valid) !important;
border-width: 1px;
box-shadow: 0 1px 0 0 var(--valid) !important;
color: var(--valid);
}
input[type="text"].invalid,
input[type="password"].invalid,
span.invalid {
border-color: var(--invalid);
border-width: 1px;
box-shadow: 0 1px 0 0 var(--invalid);
color: var(--invalid);
background-color: var(--invalid-background);
}
input[type="text"]:focus.invalid,
input[type="password"]:focus.invalid,
span:focus.invalid {
border-color: var(--invalid) !important;
border-width: 1px;
box-shadow: 0 1px 0 0 var(--invalid) !important;
color: var(--invalid);
}
.search-form .form-control:focus,
.add-username .form-control:focus,
.add-email .form-control:focus,
.add-password .form-control:focus,
#password.form-control:focus,
#email.form-control:focus,
.add .form-control:focus,
#delete-account-form .form-control:focus,
.month-mode-wrapper .custom-select:focus {
border-color: var(--theme1-row-hover-color);
box-shadow: 0 0 0 .2rem var(--theme1-row-hover-color);
}
p.invalid {
color: var(--invalid) !important;
}
/* MQs */
@media screen and (max-width: 1500px) {
.container {
width: 70% !important;
}
#login-loader,
.login-main-div,
.login-add-mode,
.login-confirm {
width: 60vw;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
max-width: 60%;
}
}
@media screen and (max-width: 1199.98px) {
.week-mode-active td {
padding: 1.5rem 1rem !important;
}
}
@media (max-width: 991.98px) {
.container {
width: 90% !important;
}
#login-loader,
.login-main-div,
.login-add-mode,
.login-confirm {
width: 80vw;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
max-width: 70%;
}
ul.tasks li, ul.past-tasks li {
font-size: 1rem;
}
.delete, .edit, .ongoing-edit, .uncompleted, .completed, .fa-window-close {
font-size: 1.25rem;
padding: 0.1rem;
}
}
@media screen and (max-width: 767.98px) {
.container {
width: 100% !important;
max-width: none !important;
}
#login-loader,
.login-main-div,
.login-add-mode,
.login-confirm {
width: 90vw;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
max-width: 90%;
}
#main-navbar {
margin-top: 0rem !important;
border-radius: 0;
}
#main-body {
margin-bottom: 0rem !important;
border-radius: 0;
}
nav {
border-radius: 0;
}
.lead {
font-size: 1.1rem !important;
}
td {
padding: 1.5rem !important;
}
.week-mode-active td {
padding: 1rem 0.5rem !important;
}
.display-4 {
font-size: 2.5rem !important;
}
.display-3 {
font-size: 4rem !important;
}
.day-mode-arrow > div,
.day-mode-arrow > div button,
.week-mode-arrow > div,
.week-mode-arrow > div button,
.month-mode-arrow > div,
.month-mode-arrow > div button {
width: 100% !important;
}
}
@media screen and (max-width: 575.98px) {
td {
padding: 1rem !important;
}
.week-mode-active td {
padding: 0.75rem 0.25rem !important;
}
.brand-header {
font-size: 3rem !important;
}
.display-4 {
font-size: 2rem !important;
}
.delete, .edit, .ongoing-edit, .uncompleted, .completed, .fa-window-close {
font-size: 1rem;
padding: 0.1rem;
}
}
@media screen and (max-width: 450px) {
.lead {
font-size: 1rem !important;
}
.login-wrapper #login-loader,
.login-wrapper .login-main-div,
.login-wrapper .login-add-mode,
.login-wrapper .login-confirm {
width: 100vw;
padding-right: 0.75rem !important;
padding-left: 0.75rem !important;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
max-width: 100%;
}
td {
padding: 0.75rem!important;
}
td .custom-badge {
right: 0;
}
.week-mode-active td {
padding: 0.75rem !important;
}
.brand-header {
font-size: 2.5rem !important;
}
.display-4 {
font-size: 1.75rem !important;
}
#main-body .display-4 {
padding-top: 1rem !important;
padding-bottom: 0rem !important;
}
.week-mode-active table,
.month-mode-active table,
#avatar-btns-wrapper {
display: flex;
}
.week-mode-active thead {
width: 33.33%;
}
.week-mode-active thead tr,
.month-mode-active thead tr,
.week-mode-active tbody tr {
display: flex;
flex-direction: column;
width: 100%;
}
.week-mode-active tbody {
width: 66.66%;
}
.month-mode-active thead {
width: 13%;
}
.month-mode-active tbody {
width: 87%;
display: flex;
}
.month-mode-active tbody tr {
display: flex;
flex-direction: column;
flex-grow: 1;
}
.table thead th {
border-top: 2px solid var(--theme1-secondary-color);
}
#avatar-btns-wrapper div:first-child,
#avatar-btns-wrapper div:last-child {
width: 50%;
display: flex;
flex-direction: column;
}
#avatar-btns-wrapper div button,
#avatar-btns-wrapper div button {
width: 100%;
border-radius: 0 !important;
}
#alert-message-wrapper,
#toast-message-wrapper,
#settings-wrapper,
#delete-account-wrapper {
overflow: scroll;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
display: flex;
flex-direction: column;
justify-content: center;
overflow: scroll;
height: 100%;
}
#lead-today-date-p {
margin: 0 !important;
}
#main-body .month-mode-wrapper,
#main-body .week-mode-wrapper,
#main-body .day-mode-wrapper,
#main-body #day-mode-content,
#main-body #week-mode-content,
#main-body .month-mode-arrow + div,
#main-body #main-options-btn {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
#main-body #task-tabs,
#main-body #task-tabs + div {
padding-bottom: 0 !important;
}
#task-progress-wrapper p.lead {
margin: 0 !important;
}
#task-progress-wrapper .progress {
padding: 0.25rem 0;
}
}
@media screen and (max-width: 400px) {
#lead-today-date {
display: block;
}
td {
padding: 0.75rem 0.5rem !important;
}
th {
padding: 0.75rem 0.25rem !important;
}
.week-mode-active td {
padding: 0.75rem !important;
}
nav.navbar {
display: flex;
flex-direction: column;
padding-top: 0rem !important;
}
div.dropdown {
width: 100%;
margin: 0 !important;
}
nav .dropdown-toggle::after {
position: absolute;
top: 22px;
right: 20px;
}
.navbar-brand {
margin: 0 !important;
}
#main-drop-menu {
width: 100%;
}
.brand-header {
font-size: 2.25rem !important;
}
.brand-header i {
display: none;
}
.display-4 {
font-size: 2rem !important;
}
#main-body .display-4 {
font-size: 1.6rem !important;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
justify-content: start;
}
}
@media screen and (max-height: 450px) and (orientation: landscape) {
.login-wrapper .brand-header {
margin-top: 1.5rem !important;
font-size: 2.5rem !important;
}
.login-wrapper .display-4 {
font-size: 1.75rem !important;
}
#alert-message-wrapper,
#toast-message-wrapper,
#settings-wrapper,
#delete-account-wrapper {
overflow: scroll;
}
.alert-message,
.toast-message,
.settings,
.delete-account {
display: flex;
flex-direction: column;
justify-content: start;
overflow: scroll;
height: 100%;
}
} | 0.408867 | 0.102529 |
@import 'https://fonts.googleapis.com/css?family=Amatica+SC|Indie+Flower|Slabo+27px|Lobster|Shadows+Into+Light';
/*Layer Classes */
body {
background-color: #B1EDE8;
border-color: #352D39;
font-family: 'Shadows Into Light','Indie Flower','Slabo 27px', serif, monospace;
text-align: center;
height: auto;
width: auto;
margin: auto;
overflow: auto;
transition: background-color .2s ease;
}
/* The side navigation menu */
.sidenav {
height: 100%; /* 100% Full-height */
width: 0; /* 0 width - change this with JavaScript */
position: fixed; /* Stay in place */
z-index: 1; /* Stay on top */
top: 0;
left: 0;
background-color: #111; /* Black*/
overflow-x: hidden; /* Disable horizontal scroll */
padding-top: 4%; /* Place content 60px from the top */
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
font-family: 'Lobster','Slabo 27px', serif, monospace;
}
/* The navigation menu links */
.sidenav h4 {
padding: 5%;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s
}
/* When you mouse over the navigation links, change their color */
.sidenav a:hover, .offcanvas a:focus{
color: #f1f1f1;
}
/* Position and style the close button (top right corner) */
.closebtn {
position: absolute;
top: -3%;
right: 5%;
font-size: 60px !important;
margin-left: 50px;
color: white;
}
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
transition: margin-left .5s;
}
.layout {
background-color: inherit;
width: 100%;
margin-top: 2%;
}
.btnSection {
background-color: inherit;
width: auto;
height: auto;
margin-top: 2%;
}
.midSection {
background-color: inherit;
height: auto;
width: auto;
text-align: center;
margin-top: 2%;
}
.box {
height: auto;
width: auto;
display: none;
border-left: 5px solid;
border-right: 5px solid;
border-radius: 0%;
border-color: inherit;
padding-right: 5%;
padding-left: 5%;
padding-top: 5%;
padding-bottom: 5%;
margin-bottom: 5%;
}
/*Buttons Classes */
.quoteBtn {
color: red;
background-color: inherit;
width: auto;
height: auto;
font-size: 100%;
text-align: center;
margin: 1%;
padding: auto;
transition: all 0.8s ease;
font-family: 'Slabo 27px', serif, monospace;
font-weight: bold;
outline: none;
border: none;
}
.quoteBtn:hover {
transform: rotate(360deg)scale(1.5);
}
.quoteBtn:active {
transform: rotate(-360deg)scale(1.5);
transition: 0s;
}
.navBtn {
color: inherit;
background-color: inherit;
width: auto;
height: auto;
font-size: 100%;
text-align: center;
margin: 1%;
padding: auto;
transition: all 0.8s ease;
font-family: 'Slabo 27px', serif, monospace;
font-weight: bold;
outline: none;
border: none;
}
.navBtn:hover {
transform: rotate(360deg)scale(1.5);
}
.navBtn:active {
transform: rotate(-360deg)scale(1.5);
transition: 0s;
}
.shareBtns {
width: auto;
padding-top: 2%;
padding-left: 2%;
border: 0;
box-shadow: 0;
display: none;
transition: all .4s linear;
}
.shareBtns:hover {
cursor:pointer;
transform: rotate(360deg)scale(1.5);
}
.shareBtns:active {
transform: rotate(-360deg)scale(1.5);
transition: 0s;
}
.circle {
width: 40px;
height: 40px;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
border-radius: 50px;
display: inline-block;
margin: 1%;
}
.circle:hover {
cursor:pointer;
transform: scale(1.3);
}
.circle1 {
background-color: #E5E4D7;
border-color: #2C6700;
}
.circle2 {
background-color: #FFAEAE;
border-color: #000000;
}
.circle3 {
background-color: #FF6978;
border-color: #B1EDE8;
}
.circle4 {
background-color: #B60D34;
border-color: #ffffff;
}
.circle5 {
background-color: #520C04;
border-color: #F2F5F9;
}
.circle6 {
background-color: #FF784F;
border-color: #ffffff;
}
.circle7 {
background-color: #FFE66D;
border-color: #1A535C;
}
.circle8 {
background-color: #FF8811;
border-color: #000000;
}
.circle9 {
background-color: #FFCC00;
border-color: #3333FF;
}
.circle10 {
background-color: #BAFF29;
border-color: #1A1B41;
}
.circle11 {
background-color: #29FF32;
border-color: #000000;
}
.circle12 {
background-color: #4F7540;
border-color: #E8F3E5;
}
.circle13 {
background-color: #103900;
border-color: #F8F4E3;
}
.circle14 {
background-color: #CCFFCC;
border-color: #404040;
}
.circle15 {
background-color: #B1EDE8;
border-color: #352D39;
}
.circle16 {
background-color: #88AB75;
border-color: #ffffff;
}
.circle17 {
background-color: #69DC9E;
border-color: #0C0C0C;
}
.circle18 {
background-color: #34DDDD;
border-color: #000000;
}
.circle19 {
background-color: #5C6B73;
border-color: #C2DFE3;
}
.circle20 {
background-color: #424242;
border-color: #FCFC62;
}
.circle21 {
background-color: #457EAC;
border-color: #ffffff;
}
.circle22 {
background-color: #1C3041;
border-color: #18F2B2;
}
.circle23 {
background-color: #1A535C;
border-color: #F7FFF7;
}
.circle24 {
background-color: #003366;
border-color: #CCCCCC;
}
.circle25 {
background-color: #392F5A;
border-color: #9DD9D2;
}
/*Text Classes */
.header {
font-size: 400%;
text-align: center;
transition: all 0.5s ease;
font-family: 'Lobster', 'Slabo 27px', serif, monospace;
}
.header:hover {
transform: scale(1.2);
}
#themeLabel {
margin-left: 25%;
margin-right: 25%;
margin-top: 5%;
margin-bottom: 5%;
font-size: 30px;
}
#trade {
font-size: 50%;
}
.quote {
display: none;
font-size: 200%;
}
.author {
display: none;
font-size: 150%;
font-style: italic;
} | css/style.css | @import 'https://fonts.googleapis.com/css?family=Amatica+SC|Indie+Flower|Slabo+27px|Lobster|Shadows+Into+Light';
/*Layer Classes */
body {
background-color: #B1EDE8;
border-color: #352D39;
font-family: 'Shadows Into Light','Indie Flower','Slabo 27px', serif, monospace;
text-align: center;
height: auto;
width: auto;
margin: auto;
overflow: auto;
transition: background-color .2s ease;
}
/* The side navigation menu */
.sidenav {
height: 100%; /* 100% Full-height */
width: 0; /* 0 width - change this with JavaScript */
position: fixed; /* Stay in place */
z-index: 1; /* Stay on top */
top: 0;
left: 0;
background-color: #111; /* Black*/
overflow-x: hidden; /* Disable horizontal scroll */
padding-top: 4%; /* Place content 60px from the top */
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
font-family: 'Lobster','Slabo 27px', serif, monospace;
}
/* The navigation menu links */
.sidenav h4 {
padding: 5%;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s
}
/* When you mouse over the navigation links, change their color */
.sidenav a:hover, .offcanvas a:focus{
color: #f1f1f1;
}
/* Position and style the close button (top right corner) */
.closebtn {
position: absolute;
top: -3%;
right: 5%;
font-size: 60px !important;
margin-left: 50px;
color: white;
}
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
transition: margin-left .5s;
}
.layout {
background-color: inherit;
width: 100%;
margin-top: 2%;
}
.btnSection {
background-color: inherit;
width: auto;
height: auto;
margin-top: 2%;
}
.midSection {
background-color: inherit;
height: auto;
width: auto;
text-align: center;
margin-top: 2%;
}
.box {
height: auto;
width: auto;
display: none;
border-left: 5px solid;
border-right: 5px solid;
border-radius: 0%;
border-color: inherit;
padding-right: 5%;
padding-left: 5%;
padding-top: 5%;
padding-bottom: 5%;
margin-bottom: 5%;
}
/*Buttons Classes */
.quoteBtn {
color: red;
background-color: inherit;
width: auto;
height: auto;
font-size: 100%;
text-align: center;
margin: 1%;
padding: auto;
transition: all 0.8s ease;
font-family: 'Slabo 27px', serif, monospace;
font-weight: bold;
outline: none;
border: none;
}
.quoteBtn:hover {
transform: rotate(360deg)scale(1.5);
}
.quoteBtn:active {
transform: rotate(-360deg)scale(1.5);
transition: 0s;
}
.navBtn {
color: inherit;
background-color: inherit;
width: auto;
height: auto;
font-size: 100%;
text-align: center;
margin: 1%;
padding: auto;
transition: all 0.8s ease;
font-family: 'Slabo 27px', serif, monospace;
font-weight: bold;
outline: none;
border: none;
}
.navBtn:hover {
transform: rotate(360deg)scale(1.5);
}
.navBtn:active {
transform: rotate(-360deg)scale(1.5);
transition: 0s;
}
.shareBtns {
width: auto;
padding-top: 2%;
padding-left: 2%;
border: 0;
box-shadow: 0;
display: none;
transition: all .4s linear;
}
.shareBtns:hover {
cursor:pointer;
transform: rotate(360deg)scale(1.5);
}
.shareBtns:active {
transform: rotate(-360deg)scale(1.5);
transition: 0s;
}
.circle {
width: 40px;
height: 40px;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
border-radius: 50px;
display: inline-block;
margin: 1%;
}
.circle:hover {
cursor:pointer;
transform: scale(1.3);
}
.circle1 {
background-color: #E5E4D7;
border-color: #2C6700;
}
.circle2 {
background-color: #FFAEAE;
border-color: #000000;
}
.circle3 {
background-color: #FF6978;
border-color: #B1EDE8;
}
.circle4 {
background-color: #B60D34;
border-color: #ffffff;
}
.circle5 {
background-color: #520C04;
border-color: #F2F5F9;
}
.circle6 {
background-color: #FF784F;
border-color: #ffffff;
}
.circle7 {
background-color: #FFE66D;
border-color: #1A535C;
}
.circle8 {
background-color: #FF8811;
border-color: #000000;
}
.circle9 {
background-color: #FFCC00;
border-color: #3333FF;
}
.circle10 {
background-color: #BAFF29;
border-color: #1A1B41;
}
.circle11 {
background-color: #29FF32;
border-color: #000000;
}
.circle12 {
background-color: #4F7540;
border-color: #E8F3E5;
}
.circle13 {
background-color: #103900;
border-color: #F8F4E3;
}
.circle14 {
background-color: #CCFFCC;
border-color: #404040;
}
.circle15 {
background-color: #B1EDE8;
border-color: #352D39;
}
.circle16 {
background-color: #88AB75;
border-color: #ffffff;
}
.circle17 {
background-color: #69DC9E;
border-color: #0C0C0C;
}
.circle18 {
background-color: #34DDDD;
border-color: #000000;
}
.circle19 {
background-color: #5C6B73;
border-color: #C2DFE3;
}
.circle20 {
background-color: #424242;
border-color: #FCFC62;
}
.circle21 {
background-color: #457EAC;
border-color: #ffffff;
}
.circle22 {
background-color: #1C3041;
border-color: #18F2B2;
}
.circle23 {
background-color: #1A535C;
border-color: #F7FFF7;
}
.circle24 {
background-color: #003366;
border-color: #CCCCCC;
}
.circle25 {
background-color: #392F5A;
border-color: #9DD9D2;
}
/*Text Classes */
.header {
font-size: 400%;
text-align: center;
transition: all 0.5s ease;
font-family: 'Lobster', 'Slabo 27px', serif, monospace;
}
.header:hover {
transform: scale(1.2);
}
#themeLabel {
margin-left: 25%;
margin-right: 25%;
margin-top: 5%;
margin-bottom: 5%;
font-size: 30px;
}
#trade {
font-size: 50%;
}
.quote {
display: none;
font-size: 200%;
}
.author {
display: none;
font-size: 150%;
font-style: italic;
} | 0.412412 | 0.103295 |
.single_produkt_liste {
height: 25rem;
overflow: hidden;
font-size: 0.9rem;
margin-bottom: 20px;
}
.single_produkt_liste_search {
height: 15rem;
overflow: hidden;
font-size: 0.9rem;
margin-bottom: 20px;
}
.cat_singel_dat {
}
.sub_cat_text {
width: 100%;
float: left;
}
.preisproduct {
font-size: 0.8rem;
}
.pr_list_data_short_preis,
.preisproduct strong {
font-weight: 400;
font-size: 1.5rem;
font-family: 'Roboto', sans-serif;
margin: 1rem 0 0.5rem 0;
color: #555;
}
.pr_list_data_short {
height: 2rem;
}
.pr_list_data_tax {
font-size: 0.75rem;
color: #555;
line-height: 0.8rem;
}
.weiter {
padding-bottom: 20px;
float: left;
width: 100%;
}
.put_produkte_in_den_warenkorb .submit_back,
.single_produkt_liste .submit_back,
.submit_back {
display: block;
font-family: 'Roboto', sans-serif;
text-shadow: 0 0 1px #fff;
text-transform: none;
text-align: center;
text-decoration: none;
letter-spacing: 0;
cursor: pointer;
border: none;
border-bottom: 1px solid #78A000;
color: #fff;
background: #78A000;
padding: 7px 5px 7px 5px;
font-size: 1rem;
margin-top: 10px;
}
.pr_list_img {
height: 200px;
width: 250px;
overflow: hidden;
}
.pr_list_img img {
height: 200px;
width: 200px;
}
.productbild {
min-height: 240px;
border: 1px solid #e5e5e5;
background: none;
padding: 5px;
position: relative;
margin: 0 0 10px;
}
.productbild small {
display: block;
width: 100%;
float: left;
font-size: 0.9rem;
margin-top: 10px;
}
.product_image img {
width: 50px;
max-height: 30px;
float: left;
margin-right: 20px;
margin-top: 20px;
}
.product_image a.first_img img {
width: 100%;
margin-top: 0;
max-height: none;
height: auto;
}
#main h1#shop_headingwarenkorb {
background: #78A000;
color: #fff;
padding: 10px 0 10px 10px;
}
#main .wk_checkout_div {
color: #fff;
width: 15rem;
float: right;
}
#main .wk_checkout_div a {
color: #fff;
background: #78A000;
display: block;
width: 15rem;
padding: 20px;
font-size: 1.2rem;
text-align: center;
}
#main a.wk_checkout:hover {
color: #fff;
background: #6D8D0F;
}
.produkt_dat .produkt_beschreibung br {
}
.produkt_dat .produkt_beschreibung {
font-size: .85rem;
line-height: 1.2rem;
}
.produkt_dat h2 {
font-size: 1.6rem;
}
.product-box2 {
border: 1px solid #e5e5e5;
margin-top: 10px;
background: #fcfcfc;
border-radius: 0;
font-size: .8rem;
padding: 20px 20px 100px;
z-index: 1;
}
div.put_produkte_in_den_warenkorb {
float: right;
margin-top: -120px;
z-index: 99999;
position: relative;
margin-right: 30px;
}
div.produkte_in_den_warenkorb {
float: right;
margin-top: -170px;
z-index: 99999;
position: relative;
margin-right: 30px;
}
div.produkte_in_den_warenkorb label {
display: none;
}
.single_produkt_liste .formi {
}
div.top_weiter {
width: 99%;
text-align: right;
margin-bottom: -10px;
z-index: 9999;
height: 30px;
}
a.user_darf_bearbeiten {
}
div.warenkorb_komplett {
margin-top: 0;
margin-left: 10px;
}
#main div.warenkorb_komplett h1 {
font-size: 150%;
}
div.warenkorb_komplett {
}
input.aktu_warenkorb {
background-color: #78A000;
border: none;
color: #fff;
padding: 2px;
}
div#shop_divkomplet {
width: 99%;
text-align: left;
height: 100px;
}
div.wk_summe {
font-weight: 600;
}
a.wk_loeschen {
display: block;
float: left;
padding-left: 30px;
color: red;
height: 3rem;
font-size: 80%;
padding-top: 0;
overflow: visible;
background-image: url(images/achtung.png);
background-position: 0 -2px;
background-repeat: no-repeat;
}
#main .container_12 .grid_7 a.wk_checkout,
#main .container_12 .grid_7 a.wk_checkout:visited {
float: right;
margin-top: 0;
display: inline-block;
font-weight: 600;
font-size: 110%;
outline: none;
cursor: pointer;
text-align: center;
text-decoration: none;
padding: 7px 10px 7px 10px;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
color: #fff;
border: solid 1px #78A000;
background: #78A000;
background: -webkit-gradient(linear, left top, left bottom, from(#474764), to(#78A000));
background: -moz-linear-gradient(top, #474764, #78A000);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#474764', endColorstr='#78A000');
}
select {}
.labdiv input[type="text"] {}
.produkte_in_den_warenkorb .labdiv select {
width: 179px;
}
.labdiv label {}
.labdiv label.checkboxlabel {}
div.checkout_process_div {
margin-bottom: 100px;
margin-top: 30px;
}
#main div.checkout_process_div p {
font-size: 0.85rem;
}
div.checkout_process_div_fertig {
margin-top: -30px;
}
.checkout_process_div input.submit_back {
color: #fff;
background-color: #78A000;
float: right;
}
.error,
.shop_error,
#shop_divhinzugef {
padding: 10px;
border: 1px solid #000;
color: #fff;
background-color: #78A000;
font-size: 150%;
margin-bottom: 10px;
}
.error_strong {
color: #78A000;
}
strong.error {
padding: 2px;
border: none;
color: #78A000;
background-color: #fff;
font-size: 90%;
margin-bottom: 2px;
}
.checkout_process_div table,
.checkout_process_div tr,
.checkout_process_div td {
border: none;
}
div.ext_user_menu {
height: 50px;
width: 99%;
padding-top: 10px;
}
div.ext_user_menu ul {
list-style-type: none;
height: 50px;
margin: 0;
padding: 0;
}
div.ext_user_menu li {
display: block;
float: left;
margin: 0;
padding: 0;
height: 2em;
list-style-type: none;
}
#main div.ext_user_menu a {
display: block;
padding: 5px;
margin: 0;
border: 1px solid black;
}
#main div.ext_user_menu #extuserid_2 {
border-left: none;
}
#main div.ext_user_menu #extuserid_3 {
border-left: none;
}
#main div.ext_user_menu a.ext_user_aktiv {
border-bottom: none;
}
div.ext_user_bereich {
min-height: 200px;
}
#main table.belege th {
background: #E6EBEF none repeat scroll 0 0;
display: table-cell;
margin: 0;
padding: 4px;
text-align: center;
}
#main table.belege td {
text-align: right;
}
div.checkout_aktiv,
div.checkout_in_aktiv {
float: left;
padding: 10px 20px 5px 20px;
color: #78A000;
font-weight: 600;
margin-right: 10px;
font-size: 90%;
}
div.checkout_in_aktiv {
color: #444;
}
div.checkout_aktiv {
border: 1px solid #78A000;
border-bottom: 0;
background-color: #78A000;
color: #fff;
padding: 10px 20px 5px 20px;
}
div.fortschritt_checkout {
border-bottom: 1px solid #78A000;
height: 30px;
width: 99%;
margin-bottom: 20px;
}
div.fortschritt_checkout a {
text-decoration: none;
}
.ext_user_menu {
font-size: 100%;
}
img.payment_logo_5 {
margin-left: 20px;
float: right;
}
img.search_img {
max-width: 160px;
max-height: 160px;
}
div.produkt_such_ergebnisse li {
display: block;
width: 99%;
}
.product_list_item_img a img,
div.single_produkt_liste .product_list_item_img a:hover {
border: none;
text-decoration: none;
}
#mod_cart_box .image_back {
padding: 5px 5px 20px;
color: #111;
}
img.payment_logo_5 {
width: 300px;
height: 100px;
float: right;
}
img.payment_logo_6,
img.payment_logo_7,
img.payment_logo_8 {
float: right;
}
.payment_name_strong {
font-size: 120%;
}
label.label_payment {
margin-top: -10px;
} | styles/foundation_papoo/css/shop.css | .single_produkt_liste {
height: 25rem;
overflow: hidden;
font-size: 0.9rem;
margin-bottom: 20px;
}
.single_produkt_liste_search {
height: 15rem;
overflow: hidden;
font-size: 0.9rem;
margin-bottom: 20px;
}
.cat_singel_dat {
}
.sub_cat_text {
width: 100%;
float: left;
}
.preisproduct {
font-size: 0.8rem;
}
.pr_list_data_short_preis,
.preisproduct strong {
font-weight: 400;
font-size: 1.5rem;
font-family: 'Roboto', sans-serif;
margin: 1rem 0 0.5rem 0;
color: #555;
}
.pr_list_data_short {
height: 2rem;
}
.pr_list_data_tax {
font-size: 0.75rem;
color: #555;
line-height: 0.8rem;
}
.weiter {
padding-bottom: 20px;
float: left;
width: 100%;
}
.put_produkte_in_den_warenkorb .submit_back,
.single_produkt_liste .submit_back,
.submit_back {
display: block;
font-family: 'Roboto', sans-serif;
text-shadow: 0 0 1px #fff;
text-transform: none;
text-align: center;
text-decoration: none;
letter-spacing: 0;
cursor: pointer;
border: none;
border-bottom: 1px solid #78A000;
color: #fff;
background: #78A000;
padding: 7px 5px 7px 5px;
font-size: 1rem;
margin-top: 10px;
}
.pr_list_img {
height: 200px;
width: 250px;
overflow: hidden;
}
.pr_list_img img {
height: 200px;
width: 200px;
}
.productbild {
min-height: 240px;
border: 1px solid #e5e5e5;
background: none;
padding: 5px;
position: relative;
margin: 0 0 10px;
}
.productbild small {
display: block;
width: 100%;
float: left;
font-size: 0.9rem;
margin-top: 10px;
}
.product_image img {
width: 50px;
max-height: 30px;
float: left;
margin-right: 20px;
margin-top: 20px;
}
.product_image a.first_img img {
width: 100%;
margin-top: 0;
max-height: none;
height: auto;
}
#main h1#shop_headingwarenkorb {
background: #78A000;
color: #fff;
padding: 10px 0 10px 10px;
}
#main .wk_checkout_div {
color: #fff;
width: 15rem;
float: right;
}
#main .wk_checkout_div a {
color: #fff;
background: #78A000;
display: block;
width: 15rem;
padding: 20px;
font-size: 1.2rem;
text-align: center;
}
#main a.wk_checkout:hover {
color: #fff;
background: #6D8D0F;
}
.produkt_dat .produkt_beschreibung br {
}
.produkt_dat .produkt_beschreibung {
font-size: .85rem;
line-height: 1.2rem;
}
.produkt_dat h2 {
font-size: 1.6rem;
}
.product-box2 {
border: 1px solid #e5e5e5;
margin-top: 10px;
background: #fcfcfc;
border-radius: 0;
font-size: .8rem;
padding: 20px 20px 100px;
z-index: 1;
}
div.put_produkte_in_den_warenkorb {
float: right;
margin-top: -120px;
z-index: 99999;
position: relative;
margin-right: 30px;
}
div.produkte_in_den_warenkorb {
float: right;
margin-top: -170px;
z-index: 99999;
position: relative;
margin-right: 30px;
}
div.produkte_in_den_warenkorb label {
display: none;
}
.single_produkt_liste .formi {
}
div.top_weiter {
width: 99%;
text-align: right;
margin-bottom: -10px;
z-index: 9999;
height: 30px;
}
a.user_darf_bearbeiten {
}
div.warenkorb_komplett {
margin-top: 0;
margin-left: 10px;
}
#main div.warenkorb_komplett h1 {
font-size: 150%;
}
div.warenkorb_komplett {
}
input.aktu_warenkorb {
background-color: #78A000;
border: none;
color: #fff;
padding: 2px;
}
div#shop_divkomplet {
width: 99%;
text-align: left;
height: 100px;
}
div.wk_summe {
font-weight: 600;
}
a.wk_loeschen {
display: block;
float: left;
padding-left: 30px;
color: red;
height: 3rem;
font-size: 80%;
padding-top: 0;
overflow: visible;
background-image: url(images/achtung.png);
background-position: 0 -2px;
background-repeat: no-repeat;
}
#main .container_12 .grid_7 a.wk_checkout,
#main .container_12 .grid_7 a.wk_checkout:visited {
float: right;
margin-top: 0;
display: inline-block;
font-weight: 600;
font-size: 110%;
outline: none;
cursor: pointer;
text-align: center;
text-decoration: none;
padding: 7px 10px 7px 10px;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
color: #fff;
border: solid 1px #78A000;
background: #78A000;
background: -webkit-gradient(linear, left top, left bottom, from(#474764), to(#78A000));
background: -moz-linear-gradient(top, #474764, #78A000);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#474764', endColorstr='#78A000');
}
select {}
.labdiv input[type="text"] {}
.produkte_in_den_warenkorb .labdiv select {
width: 179px;
}
.labdiv label {}
.labdiv label.checkboxlabel {}
div.checkout_process_div {
margin-bottom: 100px;
margin-top: 30px;
}
#main div.checkout_process_div p {
font-size: 0.85rem;
}
div.checkout_process_div_fertig {
margin-top: -30px;
}
.checkout_process_div input.submit_back {
color: #fff;
background-color: #78A000;
float: right;
}
.error,
.shop_error,
#shop_divhinzugef {
padding: 10px;
border: 1px solid #000;
color: #fff;
background-color: #78A000;
font-size: 150%;
margin-bottom: 10px;
}
.error_strong {
color: #78A000;
}
strong.error {
padding: 2px;
border: none;
color: #78A000;
background-color: #fff;
font-size: 90%;
margin-bottom: 2px;
}
.checkout_process_div table,
.checkout_process_div tr,
.checkout_process_div td {
border: none;
}
div.ext_user_menu {
height: 50px;
width: 99%;
padding-top: 10px;
}
div.ext_user_menu ul {
list-style-type: none;
height: 50px;
margin: 0;
padding: 0;
}
div.ext_user_menu li {
display: block;
float: left;
margin: 0;
padding: 0;
height: 2em;
list-style-type: none;
}
#main div.ext_user_menu a {
display: block;
padding: 5px;
margin: 0;
border: 1px solid black;
}
#main div.ext_user_menu #extuserid_2 {
border-left: none;
}
#main div.ext_user_menu #extuserid_3 {
border-left: none;
}
#main div.ext_user_menu a.ext_user_aktiv {
border-bottom: none;
}
div.ext_user_bereich {
min-height: 200px;
}
#main table.belege th {
background: #E6EBEF none repeat scroll 0 0;
display: table-cell;
margin: 0;
padding: 4px;
text-align: center;
}
#main table.belege td {
text-align: right;
}
div.checkout_aktiv,
div.checkout_in_aktiv {
float: left;
padding: 10px 20px 5px 20px;
color: #78A000;
font-weight: 600;
margin-right: 10px;
font-size: 90%;
}
div.checkout_in_aktiv {
color: #444;
}
div.checkout_aktiv {
border: 1px solid #78A000;
border-bottom: 0;
background-color: #78A000;
color: #fff;
padding: 10px 20px 5px 20px;
}
div.fortschritt_checkout {
border-bottom: 1px solid #78A000;
height: 30px;
width: 99%;
margin-bottom: 20px;
}
div.fortschritt_checkout a {
text-decoration: none;
}
.ext_user_menu {
font-size: 100%;
}
img.payment_logo_5 {
margin-left: 20px;
float: right;
}
img.search_img {
max-width: 160px;
max-height: 160px;
}
div.produkt_such_ergebnisse li {
display: block;
width: 99%;
}
.product_list_item_img a img,
div.single_produkt_liste .product_list_item_img a:hover {
border: none;
text-decoration: none;
}
#mod_cart_box .image_back {
padding: 5px 5px 20px;
color: #111;
}
img.payment_logo_5 {
width: 300px;
height: 100px;
float: right;
}
img.payment_logo_6,
img.payment_logo_7,
img.payment_logo_8 {
float: right;
}
.payment_name_strong {
font-size: 120%;
}
label.label_payment {
margin-top: -10px;
} | 0.261331 | 0.068725 |
@value mediumDown, mediumUp from '~styles/breakpoints.css';
.baseStyles {
/* This class is intended for composition only.
* Do not use this class directly
*/
display: flex;
flex-direction: column;
}
.gutter {
flex: 0 0 var(--gutter-width-narrow);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.gutter:first-of-type {
order: 2;
}
.gutter:last-of-type {
order: 3;
}
.gutterLink {
align-items: center;
color: var(--blue-1);
display: flex;
flex: 1 0 auto;
font-family: IBM Plex Mono Medium, monospace;
font-size: var(--size-small);
justify-content: center;
width: 100%;
overflow: hidden;
text-align: center;
position: relative;
}
.gutterLink:hover {
background-color: var(--blue-1);
color: var(--colony-white);
}
.content {
flex: 0 0 auto;
order: 1;
}
/* Themes */
.themeDefault {
composes: baseStyles;
}
.themeDefault .gutter {
background-color: var(--grey-3);
}
.themePink {
composes: baseStyles;
}
.themePink .gutter {
/* grey bg for smaller viewports */
background-color: var(--grey-3);
}
/* Single-side themes */
.themeLeftDark .gutter:first-of-type {
background-color: var(--navy);
}
.themeRightDark .gutter:last-of-type {
background-color: var(--navy);
}
/* Single Side Gutter */
.oneSideLeft .gutter:last-of-type,
.oneSideRight .gutter:first-of-type {
visibility: hidden; /* hide opposite side gutter */
display: none;
}
.oneSideLeft .content,
.oneSideRight .content {
flex-grow: 1;
}
/* Default */
.main {
composes: themeDefault;
}
/* State */
@media (mediumDown) {
.gutterLink > span,
.gutterLinkText {
height: 100%;
width: 100%;
flex: 1 0 auto;
}
.stateHasLeftLink:not(.stateHasRightLink) .gutter:last-of-type,
.stateHasRightLink:not(.stateHasLeftLink) .gutter:first-of-type {
display: none;
}
}
@media (mediumUp) {
.baseStyles {
flex-direction: row;
}
.gutter {
flex-direction: row;
}
.gutter:first-of-type {
order: 1;
}
.gutterLink {
height: 100%;
width: auto;
}
.gutterLinkText {
/*
* Absolutely positioned because white-space is calculated
* before transform is applied, which breaks the layout (makes
* this gutter wider than the other. Not cool...).
*/
position: absolute;
white-space: nowrap;
}
.content {
flex: 0 0 var(--row-width-desktop-narrow);
order: 2;
}
.leftLink .gutterLinkText {
left: var(--gutter-width-wide);
right: -15px;
transform: rotate(270deg);
}
.rightLink .gutterLinkText {
left: -15px;
right: var(--gutter-width-wide);
transform: rotate(90deg);
}
.themePink .gutter {
background-color: var(--pink-2);
}
} | src/modules/parts/components/GutterSection/GutterSection.module.css | @value mediumDown, mediumUp from '~styles/breakpoints.css';
.baseStyles {
/* This class is intended for composition only.
* Do not use this class directly
*/
display: flex;
flex-direction: column;
}
.gutter {
flex: 0 0 var(--gutter-width-narrow);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.gutter:first-of-type {
order: 2;
}
.gutter:last-of-type {
order: 3;
}
.gutterLink {
align-items: center;
color: var(--blue-1);
display: flex;
flex: 1 0 auto;
font-family: IBM Plex Mono Medium, monospace;
font-size: var(--size-small);
justify-content: center;
width: 100%;
overflow: hidden;
text-align: center;
position: relative;
}
.gutterLink:hover {
background-color: var(--blue-1);
color: var(--colony-white);
}
.content {
flex: 0 0 auto;
order: 1;
}
/* Themes */
.themeDefault {
composes: baseStyles;
}
.themeDefault .gutter {
background-color: var(--grey-3);
}
.themePink {
composes: baseStyles;
}
.themePink .gutter {
/* grey bg for smaller viewports */
background-color: var(--grey-3);
}
/* Single-side themes */
.themeLeftDark .gutter:first-of-type {
background-color: var(--navy);
}
.themeRightDark .gutter:last-of-type {
background-color: var(--navy);
}
/* Single Side Gutter */
.oneSideLeft .gutter:last-of-type,
.oneSideRight .gutter:first-of-type {
visibility: hidden; /* hide opposite side gutter */
display: none;
}
.oneSideLeft .content,
.oneSideRight .content {
flex-grow: 1;
}
/* Default */
.main {
composes: themeDefault;
}
/* State */
@media (mediumDown) {
.gutterLink > span,
.gutterLinkText {
height: 100%;
width: 100%;
flex: 1 0 auto;
}
.stateHasLeftLink:not(.stateHasRightLink) .gutter:last-of-type,
.stateHasRightLink:not(.stateHasLeftLink) .gutter:first-of-type {
display: none;
}
}
@media (mediumUp) {
.baseStyles {
flex-direction: row;
}
.gutter {
flex-direction: row;
}
.gutter:first-of-type {
order: 1;
}
.gutterLink {
height: 100%;
width: auto;
}
.gutterLinkText {
/*
* Absolutely positioned because white-space is calculated
* before transform is applied, which breaks the layout (makes
* this gutter wider than the other. Not cool...).
*/
position: absolute;
white-space: nowrap;
}
.content {
flex: 0 0 var(--row-width-desktop-narrow);
order: 2;
}
.leftLink .gutterLinkText {
left: var(--gutter-width-wide);
right: -15px;
transform: rotate(270deg);
}
.rightLink .gutterLinkText {
left: -15px;
right: var(--gutter-width-wide);
transform: rotate(90deg);
}
.themePink .gutter {
background-color: var(--pink-2);
}
} | 0.640074 | 0.10235 |
body {
margin: 0;
font-family: sans-serif;
background: #FFFFFF;
-webkit-font-smoothing: antialiased;
overflow: hidden;
overflow-x: hidden
}
::-moz-selection {
background: #409FFF;
color: #FFFFFF
}
::selection {
background: #409FFF;
color: #FFFFFF
}
*,*:before,*:after {
box-sizing: border-box;
-webkit-tap-highlight-color: transparent
}
.root-node .application {
position: absolute;
z-index: 0;
height: 100%;
width: 100%;
left: 0;
top: 0
}
.no-js body,.is-mobile-ready body {
overflow: scroll
}
.has-egg .transfer {
mix-blend-mode: exclusion
}
.has-egg nav {
mix-blend-mode: exclusion
}
.has-egg .panel {
mix-blend-mode: exclusion
}
@font-face {
font-family:"Fakt Pro Normal";src:url(https://cdn.wetransfer.net/assets/FaktProWeb-Normal-8468a6ca1e0907b839ebc6e8899b4dd39b386b7cfa33743da1ffb30a68c924f6.woff) format("woff");font-style:normal;font-weight:400
}
@font-face {
font-family:"Fakt Pro Normal Cyr";src:url(https://cdn.wetransfer.net/assets/FaktCyrWeb-Normal-0038c5aa5c3243bb2995139e9aeb9519f62f098d0e0f7fab6c8b655a292d857d.woff) format("woff");font-style:normal;font-weight:400
}
@font-face {
font-family:"Fakt Pro Normal Grk";src:url(https://cdn.wetransfer.net/assets/FaktGrkWeb-Normal-9e5daf8f10b7da71bbd3309ebb7c95657cf2e585986d1512700d1c1bec005507.woff) format("woff");font-style:normal;font-weight:400
}
@font-face {
font-family:"Fakt Pro Medium";src:url(https://cdn.wetransfer.net/assets/FaktProWeb-Medium-fd3bbe8c665638bbd898d20dbf232f1bac9d2b11c31eefc006370f43ee8f1994.woff) format("woff");font-style:normal;font-weight:500
}
@font-face {
font-family:"Fakt Pro Medium Cyr";src:url(https://cdn.wetransfer.net/assets/FaktCyrWeb-Normal-0038c5aa5c3243bb2995139e9aeb9519f62f098d0e0f7fab6c8b655a292d857d.woff) format("woff");font-style:normal;font-weight:500
}
@font-face {
font-family:"Fakt Pro Medium Grk";src:url(https://cdn.wetransfer.net/assets/FaktGrkWeb-Medium-8eb863415ca103c7f90b369e54e6be4786c90c30a06ce32f3dca803206bf74dd.woff) format("woff");font-style:normal;font-weight:500
}
@font-face {
font-family:"FreightSans Pro Medium";src:url(https://cdn.wetransfer.net/assets/FreightSans-Pro-Medium-688ccadb090cbe2e1fabae9933cd09d9fd9d0613099b04c8dda35afdae6f51ad.woff) format("woff");font-style:normal;font-weight:400
}
@font-face {
font-family:"FreightSans Pro Semibold";src:url(https://cdn.wetransfer.net/assets/FreightSans-Pro-Semibold-054b231d728f2c6bd02c7fcac7adf79475e47cc8a9509a94bd727a25603c8781.woff) format("woff");font-style:normal;font-weight:400
}
.font__fakt-pro-medium {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif !important
}
.accountinformation__signout {
color: #484A4D;
cursor: pointer;
text-decoration: underline
}
.connectapp img {
display: block;
width: 100%;
margin-bottom: 1.5625em
}
.connectapp p {
margin-bottom: 1.78571em;
color: #484A4D
}
.connectapp p:nth-child(n+2) {
margin-top: 0.35714em
}
.connectapp p:last-of-type {
margin-bottom: 1.42857em
}
.connectapp p a {
color: #000000
}
.connectapp__digit {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
background: #FFFFFF;
color: #409FFF;
border: 0.05em solid #D8D8D8;
border-radius: 1.25em;
font-size: 1.25em;
height: 2.5em;
width: 2.5em;
line-height: 2.5em;
padding: 0 0.85em;
display: inline-block;
text-align: center;
margin: 0 0.41667em 0.83333em 0
}
.fl-1 .connectapp__digit {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .connectapp__digit {
width: calc((100% / 6) - 8px);
height: calc(((100vw - 40px) / 6) - 8px);
padding: 0;
line-height: calc(((100vw - 40px) / 6) - 8px)
}
.is-mobile-ready .connectapp__digit:last-child {
margin-right: 0
}
.connectapp__overviewtitle {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .connectapp__overviewtitle {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.connectapp__connectcode {
height: 5.625em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.is-mobile-ready .connectapp__connectcode {
height: inherit
}
.connectapp__devices {
list-style: none;
font-size: 1.125em;
margin-top: 1.11111em;
margin: 1.11111em 0;
padding: 0
}
.connectapp__device {
height: 5.55556em;
background: #FFFFFF;
box-shadow: 0 -1px 0 0 #E8EBED, 0 1px 0 0 #E8EBED;
letter-spacing: 0;
position: relative
}
.connectapp__deviceicon {
position: absolute;
left: 0.77778em;
top: 1.55556em
}
.connectapp__devicetitle {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
position: absolute;
top: 2em;
left: 3.27778em
}
.fl-1 .connectapp__devicetitle {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .connectapp__devicetitle {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.connectapp__removedevice {
height: 1.33333em;
width: 1.33333em;
position: absolute;
top: 2.11111em;
right: 0.55556em;
cursor: pointer
}
.connectapp__removedevice:hover path {
fill: #919599
}
.invoice {
list-style: none;
margin: 1.25em 0;
padding: 0
}
.invoice__item {
height: 4.375em;
background: #FFFFFF;
box-shadow: 0 -1px 0 0 #E8EBED, 0 1px 0 0 #E8EBED;
color: #17181A;
position: relative
}
.invoice__item:hover .invoice__download {
display: block
}
.invoice__title {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em;
top: 0.75em;
position: absolute
}
.fl-1 .invoice__title {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .invoice__title {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.invoice__details {
position: absolute;
font-size: 0.8125em;
top: 2.84615em;
color: #919599
}
.invoice__download {
position: absolute;
top: 1.5em;
right: 0.625em;
height: 1.5em;
width: 1.5em;
cursor: pointer;
display: block
}
.invoice__download:hover path {
fill: #0073e5
}
.invoice__none {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
text-align: center;
margin-top: 4.375em
}
.fl-1 .invoice__none {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .invoice__none {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding {
position: relative;
height: calc(100vh - 3.75em);
box-sizing: border-box
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding {
padding-top: 0;
height: 100%
}
}
.onboarding__transition-container {
height: 100%
}
.onboarding__form-container,.onboarding__preview-container {
display: inline-block;
vertical-align: top;
width: 50%;
height: 100%
}
.onboarding__form {
position: relative;
width: 100%;
max-width: 27.5em;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
height: 100%;
padding-top: 2.875em;
padding-bottom: 2.875em
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding__form {
padding-top: 0
}
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding__form {
padding-left: 2.5em;
padding-right: 2.5em;
padding-bottom: 1.25em
}
}
.onboarding__form--is-busy .onboarding__form-content-wallpaper-selection-components {
position: relative
}
.onboarding__form--is-busy .onboarding__form-content-wallpaper-selection-components:after {
opacity: 0.4;
width: 100%;
height: 100%
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding__form-container {
width: 100%
}
}
.onboarding--step-1 .onboarding__preview-container,.onboarding--step-2 .onboarding__preview-container,.onboarding--step-3 .onboarding__preview-container {
background: #F7F9FA
}
.onboarding--step-1 .onboarding__preview-background,.onboarding--step-2 .onboarding__preview-background,.onboarding--step-3 .onboarding__preview-background {
opacity: 0
}
.onboarding--step-1 .onboarding__preview-browser-wallpaper,.onboarding--step-2 .onboarding__preview-browser-wallpaper,.onboarding--step-3 .onboarding__preview-browser-wallpaper {
background-color: #919599
}
@media (max-width: 48em) {
.onboarding--step-0 .onboarding__preview-browser {
-webkit-transform: scale(1, 1) translateX(20%);
transform: scale(1, 1) translateX(20%)
}
}
.onboarding--step-0 .onboarding__preview-browser-wallpaper {
background-color: #409FFF
}
.onboarding--step-1 .onboarding__preview-browser {
-webkit-transform: scale(1.5, 1.5);
transform: scale(1.5, 1.5)
}
@media (max-width: 48em) {
.onboarding--step-1 .onboarding__preview-browser {
-webkit-transform: scale(1.5, 1.5) translateX(20%);
transform: scale(1.5, 1.5) translateX(20%)
}
}
@media (min-width: 64em) and (max-width: 65.5625em) {
.onboarding--step-1 .onboarding__preview-browser {
-webkit-transform: scale(1.3, 1.3);
transform: scale(1.3, 1.3)
}
}
.onboarding--step-1 .onboarding__preview-lens {
opacity: 1
}
.onboarding--step-2 .onboarding__preview-browser {
-webkit-transform: scale(1.5, 1.5);
transform: scale(1.5, 1.5)
}
@media (max-width: 48em) {
.onboarding--step-2 .onboarding__preview-browser {
-webkit-transform: scale(1.5, 1.5) translateX(20%);
transform: scale(1.5, 1.5) translateX(20%)
}
}
@media (min-width: 64em) and (max-width: 65.5625em) {
.onboarding--step-2 .onboarding__preview-browser {
-webkit-transform: scale(1.3, 1.3);
transform: scale(1.3, 1.3)
}
}
.onboarding--step-3 .onboarding__preview-browser {
-webkit-transform: scale(2.3, 2.3) translateX(20%);
transform: scale(2.3, 2.3) translateX(20%)
}
@media (max-width: 48em) {
.onboarding--step-3 .onboarding__preview-browser {
-webkit-transform: scale(2.8, 2.8) translateX(35%);
transform: scale(2.8, 2.8) translateX(35%)
}
}
@media (min-width: 64em) and (max-width: 65.5625em) {
.onboarding--step-3 .onboarding__preview-browser {
-webkit-transform: scale(2.5, 2.5) translateX(30%);
transform: scale(2.5, 2.5) translateX(30%)
}
}
.onboarding--step-3 .onboarding__preview-lens {
display: none
}
@media (min-width: 48em) {
.onboarding--step-3 .onboarding__form {
height: auto;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%)
}
.onboarding--step-3 .onboarding__form-content {
min-height: initial
}
.onboarding--step-3 .onboarding__form-buttons {
margin-top: 1.875em
}
}
@media (min-width: 48em) and (min-width: 48em) and (max-width: 65.5625em) {
.onboarding--step-3 .onboarding__form-buttons {
margin-left: initial;
margin-right: initial
}
}
.onboarding--step-3 .onboarding__preview-browser-wallpaper {
height: 12.375em;
top: 1.0625em
}
.onboarding--step-3 .onboarding__preview-browser .download-box {
top: 3.125em
}
.onboarding--step-3 .onboarding__preview-browser .browser #browser-oval-1,.onboarding--step-3 .onboarding__preview-browser .browser #browser-oval-2,.onboarding--step-3 .onboarding__preview-browser .browser #browser-oval-3,.onboarding--step-3 .onboarding__preview-browser .browser #browser-rectangle-2,.onboarding--step-3 .onboarding__preview-browser .browser clippath rect,.onboarding--step-3 .onboarding__preview-browser .browser text {
-webkit-animation-name: onboarding--browser-hide-n-show;
animation-name: onboarding--browser-hide-n-show;
-webkit-animation-duration: 1s;
animation-duration: 1s
}
.onboarding__form-content {
min-height: 28.125em;
height: calc(100% - 2.875em)
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding__form-content {
min-height: initial;
height: auto
}
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding__form-content {
height: calc(100% - 6.25em)
}
}
.onboarding__form-content>h1 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #17181A;
margin-top: 0
}
.fl-1 .onboarding__form-content>h1 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__form-content>p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .onboarding__form-content>p {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .onboarding__form-content>p {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__form-content>h4 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .onboarding__form-content>h4 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .onboarding__form-content>h4 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__form-content>p,.onboarding__form-content>h4 {
font-size: 1.25em;
color: #484A4D
}
@media (max-width: 48em) {
.onboarding__form-content>p,.onboarding__form-content>h4 {
font-size: 0.875em;
line-height: 1.35714em
}
}
.onboarding__form-content>h1,.onboarding__form-content>p,.onboarding__form-content>h4 {
letter-spacing: 0em
}
.onboarding__form-content>p>strong {
color: #000000;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .onboarding__form-content>p>strong {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__form-buttons {
height: 2.875em
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding__form-buttons {
width: 11.875em;
height: auto;
margin: 0 auto
}
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding__form-buttons {
width: 11.875em;
height: auto;
margin: 3.125em auto 0
}
}
.onboarding__form-buttons .button {
margin-top: 0;
width: 13.4375em
}
.onboarding__form-buttons .button--enabled:hover {
background-color: #0073e5
}
.onboarding__form-buttons .button:nth-child(1) {
margin-right: 1.875em
}
.onboarding__form-buttons .button:nth-child(2) {
background: transparent;
color: #409FFF;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .onboarding__form-buttons .button:nth-child(2) {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (min-width: 65.5625em) {
.onboarding__form-buttons .button:nth-child(2) {
width: auto;
text-align: left;
padding-left: 0
}
}
@media (max-width: 48em) {
.onboarding__form-buttons .button:nth-child(2) {
width: 13.4375em;
text-align: center
}
}
.onboarding__form-buttons .button:nth-child(2):hover {
color: #0073e5
}
.onboarding__form-buttons .claimdomain__claim-now-button {
position: relative;
top: 0;
left: 0
}
.onboarding__preview-container {
position: relative;
height: 100%;
border-left: solid 0.0625em #E8EBED;
overflow: hidden
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding__preview-container {
display: none
}
}
.onboarding__preview {
position: relative;
height: 100%
}
.onboarding__preview-background {
position: absolute;
width: 100%;
height: 100%;
background-image: url(https://cdn.wetransfer.net/assets/onboarding-bg-b925b1d0108bf855fe8134bd884e5b9769cb1c677219213d99f46c8669f0a48b.png);
background-position: center;
background-size: 96.1875em 59.4375em;
opacity: 1;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s
}
.onboarding__preview-elements {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%)
}
.onboarding__preview-browser {
position: relative;
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transition: left 0.4s cubic-bezier(0.9, 0, 0.1, 1),-webkit-transform 0.4s cubic-bezier(0.9, 0, 0.1, 1);
transition: left 0.4s cubic-bezier(0.9, 0, 0.1, 1),-webkit-transform 0.4s cubic-bezier(0.9, 0, 0.1, 1);
transition: left 0.4s cubic-bezier(0.9, 0, 0.1, 1),transform 0.4s cubic-bezier(0.9, 0, 0.1, 1);
transition: left 0.4s cubic-bezier(0.9, 0, 0.1, 1),transform 0.4s cubic-bezier(0.9, 0, 0.1, 1),-webkit-transform 0.4s cubic-bezier(0.9, 0, 0.1, 1);
left: 0
}
.onboarding__preview-browser .download-box,.onboarding__preview-browser .labeled-download-box {
position: absolute;
left: 1.25em;
top: 4.375em;
z-index: 2
}
.onboarding__preview-browser .download-box {
width: 4.1875em;
height: 5.9375em;
box-shadow: 0 0 0.5em 0 rgba(0,0,0,0.1),0 0.25em 1.25em 0 rgba(0,0,0,0.13);
border-radius: 0.1875em;
-webkit-transition: top 0.2s cubic-bezier(0.9, 0, 0.1, 1) 0.4s;
transition: top 0.2s cubic-bezier(0.9, 0, 0.1, 1) 0.4s
}
.onboarding__preview-browser h3 {
position: absolute;
bottom: -1.875em;
left: 0.3125em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.625em;
color: #919599;
letter-spacing: 0em;
z-index: 2;
margin: 0
}
.fl-1 .onboarding__preview-browser h3 {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__preview-browser-wallpaper {
position: absolute;
width: 19.1875em;
height: 10.5em;
z-index: 1;
left: 0;
top: 2.5em;
background-size: cover;
background-position: center;
border-bottom-right-radius: 0.25em;
border-bottom-left-radius: 0.25em;
-webkit-transition: background-color 0.4s linear,height 0.2s cubic-bezier(0.9, 0, 0.1, 1) 0.4s,top 0.2s cubic-bezier(0.9, 0, 0.1, 1) 0.4s;
transition: background-color 0.4s linear,height 0.2s cubic-bezier(0.9, 0, 0.1, 1) 0.4s,top 0.2s cubic-bezier(0.9, 0, 0.1, 1) 0.4s
}
.onboarding__preview-lens {
position: absolute;
opacity: 0;
-webkit-transition: opacity 0.3s linear 0.4s;
transition: opacity 0.3s linear 0.4s;
width: 16em;
height: 16em;
overflow: hidden;
border-radius: 8em;
border: solid 0.1875em #D4D7D9;
top: -8.875em;
left: -0.8125em
}
@media (max-width: 48em) {
.onboarding__preview-lens {
left: 3.4375em
}
}
@media (min-width: 64em) and (max-width: 65.5625em) {
.onboarding__preview-lens {
left: 0.625em;
top: -8.875em
}
}
.onboarding__preview-lens .browser {
position: relative;
top: 11.8125em;
left: 3.125em;
-webkit-transform: scale(2.1, 2.1);
transform: scale(2.1, 2.1)
}
@media (min-width: 64em) and (max-width: 65.5625em) {
.onboarding__preview-lens .browser {
top: 12.8125em
}
}
.onboarding__claimdomain {
display: block;
height: 100%
}
.onboarding__claimdomain-textfield {
width: 100%;
margin-left: 0
}
.onboarding__claimdomain-textfield input {
padding-top: 0.25em;
padding-right: 8.4375em;
margin-right: 4.375em
}
.onboarding__claimdomain-textfield .textfield__busy {
right: 8.125em
}
.onboarding__claimdomain-label {
position: absolute;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #919599;
font-size: 1em;
top: 0.9375em;
right: 0.9375em
}
.fl-1 .onboarding__claimdomain-label {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__claimdomain-info {
color: #919599;
font-size: 0.75em;
margin-top: 1.125em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .onboarding__claimdomain-info {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__claimdomain-info strong {
color: #484A4D;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .onboarding__claimdomain-info strong {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__claimdomain-fields {
position: relative;
margin-top: 4.6875em
}
.onboarding__form-content-wallpaper-selection-components {
margin-top: 2.5em
}
.onboarding__form-content-wallpaper-selection-components:after {
position: absolute;
content: ' ';
top: 0;
left: 0;
width: 0;
height: 0;
background-color: #FFFFFF;
opacity: 0;
-webkit-transition: opacity 0.4s cubic-bezier(0.9, 0, 0.1, 1);
transition: opacity 0.4s cubic-bezier(0.9, 0, 0.1, 1)
}
.onboarding__form-content-wallpaper-selection-components>span {
display: inline-block;
vertical-align: top
}
.onboarding__form-content-wallpaper-selection-components>span:nth-child(2) {
margin-left: 1.1875em
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding__form-content-wallpaper-selection-components>span {
width: 100%
}
.onboarding__form-content-wallpaper-selection-components>span:nth-child(2) {
margin-left: 0
}
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding__form-content-wallpaper-selection-components>span {
width: 100%
}
.onboarding__form-content-wallpaper-selection-components>span:nth-child(2) {
margin-left: 0
}
}
.onboarding .upload-wallpaper {
width: 18.75em;
height: 11.25em
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding .upload-wallpaper {
width: 100%
}
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding .upload-wallpaper {
width: 100%
}
}
.onboarding .upload-wallpaper__image-upload {
height: 7.8125em
}
.onboarding .upload-wallpaper__image-upload .imageupload__pending {
left: 2.6875em;
top: 2.6875em
}
.onboarding .upload-wallpaper__image-upload .imageupload__image {
height: 6.6875em;
width: 6.6875em;
border-radius: 54px
}
.onboarding .upload-wallpaper__image-upload.imageupload--pending .imageupload__image {
opacity: 0.55
}
.onboarding .upload-wallpaper__image-upload .button {
top: 0.9375em
}
.onboarding .upload-wallpaper__image-upload .button:nth-of-type(1) {
left: 8.92857em
}
.onboarding .upload-wallpaper__image-upload .button:nth-of-type(2) {
left: 18.42857em
}
.onboarding .upload-wallpaper__wallpaper {
border-radius: 5px;
margin-bottom: 0.75em;
overflow: hidden;
position: relative;
border: 1px solid #E8EBED;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.onboarding .upload-wallpaper__wallpaper .imageupload__image {
display: none;
height: 100%;
width: 100%
}
.onboarding .upload-wallpaper__wallpaper--active:hover {
background-color: #17181A
}
.onboarding .upload-wallpaper__wallpaper--active:hover .imageupload__image {
opacity: 0.75
}
.onboarding .upload-wallpaper__wallpaper--active:hover .upload-wallpaper__wallpaperaction--add {
display: none
}
.onboarding .upload-wallpaper__wallpaper--active:hover .upload-wallpaper__wallpaperaction--remove {
display: block
}
.onboarding .upload-wallpaper__wallpaper--active .imageupload__image {
display: block
}
.onboarding .upload-wallpaper__wallpaper--large {
width: 100%;
height: 100%
}
.onboarding .upload-wallpaper__wallpaperaction {
display: none
}
.onboarding .upload-wallpaper__wallpaperaction--add {
display: block;
height: auto;
width: 100%;
text-align: center;
padding: 3.4375em 0.9375em
}
.onboarding .upload-wallpaper__wallpaperaction--add svg {
width: 1.5em;
height: 1.5em
}
.onboarding .upload-wallpaper__wallpaperaction--add span {
display: inline-block;
vertical-align: top;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #409FFF;
margin-top: 0.125em;
margin-left: 0.3125em
}
.fl-1 .onboarding .upload-wallpaper__wallpaperaction--add span {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding .upload-wallpaper__wallpaperaction--add p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.75em;
color: #919599;
line-height: 1.3125em
}
.fl-1 .onboarding .upload-wallpaper__wallpaperaction--add p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding .upload-wallpaper__wallpaperaction--remove {
height: 1.5em;
width: 1.5em;
top: calc(50% - 0.75em);
left: calc(50% - 0.75em)
}
.onboarding .upload-wallpaper__button {
display: block;
position: relative;
width: 7.0625em;
height: 7.8125em;
margin-top: 0.9375em
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding .upload-wallpaper__button {
margin: 0 auto 0.9375em
}
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding .upload-wallpaper__button {
margin: 0 auto 0.9375em
}
}
.onboarding .upload-wallpaper__button svg {
-webkit-transition: -webkit-transform 0.2s ease-out;
transition: -webkit-transform 0.2s ease-out;
transition: transform 0.2s ease-out;
transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
-webkit-transform: scale(1, 1);
transform: scale(1, 1)
}
.onboarding .upload-wallpaper__button:hover svg {
-webkit-transform: scale(1.05, 1.05);
transform: scale(1.05, 1.05)
}
.onboarding .upload-wallpaper__button:hover span {
color: #484A4D
}
.onboarding .upload-wallpaper__button span {
display: inline-block;
font-size: 0.875em;
color: #919599;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
text-align: center;
margin-top: 1.375em;
-webkit-transition: color 0.2s linear;
transition: color 0.2s linear
}
.fl-1 .onboarding .upload-wallpaper__button span {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding .upload-wallpaper__add-icon {
position: absolute;
top: 1.3125em;
left: 2.78125em;
height: 1.5em;
width: 1.5em
}
.onboarding .choose-wallpaper {
position: relative;
width: 18.4375em;
height: auto;
border: solid 0.0625em #E8EBED;
border-radius: 0.25em;
padding: 0.625em
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding .choose-wallpaper {
width: auto
}
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding .choose-wallpaper {
width: 16.5625em;
margin: 1.25em auto 0
}
}
.onboarding .choose-wallpaper__button {
display: block;
width: 7em;
height: 8.125em;
margin-top: 1.6875em;
position: relative
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding .choose-wallpaper__button {
margin-left: auto;
margin-right: auto
}
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding .choose-wallpaper__button {
margin-left: auto;
margin-right: auto
}
}
.onboarding .choose-wallpaper__button:hover svg,.onboarding .choose-wallpaper__button:hover div {
-webkit-transform: scale(1, 1);
transform: scale(1, 1)
}
.onboarding .choose-wallpaper__button:hover span {
color: #484A4D
}
.onboarding .choose-wallpaper__button svg,.onboarding .choose-wallpaper__button div {
-webkit-transition: -webkit-transform 0.2s ease-out;
transition: -webkit-transform 0.2s ease-out;
transition: transform 0.2s ease-out;
transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
-webkit-transform: scale(0.9, 0.9);
transform: scale(0.9, 0.9);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d
}
.onboarding .choose-wallpaper__button span {
display: inline-block;
font-size: 0.875em;
color: #919599;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
text-align: center;
margin-top: 1.375em;
-webkit-transition: color 0.2s linear;
transition: color 0.2s linear
}
.fl-1 .onboarding .choose-wallpaper__button span {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding .choose-wallpaper__button div {
position: absolute;
top: 0.625em;
left: 0.0625em;
width: 6.875em;
height: 3.875em;
background-image: url(https://cdn.wetransfer.net/assets/cards-stack-image-4dc62d912178cf5aa22d236e472604c85b62c85109ada346d925dccf7b40ba85.png);
background-size: cover;
background-repeat: no-repeat;
border-radius: 3px
}
.onboarding .choose-wallpaper a {
display: inline-block;
box-sizing: border-box;
vertical-align: top;
width: 5.0625em;
height: 3.25em;
margin: 0.3125em;
overflow: hidden;
text-align: center;
border: solid 0.125em #FFFFFF;
border-radius: 0.3125em;
background-size: cover
}
@media (min-width: 64em) and (max-width: 65.5625em) {
.onboarding .choose-wallpaper a {
width: 6.375em;
height: 4.0625em
}
}
@media (max-width: 48em) {
.onboarding .choose-wallpaper a {
width: 6.9375em;
height: 4.375em
}
}
.onboarding .choose-wallpaper a>div {
position: relative;
width: 100%;
height: 100%
}
.onboarding .choose-wallpaper a>div:after {
position: absolute;
content: '';
width: 1.375em;
height: 1.375em;
border-radius: 0.75em;
border: solid 0.125em #FFFFFF;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
top: 50%;
left: 50%
}
.onboarding .choose-wallpaper a svg {
position: absolute;
width: 0.75em;
height: 0.75em;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
top: 52%;
left: 50%
}
.onboarding .choose-wallpaper a.choose-wallpaper--is-selected>div {
background-color: rgba(64,159,255,0.7)
}
.onboarding__form-mode-is-default .upload-wallpaper,.onboarding__form-mode-is-default .choose-wallpaper__button,.onboarding__form-mode-is-upload-wallpaper .upload-wallpaper,.onboarding__form-mode-is-upload-wallpaper .choose-wallpaper__button {
display: block
}
.onboarding__form-mode-is-default .upload-wallpaper__button,.onboarding__form-mode-is-default .choose-wallpaper,.onboarding__form-mode-is-upload-wallpaper .upload-wallpaper__button,.onboarding__form-mode-is-upload-wallpaper .choose-wallpaper {
display: none
}
.onboarding__form-mode-is-choose-wallpaper .choose-wallpaper,.onboarding__form-mode-is-choose-wallpaper .upload-wallpaper__button {
display: block
}
.onboarding__form-mode-is-choose-wallpaper .upload-wallpaper,.onboarding__form-mode-is-choose-wallpaper .choose-wallpaper__button {
display: none
}
.panel__content.user-onboarding {
margin: 0
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.panel__content.user-onboarding h1 {
font-size: 1.75em;
line-height: 1.10714em
}
}
@-webkit-keyframes onboarding--browser-hide-n-show {
0% {
opacity: 0
}
70% {
opacity: 0
}
100% {
opacity: 1
}
}
@keyframes onboarding--browser-hide-n-show {
0% {
opacity: 0
}
70% {
opacity: 0
}
100% {
opacity: 1
}
}
.payment {
max-width: 23.75em
}
.payment__button.button {
margin-top: 0.35714em;
margin-right: 0.625em
}
.payment__button.button.button--inline {
height: 3.57143em
}
.payment__warning {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: red;
margin-bottom: 40px
}
.fl-1 .payment__warning {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.payment p .payment__notice {
color: #E65050
}
.payment p strong {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .payment p strong {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.complete-order__your-details {
width: 45%
}
.complete-order__order-details {
width: 55%
}
.complete-order__details,.complete-order p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
line-height: 1.6
}
.fl-1 .complete-order__details,.fl-1 .complete-order p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.complete-order p {
max-width: 27.14286em
}
.complete-order h2 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.14286em;
margin-bottom: 0.625em
}
.fl-1 .complete-order h2 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.complete-order h2 a {
display: inline-block;
margin-left: 0.41667em;
font-size: 0.75em;
text-decoration: none;
color: #919599
}
.complete-order__details.row .row {
margin: 0
}
.complete-order__details.row .row .col {
width: 70%
}
.complete-order__details.row .row .col ~ .col {
float: right;
width: 25%;
text-align: right
}
.complete-order__product {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .complete-order__product {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.complete-order__extra {
font-size: 0.85714em;
color: #919599
}
.complete-order__total-price {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.14286em
}
.fl-1 .complete-order__total-price {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.complete-order__complete-btn {
float: right
}
.complete-order hr {
height: 1.42857em;
border: 0;
border-top: 1px solid #D8D8D8
}
.contact {
position: relative
}
.contact__actions {
position: absolute;
top: 1em;
right: 0
}
.is-mobile-ready .contact__actions {
position: relative;
right: inherit;
top: inherit;
margin-top: 1.71429em
}
.contact__search.textfield {
display: inline-block;
vertical-align: top;
width: 18.75em;
margin: 0
}
.contact__search.textfield input {
padding-left: 2.75em
}
.is-mobile-ready .contact__search.textfield {
width: 100%
}
.contact a.contact__add-btn {
color: #409FFF;
text-decoration: underline;
cursor: pointer
}
.contact a.contact__add-btn:hover {
color: #0073e5
}
.contact__info {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
height: 1.71429em;
margin-top: 2.85714em;
color: #919599;
border-bottom: 1px solid #E8EBED
}
.fl-1 .contact__info {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .contact__info {
padding: 0.57143em 0 0;
margin-top: 1.57143em;
line-height: inherit
}
.contact__info ~ .contact__list {
margin-top: 0
}
.contact__list {
list-style: none;
padding: 0;
margin: 2.5em 0 1.875em
}
.contact__add-first {
cursor: pointer;
text-decoration: underline
}
.contact-item {
height: 3.75em;
border-bottom: 1px solid #E8EBED;
position: relative
}
.is-mobile-ready .contact-item {
height: inherit;
padding: 1em 0
}
.is-mobile-ready .contact-item__email,.is-mobile-ready .contact-item__meta {
position: static;
left: inherit;
display: block;
line-height: inherit
}
.is-mobile-ready .contact-item__email {
font-size: 1em;
margin-bottom: 0.25em
}
.is-mobile-ready .contact-item__meta {
font-size: 0.8125em;
max-height: 1.0625em;
line-height: 1.0625em
}
.contact-item--info {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
height: 1.71429em;
margin-top: 1.28571em;
color: #919599
}
.fl-1 .contact-item--info {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.contact-item__add {
height: 3.75em;
width: 2.0625em;
padding: 1.125em 0.5em 1.125em 0.0625em;
cursor: pointer;
pointer-events: all
}
.contact-item__add-tooltip.tooltip {
padding: 0.625em 0.875em;
margin-left: -0.3125em;
width: auto
}
.contact-item__email {
position: absolute;
line-height: 3.16667em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em;
left: 2em;
width: 16.66667em;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
pointer-events: none
}
.fl-1 .contact-item__email {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .contact-item__email {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.contact-item__email span {
color: #409FFF
}
.contact-item__meta {
position: absolute;
left: 25.75em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #919599;
width: 21.42857em;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
line-height: 4.35714em
}
.fl-1 .contact-item__meta {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.contact-item__meta span {
color: #409FFF
}
.contact-item__more {
width: 3.625em;
position: absolute;
right: 0;
top: 0.1875em;
padding: 1.25em;
cursor: pointer;
pointer-events: all;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.contact-item__more:hover path:first-of-type,.contact-item__more:focus path:first-of-type {
fill: #409FFF
}
.contact-item__checkbox.checkboxinput {
position: absolute;
left: 1.25em
}
.contact-item--active,.contact-item--selected {
background-color: #F7F9FA
}
.contact-item--no-add .contact-item__add {
display: none
}
.contact-item--no-add .contact-item__email {
left: 0;
width: 19.16667em
}
.contact-item--selecting {
cursor: pointer
}
.contact-item--selecting .contact-item__add {
display: none
}
.contact-item--selecting .contact-item__email {
left: 3.61111em;
width: 15.55556em
}
.contact-item--selecting .contact-item__more {
display: none
}
.dropzone {
background: rgba(64,159,255,0.8);
position: absolute;
overflow: hidden;
z-index: 50;
opacity: 0;
height: 0;
width: 100%;
left: 0;
top: 0;
-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;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
color: #FFFFFF
}
.dropzone__title {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 2.5em;
margin: 0 0 0.25em
}
.fl-1 .dropzone__title {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .dropzone__title {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.dropzone__text {
line-height: 1.3;
text-align: center;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
white-space: pre-wrap;
font-size: 0.875em
}
.fl-1 .dropzone__text {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.emptystate {
margin-top: 5em;
text-align: center
}
.emptystate__text {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
white-space: pre-wrap;
margin-top: 0.45455em;
font-size: 1.375em;
margin-bottom: 0.36364em
}
.fl-1 .emptystate__text {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .emptystate__text {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.emptystate__description {
padding: 0 1.42857em;
max-width: 22.14286em;
font-size: 0.875em;
line-height: 1.42857em;
color: #484A4D;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
margin: 0 auto
}
.fl-1 .emptystate__description {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .emptystate__description {
padding: 0
}
.is-mobile-ready .emptystate {
margin-top: 2.5em
}
.is-mobile-ready .emptystate__text {
font-size: 1.125em;
margin-top: 0.55556em;
margin-bottom: 0.55556em
}
.errorbar {
width: 100%;
height: 3.125em;
background: #E65050;
border-radius: 0.3125em 0.3125em 0 0;
position: absolute;
bottom: 0;
left: 0;
z-index: 10
}
.errorbar__text {
color: white;
position: absolute;
top: 1.25em;
left: 1.5em
}
.errorbar__close {
position: absolute;
height: 1.5em;
width: 1.5em;
top: 0.9375em;
right: 1.5em;
cursor: pointer
}
.filelist {
list-style: none;
padding: 0;
margin: 0
}
.filelist--pending {
opacity: .35
}
.filelist__item {
position: relative;
padding: 0.5em 0.625em;
margin: 0 10px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
border-bottom: 1px solid #E8EBED
}
.is-mobile-ready .filelist__item {
padding: 1.3125em 0 1.1875em;
margin: 0
}
.filelist__name {
display: block;
padding: 0;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1.36364em;
font-size: 0.875em;
color: #17181A;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden
}
.fl-1 .filelist__name {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.filelist__size {
display: block;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.6875em;
line-height: 1.36364em;
color: #919599
}
.fl-1 .filelist__size {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.filelist__spinner,.filelist__action {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, #F7F9FA 35%, #F7F9FA 100%);
background: linear-gradient(to right, rgba(255,255,255,0) 0%, #F7F9FA 35%, #F7F9FA 100%);
position: absolute;
width: 3.125em;
bottom: 0.3125em;
right: 0.35714em;
top: 0.3125em
}
.filelist__spinner>svg,.filelist__spinner .spinner,.filelist__action>svg,.filelist__action .spinner {
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
position: absolute;
right: 0;
top: 50%
}
.filelist__spinner {
right: 0.35714em
}
.filelist__spinner .spinner__circle {
float: left;
clear: both
}
.filelist__action {
cursor: pointer;
opacity: 0;
visibility: hidden;
-webkit-transition: opacity 0.2s;
transition: opacity 0.2s
}
.filelist__action svg {
position: absolute;
height: 1.5em;
width: 1.5em;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.filelist__action svg path {
fill: #409FFF
}
.filelist__action svg:hover path {
fill: #0073e5
}
.filelist__item:hover .filelist__action,.has-touch .filelist__action {
opacity: 1;
visibility: visible
}
.is-mobile-ready .filelist__item .filelist__action,.filelist__action--downloaded {
display: block;
opacity: 1;
visibility: visible
}
.is-mobile-ready .downloader__heading--1-files+.filelist .filelist__item .filelist__action {
display: none
}
.footer {
width: 100%;
height: 3.75em;
padding: 1.25em 1em;
background-color: #F4F4F4;
box-shadow: 0 0.125em 0.25em 0 rgba(0,0,0,0.5)
}
.footer .logo {
position: static;
top: 0;
left: 0;
vertical-align: middle
}
.footer .languagepicker__arrow {
width: 0.75em;
height: 0.75em;
position: relative;
top: 0.1875em;
vertical-align: top
}
.footer .languagepicker__current {
display: inline-block;
vertical-align: top;
margin-left: 1.23077em;
margin-top: 0.23077em;
font-size: 0.8125em;
text-decoration: none;
color: #919599;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .footer .languagepicker__current {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.footer .footer__social-links {
float: right
}
.footer .footer__social-links svg {
vertical-align: middle;
margin-top: 0.125em;
margin-left: 1.25em
}
.account__content {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
width: 65%
}
.fl-1 .account__content {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.account__content form {
width: 100%
}
.account__content p {
font-size: 0.875em;
line-height: 1.5em
}
.account__content h5 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #17181A
}
.fl-1 .account__content h5 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .account__content {
width: 100%;
position: relative;
padding: 0
}
.is-mobile-ready .account__content form {
width: inherit
}
.is-mobile-ready .account__content hr {
display: block;
margin: 20px 0;
border: 0;
height: 1px;
width: 100%;
background: #F4F4F4
}
.is-mobile-ready .account__content .accountInformation form button[type="submit"],.is-mobile-ready .account__content .changepassword .button,.is-mobile-ready .account__content .payment>.button,.is-mobile-ready .account__content .payment>a .button {
float: none;
width: 100%
}
.account__content .panel__loading {
left: 5em;
-webkit-transform: translateX(0%);
transform: translateX(0%);
width: 21.875em
}
.account__menu {
width: 35%
}
.account__menu .verticalnav__list {
float: none
}
.account__menu .verticalnav__item {
width: 100%;
max-width: 13.3125em
}
.account__signout {
display: block;
text-align: center;
border-radius: 0.35714em;
border: 0.07143em solid #409FFF;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
width: 100%;
max-width: 15.21429em;
color: #409FFF;
padding: 0.71429em 1.42857em;
cursor: pointer
}
.fl-1 .account__signout {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .account__signout {
width: auto;
position: absolute;
right: 0;
top: -0.5em
}
.account__signout:hover {
border-color: #0073e5;
color: #0073e5
}
.account__back-button {
color: #409FFF !important;
text-decoration: none;
margin-left: 1.42857em;
font-size: 0.875em
}
.account__mobile-header {
position: relative;
padding-bottom: 1.875em;
border-bottom: 1px solid #F4F4F4
}
.account__content.col {
padding-right: 3.625em
}
.claimdomain .form-notification {
margin-bottom: -0.9375em
}
.is-mobile-ready .claimdomain .form-notification {
margin-top: 0.9375em
}
.claimdomain button.button.button--disabled {
opacity: 0.4;
color: #17181A;
cursor: default
}
.claimdomain__fields {
margin: 0 auto;
width: 28.125em;
margin-top: 1.25em
}
.is-mobile-ready .claimdomain__fields {
width: 100%
}
.claimdomain__textfield {
display: inline-block;
border-color: transparent;
width: 20.625em
}
.claimdomain__textfield input {
padding-right: 36.5%;
text-overflow: clip
}
.is-mobile-ready .claimdomain__textfield {
width: inherit;
border: 0;
margin: 0.625em 0
}
.is-mobile-ready .claimdomain__textfield input {
padding-right: 43%
}
.claimdomain__overlay {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
top: 0;
line-height: 3.5em;
left: 64%;
position: absolute;
color: #000000
}
.fl-1 .claimdomain__overlay {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .claimdomain__overlay {
line-height: 3.57143em;
right: 2.375em;
left: 58%
}
.claimdomain__claim-now.button {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: inline-block;
border: 1px solid white !important;
width: 7.85714em;
position: absolute;
margin-left: 0.71429em;
margin-top: 0.71429em
}
.fl-1 .claimdomain__claim-now.button {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .claimdomain__claim-now.button {
position: static;
width: 100%;
margin: 0 auto
}
.contact-add {
margin-top: 1.25em
}
.contact-add__title {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #919599;
font-size: 0.875em;
margin-bottom: 0.25em
}
.fl-1 .contact-add__title {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.contact-add__form {
height: 3.75em;
width: 100%;
box-shadow: 0 -1px 0 0 #E8EBED, 0 1px 0 0 #E8EBED;
position: relative
}
.contact-add__form button.hide {
position: absolute;
left: -9999px;
width: 1px;
height: 1px
}
.contact-add__form button {
margin: 0
}
.contact-add__form button:first-of-type {
margin-right: 0.625em
}
.contact-add__form button.cancel {
background: #FFFFFF;
color: #409FFF
}
.contact-add__form--invalid {
height: 6.5em
}
.contact-add__form--edit {
box-shadow: 0 0, 0 1px 0 0 #E8EBED
}
.contact-add__form .form-notification {
position: absolute;
top: 3.3125em
}
.is-mobile-ready .contact-add__form {
height: inherit;
padding: 0.75em 0
}
.contact-add__field.textfield {
margin-top: 0.75em;
width: calc(((100% - 54px) / 3) - 10px);
clear: none;
float: left;
height: 2.25em;
border-radius: 3px;
margin-right: 0.625em
}
.contact-add__field.textfield .textfield__valid,.contact-add__field.textfield .textfield__info,.contact-add__field.textfield .textfield__busy {
top: 0.5625em
}
.contact-add__field.textfield input {
border-radius: 3px;
padding-right: 1.78571em;
padding-left: 0.71429em
}
.is-mobile-ready .contact-add__field.textfield {
float: none;
display: block;
width: 100%;
margin: 0 0 0.625em
}
.is-mobile-ready .contact-add__field.textfield input {
padding-left: 0.75em
}
.contact-add__field .textfield__valid,.contact-add__field .textfield__info,.contact-add__field .textfield__busy {
top: 0.625em
}
.contact-add__add-btn,.contact-add__cancel-btn {
height: 1.5em;
width: 1.5em;
position: absolute;
top: 1.0625em;
cursor: pointer
}
.contact-add__add-btn:focus,.contact-add__add-btn:hover,.contact-add__cancel-btn:focus,.contact-add__cancel-btn:hover {
outline: none
}
.contact-add__add-btn:focus path,.contact-add__add-btn:hover path,.contact-add__cancel-btn:focus path,.contact-add__cancel-btn:hover path {
fill: #409FFF
}
.contact-add__add-btn {
right: 1.6875em
}
.contact-add__cancel-btn {
right: 0em
}
.autocomplete {
padding: 0;
margin: 0;
list-style: none;
position: relative
}
.autocomplete__list {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
height: 100%;
position: absolute;
top: 53px;
z-index: 20;
border-radius: 5px;
border: 1px solid #BABCBF;
background-color: #FFFFFF;
width: 100%;
overflow: hidden
}
.fl-1 .autocomplete__list {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.autocomplete__list--hidden {
display: none
}
.autocomplete__item {
height: 2.56875em;
line-height: 2.56875em;
font-size: 0.875em;
border-bottom: 1px solid #BABCBF;
padding-left: 20px;
cursor: pointer
}
.autocomplete__item span {
color: #409FFF
}
.autocomplete__item:last-child {
border-bottom: 0
}
.autocomplete__item--selected,.autocomplete__item:hover {
background-color: #409FFF;
color: #FFFFFF
}
.autocomplete__item--selected span,.autocomplete__item:hover span {
color: #FFFFFF
}
.button {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
background: #D4D7D9;
color: #FFFFFF;
text-decoration: none;
border-radius: 5px;
padding: 0 1.25em;
font-size: 0.875em;
margin-top: 1.28571em;
border: 0;
height: 3.57143em;
-webkit-transition: border-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),background-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),color 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: border-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),background-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),color 0.2s cubic-bezier(0.77, 0, 0.175, 1)
}
.fl-1 .button {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__content .button {
color: #FFFFFF
}
.panel__content .button--inline {
color: #409FFF
}
.button--right {
float: right
}
.button--enabled {
color: #FFFFFF;
background: #409FFF;
cursor: pointer
}
.button--enabled:hover,.button--enabled:focus {
background-color: #0073e5
}
.button--disabled {
cursor: default
}
.button--actionbar-cancel {
margin-left: 0.625em;
border: 1px solid #FFFFFF
}
.button--actionbar-cancel:hover {
border-color: rgba(255,255,255,0.8);
background: transparent;
color: rgba(255,255,255,0.8)
}
.button--actionbar-action {
background: #FFFFFF;
color: #17181A
}
.button--actionbar-action.button--disabled {
opacity: 0.4
}
.button--actionbar-action:hover {
background: rgba(255,255,255,0.8)
}
.button:focus {
outline: 0
}
.button--inline {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
cursor: pointer;
font-size: 0.875em;
height: 2.5em;
padding: 0 1.14286em;
margin-right: 0.71429em;
background-color: #FFFFFF;
border: 1px solid #409FFF;
color: #409FFF
}
.fl-1 .button--inline {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.button--inline.button--disabled {
border: 1px solid #BABCBF;
color: #BABCBF;
cursor: default;
pointer-events: none
}
.button--inline:hover,.button--inline:focus {
border-color: #0073e5;
color: #0073e5;
background-color: #FFFFFF
}
button[type="button"].button--actionbar-action {
background: #FFFFFF;
color: #17181A
}
button[type="button"].button--actionbar-action.button--disabled {
opacity: 0.4
}
button[type="button"].button--actionbar-action:hover {
background: rgba(255,255,255,0.8)
}
button[type="button"].button--actionbar-action:focus {
outline: 0
}
.panel__content a.button {
display: inline-block;
color: #409FFF;
line-height: 3.57143em
}
.panel__content a.button.button--enabled {
color: #FFFFFF
}
.calendar {
width: 15.25em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
padding: 0 1em
}
.calendar__grid {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
width: 100%
}
.calendar__header {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
height: 2em;
color: #17181A;
text-align: center;
line-height: 1.875em;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
font-size: 0.875em;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between
}
.fl-1 .calendar__header {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.calendar__nav {
height: 2.07143em;
cursor: pointer;
padding: 0.71429em 0.85714em
}
.calendar__nav--next {
-webkit-transform: rotate(180deg);
transform: rotate(180deg)
}
.calendar__nav--next:hover,.calendar__nav--prev:hover {
fill: #484A4D
}
.calendar__item {
text-align: center;
height: 1.85714em;
width: 1.85714em;
cursor: pointer;
font-size: 0.875em;
line-height: 2;
margin: 0 0.125em;
border-radius: 0.3125em
}
.calendar__item--weekday {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #BABCBF;
font-size: 0.75em;
width: 2.20833em;
cursor: default;
pointer-events: none
}
.fl-1 .calendar__item--weekday {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.calendar__item:hover {
background: #F4F4F4
}
.calendar__item--match {
background-color: #409FFF;
color: #FFFFFF
}
.calendar__item--match:hover {
background-color: #0073e5
}
.calendar__item--disabled {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #BABCBF;
cursor: default;
pointer-events: none
}
.fl-1 .calendar__item--disabled {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.calendar__item--today {
color: #409FFF
}
.checkboxinput {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #484A4D;
margin-top: 1.53846em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
height: 1.84615em;
position: relative
}
.fl-1 .checkboxinput {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.checkboxinput__checkbox {
display: inline-block;
position: relative;
vertical-align: middle;
height: 100%;
width: 1.84615em;
background: #FFFFFF;
border-radius: 20%;
border: 0.07692em solid #BABCBF;
padding: 0.23077em;
margin-right: 0.625em
}
.checkboxinput__checkbox:hover {
border-color: #919599
}
.checkboxinput__checkbox--checked {
border-color: #409FFF;
background: #409FFF
}
.checkboxinput__checkbox--checked:hover {
border-color: #0073e5;
background: #0073e5
}
.checkboxinput__checkbox svg {
height: 80%;
position: absolute
}
.checkboxinput__field {
width: 0.0625em;
height: 0.0625em;
position: absolute;
top: 50%;
z-index: -1;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none
}
.checkboxinput__field:focus {
outline: none
}
.checkboxinput__field:focus ~ .checkboxinput__checkbox {
box-shadow: 0 0 0.15385em 0.15385em #409FFF
}
.is-mobile .checkboxinput__field {
width: inherit
}
.checkboxinput__label {
display: inline-block;
vertical-align: middle
}
.form-notification {
width: 100%;
min-height: 2.125em;
color: #FFFFFF;
border-radius: 5px;
margin-top: 0.25em
}
.form-notification__message {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
display: block;
height: 100%;
left: 1.53846em;
padding: 0.92308em 0.76923em;
overflow: hidden;
text-overflow: ellipsis
}
.fl-1 .form-notification__message {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.form-notification__icon {
height: 0.8125em;
width: 0.8125em;
float: left;
margin: 0.9375em 0 0 1.125em
}
.form-notification__icon svg {
width: 0.75em;
height: 1.875em
}
.form-notification--error {
background-color: #E65050
}
.form-notification--validated {
position: relative;
background-color: #409FFF
}
.form-notification--validated::before {
position: absolute;
left: 1.125em;
top: 0.875em;
content: '';
display: inline-block;
width: 0.8125em;
height: 0.8125em;
border-radius: 0.5em;
background-color: #FFFFFF;
z-index: 0
}
.form-notification--validated .form-notification__message {
left: 1.25em;
margin-left: 1.875em;
padding: 0.9375em 1.25em
}
.form-notification--validated .form-notification__icon {
position: absolute;
z-index: 1;
height: 0.625em;
width: 0.625em;
float: left;
margin: 1em 0 0 1.25em;
color: #409FFF
}
.imageupload {
position: relative
}
.imageupload--fullclick {
cursor: pointer
}
.imageupload__input {
position: absolute;
opacity: 0;
height: 1px;
width: 1px;
left: 0;
bottom: 0
}
.imageupload__add-element,.imageupload__remove-element {
position: absolute;
cursor: pointer
}
.imageupload__pending {
position: absolute;
top: calc(50% - 12px);
left: calc(50% - 12px);
height: 1.5em;
width: 1.5em
}
.imageupload__image {
background-size: cover;
background-position: center
}
.planselector {
border-radius: 5px;
width: 15.3125em;
background: #E8EBED;
float: left;
margin: 0 0 1.875em;
position: relative;
cursor: pointer;
color: #484A4D;
text-align: center
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.planselector {
width: 100%;
margin-bottom: 1.25em
}
}
.planselector ~ .planselector {
margin-left: 1.125em
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.planselector ~ .planselector {
margin-left: 0
}
}
.planselector--checked {
background: #409FFF;
color: #FFFFFF
}
.planselector--checked .planselector__sublabel {
opacity: 0.8
}
.planselector--disabled {
opacity: 0.2;
pointer-events: none;
cursor: default
}
.planselector__price {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: block;
margin-top: 0.8em;
font-size: 3.75em;
width: 100%
}
.fl-1 .planselector__price {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .planselector__price {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.planselector__price {
font-size: 2.5em
}
}
.planselector__label {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em;
display: block
}
.fl-1 .planselector__label {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .planselector__label {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.planselector__copy {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: block;
white-space: pre-wrap;
font-size: 0.8125em;
line-height: 1.30769em;
width: 100%;
padding: 1.84615em 1.53846em 2.30769em
}
.fl-1 .planselector__copy {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.planselector__copy {
padding: 1.07692em 0.38462em 1.53846em
}
}
.planselector__subcopy {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .planselector__subcopy {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.planselector__radio {
background: #FFFFFF;
height: 2em;
width: 2em;
position: absolute;
top: 1.125em;
left: 1.125em;
border-radius: 1em;
padding: 0.4375em 0.3125em
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.planselector__radio {
width: 1.5625em;
height: 1.5625em;
top: 0.625em;
left: 0.625em
}
}
.planselector__field {
position: absolute;
z-index: 1;
top: -3px;
left: -3px;
height: 100%;
width: 100%;
border-radius: 12px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
cursor: pointer;
opacity: 0
}
.planselector__field:focus {
outline: none
}
.radioinput__field {
position: absolute;
visibility: hidden
}
.radioinput__field:checked ~ .radioinput__label {
color: #409FFF
}
.radioinput__field:checked ~ .radioinput__check:before {
background-color: #409FFF
}
.radioinput__label {
cursor: pointer;
font-size: 0.875em;
display: block;
height: 1.42857em;
padding-left: 1.66667em
}
.radioinput__check {
cursor: pointer;
position: absolute;
background-color: #FFFFFF;
border: 1px solid #BABCBF;
border-radius: 100%;
height: 1.125em;
width: 1.125em
}
.radioinput__check:before {
position: absolute;
content: '';
border-radius: 100%;
height: 0.5em;
width: 0.5em;
top: 0.25em;
left: 0.25em;
margin: auto
}
.searchbox input {
padding-left: 2.625em
}
.searchbox__icon {
position: absolute;
height: 0.875em;
width: 0.875em;
top: 1.125em;
left: 1em
}
.searchbox__remove {
position: absolute;
right: 0.625em;
top: 1em;
height: 1.125em;
cursor: pointer;
z-index: 2
}
.textfield {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
background: #FFFFFF;
color: #919599;
border: 1px solid #BABCBF;
border-radius: 5px;
height: 50px;
margin-top: 0.625em;
position: relative;
clear: both
}
.fl-1 .textfield {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.textfield--invalid {
border: 1px solid #E65050
}
.textfield--readonly {
background-color: #F7F9FA
}
.textfield--readonly input {
color: #919599;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.textfield--nolabel .textfield__field {
padding-top: 0
}
.textfield__valid,.textfield__info,.textfield__busy {
position: absolute;
right: 0.9375em;
top: 1em;
height: 0.8125em
}
.textfield__valid svg,.textfield__info svg,.textfield__busy svg {
height: 0.8125em;
width: 0.8125em
}
.is-mobile-ready .textfield__valid,.is-mobile-ready .textfield__info,.is-mobile-ready .textfield__busy {
height: 2.6875em;
top: 0.25em;
right: 0
}
.is-mobile-ready .textfield__valid svg,.is-mobile-ready .textfield__info svg,.is-mobile-ready .textfield__busy svg {
height: 2.6875em;
width: 2.6875em;
padding: 0.9375em
}
.textfield__label {
font-size: 0.875em;
position: absolute;
top: 1.07143em;
left: 1.42857em;
z-index: 1;
color: #919599;
-webkit-transition: 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: 0.2s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.textfield__label--focused {
font-size: 0.6875em;
top: 0.63636em;
left: 1.81818em;
z-index: 3
}
.textfield--actionbar-input,.textfield--actionbar-input-invalid {
width: 10em;
float: left;
margin-top: initial;
margin-right: 20px;
border: 1px solid #FFFFFF
}
.is-mobile-ready .textfield--actionbar-input,.is-mobile-ready .textfield--actionbar-input-invalid {
width: 100%;
margin-right: 0;
margin-bottom: 10px
}
.textfield--actionbar-input .textfield__field,.textfield--actionbar-input-invalid .textfield__field {
padding-top: 8px
}
.textfield--actionbar-input .textfield__field:invalid,.textfield--actionbar-input .textfield__field:-moz-ui-invalid,.textfield--actionbar-input-invalid .textfield__field:invalid,.textfield--actionbar-input-invalid .textfield__field:-moz-ui-invalid {
box-shadow: none
}
.textfield--actionbar-input .textfield__field:focus,.textfield--actionbar-input-invalid .textfield__field:focus {
box-shadow: none !important
}
.textfield--actionbar-input-invalid {
border: 1px solid #E65050
}
.textfield__info {
position: absolute;
opacity: 1;
z-index: 3;
cursor: pointer
}
.textfield__field {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
position: absolute;
left: 0;
padding-left: 20px;
width: 100%;
height: 100%;
padding-right: 8%;
text-overflow: ellipsis;
border: 0;
background-color: transparent;
z-index: 2;
padding-top: 18px;
border-radius: 5px;
background-position: 150% 50% !important
}
.fl-1 .textfield__field {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.textfield__field::-ms-clear,.textfield__field::-ms-reveal {
display: none
}
.textfield__field:not([readonly]):focus {
outline: none;
box-shadow: 0 0 0 1px #409FFF
}
.signup-form {
width: 31.75em;
margin: 0 auto;
padding-top: 4.375em
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.signup-form {
width: 100%;
padding-top: 2.5em
}
}
.signup-form h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
text-align: center;
font-size: 1.625em;
margin-bottom: 1.92308em;
margin-top: 0
}
.fl-1 .signup-form h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .signup-form h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.signup-form h2 {
margin-bottom: 1.34615em
}
}
.signup-form__legend {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
margin-top: 3.125em
}
.fl-1 .signup-form__legend {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.signup-form .button {
width: 100%
}
}
.col {
padding: 0 1em
}
.col:last-of-type {
padding-right: 0
}
.col:first-of-type {
padding-left: 0
}
.row .row {
margin: 0 -1em
}
.row:before,.row:after {
content: "";
display: table
}
.row:after {
clear: both
}
@media only screen {
.col {
float: left;
box-sizing: border-box
}
}
.arrow-icon--top {
-webkit-transform: rotate(90deg);
transform: rotate(90deg)
}
.arrow-icon--right {
-webkit-transform: rotate(180deg);
transform: rotate(180deg)
}
.arrow-icon--bottom {
-webkit-transform: rotate(270deg);
transform: rotate(270deg)
}
.browser text {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .browser text {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .browser text {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.illustration {
display: inline-block;
height: 10.625rem;
width: 10.625rem;
background-position: 50% 50%;
background-repeat: no-repeat;
background-color: none;
background-image: url(https://cdn.wetransfer.net/assets/transfer-window-placeholder-a0a5f14905a4f98d313ef44a471e17c86265fe04b6b69a3fec4eda27a37049af.png);
background-size: 100%;
opacity: 1;
-webkit-transition: opacity .1s ease-out;
transition: opacity .1s ease-out
}
.illustration--loading {
opacity: 0
}
.illustration__empty-transfers {
background-image: url(https://cdn.wetransfer.net/assets/empty/empty-transfers-79302a7061ae06f4ad400c896cb53f6d96abacc352c63144909b967cbc90670d.jpg)
}
.illustration__empty-contacts {
background-image: url(https://cdn.wetransfer.net/assets/empty/empty-contacts-8f318fc1fc58ee3bcb94b74364d6d5c748f38e6401577512a2d9649f498fd27d.jpg)
}
.illustration__forgot-password {
background-image: url(https://cdn.wetransfer.net/assets/forgot-password-011fc0f53d592ef20e0552d24ac336ede2b8da15b787f57145350a904260283b.jpg)
}
.illustration__transfer-tandc-random-1 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/terms_and_conditions-1-9d1a4873de583381d12d743df6fe43868023bb42af3e7eed9bc252a063e28bbf.jpg)
}
.illustration__transfer-tandc-random-2 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/terms_and_conditions-2-def05288f9a4943540d1a6aa0bd25b723913b28dd4f71de16110a2a78a957922.jpg)
}
.illustration__transfer-tandc-random-3 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/terms_and_conditions-3-710f3af772e1295f39642d008aac0a4554ec918f010b66cdee4b30bedf024413.jpg)
}
.illustration__transfer-complete-upload-random-1 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_completed-1-847b3212dc040e0c77af8c002bdb16bdb57f7aceac087efc7b26c587807f6fa3.jpg)
}
.illustration__transfer-complete-upload-random-2 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_completed-2-4725a08e655f64e6a652fb2d42b64083bd459ab9590502493d0394e5e2af5d1c.jpg)
}
.illustration__transfer-complete-upload-random-3 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_completed-3-29985f76ed439ab816c5d1bca8ab8a1f4694d559b1ce8dbf64b61b76bc1b0728.jpg)
}
.illustration__transfer-complete-upload-random-4 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_completed-4-6fa38391e5dac204dd4f5ee235eb030a52592921ffacf55b4c02479e1fddf122.jpg)
}
.illustration__transfer-expired-random-1 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_expired-1-da3d07ca5ff8bba5e7846021e09e74c8dddb5e42b2835a5f59dc0d050ea87b62.jpg)
}
.illustration__transfer-expired-random-2 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_expired-2-e142609483c916ab50489ceb2232f63e891042cb3cde5580dba7755cfd436ba9.jpg)
}
.illustration__transfer-password-random-1 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_password-1-<PASSWORD>.jpg)
}
.illustration__transfer-password-random-2 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_password-2-b28ba04e8281ad1ce32def8d7183f55b569c9d46b007ce6d0c0415244006bd72.jpg)
}
.illustration__transfer-upsell_one {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/upsell-facebook-a7d509a18dcd1af3e0bacf45a94ee61d6fb80dd3c6ee2830935ff0080478c707.jpg)
}
.illustration__transfer-upsell_two,.illustration__transfer-upsell_three,.illustration__transfer-upsell_four,.illustration__transfer-upsell_five {
background-image: url(https://cdn.wetransfer.net/assets/about/about-plus-f885691ff27c7c01bbc1bff850502ead2f1f55635cbf1d6c2ce9b8f38d945957.png)
}
.illustration__transfer-aborted {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_error-5cb9b360b9f6c8dbcc744c9cb436e3ff3d66aeda055c6a588f71b6ee61588e27.jpg)
}
.is-mobile-ready .illustration {
height: 8.125rem;
width: 8.125rem
}
.actionbar {
height: 4.375em;
background: #409FFF;
border-radius: 5px;
color: #FFFFFF;
position: fixed;
z-index: 40;
box-shadow: 0 3px 20px 0 rgba(0,0,0,0.14);
padding: 0.625em 0;
bottom: 0;
-webkit-transform: translate3d(0, -30%, 0);
transform: translate3d(0, -30%, 0);
-webkit-transition: -webkit-transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: -webkit-transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.2s cubic-bezier(0.77, 0, 0.175, 1),-webkit-transform 0.2s cubic-bezier(0.77, 0, 0.175, 1)
}
.actionbar--hidden {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
.actionbar__text {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
width: 60%;
font-size: 0.875em;
margin-left: 1.42857em;
margin-top: 1.78571em;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
line-height: 1.2
}
.fl-1 .actionbar__text {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .actionbar__text {
vertical-align: top;
margin: 0;
padding: 0 5%;
margin-bottom: 1.78571em
}
.actionbar__elements {
position: relative;
z-index: 1;
float: right;
margin: 0 0.625em
}
.is-mobile-ready .actionbar__elements {
display: inline-block;
margin: 0;
float: none;
width: 100%
}
.actionbar__select-arrow {
height: 0.5em;
width: 0.5em;
margin-left: 0.5em;
margin-right: 0.5em;
margin-bottom: 0.125em;
cursor: pointer
}
.actionbar button {
margin-top: 0
}
.actionbar button.actionbar__cancel-button {
background: #FFFFFF
}
.actionbar svg.actionbar__action-button,.actionbar svg.actionbar__cancel-button {
width: 1.5em;
height: 1.5em;
margin-top: 0.8125em;
cursor: pointer
}
.actionbar svg.actionbar__cancel-button {
margin-left: 0.375em
}
.is-mobile-ready .actionbar {
height: inherit;
width: 100% !important;
left: 0 !important;
right: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
text-align: center;
border-radius: 0;
padding: 1.25em 1.25em 0.625em;
box-shadow: 0 0 20px 0 rgba(0,0,0,0.2)
}
.is-mobile-ready .actionbar--hidden {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
.is-mobile-ready .actionbar__text,.is-mobile-ready .actionbar__elements {
-webkit-transform: inherit;
transform: inherit
}
.is-mobile-ready .actionbar__text {
width: 100%
}
.is-mobile-ready .actionbar button {
display: block;
width: 100%;
margin-left: 0;
margin-bottom: 0.625em
}
.notification {
width: 100%;
background-color: #409FFF;
border-radius: 0.3125em;
padding: 1.875em 0;
position: relative;
margin: -1.25em 0 1.25em;
z-index: 1
}
.notification__close {
cursor: pointer;
height: 1.5em;
width: 1.5em;
position: absolute;
top: 0.625em;
right: 0.625em
}
.notification p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.25em;
line-height: 1.4em;
color: #FFFFFF;
text-align: center;
margin: 0 2em
}
.fl-1 .notification p {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .notification p {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.notification p strong {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: block
}
.fl-1 .notification p strong {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .notification p strong {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.notification p a {
color: #FFFFFF
}
.is-mobile-ready .notification {
padding: 1.875em
}
.is-mobile-ready .notification p {
margin: 0;
font-size: 1.125em
}
.notificationbar {
border-radius: 5px;
position: fixed;
-webkit-transform: translate3d(0, -30%, 0);
transform: translate3d(0, -30%, 0);
z-index: 40;
-webkit-transition: -webkit-transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: -webkit-transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.2s cubic-bezier(0.77, 0, 0.175, 1),-webkit-transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
bottom: 0
}
.notificationbar--hidden {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
.is-mobile-ready .notificationbar {
height: inherit;
width: 100% !important;
left: 0 !important;
right: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
text-align: left;
padding: 1.25em 0;
border-radius: 0
}
.is-mobile-ready .notificationbar--hidden {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
.notificationbar--default {
background: #17181A
}
.notificationbar--error {
background: #E65050
}
.notificationbar__text {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #FFFFFF;
padding: 1em 4.28571em 0.85714em 1.42857em;
line-height: 1.3;
text-align: center
}
.fl-1 .notificationbar__text {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.notificationbar__text a {
color: #FFFFFF;
font-weight: 600
}
.is-mobile-ready .notificationbar__text {
position: static;
padding: 0 2.85714em 0 1.42857em
}
.accountwarning {
background-color: #E65050;
width: 100%;
min-height: 6.25em;
border-radius: 0 0 0.3125em 0.3125em;
color: #FFFFFF;
padding: 1.5625em 1.25em;
position: relative;
line-height: 1.5;
margin-bottom: 1.25em;
margin-top: -3.75em
}
.accountwarning h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
margin: 0
}
.fl-1 .accountwarning h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .accountwarning h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.accountwarning p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
margin: 0
}
.fl-1 .accountwarning p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.accountwarning__action {
position: absolute;
color: #17181A;
height: 3.57143em;
border: 0;
bottom: 1.5625em;
right: 1.25em
}
.logo {
-webkit-transition: opacity .4s ease;
transition: opacity .4s ease;
position: absolute;
z-index: 40;
left: 18px;
top: 8px
}
.logo--html5-fullscreen.logo {
opacity: 0;
-webkit-animation: none;
animation: none
}
.spinner.logo .spinner__logo {
-webkit-transition: -webkit-transform .2s ease;
transition: -webkit-transform .2s ease;
transition: transform .2s ease;
transition: transform .2s ease, -webkit-transform .2s ease;
position: absolute;
left: -0.25em;
top: 0.5em;
cursor: pointer
}
.spinner.logo .spinner__circle {
-webkit-transition: opacity .2s ease;
transition: opacity .2s ease;
opacity: 0
}
.spinner.logo .spinner__finished,.spinner.logo .spinner__aborted {
position: absolute;
-webkit-transition: -webkit-transform .2s ease;
transition: -webkit-transform .2s ease;
transition: transform .2s ease;
transition: transform .2s ease, -webkit-transform .2s ease
}
.spinner.logo .spinner__finished {
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transition: -webkit-transform .2s ease;
transition: -webkit-transform .2s ease;
transition: transform .2s ease;
transition: transform .2s ease, -webkit-transform .2s ease;
left: 0.6875em;
top: 0.8125em;
height: 1.4375em
}
.spinner.logo .spinner__aborted {
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transition: -webkit-transform .2s ease;
transition: -webkit-transform .2s ease;
transition: transform .2s ease;
transition: transform .2s ease, -webkit-transform .2s ease;
height: 2.625em;
top: 0.0625em;
left: 0.0625em
}
.spinner.logo--transferring .spinner__logo {
-webkit-transform: scale(0.6);
transform: scale(0.6);
opacity: 1
}
.spinner.logo--transferring .spinner__circle {
opacity: 1
}
.spinner.logo--finished .spinner__logo,.spinner.logo--aborted .spinner__logo {
-webkit-transform: scale(0);
transform: scale(0)
}
.spinner.logo--finished .spinner__circle,.spinner.logo--aborted .spinner__circle {
opacity: 1
}
.spinner.logo--finished .spinner__finished {
-webkit-transform: scale(1);
transform: scale(1)
}
.spinner.logo--aborted .spinner__aborted {
-webkit-transform: scale(1);
transform: scale(1)
}
.nav {
background: #FFFFFF;
position: absolute;
overflow: hidden;
z-index: 40;
background-clip: padding-box;
border: 1px solid rgba(23,24,26,0.11);
right: 10px;
top: 10px;
border-radius: 5px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: border-color .5s ease, opacity .4s ease;
transition: border-color .5s ease, opacity .4s ease
}
.nav--html5-fullscreen.nav {
opacity: 0;
-webkit-animation: none;
animation: none
}
.nav .nav__items {
white-space: nowrap;
list-style: none;
margin: 0;
padding: 0
}
.nav .nav__subitems {
position: relative;
display: inline-block;
padding: 0;
margin: 0 0 0 -2px;
height: 2.375rem;
border: 0;
width: 0;
vertical-align: top;
white-space: nowrap;
list-style: none;
overflow: hidden
}
.no-js .nav .nav__subitems {
width: auto
}
.nav .nav__subitems:after {
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, #fff 100%);
background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 100%);
position: absolute;
content: '';
bottom: 1px;
width: 12px;
right: 0;
top: 1px
}
.nav .nav__label {
-webkit-transition: color .2s ease-out;
transition: color .2s ease-out;
line-height: 2.375rem;
position: relative;
display: inline-block;
cursor: pointer;
height: auto
}
.nav .nav__item {
-webkit-transition: background-color .2s ease-out;
transition: background-color .2s ease-out;
border-right: 1px solid #D4D7D9;
display: inline-block
}
@media (min-width: 48em) {
.nav .nav__item:hover {
background: #F7F9FA
}
}
.no-js .nav .nav__item:hover {
background: inherit
}
.nav .nav__item .nav__label {
padding: 0 12px;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
text-decoration: none;
letter-spacing: 0;
font-size: 0.875em;
color: #17181A
}
.fl-1 .nav .nav__item .nav__label {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.nav--with-panel .nav__item .nav__label {
color: #919599
}
.nav .nav__item:last-of-type {
border-right: 0
}
.nav--with-panel .nav__item:hover {
background: #F7F9FA
}
.nav--with-panel .nav__item:hover>.nav__label {
color: #17181A
}
.nav .nav__item.nav__item--active {
background: #FFFFFF
}
.nav .nav__item.nav__item--active>.nav__label {
color: #17181A
}
.nav .nav__subitem {
display: inline-block;
margin: 0
}
.nav .nav__subitem .nav__label {
padding: 0 5px;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
letter-spacing: 0.15px;
font-size: 0.8125em;
color: #919599;
top: 0.07692em
}
.fl-1 .nav .nav__subitem .nav__label {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.nav .nav__subitem:last-of-type .nav__label {
margin-right: 12px
}
.nav .nav__subitem--active .nav__label:after,.nav .nav__subitem:hover .nav__label:after {
background: rgba(23,24,26,0.11);
position: absolute;
overflow: hidden;
content: '';
height: 1px;
bottom: .8em;
right: 5px;
left: 5px
}
.nav .nav__image {
vertical-align: middle;
display: inline-block;
border-radius: 0.75em;
cursor: pointer;
margin: 0 0.625em 0 -0.3125em;
height: 1.5em;
width: 1.5em;
background-size: cover;
background-position: center
}
.nav--with-panel .nav__image {
-webkit-transition: all .2s ease;
transition: all .2s ease;
-webkit-filter: grayscale(1);
filter: grayscale(1);
opacity: .5
}
.nav--with-panel .nav__item:hover .nav__image {
-webkit-filter: none;
filter: none;
opacity: 1
}
.nav--with-panel .nav__item--active .nav__image {
-webkit-filter: none;
filter: none;
opacity: 1
}
.verticalnav__list {
float: right;
clear: both;
padding: 0;
margin: 0 0 1.25em;
list-style: none
}
.verticalnav__item {
display: block;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
width: 13.3125em;
line-height: 1.3125em;
padding: 0.75em 0;
position: relative;
box-shadow: inset 0 -1px 0 0 #E8EBED;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.fl-1 .verticalnav__item {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.verticalnav__item a {
display: block;
text-decoration: none
}
.verticalnav__item a:hover {
color: #409FFF
}
.verticalnav li.verticalnav__item--active {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .verticalnav li.verticalnav__item--active {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.verticalnav li.verticalnav__item--active a {
color: #409FFF
}
.verticalnav__arrow {
content: ' ';
height: 0.75em;
width: 0.5em;
position: absolute;
left: -18px;
top: calc(50% - 6px);
line-height: 0
}
.verticalnav__error-icon {
height: 0.8125em;
width: 0.8125em;
position: absolute;
top: 0.875em;
right: 1.125em
}
.tooltip.nav__item-tooltip {
border: 0.0625em solid #484A4D;
width: 16.53846em;
max-width: none;
margin-top: -0.76923em;
opacity: 0;
left: initial !important;
right: 0.875em
}
.tooltip.nav__item-tooltip:after {
left: 13.07692em;
border: 0.0625em solid #484A4D;
top: -0.53125em
}
.is-mobile-ready .nav {
width: 100%;
height: 3.375em;
top: 0;
left: 0;
border-radius: 0;
border: 0;
overflow: visible;
background-color: #E8EBED;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
padding: 0 1em
}
.is-mobile-ready .nav__items {
height: 100%
}
.is-mobile-ready .nav__item {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
float: left;
height: 100%;
width: 33%;
border-right-color: transparent
}
.fl-1 .is-mobile-ready .nav__item {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .nav__item .logo {
position: initial
}
.is-mobile-ready .nav__item:nth-child(1) {
padding: 1.0625em 0
}
.is-mobile-ready .nav__item:nth-child(1) .nav__subitems-container .pointer {
top: -0.375em;
left: 1.3125em
}
.is-mobile-ready .nav__item:nth-child(2) {
padding: 0.9375em 0 0;
text-align: center
}
.is-mobile-ready .nav__item:nth-child(3) .nav__subitems-container .pointer {
right: 28px
}
.is-mobile-ready .nav__item:nth-child(3) .nav__image {
float: right;
width: 1.75em;
height: 1.75em;
box-sizing: content-box;
border: solid 0.125em #FFFFFF;
border-radius: 1em;
margin: 0.6875em 0
}
.is-mobile-ready .nav__item>.nav__text {
float: right;
font-size: 0.875em;
color: #FFFFFF;
letter-spacing: 0;
text-shadow: 0 0.125em 0.25em rgba(0,0,0,0.3);
padding: 0;
line-height: 3.875em
}
.is-mobile-ready .nav__item .nav__subitems {
display: block;
width: 100%;
height: 100%;
padding: 1.25em
}
.is-mobile-ready .nav__item .nav__subitems .nav__subitem--is-active .nav__text {
color: #409FFF
}
.is-mobile-ready .nav__item .nav__subitems .nav__text {
font-size: 1em;
height: 3.125em;
width: 100%;
text-transform: capitalize;
color: #484A4D;
letter-spacing: 0;
line-height: 3.125em
}
.is-mobile-ready .nav__subitems-container {
display: none;
overflow: visible !important;
position: absolute;
top: 3.375em;
left: 0;
width: 100%;
background: #FFFFFF;
box-shadow: 0 0 12px 0 rgba(0,0,0,0.1),0 10px 30px 0 rgba(0,0,0,0.2)
}
.is-mobile-ready .nav__subitems-container .pointer {
position: absolute;
top: 0
}
.is-mobile-ready .nav__subitem {
display: block;
box-shadow: inset 0 -1px 0 0 #E8EBED
}
.is-mobile-ready .nav__subitem:last-child {
box-shadow: none
}
.is-mobile-ready .sticky__children-container {
position: fixed;
top: 0;
width: 100%;
height: 3.375em;
z-index: 70
}
.nav__text {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .nav__text {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
:not(.no-js) body>.panel {
opacity: 0
}
.root-node .panel {
position: absolute;
top: 0;
right: 0;
bottom: 0;
background: #FFFFFF;
box-shadow: 0 0 12px 0 rgba(0,0,0,0.1),0 10px 30px 0 rgba(0,0,0,0.2);
z-index: 30;
overflow: hidden;
-webkit-transform: translate3d(105%, 0, 0);
transform: translate3d(105%, 0, 0);
-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),-webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1)
}
.root-node .panel.panel--full {
width: 100%;
max-width: calc(100% - 80px)
}
.root-node .panel.panel--half {
width: 55em;
max-width: calc(100% - 27.5em)
}
@media (max-width: 79.9375em) {
.root-node .panel.panel--half {
max-width: calc(100% - 22.5em)
}
}
@media (max-width: 65.5625em) {
.root-node .panel.panel--half {
width: 100%;
max-width: calc(100% - 80px)
}
}
.root-node .panel.panel--visible {
-webkit-transform: none;
transform: none;
-webkit-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1)
}
.root-node .panel.panel--hidden {
-webkit-transform: translate3d(105%, 0, 0) !important;
transform: translate3d(105%, 0, 0) !important
}
.root-node .panel.panel--no-transition {
-webkit-transition-property: none !important;
transition-property: none !important
}
.root-node .panel__scrollable {
height: calc(100% - 60px)
}
.root-node .panel__scrollable>.scrollable__scrollbar {
width: 0.3125em;
right: 5px
}
.root-node .panel__scrollable>.scrollable__scrollbar .scrollable__scrollbar-thumb:before {
position: absolute;
overflow: hidden;
content: '';
top: -5px;
left: -3px;
right: -3px;
bottom: -5px;
background: rgba(255,255,255,0.05)
}
.panel__loading {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: 560px;
max-width: 100%
}
.panel__loading svg {
display: block;
-webkit-animation: panel--loading-pulse 1.4s infinite;
animation: panel--loading-pulse 1.4s infinite;
margin: 0 auto 0.9375em;
height: 1.9375em;
width: 4.0625em
}
.panel__loading p {
line-height: 1.5em;
text-align: center;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
white-space: pre-wrap;
font-size: 1em;
color: #BABCBF;
position: absolute
}
.fl-1 .panel__loading p {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__loading p a {
text-decoration: underline;
color: #BABCBF
}
.panel__return-path {
display: none
}
.panel__topbar {
height: 3.75em;
background: #FFFFFF;
z-index: 30;
border-bottom: 1px solid #E8EBED;
position: relative;
left: 0;
top: 0;
width: 100%
}
.panel__back {
display: block;
text-decoration: none;
cursor: pointer;
position: absolute;
left: 1em;
top: 1.125em
}
.panel__back-icon {
height: 1.5em;
width: 1.5em
}
.panel__back-text {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #919599;
font-size: 0.875em;
margin-left: 0.71429em;
vertical-align: super
}
.fl-1 .panel__back-text {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__close {
height: 1.5em;
width: 1.5em;
position: absolute;
left: 1em;
top: 1.125em;
cursor: pointer
}
.panel__content {
position: relative;
min-height: calc(100% - 9.375em);
margin-top: 2.8125em;
margin-left: 5em;
margin-right: 5em;
margin-bottom: 6.5625em
}
@media (max-width: 79.9375em) {
.panel__content {
margin-left: 2.5em;
margin-right: 2.5em
}
}
.panel__content h1 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 2.5em;
margin: 0
}
.fl-1 .panel__content h1 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .panel__content h1 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__content h1+.panel__subtitle {
margin-top: 0.25em
}
.is-mobile-ready .panel__content h1 {
font-size: 1.625em;
word-wrap: break-word
}
.panel__content .panel__subtitle {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: block;
font-size: 0.875em;
color: #919599
}
.fl-1 .panel__content .panel__subtitle {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .panel__content .panel__subtitle {
line-height: 1.57143em
}
.panel__content a {
color: #484A4D
}
.panel__content--inactive-content {
margin-top: 3.75em
}
.panel__content--inactive-content>div:not(.accountwarning):not(.account) * {
opacity: 0.75 !important;
cursor: default !important;
pointer-events: none !important
}
.is-mobile-ready .panel {
box-shadow: none;
position: static;
min-height: calc(100% - 3.75em)
}
.is-mobile-ready .panel.panel--full {
max-width: 100%
}
.is-mobile-ready .panel.panel--half {
max-width: 100%
}
.is-mobile-ready .panel__content {
min-height: 21.875em;
margin-top: 6.5625em;
margin-left: 1.25em;
margin-right: 1.25em;
margin-bottom: 3.125em
}
.panel.panel--animating .panel__content {
-webkit-animation: panel--animating 1s 1;
animation: panel--animating 1s 1
}
@media (max-width: 65.5625em) {
.panel.panel--animating .panel__content {
-webkit-animation: none;
animation: none
}
}
@-webkit-keyframes panel--animating {
from {
opacity: 0
}
35% {
opacity: 0
}
to {
opacity: 1
}
}
@keyframes panel--animating {
from {
opacity: 0
}
35% {
opacity: 0
}
to {
opacity: 1
}
}
@-webkit-keyframes panel--loading-pulse {
from {
opacity: 0
}
60% {
opacity: 1
}
to {
opacity: 0
}
}
@keyframes panel--loading-pulse {
from {
opacity: 0
}
60% {
opacity: 1
}
to {
opacity: 0
}
}
.tooltip {
width: 15.625em;
position: absolute;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
background: #FFFFFF;
border: 0.0625em solid #BABCBF;
border-radius: 0.3125em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
padding: 0.625em 0;
margin: 0;
z-index: 40;
text-align: center
}
.fl-1 .tooltip {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.tooltip:before,.tooltip:after {
z-index: -1
}
.tooltip--list {
width: auto;
min-width: 7.8125em
}
.tooltip--click ul {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
list-style: none;
background: transparent;
width: 100%;
margin: 0;
line-height: 2;
text-align: left;
padding-left: 0
}
.fl-1 .tooltip--click ul {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.tooltip--click ul li {
font-size: 0.875em;
padding: 0 1em;
cursor: pointer
}
.tooltip--click ul li.tooltip__active-item {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #409FFF
}
.fl-1 .tooltip--click ul li.tooltip__active-item {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.tooltip--click ul li:hover {
background: #409FFF;
color: #FFFFFF
}
.tooltip--click:after {
border: 1px solid #BABCBF
}
.tooltip--hover,.tooltip--manual {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
background: #17181A;
color: #FFFFFF;
position: absolute;
max-width: 17.69231em;
font-size: 0.8125em;
padding: 0.76923em 0.92308em;
line-height: 1.4;
text-align: left
}
.fl-1 .tooltip--hover,.fl-1 .tooltip--manual {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .tooltip--hover,.is-mobile-ready .tooltip--manual {
left: 0;
width: 100%;
margin-top: -1.15385em;
max-width: calc(100% - 3.07692em);
margin-left: 1.53846em;
margin-right: 1.53846em
}
.tooltip--top:before,.tooltip--top:after,.tooltip--bottom:before,.tooltip--bottom:after,.tooltip--bottom-left:before,.tooltip--bottom-left:after,.tooltip--bottom-center:before,.tooltip--bottom-center:after {
left: calc(50% - 0.4375em);
-webkit-transform: translateX(-50%);
transform: translateX(-50%)
}
.tooltip--top:after {
border-top-left-radius: 2px;
bottom: -0.5625em;
border-right: 0 !important;
border-bottom: 0 !important
}
.tooltip--bottom:after,.tooltip--bottom-left:after,.tooltip--bottom-center:after {
top: -0.5625em;
border-left: 0 !important;
border-top: 0 !important
}
.tooltip--left:before,.tooltip--left:after,.tooltip--right:before,.tooltip--right:after {
top: calc(50% - 0.4375em);
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.tooltip--left:after {
border-top-right-radius: 2px;
left: -0.5625em;
border-bottom: 0 !important;
border-left: 0 !important
}
.tooltip--right:after {
right: -0.625em;
border-left: 0 !important;
border-top: 0 !important
}
.tooltip:after {
content: '';
position: absolute;
width: 0.76923em;
height: 0.76923em;
margin: 0.15385em;
background: inherit;
-webkit-transform: rotate(225deg);
transform: rotate(225deg)
}
.tooltip--pointer-left:after {
left: 25%
}
.tooltip--pointer-right:after {
right: 25%
}
.profile {
position: relative;
margin: 0 auto
}
.is-mobile-ready .profile {
width: inherit
}
.profile .row {
margin-bottom: 1.875em
}
.profile .row--no-margin {
margin-bottom: 0
}
.profile form .row {
border-top: 1px solid #E8EBED;
padding-top: 2.5em
}
.is-mobile-ready .profile form .row {
padding-top: 0.625em
}
.profile__header {
width: 100%;
position: relative
}
.profile__welcome {
margin-bottom: 1.25em
}
.profile__welcome svg {
height: 1.5em;
top: 0.625em;
right: 0.625em;
position: absolute;
cursor: pointer
}
.profile .profile__channeluri {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #409FFF;
text-decoration: none
}
.fl-1 .profile .profile__channeluri {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.profile .profile__channeluri:hover {
color: #0073e5
}
.profile__save-button {
position: absolute;
right: 0;
bottom: 0.71429em;
margin-top: 0
}
.is-mobile-ready .profile__welcome a {
pointer-events: none;
cursor: default;
text-decoration: none
}
.is-mobile-ready .profile__save-button,.is-mobile-ready .profile__save-button--bottom {
position: static;
display: block;
width: 100%;
margin-top: 1.42857em
}
.is-mobile-ready .profile__channeluri {
color: #BABCBF;
font-size: 0.875em;
pointer-events: none;
cursor: default
}
.profile__instruction {
width: 33%
}
.is-mobile-ready .profile__instruction {
width: 100%;
padding: 0
}
.profile__instruction h2 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em
}
.fl-1 .profile__instruction h2 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.profile__instruction p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #919599
}
.fl-1 .profile__instruction p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.profile__instruction .button {
width: 100%;
margin-top: 0.71429em
}
.is-mobile-ready .profile__instruction .button {
margin: 0 0 0.71429em;
width: 100%
}
.profile__form {
width: calc(100% / 3 * 2 - 1.125em);
margin-left: 1.25em;
padding-right: 0;
padding-left: 0;
position: relative
}
.is-mobile-ready .profile__form {
width: 100%;
padding: 0;
margin: 0
}
.profile__form--no-bottom {
margin-bottom: -3.25em
}
.profile .input {
width: 26.125em
}
.profile__image-upload {
margin-bottom: 1.875em
}
.profile__image-upload .imageupload__add-element,.profile__image-upload .imageupload__remove-element {
position: static
}
.profile__image-upload .imageupload__actions {
display: inline-block;
vertical-align: top;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.profile__image-upload .imageupload__actions button {
margin-top: 0;
margin-bottom: 0.625em
}
.profile__image-upload .imageupload__pending {
left: 2.6875em;
top: 2.6875em
}
.profile__image-upload .imageupload__image {
height: 6.875em;
width: 6.875em;
border-radius: 3.4375em;
vertical-align: top;
margin-right: 1.25em;
display: inline-block
}
.profile__image-upload.imageupload--pending .imageupload__image {
opacity: 0.55
}
.profile__image-upload .button {
top: 0.9375em
}
.is-mobile-ready .profile__image-upload .button {
width: 100%
}
.profile__image-upload .button:nth-of-type(1) {
left: 8.92857em
}
.is-mobile-ready .profile__image-upload .button:nth-of-type(1) {
left: 8.92857em;
top: -0.21429em
}
.profile__image-upload .button:nth-of-type(2) {
left: 18.42857em
}
.is-mobile-ready .profile__image-upload .button:nth-of-type(2) {
left: 8.92857em;
top: 3.07143em
}
.profile__wallpaper {
border-radius: 5px;
margin-bottom: 0.75em;
overflow: hidden;
border: 1px solid #BABCBF;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.profile__wallpaper--active:hover {
background-color: #17181A
}
.profile__wallpaper--active:hover .imageupload__image {
opacity: 0.75
}
.profile__wallpaper--active:hover .profile__wallpaper-transfer {
background-color: #17181A
}
.profile__wallpaper--active:hover .profile__wallpaper-transfer svg {
opacity: 0.9
}
.profile__wallpaper:hover .profile__wallpaperaction {
display: block
}
.profile__wallpaper--medium {
width: 100%;
padding-bottom: 56.25%
}
.profile__wallpaper--small {
width: 48.5%;
padding-bottom: 27%;
float: left
}
.is-mobile-ready .profile__wallpaper--small {
width: 100%;
padding-bottom: 56.25%;
float: none !important
}
.profile__wallpaper--small ~ .profile__wallpaper--small {
float: right
}
.profile__wallpaper .imageupload__image {
position: absolute;
height: 100%;
width: 100%
}
.profile__wallpaper-transfer {
position: absolute;
border-radius: 0.25em;
box-shadow: 0 0 0.25em 0 rgba(0,0,0,0.1),0 0.1875em 0.625em 0 rgba(0,0,0,0.2);
width: 22%;
height: 55%;
top: 23%;
left: 10%
}
.profile__wallpaperaction {
display: none;
top: calc(50% - 12px);
left: calc(50% - 12px);
height: 1.5em;
width: 1.5em
}
.profile__wallpaperaction--add {
display: block
}
.profile__mailclient {
margin-bottom: -0.3125em;
border-radius: 0.3125em 0.3125em 0 0;
min-height: 22.75em
}
.is-mobile-ready .profile__mailclient {
width: inherit
}
.profile__mailoverlay {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1.3;
padding-top: 1.57143em;
width: 23.92857em;
height: calc(100% - 90px);
background-color: white;
position: absolute;
top: 6.57143em;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
text-align: center;
font-size: 0.875em;
overflow: hidden
}
.fl-1 .profile__mailoverlay {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .profile__mailoverlay {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .profile__mailoverlay {
width: calc(100% - 40px);
height: calc(100% - 61px);
left: 50%;
padding: 1.42857em;
top: 5em
}
.profile__mailoverlay span {
color: #409FFF
}
.profile__mailoverlay--nopicture {
padding-top: 2.28571em
}
.profile__mailoverlay--nopicture .profile__mail-profile-image {
display: none
}
.profile__mailoverlay-logo {
position: absolute;
top: 3.75em;
left: calc(50% - 18px)
}
.is-mobile-ready .profile__mailoverlay-logo {
top: 2.5em
}
.profile__mailoverlay-button {
background: #E8EBED;
border-radius: 6.25em;
width: 9.6875em;
height: 1.6875em;
margin: 1.25em auto
}
.profile__mailoverlay-lines {
width: 17.85714em;
height: 2.14286em
}
.is-mobile-ready .profile__mailoverlay-lines {
width: inherit
}
.profile__mailclient--is-old .profile__mailclient {
width: 100%;
height: 21.875em;
min-height: initial
}
.profile__mailclient--is-old .profile__mail-image {
height: 92%
}
.is-mobile-ready .profile__mailclient--is-old .profile__mail-image {
height: 93%
}
.profile__mailclient--is-old .profile__mailoverlay {
max-width: 17.42857em;
height: 13.64286em;
left: 3.125em;
padding: 2.14286em 0.71429em 0 1.42857em;
-webkit-transform: translateX(0%);
transform: translateX(0%);
text-align: left;
border-radius: 0.35714em;
line-height: 1.3
}
.is-mobile-ready .profile__mailclient--is-old .profile__mailoverlay {
left: 1.42857em
}
.profile__mailclient--is-old .profile__mailoverlay-lines {
width: 12.85714em;
margin: 0.9375em 0
}
.profile__mailclient--is-old .profile__mailoverlay-button {
width: 6.25em;
margin: 0
}
.profile__mail-image {
position: absolute;
width: 100%;
background: #BABCBF;
height: 60%;
top: 1.8125em;
-webkit-transition: opacity 0.2s;
transition: opacity 0.2s
}
.is-mobile-ready .profile__mail-image {
width: inherit;
top: 1.625em
}
.profile__mail-image .imageupload__image {
width: 100%;
height: 100%;
cursor: pointer;
-webkit-transition: opacity 0.2s;
transition: opacity 0.2s
}
.profile__mail-image--adding .imageupload__image {
opacity: 0.8
}
.profile__mail-image .imageupload__pending {
top: 0.9375em;
left: 0.9375em
}
.profile__mail-profile-image {
height: 4em;
width: 4em;
margin: 0 auto;
margin-bottom: 1.42857em;
border-radius: 2em;
background-size: cover;
background-position: center
}
.is-mobile-ready .profile__email-checkbox {
margin-bottom: 3.84615em
}
.is-mobile-ready .profile__email-checkbox .checkboxinput__checkbox {
vertical-align: initial
}
.profile__email-checkbox label {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
width: calc(100% - 3.07692em);
font-size: 1em;
line-height: 1.38462em;
margin-top: 0;
color: #919599
}
.fl-1 .profile__email-checkbox label {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .profile__email-checkbox label {
width: 18.46154em;
margin-bottom: 1.53846em
}
.profile--disabled .profile__header {
margin-bottom: 0.3125em
}
.profile--disabled form .row:first-child {
padding-top: 0
}
.profile--disabled h1 {
margin-top: 0.625em
}
.profile--disabled .profile__save-button,.profile--disabled .profile__channeluri {
display: none
}
.profile--disabled .row:not(.profile--nohide) .col:not(.profile--nohide)>*:not(.profile--nohide) {
opacity: 0.2;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none
}
.profile--disabled .row {
border-top: 0 !important
}
.refresh-notice {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #FFFFFF;
background: #409FFF;
position: absolute;
padding: 0.76923em;
z-index: 80;
top: 0.76923em;
left: 6.15385em;
border-radius: 6px;
box-shadow: 0 2px 30px 0 rgba(0,0,0,0.05);
max-width: 70vw;
line-height: 1.4
}
.fl-1 .refresh-notice {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.refresh-notice a {
color: #FFFFFF;
text-decoration: underline
}
.refresh-notice:before {
position: absolute;
overflow: hidden;
content: '';
border: 8px solid transparent;
border-right-color: #409FFF;
border-left: 0;
left: -8px
}
.is-mobile-ready .refresh-notice {
position: fixed;
top: 3.375em;
left: 0.76923em;
right: 0.76923em;
margin-top: 1.92308em;
max-width: 100%;
text-align: center
}
.is-mobile-ready .refresh-notice:before {
border: 8px solid transparent;
border-bottom-color: #409FFF;
border-top: 0;
margin-left: -8px;
left: 50%;
top: -8px
}
.scrollable {
position: relative;
overflow: hidden;
overflow-x: hidden !important;
height: 100%;
width: 100%
}
.scrollable .scrollable__content {
box-sizing: border-box;
position: absolute;
overflow-y: scroll;
overflow-x: hidden;
height: 100%;
padding: 0;
margin: 0 -17px 0 0;
right: 0;
left: 0;
top: 0;
-ms-overflow-style: none;
-webkit-overflow-scrolling: touch
}
.scrollable .scrollable__content::-webkit-scrollbar {
-webkit-appearance: none;
display: none;
width: 0 !important;
opacity: 0
}
.scrollable.scrollable--overflow-bottom:after {
box-shadow: inset 0 -6px 6px -6px rgba(23,24,26,0.25)
}
.scrollable:before,.scrollable:after {
-webkit-transition: box-shadow .3s ease;
transition: box-shadow .3s ease;
position: absolute;
z-index: 999;
content: '';
bottom: 0;
height: 10px;
right: 0;
left: 0
}
.scrollable:before {
box-shadow: none;
bottom: auto;
top: 0
}
.scrollable .scrollable__scrollbar {
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease;
position: absolute;
z-index: 999;
opacity: 0;
bottom: 10px;
width: 0.25em;
right: 2px;
top: 10px
}
.scrollable .scrollable__scrollbar--visible {
opacity: 1
}
.scrollable .scrollable__scrollbar-thumb {
border-radius: 20px;
min-height: 20px;
background: rgba(0,0,0,0.15);
width: 100%
}
.scrollable .scrollable__scrollbar-thumb:hover {
background: rgba(0,0,0,0.25)
}
.scrollable__scrollbar-thumb--grabbed .scrollable__scrollbar-thumb {
background: rgba(0,0,0,0.25)
}
.scrollable__width-test {
position: absolute;
height: 100px;
width: 100px;
top: -9999px;
overflow: scroll;
-ms-overflow-style: none;
-webkit-overflow-scrolling: touch
}
.scrollable__width-test::-webkit-scrollbar {
width: 0 !important
}
.scrollable__block {
background: none;
position: absolute;
z-index: 60;
height: 100%;
width: 100%;
left: 0;
top: 0
}
.spinner {
position: relative;
display: inline-block
}
.spinner__foreground {
border-radius: 10px;
stroke-linecap: round
}
.spinner__label {
white-space: nowrap;
line-height: 1;
position: absolute;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 3.875em;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #17181A;
margin: -2px 0 0 2px;
left: 50%;
top: 50%;
-webkit-font-feature-settings: "lnum";
font-feature-settings: "lnum";
font-variant-numeric: lining-nums
}
.fl-1 .spinner__label {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.spinner--single .spinner__label {
margin-left: 4px
}
.spinner__label span {
vertical-align: top;
line-height: 1;
display: inline-block;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.35484em;
color: #BABCBF;
position: relative;
top: 0.27273em
}
.fl-1 .spinner__label span {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.spinner__circle circle {
pointer-events: none;
stroke-dashoffset: 0
}
.spinner__circle circle.spinner__foreground {
-webkit-transition: stroke-dashoffset 200ms linear;
transition: stroke-dashoffset 200ms linear;
border-radius: 10px;
stroke-linecap: round
}
.spinner--rotate .spinner__circle {
-webkit-animation: spinner--rotate 2s linear infinite;
animation: spinner--rotate 2s linear infinite;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%
}
@-webkit-keyframes spinner--rotate {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
}
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg)
}
}
@keyframes spinner--rotate {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
}
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg)
}
}
.splashpage {
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
background: #F7F3F0;
z-index: 1000
}
.splashpage__left,.splashpage__right {
height: 100%;
float: left
}
.splashpage__left {
width: 46%;
background: url(https://cdn.wetransfer.net/assets/splashpage/left-2b9933be9b82bc5f73b6dea0a3d02210918c60892d283e1dadcec4343d8ecdd7.png) 50% 50% no-repeat;
background-size: contain;
margin-left: 4.375em
}
.splashpage__right {
position: absolute;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
height: auto;
width: auto;
margin: 0 5em 0 3.75em;
left: 54%;
top: 46%
}
.splashpage h1 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 2.125em;
margin: 0 0 1.17647em;
color: #17181A
}
.fl-1 .splashpage h1 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .splashpage h1 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.splashpage__button {
background: none;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #484A4D;
border: 1px solid #484A4D;
padding: 0.875em 2em;
display: block;
border-radius: 5px;
cursor: pointer;
float: left
}
.fl-1 .splashpage__button {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .splashpage__button {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (max-width: 72em) {
.splashpage__button {
float: none;
margin: 0 0 0.625em !important
}
}
.splashpage__button--cta {
border: 1px solid #409FFF;
background: #409FFF;
margin-left: 0.625em;
color: #FFFFFF
}
.splashpage__button--cta:hover {
background: #0073e5;
border-color: #0073e5;
color: #FFFFFF
}
.transfer {
background: #FFFFFF;
position: absolute;
z-index: 40;
border-radius: 10px;
box-shadow: 0 0 12px 0 rgba(0,0,0,0.1),0 10px 30px 0 rgba(0,0,0,0.2);
-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),-webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
margin: -12.8125em 0 0;
height: 25.625em;
width: 17.5em;
left: 5em;
top: 50%
}
.panel .transfer {
position: static;
border-radius: 0;
box-shadow: none;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
margin: 0;
height: auto;
width: inherit
}
.transfer--no-transition {
-webkit-transition: none;
transition: none
}
.transfer--html5-fullscreen {
-webkit-transform: translateX(-20em);
transform: translateX(-20em)
}
.transfer--html5-fullscreen:hover {
-webkit-transform: translateX(-19.16667em);
transform: translateX(-19.16667em)
}
.transfer--full-panel {
-webkit-transform: translateX(-150%);
transform: translateX(-150%)
}
.transfer--half-panel {
-webkit-transform: none;
transform: none
}
@media (max-width: 79.9375em) {
.transfer--half-panel {
-webkit-transform: translateX(-2.5em);
transform: translateX(-2.5em)
}
}
@media (max-width: 65.5625em) {
.transfer--half-panel {
-webkit-transform: translateX(-150%);
transform: translateX(-150%)
}
}
.transfer .transfer__window {
height: 100%
}
.is-mobile-ready .transfer .transfer__window--is-not-available .transfer__footer {
border-top: 0;
margin-bottom: 3.125em
}
.is-mobile-ready .transfer .transfer__window--is-not-available .transfer__contents {
margin-bottom: 0.625em
}
.transfer .transfer__block-click {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
opacity: 0;
z-index: 999
}
.transfer .transfer__contents {
border-top-right-radius: 10px;
border-top-left-radius: 10px;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
overflow: hidden;
height: 21.125em
}
.fl-1 .transfer .transfer__contents {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .transfer .transfer__contents {
height: auto;
margin-bottom: 3.125em
}
.transfer .transfer__footer {
border-top: 1px solid #D4D7D9;
position: relative;
padding: 0 1.25em;
height: 4.5em
}
.is-mobile-ready .transfer .transfer__footer {
height: auto;
margin: 0 0 -1.25em -1.25em;
padding: 0;
width: 100vw;
border-top: 5px solid #F4F4F4
}
.is-mobile-ready .transfer .transfer__footer .button {
width: 12.5em;
display: block;
margin: 0 auto
}
.is-mobile-ready .transfer .transfer__footer p {
font-size: 0.875em;
line-height: 1.42857em;
text-align: center;
padding: 2.14286em 2.14286em 0
}
.is-mobile-ready .transfer .transfer__footer a {
color: #919599
}
.transfer .transfer__button-container {
-webkit-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
position: absolute;
left: 50%;
top: 50%;
width: 11.875em
}
.transfer .transfer__button-container .transfer__button {
position: static;
-webkit-transform: none;
transform: none;
display: inline-block
}
.transfer .transfer__button {
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
position: absolute;
left: 50%;
top: 50%;
border-radius: 1.25em;
background: #409FFF;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
display: inline-block;
outline: 0;
border: 1px solid #409FFF;
cursor: pointer;
height: 2.5em;
-webkit-transition: border-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),background-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),color 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: border-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),background-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),color 0.2s cubic-bezier(0.77, 0, 0.175, 1);
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #FFFFFF;
width: 9.75em
}
.fl-1 .transfer .transfer__button {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .transfer .transfer__button {
margin: 0.625em auto 0;
border-radius: 1.5625em;
position: initial;
display: block;
-webkit-transform: none;
transform: none;
width: 12.5em;
height: 3.125em
}
.transfer .transfer__button:hover,.transfer .transfer__button:focus {
background-color: #0073e5;
border-color: #0073e5
}
.transfer .transfer__button--alt {
background: transparent;
border-color: #409FFF;
color: #409FFF
}
.transfer .transfer__button--alt:hover,.transfer .transfer__button--alt:focus {
background: transparent;
border-color: #0073e5;
color: #0073e5
}
.transfer .transfer__button--alt-inactive {
background: transparent;
border-color: #D4D7D9;
color: #D4D7D9;
cursor: default
}
.transfer .transfer__button--alt-inactive:hover,.transfer .transfer__button--alt-inactive:focus {
background: transparent;
border-color: #D4D7D9;
color: #D4D7D9
}
.transfer .transfer__button--inactive {
background: #D4D7D9;
border-color: #D4D7D9;
color: #FFFFFF;
cursor: default
}
.transfer .transfer__button--inactive:hover,.transfer .transfer__button--inactive:focus {
background: #D4D7D9;
border-color: #D4D7D9;
color: #FFFFFF;
cursor: default
}
.is-mobile-ready .transfer .transfer__button {
margin: 1.875em auto 0;
border-radius: 1.5625em;
position: initial;
display: block;
-webkit-transform: none;
transform: none;
width: 12.5em;
height: 3.125em
}
.transfer .transfer__button--cancel {
width: 5.625em
}
.transfer .transfer__button--cancel:first-of-type {
margin-right: 0.625em
}
.transfer .transfer__toggle-options,.transfer .transfer__next,.transfer .transfer__back {
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
position: absolute;
cursor: pointer;
left: 20px;
top: 50%
}
.transfer .transfer__next {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transform: scale(-1, 1);
transform: scale(-1, 1);
position: static;
float: right;
margin: 0 0 0 0.625em
}
.transfer .transfer__toggle-options {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
height: 1.5em;
width: 1.5em
}
.transfer .transfer__toggle-options:hover path {
fill: #919599
}
.transfer .transfer__spinner {
display: block;
margin: 1.875em auto 0.75em;
width: 10.625em
}
.is-mobile-ready .transfer .transfer__spinner {
width: 8.125em
}
.transfer__next,.transfer__back {
height: 2em;
width: 2em
}
.transfer__options {
background: #F7F9FA;
border-top: 1px solid #D4D7D9;
padding: 0 10px
}
.transfer__options .transfer__option {
position: relative;
border-bottom: 1px solid #D4D7D9;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
padding: 0.625em
}
.transfer__options .transfer__option .transfer__option-plus {
margin: 0 0 0 -0.3125em;
width: 2.28571em;
height: 0.92857em;
position: absolute;
right: 0.71429em;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.transfer__options .transfer__option:last-of-type {
border-bottom: 0
}
.transfer__options .transfer__option:first-of-type {
border-bottom: 1px solid #D4D7D9
}
.transfer__options .transfer__option.transfer__option--disabled>label,.transfer__options .transfer__option.transfer__option--disabled span {
color: rgba(23,24,26,0.2)
}
.transfer__options .transfer__option.transfer__option--disabled svg {
opacity: .2
}
.transfer__options .transfer__option.transfer__option--disabled svg.transfer__option-plus {
opacity: 1
}
.transfer__options .transfer__option>label {
display: block;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.75em;
color: #484A4D;
width: 10.16667em;
margin: 0 0.625em 0 0;
box-sizing: border-box
}
.fl-1 .transfer__options .transfer__option>label {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transfer__options .transfer__option .transfer__option-placeholder {
color: rgba(23,24,26,0.2)
}
.transfer__options .transfer__option .transfer__option-placeholder path {
fill: rgba(23,24,26,0.2)
}
.transfer__options .transfer__option .transfer__option-placeholder,.transfer__options .transfer__option .transfer__exp-option {
display: inline;
cursor: pointer;
font-size: 0.875em;
color: #17181A
}
.transfer__options .transfer__option .transfer__option-placeholder span,.transfer__options .transfer__option .transfer__exp-option span {
text-decoration: none
}
.transfer__options .transfer__option .transfer__option-placeholder svg,.transfer__options .transfer__option .transfer__exp-option svg {
vertical-align: baseline;
padding: 0;
margin: 2px 0 0 5px;
height: .85em;
width: .85em
}
.transfer__options .transfer__option .transfer__option-placeholder svg path,.transfer__options .transfer__option .transfer__exp-option svg path {
fill: #17181A
}
.transfer__options .transfer__option .transfer__type-radio {
margin-top: 0.28571em;
display: inline-block;
margin-right: 1.28571em
}
.transfer__options .transfer__password {
border: 0;
background: none;
width: 100%;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #17181A;
outline: 0;
padding: 0;
margin: 0
}
.fl-1 .transfer__options .transfer__password {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transfer__textfield {
text-decoration: none;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
border-radius: 5px;
border: 1px solid #D4D7D9;
line-height: 2.14286em;
height: 2.85714em;
display: block;
text-align: center;
width: 15em;
margin: 0 auto;
color: #484A4D;
outline: 0
}
.fl-1 .transfer__textfield {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (min-width: 64em) and (max-width: 65.5625em) {
.transfer__textfield {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
}
.is-mobile-ready .transfer__textfield {
margin-top: 1.42857em;
height: 3.57143em;
width: calc(100% - 70px);
float: left
}
.transfer__bubble {
background-clip: padding-box;
border: 1px solid rgba(255,255,255,0.2);
text-align: center;
position: absolute;
margin: 0 0 0 1.125em;
left: 100%;
top: 0;
width: 14.61538em;
color: rgba(255,255,255,0.8);
-webkit-transition: opacity .4s ease;
transition: opacity .4s ease;
opacity: 0
}
.transfer__bubble-title {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.23077em
}
.fl-1 .transfer__bubble-title {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .transfer__bubble {
position: relative;
top: 0;
left: 0;
max-width: initial;
width: 100%;
margin: 0
}
.transfer__bubble p {
white-space: pre-line
}
.popover {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
position: relative;
cursor: pointer
}
.popover__content,.transfer__bubble {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
background: #17181A;
color: #FFFFFF;
position: absolute;
z-index: 40;
max-width: 17.69231em;
font-size: 0.8125em;
padding: 20px 12px;
border-radius: 5px;
line-height: 1.4
}
.fl-1 .popover__content,.fl-1 .transfer__bubble {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.popover__content p,.transfer__bubble p {
padding: 0;
margin: 0
}
.popover__content--top:before,.popover__content--top:after,.popover__content--bottom:before,.popover__content--bottom:after {
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%)
}
.popover__content--top:before,.popover__content--top:after {
top: -8px;
border: 8px solid transparent;
border-top: 0;
border-bottom-color: #17181A
}
.popover__content--bottom:before,.popover__content--bottom:after {
bottom: -8px;
border: 8px solid transparent;
border-bottom: 0;
border-top-color: #17181A
}
.popover__content--left:before,.transfer__bubble:before,.popover__content--left:after,.transfer__bubble:after,.popover__content--right:before,.popover__content--right:after {
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.popover__content--left:before,.transfer__bubble:before,.popover__content--left:after,.transfer__bubble:after {
z-index: 2;
left: -8px;
border: 8px solid transparent;
border-left: 0;
border-right-color: #17181A
}
.popover__content--left:after,.transfer__bubble:after {
z-index: 1;
left: -10px;
border: 10px solid transparent;
border-left: 0;
border-right-color: rgba(255,255,255,0.2)
}
.popover__content--right:before,.popover__content--right:after {
right: -8px;
border: 8px solid transparent;
border-right: 0;
border-left-color: #17181A
}
.popover__content:before,.transfer__bubble:before,.popover__content:after,.transfer__bubble:after {
content: '';
position: absolute
}
.is-mobile-ready .popover__content:before,.is-mobile-ready .transfer__bubble:before,.is-mobile-ready .popover__content:after,.is-mobile-ready .transfer__bubble:after {
display: none
}
.popover__image {
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: 100%;
display: block;
height: 6.15385em;
width: 6.15385em;
margin: 0 auto 0.76923em
}
.is-mobile-ready .popover__image {
display: none
}
.popover__image--info {
background-image: url(https://cdn.wetransfer.net/assets/transfer-bubble/icon-info-823bb27dfb9496a8c95d21759037e2607836869b5f14b42bed0bcbb4d5efc37b.png)
}
.popover__image--error {
background-image: url(https://cdn.wetransfer.net/assets/transfer-bubble/icon-error-9e5ea275f83b0c542ccf24cf2b47952ee82bd735bcff129a4d248f70fc025981.png)
}
.popover__image--plus {
background-image: url(https://cdn.wetransfer.net/assets/transfer-bubble/icon-plus-bf6b39784f40660ae654512e54755d43bc88377cc7b8a22c586fe90a650f30da.png)
}
.popover__button {
display: inline-block;
margin: 1em 0 0;
padding: 0 20px;
font-size: 1.07692em;
line-height: 2.85714em;
border: 1px solid #FFFFFF;
text-decoration: none;
border-radius: 4px;
color: #FFFFFF
}
.popover__title {
display: block
}
.downloader .filelist__item:last-of-type {
border-bottom: 0
}
.downloader .filelist__spinner,.downloader .filelist__action {
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, #fff 35%, #fff 100%);
background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 35%, #fff 100%)
}
.downloader h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1.2;
text-align: center;
font-size: 1.375em;
color: #17181A;
padding: 0 0.45455em;
margin: 0
}
.fl-1 .downloader h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .downloader h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.downloader p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #919599;
padding: 0;
margin: 0
}
.fl-1 .downloader p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.downloader__heading {
height: auto;
min-height: 5.25em;
display: block;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
-ms-grid-row-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
border-bottom: 1px solid #E8EBED;
padding: 1.875em 0 0.75em
}
.is-mobile-ready .downloader__heading {
min-height: 0
}
.is-mobile-ready .downloader__heading {
padding: 0 0 2.1875em
}
.downloader__heading .downloader__ready-icon {
margin: 0 0 1em;
display: block;
margin-left: auto;
margin-right: auto
}
.is-mobile-ready .downloader__heading .downloader__ready-icon {
display: none
}
.downloader__heading h2 {
margin: 0 0 0.0625em;
padding: 0 0.90909em
}
.downloader__heading p {
font-size: 0.8125em;
line-height: 1.38462em;
text-align: center;
padding: 0 1.53846em
}
.downloader__heading.downloader__heading--message {
padding-top: 2.5em
}
.is-mobile-ready .downloader__heading.downloader__heading--message {
padding-top: 0
}
.downloader__heading.downloader__heading--4-files {
height: auto;
min-height: 8.4375em;
padding-top: 3.75em
}
.is-mobile-ready .downloader__heading.downloader__heading--4-files {
min-height: 0
}
.downloader__heading.downloader__heading--4-files.downloader__heading--message {
padding-top: 1.25em
}
.downloader__heading.downloader__heading--3-files {
height: auto;
min-height: 11.625em;
padding-top: 5em
}
.is-mobile-ready .downloader__heading.downloader__heading--3-files {
min-height: 0
}
.downloader__heading.downloader__heading--3-files.downloader__heading--message {
padding-top: 3.75em
}
.downloader__heading.downloader__heading--2-files {
height: auto;
min-height: 14.8125em;
padding-top: 2.5em
}
.is-mobile-ready .downloader__heading.downloader__heading--2-files {
min-height: 0
}
.downloader__heading.downloader__heading--2-files .downloader__ready-icon {
margin-bottom: 0.8125em
}
.downloader__heading.downloader__heading--2-files h2 {
margin-bottom: 0.23077em
}
.downloader__heading.downloader__heading--2-files.downloader__heading--message {
padding-top: 4.0625em
}
.downloader__heading.downloader__heading--2-files.downloader__heading--message .downloader__ready-icon {
display: none
}
.is-mobile-ready .downloader__heading.downloader__heading--2-files {
padding-top: 0
}
.downloader__heading.downloader__heading--1-files.downloader__heading--message .downloader__ready-icon,.downloader__heading.downloader__heading--2-files .downloader__ready-icon {
height: 6.25em;
width: 6.25em
}
.downloader__heading.downloader__heading--1-files {
height: auto;
min-height: 18em;
padding-top: 1.875em
}
.is-mobile-ready .downloader__heading.downloader__heading--1-files {
min-height: 0
}
.downloader__heading.downloader__heading--1-files .downloader__ready-icon {
height: 10.625em;
width: 10.625em
}
.is-mobile-ready .downloader__heading.downloader__heading--1-files .downloader__ready-icon {
height: 8.125em;
width: 8.125em
}
.downloader__heading.downloader__heading--1-files .downloader__download-info {
margin-bottom: 1.875em
}
.downloader__upsell h2,.downloader__expired h2,.downloader__progress h2,.downloader__password h2,.downloader__complete h2 {
margin: 0 0 0.1875em
}
.downloader__upsell p,.downloader__expired p,.downloader__progress p,.downloader__password p,.downloader__complete p {
margin: 0 0 0.625em;
padding: 0 1.875em;
line-height: 1.4;
color: #484A4D;
text-align: center
}
.downloader__password .transfer__textfield {
text-align: left;
padding-left: 0.625em;
padding-right: 0.625em
}
.is-mobile-ready .downloader__password .transfer__textfield {
width: 100%
}
.downloader__upsell .illustration,.downloader__expired .illustration,.downloader__password .illustration {
display: block;
margin: 1.875em auto 0.75em
}
.is-mobile-ready .downloader__upsell .illustration,.is-mobile-ready .downloader__expired .illustration,.is-mobile-ready .downloader__password .illustration {
margin-top: 0.625em
}
.downloader__complete .downloader__image {
display: block;
margin: 1.875em auto 0.75em;
height: 10.625em;
width: 10.625em
}
.is-mobile-ready .downloader__complete .downloader__image {
height: 8.125em;
width: 8.125em
}
.downloader__upsell p,.downloader__password p,.downloader__complete p {
white-space: pre-wrap
}
.downloader__password .button {
float: right
}
.is-mobile-ready .downloader__password .button {
width: 100%;
float: none
}
.downloader__upsell a {
color: #409FFF;
font-size: 1.15385em
}
.downloader__expired p {
white-space: pre-wrap
}
.downloader__message {
padding: 15px 20px 10px;
display: block;
width: 100%
}
.is-mobile-ready .downloader__message {
padding: 15px 0 0
}
.downloader__message .downloader__expand-msg {
padding-bottom: 0;
margin-left: 5px;
display: inline-block;
cursor: pointer;
color: #919599
}
.downloader__message .downloader__expand-msg svg {
display: inline-block;
margin-left: 3px;
height: 6px;
width: 6px
}
.downloader__message .downloader__expand-msg path {
stroke: #919599
}
.downloader__message p {
line-height: 1.42;
text-align: left;
font-size: 0.875em;
padding: 0;
margin: 0;
color: #484A4D
}
.downloader__message--expanded p {
white-space: pre-wrap;
word-wrap: break-word
}
.downloader__show-all-files {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #919599;
font-size: 0.875em;
display: block;
margin: 0.35714em 0 1.07143em
}
.fl-1 .downloader__show-all-files {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.downloader__download-info {
border-top: 1px solid #E8EBED;
border-bottom: 1px solid #E8EBED;
margin: 0 0 0.9375em;
padding-bottom: 1.25em
}
.is-mobile-ready .downloader__download-info {
border-bottom: 0;
margin: 0
}
.downloader__file-count-title,.downloader__download-link-title {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
margin-bottom: 0.625em;
color: #17181A
}
.fl-1 .downloader__file-count-title,.fl-1 .downloader__download-link-title {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .downloader__file-count-title,.is-mobile-ready .downloader__download-link-title {
margin: 1.25em 0 0
}
a.downloader__download-link {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #409FFF;
font-size: 0.875em;
text-decoration: none
}
.fl-1 a.downloader__download-link {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready a.downloader__download-link {
margin-top: 0.35714em
}
.uploader__fields {
padding: 0 0.625em
}
.uploader__textfield {
display: block;
width: 100%;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
outline: 0;
padding: 0.85714em 0.71429em;
border: 0;
margin: 0;
color: #17181A;
border-bottom: 1px solid #D4D7D9
}
.fl-1 .uploader__textfield {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader__recipients+.uploader__textfield {
padding-top: 0.5em
}
.uploader__textfield::-webkit-input-placeholder {
color: #919599
}
.uploader__textfield::-moz-placeholder {
color: #919599
}
.uploader__textfield:-ms-input-placeholder {
color: #919599
}
.uploader__textfield::placeholder {
color: #919599
}
.uploader__textfield:invalid,.uploader__textfield:-moz-ui-invalid {
box-shadow: none
}
.uploader__recipients {
overflow: auto;
padding: 0.625em 0 0 0.125em;
margin: 0
}
.uploader__recipient-summary {
border-bottom: 1px solid #D4D7D9;
padding: 0.625em;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex
}
.uploader__first-recipient {
display: inline-block;
margin: 0 0.35714em 0 0;
padding: 0.21429em 0 0.35714em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
line-height: 1;
cursor: default;
color: #17181A;
white-space: nowrap;
max-width: 11.07143em;
overflow: hidden;
text-overflow: ellipsis
}
.fl-1 .uploader__first-recipient {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader__recipient-summary--1-recipients .uploader__first-recipient {
max-width: 20em
}
.uploader__recipient {
position: relative;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
white-space: nowrap;
background: #E8EBED;
border-radius: 0.78571em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1;
font-size: 0.875em;
display: inline-block;
outline: 0;
border: 0;
clear: both;
float: left;
color: #17181A;
margin: 0 0 0.28571em;
padding: 0.28571em 0.57143em;
text-overflow: ellipsis;
max-width: 100%;
overflow: hidden
}
.fl-1 .uploader__recipient {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader__recipient:last-of-type {
margin-bottom: 0
}
.uploader__recipient.uploader__recipient--selected {
background: #D4D7D9
}
.uploader__recipient.uploader__recipient--hidden {
position: absolute;
opacity: 0
}
.uploader__recipient-summary .uploader__recipient {
cursor: pointer
}
.uploader__remove-recipient {
position: absolute;
background: -webkit-linear-gradient(left, rgba(232,235,237,0) 0%, #E8EBED 50%, #E8EBED 100%);
background: linear-gradient(to right, rgba(232,235,237,0) 0%, #E8EBED 50%, #E8EBED 100%);
text-align: right;
opacity: 0;
cursor: pointer;
width: 1.875em;
right: 0.3125em;
top: 0.375em
}
.uploader__remove-recipient svg {
height: 0.875em;
width: 0.875em
}
.uploader__recipient--selected .uploader__remove-recipient {
background: -webkit-linear-gradient(left, rgba(212,215,217,0) 0%, #D4D7D9 50%, #D4D7D9 100%);
background: linear-gradient(to right, rgba(212,215,217,0) 0%, #D4D7D9 50%, #D4D7D9 100%);
opacity: 1
}
.uploader__recipient:hover .uploader__remove-recipient {
opacity: 1
}
.uploader__message {
position: relative;
z-index: 10;
padding: 0;
width: 100%
}
.uploader__message .uploader__message--shadow,.uploader__message textarea {
background: none;
overflow: hidden;
display: block;
padding: 13px 20px;
min-height: 5.3125em;
outline: 0;
margin: 0;
border: 0;
width: 100%;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
line-height: 1.2;
color: #17181A
}
.fl-1 .uploader__message .uploader__message--shadow,.fl-1 .uploader__message textarea {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader__fields .uploader__message .uploader__message--shadow,.uploader__fields .uploader__message textarea {
padding: 13px 10px
}
.uploader__message .uploader__message--shadow {
white-space: pre-wrap;
visibility: hidden;
word-wrap: break-word
}
.uploader__message textarea {
position: absolute;
overflow: hidden;
height: 100%;
width: 100%;
left: 0;
top: 0;
resize: none
}
.uploader__message textarea::-webkit-input-placeholder {
color: #919599
}
.uploader__message textarea::-moz-placeholder {
color: #919599
}
.uploader__message textarea:-ms-input-placeholder {
color: #919599
}
.uploader__message textarea::placeholder {
color: #919599
}
.uploader__autosuggest {
position: relative;
z-index: 20
}
.uploader__autosuggest ul {
background: #FFFFFF;
position: absolute;
padding: 0.4375em 0;
margin: -1px 0 0;
right: -0.625em;
left: -0.625em;
top: 100%;
border-top: 1px solid #D4D7D9;
border-bottom: 1px solid #D4D7D9
}
.uploader__autosuggest .uploader__suggestion {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
list-style: none;
padding: 0.35714em 1.42857em;
margin: 0;
cursor: pointer;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1;
font-size: 0.875em;
color: #17181A
}
.fl-1 .uploader__autosuggest .uploader__suggestion {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader__autosuggest .uploader__suggestion span {
display: inline-block;
padding: 0 0 0 0.35714em;
color: #919599
}
.uploader__autosuggest .uploader__suggestion:hover,.uploader__autosuggest .uploader__suggestion.uploader__suggestion--selected {
background: #409FFF;
color: #FFFFFF
}
.uploader__autosuggest .uploader__suggestion:hover span,.uploader__autosuggest .uploader__suggestion.uploader__suggestion--selected span {
color: #FFFFFF
}
.terms-conditions .transfer__contents {
padding: 0 20px
}
.terms-conditions .terms__image {
display: block;
margin: 1.125em auto 0
}
.terms-conditions h2 {
padding: 0 0 0 0.4em;
margin: 0 0 0.18182em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1.2;
text-align: center;
font-size: 1.375em;
color: #17181A
}
.fl-1 .terms-conditions h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .terms-conditions h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.terms-conditions p {
padding: 0;
margin: 0 0 0.61538em;
line-height: 1.38462em;
text-align: center;
font-size: 0.8125em;
color: #484A4D
}
.terms-conditions p span {
display: inline-block
}
.terms-conditions a {
color: #484A4D
}
.terms-conditions a:hover {
color: #17181A
}
.uploader .scrollable.transfer__contents {
overflow: auto
}
.uploader .uploader__image {
display: block;
margin: 1.875em auto 0.75em
}
.uploader h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1.2;
text-align: center;
font-size: 1.375em;
color: #17181A;
padding: 0 0.45455em;
margin: 0
}
.fl-1 .uploader h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .uploader h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader--form .uploader__files {
position: relative;
border-bottom: 1px solid #D4D7D9
}
.uploader--form .uploader__files form {
position: absolute;
opacity: 0;
height: 1px;
width: 1px;
left: 0;
bottom: 0;
overflow: hidden
}
.uploader--form .uploader__empty-state {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
padding-top: 7.1875em;
min-height: 16.25em;
cursor: pointer
}
.uploader--form .uploader__empty-state svg {
position: absolute;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
display: block;
margin: 0 0.625em 0 1.25em;
height: 2.25em;
width: 2.25em;
top: 7.125em
}
.uploader--form .uploader__empty-state svg path {
-webkit-transition: all 0.33s cubic-bezier(0.77, 0, 0.175, 1);
transition: all 0.33s cubic-bezier(0.77, 0, 0.175, 1)
}
.uploader--form .uploader__empty-state:hover svg path:first-of-type,.uploader--form .uploader__empty-state:focus svg path:first-of-type {
fill: #0073e5
}
.uploader--form .uploader__empty-state h2 {
position: absolute;
left: 3em;
top: 5.54545em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1;
text-align: left;
font-size: 1.375em;
display: block;
padding: 0;
margin: 0
}
.fl-1 .uploader--form .uploader__empty-state h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .uploader--form .uploader__empty-state h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader--form .uploader__empty-state p {
position: absolute;
opacity: 0;
-webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
left: 5.07692em;
top: 10.15385em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
padding: 0;
margin: 0;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1;
font-size: 0.8125em;
color: #919599
}
.fl-1 .uploader--form .uploader__empty-state p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader--form .uploader__empty-state:hover h2 {
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.uploader--form .uploader__empty-state:hover p {
-webkit-transform: translateY(50%);
transform: translateY(50%);
opacity: 1
}
.uploader--type-email .uploader__empty-state {
padding-top: 4.375em;
min-height: 10.9375em
}
.uploader--type-email .uploader__empty-state svg {
top: 4.375em
}
.uploader--type-email .uploader__empty-state h2 {
top: 3.54545em
}
.uploader--type-email .uploader__empty-state p {
top: 6.76923em
}
.uploader--form .uploader__list {
background: #F7F9FA;
min-height: 25em;
position: relative;
padding: 150px 0 3.25em;
margin-top: -140px
}
.uploader--type-email .uploader__list {
min-height: 19.6875em
}
.uploader--form .uploader__footer {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
position: absolute;
bottom: 0;
height: 3.25em;
right: 20px;
left: 20px
}
.uploader--form .uploader__add-more {
cursor: pointer
}
.uploader--form .uploader__add-more:hover .uploader__add-files path {
fill: #0073e5
}
.uploader--form .uploader__add-more:hover .uploader__add-files-label {
color: #484A4D
}
.uploader--form .uploader__add-more:hover .uploader__add-files-count {
color: #919599
}
.uploader--form .uploader__add-files {
display: inline-block;
vertical-align: middle;
width: 1.5em;
height: 3.25em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.uploader--form .uploader__add-files path {
-webkit-transition: fill 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: fill 0.2s cubic-bezier(0.77, 0, 0.175, 1)
}
.uploader--form .uploader__add-files.uploader__add-files--reset {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg)
}
.uploader--form .uploader__add-files-content {
display: inline-block;
vertical-align: middle;
padding-left: 0.625em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
position: relative;
top: 0.0625em
}
.uploader--form .uploader__add-files-content .uploader__add-files-label,.uploader--form .uploader__add-files-content .uploader__add-files-count {
display: block;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
-webkit-transition: color 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: color 0.2s cubic-bezier(0.77, 0, 0.175, 1)
}
.fl-1 .uploader--form .uploader__add-files-content .uploader__add-files-label,.fl-1 .uploader--form .uploader__add-files-content .uploader__add-files-count {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader--form .uploader__add-files-label {
font-size: 0.8125em;
color: #919599;
line-height: 1.23077em
}
.uploader--form .uploader__add-files-count {
font-size: 0.6875em;
color: #BABCBF
}
.uploader--progress h2 {
padding: 0 0.90909em;
margin: 0 0 0.36364em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1.2;
text-align: center;
font-size: 1.375em;
color: #17181A
}
.fl-1 .uploader--progress h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .uploader--progress h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader--progress p {
text-align: center;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1.38462em;
font-size: 0.8125em;
padding: 0;
margin: 0;
color: #484A4D
}
.fl-1 .uploader--progress p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader--complete .transfer__contents {
padding: 0 20px
}
.uploader--complete h2 {
padding: 0;
margin: 0 0 0.18182em
}
.uploader--complete .complete__text {
padding: 0;
margin: 0 0 0.92857em;
line-height: 1.28571em;
text-align: center;
font-size: 0.875em;
color: #484A4D;
white-space: pre-wrap
}
.uploader--error .illustration {
display: block;
margin: 1.875em auto 0.75em;
height: 10.625em;
width: 10.625em
}
.uploader--error h2 {
white-space: pre-wrap;
padding: 0 0.45455em;
margin: 0 0 0.27273em
}
.uploader--error p {
padding: 0;
margin: 0 1.14286em 0.71429em;
line-height: 1.28571em;
text-align: center;
font-size: 0.875em;
color: #484A4D;
white-space: pre-wrap
}
.uploader--error p a {
color: #484A4D
}
.uploader--error p a:hover {
color: #17181A
}
.transfer__upsell {
padding: 0;
margin: 0
}
.transfer__upsell .illustration {
display: block;
margin: 1.875em auto 0.75em
}
.transfer__upsell h2 {
margin: 0 0 0.4375em
}
.transfer__upsell p {
margin: 0;
padding: 0;
line-height: 1.4;
text-align: center;
white-space: pre-wrap
}
.transfer__upsell a {
color: #409FFF;
font-size: 1em
}
.transferlist {
position: relative
}
.transferlist__search {
position: absolute;
right: 0;
top: 0.375em;
width: 18.75em
}
.transferlist__search input {
padding-left: 2.625em
}
.is-mobile-ready .transferlist__search {
position: relative;
width: inherit
}
.transferlist__time-ago {
position: absolute;
top: -0.1875em;
width: 100%;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #919599;
font-size: 0.875em;
height: 1.57143em
}
.fl-1 .transferlist__time-ago {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferlist__time-ago ~ .transferlist__time-ago {
position: inherit;
margin-top: 1.42857em
}
.is-mobile-ready .transferlist__time-ago {
position: relative;
height: inherit;
top: inherit;
width: inherit;
margin-bottom: 0.4375em
}
.transferlist__sorting {
float: right
}
.is-mobile-ready .transferlist__sorting {
float: none;
margin-bottom: 2em
}
.is-mobile-ready .transferlist__sorting span:first-of-type {
display: block;
margin-bottom: 0.3125em
}
.transferlist__list-info {
position: absolute
}
.transferlist__list-info a {
color: #409FFF;
text-decoration: underline;
cursor: pointer
}
.transferlist__list-info a:hover {
color: #0073e5
}
.transferlist__list-info a:before {
display: inline-block;
content: '\00B7';
padding: 0 0.625em;
text-decoration: none;
color: #919599
}
.is-mobile-ready .transferlist__list-info {
position: static
}
.transferlist__sort {
margin-left: 0.64286em;
text-decoration: underline;
position: relative;
cursor: pointer
}
.transferlist__sort:hover {
color: #409FFF
}
.transferlist__sort--active {
color: #409FFF;
padding-right: 1.14286em;
margin-right: 0
}
.is-mobile-ready .transferlist__sort {
line-height: 2.5em;
width: calc((100% / 3) - 6px);
display: inline-block;
border: 1px solid #D4D7D9;
height: 2.5em;
margin: 0 0.5625em 0 0;
padding: 0;
border-radius: 0.3125em;
text-align: center;
text-decoration: none
}
.is-mobile-ready .transferlist__sort:last-of-type {
margin-right: 0
}
.is-mobile-ready .transferlist__sort--active {
border-color: #409FFF
}
.transferlist__sort-arrow {
position: absolute;
height: 0.5em;
top: 0.375em;
right: 0.4375em
}
.is-mobile-ready .transferlist__sort-arrow {
position: static;
margin-left: 0.375em
}
.transferlist__holder {
position: relative;
list-style: none;
margin: 2.1875em 0;
padding: 1.375em 0 0
}
.is-mobile-ready .transferlist__holder {
top: 0
}
.transferlist__actionbar a {
color: #FFFFFF;
text-decoration: underline;
cursor: pointer
}
.transferlist__actionbar a:before {
display: inline-block;
content: '\00B7';
padding: 0 0.625em;
text-decoration: none
}
.transferdetail h1 {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
.is-mobile-ready .transferdetail h1 {
word-break: break-all;
overflow: initial;
white-space: initial;
line-height: 1.15385em
}
.transferdetail h2 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em
}
.fl-1 .transferdetail h2 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .transferdetail h2 {
margin-bottom: 0
}
.transferdetail .col {
width: 46%;
margin-right: 8%
}
.transferdetail .col:last-of-type {
margin-right: 0
}
.is-mobile-ready .transferdetail .col {
width: 100%;
margin: 0;
padding: 0
}
.transferdetail .col div:first-of-type {
margin-top: 0
}
.transferdetail__options {
width: 100%;
height: 6.25em;
box-shadow: inset 0 -1px 0 0 #E8EBED, inset 0 1px 0 0 #E8EBED;
margin-top: 1.875em;
margin-bottom: 1.875em;
padding-right: 0.625em;
position: relative;
text-align: right
}
.is-mobile-ready .transferdetail__options {
margin-bottom: 0.9375em;
padding-right: 0;
height: 5.625em;
text-align: left
}
.transferdetail__option {
margin-top: 1.625em;
margin-left: 1.25em;
cursor: pointer;
color: #409FFF;
display: inline-block;
position: relative
}
.transferdetail__option>svg {
position: absolute;
width: 1.5em;
height: 1.5em;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%)
}
.transferdetail__option .transferitem__spinner {
top: 0;
left: 50%;
-webkit-transform: translateX(-0.75em);
transform: translateX(-0.75em)
}
.transferdetail__option--disabled {
color: #919599 !important;
cursor: default;
opacity: 0.75;
pointer-events: none
}
.transferdetail__option--no-hover:hover {
cursor: default;
color: #409FFF !important
}
.transferdetail__option--no-hover:hover svg path:first-of-type {
fill: #409FFF !important
}
.transferdetail__option span {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: inline-block;
width: 100%;
padding-top: 2.21429em;
font-size: 0.875em
}
.fl-1 .transferdetail__option span {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferdetail__option-forward svg {
-webkit-transform: rotate(180deg),translateX(-50%);
transform: rotate(180deg),translateX(-50%)
}
.transferdetail__option:hover {
color: #0073e5
}
.transferdetail__option:hover svg:not(.spinner__circle) path:first-of-type {
fill: #0073e5
}
.transferdetail__options-mobile {
padding-top: 1.42857em
}
.transferdetail__options-mobile .button {
width: 100%;
margin: 0.71429em 0 0;
height: 3.57143em
}
.transferdetail__link-wrapper {
position: absolute;
top: calc(50% - 1.5625em);
border: 1px solid #BABCBF;
border-radius: 5px
}
.is-mobile-ready .transferdetail__link-wrapper,.has-touch .transferdetail__link-wrapper {
width: 100%;
height: 3.25em;
text-align: center
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.is-mobile-ready .transferdetail__link-wrapper,.has-touch .transferdetail__link-wrapper {
width: 50%;
border: 0
}
}
.transferdetail__link {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
position: relative;
color: #409FFF;
border: 0;
border-radius: 5px;
height: 3.57143em;
width: 21em;
padding: 0 1.875em 0 1.25em;
font-size: 0.875em
}
.fl-1 .transferdetail__link {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferdetail a.transferdetail__link {
top: 1.125em;
width: 100%;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #409FFF;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block
}
.fl-1 .transferdetail a.transferdetail__link {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferdetail__copy-link {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #919599;
position: absolute;
top: 0;
right: 0;
font-size: 0.875em;
line-height: 3.57143em;
cursor: pointer;
z-index: 5;
background-color: #FFFFFF;
margin-right: 1.42857em;
padding: 0 0 0 0.85714em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border-radius: 0.35714em
}
.fl-1 .transferdetail__copy-link {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferdetail__copy-link:before {
content: "";
display: block;
position: absolute;
height: 3.57143em;
width: 2.14286em;
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, #fff 100%);
background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 100%);
left: -2.14286em
}
.transferdetail__copy-link:hover {
color: #0073e5
}
.transferdetail__filelist {
width: 100%
}
.is-mobile-ready .transferdetail__filelist {
padding: 0.75em 0 1.5625em
}
.transferdetail__filelist .filelist {
font-size: 1.14286em
}
.transferdetail__filelist .filelist__item {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
position: relative;
margin: 0;
padding: 0.5em 0;
font-size: 0.875em
}
.fl-1 .transferdetail__filelist .filelist__item {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferdetail__filelist .filelist .filelist__action,.transferdetail__filelist .filelist .filelist__spinner {
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, #fff 35%, #fff 100%);
background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 35%, #fff 100%);
visibility: visible;
opacity: 1
}
.transferdetail__filelist .filelist .filelist__action svg path {
fill: #BABCBF
}
.is-mobile-ready .transferdetail__filelist .filelist .filelist__action svg path {
fill: #409FFF
}
.transferdetail__filelist .filelist .filelist__action:hover svg path {
fill: #409FFF
}
.transferdetail__message {
margin-top: 2.1875em
}
.transferdetail__message p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
line-height: 1.4
}
.fl-1 .transferdetail__message p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .transferdetail__message {
padding-bottom: 1.25em;
box-shadow: inset 0 -1px 0 0 #E8EBED
}
.transferdetail__downloads {
margin-top: 2.1875em
}
.transferdetail__downloads span {
font-size: 4.375em;
display: block;
height: 0.71429em;
line-height: 0.5em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .transferdetail__downloads span {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .transferdetail__downloads span {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .transferdetail__downloads {
text-align: center;
margin-top: 0;
box-shadow: inset 0 -1px 0 0 #E8EBED;
padding-bottom: 1.25em;
margin-bottom: 1.875em
}
.is-mobile-ready .transferdetail__downloads span {
font-size: 2.5em;
line-height: 0.85em
}
.transferdetail__recipients ul {
margin: 0;
padding: 0
}
.transferdetail__recipients li {
list-style: none;
height: inherit;
line-height: 1.625em;
position: relative;
margin-bottom: 0.625em
}
.transferdetail__recipients li div {
display: block;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
position: relative;
line-height: 1.28571em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 100%
}
.fl-1 .transferdetail__recipients li div {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .transferdetail__recipients li div {
white-space: initial;
word-break: break-all;
text-overflow: initial
}
.transferdetail__recipients li div.status {
color: #919599;
font-size: 0.8125em;
margin-top: 0.07692em;
line-height: 1.15385em;
text-overflow: initial;
white-space: normal;
word-break: break-word;
padding-left: 1.15385em
}
.transferdetail__recipients li div svg {
position: absolute;
width: 0.9375em;
height: 0.9375em;
left: 0;
top: 0.25em
}
.transferdetail__recipients li div svg.transferdetail__recipient-bounced {
top: 0.1875em
}
.is-mobile-ready .transferdetail__recipients {
box-shadow: inset 0 -1px 0 0 #E8EBED;
padding-bottom: 0.9375em
}
.is-mobile-ready .transferdetail__recipients h2 {
margin-bottom: 0.9375em
}
.transferdetail__more,.transferdetail__expand-msg {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: inline-block;
color: #919599;
cursor: pointer
}
.fl-1 .transferdetail__more,.fl-1 .transferdetail__expand-msg {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferdetail__more:hover,.transferdetail__expand-msg:hover {
color: #484A4D
}
.transferdetail__more {
margin-top: 0.9375em;
font-size: 0.875em
}
.transferdetail__expand-msg {
margin-left: 5px
}
.transferitem {
height: 5em;
border: 1px solid #E8EBED;
border-radius: 5px;
margin-bottom: 0.625em;
position: relative;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
overflow: hidden
}
.transferitem__options {
display: none
}
.transferitem .transferitem__option {
color: #919599;
text-decoration: underline
}
.transferitem .transferitem__option:not(:last-child):after {
display: inline-block;
content: '\00B7';
padding: 0 0.625em;
text-decoration: none;
color: #919599
}
.transferitem .transferitem__option:hover {
color: #409FFF
}
.transferitem .transferitem__option.transferitem__option--disabled {
pointer-events: none;
cursor: default;
color: #D8D8D8;
text-decoration: none
}
.transferitem__meta,.transferitem__options {
width: 90%;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #919599;
position: absolute;
left: 1.53846em;
top: 3.23077em
}
.fl-1 .transferitem__meta,.fl-1 .transferitem__options {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferitem__meta .transfermetadata,.transferitem__options .transfermetadata {
width: 90%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
.transferitem__arrow {
height: 2.25em;
width: 2.25em;
padding: 0.625em;
top: 50%;
-webkit-transform: translateY(-50%) rotate(180deg);
transform: translateY(-50%) rotate(180deg);
position: absolute;
right: 1.375em
}
.transferitem__arrow:hover path {
stroke: #409FFF
}
.is-mobile-ready .transferitem__arrow {
right: 0.75em
}
.transferitem--active,.transferitem--selected,.transferitem:hover {
background-color: #F7F9FA
}
html:not(.is-mobile-ready) .transferitem:not(.transferitem--selecting):hover .transferitem__meta {
display: none
}
html:not(.is-mobile-ready) .transferitem:not(.transferitem--selecting):hover .transferitem__options {
display: block
}
.transferitem--highlight-files {
color: #409FFF
}
.transferitem--disabled {
opacity: 0.2;
pointer-events: none;
cursor: default
}
.transferitem__checkbox {
margin: 0;
position: absolute;
left: 1.53846em;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.transferitem__title {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
position: absolute;
width: 80%;
top: 1.0625em;
left: 1.25em;
overflow: hidden;
height: 1.5em;
text-overflow: ellipsis;
white-space: nowrap;
padding-right: 0.625em
}
.fl-1 .transferitem__title {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferitem__title span {
color: #409FFF
}
.is-mobile-ready .transferitem__title {
left: 1.25em
}
.transferitem__input {
position: absolute;
height: 1px;
top: -10px;
padding: 0;
border: 0
}
.transferitem__more {
width: 3.625em;
position: absolute;
right: 0.25em;
top: 1.125em;
padding: 1.25em;
cursor: pointer
}
.is-mobile-ready .transferitem__more {
width: 0.5625em;
padding: 0;
right: 1.25em;
top: 2.4375em
}
.transferitem__more:hover path:first-of-type,.transferitem__more:focus path:first-of-type {
fill: #409FFF
}
.transferitem--selecting:hover {
cursor: pointer;
background-color: #F7F9FA
}
.transferitem--selecting .transferitem__title {
left: 3.75em
}
.transferitem--selecting .transferitem__meta {
left: 4.61538em
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.transferitem {
height: 6.25em
}
.transferitem__meta {
display: block !important
}
.transferitem__options {
display: block;
top: 4.76923em
}
.transferitem--selecting .transferitem__title {
top: 1.8125em
}
.transferitem--selecting .transferitem__meta {
top: 4em;
display: block
}
.transferitem--selecting .transferitem__options {
display: none
}
}
.transfermetadata>:not(:last-child):after {
display: inline-block;
content: '\00B7';
padding: 0 0.625em;
text-decoration: none;
color: #919599
}
.transfermetadata__padlock {
margin-right: 0.38462em;
height: 0.76923em
}
.transfermetadata__open-calendar {
cursor: pointer;
display: inline-block
}
.transfermetadata__open-calendar svg.spinner__circle,.transfermetadata__open-calendar svg.open-popup {
height: 0.625em;
margin-left: 0.125em
}
.transfermetadata__open-calendar:hover u {
color: #484A4D
}
.transfermetadata__open-calendar:hover svg.open-popup path {
fill: #484A4D
}
.transfermetadata__expiry-warning {
margin: 0.0625em 0.25em -0.125em;
height: 0.9375em;
width: 0.875em
}
.transfermetadata__never-exp-btn {
width: 80%;
font-size: 0.75em;
margin-top: 0.83333em;
height: 2.5em;
margin: 1.25em 0 0.41667em;
padding: 0
}
.transfermetadata__never-exp-btn:not(.button--inline) {
cursor: default
}
.wallpaper {
background: #17181A;
position: absolute;
z-index: 10;
height: 100%;
width: 100%;
left: 0;
top: 0;
overflow: hidden
}
.wallpaper--no-transition iframe {
-webkit-transition: none;
transition: none
}
.wallpaper--full-panel iframe {
-webkit-transform: translateX(-20%);
transform: translateX(-20%)
}
.wallpaper--half-panel iframe {
-webkit-transform: none;
transform: none
}
@media (max-width: 79.9375em) {
.wallpaper--half-panel iframe {
-webkit-transform: translateX(-10%);
transform: translateX(-10%)
}
}
@media (max-width: 65.5625em) {
.wallpaper--half-panel iframe {
-webkit-transform: translateX(-20%);
transform: translateX(-20%)
}
}
.wallpaper iframe {
-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),-webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
background: transparent;
position: absolute;
z-index: 1;
border: 0;
height: 100%;
width: 100%;
left: 0;
top: 0
}
.wallpaper__cover {
background: rgba(0,0,0,0.01);
position: absolute;
z-index: 4;
cursor: pointer;
height: 100%;
width: 100%;
left: 0;
top: 0
}
.wallpaper__title {
position: absolute;
display: inline-block;
z-index: 3;
bottom: 14px;
right: 14px;
text-shadow: 0 1px 4px rgba(0,0,0,0.5);
white-space: nowrap;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
text-decoration: none;
text-overflow: ellipsis;
font-size: 0.875em;
color: #FFFFFF
}
.fl-1 .wallpaper__title {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (max-width: 30em) {
.wallpaper__title {
font-size: 0.8125em;
bottom: 14px;
right: 14px
}
}
.about__content {
padding-top: 1.25em;
max-width: 64.875em;
margin: 0 auto
}
.is-mobile-ready .about__content {
padding-top: 0
}
.about__content-column {
width: 100%;
margin-bottom: 3.75em
}
.about__content-column>a {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #484A4D;
line-height: 2em
}
.fl-1 .about__content-column>a {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.about__content-column>a:hover {
color: #409FFF
}
@media (min-width: 64em) {
.about__content-column {
display: inline-block;
vertical-align: top;
margin-bottom: 0
}
.about__content-column:first-child {
width: 79%;
padding-right: 10%
}
.about__content-column:last-child {
width: 20%
}
}
.about__content-block {
margin-bottom: 5em
}
.is-mobile-ready .about__content-block {
margin-bottom: 2.5em
}
.about__content-block h1,.about__content-block h2,.about__content-block h3,.about__content-block h4,.about__content-block h5,.about__content-block p {
color: #17181A;
margin: 0
}
.about__content-block h1 {
font-size: 1.625em;
margin-bottom: 0.57692em
}
@media (min-width: 64em) {
.about__content-block h1 {
font-size: 2.5em;
margin-bottom: 0.375em
}
}
.about__content-block h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em;
margin-bottom: 0.27778em
}
.fl-1 .about__content-block h2 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .about__content-block h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.about__content-block h3 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #919599;
margin-bottom: 0.71429em
}
.fl-1 .about__content-block h3 {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.about__content-block h4 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #484A4D;
line-height: 0.875em
}
.fl-1 .about__content-block h4 {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.about__content-block h5 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #484A4D;
line-height: 1.3125em
}
.fl-1 .about__content-block h5 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.about__content-block p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #484A4D;
line-height: 1.375em
}
.fl-1 .about__content-block p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .about__content-block p {
font-size: 0.875em;
line-height: 1.5em
}
.about__content-block img {
width: 10.625em;
height: 10.625em;
margin-bottom: 0.625em;
margin-left: -0.9375em
}
.is-mobile-ready .about__content-block img {
width: 8.125em;
height: 8.125em;
margin-left: -0.6875em
}
.about__content-block img.about__this-works-logo {
width: 8.75em;
height: 1.9375em;
margin: 0 0 1.25em
}
.is-mobile-ready .about__content-block img.about__this-works-logo {
margin: 0 0 0.625em
}
@media (min-width: 48em) {
.about__content-column:first-child .about__content-block {
display: inline-block;
width: 49%;
vertical-align: top
}
.about__content-column:first-child .about__content-block:nth-child(odd) {
padding-left: 5%
}
}
.about__content-column:first-child .about__content-block.about__content-block--is-header {
display: block;
width: 100%;
margin-bottom: 3.75em;
padding-left: 0
}
.about__content-column:first-child .about__content-block.about__content-block--is-header p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em;
line-height: 1.27778em;
color: #17181A
}
.fl-1 .about__content-column:first-child .about__content-block.about__content-block--is-header p {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .about__content-column:first-child .about__content-block.about__content-block--is-header p {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (min-width: 64em) {
.about__content-column:first-child .about__content-block.about__content-block--is-header p {
font-size: 1.625em;
line-height: 1.30769em
}
}
@media (min-width: 48em) {
.about__content-column:first-child .about__content-block:last-child {
display: block;
width: 100%;
margin-bottom: 0
}
.about__content-column:first-child .about__content-block:last-child .about__this-works-illustration,.about__content-column:first-child .about__content-block:last-child .about__this-works-content {
display: inline-block;
width: 49%;
vertical-align: top
}
.about__content-column:first-child .about__content-block:last-child .about__this-works-content {
padding-left: 5%
}
}
.about__content-column:last-child .about__content-block {
display: block;
width: 100%;
border-bottom: solid 0.0625em #E8EBED;
padding-bottom: 1.25em;
margin-bottom: 1.25em
}
.about__content-column:last-child .about__content-block>a {
display: block;
width: 100%;
height: auto;
margin-bottom: 1.25em;
text-decoration: none
}
.about__content-column:last-child .about__content-block>a .about__social svg path {
fill: #484A4D
}
.about__content-column:last-child .about__content-block>a:hover h4,.about__content-column:last-child .about__content-block>a:hover h5 {
color: #409FFF
}
.about__content-column:last-child .about__content-block>a:hover .about__social svg path {
fill: #409FFF
}
.about__content-column:last-child .about__content-block>a:last-child {
margin-bottom: 0
}
.about__content-column:last-child .about__content-block span {
display: inline-block;
vertical-align: top
}
.about__content-column:last-child .about__content-block h4 {
position: relative;
display: inline-block;
top: 0.1875em;
left: 0.5em
}
.about__content-column:last-child .about__content-block img {
width: 1.5em;
height: 1.5em;
margin: 0;
border: 0
}
.about__content-column:last-child .about__content-block p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #919599;
margin-top: 0.61538em
}
.fl-1 .about__content-column:last-child .about__content-block p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.about__content-column:last-child .about__content-block p img {
width: 0.625em;
height: 0.625em;
margin-left: 0.125em
}
.about__this-works-illustration {
width: 100%;
background: #FFDDAB;
margin-bottom: 1.875em;
position: relative;
overflow: hidden;
border-radius: 0.3125em;
position: relative
}
.about__this-works-illustration:before {
display: block;
content: "";
width: 100%;
padding-top: 79.36508%
}
.about__this-works-illustration>img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0
}
.about__this-works-illustration .this-works__gradient {
width: 100%;
height: 0.625em;
position: absolute;
bottom: 0;
background-image: -webkit-linear-gradient(top, rgba(255,221,171,0) 0%, rgba(255,221,171,0.44) 100%);
background-image: linear-gradient(-180deg, rgba(255,221,171,0) 0%, rgba(255,221,171,0.44) 100%);
z-index: 3
}
.about__this-works-illustration img {
margin: 1.25em auto 0;
width: 69%;
height: auto
}
.is-mobile-ready .about__this-works-illustration img {
width: 69%;
height: auto;
margin-left: auto
}
@media (mind-width: 48em) {
.about__this-works-illustration {
width: 20.3125em;
height: 15.9375em
}
}
.about__language-picker-box {
border: 1px solid #BABCBF;
border-radius: 5px;
width: 100%;
padding: 0.9375em 0.625em 0.9375em 2.5em;
max-width: 14.0625em
}
.about__language-picker-box .languagepicker__current {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
text-decoration: none;
position: relative;
width: 100%;
font-size: 0.875em
}
.fl-1 .about__language-picker-box .languagepicker__current {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.about__language-picker-box .languagepicker__current:before {
content: '';
height: 1.14286em;
width: 1.14286em;
display: block;
top: 0.14286em;
position: absolute;
left: -1.92857em;
background: url(https://cdn.wetransfer.net/assets/globe-38209c8fb7d72a610b8354aebf269c82a0bcb7a03eeee94a4f64193e671db2b1.svg)
}
.about__language-picker-box .languagepicker__current svg {
position: absolute;
right: 0.71429em
}
.page-advertise {
margin-left: 0;
margin-right: 0;
margin-bottom: 0
}
.page-advertise h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
color: #17181A;
margin-bottom: 2.27273em
}
.fl-1 .page-advertise h2 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .page-advertise h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .page-advertise {
margin-left: 0;
margin-right: 0
}
.page-advertise__intro {
text-align: center;
padding: 1.25em 1.875em 3.125em
}
.is-mobile-ready .page-advertise__intro {
padding: 0 1.5625em 2.8125em
}
.page-advertise__intro h1 {
margin-bottom: 0.5em
}
.page-advertise__intro p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.625em;
color: #17181A;
line-height: 1.30769em;
max-width: 26.53846em;
margin: 0 auto 1.34615em;
display: block
}
.fl-1 .page-advertise__intro p {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .page-advertise__intro p {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .page-advertise__intro p {
font-size: 1.125em;
line-height: 1.44444em
}
.page-advertise__intro .button {
margin: 0 0.3125em 0.3125em;
width: 15.71429em
}
.is-mobile-ready .page-advertise__intro .button {
margin: 0 0 0.625em;
width: 100%
}
.page-advertise__stats {
padding: 3.75em 1.875em;
margin: 0 auto;
border-top: 1px solid #E8EBED;
max-width: 67.5em;
text-align: center
}
.is-mobile-ready .page-advertise__stats {
padding: 1.875em 1.5625em
}
.page-advertise__stats .stat {
display: inline-block;
vertical-align: top;
margin: 0 0.9375em;
text-align: left
}
.page-advertise__stats .stat .number {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: inline-block;
vertical-align: middle;
font-size: 4.375em;
color: #17181A;
margin-right: 0.14286em
}
.fl-1 .page-advertise__stats .stat .number {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise__stats .stat .number span {
font-size: 0.34286em;
vertical-align: top;
color: #919599;
position: relative;
top: 0.625em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .page-advertise__stats .stat .number span {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .page-advertise__stats .stat .number span {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise__stats .stat:first-of-type .number span {
top: auto;
bottom: 0.625em;
vertical-align: bottom
}
.page-advertise__stats .stat .content {
display: inline-block;
vertical-align: middle
}
.page-advertise__stats .stat .content h4 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em;
color: #17181A;
margin: 0.33333em 0 0.05556em
}
.fl-1 .page-advertise__stats .stat .content h4 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .page-advertise__stats .stat .content h4 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise__stats .stat .content p {
margin: 0;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
line-height: 1.5em;
color: #484A4D
}
.fl-1 .page-advertise__stats .stat .content p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .page-advertise__stats .stat {
width: 100%;
margin-bottom: 1.25em
}
.is-mobile-ready .page-advertise__stats .stat .number {
font-size: 3.4375em;
width: 1.45455em;
margin-right: 0.27273em;
text-align: right
}
.page-advertise__stats .source {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #919599;
line-height: 1.38462em;
margin-top: 3.07692em
}
.fl-1 .page-advertise__stats .source {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise__stats .source a {
color: #919599
}
.page-advertise__team {
padding: 2.1875em 1.875em 3.75em
}
.is-mobile-ready .page-advertise__team {
padding: 1.875em 1.5625em
}
.page-advertise__team p {
max-width: 31.875em;
margin: 0 auto;
display: block;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #484A4D;
line-height: 1.375em
}
.fl-1 .page-advertise__team p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise__brands {
padding: 3.75em 1.875em 5em;
text-align: center
}
.is-mobile-ready .page-advertise__brands {
padding: 1.875em 1.5625em
}
.is-mobile-ready .page-advertise__brands img {
max-width: 20%
}
.page-advertise__brands p:first-child {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
color: #17181A;
margin-bottom: 2.72727em
}
.fl-1 .page-advertise__brands p:first-child {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .page-advertise__brands p:first-child {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise__brands-images {
text-align: center
}
.page-advertise__brands-images img {
display: inline-block;
margin: 0 1.25em 1.25em;
vertical-align: middle
}
.page-advertise__gallery {
background: #F7F9FA;
text-align: center;
padding: 2em 1.875em 1.25em
}
.is-mobile-ready .page-advertise__gallery {
padding: 1.875em 1.5625em
}
.is-mobile-ready .page-advertise__gallery .button {
width: 100%
}
.page-advertise__gallery-content {
margin: 0 auto;
max-width: 67.5em
}
.page-advertise-guidelines {
max-width: 50em;
margin-right: auto;
margin-left: auto;
padding: 0 2.5em
}
.page-advertise-guidelines__intro {
max-width: 39.375em
}
.page-advertise-guidelines__intro h1 {
margin-bottom: 0.5em
}
.page-advertise-guidelines__intro p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #484A4D;
line-height: 1.375em;
margin: 0
}
.fl-1 .page-advertise-guidelines__intro p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise-guidelines__types {
max-width: 50em;
padding-top: 2.5em
}
.page-advertise-guidelines__types .type {
display: inline-block;
vertical-align: top;
width: calc(45%);
max-width: 22.5em;
margin-bottom: 1.25em
}
.page-advertise-guidelines__types .type:nth-child(2n) {
margin-right: 5%
}
.is-mobile-ready .page-advertise-guidelines__types .type {
width: 100%;
max-width: inherit;
margin: 0 0 1.25em
}
.page-advertise-guidelines__types .type h3 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
line-height: 1em;
color: #17181A;
margin: 0 0 0.1875em
}
.fl-1 .page-advertise-guidelines__types .type h3 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise-guidelines__types .type p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
line-height: 1.5em;
margin: 0
}
.fl-1 .page-advertise-guidelines__types .type p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise-guidelines__types .type__icon {
display: inline-block;
vertical-align: top;
margin-right: 0.625em
}
.page-advertise-guidelines__types .type__body {
display: inline-block;
width: calc(100% - 65px)
}
.page-advertise-guidelines__dodonts {
max-width: 50em
}
.page-advertise-guidelines__dodonts .column {
display: inline-block;
vertical-align: top;
width: calc(45%);
max-width: 22.5em
}
.page-advertise-guidelines__dodonts .column:first-of-type {
margin-right: 5%
}
.is-mobile-ready .page-advertise-guidelines__dodonts .column {
width: 100%;
max-width: inherit;
margin: 0
}
.page-advertise-guidelines__dodonts ul {
display: block;
padding: 0;
margin: 0
}
.page-advertise-guidelines__dodonts ul li {
display: block;
list-style: none;
padding-left: 1.5625em;
margin: 0 0 1.25em;
background-size: 12px;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
line-height: 1.5em
}
.fl-1 .page-advertise-guidelines__dodonts ul li {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise-guidelines__dodonts ul li h3 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.14286em;
line-height: 1.14286em;
color: #17181A;
margin: 0 0 0.28571em
}
.fl-1 .page-advertise-guidelines__dodonts ul li h3 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise-guidelines__dodonts ul li p {
margin: 0
}
.page-advertise-guidelines__dos li {
background: no-repeat left 0.14286em url(https://cdn.wetransfer.net/assets/guidelines/do-49b7e96a789a754045b39f6d22f4f49cbda98997efd50bfc5140bd69b5deac8b.png)
}
.page-advertise-guidelines__donts li {
background: no-repeat left 0.28571em url(https://cdn.wetransfer.net/assets/guidelines/dont-363ee629f8773b4f8e054e69176ae6a16e04c99dee3a1ecd8f22fd9c5fba7d36.png)
}
.page-advertise-guidelines hr {
display: block;
border: 0;
margin: 3.75em 0;
background: #E8EBED;
width: 100%;
height: 1px
}
.is-mobile-ready .page-advertise-guidelines hr {
margin: 1.875em 0
}
.page-advertise-guidelines__requirements,.page-advertise-guidelines__next-steps,.page-advertise-guidelines__useful-info {
margin-bottom: 2.5em;
max-width: 31.875em
}
.page-advertise-guidelines__requirements ul li,.page-advertise-guidelines__next-steps ul li,.page-advertise-guidelines__useful-info ul li {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #484A4D;
line-height: 1.375em
}
.fl-1 .page-advertise-guidelines__requirements ul li,.fl-1 .page-advertise-guidelines__next-steps ul li,.fl-1 .page-advertise-guidelines__useful-info ul li {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise-guidelines__tools .tool {
max-width: 31.875em;
border-bottom: 1px solid #E8EBED;
padding: 1.25em 13.125em 1.25em 0;
position: relative
}
.page-advertise-guidelines__tools .tool .button {
position: absolute;
right: 0;
top: 1.71429em;
margin: 0;
width: 10.71429em;
text-align: center;
height: 2.85714em;
line-height: 2.85714em
}
.page-advertise-guidelines__tools .tool h5 {
margin: 0 0 0.375em
}
.page-advertise-guidelines__tools .tool p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
line-height: 1.5em;
margin: 0
}
.fl-1 .page-advertise-guidelines__tools .tool p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .page-advertise-guidelines__tools .tool {
max-width: 100%;
padding: 1.25em 0
}
.is-mobile-ready .page-advertise-guidelines__tools .tool p {
margin: 0 0 0.625em
}
.is-mobile-ready .page-advertise-guidelines__tools .tool .button {
position: static
}
.ad-gallery__container {
max-width: 65.25em;
margin: 1.875em auto
}
.ad-gallery__container h1 {
margin-bottom: 0.5em
}
.ad-gallery__thumb {
display: inline-block;
margin: 0 0 1.25em;
text-align: left;
text-decoration: none;
width: calc(100%/3 - 14px)
}
.ad-gallery__thumb:nth-of-type(3n+2) {
margin: 0 1.25em 1.25em
}
@media (max-width: 48em) {
.ad-gallery__thumb {
width: 100%;
margin: 0 0 1.25em !important
}
}
.is-mobile-ready .ad-gallery__thumb {
width: 100%;
margin: 0 0 1.25em
}
.ad-gallery__thumb:hover .image {
opacity: 0.8
}
.ad-gallery__thumb .image {
background-color: #F4F4F4;
background-size: cover;
position: relative;
width: 100%;
padding-top: 56.25%;
display: block;
margin: 0 0 0.5em;
border-radius: 0.3125em
}
.ad-gallery__thumb .info {
display: block
}
.is-mobile-ready .ad-gallery__thumb .info .title {
display: block
}
.is-mobile-ready .ad-gallery__thumb .info .meta {
float: none
}
.ad-gallery__thumb .info .title {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #17181A
}
.fl-1 .ad-gallery__thumb .info .title {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.ad-gallery__thumb .info .meta {
float: right;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #919599
}
.fl-1 .ad-gallery__thumb .info .meta {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.apps .col {
width: 50%;
float: right
}
.apps .col ~ .col {
float: left
}
@media (max-width: 64em) {
.apps .col {
float: left;
width: 100%;
padding: 0
}
.apps .col ~ .col {
padding-bottom: 1.25em
}
}
.is-mobile-ready .apps .col {
width: 100%;
padding: 0
}
.apps__intro {
text-align: center;
padding-top: 1.25em;
margin-bottom: 1.875em
}
.apps__intro h1 {
margin-bottom: 0.5em
}
.apps__intro p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #17181A;
margin: 0 auto 0.76923em;
max-width: 26.15385em
}
.fl-1 .apps__intro p {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .apps__intro p {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .apps__intro {
padding: 0;
margin-bottom: 1.25em
}
.is-mobile-ready .apps__intro p {
font-size: 1.125em
}
.apps__icon-overview {
margin: 2.5em 0;
height: 2.5em
}
.apps__icon {
display: inline;
margin: 0 1.25em
}
.apps__icon--appstore {
width: 2.3125em;
height: 2.3125em;
background-color: #409FFF;
border-radius: 50%;
display: inline-block;
padding: 0.3125em;
position: relative;
top: -0.4375em
}
.apps .button {
width: 14.28571em;
text-align: center
}
.apps__button {
display: inline
}
.apps__button svg {
vertical-align: middle;
left: -0.3125em;
position: relative;
top: -0.125em
}
.apps__content {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
width: 21.875em
}
.fl-1 .apps__content {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.apps__content h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em
}
.fl-1 .apps__content h2 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .apps__content h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.apps__content p {
font-size: 0.875em
}
.is-mobile-ready .apps__content {
text-align: center;
width: 100%
}
.is-mobile-ready .apps__content .button {
width: 100%
}
.is-mobile-ready .apps__content .button:last-child {
margin-bottom: 3.125em
}
.apps__image {
display: block;
max-width: 100%;
margin-bottom: 1.875em
}
.is-mobile-ready .apps__image {
margin-bottom: 1.25em
}
.plus-list {
text-align: left;
margin: 0 0.625em 0 0
}
.plus-list h3 {
padding-left: 1.38889em
}
.is-mobile-ready .plus-list {
width: 100%;
margin: 0 0 1.875em
}
.is-mobile-ready .plus-list:nth-child(2) {
margin: 0
}
@media (min-width: 48em) {
.plus-list {
display: inline-block;
vertical-align: top;
max-width: calc(50% - 1.25em)
}
.plus-list:nth-child(2) {
margin: 0 0 0 0.625em
}
}
.plus-list ul {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
list-style: none;
margin: 0;
padding: 0
}
.fl-1 .plus-list ul {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.plus-list li {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
letter-spacing: 0;
line-height: 1.5625em;
margin: 0.75em 0;
background: url(https://cdn.wetransfer.net/assets/valid-icon-eb82dc01703572f874476f9301df6128f05754e8a3d6e61d8bf39a0373f49b40.svg) 0.28571em 0.35714em/0.71429em 0.71429em no-repeat;
padding: 0em 0 0 1.875em;
text-align: left
}
.fl-1 .plus-list li {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.plus-banner {
background-color: #FFF0D9;
position: relative;
padding-top: 2.5em;
width: calc(100% + 10em);
left: -5em;
margin-bottom: 1.875em
}
@media (max-width: 79.9375em) {
.plus-banner {
width: calc(100% + 5em);
left: -2.5em
}
}
.plus-banner__white-bar {
width: 100%;
position: absolute;
bottom: 0;
background-color: #FFFFFF;
height: 2.1875em
}
.is-mobile-ready .plus-banner__white-bar {
height: 3.125em
}
.plus-banner__illustration {
width: calc(100% - 10.9375em);
position: relative;
min-height: 8.125em;
max-width: 57.0625em;
margin: 0 auto
}
.plus-banner__illustration:before {
display: block;
content: "";
width: 100%;
padding-top: 38.40931%
}
.plus-banner__illustration>img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0
}
@media (min-width: 65.5625em) {
.plus-banner__illustration {
min-height: 14.6875em
}
.plus-banner__illustration:before {
display: none
}
}
.plus-banner__illustration img {
width: 100%;
height: auto
}
@media (min-width: 65.5625em) {
.plus-banner__illustration img {
max-width: 1200px;
margin: 0 auto;
position: static
}
}
.is-mobile-ready .plus-banner__illustration {
position: relative;
width: 80%;
margin-top: 6.25em
}
.is-mobile-ready .plus-banner__illustration:before {
display: block;
content: "";
width: 100%;
padding-top: 63.66048%
}
.is-mobile-ready .plus-banner__illustration>img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0
}
.is-mobile-ready .plus-banner {
width: 100vw;
left: -1.25em
}
.plus-banner .plus-banner__header-text {
position: absolute;
top: 1.5625em;
width: 100%;
text-align: center;
z-index: 3;
padding: 0 0.625em
}
@media (max-width: 48em) {
html:not(.is-mobile-ready) .plus-banner .plus-banner__header-text {
font-size: 0.75em
}
}
.plus-banner .plus-banner__header-text h1 {
padding: 0;
border: 0;
font-size: 2.5em
}
.is-mobile-ready .plus-banner .plus-banner__header-text h1,.panel--half .plus-banner .plus-banner__header-text h1 {
font-size: 2em
}
.plus-banner .plus-banner__header-text p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.3125em;
line-height: 1.33333em;
text-align: center;
max-width: 19.04762em;
margin-top: 0.09524em;
margin: 0.09524em auto
}
.fl-1 .plus-banner .plus-banner__header-text p {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .plus-banner .plus-banner__header-text p {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.forgot-password-page {
text-align: center;
position: relative;
top: 1.875em
}
.forgot-password-page.forgot-password-page__logged-in .button {
margin-top: 2.5em
}
.forgot-password-page.forgot-password-page__logged-in .button ~ .button {
margin-left: 0.71429em;
height: 3.57143em
}
.is-mobile-ready .forgot-password-page.forgot-password-page__logged-in .button {
width: 100%;
margin: 2.5em 0 0
}
.is-mobile-ready .forgot-password-page.forgot-password-page__logged-in .button ~ .button {
margin-top: 0.71429em
}
.is-mobile-ready .forgot-password-page {
top: 0
}
.forgot-password-page h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 2em;
color: #17181A;
margin-bottom: 1.125em;
margin-top: 1.125em
}
.fl-1 .forgot-password-page h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .forgot-password-page h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .forgot-password-page h2 {
font-size: 1.625em;
margin-top: 0.38462em
}
.forgot-password-page p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
letter-spacing: 0em;
line-height: 1.4375em;
max-width: 27.14286em;
margin: 2.5em auto 0;
padding: 0
}
.fl-1 .forgot-password-page p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.forgot-password-page a {
text-decoration: underline;
color: #484A4D
}
.forgot-password-page__is-resetting h2 {
margin-bottom: 0.3125em
}
.forgot-password-page .request-password-form--form-container,.forgot-password-page .reset-password-form--form-container {
margin: 0 auto;
padding-bottom: 3.125em;
text-align: left
}
.forgot-password-page .request-password-form--form-container .textfield,.forgot-password-page .request-password-form--form-container .button,.forgot-password-page .reset-password-form--form-container .textfield,.forgot-password-page .reset-password-form--form-container .button {
display: inline-block;
vertical-align: top
}
.forgot-password-page .request-password-form--form-container {
width: 25.3125em
}
.is-mobile-ready .forgot-password-page .request-password-form--form-container {
width: 100%
}
.forgot-password-page .request-password-form--form-container .textfield {
width: 18.125em;
margin-top: 0
}
.is-mobile-ready .forgot-password-page .request-password-form--form-container .textfield {
width: 100%
}
.forgot-password-page .request-password-form--form-container .button {
margin: 0 0 0 0.625em;
width: 7.5em
}
.is-mobile-ready .forgot-password-page .request-password-form--form-container .button {
width: 100%;
margin: 0.625em 0 0
}
.forgot-password-page .request-password-form__has-requested p {
width: 29.375em
}
.is-mobile-ready .forgot-password-page .request-password-form__has-requested p {
width: 100%
}
.forgot-password-page .reset-password-form--form-container {
width: 24.375em
}
.is-mobile-ready .forgot-password-page .reset-password-form--form-container {
width: 100%
}
.forgot-password-page .reset-password-form--form-container .textfield {
width: 100%
}
.forgot-password-page .reset-password-form--form-container .textfield input[type="password"]:focus {
padding-right: 3.125em
}
.is-mobile-ready .forgot-password-page .reset-password-form--form-container .textfield {
width: 100%
}
.is-mobile-ready .forgot-password-page .reset-password-form--form-container .textfield:nth-child(2) {
margin: 0.625em 0 0
}
.forgot-password-page .reset-password-form--form-container .button {
margin: 0.625em 0 0 0.625em;
width: 12.5em
}
.is-mobile-ready .forgot-password-page .reset-password-form--form-container .button--right {
float: none;
width: 100%;
margin-left: 0
}
.forgot-password-page .reset-password-form p {
width: 100%;
margin-top: 0;
margin-bottom: 1.25em
}
.panel__content.help-section {
position: relative;
margin-bottom: 0
}
.panel__content.help-section h1 {
color: #17181A;
margin-bottom: 0.875em
}
.is-mobile-ready .panel__content.help-section h1 {
font-size: 1.625em;
margin-bottom: 0
}
.panel__content.help-section .status {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
position: absolute;
right: 0;
top: 1.125em;
padding-left: 0.9375em
}
.fl-1 .panel__content.help-section .status {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__content.help-section .status a {
text-decoration: none;
color: inherit
}
.panel__content.help-section .status.none {
color: #74D985
}
.panel__content.help-section .status.none:before {
background-color: #74D985
}
.panel__content.help-section .status.minor {
color: #FF9045
}
.panel__content.help-section .status.minor:before {
background-color: #FF9045
}
.panel__content.help-section .status.major,.panel__content.help-section .status.critical {
color: #E65050
}
.panel__content.help-section .status.major:before,.panel__content.help-section .status.critical:before {
background-color: #E65050
}
.is-mobile-ready .panel__content.help-section .status {
position: relative;
top: 0.625em;
margin-bottom: 2.8125em
}
.panel__content.help-section .status:before {
display: inline-block;
width: 0.375em;
height: 0.375em;
content: " ";
border-radius: 0.1875em;
position: absolute;
left: 0;
top: 0.5em
}
.panel__content.help-section form {
position: relative
}
.panel__content.help-section .textfield--search {
width: calc(100% - 110px);
height: 3.75em;
margin-top: 0
}
.panel__content.help-section .textfield--search input {
font-size: 1em;
margin-top: 0;
padding-right: 1.25em;
-webkit-appearance: none
}
.panel__content.help-section .textfield--search input.textfield__field--nolabel {
padding-top: 0
}
.panel__content.help-section .button-search-help {
position: absolute;
right: 0;
top: 0;
width: 7.14286em;
height: 4.28571em;
margin-top: 0;
padding: 0
}
.panel__content.help-section .frequent-questions {
margin-top: 2.8125em
}
.panel__content.help-section .frequent-questions .faq-row {
clear: both;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex
}
.is-mobile-ready .panel__content.help-section .frequent-questions .faq-row {
display: block
}
.panel__content.help-section .frequent-questions .question {
float: left;
width: calc(50% - 0.625em);
min-height: 11.25em;
border: 1px solid #E8EBED;
border-radius: 0.3125em;
margin-bottom: 1.25em;
padding: 1.25em;
text-decoration: none;
position: relative
}
.panel__content.help-section .frequent-questions .question svg {
opacity: 0;
position: absolute;
top: 1.25em;
right: 1.25em
}
.is-mobile-ready .panel__content.help-section .frequent-questions .question {
width: 100%;
float: none;
display: block
}
.panel__content.help-section .frequent-questions .question h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
line-height: 1.27273em;
margin-top: 0;
margin-bottom: 0.625em;
color: #17181A;
max-width: calc(100% - 20px)
}
.fl-1 .panel__content.help-section .frequent-questions .question h2 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .panel__content.help-section .frequent-questions .question h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .panel__content.help-section .frequent-questions .question h2 {
font-size: 1.125em;
line-height: 1.27778em
}
.panel__content.help-section .frequent-questions .question h3 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
line-height: 1.27273em;
margin-top: 0;
margin-bottom: 0.625em;
color: #17181A;
max-width: calc(100% - 20px)
}
.fl-1 .panel__content.help-section .frequent-questions .question h3 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .panel__content.help-section .frequent-questions .question h3 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .panel__content.help-section .frequent-questions .question h3 {
font-size: 1.125em;
line-height: 1.27778em
}
.panel__content.help-section .frequent-questions .question p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
line-height: 1.61538em;
color: #484A4D;
margin-bottom: 0
}
.fl-1 .panel__content.help-section .frequent-questions .question p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__content.help-section .frequent-questions .question span {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #484A4D;
text-decoration: underline
}
.fl-1 .panel__content.help-section .frequent-questions .question span {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__content.help-section .frequent-questions .question:nth-of-type(2n) {
margin-left: 1.25em
}
.is-mobile-ready .panel__content.help-section .frequent-questions .question:nth-of-type(2n) {
margin-left: 0
}
.panel__content.help-section .frequent-questions .question:hover {
background-color: #F7F9FA
}
.panel__content.help-section .frequent-questions .question:hover svg {
opacity: 1
}
.panel__content.help-section .more-answers {
text-align: center
}
.panel__content.help-section .more-answers a {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #409FFF;
text-decoration: none;
text-align: right;
display: block;
font-size: 0.875em
}
.fl-1 .panel__content.help-section .more-answers a {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__content.help-section .more-answers svg {
margin-left: 0.375em
}
.panel__content.help-section .more-answers .button {
display: inline-block;
margin: 1.875em auto 3.125em;
color: #FFFFFF;
text-align: center
}
.is-mobile-ready .panel__content.help-section .more-answers a,.is-mobile-ready .panel__content.help-section .more-answers .button {
width: 100%
}
.panel__content.help-section .social-link-out {
position: relative;
min-height: 1.125em;
width: calc(100% + 10em);
left: -5em;
text-align: center;
background-color: #F7F9FA;
padding: 2.25em 0 2.625em
}
.is-mobile-ready .panel__content.help-section .social-link-out {
width: calc(100% + 2.5em);
left: -1.25em
}
.panel__content.help-section .social-link-out h4 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em
}
.fl-1 .panel__content.help-section .social-link-out h4 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .panel__content.help-section .social-link-out h4 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .panel__content.help-section .social-link-out h4 {
margin: 0 1.5em 1.125em
}
.panel__content.help-section .social-link-out ul {
padding: 0
}
.panel__content.help-section .social-link-out ul li {
margin: 0 0.125em;
display: inline-block
}
.panel__content.help-section .social-link-out ul li svg {
width: 2.5em;
height: 2.5em
}
.home__content h1,.home__content h2 {
font-size: 1.625em
}
.home__content h1 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #FFFFFF;
padding: 0 0.76923em
}
.fl-1 .home__content h1 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .home__content h1 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.home__content h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #17181A;
margin-top: 0
}
.fl-1 .home__content h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .home__content h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.home__content p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
line-height: 1.5em
}
.fl-1 .home__content p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.home__content-header {
position: relative;
width: 100%;
height: 100%;
background-color: #D8D8D8
}
.home__content-illustration {
position: absolute;
width: 100vw;
height: 100%;
left: 0;
top: 0;
background-position: center;
background-size: cover
}
.home__content-intro {
position: relative;
z-index: 1;
text-align: center;
width: 20em;
margin: 0 auto 2.5em;
padding-top: 6.25em
}
.home__content-block,.home__content-block--with-illustration {
text-align: center;
padding: 2.5em 1.25em 0
}
.home__content-block>img,.home__content-block--with-illustration>img {
display: block;
width: calc(100% - 3.75em);
margin: 1.875em auto 0
}
.home__content-block a.button,.home__content-block--with-illustration a.button {
width: 15.71429em;
height: 3.57143em
}
.home__content-block a.button:last-of-type,.home__content-block--with-illustration a.button:last-of-type {
margin-bottom: 1.25em
}
.home__content-block a.button img,.home__content-block--with-illustration a.button img {
display: inline-block;
vertical-align: top;
width: 1.14286em;
height: 1.14286em;
margin-top: 1em;
margin-right: 0.71429em
}
.home__content-block a.button--inline,.home__content-block--with-illustration a.button--inline {
color: #409FFF;
margin-left: auto;
margin-right: auto
}
.home__content-block a#get-ios-app,.home__content-block a#get-android-app,.home__content-block--with-illustration a#get-ios-app,.home__content-block--with-illustration a#get-android-app {
display: none
}
.home__content-block a#get-android-app img,.home__content-block--with-illustration a#get-android-app img {
margin-top: 1.07143em
}
.home__content-block--with-illustration {
background: #FFFFFF;
padding: 2.5em 1.25em 0;
position: relative
}
.home__content-block--with-illustration:before {
content: '';
background: #D8D8D8;
height: 1px;
position: absolute;
top: 0;
left: 1.25em;
right: 1.25em
}
.home__content-block--with-illustration h1 {
color: #17181A
}
.home__content-block--with-illustration img {
position: relative;
z-index: 2;
padding: 0 0 1.25em
}
.home__content-block--with-illustration .background {
position: absolute;
height: 6.25em;
bottom: 0;
left: 0;
right: 0;
background: #FFF0D9
}
.home__content-block--with-illustration ul {
padding: 0 1.25em
}
.home__content-block--with-illustration h2 {
max-width: 11.53846em;
margin: 0 auto 0.76923em
}
.panel__content.home-page {
margin: 0
}
.panel__content.home-page .home__content-intro a.button {
display: inline-block;
line-height: 3.57143em;
width: 15.71429em;
background: #FFFFFF;
border-radius: 0.3125em;
color: #484A4D
}
#growthExpTwo {
margin-bottom: -5em;
margin-top: -1em
}
.legal {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .legal {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.legal .legal__nav-col {
width: 23.55769231%;
float: right
}
.is-mobile-ready .legal .legal__nav-col {
width: 100%;
float: none;
margin-bottom: 2.5em
}
.is-mobile-ready .legal .legal__nav-col .verticalnav__arrow {
display: none
}
.legal .verticalnav__list {
padding: 0;
width: 100%;
float: none
}
.legal .verticalnav__list .verticalnav__item {
width: 100%;
padding-left: 0;
font-size: 1.14286em
}
.legal .verticalnav__list .verticalnav__item a {
color: #17181A
}
.legal .verticalnav__list .verticalnav__item:last-of-type {
box-shadow: none
}
.legal .verticalnav__list .verticalnav__item--active a {
color: #409FFF
}
.legal .legal__content {
width: 74.51923077%;
display: inline-block;
vertical-align: top;
padding-left: 0
}
.is-mobile-ready .legal .legal__content {
width: 100%
}
.legal .date {
font-size: 0.875em;
color: #484A4D;
margin-top: 0.35714em;
display: block;
margin-bottom: 1.42857em
}
.is-mobile-ready .legal .date {
margin-top: 0
}
.legal section {
margin-bottom: 3.75em
}
.legal h3 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
line-height: 1.27273em;
color: #17181A;
margin-bottom: 0.5em
}
.fl-1 .legal h3 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .legal h3 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .legal h3 {
font-size: 1.125em
}
.legal h4 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
line-height: 1.3125em;
margin-bottom: 0.1875em;
margin-top: 1.125em
}
.fl-1 .legal h4 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.legal p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
line-height: 1.5em;
color: #484A4D;
width: calc(100%/3 * 2 - 10px);
display: inline-block;
vertical-align: top;
margin-top: 0
}
.fl-1 .legal p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .legal p {
font-size: 0.875em;
line-height: 1.64286em;
width: 100%
}
.legal ol {
list-style-type: lower-roman
}
.legal ul,.legal ol {
padding: 0 2.85714em 0 2em;
margin: 0 0 2em;
font-size: 0.875em;
line-height: 1.57143em;
color: #484A4D;
width: calc(100%/3 * 2 - 10px)
}
.is-mobile-ready .legal ul,.is-mobile-ready .legal ol {
width: 100%
}
.legal ul li,.legal ol li {
padding-left: 0.57143em
}
.legal aside {
font-size: 0.8125em;
width: calc(100%/3 - 10px);
vertical-align: top;
background-color: #F7F9FA;
padding: 1.53846em;
display: inline-block;
float: right;
border-radius: 5px;
color: #484A4D;
clear: both;
margin-bottom: 0.38462em
}
.is-mobile-ready .legal aside {
line-height: 1.61538em;
width: 100%;
margin-bottom: 2.15385em;
margin-top: 0 !important
}
.legal aside h4 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.23077em;
color: #17181A;
margin-top: 0;
margin-bottom: 0.5em
}
.fl-1 .legal aside h4 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.plus__content h1,.plus__content h3 {
color: #17181A
}
.plus__content h1 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 2em;
width: 100%;
text-align: center;
padding: 1.25em 0;
margin: 0
}
.fl-1 .plus__content h1 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .plus__content h1 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.plus__content h3 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em;
margin: 0 0 0.3125em
}
.fl-1 .plus__content h3 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .plus__content h3 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.plus__content p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
letter-spacing: 0;
line-height: 1.5em;
text-align: left;
margin: 0
}
.fl-1 .plus__content p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.plus__content a.button {
display: inline-block;
text-decoration: none;
color: #FFFFFF;
text-align: center;
margin: 2.1875em auto 0;
line-height: 3.42857em
}
.plus__content a.button.button__signup {
margin-bottom: 2.85714em
}
.is-mobile-ready .plus__content a.button.button__signup {
width: 100%
}
.plus__content a.button--is-hidden-on-desktop {
display: none
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.plus__content a.button--is-hidden-on-desktop {
display: block
}
}
.plus__content hr {
max-width: 65em;
border: 0;
height: 0;
border-top: 1px solid #E8EBED
}
.plus__header-text {
position: absolute;
width: 100%;
text-align: center;
z-index: 3;
margin-bottom: 2.5em
}
.plus__header-text h1 {
padding: 0;
font-size: 2.5em;
border: 0
}
.plus__header-text p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.3125em;
line-height: 1.33333em;
color: #484A4D;
text-align: center;
margin-top: 0.27778em;
max-width: 19.04762em;
margin-left: auto;
margin-right: auto
}
.fl-1 .plus__header-text p {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .plus__header-text p {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.plus__content-header--with-bg {
background-position: left;
background-size: cover;
background-repeat: no-repeat;
height: 23.75em
}
.plus__content-intro {
position: relative;
overflow: hidden;
margin: auto 0;
left: 0;
text-align: center
}
.plus__content-intro h3 {
margin-top: 0
}
.is-mobile-ready .plus__content-intro {
width: 100%;
margin: 0
}
.plus__content-benefits-container {
width: 66.25em;
margin: 0 auto
}
@media (max-width: 79.9375em) {
.plus__content-benefits-container {
width: 100%;
max-width: 65em
}
}
@media (min-width: 48em) {
.plus__content-benefits-container {
border-bottom: solid 1px #E8EBED;
padding: 4.375em 0
}
.plus__content-benefits-container img {
max-width: 20.75em
}
}
.plus__content-benefits-container .plus__content-benefit {
margin-right: 0.625em;
margin-left: 0.625em;
width: calc(100% / 3 - 1.25em)
}
@media (max-width: 48em) {
.plus__content-benefits-container .plus__content-benefit {
width: 100%;
margin-right: 0;
margin-left: 0
}
}
.plus__content-benefit {
max-width: 65em;
margin: 2.5em auto 0
}
.plus__content-benefit img {
width: 100%;
margin-bottom: 1.25em
}
@media (min-width: 48em) {
.plus__content-benefit {
display: inline-block;
vertical-align: top;
margin-top: 0
}
.plus__content-benefit:last-child {
margin-right: 0
}
}
.plus__content-benefit--is-big .plus__content-benefit-text {
-webkit-transition: margin 0.2s linear;
transition: margin 0.2s linear
}
.plus__content-benefit--is-big .plus__content-benefit-image img {
-webkit-transition: width 0.2s linear;
transition: width 0.2s linear
}
@media (min-width: 48em) {
.plus__content-benefit--is-big {
position: relative;
display: block;
width: 100%;
height: 31.25em;
border-bottom: 1px solid #E8EBED;
padding-bottom: 2.5em
}
.plus__content-benefit--is-big .plus__content-benfit-text,.plus__content-benefit--is-big .plus__content-benefit-image {
position: relative;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
top: 50%
}
.plus__content-benefit--is-big .plus__content-benefit-text {
float: left;
width: calc(33.1% - 0.975em);
margin-right: 1.25em;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.plus__content-benefit--is-big .plus__content-benefit-image {
float: right;
width: calc(66.2% - 1.875em);
margin-bottom: 0
}
}
@media (min-width: 79.9375em) {
.plus__content-benefit--is-big .plus__content-benefit-image {
overflow: hidden
}
.plus__content-benefit--is-big .plus__content-benefit-image img {
width: 100%
}
}
.plus__content-benefit--no-margin-top {
margin-top: 0
}
.plus__form {
padding-top: 4.375em
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.panel__content.plus-page {
margin-top: 3.375em
}
}
@media (min-width: 48em) {
.panel__content.plus-page {
margin-top: 0
}
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.panel__content.plus-page {
margin-top: 3.375em
}
}
.signin-form {
margin: 0 -4.375em 1.375em -3.75em
}
@media (max-width: 79.9375em) {
.signin-form {
margin: 0 -1.875em 1.375em -1.25em
}
}
.signin-form--form-container {
width: 100%;
margin: 0 auto
}
.signin-form--form-container h2 {
display: none;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
margin: 0.90909em 0
}
.fl-1 .signin-form--form-container h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .signin-form--form-container h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.signin-form--form-container .textfield,.signin-form--form-container .button {
display: inline-block;
vertical-align: top
}
.signin-form--form-container .textfield {
width: calc(50% - 4.875em)
}
.signin-form--form-container .textfield__field {
color: #17181A
}
.signin-form--form-container .textfield:nth-child(2),.signin-form--form-container .button {
margin-left: 0.625em
}
.signin-form--form-container .button {
width: 9.07143em;
height: 3.57143em;
padding: 1em 0;
margin: 0.71429em 0 0 0.625em
}
.signin-form__options {
font-size: 0.75em;
height: 1em;
color: #919599;
margin: 1.33333em 0
}
.signin-form__options .checkboxinput__checkbox {
width: 1em;
margin: 0 0.75em 0 0;
padding: 0.16667em
}
.signin-form__options .checkboxinput__checkbox svg {
margin-left: -0.08333em
}
.signin-form__options span {
margin: 0 0.33333em
}
.signin-form .forgot-password-link {
color: #919599
}
.is-mobile-ready .signin-form {
margin: 0 0 1.375em
}
.is-mobile-ready .signin-form .signin-form--form-container h2 {
display: block
}
.is-mobile-ready .signin-form .signin-form--form-container .textfield {
width: 100%;
display: block
}
.is-mobile-ready .signin-form .signin-form--form-container .textfield:nth-child(2),.is-mobile-ready .signin-form .signin-form--form-container .button {
margin-left: 0
}
.is-mobile-ready .signin-form .signin-form--form-container button {
display: inline-block;
width: 100%
}
.is-mobile-ready .signin-form .signin-form--form-container .forgot-password-link {
font-size: 0.875em
}
.is-mobile-ready .signin-form .signin-form--form-container .signin-form__options {
font-size: 0.875em;
margin: 1.5em 0
}
.is-mobile-ready .signin-form .signin-form--form-container .signin-form__options .checkboxinput__checkbox {
width: 1.71429em;
height: 1.71429em
}
.is-mobile-ready .signin-form .signin-form--form-container .signin-form__options .checkboxinput__checkbox svg {
margin: 0.07143em 0
}
.panel__content.signin-page {
margin-top: 1.25em
}
.is-mobile-ready .panel__content.signin-page {
margin-top: 4.625em
}
.panel__content.signin-page .signin-content__list .signin-content__wrapper {
margin: 0 auto;
text-align: center
}
.is-mobile-ready .panel__content.signin-page .signin-content__list .signin-content__wrapper {
text-align: left
}
.panel__content.signin-page .signin-content__list .signin-content__list--features,.panel__content.signin-page .signin-content__list .signin-content__list--customise {
display: inline-block;
vertical-align: top;
text-align: left
}
.panel__content.signin-page .signin-content__list h2 {
padding-left: 1.38889em;
margin: 0 0 0.33333em;
font-size: 1.125em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .panel__content.signin-page .signin-content__list h2 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .panel__content.signin-page .signin-content__list h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__content.signin-page .signin-content__cta {
text-align: center;
margin-top: 1.875em
}
.panel__content.signin-page .signin-content__cta .button {
vertical-align: top;
margin-top: 0
}
.is-mobile-ready .panel__content.signin-page .signin-content__cta {
margin-top: 1.875em
}
.is-mobile-ready .panel__content.signin-page .signin-content__cta .button {
width: 100%;
display: block;
margin-top: 0.71429em
}
.panel__content.signin-page .signin-content__cta .button--inline {
color: #409FFF;
height: 3.57143em
}
.panel__content.signin-page .signin-content__cta .button--inline:hover {
color: #0073e5
}
.unsubscribe-expiration p {
line-height: 1.53846em
}
html:not(.is-mobile-ready) .unsubscribe-expiration p {
width: 27.5em
}
.unsubscribe-expiration p strong {
color: #409FFF;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .unsubscribe-expiration p strong {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.logo,.transfer,.nav {
-webkit-animation: appFadeIn .3s ease-in 0 1 forwards;
animation: appFadeIn .3s ease-in 0 1 forwards
}
.nav.nav--with-panel,.nav.nav--loaded {
-webkit-animation: none;
animation: none
}
@-webkit-keyframes appFadeIn {
0% {
opacity: 0
}
100% {
opacity: 1
}
}
@keyframes appFadeIn {
0% {
opacity: 0
}
100% {
opacity: 1
}
}
.languagepicker {
height: 100%
}
.languagepicker.tooltip {
width: auto;
min-width: 7.8125em;
padding: 0;
height: auto
}
.languagepicker.tooltip .scrollable {
height: 10.3125em;
border-radius: 5px
}
.languagepicker.tooltip .scrollable--overflow-bottom:after {
opacity: 0
}
.languagepicker__list {
padding: 0.625em 0
}
.languagepicker__current {
text-decoration: underline;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer
}
.languagepicker__current:hover {
color: #17181A
}
.languagepicker__arrow {
vertical-align: baseline;
padding: 0;
margin: 0 0 0 0.125em;
height: .85em;
width: .85em
}
.pagination {
text-align: center;
margin: 0 auto
}
.pagination__digit {
width: 2.75em;
height: 2.75em;
display: inline-block;
margin-left: 0.625em;
border-radius: 5px;
line-height: 2.75em;
text-align: center;
color: #919599;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .pagination__digit {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.pagination__digit--arrow {
margin-left: 0
}
.pagination__digit--arrow svg {
height: 10px;
width: 10px
}
.pagination__digit--inactive {
cursor: default
}
.pagination__digit--active {
border: 1px solid #D4D7D9;
color: #17181A
}
.is-mobile-ready .pagination__digit {
width: 2.25em;
height: 2.25em;
line-height: 2.25em;
margin-left: 0.5em
} | css/wetransfer.com.css | body {
margin: 0;
font-family: sans-serif;
background: #FFFFFF;
-webkit-font-smoothing: antialiased;
overflow: hidden;
overflow-x: hidden
}
::-moz-selection {
background: #409FFF;
color: #FFFFFF
}
::selection {
background: #409FFF;
color: #FFFFFF
}
*,*:before,*:after {
box-sizing: border-box;
-webkit-tap-highlight-color: transparent
}
.root-node .application {
position: absolute;
z-index: 0;
height: 100%;
width: 100%;
left: 0;
top: 0
}
.no-js body,.is-mobile-ready body {
overflow: scroll
}
.has-egg .transfer {
mix-blend-mode: exclusion
}
.has-egg nav {
mix-blend-mode: exclusion
}
.has-egg .panel {
mix-blend-mode: exclusion
}
@font-face {
font-family:"Fakt Pro Normal";src:url(https://cdn.wetransfer.net/assets/FaktProWeb-Normal-8468a6ca1e0907b839ebc6e8899b4dd39b386b7cfa33743da1ffb30a68c924f6.woff) format("woff");font-style:normal;font-weight:400
}
@font-face {
font-family:"Fakt Pro Normal Cyr";src:url(https://cdn.wetransfer.net/assets/FaktCyrWeb-Normal-0038c5aa5c3243bb2995139e9aeb9519f62f098d0e0f7fab6c8b655a292d857d.woff) format("woff");font-style:normal;font-weight:400
}
@font-face {
font-family:"Fakt Pro Normal Grk";src:url(https://cdn.wetransfer.net/assets/FaktGrkWeb-Normal-9e5daf8f10b7da71bbd3309ebb7c95657cf2e585986d1512700d1c1bec005507.woff) format("woff");font-style:normal;font-weight:400
}
@font-face {
font-family:"Fakt Pro Medium";src:url(https://cdn.wetransfer.net/assets/FaktProWeb-Medium-fd3bbe8c665638bbd898d20dbf232f1bac9d2b11c31eefc006370f43ee8f1994.woff) format("woff");font-style:normal;font-weight:500
}
@font-face {
font-family:"Fakt Pro Medium Cyr";src:url(https://cdn.wetransfer.net/assets/FaktCyrWeb-Normal-0038c5aa5c3243bb2995139e9aeb9519f62f098d0e0f7fab6c8b655a292d857d.woff) format("woff");font-style:normal;font-weight:500
}
@font-face {
font-family:"Fakt Pro Medium Grk";src:url(https://cdn.wetransfer.net/assets/FaktGrkWeb-Medium-8eb863415ca103c7f90b369e54e6be4786c90c30a06ce32f3dca803206bf74dd.woff) format("woff");font-style:normal;font-weight:500
}
@font-face {
font-family:"FreightSans Pro Medium";src:url(https://cdn.wetransfer.net/assets/FreightSans-Pro-Medium-688ccadb090cbe2e1fabae9933cd09d9fd9d0613099b04c8dda35afdae6f51ad.woff) format("woff");font-style:normal;font-weight:400
}
@font-face {
font-family:"FreightSans Pro Semibold";src:url(https://cdn.wetransfer.net/assets/FreightSans-Pro-Semibold-054b231d728f2c6bd02c7fcac7adf79475e47cc8a9509a94bd727a25603c8781.woff) format("woff");font-style:normal;font-weight:400
}
.font__fakt-pro-medium {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif !important
}
.accountinformation__signout {
color: #484A4D;
cursor: pointer;
text-decoration: underline
}
.connectapp img {
display: block;
width: 100%;
margin-bottom: 1.5625em
}
.connectapp p {
margin-bottom: 1.78571em;
color: #484A4D
}
.connectapp p:nth-child(n+2) {
margin-top: 0.35714em
}
.connectapp p:last-of-type {
margin-bottom: 1.42857em
}
.connectapp p a {
color: #000000
}
.connectapp__digit {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
background: #FFFFFF;
color: #409FFF;
border: 0.05em solid #D8D8D8;
border-radius: 1.25em;
font-size: 1.25em;
height: 2.5em;
width: 2.5em;
line-height: 2.5em;
padding: 0 0.85em;
display: inline-block;
text-align: center;
margin: 0 0.41667em 0.83333em 0
}
.fl-1 .connectapp__digit {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .connectapp__digit {
width: calc((100% / 6) - 8px);
height: calc(((100vw - 40px) / 6) - 8px);
padding: 0;
line-height: calc(((100vw - 40px) / 6) - 8px)
}
.is-mobile-ready .connectapp__digit:last-child {
margin-right: 0
}
.connectapp__overviewtitle {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .connectapp__overviewtitle {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.connectapp__connectcode {
height: 5.625em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.is-mobile-ready .connectapp__connectcode {
height: inherit
}
.connectapp__devices {
list-style: none;
font-size: 1.125em;
margin-top: 1.11111em;
margin: 1.11111em 0;
padding: 0
}
.connectapp__device {
height: 5.55556em;
background: #FFFFFF;
box-shadow: 0 -1px 0 0 #E8EBED, 0 1px 0 0 #E8EBED;
letter-spacing: 0;
position: relative
}
.connectapp__deviceicon {
position: absolute;
left: 0.77778em;
top: 1.55556em
}
.connectapp__devicetitle {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
position: absolute;
top: 2em;
left: 3.27778em
}
.fl-1 .connectapp__devicetitle {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .connectapp__devicetitle {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.connectapp__removedevice {
height: 1.33333em;
width: 1.33333em;
position: absolute;
top: 2.11111em;
right: 0.55556em;
cursor: pointer
}
.connectapp__removedevice:hover path {
fill: #919599
}
.invoice {
list-style: none;
margin: 1.25em 0;
padding: 0
}
.invoice__item {
height: 4.375em;
background: #FFFFFF;
box-shadow: 0 -1px 0 0 #E8EBED, 0 1px 0 0 #E8EBED;
color: #17181A;
position: relative
}
.invoice__item:hover .invoice__download {
display: block
}
.invoice__title {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em;
top: 0.75em;
position: absolute
}
.fl-1 .invoice__title {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .invoice__title {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.invoice__details {
position: absolute;
font-size: 0.8125em;
top: 2.84615em;
color: #919599
}
.invoice__download {
position: absolute;
top: 1.5em;
right: 0.625em;
height: 1.5em;
width: 1.5em;
cursor: pointer;
display: block
}
.invoice__download:hover path {
fill: #0073e5
}
.invoice__none {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
text-align: center;
margin-top: 4.375em
}
.fl-1 .invoice__none {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .invoice__none {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding {
position: relative;
height: calc(100vh - 3.75em);
box-sizing: border-box
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding {
padding-top: 0;
height: 100%
}
}
.onboarding__transition-container {
height: 100%
}
.onboarding__form-container,.onboarding__preview-container {
display: inline-block;
vertical-align: top;
width: 50%;
height: 100%
}
.onboarding__form {
position: relative;
width: 100%;
max-width: 27.5em;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
height: 100%;
padding-top: 2.875em;
padding-bottom: 2.875em
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding__form {
padding-top: 0
}
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding__form {
padding-left: 2.5em;
padding-right: 2.5em;
padding-bottom: 1.25em
}
}
.onboarding__form--is-busy .onboarding__form-content-wallpaper-selection-components {
position: relative
}
.onboarding__form--is-busy .onboarding__form-content-wallpaper-selection-components:after {
opacity: 0.4;
width: 100%;
height: 100%
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding__form-container {
width: 100%
}
}
.onboarding--step-1 .onboarding__preview-container,.onboarding--step-2 .onboarding__preview-container,.onboarding--step-3 .onboarding__preview-container {
background: #F7F9FA
}
.onboarding--step-1 .onboarding__preview-background,.onboarding--step-2 .onboarding__preview-background,.onboarding--step-3 .onboarding__preview-background {
opacity: 0
}
.onboarding--step-1 .onboarding__preview-browser-wallpaper,.onboarding--step-2 .onboarding__preview-browser-wallpaper,.onboarding--step-3 .onboarding__preview-browser-wallpaper {
background-color: #919599
}
@media (max-width: 48em) {
.onboarding--step-0 .onboarding__preview-browser {
-webkit-transform: scale(1, 1) translateX(20%);
transform: scale(1, 1) translateX(20%)
}
}
.onboarding--step-0 .onboarding__preview-browser-wallpaper {
background-color: #409FFF
}
.onboarding--step-1 .onboarding__preview-browser {
-webkit-transform: scale(1.5, 1.5);
transform: scale(1.5, 1.5)
}
@media (max-width: 48em) {
.onboarding--step-1 .onboarding__preview-browser {
-webkit-transform: scale(1.5, 1.5) translateX(20%);
transform: scale(1.5, 1.5) translateX(20%)
}
}
@media (min-width: 64em) and (max-width: 65.5625em) {
.onboarding--step-1 .onboarding__preview-browser {
-webkit-transform: scale(1.3, 1.3);
transform: scale(1.3, 1.3)
}
}
.onboarding--step-1 .onboarding__preview-lens {
opacity: 1
}
.onboarding--step-2 .onboarding__preview-browser {
-webkit-transform: scale(1.5, 1.5);
transform: scale(1.5, 1.5)
}
@media (max-width: 48em) {
.onboarding--step-2 .onboarding__preview-browser {
-webkit-transform: scale(1.5, 1.5) translateX(20%);
transform: scale(1.5, 1.5) translateX(20%)
}
}
@media (min-width: 64em) and (max-width: 65.5625em) {
.onboarding--step-2 .onboarding__preview-browser {
-webkit-transform: scale(1.3, 1.3);
transform: scale(1.3, 1.3)
}
}
.onboarding--step-3 .onboarding__preview-browser {
-webkit-transform: scale(2.3, 2.3) translateX(20%);
transform: scale(2.3, 2.3) translateX(20%)
}
@media (max-width: 48em) {
.onboarding--step-3 .onboarding__preview-browser {
-webkit-transform: scale(2.8, 2.8) translateX(35%);
transform: scale(2.8, 2.8) translateX(35%)
}
}
@media (min-width: 64em) and (max-width: 65.5625em) {
.onboarding--step-3 .onboarding__preview-browser {
-webkit-transform: scale(2.5, 2.5) translateX(30%);
transform: scale(2.5, 2.5) translateX(30%)
}
}
.onboarding--step-3 .onboarding__preview-lens {
display: none
}
@media (min-width: 48em) {
.onboarding--step-3 .onboarding__form {
height: auto;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%)
}
.onboarding--step-3 .onboarding__form-content {
min-height: initial
}
.onboarding--step-3 .onboarding__form-buttons {
margin-top: 1.875em
}
}
@media (min-width: 48em) and (min-width: 48em) and (max-width: 65.5625em) {
.onboarding--step-3 .onboarding__form-buttons {
margin-left: initial;
margin-right: initial
}
}
.onboarding--step-3 .onboarding__preview-browser-wallpaper {
height: 12.375em;
top: 1.0625em
}
.onboarding--step-3 .onboarding__preview-browser .download-box {
top: 3.125em
}
.onboarding--step-3 .onboarding__preview-browser .browser #browser-oval-1,.onboarding--step-3 .onboarding__preview-browser .browser #browser-oval-2,.onboarding--step-3 .onboarding__preview-browser .browser #browser-oval-3,.onboarding--step-3 .onboarding__preview-browser .browser #browser-rectangle-2,.onboarding--step-3 .onboarding__preview-browser .browser clippath rect,.onboarding--step-3 .onboarding__preview-browser .browser text {
-webkit-animation-name: onboarding--browser-hide-n-show;
animation-name: onboarding--browser-hide-n-show;
-webkit-animation-duration: 1s;
animation-duration: 1s
}
.onboarding__form-content {
min-height: 28.125em;
height: calc(100% - 2.875em)
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding__form-content {
min-height: initial;
height: auto
}
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding__form-content {
height: calc(100% - 6.25em)
}
}
.onboarding__form-content>h1 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #17181A;
margin-top: 0
}
.fl-1 .onboarding__form-content>h1 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__form-content>p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .onboarding__form-content>p {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .onboarding__form-content>p {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__form-content>h4 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .onboarding__form-content>h4 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .onboarding__form-content>h4 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__form-content>p,.onboarding__form-content>h4 {
font-size: 1.25em;
color: #484A4D
}
@media (max-width: 48em) {
.onboarding__form-content>p,.onboarding__form-content>h4 {
font-size: 0.875em;
line-height: 1.35714em
}
}
.onboarding__form-content>h1,.onboarding__form-content>p,.onboarding__form-content>h4 {
letter-spacing: 0em
}
.onboarding__form-content>p>strong {
color: #000000;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .onboarding__form-content>p>strong {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__form-buttons {
height: 2.875em
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding__form-buttons {
width: 11.875em;
height: auto;
margin: 0 auto
}
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding__form-buttons {
width: 11.875em;
height: auto;
margin: 3.125em auto 0
}
}
.onboarding__form-buttons .button {
margin-top: 0;
width: 13.4375em
}
.onboarding__form-buttons .button--enabled:hover {
background-color: #0073e5
}
.onboarding__form-buttons .button:nth-child(1) {
margin-right: 1.875em
}
.onboarding__form-buttons .button:nth-child(2) {
background: transparent;
color: #409FFF;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .onboarding__form-buttons .button:nth-child(2) {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (min-width: 65.5625em) {
.onboarding__form-buttons .button:nth-child(2) {
width: auto;
text-align: left;
padding-left: 0
}
}
@media (max-width: 48em) {
.onboarding__form-buttons .button:nth-child(2) {
width: 13.4375em;
text-align: center
}
}
.onboarding__form-buttons .button:nth-child(2):hover {
color: #0073e5
}
.onboarding__form-buttons .claimdomain__claim-now-button {
position: relative;
top: 0;
left: 0
}
.onboarding__preview-container {
position: relative;
height: 100%;
border-left: solid 0.0625em #E8EBED;
overflow: hidden
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding__preview-container {
display: none
}
}
.onboarding__preview {
position: relative;
height: 100%
}
.onboarding__preview-background {
position: absolute;
width: 100%;
height: 100%;
background-image: url(https://cdn.wetransfer.net/assets/onboarding-bg-b925b1d0108bf855fe8134bd884e5b9769cb1c677219213d99f46c8669f0a48b.png);
background-position: center;
background-size: 96.1875em 59.4375em;
opacity: 1;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s
}
.onboarding__preview-elements {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%)
}
.onboarding__preview-browser {
position: relative;
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transition: left 0.4s cubic-bezier(0.9, 0, 0.1, 1),-webkit-transform 0.4s cubic-bezier(0.9, 0, 0.1, 1);
transition: left 0.4s cubic-bezier(0.9, 0, 0.1, 1),-webkit-transform 0.4s cubic-bezier(0.9, 0, 0.1, 1);
transition: left 0.4s cubic-bezier(0.9, 0, 0.1, 1),transform 0.4s cubic-bezier(0.9, 0, 0.1, 1);
transition: left 0.4s cubic-bezier(0.9, 0, 0.1, 1),transform 0.4s cubic-bezier(0.9, 0, 0.1, 1),-webkit-transform 0.4s cubic-bezier(0.9, 0, 0.1, 1);
left: 0
}
.onboarding__preview-browser .download-box,.onboarding__preview-browser .labeled-download-box {
position: absolute;
left: 1.25em;
top: 4.375em;
z-index: 2
}
.onboarding__preview-browser .download-box {
width: 4.1875em;
height: 5.9375em;
box-shadow: 0 0 0.5em 0 rgba(0,0,0,0.1),0 0.25em 1.25em 0 rgba(0,0,0,0.13);
border-radius: 0.1875em;
-webkit-transition: top 0.2s cubic-bezier(0.9, 0, 0.1, 1) 0.4s;
transition: top 0.2s cubic-bezier(0.9, 0, 0.1, 1) 0.4s
}
.onboarding__preview-browser h3 {
position: absolute;
bottom: -1.875em;
left: 0.3125em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.625em;
color: #919599;
letter-spacing: 0em;
z-index: 2;
margin: 0
}
.fl-1 .onboarding__preview-browser h3 {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__preview-browser-wallpaper {
position: absolute;
width: 19.1875em;
height: 10.5em;
z-index: 1;
left: 0;
top: 2.5em;
background-size: cover;
background-position: center;
border-bottom-right-radius: 0.25em;
border-bottom-left-radius: 0.25em;
-webkit-transition: background-color 0.4s linear,height 0.2s cubic-bezier(0.9, 0, 0.1, 1) 0.4s,top 0.2s cubic-bezier(0.9, 0, 0.1, 1) 0.4s;
transition: background-color 0.4s linear,height 0.2s cubic-bezier(0.9, 0, 0.1, 1) 0.4s,top 0.2s cubic-bezier(0.9, 0, 0.1, 1) 0.4s
}
.onboarding__preview-lens {
position: absolute;
opacity: 0;
-webkit-transition: opacity 0.3s linear 0.4s;
transition: opacity 0.3s linear 0.4s;
width: 16em;
height: 16em;
overflow: hidden;
border-radius: 8em;
border: solid 0.1875em #D4D7D9;
top: -8.875em;
left: -0.8125em
}
@media (max-width: 48em) {
.onboarding__preview-lens {
left: 3.4375em
}
}
@media (min-width: 64em) and (max-width: 65.5625em) {
.onboarding__preview-lens {
left: 0.625em;
top: -8.875em
}
}
.onboarding__preview-lens .browser {
position: relative;
top: 11.8125em;
left: 3.125em;
-webkit-transform: scale(2.1, 2.1);
transform: scale(2.1, 2.1)
}
@media (min-width: 64em) and (max-width: 65.5625em) {
.onboarding__preview-lens .browser {
top: 12.8125em
}
}
.onboarding__claimdomain {
display: block;
height: 100%
}
.onboarding__claimdomain-textfield {
width: 100%;
margin-left: 0
}
.onboarding__claimdomain-textfield input {
padding-top: 0.25em;
padding-right: 8.4375em;
margin-right: 4.375em
}
.onboarding__claimdomain-textfield .textfield__busy {
right: 8.125em
}
.onboarding__claimdomain-label {
position: absolute;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #919599;
font-size: 1em;
top: 0.9375em;
right: 0.9375em
}
.fl-1 .onboarding__claimdomain-label {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__claimdomain-info {
color: #919599;
font-size: 0.75em;
margin-top: 1.125em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .onboarding__claimdomain-info {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__claimdomain-info strong {
color: #484A4D;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .onboarding__claimdomain-info strong {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding__claimdomain-fields {
position: relative;
margin-top: 4.6875em
}
.onboarding__form-content-wallpaper-selection-components {
margin-top: 2.5em
}
.onboarding__form-content-wallpaper-selection-components:after {
position: absolute;
content: ' ';
top: 0;
left: 0;
width: 0;
height: 0;
background-color: #FFFFFF;
opacity: 0;
-webkit-transition: opacity 0.4s cubic-bezier(0.9, 0, 0.1, 1);
transition: opacity 0.4s cubic-bezier(0.9, 0, 0.1, 1)
}
.onboarding__form-content-wallpaper-selection-components>span {
display: inline-block;
vertical-align: top
}
.onboarding__form-content-wallpaper-selection-components>span:nth-child(2) {
margin-left: 1.1875em
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding__form-content-wallpaper-selection-components>span {
width: 100%
}
.onboarding__form-content-wallpaper-selection-components>span:nth-child(2) {
margin-left: 0
}
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding__form-content-wallpaper-selection-components>span {
width: 100%
}
.onboarding__form-content-wallpaper-selection-components>span:nth-child(2) {
margin-left: 0
}
}
.onboarding .upload-wallpaper {
width: 18.75em;
height: 11.25em
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding .upload-wallpaper {
width: 100%
}
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding .upload-wallpaper {
width: 100%
}
}
.onboarding .upload-wallpaper__image-upload {
height: 7.8125em
}
.onboarding .upload-wallpaper__image-upload .imageupload__pending {
left: 2.6875em;
top: 2.6875em
}
.onboarding .upload-wallpaper__image-upload .imageupload__image {
height: 6.6875em;
width: 6.6875em;
border-radius: 54px
}
.onboarding .upload-wallpaper__image-upload.imageupload--pending .imageupload__image {
opacity: 0.55
}
.onboarding .upload-wallpaper__image-upload .button {
top: 0.9375em
}
.onboarding .upload-wallpaper__image-upload .button:nth-of-type(1) {
left: 8.92857em
}
.onboarding .upload-wallpaper__image-upload .button:nth-of-type(2) {
left: 18.42857em
}
.onboarding .upload-wallpaper__wallpaper {
border-radius: 5px;
margin-bottom: 0.75em;
overflow: hidden;
position: relative;
border: 1px solid #E8EBED;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.onboarding .upload-wallpaper__wallpaper .imageupload__image {
display: none;
height: 100%;
width: 100%
}
.onboarding .upload-wallpaper__wallpaper--active:hover {
background-color: #17181A
}
.onboarding .upload-wallpaper__wallpaper--active:hover .imageupload__image {
opacity: 0.75
}
.onboarding .upload-wallpaper__wallpaper--active:hover .upload-wallpaper__wallpaperaction--add {
display: none
}
.onboarding .upload-wallpaper__wallpaper--active:hover .upload-wallpaper__wallpaperaction--remove {
display: block
}
.onboarding .upload-wallpaper__wallpaper--active .imageupload__image {
display: block
}
.onboarding .upload-wallpaper__wallpaper--large {
width: 100%;
height: 100%
}
.onboarding .upload-wallpaper__wallpaperaction {
display: none
}
.onboarding .upload-wallpaper__wallpaperaction--add {
display: block;
height: auto;
width: 100%;
text-align: center;
padding: 3.4375em 0.9375em
}
.onboarding .upload-wallpaper__wallpaperaction--add svg {
width: 1.5em;
height: 1.5em
}
.onboarding .upload-wallpaper__wallpaperaction--add span {
display: inline-block;
vertical-align: top;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #409FFF;
margin-top: 0.125em;
margin-left: 0.3125em
}
.fl-1 .onboarding .upload-wallpaper__wallpaperaction--add span {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding .upload-wallpaper__wallpaperaction--add p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.75em;
color: #919599;
line-height: 1.3125em
}
.fl-1 .onboarding .upload-wallpaper__wallpaperaction--add p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding .upload-wallpaper__wallpaperaction--remove {
height: 1.5em;
width: 1.5em;
top: calc(50% - 0.75em);
left: calc(50% - 0.75em)
}
.onboarding .upload-wallpaper__button {
display: block;
position: relative;
width: 7.0625em;
height: 7.8125em;
margin-top: 0.9375em
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding .upload-wallpaper__button {
margin: 0 auto 0.9375em
}
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding .upload-wallpaper__button {
margin: 0 auto 0.9375em
}
}
.onboarding .upload-wallpaper__button svg {
-webkit-transition: -webkit-transform 0.2s ease-out;
transition: -webkit-transform 0.2s ease-out;
transition: transform 0.2s ease-out;
transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
-webkit-transform: scale(1, 1);
transform: scale(1, 1)
}
.onboarding .upload-wallpaper__button:hover svg {
-webkit-transform: scale(1.05, 1.05);
transform: scale(1.05, 1.05)
}
.onboarding .upload-wallpaper__button:hover span {
color: #484A4D
}
.onboarding .upload-wallpaper__button span {
display: inline-block;
font-size: 0.875em;
color: #919599;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
text-align: center;
margin-top: 1.375em;
-webkit-transition: color 0.2s linear;
transition: color 0.2s linear
}
.fl-1 .onboarding .upload-wallpaper__button span {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding .upload-wallpaper__add-icon {
position: absolute;
top: 1.3125em;
left: 2.78125em;
height: 1.5em;
width: 1.5em
}
.onboarding .choose-wallpaper {
position: relative;
width: 18.4375em;
height: auto;
border: solid 0.0625em #E8EBED;
border-radius: 0.25em;
padding: 0.625em
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding .choose-wallpaper {
width: auto
}
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding .choose-wallpaper {
width: 16.5625em;
margin: 1.25em auto 0
}
}
.onboarding .choose-wallpaper__button {
display: block;
width: 7em;
height: 8.125em;
margin-top: 1.6875em;
position: relative
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.onboarding .choose-wallpaper__button {
margin-left: auto;
margin-right: auto
}
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.onboarding .choose-wallpaper__button {
margin-left: auto;
margin-right: auto
}
}
.onboarding .choose-wallpaper__button:hover svg,.onboarding .choose-wallpaper__button:hover div {
-webkit-transform: scale(1, 1);
transform: scale(1, 1)
}
.onboarding .choose-wallpaper__button:hover span {
color: #484A4D
}
.onboarding .choose-wallpaper__button svg,.onboarding .choose-wallpaper__button div {
-webkit-transition: -webkit-transform 0.2s ease-out;
transition: -webkit-transform 0.2s ease-out;
transition: transform 0.2s ease-out;
transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
-webkit-transform: scale(0.9, 0.9);
transform: scale(0.9, 0.9);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d
}
.onboarding .choose-wallpaper__button span {
display: inline-block;
font-size: 0.875em;
color: #919599;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
text-align: center;
margin-top: 1.375em;
-webkit-transition: color 0.2s linear;
transition: color 0.2s linear
}
.fl-1 .onboarding .choose-wallpaper__button span {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.onboarding .choose-wallpaper__button div {
position: absolute;
top: 0.625em;
left: 0.0625em;
width: 6.875em;
height: 3.875em;
background-image: url(https://cdn.wetransfer.net/assets/cards-stack-image-4dc62d912178cf5aa22d236e472604c85b62c85109ada346d925dccf7b40ba85.png);
background-size: cover;
background-repeat: no-repeat;
border-radius: 3px
}
.onboarding .choose-wallpaper a {
display: inline-block;
box-sizing: border-box;
vertical-align: top;
width: 5.0625em;
height: 3.25em;
margin: 0.3125em;
overflow: hidden;
text-align: center;
border: solid 0.125em #FFFFFF;
border-radius: 0.3125em;
background-size: cover
}
@media (min-width: 64em) and (max-width: 65.5625em) {
.onboarding .choose-wallpaper a {
width: 6.375em;
height: 4.0625em
}
}
@media (max-width: 48em) {
.onboarding .choose-wallpaper a {
width: 6.9375em;
height: 4.375em
}
}
.onboarding .choose-wallpaper a>div {
position: relative;
width: 100%;
height: 100%
}
.onboarding .choose-wallpaper a>div:after {
position: absolute;
content: '';
width: 1.375em;
height: 1.375em;
border-radius: 0.75em;
border: solid 0.125em #FFFFFF;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
top: 50%;
left: 50%
}
.onboarding .choose-wallpaper a svg {
position: absolute;
width: 0.75em;
height: 0.75em;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
top: 52%;
left: 50%
}
.onboarding .choose-wallpaper a.choose-wallpaper--is-selected>div {
background-color: rgba(64,159,255,0.7)
}
.onboarding__form-mode-is-default .upload-wallpaper,.onboarding__form-mode-is-default .choose-wallpaper__button,.onboarding__form-mode-is-upload-wallpaper .upload-wallpaper,.onboarding__form-mode-is-upload-wallpaper .choose-wallpaper__button {
display: block
}
.onboarding__form-mode-is-default .upload-wallpaper__button,.onboarding__form-mode-is-default .choose-wallpaper,.onboarding__form-mode-is-upload-wallpaper .upload-wallpaper__button,.onboarding__form-mode-is-upload-wallpaper .choose-wallpaper {
display: none
}
.onboarding__form-mode-is-choose-wallpaper .choose-wallpaper,.onboarding__form-mode-is-choose-wallpaper .upload-wallpaper__button {
display: block
}
.onboarding__form-mode-is-choose-wallpaper .upload-wallpaper,.onboarding__form-mode-is-choose-wallpaper .choose-wallpaper__button {
display: none
}
.panel__content.user-onboarding {
margin: 0
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.panel__content.user-onboarding h1 {
font-size: 1.75em;
line-height: 1.10714em
}
}
@-webkit-keyframes onboarding--browser-hide-n-show {
0% {
opacity: 0
}
70% {
opacity: 0
}
100% {
opacity: 1
}
}
@keyframes onboarding--browser-hide-n-show {
0% {
opacity: 0
}
70% {
opacity: 0
}
100% {
opacity: 1
}
}
.payment {
max-width: 23.75em
}
.payment__button.button {
margin-top: 0.35714em;
margin-right: 0.625em
}
.payment__button.button.button--inline {
height: 3.57143em
}
.payment__warning {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: red;
margin-bottom: 40px
}
.fl-1 .payment__warning {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.payment p .payment__notice {
color: #E65050
}
.payment p strong {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .payment p strong {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.complete-order__your-details {
width: 45%
}
.complete-order__order-details {
width: 55%
}
.complete-order__details,.complete-order p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
line-height: 1.6
}
.fl-1 .complete-order__details,.fl-1 .complete-order p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.complete-order p {
max-width: 27.14286em
}
.complete-order h2 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.14286em;
margin-bottom: 0.625em
}
.fl-1 .complete-order h2 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.complete-order h2 a {
display: inline-block;
margin-left: 0.41667em;
font-size: 0.75em;
text-decoration: none;
color: #919599
}
.complete-order__details.row .row {
margin: 0
}
.complete-order__details.row .row .col {
width: 70%
}
.complete-order__details.row .row .col ~ .col {
float: right;
width: 25%;
text-align: right
}
.complete-order__product {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .complete-order__product {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.complete-order__extra {
font-size: 0.85714em;
color: #919599
}
.complete-order__total-price {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.14286em
}
.fl-1 .complete-order__total-price {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.complete-order__complete-btn {
float: right
}
.complete-order hr {
height: 1.42857em;
border: 0;
border-top: 1px solid #D8D8D8
}
.contact {
position: relative
}
.contact__actions {
position: absolute;
top: 1em;
right: 0
}
.is-mobile-ready .contact__actions {
position: relative;
right: inherit;
top: inherit;
margin-top: 1.71429em
}
.contact__search.textfield {
display: inline-block;
vertical-align: top;
width: 18.75em;
margin: 0
}
.contact__search.textfield input {
padding-left: 2.75em
}
.is-mobile-ready .contact__search.textfield {
width: 100%
}
.contact a.contact__add-btn {
color: #409FFF;
text-decoration: underline;
cursor: pointer
}
.contact a.contact__add-btn:hover {
color: #0073e5
}
.contact__info {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
height: 1.71429em;
margin-top: 2.85714em;
color: #919599;
border-bottom: 1px solid #E8EBED
}
.fl-1 .contact__info {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .contact__info {
padding: 0.57143em 0 0;
margin-top: 1.57143em;
line-height: inherit
}
.contact__info ~ .contact__list {
margin-top: 0
}
.contact__list {
list-style: none;
padding: 0;
margin: 2.5em 0 1.875em
}
.contact__add-first {
cursor: pointer;
text-decoration: underline
}
.contact-item {
height: 3.75em;
border-bottom: 1px solid #E8EBED;
position: relative
}
.is-mobile-ready .contact-item {
height: inherit;
padding: 1em 0
}
.is-mobile-ready .contact-item__email,.is-mobile-ready .contact-item__meta {
position: static;
left: inherit;
display: block;
line-height: inherit
}
.is-mobile-ready .contact-item__email {
font-size: 1em;
margin-bottom: 0.25em
}
.is-mobile-ready .contact-item__meta {
font-size: 0.8125em;
max-height: 1.0625em;
line-height: 1.0625em
}
.contact-item--info {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
height: 1.71429em;
margin-top: 1.28571em;
color: #919599
}
.fl-1 .contact-item--info {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.contact-item__add {
height: 3.75em;
width: 2.0625em;
padding: 1.125em 0.5em 1.125em 0.0625em;
cursor: pointer;
pointer-events: all
}
.contact-item__add-tooltip.tooltip {
padding: 0.625em 0.875em;
margin-left: -0.3125em;
width: auto
}
.contact-item__email {
position: absolute;
line-height: 3.16667em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em;
left: 2em;
width: 16.66667em;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
pointer-events: none
}
.fl-1 .contact-item__email {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .contact-item__email {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.contact-item__email span {
color: #409FFF
}
.contact-item__meta {
position: absolute;
left: 25.75em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #919599;
width: 21.42857em;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
line-height: 4.35714em
}
.fl-1 .contact-item__meta {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.contact-item__meta span {
color: #409FFF
}
.contact-item__more {
width: 3.625em;
position: absolute;
right: 0;
top: 0.1875em;
padding: 1.25em;
cursor: pointer;
pointer-events: all;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.contact-item__more:hover path:first-of-type,.contact-item__more:focus path:first-of-type {
fill: #409FFF
}
.contact-item__checkbox.checkboxinput {
position: absolute;
left: 1.25em
}
.contact-item--active,.contact-item--selected {
background-color: #F7F9FA
}
.contact-item--no-add .contact-item__add {
display: none
}
.contact-item--no-add .contact-item__email {
left: 0;
width: 19.16667em
}
.contact-item--selecting {
cursor: pointer
}
.contact-item--selecting .contact-item__add {
display: none
}
.contact-item--selecting .contact-item__email {
left: 3.61111em;
width: 15.55556em
}
.contact-item--selecting .contact-item__more {
display: none
}
.dropzone {
background: rgba(64,159,255,0.8);
position: absolute;
overflow: hidden;
z-index: 50;
opacity: 0;
height: 0;
width: 100%;
left: 0;
top: 0;
-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;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
color: #FFFFFF
}
.dropzone__title {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 2.5em;
margin: 0 0 0.25em
}
.fl-1 .dropzone__title {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .dropzone__title {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.dropzone__text {
line-height: 1.3;
text-align: center;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
white-space: pre-wrap;
font-size: 0.875em
}
.fl-1 .dropzone__text {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.emptystate {
margin-top: 5em;
text-align: center
}
.emptystate__text {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
white-space: pre-wrap;
margin-top: 0.45455em;
font-size: 1.375em;
margin-bottom: 0.36364em
}
.fl-1 .emptystate__text {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .emptystate__text {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.emptystate__description {
padding: 0 1.42857em;
max-width: 22.14286em;
font-size: 0.875em;
line-height: 1.42857em;
color: #484A4D;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
margin: 0 auto
}
.fl-1 .emptystate__description {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .emptystate__description {
padding: 0
}
.is-mobile-ready .emptystate {
margin-top: 2.5em
}
.is-mobile-ready .emptystate__text {
font-size: 1.125em;
margin-top: 0.55556em;
margin-bottom: 0.55556em
}
.errorbar {
width: 100%;
height: 3.125em;
background: #E65050;
border-radius: 0.3125em 0.3125em 0 0;
position: absolute;
bottom: 0;
left: 0;
z-index: 10
}
.errorbar__text {
color: white;
position: absolute;
top: 1.25em;
left: 1.5em
}
.errorbar__close {
position: absolute;
height: 1.5em;
width: 1.5em;
top: 0.9375em;
right: 1.5em;
cursor: pointer
}
.filelist {
list-style: none;
padding: 0;
margin: 0
}
.filelist--pending {
opacity: .35
}
.filelist__item {
position: relative;
padding: 0.5em 0.625em;
margin: 0 10px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
border-bottom: 1px solid #E8EBED
}
.is-mobile-ready .filelist__item {
padding: 1.3125em 0 1.1875em;
margin: 0
}
.filelist__name {
display: block;
padding: 0;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1.36364em;
font-size: 0.875em;
color: #17181A;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden
}
.fl-1 .filelist__name {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.filelist__size {
display: block;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.6875em;
line-height: 1.36364em;
color: #919599
}
.fl-1 .filelist__size {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.filelist__spinner,.filelist__action {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, #F7F9FA 35%, #F7F9FA 100%);
background: linear-gradient(to right, rgba(255,255,255,0) 0%, #F7F9FA 35%, #F7F9FA 100%);
position: absolute;
width: 3.125em;
bottom: 0.3125em;
right: 0.35714em;
top: 0.3125em
}
.filelist__spinner>svg,.filelist__spinner .spinner,.filelist__action>svg,.filelist__action .spinner {
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
position: absolute;
right: 0;
top: 50%
}
.filelist__spinner {
right: 0.35714em
}
.filelist__spinner .spinner__circle {
float: left;
clear: both
}
.filelist__action {
cursor: pointer;
opacity: 0;
visibility: hidden;
-webkit-transition: opacity 0.2s;
transition: opacity 0.2s
}
.filelist__action svg {
position: absolute;
height: 1.5em;
width: 1.5em;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.filelist__action svg path {
fill: #409FFF
}
.filelist__action svg:hover path {
fill: #0073e5
}
.filelist__item:hover .filelist__action,.has-touch .filelist__action {
opacity: 1;
visibility: visible
}
.is-mobile-ready .filelist__item .filelist__action,.filelist__action--downloaded {
display: block;
opacity: 1;
visibility: visible
}
.is-mobile-ready .downloader__heading--1-files+.filelist .filelist__item .filelist__action {
display: none
}
.footer {
width: 100%;
height: 3.75em;
padding: 1.25em 1em;
background-color: #F4F4F4;
box-shadow: 0 0.125em 0.25em 0 rgba(0,0,0,0.5)
}
.footer .logo {
position: static;
top: 0;
left: 0;
vertical-align: middle
}
.footer .languagepicker__arrow {
width: 0.75em;
height: 0.75em;
position: relative;
top: 0.1875em;
vertical-align: top
}
.footer .languagepicker__current {
display: inline-block;
vertical-align: top;
margin-left: 1.23077em;
margin-top: 0.23077em;
font-size: 0.8125em;
text-decoration: none;
color: #919599;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .footer .languagepicker__current {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.footer .footer__social-links {
float: right
}
.footer .footer__social-links svg {
vertical-align: middle;
margin-top: 0.125em;
margin-left: 1.25em
}
.account__content {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
width: 65%
}
.fl-1 .account__content {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.account__content form {
width: 100%
}
.account__content p {
font-size: 0.875em;
line-height: 1.5em
}
.account__content h5 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #17181A
}
.fl-1 .account__content h5 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .account__content {
width: 100%;
position: relative;
padding: 0
}
.is-mobile-ready .account__content form {
width: inherit
}
.is-mobile-ready .account__content hr {
display: block;
margin: 20px 0;
border: 0;
height: 1px;
width: 100%;
background: #F4F4F4
}
.is-mobile-ready .account__content .accountInformation form button[type="submit"],.is-mobile-ready .account__content .changepassword .button,.is-mobile-ready .account__content .payment>.button,.is-mobile-ready .account__content .payment>a .button {
float: none;
width: 100%
}
.account__content .panel__loading {
left: 5em;
-webkit-transform: translateX(0%);
transform: translateX(0%);
width: 21.875em
}
.account__menu {
width: 35%
}
.account__menu .verticalnav__list {
float: none
}
.account__menu .verticalnav__item {
width: 100%;
max-width: 13.3125em
}
.account__signout {
display: block;
text-align: center;
border-radius: 0.35714em;
border: 0.07143em solid #409FFF;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
width: 100%;
max-width: 15.21429em;
color: #409FFF;
padding: 0.71429em 1.42857em;
cursor: pointer
}
.fl-1 .account__signout {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .account__signout {
width: auto;
position: absolute;
right: 0;
top: -0.5em
}
.account__signout:hover {
border-color: #0073e5;
color: #0073e5
}
.account__back-button {
color: #409FFF !important;
text-decoration: none;
margin-left: 1.42857em;
font-size: 0.875em
}
.account__mobile-header {
position: relative;
padding-bottom: 1.875em;
border-bottom: 1px solid #F4F4F4
}
.account__content.col {
padding-right: 3.625em
}
.claimdomain .form-notification {
margin-bottom: -0.9375em
}
.is-mobile-ready .claimdomain .form-notification {
margin-top: 0.9375em
}
.claimdomain button.button.button--disabled {
opacity: 0.4;
color: #17181A;
cursor: default
}
.claimdomain__fields {
margin: 0 auto;
width: 28.125em;
margin-top: 1.25em
}
.is-mobile-ready .claimdomain__fields {
width: 100%
}
.claimdomain__textfield {
display: inline-block;
border-color: transparent;
width: 20.625em
}
.claimdomain__textfield input {
padding-right: 36.5%;
text-overflow: clip
}
.is-mobile-ready .claimdomain__textfield {
width: inherit;
border: 0;
margin: 0.625em 0
}
.is-mobile-ready .claimdomain__textfield input {
padding-right: 43%
}
.claimdomain__overlay {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
top: 0;
line-height: 3.5em;
left: 64%;
position: absolute;
color: #000000
}
.fl-1 .claimdomain__overlay {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .claimdomain__overlay {
line-height: 3.57143em;
right: 2.375em;
left: 58%
}
.claimdomain__claim-now.button {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: inline-block;
border: 1px solid white !important;
width: 7.85714em;
position: absolute;
margin-left: 0.71429em;
margin-top: 0.71429em
}
.fl-1 .claimdomain__claim-now.button {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .claimdomain__claim-now.button {
position: static;
width: 100%;
margin: 0 auto
}
.contact-add {
margin-top: 1.25em
}
.contact-add__title {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #919599;
font-size: 0.875em;
margin-bottom: 0.25em
}
.fl-1 .contact-add__title {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.contact-add__form {
height: 3.75em;
width: 100%;
box-shadow: 0 -1px 0 0 #E8EBED, 0 1px 0 0 #E8EBED;
position: relative
}
.contact-add__form button.hide {
position: absolute;
left: -9999px;
width: 1px;
height: 1px
}
.contact-add__form button {
margin: 0
}
.contact-add__form button:first-of-type {
margin-right: 0.625em
}
.contact-add__form button.cancel {
background: #FFFFFF;
color: #409FFF
}
.contact-add__form--invalid {
height: 6.5em
}
.contact-add__form--edit {
box-shadow: 0 0, 0 1px 0 0 #E8EBED
}
.contact-add__form .form-notification {
position: absolute;
top: 3.3125em
}
.is-mobile-ready .contact-add__form {
height: inherit;
padding: 0.75em 0
}
.contact-add__field.textfield {
margin-top: 0.75em;
width: calc(((100% - 54px) / 3) - 10px);
clear: none;
float: left;
height: 2.25em;
border-radius: 3px;
margin-right: 0.625em
}
.contact-add__field.textfield .textfield__valid,.contact-add__field.textfield .textfield__info,.contact-add__field.textfield .textfield__busy {
top: 0.5625em
}
.contact-add__field.textfield input {
border-radius: 3px;
padding-right: 1.78571em;
padding-left: 0.71429em
}
.is-mobile-ready .contact-add__field.textfield {
float: none;
display: block;
width: 100%;
margin: 0 0 0.625em
}
.is-mobile-ready .contact-add__field.textfield input {
padding-left: 0.75em
}
.contact-add__field .textfield__valid,.contact-add__field .textfield__info,.contact-add__field .textfield__busy {
top: 0.625em
}
.contact-add__add-btn,.contact-add__cancel-btn {
height: 1.5em;
width: 1.5em;
position: absolute;
top: 1.0625em;
cursor: pointer
}
.contact-add__add-btn:focus,.contact-add__add-btn:hover,.contact-add__cancel-btn:focus,.contact-add__cancel-btn:hover {
outline: none
}
.contact-add__add-btn:focus path,.contact-add__add-btn:hover path,.contact-add__cancel-btn:focus path,.contact-add__cancel-btn:hover path {
fill: #409FFF
}
.contact-add__add-btn {
right: 1.6875em
}
.contact-add__cancel-btn {
right: 0em
}
.autocomplete {
padding: 0;
margin: 0;
list-style: none;
position: relative
}
.autocomplete__list {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
height: 100%;
position: absolute;
top: 53px;
z-index: 20;
border-radius: 5px;
border: 1px solid #BABCBF;
background-color: #FFFFFF;
width: 100%;
overflow: hidden
}
.fl-1 .autocomplete__list {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.autocomplete__list--hidden {
display: none
}
.autocomplete__item {
height: 2.56875em;
line-height: 2.56875em;
font-size: 0.875em;
border-bottom: 1px solid #BABCBF;
padding-left: 20px;
cursor: pointer
}
.autocomplete__item span {
color: #409FFF
}
.autocomplete__item:last-child {
border-bottom: 0
}
.autocomplete__item--selected,.autocomplete__item:hover {
background-color: #409FFF;
color: #FFFFFF
}
.autocomplete__item--selected span,.autocomplete__item:hover span {
color: #FFFFFF
}
.button {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
background: #D4D7D9;
color: #FFFFFF;
text-decoration: none;
border-radius: 5px;
padding: 0 1.25em;
font-size: 0.875em;
margin-top: 1.28571em;
border: 0;
height: 3.57143em;
-webkit-transition: border-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),background-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),color 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: border-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),background-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),color 0.2s cubic-bezier(0.77, 0, 0.175, 1)
}
.fl-1 .button {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__content .button {
color: #FFFFFF
}
.panel__content .button--inline {
color: #409FFF
}
.button--right {
float: right
}
.button--enabled {
color: #FFFFFF;
background: #409FFF;
cursor: pointer
}
.button--enabled:hover,.button--enabled:focus {
background-color: #0073e5
}
.button--disabled {
cursor: default
}
.button--actionbar-cancel {
margin-left: 0.625em;
border: 1px solid #FFFFFF
}
.button--actionbar-cancel:hover {
border-color: rgba(255,255,255,0.8);
background: transparent;
color: rgba(255,255,255,0.8)
}
.button--actionbar-action {
background: #FFFFFF;
color: #17181A
}
.button--actionbar-action.button--disabled {
opacity: 0.4
}
.button--actionbar-action:hover {
background: rgba(255,255,255,0.8)
}
.button:focus {
outline: 0
}
.button--inline {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
cursor: pointer;
font-size: 0.875em;
height: 2.5em;
padding: 0 1.14286em;
margin-right: 0.71429em;
background-color: #FFFFFF;
border: 1px solid #409FFF;
color: #409FFF
}
.fl-1 .button--inline {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.button--inline.button--disabled {
border: 1px solid #BABCBF;
color: #BABCBF;
cursor: default;
pointer-events: none
}
.button--inline:hover,.button--inline:focus {
border-color: #0073e5;
color: #0073e5;
background-color: #FFFFFF
}
button[type="button"].button--actionbar-action {
background: #FFFFFF;
color: #17181A
}
button[type="button"].button--actionbar-action.button--disabled {
opacity: 0.4
}
button[type="button"].button--actionbar-action:hover {
background: rgba(255,255,255,0.8)
}
button[type="button"].button--actionbar-action:focus {
outline: 0
}
.panel__content a.button {
display: inline-block;
color: #409FFF;
line-height: 3.57143em
}
.panel__content a.button.button--enabled {
color: #FFFFFF
}
.calendar {
width: 15.25em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
padding: 0 1em
}
.calendar__grid {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
width: 100%
}
.calendar__header {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
height: 2em;
color: #17181A;
text-align: center;
line-height: 1.875em;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
font-size: 0.875em;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between
}
.fl-1 .calendar__header {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.calendar__nav {
height: 2.07143em;
cursor: pointer;
padding: 0.71429em 0.85714em
}
.calendar__nav--next {
-webkit-transform: rotate(180deg);
transform: rotate(180deg)
}
.calendar__nav--next:hover,.calendar__nav--prev:hover {
fill: #484A4D
}
.calendar__item {
text-align: center;
height: 1.85714em;
width: 1.85714em;
cursor: pointer;
font-size: 0.875em;
line-height: 2;
margin: 0 0.125em;
border-radius: 0.3125em
}
.calendar__item--weekday {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #BABCBF;
font-size: 0.75em;
width: 2.20833em;
cursor: default;
pointer-events: none
}
.fl-1 .calendar__item--weekday {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.calendar__item:hover {
background: #F4F4F4
}
.calendar__item--match {
background-color: #409FFF;
color: #FFFFFF
}
.calendar__item--match:hover {
background-color: #0073e5
}
.calendar__item--disabled {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #BABCBF;
cursor: default;
pointer-events: none
}
.fl-1 .calendar__item--disabled {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.calendar__item--today {
color: #409FFF
}
.checkboxinput {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #484A4D;
margin-top: 1.53846em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
height: 1.84615em;
position: relative
}
.fl-1 .checkboxinput {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.checkboxinput__checkbox {
display: inline-block;
position: relative;
vertical-align: middle;
height: 100%;
width: 1.84615em;
background: #FFFFFF;
border-radius: 20%;
border: 0.07692em solid #BABCBF;
padding: 0.23077em;
margin-right: 0.625em
}
.checkboxinput__checkbox:hover {
border-color: #919599
}
.checkboxinput__checkbox--checked {
border-color: #409FFF;
background: #409FFF
}
.checkboxinput__checkbox--checked:hover {
border-color: #0073e5;
background: #0073e5
}
.checkboxinput__checkbox svg {
height: 80%;
position: absolute
}
.checkboxinput__field {
width: 0.0625em;
height: 0.0625em;
position: absolute;
top: 50%;
z-index: -1;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none
}
.checkboxinput__field:focus {
outline: none
}
.checkboxinput__field:focus ~ .checkboxinput__checkbox {
box-shadow: 0 0 0.15385em 0.15385em #409FFF
}
.is-mobile .checkboxinput__field {
width: inherit
}
.checkboxinput__label {
display: inline-block;
vertical-align: middle
}
.form-notification {
width: 100%;
min-height: 2.125em;
color: #FFFFFF;
border-radius: 5px;
margin-top: 0.25em
}
.form-notification__message {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
display: block;
height: 100%;
left: 1.53846em;
padding: 0.92308em 0.76923em;
overflow: hidden;
text-overflow: ellipsis
}
.fl-1 .form-notification__message {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.form-notification__icon {
height: 0.8125em;
width: 0.8125em;
float: left;
margin: 0.9375em 0 0 1.125em
}
.form-notification__icon svg {
width: 0.75em;
height: 1.875em
}
.form-notification--error {
background-color: #E65050
}
.form-notification--validated {
position: relative;
background-color: #409FFF
}
.form-notification--validated::before {
position: absolute;
left: 1.125em;
top: 0.875em;
content: '';
display: inline-block;
width: 0.8125em;
height: 0.8125em;
border-radius: 0.5em;
background-color: #FFFFFF;
z-index: 0
}
.form-notification--validated .form-notification__message {
left: 1.25em;
margin-left: 1.875em;
padding: 0.9375em 1.25em
}
.form-notification--validated .form-notification__icon {
position: absolute;
z-index: 1;
height: 0.625em;
width: 0.625em;
float: left;
margin: 1em 0 0 1.25em;
color: #409FFF
}
.imageupload {
position: relative
}
.imageupload--fullclick {
cursor: pointer
}
.imageupload__input {
position: absolute;
opacity: 0;
height: 1px;
width: 1px;
left: 0;
bottom: 0
}
.imageupload__add-element,.imageupload__remove-element {
position: absolute;
cursor: pointer
}
.imageupload__pending {
position: absolute;
top: calc(50% - 12px);
left: calc(50% - 12px);
height: 1.5em;
width: 1.5em
}
.imageupload__image {
background-size: cover;
background-position: center
}
.planselector {
border-radius: 5px;
width: 15.3125em;
background: #E8EBED;
float: left;
margin: 0 0 1.875em;
position: relative;
cursor: pointer;
color: #484A4D;
text-align: center
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.planselector {
width: 100%;
margin-bottom: 1.25em
}
}
.planselector ~ .planselector {
margin-left: 1.125em
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.planselector ~ .planselector {
margin-left: 0
}
}
.planselector--checked {
background: #409FFF;
color: #FFFFFF
}
.planselector--checked .planselector__sublabel {
opacity: 0.8
}
.planselector--disabled {
opacity: 0.2;
pointer-events: none;
cursor: default
}
.planselector__price {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: block;
margin-top: 0.8em;
font-size: 3.75em;
width: 100%
}
.fl-1 .planselector__price {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .planselector__price {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.planselector__price {
font-size: 2.5em
}
}
.planselector__label {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em;
display: block
}
.fl-1 .planselector__label {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .planselector__label {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.planselector__copy {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: block;
white-space: pre-wrap;
font-size: 0.8125em;
line-height: 1.30769em;
width: 100%;
padding: 1.84615em 1.53846em 2.30769em
}
.fl-1 .planselector__copy {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.planselector__copy {
padding: 1.07692em 0.38462em 1.53846em
}
}
.planselector__subcopy {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .planselector__subcopy {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.planselector__radio {
background: #FFFFFF;
height: 2em;
width: 2em;
position: absolute;
top: 1.125em;
left: 1.125em;
border-radius: 1em;
padding: 0.4375em 0.3125em
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.planselector__radio {
width: 1.5625em;
height: 1.5625em;
top: 0.625em;
left: 0.625em
}
}
.planselector__field {
position: absolute;
z-index: 1;
top: -3px;
left: -3px;
height: 100%;
width: 100%;
border-radius: 12px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
cursor: pointer;
opacity: 0
}
.planselector__field:focus {
outline: none
}
.radioinput__field {
position: absolute;
visibility: hidden
}
.radioinput__field:checked ~ .radioinput__label {
color: #409FFF
}
.radioinput__field:checked ~ .radioinput__check:before {
background-color: #409FFF
}
.radioinput__label {
cursor: pointer;
font-size: 0.875em;
display: block;
height: 1.42857em;
padding-left: 1.66667em
}
.radioinput__check {
cursor: pointer;
position: absolute;
background-color: #FFFFFF;
border: 1px solid #BABCBF;
border-radius: 100%;
height: 1.125em;
width: 1.125em
}
.radioinput__check:before {
position: absolute;
content: '';
border-radius: 100%;
height: 0.5em;
width: 0.5em;
top: 0.25em;
left: 0.25em;
margin: auto
}
.searchbox input {
padding-left: 2.625em
}
.searchbox__icon {
position: absolute;
height: 0.875em;
width: 0.875em;
top: 1.125em;
left: 1em
}
.searchbox__remove {
position: absolute;
right: 0.625em;
top: 1em;
height: 1.125em;
cursor: pointer;
z-index: 2
}
.textfield {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
background: #FFFFFF;
color: #919599;
border: 1px solid #BABCBF;
border-radius: 5px;
height: 50px;
margin-top: 0.625em;
position: relative;
clear: both
}
.fl-1 .textfield {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.textfield--invalid {
border: 1px solid #E65050
}
.textfield--readonly {
background-color: #F7F9FA
}
.textfield--readonly input {
color: #919599;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.textfield--nolabel .textfield__field {
padding-top: 0
}
.textfield__valid,.textfield__info,.textfield__busy {
position: absolute;
right: 0.9375em;
top: 1em;
height: 0.8125em
}
.textfield__valid svg,.textfield__info svg,.textfield__busy svg {
height: 0.8125em;
width: 0.8125em
}
.is-mobile-ready .textfield__valid,.is-mobile-ready .textfield__info,.is-mobile-ready .textfield__busy {
height: 2.6875em;
top: 0.25em;
right: 0
}
.is-mobile-ready .textfield__valid svg,.is-mobile-ready .textfield__info svg,.is-mobile-ready .textfield__busy svg {
height: 2.6875em;
width: 2.6875em;
padding: 0.9375em
}
.textfield__label {
font-size: 0.875em;
position: absolute;
top: 1.07143em;
left: 1.42857em;
z-index: 1;
color: #919599;
-webkit-transition: 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: 0.2s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.textfield__label--focused {
font-size: 0.6875em;
top: 0.63636em;
left: 1.81818em;
z-index: 3
}
.textfield--actionbar-input,.textfield--actionbar-input-invalid {
width: 10em;
float: left;
margin-top: initial;
margin-right: 20px;
border: 1px solid #FFFFFF
}
.is-mobile-ready .textfield--actionbar-input,.is-mobile-ready .textfield--actionbar-input-invalid {
width: 100%;
margin-right: 0;
margin-bottom: 10px
}
.textfield--actionbar-input .textfield__field,.textfield--actionbar-input-invalid .textfield__field {
padding-top: 8px
}
.textfield--actionbar-input .textfield__field:invalid,.textfield--actionbar-input .textfield__field:-moz-ui-invalid,.textfield--actionbar-input-invalid .textfield__field:invalid,.textfield--actionbar-input-invalid .textfield__field:-moz-ui-invalid {
box-shadow: none
}
.textfield--actionbar-input .textfield__field:focus,.textfield--actionbar-input-invalid .textfield__field:focus {
box-shadow: none !important
}
.textfield--actionbar-input-invalid {
border: 1px solid #E65050
}
.textfield__info {
position: absolute;
opacity: 1;
z-index: 3;
cursor: pointer
}
.textfield__field {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
position: absolute;
left: 0;
padding-left: 20px;
width: 100%;
height: 100%;
padding-right: 8%;
text-overflow: ellipsis;
border: 0;
background-color: transparent;
z-index: 2;
padding-top: 18px;
border-radius: 5px;
background-position: 150% 50% !important
}
.fl-1 .textfield__field {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.textfield__field::-ms-clear,.textfield__field::-ms-reveal {
display: none
}
.textfield__field:not([readonly]):focus {
outline: none;
box-shadow: 0 0 0 1px #409FFF
}
.signup-form {
width: 31.75em;
margin: 0 auto;
padding-top: 4.375em
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.signup-form {
width: 100%;
padding-top: 2.5em
}
}
.signup-form h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
text-align: center;
font-size: 1.625em;
margin-bottom: 1.92308em;
margin-top: 0
}
.fl-1 .signup-form h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .signup-form h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.signup-form h2 {
margin-bottom: 1.34615em
}
}
.signup-form__legend {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
margin-top: 3.125em
}
.fl-1 .signup-form__legend {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.signup-form .button {
width: 100%
}
}
.col {
padding: 0 1em
}
.col:last-of-type {
padding-right: 0
}
.col:first-of-type {
padding-left: 0
}
.row .row {
margin: 0 -1em
}
.row:before,.row:after {
content: "";
display: table
}
.row:after {
clear: both
}
@media only screen {
.col {
float: left;
box-sizing: border-box
}
}
.arrow-icon--top {
-webkit-transform: rotate(90deg);
transform: rotate(90deg)
}
.arrow-icon--right {
-webkit-transform: rotate(180deg);
transform: rotate(180deg)
}
.arrow-icon--bottom {
-webkit-transform: rotate(270deg);
transform: rotate(270deg)
}
.browser text {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .browser text {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .browser text {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.illustration {
display: inline-block;
height: 10.625rem;
width: 10.625rem;
background-position: 50% 50%;
background-repeat: no-repeat;
background-color: none;
background-image: url(https://cdn.wetransfer.net/assets/transfer-window-placeholder-a0a5f14905a4f98d313ef44a471e17c86265fe04b6b69a3fec4eda27a37049af.png);
background-size: 100%;
opacity: 1;
-webkit-transition: opacity .1s ease-out;
transition: opacity .1s ease-out
}
.illustration--loading {
opacity: 0
}
.illustration__empty-transfers {
background-image: url(https://cdn.wetransfer.net/assets/empty/empty-transfers-79302a7061ae06f4ad400c896cb53f6d96abacc352c63144909b967cbc90670d.jpg)
}
.illustration__empty-contacts {
background-image: url(https://cdn.wetransfer.net/assets/empty/empty-contacts-8f318fc1fc58ee3bcb94b74364d6d5c748f38e6401577512a2d9649f498fd27d.jpg)
}
.illustration__forgot-password {
background-image: url(https://cdn.wetransfer.net/assets/forgot-password-011fc0f53d592ef20e0552d24ac336ede2b8da15b787f57145350a904260283b.jpg)
}
.illustration__transfer-tandc-random-1 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/terms_and_conditions-1-9d1a4873de583381d12d743df6fe43868023bb42af3e7eed9bc252a063e28bbf.jpg)
}
.illustration__transfer-tandc-random-2 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/terms_and_conditions-2-def05288f9a4943540d1a6aa0bd25b723913b28dd4f71de16110a2a78a957922.jpg)
}
.illustration__transfer-tandc-random-3 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/terms_and_conditions-3-710f3af772e1295f39642d008aac0a4554ec918f010b66cdee4b30bedf024413.jpg)
}
.illustration__transfer-complete-upload-random-1 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_completed-1-847b3212dc040e0c77af8c002bdb16bdb57f7aceac087efc7b26c587807f6fa3.jpg)
}
.illustration__transfer-complete-upload-random-2 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_completed-2-4725a08e655f64e6a652fb2d42b64083bd459ab9590502493d0394e5e2af5d1c.jpg)
}
.illustration__transfer-complete-upload-random-3 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_completed-3-29985f76ed439ab816c5d1bca8ab8a1f4694d559b1ce8dbf64b61b76bc1b0728.jpg)
}
.illustration__transfer-complete-upload-random-4 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_completed-4-6fa38391e5dac204dd4f5ee235eb030a52592921ffacf55b4c02479e1fddf122.jpg)
}
.illustration__transfer-expired-random-1 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_expired-1-da3d07ca5ff8bba5e7846021e09e74c8dddb5e42b2835a5f59dc0d050ea87b62.jpg)
}
.illustration__transfer-expired-random-2 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_expired-2-e142609483c916ab50489ceb2232f63e891042cb3cde5580dba7755cfd436ba9.jpg)
}
.illustration__transfer-password-random-1 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_password-1-<PASSWORD>.jpg)
}
.illustration__transfer-password-random-2 {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_password-2-b28ba04e8281ad1ce32def8d7183f55b569c9d46b007ce6d0c0415244006bd72.jpg)
}
.illustration__transfer-upsell_one {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/upsell-facebook-a7d509a18dcd1af3e0bacf45a94ee61d6fb80dd3c6ee2830935ff0080478c707.jpg)
}
.illustration__transfer-upsell_two,.illustration__transfer-upsell_three,.illustration__transfer-upsell_four,.illustration__transfer-upsell_five {
background-image: url(https://cdn.wetransfer.net/assets/about/about-plus-f885691ff27c7c01bbc1bff850502ead2f1f55635cbf1d6c2ce9b8f38d945957.png)
}
.illustration__transfer-aborted {
background-image: url(https://cdn.wetransfer.net/assets/transfer_window/transfer_error-5cb9b360b9f6c8dbcc744c9cb436e3ff3d66aeda055c6a588f71b6ee61588e27.jpg)
}
.is-mobile-ready .illustration {
height: 8.125rem;
width: 8.125rem
}
.actionbar {
height: 4.375em;
background: #409FFF;
border-radius: 5px;
color: #FFFFFF;
position: fixed;
z-index: 40;
box-shadow: 0 3px 20px 0 rgba(0,0,0,0.14);
padding: 0.625em 0;
bottom: 0;
-webkit-transform: translate3d(0, -30%, 0);
transform: translate3d(0, -30%, 0);
-webkit-transition: -webkit-transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: -webkit-transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.2s cubic-bezier(0.77, 0, 0.175, 1),-webkit-transform 0.2s cubic-bezier(0.77, 0, 0.175, 1)
}
.actionbar--hidden {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
.actionbar__text {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
width: 60%;
font-size: 0.875em;
margin-left: 1.42857em;
margin-top: 1.78571em;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
line-height: 1.2
}
.fl-1 .actionbar__text {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .actionbar__text {
vertical-align: top;
margin: 0;
padding: 0 5%;
margin-bottom: 1.78571em
}
.actionbar__elements {
position: relative;
z-index: 1;
float: right;
margin: 0 0.625em
}
.is-mobile-ready .actionbar__elements {
display: inline-block;
margin: 0;
float: none;
width: 100%
}
.actionbar__select-arrow {
height: 0.5em;
width: 0.5em;
margin-left: 0.5em;
margin-right: 0.5em;
margin-bottom: 0.125em;
cursor: pointer
}
.actionbar button {
margin-top: 0
}
.actionbar button.actionbar__cancel-button {
background: #FFFFFF
}
.actionbar svg.actionbar__action-button,.actionbar svg.actionbar__cancel-button {
width: 1.5em;
height: 1.5em;
margin-top: 0.8125em;
cursor: pointer
}
.actionbar svg.actionbar__cancel-button {
margin-left: 0.375em
}
.is-mobile-ready .actionbar {
height: inherit;
width: 100% !important;
left: 0 !important;
right: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
text-align: center;
border-radius: 0;
padding: 1.25em 1.25em 0.625em;
box-shadow: 0 0 20px 0 rgba(0,0,0,0.2)
}
.is-mobile-ready .actionbar--hidden {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
.is-mobile-ready .actionbar__text,.is-mobile-ready .actionbar__elements {
-webkit-transform: inherit;
transform: inherit
}
.is-mobile-ready .actionbar__text {
width: 100%
}
.is-mobile-ready .actionbar button {
display: block;
width: 100%;
margin-left: 0;
margin-bottom: 0.625em
}
.notification {
width: 100%;
background-color: #409FFF;
border-radius: 0.3125em;
padding: 1.875em 0;
position: relative;
margin: -1.25em 0 1.25em;
z-index: 1
}
.notification__close {
cursor: pointer;
height: 1.5em;
width: 1.5em;
position: absolute;
top: 0.625em;
right: 0.625em
}
.notification p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.25em;
line-height: 1.4em;
color: #FFFFFF;
text-align: center;
margin: 0 2em
}
.fl-1 .notification p {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .notification p {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.notification p strong {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: block
}
.fl-1 .notification p strong {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .notification p strong {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.notification p a {
color: #FFFFFF
}
.is-mobile-ready .notification {
padding: 1.875em
}
.is-mobile-ready .notification p {
margin: 0;
font-size: 1.125em
}
.notificationbar {
border-radius: 5px;
position: fixed;
-webkit-transform: translate3d(0, -30%, 0);
transform: translate3d(0, -30%, 0);
z-index: 40;
-webkit-transition: -webkit-transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: -webkit-transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.2s cubic-bezier(0.77, 0, 0.175, 1),-webkit-transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
bottom: 0
}
.notificationbar--hidden {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
.is-mobile-ready .notificationbar {
height: inherit;
width: 100% !important;
left: 0 !important;
right: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
text-align: left;
padding: 1.25em 0;
border-radius: 0
}
.is-mobile-ready .notificationbar--hidden {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
.notificationbar--default {
background: #17181A
}
.notificationbar--error {
background: #E65050
}
.notificationbar__text {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #FFFFFF;
padding: 1em 4.28571em 0.85714em 1.42857em;
line-height: 1.3;
text-align: center
}
.fl-1 .notificationbar__text {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.notificationbar__text a {
color: #FFFFFF;
font-weight: 600
}
.is-mobile-ready .notificationbar__text {
position: static;
padding: 0 2.85714em 0 1.42857em
}
.accountwarning {
background-color: #E65050;
width: 100%;
min-height: 6.25em;
border-radius: 0 0 0.3125em 0.3125em;
color: #FFFFFF;
padding: 1.5625em 1.25em;
position: relative;
line-height: 1.5;
margin-bottom: 1.25em;
margin-top: -3.75em
}
.accountwarning h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
margin: 0
}
.fl-1 .accountwarning h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .accountwarning h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.accountwarning p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
margin: 0
}
.fl-1 .accountwarning p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.accountwarning__action {
position: absolute;
color: #17181A;
height: 3.57143em;
border: 0;
bottom: 1.5625em;
right: 1.25em
}
.logo {
-webkit-transition: opacity .4s ease;
transition: opacity .4s ease;
position: absolute;
z-index: 40;
left: 18px;
top: 8px
}
.logo--html5-fullscreen.logo {
opacity: 0;
-webkit-animation: none;
animation: none
}
.spinner.logo .spinner__logo {
-webkit-transition: -webkit-transform .2s ease;
transition: -webkit-transform .2s ease;
transition: transform .2s ease;
transition: transform .2s ease, -webkit-transform .2s ease;
position: absolute;
left: -0.25em;
top: 0.5em;
cursor: pointer
}
.spinner.logo .spinner__circle {
-webkit-transition: opacity .2s ease;
transition: opacity .2s ease;
opacity: 0
}
.spinner.logo .spinner__finished,.spinner.logo .spinner__aborted {
position: absolute;
-webkit-transition: -webkit-transform .2s ease;
transition: -webkit-transform .2s ease;
transition: transform .2s ease;
transition: transform .2s ease, -webkit-transform .2s ease
}
.spinner.logo .spinner__finished {
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transition: -webkit-transform .2s ease;
transition: -webkit-transform .2s ease;
transition: transform .2s ease;
transition: transform .2s ease, -webkit-transform .2s ease;
left: 0.6875em;
top: 0.8125em;
height: 1.4375em
}
.spinner.logo .spinner__aborted {
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transition: -webkit-transform .2s ease;
transition: -webkit-transform .2s ease;
transition: transform .2s ease;
transition: transform .2s ease, -webkit-transform .2s ease;
height: 2.625em;
top: 0.0625em;
left: 0.0625em
}
.spinner.logo--transferring .spinner__logo {
-webkit-transform: scale(0.6);
transform: scale(0.6);
opacity: 1
}
.spinner.logo--transferring .spinner__circle {
opacity: 1
}
.spinner.logo--finished .spinner__logo,.spinner.logo--aborted .spinner__logo {
-webkit-transform: scale(0);
transform: scale(0)
}
.spinner.logo--finished .spinner__circle,.spinner.logo--aborted .spinner__circle {
opacity: 1
}
.spinner.logo--finished .spinner__finished {
-webkit-transform: scale(1);
transform: scale(1)
}
.spinner.logo--aborted .spinner__aborted {
-webkit-transform: scale(1);
transform: scale(1)
}
.nav {
background: #FFFFFF;
position: absolute;
overflow: hidden;
z-index: 40;
background-clip: padding-box;
border: 1px solid rgba(23,24,26,0.11);
right: 10px;
top: 10px;
border-radius: 5px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: border-color .5s ease, opacity .4s ease;
transition: border-color .5s ease, opacity .4s ease
}
.nav--html5-fullscreen.nav {
opacity: 0;
-webkit-animation: none;
animation: none
}
.nav .nav__items {
white-space: nowrap;
list-style: none;
margin: 0;
padding: 0
}
.nav .nav__subitems {
position: relative;
display: inline-block;
padding: 0;
margin: 0 0 0 -2px;
height: 2.375rem;
border: 0;
width: 0;
vertical-align: top;
white-space: nowrap;
list-style: none;
overflow: hidden
}
.no-js .nav .nav__subitems {
width: auto
}
.nav .nav__subitems:after {
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, #fff 100%);
background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 100%);
position: absolute;
content: '';
bottom: 1px;
width: 12px;
right: 0;
top: 1px
}
.nav .nav__label {
-webkit-transition: color .2s ease-out;
transition: color .2s ease-out;
line-height: 2.375rem;
position: relative;
display: inline-block;
cursor: pointer;
height: auto
}
.nav .nav__item {
-webkit-transition: background-color .2s ease-out;
transition: background-color .2s ease-out;
border-right: 1px solid #D4D7D9;
display: inline-block
}
@media (min-width: 48em) {
.nav .nav__item:hover {
background: #F7F9FA
}
}
.no-js .nav .nav__item:hover {
background: inherit
}
.nav .nav__item .nav__label {
padding: 0 12px;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
text-decoration: none;
letter-spacing: 0;
font-size: 0.875em;
color: #17181A
}
.fl-1 .nav .nav__item .nav__label {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.nav--with-panel .nav__item .nav__label {
color: #919599
}
.nav .nav__item:last-of-type {
border-right: 0
}
.nav--with-panel .nav__item:hover {
background: #F7F9FA
}
.nav--with-panel .nav__item:hover>.nav__label {
color: #17181A
}
.nav .nav__item.nav__item--active {
background: #FFFFFF
}
.nav .nav__item.nav__item--active>.nav__label {
color: #17181A
}
.nav .nav__subitem {
display: inline-block;
margin: 0
}
.nav .nav__subitem .nav__label {
padding: 0 5px;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
letter-spacing: 0.15px;
font-size: 0.8125em;
color: #919599;
top: 0.07692em
}
.fl-1 .nav .nav__subitem .nav__label {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.nav .nav__subitem:last-of-type .nav__label {
margin-right: 12px
}
.nav .nav__subitem--active .nav__label:after,.nav .nav__subitem:hover .nav__label:after {
background: rgba(23,24,26,0.11);
position: absolute;
overflow: hidden;
content: '';
height: 1px;
bottom: .8em;
right: 5px;
left: 5px
}
.nav .nav__image {
vertical-align: middle;
display: inline-block;
border-radius: 0.75em;
cursor: pointer;
margin: 0 0.625em 0 -0.3125em;
height: 1.5em;
width: 1.5em;
background-size: cover;
background-position: center
}
.nav--with-panel .nav__image {
-webkit-transition: all .2s ease;
transition: all .2s ease;
-webkit-filter: grayscale(1);
filter: grayscale(1);
opacity: .5
}
.nav--with-panel .nav__item:hover .nav__image {
-webkit-filter: none;
filter: none;
opacity: 1
}
.nav--with-panel .nav__item--active .nav__image {
-webkit-filter: none;
filter: none;
opacity: 1
}
.verticalnav__list {
float: right;
clear: both;
padding: 0;
margin: 0 0 1.25em;
list-style: none
}
.verticalnav__item {
display: block;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
width: 13.3125em;
line-height: 1.3125em;
padding: 0.75em 0;
position: relative;
box-shadow: inset 0 -1px 0 0 #E8EBED;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.fl-1 .verticalnav__item {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.verticalnav__item a {
display: block;
text-decoration: none
}
.verticalnav__item a:hover {
color: #409FFF
}
.verticalnav li.verticalnav__item--active {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .verticalnav li.verticalnav__item--active {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.verticalnav li.verticalnav__item--active a {
color: #409FFF
}
.verticalnav__arrow {
content: ' ';
height: 0.75em;
width: 0.5em;
position: absolute;
left: -18px;
top: calc(50% - 6px);
line-height: 0
}
.verticalnav__error-icon {
height: 0.8125em;
width: 0.8125em;
position: absolute;
top: 0.875em;
right: 1.125em
}
.tooltip.nav__item-tooltip {
border: 0.0625em solid #484A4D;
width: 16.53846em;
max-width: none;
margin-top: -0.76923em;
opacity: 0;
left: initial !important;
right: 0.875em
}
.tooltip.nav__item-tooltip:after {
left: 13.07692em;
border: 0.0625em solid #484A4D;
top: -0.53125em
}
.is-mobile-ready .nav {
width: 100%;
height: 3.375em;
top: 0;
left: 0;
border-radius: 0;
border: 0;
overflow: visible;
background-color: #E8EBED;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
padding: 0 1em
}
.is-mobile-ready .nav__items {
height: 100%
}
.is-mobile-ready .nav__item {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
float: left;
height: 100%;
width: 33%;
border-right-color: transparent
}
.fl-1 .is-mobile-ready .nav__item {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .nav__item .logo {
position: initial
}
.is-mobile-ready .nav__item:nth-child(1) {
padding: 1.0625em 0
}
.is-mobile-ready .nav__item:nth-child(1) .nav__subitems-container .pointer {
top: -0.375em;
left: 1.3125em
}
.is-mobile-ready .nav__item:nth-child(2) {
padding: 0.9375em 0 0;
text-align: center
}
.is-mobile-ready .nav__item:nth-child(3) .nav__subitems-container .pointer {
right: 28px
}
.is-mobile-ready .nav__item:nth-child(3) .nav__image {
float: right;
width: 1.75em;
height: 1.75em;
box-sizing: content-box;
border: solid 0.125em #FFFFFF;
border-radius: 1em;
margin: 0.6875em 0
}
.is-mobile-ready .nav__item>.nav__text {
float: right;
font-size: 0.875em;
color: #FFFFFF;
letter-spacing: 0;
text-shadow: 0 0.125em 0.25em rgba(0,0,0,0.3);
padding: 0;
line-height: 3.875em
}
.is-mobile-ready .nav__item .nav__subitems {
display: block;
width: 100%;
height: 100%;
padding: 1.25em
}
.is-mobile-ready .nav__item .nav__subitems .nav__subitem--is-active .nav__text {
color: #409FFF
}
.is-mobile-ready .nav__item .nav__subitems .nav__text {
font-size: 1em;
height: 3.125em;
width: 100%;
text-transform: capitalize;
color: #484A4D;
letter-spacing: 0;
line-height: 3.125em
}
.is-mobile-ready .nav__subitems-container {
display: none;
overflow: visible !important;
position: absolute;
top: 3.375em;
left: 0;
width: 100%;
background: #FFFFFF;
box-shadow: 0 0 12px 0 rgba(0,0,0,0.1),0 10px 30px 0 rgba(0,0,0,0.2)
}
.is-mobile-ready .nav__subitems-container .pointer {
position: absolute;
top: 0
}
.is-mobile-ready .nav__subitem {
display: block;
box-shadow: inset 0 -1px 0 0 #E8EBED
}
.is-mobile-ready .nav__subitem:last-child {
box-shadow: none
}
.is-mobile-ready .sticky__children-container {
position: fixed;
top: 0;
width: 100%;
height: 3.375em;
z-index: 70
}
.nav__text {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .nav__text {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
:not(.no-js) body>.panel {
opacity: 0
}
.root-node .panel {
position: absolute;
top: 0;
right: 0;
bottom: 0;
background: #FFFFFF;
box-shadow: 0 0 12px 0 rgba(0,0,0,0.1),0 10px 30px 0 rgba(0,0,0,0.2);
z-index: 30;
overflow: hidden;
-webkit-transform: translate3d(105%, 0, 0);
transform: translate3d(105%, 0, 0);
-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),-webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1)
}
.root-node .panel.panel--full {
width: 100%;
max-width: calc(100% - 80px)
}
.root-node .panel.panel--half {
width: 55em;
max-width: calc(100% - 27.5em)
}
@media (max-width: 79.9375em) {
.root-node .panel.panel--half {
max-width: calc(100% - 22.5em)
}
}
@media (max-width: 65.5625em) {
.root-node .panel.panel--half {
width: 100%;
max-width: calc(100% - 80px)
}
}
.root-node .panel.panel--visible {
-webkit-transform: none;
transform: none;
-webkit-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1)
}
.root-node .panel.panel--hidden {
-webkit-transform: translate3d(105%, 0, 0) !important;
transform: translate3d(105%, 0, 0) !important
}
.root-node .panel.panel--no-transition {
-webkit-transition-property: none !important;
transition-property: none !important
}
.root-node .panel__scrollable {
height: calc(100% - 60px)
}
.root-node .panel__scrollable>.scrollable__scrollbar {
width: 0.3125em;
right: 5px
}
.root-node .panel__scrollable>.scrollable__scrollbar .scrollable__scrollbar-thumb:before {
position: absolute;
overflow: hidden;
content: '';
top: -5px;
left: -3px;
right: -3px;
bottom: -5px;
background: rgba(255,255,255,0.05)
}
.panel__loading {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: 560px;
max-width: 100%
}
.panel__loading svg {
display: block;
-webkit-animation: panel--loading-pulse 1.4s infinite;
animation: panel--loading-pulse 1.4s infinite;
margin: 0 auto 0.9375em;
height: 1.9375em;
width: 4.0625em
}
.panel__loading p {
line-height: 1.5em;
text-align: center;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
white-space: pre-wrap;
font-size: 1em;
color: #BABCBF;
position: absolute
}
.fl-1 .panel__loading p {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__loading p a {
text-decoration: underline;
color: #BABCBF
}
.panel__return-path {
display: none
}
.panel__topbar {
height: 3.75em;
background: #FFFFFF;
z-index: 30;
border-bottom: 1px solid #E8EBED;
position: relative;
left: 0;
top: 0;
width: 100%
}
.panel__back {
display: block;
text-decoration: none;
cursor: pointer;
position: absolute;
left: 1em;
top: 1.125em
}
.panel__back-icon {
height: 1.5em;
width: 1.5em
}
.panel__back-text {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #919599;
font-size: 0.875em;
margin-left: 0.71429em;
vertical-align: super
}
.fl-1 .panel__back-text {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__close {
height: 1.5em;
width: 1.5em;
position: absolute;
left: 1em;
top: 1.125em;
cursor: pointer
}
.panel__content {
position: relative;
min-height: calc(100% - 9.375em);
margin-top: 2.8125em;
margin-left: 5em;
margin-right: 5em;
margin-bottom: 6.5625em
}
@media (max-width: 79.9375em) {
.panel__content {
margin-left: 2.5em;
margin-right: 2.5em
}
}
.panel__content h1 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 2.5em;
margin: 0
}
.fl-1 .panel__content h1 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .panel__content h1 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__content h1+.panel__subtitle {
margin-top: 0.25em
}
.is-mobile-ready .panel__content h1 {
font-size: 1.625em;
word-wrap: break-word
}
.panel__content .panel__subtitle {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: block;
font-size: 0.875em;
color: #919599
}
.fl-1 .panel__content .panel__subtitle {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .panel__content .panel__subtitle {
line-height: 1.57143em
}
.panel__content a {
color: #484A4D
}
.panel__content--inactive-content {
margin-top: 3.75em
}
.panel__content--inactive-content>div:not(.accountwarning):not(.account) * {
opacity: 0.75 !important;
cursor: default !important;
pointer-events: none !important
}
.is-mobile-ready .panel {
box-shadow: none;
position: static;
min-height: calc(100% - 3.75em)
}
.is-mobile-ready .panel.panel--full {
max-width: 100%
}
.is-mobile-ready .panel.panel--half {
max-width: 100%
}
.is-mobile-ready .panel__content {
min-height: 21.875em;
margin-top: 6.5625em;
margin-left: 1.25em;
margin-right: 1.25em;
margin-bottom: 3.125em
}
.panel.panel--animating .panel__content {
-webkit-animation: panel--animating 1s 1;
animation: panel--animating 1s 1
}
@media (max-width: 65.5625em) {
.panel.panel--animating .panel__content {
-webkit-animation: none;
animation: none
}
}
@-webkit-keyframes panel--animating {
from {
opacity: 0
}
35% {
opacity: 0
}
to {
opacity: 1
}
}
@keyframes panel--animating {
from {
opacity: 0
}
35% {
opacity: 0
}
to {
opacity: 1
}
}
@-webkit-keyframes panel--loading-pulse {
from {
opacity: 0
}
60% {
opacity: 1
}
to {
opacity: 0
}
}
@keyframes panel--loading-pulse {
from {
opacity: 0
}
60% {
opacity: 1
}
to {
opacity: 0
}
}
.tooltip {
width: 15.625em;
position: absolute;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
background: #FFFFFF;
border: 0.0625em solid #BABCBF;
border-radius: 0.3125em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
padding: 0.625em 0;
margin: 0;
z-index: 40;
text-align: center
}
.fl-1 .tooltip {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.tooltip:before,.tooltip:after {
z-index: -1
}
.tooltip--list {
width: auto;
min-width: 7.8125em
}
.tooltip--click ul {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
list-style: none;
background: transparent;
width: 100%;
margin: 0;
line-height: 2;
text-align: left;
padding-left: 0
}
.fl-1 .tooltip--click ul {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.tooltip--click ul li {
font-size: 0.875em;
padding: 0 1em;
cursor: pointer
}
.tooltip--click ul li.tooltip__active-item {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #409FFF
}
.fl-1 .tooltip--click ul li.tooltip__active-item {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.tooltip--click ul li:hover {
background: #409FFF;
color: #FFFFFF
}
.tooltip--click:after {
border: 1px solid #BABCBF
}
.tooltip--hover,.tooltip--manual {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
background: #17181A;
color: #FFFFFF;
position: absolute;
max-width: 17.69231em;
font-size: 0.8125em;
padding: 0.76923em 0.92308em;
line-height: 1.4;
text-align: left
}
.fl-1 .tooltip--hover,.fl-1 .tooltip--manual {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .tooltip--hover,.is-mobile-ready .tooltip--manual {
left: 0;
width: 100%;
margin-top: -1.15385em;
max-width: calc(100% - 3.07692em);
margin-left: 1.53846em;
margin-right: 1.53846em
}
.tooltip--top:before,.tooltip--top:after,.tooltip--bottom:before,.tooltip--bottom:after,.tooltip--bottom-left:before,.tooltip--bottom-left:after,.tooltip--bottom-center:before,.tooltip--bottom-center:after {
left: calc(50% - 0.4375em);
-webkit-transform: translateX(-50%);
transform: translateX(-50%)
}
.tooltip--top:after {
border-top-left-radius: 2px;
bottom: -0.5625em;
border-right: 0 !important;
border-bottom: 0 !important
}
.tooltip--bottom:after,.tooltip--bottom-left:after,.tooltip--bottom-center:after {
top: -0.5625em;
border-left: 0 !important;
border-top: 0 !important
}
.tooltip--left:before,.tooltip--left:after,.tooltip--right:before,.tooltip--right:after {
top: calc(50% - 0.4375em);
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.tooltip--left:after {
border-top-right-radius: 2px;
left: -0.5625em;
border-bottom: 0 !important;
border-left: 0 !important
}
.tooltip--right:after {
right: -0.625em;
border-left: 0 !important;
border-top: 0 !important
}
.tooltip:after {
content: '';
position: absolute;
width: 0.76923em;
height: 0.76923em;
margin: 0.15385em;
background: inherit;
-webkit-transform: rotate(225deg);
transform: rotate(225deg)
}
.tooltip--pointer-left:after {
left: 25%
}
.tooltip--pointer-right:after {
right: 25%
}
.profile {
position: relative;
margin: 0 auto
}
.is-mobile-ready .profile {
width: inherit
}
.profile .row {
margin-bottom: 1.875em
}
.profile .row--no-margin {
margin-bottom: 0
}
.profile form .row {
border-top: 1px solid #E8EBED;
padding-top: 2.5em
}
.is-mobile-ready .profile form .row {
padding-top: 0.625em
}
.profile__header {
width: 100%;
position: relative
}
.profile__welcome {
margin-bottom: 1.25em
}
.profile__welcome svg {
height: 1.5em;
top: 0.625em;
right: 0.625em;
position: absolute;
cursor: pointer
}
.profile .profile__channeluri {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #409FFF;
text-decoration: none
}
.fl-1 .profile .profile__channeluri {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.profile .profile__channeluri:hover {
color: #0073e5
}
.profile__save-button {
position: absolute;
right: 0;
bottom: 0.71429em;
margin-top: 0
}
.is-mobile-ready .profile__welcome a {
pointer-events: none;
cursor: default;
text-decoration: none
}
.is-mobile-ready .profile__save-button,.is-mobile-ready .profile__save-button--bottom {
position: static;
display: block;
width: 100%;
margin-top: 1.42857em
}
.is-mobile-ready .profile__channeluri {
color: #BABCBF;
font-size: 0.875em;
pointer-events: none;
cursor: default
}
.profile__instruction {
width: 33%
}
.is-mobile-ready .profile__instruction {
width: 100%;
padding: 0
}
.profile__instruction h2 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em
}
.fl-1 .profile__instruction h2 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.profile__instruction p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #919599
}
.fl-1 .profile__instruction p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.profile__instruction .button {
width: 100%;
margin-top: 0.71429em
}
.is-mobile-ready .profile__instruction .button {
margin: 0 0 0.71429em;
width: 100%
}
.profile__form {
width: calc(100% / 3 * 2 - 1.125em);
margin-left: 1.25em;
padding-right: 0;
padding-left: 0;
position: relative
}
.is-mobile-ready .profile__form {
width: 100%;
padding: 0;
margin: 0
}
.profile__form--no-bottom {
margin-bottom: -3.25em
}
.profile .input {
width: 26.125em
}
.profile__image-upload {
margin-bottom: 1.875em
}
.profile__image-upload .imageupload__add-element,.profile__image-upload .imageupload__remove-element {
position: static
}
.profile__image-upload .imageupload__actions {
display: inline-block;
vertical-align: top;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.profile__image-upload .imageupload__actions button {
margin-top: 0;
margin-bottom: 0.625em
}
.profile__image-upload .imageupload__pending {
left: 2.6875em;
top: 2.6875em
}
.profile__image-upload .imageupload__image {
height: 6.875em;
width: 6.875em;
border-radius: 3.4375em;
vertical-align: top;
margin-right: 1.25em;
display: inline-block
}
.profile__image-upload.imageupload--pending .imageupload__image {
opacity: 0.55
}
.profile__image-upload .button {
top: 0.9375em
}
.is-mobile-ready .profile__image-upload .button {
width: 100%
}
.profile__image-upload .button:nth-of-type(1) {
left: 8.92857em
}
.is-mobile-ready .profile__image-upload .button:nth-of-type(1) {
left: 8.92857em;
top: -0.21429em
}
.profile__image-upload .button:nth-of-type(2) {
left: 18.42857em
}
.is-mobile-ready .profile__image-upload .button:nth-of-type(2) {
left: 8.92857em;
top: 3.07143em
}
.profile__wallpaper {
border-radius: 5px;
margin-bottom: 0.75em;
overflow: hidden;
border: 1px solid #BABCBF;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.profile__wallpaper--active:hover {
background-color: #17181A
}
.profile__wallpaper--active:hover .imageupload__image {
opacity: 0.75
}
.profile__wallpaper--active:hover .profile__wallpaper-transfer {
background-color: #17181A
}
.profile__wallpaper--active:hover .profile__wallpaper-transfer svg {
opacity: 0.9
}
.profile__wallpaper:hover .profile__wallpaperaction {
display: block
}
.profile__wallpaper--medium {
width: 100%;
padding-bottom: 56.25%
}
.profile__wallpaper--small {
width: 48.5%;
padding-bottom: 27%;
float: left
}
.is-mobile-ready .profile__wallpaper--small {
width: 100%;
padding-bottom: 56.25%;
float: none !important
}
.profile__wallpaper--small ~ .profile__wallpaper--small {
float: right
}
.profile__wallpaper .imageupload__image {
position: absolute;
height: 100%;
width: 100%
}
.profile__wallpaper-transfer {
position: absolute;
border-radius: 0.25em;
box-shadow: 0 0 0.25em 0 rgba(0,0,0,0.1),0 0.1875em 0.625em 0 rgba(0,0,0,0.2);
width: 22%;
height: 55%;
top: 23%;
left: 10%
}
.profile__wallpaperaction {
display: none;
top: calc(50% - 12px);
left: calc(50% - 12px);
height: 1.5em;
width: 1.5em
}
.profile__wallpaperaction--add {
display: block
}
.profile__mailclient {
margin-bottom: -0.3125em;
border-radius: 0.3125em 0.3125em 0 0;
min-height: 22.75em
}
.is-mobile-ready .profile__mailclient {
width: inherit
}
.profile__mailoverlay {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1.3;
padding-top: 1.57143em;
width: 23.92857em;
height: calc(100% - 90px);
background-color: white;
position: absolute;
top: 6.57143em;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
text-align: center;
font-size: 0.875em;
overflow: hidden
}
.fl-1 .profile__mailoverlay {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .profile__mailoverlay {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .profile__mailoverlay {
width: calc(100% - 40px);
height: calc(100% - 61px);
left: 50%;
padding: 1.42857em;
top: 5em
}
.profile__mailoverlay span {
color: #409FFF
}
.profile__mailoverlay--nopicture {
padding-top: 2.28571em
}
.profile__mailoverlay--nopicture .profile__mail-profile-image {
display: none
}
.profile__mailoverlay-logo {
position: absolute;
top: 3.75em;
left: calc(50% - 18px)
}
.is-mobile-ready .profile__mailoverlay-logo {
top: 2.5em
}
.profile__mailoverlay-button {
background: #E8EBED;
border-radius: 6.25em;
width: 9.6875em;
height: 1.6875em;
margin: 1.25em auto
}
.profile__mailoverlay-lines {
width: 17.85714em;
height: 2.14286em
}
.is-mobile-ready .profile__mailoverlay-lines {
width: inherit
}
.profile__mailclient--is-old .profile__mailclient {
width: 100%;
height: 21.875em;
min-height: initial
}
.profile__mailclient--is-old .profile__mail-image {
height: 92%
}
.is-mobile-ready .profile__mailclient--is-old .profile__mail-image {
height: 93%
}
.profile__mailclient--is-old .profile__mailoverlay {
max-width: 17.42857em;
height: 13.64286em;
left: 3.125em;
padding: 2.14286em 0.71429em 0 1.42857em;
-webkit-transform: translateX(0%);
transform: translateX(0%);
text-align: left;
border-radius: 0.35714em;
line-height: 1.3
}
.is-mobile-ready .profile__mailclient--is-old .profile__mailoverlay {
left: 1.42857em
}
.profile__mailclient--is-old .profile__mailoverlay-lines {
width: 12.85714em;
margin: 0.9375em 0
}
.profile__mailclient--is-old .profile__mailoverlay-button {
width: 6.25em;
margin: 0
}
.profile__mail-image {
position: absolute;
width: 100%;
background: #BABCBF;
height: 60%;
top: 1.8125em;
-webkit-transition: opacity 0.2s;
transition: opacity 0.2s
}
.is-mobile-ready .profile__mail-image {
width: inherit;
top: 1.625em
}
.profile__mail-image .imageupload__image {
width: 100%;
height: 100%;
cursor: pointer;
-webkit-transition: opacity 0.2s;
transition: opacity 0.2s
}
.profile__mail-image--adding .imageupload__image {
opacity: 0.8
}
.profile__mail-image .imageupload__pending {
top: 0.9375em;
left: 0.9375em
}
.profile__mail-profile-image {
height: 4em;
width: 4em;
margin: 0 auto;
margin-bottom: 1.42857em;
border-radius: 2em;
background-size: cover;
background-position: center
}
.is-mobile-ready .profile__email-checkbox {
margin-bottom: 3.84615em
}
.is-mobile-ready .profile__email-checkbox .checkboxinput__checkbox {
vertical-align: initial
}
.profile__email-checkbox label {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
width: calc(100% - 3.07692em);
font-size: 1em;
line-height: 1.38462em;
margin-top: 0;
color: #919599
}
.fl-1 .profile__email-checkbox label {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .profile__email-checkbox label {
width: 18.46154em;
margin-bottom: 1.53846em
}
.profile--disabled .profile__header {
margin-bottom: 0.3125em
}
.profile--disabled form .row:first-child {
padding-top: 0
}
.profile--disabled h1 {
margin-top: 0.625em
}
.profile--disabled .profile__save-button,.profile--disabled .profile__channeluri {
display: none
}
.profile--disabled .row:not(.profile--nohide) .col:not(.profile--nohide)>*:not(.profile--nohide) {
opacity: 0.2;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none
}
.profile--disabled .row {
border-top: 0 !important
}
.refresh-notice {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #FFFFFF;
background: #409FFF;
position: absolute;
padding: 0.76923em;
z-index: 80;
top: 0.76923em;
left: 6.15385em;
border-radius: 6px;
box-shadow: 0 2px 30px 0 rgba(0,0,0,0.05);
max-width: 70vw;
line-height: 1.4
}
.fl-1 .refresh-notice {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.refresh-notice a {
color: #FFFFFF;
text-decoration: underline
}
.refresh-notice:before {
position: absolute;
overflow: hidden;
content: '';
border: 8px solid transparent;
border-right-color: #409FFF;
border-left: 0;
left: -8px
}
.is-mobile-ready .refresh-notice {
position: fixed;
top: 3.375em;
left: 0.76923em;
right: 0.76923em;
margin-top: 1.92308em;
max-width: 100%;
text-align: center
}
.is-mobile-ready .refresh-notice:before {
border: 8px solid transparent;
border-bottom-color: #409FFF;
border-top: 0;
margin-left: -8px;
left: 50%;
top: -8px
}
.scrollable {
position: relative;
overflow: hidden;
overflow-x: hidden !important;
height: 100%;
width: 100%
}
.scrollable .scrollable__content {
box-sizing: border-box;
position: absolute;
overflow-y: scroll;
overflow-x: hidden;
height: 100%;
padding: 0;
margin: 0 -17px 0 0;
right: 0;
left: 0;
top: 0;
-ms-overflow-style: none;
-webkit-overflow-scrolling: touch
}
.scrollable .scrollable__content::-webkit-scrollbar {
-webkit-appearance: none;
display: none;
width: 0 !important;
opacity: 0
}
.scrollable.scrollable--overflow-bottom:after {
box-shadow: inset 0 -6px 6px -6px rgba(23,24,26,0.25)
}
.scrollable:before,.scrollable:after {
-webkit-transition: box-shadow .3s ease;
transition: box-shadow .3s ease;
position: absolute;
z-index: 999;
content: '';
bottom: 0;
height: 10px;
right: 0;
left: 0
}
.scrollable:before {
box-shadow: none;
bottom: auto;
top: 0
}
.scrollable .scrollable__scrollbar {
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease;
position: absolute;
z-index: 999;
opacity: 0;
bottom: 10px;
width: 0.25em;
right: 2px;
top: 10px
}
.scrollable .scrollable__scrollbar--visible {
opacity: 1
}
.scrollable .scrollable__scrollbar-thumb {
border-radius: 20px;
min-height: 20px;
background: rgba(0,0,0,0.15);
width: 100%
}
.scrollable .scrollable__scrollbar-thumb:hover {
background: rgba(0,0,0,0.25)
}
.scrollable__scrollbar-thumb--grabbed .scrollable__scrollbar-thumb {
background: rgba(0,0,0,0.25)
}
.scrollable__width-test {
position: absolute;
height: 100px;
width: 100px;
top: -9999px;
overflow: scroll;
-ms-overflow-style: none;
-webkit-overflow-scrolling: touch
}
.scrollable__width-test::-webkit-scrollbar {
width: 0 !important
}
.scrollable__block {
background: none;
position: absolute;
z-index: 60;
height: 100%;
width: 100%;
left: 0;
top: 0
}
.spinner {
position: relative;
display: inline-block
}
.spinner__foreground {
border-radius: 10px;
stroke-linecap: round
}
.spinner__label {
white-space: nowrap;
line-height: 1;
position: absolute;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 3.875em;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #17181A;
margin: -2px 0 0 2px;
left: 50%;
top: 50%;
-webkit-font-feature-settings: "lnum";
font-feature-settings: "lnum";
font-variant-numeric: lining-nums
}
.fl-1 .spinner__label {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.spinner--single .spinner__label {
margin-left: 4px
}
.spinner__label span {
vertical-align: top;
line-height: 1;
display: inline-block;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.35484em;
color: #BABCBF;
position: relative;
top: 0.27273em
}
.fl-1 .spinner__label span {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.spinner__circle circle {
pointer-events: none;
stroke-dashoffset: 0
}
.spinner__circle circle.spinner__foreground {
-webkit-transition: stroke-dashoffset 200ms linear;
transition: stroke-dashoffset 200ms linear;
border-radius: 10px;
stroke-linecap: round
}
.spinner--rotate .spinner__circle {
-webkit-animation: spinner--rotate 2s linear infinite;
animation: spinner--rotate 2s linear infinite;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%
}
@-webkit-keyframes spinner--rotate {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
}
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg)
}
}
@keyframes spinner--rotate {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
}
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg)
}
}
.splashpage {
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
background: #F7F3F0;
z-index: 1000
}
.splashpage__left,.splashpage__right {
height: 100%;
float: left
}
.splashpage__left {
width: 46%;
background: url(https://cdn.wetransfer.net/assets/splashpage/left-2b9933be9b82bc5f73b6dea0a3d02210918c60892d283e1dadcec4343d8ecdd7.png) 50% 50% no-repeat;
background-size: contain;
margin-left: 4.375em
}
.splashpage__right {
position: absolute;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
height: auto;
width: auto;
margin: 0 5em 0 3.75em;
left: 54%;
top: 46%
}
.splashpage h1 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 2.125em;
margin: 0 0 1.17647em;
color: #17181A
}
.fl-1 .splashpage h1 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .splashpage h1 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.splashpage__button {
background: none;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #484A4D;
border: 1px solid #484A4D;
padding: 0.875em 2em;
display: block;
border-radius: 5px;
cursor: pointer;
float: left
}
.fl-1 .splashpage__button {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .splashpage__button {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (max-width: 72em) {
.splashpage__button {
float: none;
margin: 0 0 0.625em !important
}
}
.splashpage__button--cta {
border: 1px solid #409FFF;
background: #409FFF;
margin-left: 0.625em;
color: #FFFFFF
}
.splashpage__button--cta:hover {
background: #0073e5;
border-color: #0073e5;
color: #FFFFFF
}
.transfer {
background: #FFFFFF;
position: absolute;
z-index: 40;
border-radius: 10px;
box-shadow: 0 0 12px 0 rgba(0,0,0,0.1),0 10px 30px 0 rgba(0,0,0,0.2);
-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),-webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
margin: -12.8125em 0 0;
height: 25.625em;
width: 17.5em;
left: 5em;
top: 50%
}
.panel .transfer {
position: static;
border-radius: 0;
box-shadow: none;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
margin: 0;
height: auto;
width: inherit
}
.transfer--no-transition {
-webkit-transition: none;
transition: none
}
.transfer--html5-fullscreen {
-webkit-transform: translateX(-20em);
transform: translateX(-20em)
}
.transfer--html5-fullscreen:hover {
-webkit-transform: translateX(-19.16667em);
transform: translateX(-19.16667em)
}
.transfer--full-panel {
-webkit-transform: translateX(-150%);
transform: translateX(-150%)
}
.transfer--half-panel {
-webkit-transform: none;
transform: none
}
@media (max-width: 79.9375em) {
.transfer--half-panel {
-webkit-transform: translateX(-2.5em);
transform: translateX(-2.5em)
}
}
@media (max-width: 65.5625em) {
.transfer--half-panel {
-webkit-transform: translateX(-150%);
transform: translateX(-150%)
}
}
.transfer .transfer__window {
height: 100%
}
.is-mobile-ready .transfer .transfer__window--is-not-available .transfer__footer {
border-top: 0;
margin-bottom: 3.125em
}
.is-mobile-ready .transfer .transfer__window--is-not-available .transfer__contents {
margin-bottom: 0.625em
}
.transfer .transfer__block-click {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
opacity: 0;
z-index: 999
}
.transfer .transfer__contents {
border-top-right-radius: 10px;
border-top-left-radius: 10px;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
overflow: hidden;
height: 21.125em
}
.fl-1 .transfer .transfer__contents {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .transfer .transfer__contents {
height: auto;
margin-bottom: 3.125em
}
.transfer .transfer__footer {
border-top: 1px solid #D4D7D9;
position: relative;
padding: 0 1.25em;
height: 4.5em
}
.is-mobile-ready .transfer .transfer__footer {
height: auto;
margin: 0 0 -1.25em -1.25em;
padding: 0;
width: 100vw;
border-top: 5px solid #F4F4F4
}
.is-mobile-ready .transfer .transfer__footer .button {
width: 12.5em;
display: block;
margin: 0 auto
}
.is-mobile-ready .transfer .transfer__footer p {
font-size: 0.875em;
line-height: 1.42857em;
text-align: center;
padding: 2.14286em 2.14286em 0
}
.is-mobile-ready .transfer .transfer__footer a {
color: #919599
}
.transfer .transfer__button-container {
-webkit-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
position: absolute;
left: 50%;
top: 50%;
width: 11.875em
}
.transfer .transfer__button-container .transfer__button {
position: static;
-webkit-transform: none;
transform: none;
display: inline-block
}
.transfer .transfer__button {
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
position: absolute;
left: 50%;
top: 50%;
border-radius: 1.25em;
background: #409FFF;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
display: inline-block;
outline: 0;
border: 1px solid #409FFF;
cursor: pointer;
height: 2.5em;
-webkit-transition: border-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),background-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),color 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: border-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),background-color 0.2s cubic-bezier(0.77, 0, 0.175, 1),color 0.2s cubic-bezier(0.77, 0, 0.175, 1);
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #FFFFFF;
width: 9.75em
}
.fl-1 .transfer .transfer__button {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .transfer .transfer__button {
margin: 0.625em auto 0;
border-radius: 1.5625em;
position: initial;
display: block;
-webkit-transform: none;
transform: none;
width: 12.5em;
height: 3.125em
}
.transfer .transfer__button:hover,.transfer .transfer__button:focus {
background-color: #0073e5;
border-color: #0073e5
}
.transfer .transfer__button--alt {
background: transparent;
border-color: #409FFF;
color: #409FFF
}
.transfer .transfer__button--alt:hover,.transfer .transfer__button--alt:focus {
background: transparent;
border-color: #0073e5;
color: #0073e5
}
.transfer .transfer__button--alt-inactive {
background: transparent;
border-color: #D4D7D9;
color: #D4D7D9;
cursor: default
}
.transfer .transfer__button--alt-inactive:hover,.transfer .transfer__button--alt-inactive:focus {
background: transparent;
border-color: #D4D7D9;
color: #D4D7D9
}
.transfer .transfer__button--inactive {
background: #D4D7D9;
border-color: #D4D7D9;
color: #FFFFFF;
cursor: default
}
.transfer .transfer__button--inactive:hover,.transfer .transfer__button--inactive:focus {
background: #D4D7D9;
border-color: #D4D7D9;
color: #FFFFFF;
cursor: default
}
.is-mobile-ready .transfer .transfer__button {
margin: 1.875em auto 0;
border-radius: 1.5625em;
position: initial;
display: block;
-webkit-transform: none;
transform: none;
width: 12.5em;
height: 3.125em
}
.transfer .transfer__button--cancel {
width: 5.625em
}
.transfer .transfer__button--cancel:first-of-type {
margin-right: 0.625em
}
.transfer .transfer__toggle-options,.transfer .transfer__next,.transfer .transfer__back {
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
position: absolute;
cursor: pointer;
left: 20px;
top: 50%
}
.transfer .transfer__next {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transform: scale(-1, 1);
transform: scale(-1, 1);
position: static;
float: right;
margin: 0 0 0 0.625em
}
.transfer .transfer__toggle-options {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
height: 1.5em;
width: 1.5em
}
.transfer .transfer__toggle-options:hover path {
fill: #919599
}
.transfer .transfer__spinner {
display: block;
margin: 1.875em auto 0.75em;
width: 10.625em
}
.is-mobile-ready .transfer .transfer__spinner {
width: 8.125em
}
.transfer__next,.transfer__back {
height: 2em;
width: 2em
}
.transfer__options {
background: #F7F9FA;
border-top: 1px solid #D4D7D9;
padding: 0 10px
}
.transfer__options .transfer__option {
position: relative;
border-bottom: 1px solid #D4D7D9;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
padding: 0.625em
}
.transfer__options .transfer__option .transfer__option-plus {
margin: 0 0 0 -0.3125em;
width: 2.28571em;
height: 0.92857em;
position: absolute;
right: 0.71429em;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.transfer__options .transfer__option:last-of-type {
border-bottom: 0
}
.transfer__options .transfer__option:first-of-type {
border-bottom: 1px solid #D4D7D9
}
.transfer__options .transfer__option.transfer__option--disabled>label,.transfer__options .transfer__option.transfer__option--disabled span {
color: rgba(23,24,26,0.2)
}
.transfer__options .transfer__option.transfer__option--disabled svg {
opacity: .2
}
.transfer__options .transfer__option.transfer__option--disabled svg.transfer__option-plus {
opacity: 1
}
.transfer__options .transfer__option>label {
display: block;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.75em;
color: #484A4D;
width: 10.16667em;
margin: 0 0.625em 0 0;
box-sizing: border-box
}
.fl-1 .transfer__options .transfer__option>label {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transfer__options .transfer__option .transfer__option-placeholder {
color: rgba(23,24,26,0.2)
}
.transfer__options .transfer__option .transfer__option-placeholder path {
fill: rgba(23,24,26,0.2)
}
.transfer__options .transfer__option .transfer__option-placeholder,.transfer__options .transfer__option .transfer__exp-option {
display: inline;
cursor: pointer;
font-size: 0.875em;
color: #17181A
}
.transfer__options .transfer__option .transfer__option-placeholder span,.transfer__options .transfer__option .transfer__exp-option span {
text-decoration: none
}
.transfer__options .transfer__option .transfer__option-placeholder svg,.transfer__options .transfer__option .transfer__exp-option svg {
vertical-align: baseline;
padding: 0;
margin: 2px 0 0 5px;
height: .85em;
width: .85em
}
.transfer__options .transfer__option .transfer__option-placeholder svg path,.transfer__options .transfer__option .transfer__exp-option svg path {
fill: #17181A
}
.transfer__options .transfer__option .transfer__type-radio {
margin-top: 0.28571em;
display: inline-block;
margin-right: 1.28571em
}
.transfer__options .transfer__password {
border: 0;
background: none;
width: 100%;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #17181A;
outline: 0;
padding: 0;
margin: 0
}
.fl-1 .transfer__options .transfer__password {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transfer__textfield {
text-decoration: none;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
border-radius: 5px;
border: 1px solid #D4D7D9;
line-height: 2.14286em;
height: 2.85714em;
display: block;
text-align: center;
width: 15em;
margin: 0 auto;
color: #484A4D;
outline: 0
}
.fl-1 .transfer__textfield {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (min-width: 64em) and (max-width: 65.5625em) {
.transfer__textfield {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
}
.is-mobile-ready .transfer__textfield {
margin-top: 1.42857em;
height: 3.57143em;
width: calc(100% - 70px);
float: left
}
.transfer__bubble {
background-clip: padding-box;
border: 1px solid rgba(255,255,255,0.2);
text-align: center;
position: absolute;
margin: 0 0 0 1.125em;
left: 100%;
top: 0;
width: 14.61538em;
color: rgba(255,255,255,0.8);
-webkit-transition: opacity .4s ease;
transition: opacity .4s ease;
opacity: 0
}
.transfer__bubble-title {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.23077em
}
.fl-1 .transfer__bubble-title {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .transfer__bubble {
position: relative;
top: 0;
left: 0;
max-width: initial;
width: 100%;
margin: 0
}
.transfer__bubble p {
white-space: pre-line
}
.popover {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
position: relative;
cursor: pointer
}
.popover__content,.transfer__bubble {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
background: #17181A;
color: #FFFFFF;
position: absolute;
z-index: 40;
max-width: 17.69231em;
font-size: 0.8125em;
padding: 20px 12px;
border-radius: 5px;
line-height: 1.4
}
.fl-1 .popover__content,.fl-1 .transfer__bubble {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.popover__content p,.transfer__bubble p {
padding: 0;
margin: 0
}
.popover__content--top:before,.popover__content--top:after,.popover__content--bottom:before,.popover__content--bottom:after {
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%)
}
.popover__content--top:before,.popover__content--top:after {
top: -8px;
border: 8px solid transparent;
border-top: 0;
border-bottom-color: #17181A
}
.popover__content--bottom:before,.popover__content--bottom:after {
bottom: -8px;
border: 8px solid transparent;
border-bottom: 0;
border-top-color: #17181A
}
.popover__content--left:before,.transfer__bubble:before,.popover__content--left:after,.transfer__bubble:after,.popover__content--right:before,.popover__content--right:after {
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.popover__content--left:before,.transfer__bubble:before,.popover__content--left:after,.transfer__bubble:after {
z-index: 2;
left: -8px;
border: 8px solid transparent;
border-left: 0;
border-right-color: #17181A
}
.popover__content--left:after,.transfer__bubble:after {
z-index: 1;
left: -10px;
border: 10px solid transparent;
border-left: 0;
border-right-color: rgba(255,255,255,0.2)
}
.popover__content--right:before,.popover__content--right:after {
right: -8px;
border: 8px solid transparent;
border-right: 0;
border-left-color: #17181A
}
.popover__content:before,.transfer__bubble:before,.popover__content:after,.transfer__bubble:after {
content: '';
position: absolute
}
.is-mobile-ready .popover__content:before,.is-mobile-ready .transfer__bubble:before,.is-mobile-ready .popover__content:after,.is-mobile-ready .transfer__bubble:after {
display: none
}
.popover__image {
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: 100%;
display: block;
height: 6.15385em;
width: 6.15385em;
margin: 0 auto 0.76923em
}
.is-mobile-ready .popover__image {
display: none
}
.popover__image--info {
background-image: url(https://cdn.wetransfer.net/assets/transfer-bubble/icon-info-823bb27dfb9496a8c95d21759037e2607836869b5f14b42bed0bcbb4d5efc37b.png)
}
.popover__image--error {
background-image: url(https://cdn.wetransfer.net/assets/transfer-bubble/icon-error-9e5ea275f83b0c542ccf24cf2b47952ee82bd735bcff129a4d248f70fc025981.png)
}
.popover__image--plus {
background-image: url(https://cdn.wetransfer.net/assets/transfer-bubble/icon-plus-bf6b39784f40660ae654512e54755d43bc88377cc7b8a22c586fe90a650f30da.png)
}
.popover__button {
display: inline-block;
margin: 1em 0 0;
padding: 0 20px;
font-size: 1.07692em;
line-height: 2.85714em;
border: 1px solid #FFFFFF;
text-decoration: none;
border-radius: 4px;
color: #FFFFFF
}
.popover__title {
display: block
}
.downloader .filelist__item:last-of-type {
border-bottom: 0
}
.downloader .filelist__spinner,.downloader .filelist__action {
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, #fff 35%, #fff 100%);
background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 35%, #fff 100%)
}
.downloader h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1.2;
text-align: center;
font-size: 1.375em;
color: #17181A;
padding: 0 0.45455em;
margin: 0
}
.fl-1 .downloader h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .downloader h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.downloader p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #919599;
padding: 0;
margin: 0
}
.fl-1 .downloader p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.downloader__heading {
height: auto;
min-height: 5.25em;
display: block;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
-ms-grid-row-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
border-bottom: 1px solid #E8EBED;
padding: 1.875em 0 0.75em
}
.is-mobile-ready .downloader__heading {
min-height: 0
}
.is-mobile-ready .downloader__heading {
padding: 0 0 2.1875em
}
.downloader__heading .downloader__ready-icon {
margin: 0 0 1em;
display: block;
margin-left: auto;
margin-right: auto
}
.is-mobile-ready .downloader__heading .downloader__ready-icon {
display: none
}
.downloader__heading h2 {
margin: 0 0 0.0625em;
padding: 0 0.90909em
}
.downloader__heading p {
font-size: 0.8125em;
line-height: 1.38462em;
text-align: center;
padding: 0 1.53846em
}
.downloader__heading.downloader__heading--message {
padding-top: 2.5em
}
.is-mobile-ready .downloader__heading.downloader__heading--message {
padding-top: 0
}
.downloader__heading.downloader__heading--4-files {
height: auto;
min-height: 8.4375em;
padding-top: 3.75em
}
.is-mobile-ready .downloader__heading.downloader__heading--4-files {
min-height: 0
}
.downloader__heading.downloader__heading--4-files.downloader__heading--message {
padding-top: 1.25em
}
.downloader__heading.downloader__heading--3-files {
height: auto;
min-height: 11.625em;
padding-top: 5em
}
.is-mobile-ready .downloader__heading.downloader__heading--3-files {
min-height: 0
}
.downloader__heading.downloader__heading--3-files.downloader__heading--message {
padding-top: 3.75em
}
.downloader__heading.downloader__heading--2-files {
height: auto;
min-height: 14.8125em;
padding-top: 2.5em
}
.is-mobile-ready .downloader__heading.downloader__heading--2-files {
min-height: 0
}
.downloader__heading.downloader__heading--2-files .downloader__ready-icon {
margin-bottom: 0.8125em
}
.downloader__heading.downloader__heading--2-files h2 {
margin-bottom: 0.23077em
}
.downloader__heading.downloader__heading--2-files.downloader__heading--message {
padding-top: 4.0625em
}
.downloader__heading.downloader__heading--2-files.downloader__heading--message .downloader__ready-icon {
display: none
}
.is-mobile-ready .downloader__heading.downloader__heading--2-files {
padding-top: 0
}
.downloader__heading.downloader__heading--1-files.downloader__heading--message .downloader__ready-icon,.downloader__heading.downloader__heading--2-files .downloader__ready-icon {
height: 6.25em;
width: 6.25em
}
.downloader__heading.downloader__heading--1-files {
height: auto;
min-height: 18em;
padding-top: 1.875em
}
.is-mobile-ready .downloader__heading.downloader__heading--1-files {
min-height: 0
}
.downloader__heading.downloader__heading--1-files .downloader__ready-icon {
height: 10.625em;
width: 10.625em
}
.is-mobile-ready .downloader__heading.downloader__heading--1-files .downloader__ready-icon {
height: 8.125em;
width: 8.125em
}
.downloader__heading.downloader__heading--1-files .downloader__download-info {
margin-bottom: 1.875em
}
.downloader__upsell h2,.downloader__expired h2,.downloader__progress h2,.downloader__password h2,.downloader__complete h2 {
margin: 0 0 0.1875em
}
.downloader__upsell p,.downloader__expired p,.downloader__progress p,.downloader__password p,.downloader__complete p {
margin: 0 0 0.625em;
padding: 0 1.875em;
line-height: 1.4;
color: #484A4D;
text-align: center
}
.downloader__password .transfer__textfield {
text-align: left;
padding-left: 0.625em;
padding-right: 0.625em
}
.is-mobile-ready .downloader__password .transfer__textfield {
width: 100%
}
.downloader__upsell .illustration,.downloader__expired .illustration,.downloader__password .illustration {
display: block;
margin: 1.875em auto 0.75em
}
.is-mobile-ready .downloader__upsell .illustration,.is-mobile-ready .downloader__expired .illustration,.is-mobile-ready .downloader__password .illustration {
margin-top: 0.625em
}
.downloader__complete .downloader__image {
display: block;
margin: 1.875em auto 0.75em;
height: 10.625em;
width: 10.625em
}
.is-mobile-ready .downloader__complete .downloader__image {
height: 8.125em;
width: 8.125em
}
.downloader__upsell p,.downloader__password p,.downloader__complete p {
white-space: pre-wrap
}
.downloader__password .button {
float: right
}
.is-mobile-ready .downloader__password .button {
width: 100%;
float: none
}
.downloader__upsell a {
color: #409FFF;
font-size: 1.15385em
}
.downloader__expired p {
white-space: pre-wrap
}
.downloader__message {
padding: 15px 20px 10px;
display: block;
width: 100%
}
.is-mobile-ready .downloader__message {
padding: 15px 0 0
}
.downloader__message .downloader__expand-msg {
padding-bottom: 0;
margin-left: 5px;
display: inline-block;
cursor: pointer;
color: #919599
}
.downloader__message .downloader__expand-msg svg {
display: inline-block;
margin-left: 3px;
height: 6px;
width: 6px
}
.downloader__message .downloader__expand-msg path {
stroke: #919599
}
.downloader__message p {
line-height: 1.42;
text-align: left;
font-size: 0.875em;
padding: 0;
margin: 0;
color: #484A4D
}
.downloader__message--expanded p {
white-space: pre-wrap;
word-wrap: break-word
}
.downloader__show-all-files {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #919599;
font-size: 0.875em;
display: block;
margin: 0.35714em 0 1.07143em
}
.fl-1 .downloader__show-all-files {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.downloader__download-info {
border-top: 1px solid #E8EBED;
border-bottom: 1px solid #E8EBED;
margin: 0 0 0.9375em;
padding-bottom: 1.25em
}
.is-mobile-ready .downloader__download-info {
border-bottom: 0;
margin: 0
}
.downloader__file-count-title,.downloader__download-link-title {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
margin-bottom: 0.625em;
color: #17181A
}
.fl-1 .downloader__file-count-title,.fl-1 .downloader__download-link-title {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .downloader__file-count-title,.is-mobile-ready .downloader__download-link-title {
margin: 1.25em 0 0
}
a.downloader__download-link {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #409FFF;
font-size: 0.875em;
text-decoration: none
}
.fl-1 a.downloader__download-link {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready a.downloader__download-link {
margin-top: 0.35714em
}
.uploader__fields {
padding: 0 0.625em
}
.uploader__textfield {
display: block;
width: 100%;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
outline: 0;
padding: 0.85714em 0.71429em;
border: 0;
margin: 0;
color: #17181A;
border-bottom: 1px solid #D4D7D9
}
.fl-1 .uploader__textfield {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader__recipients+.uploader__textfield {
padding-top: 0.5em
}
.uploader__textfield::-webkit-input-placeholder {
color: #919599
}
.uploader__textfield::-moz-placeholder {
color: #919599
}
.uploader__textfield:-ms-input-placeholder {
color: #919599
}
.uploader__textfield::placeholder {
color: #919599
}
.uploader__textfield:invalid,.uploader__textfield:-moz-ui-invalid {
box-shadow: none
}
.uploader__recipients {
overflow: auto;
padding: 0.625em 0 0 0.125em;
margin: 0
}
.uploader__recipient-summary {
border-bottom: 1px solid #D4D7D9;
padding: 0.625em;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex
}
.uploader__first-recipient {
display: inline-block;
margin: 0 0.35714em 0 0;
padding: 0.21429em 0 0.35714em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
line-height: 1;
cursor: default;
color: #17181A;
white-space: nowrap;
max-width: 11.07143em;
overflow: hidden;
text-overflow: ellipsis
}
.fl-1 .uploader__first-recipient {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader__recipient-summary--1-recipients .uploader__first-recipient {
max-width: 20em
}
.uploader__recipient {
position: relative;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
white-space: nowrap;
background: #E8EBED;
border-radius: 0.78571em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1;
font-size: 0.875em;
display: inline-block;
outline: 0;
border: 0;
clear: both;
float: left;
color: #17181A;
margin: 0 0 0.28571em;
padding: 0.28571em 0.57143em;
text-overflow: ellipsis;
max-width: 100%;
overflow: hidden
}
.fl-1 .uploader__recipient {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader__recipient:last-of-type {
margin-bottom: 0
}
.uploader__recipient.uploader__recipient--selected {
background: #D4D7D9
}
.uploader__recipient.uploader__recipient--hidden {
position: absolute;
opacity: 0
}
.uploader__recipient-summary .uploader__recipient {
cursor: pointer
}
.uploader__remove-recipient {
position: absolute;
background: -webkit-linear-gradient(left, rgba(232,235,237,0) 0%, #E8EBED 50%, #E8EBED 100%);
background: linear-gradient(to right, rgba(232,235,237,0) 0%, #E8EBED 50%, #E8EBED 100%);
text-align: right;
opacity: 0;
cursor: pointer;
width: 1.875em;
right: 0.3125em;
top: 0.375em
}
.uploader__remove-recipient svg {
height: 0.875em;
width: 0.875em
}
.uploader__recipient--selected .uploader__remove-recipient {
background: -webkit-linear-gradient(left, rgba(212,215,217,0) 0%, #D4D7D9 50%, #D4D7D9 100%);
background: linear-gradient(to right, rgba(212,215,217,0) 0%, #D4D7D9 50%, #D4D7D9 100%);
opacity: 1
}
.uploader__recipient:hover .uploader__remove-recipient {
opacity: 1
}
.uploader__message {
position: relative;
z-index: 10;
padding: 0;
width: 100%
}
.uploader__message .uploader__message--shadow,.uploader__message textarea {
background: none;
overflow: hidden;
display: block;
padding: 13px 20px;
min-height: 5.3125em;
outline: 0;
margin: 0;
border: 0;
width: 100%;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
line-height: 1.2;
color: #17181A
}
.fl-1 .uploader__message .uploader__message--shadow,.fl-1 .uploader__message textarea {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader__fields .uploader__message .uploader__message--shadow,.uploader__fields .uploader__message textarea {
padding: 13px 10px
}
.uploader__message .uploader__message--shadow {
white-space: pre-wrap;
visibility: hidden;
word-wrap: break-word
}
.uploader__message textarea {
position: absolute;
overflow: hidden;
height: 100%;
width: 100%;
left: 0;
top: 0;
resize: none
}
.uploader__message textarea::-webkit-input-placeholder {
color: #919599
}
.uploader__message textarea::-moz-placeholder {
color: #919599
}
.uploader__message textarea:-ms-input-placeholder {
color: #919599
}
.uploader__message textarea::placeholder {
color: #919599
}
.uploader__autosuggest {
position: relative;
z-index: 20
}
.uploader__autosuggest ul {
background: #FFFFFF;
position: absolute;
padding: 0.4375em 0;
margin: -1px 0 0;
right: -0.625em;
left: -0.625em;
top: 100%;
border-top: 1px solid #D4D7D9;
border-bottom: 1px solid #D4D7D9
}
.uploader__autosuggest .uploader__suggestion {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
list-style: none;
padding: 0.35714em 1.42857em;
margin: 0;
cursor: pointer;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1;
font-size: 0.875em;
color: #17181A
}
.fl-1 .uploader__autosuggest .uploader__suggestion {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader__autosuggest .uploader__suggestion span {
display: inline-block;
padding: 0 0 0 0.35714em;
color: #919599
}
.uploader__autosuggest .uploader__suggestion:hover,.uploader__autosuggest .uploader__suggestion.uploader__suggestion--selected {
background: #409FFF;
color: #FFFFFF
}
.uploader__autosuggest .uploader__suggestion:hover span,.uploader__autosuggest .uploader__suggestion.uploader__suggestion--selected span {
color: #FFFFFF
}
.terms-conditions .transfer__contents {
padding: 0 20px
}
.terms-conditions .terms__image {
display: block;
margin: 1.125em auto 0
}
.terms-conditions h2 {
padding: 0 0 0 0.4em;
margin: 0 0 0.18182em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1.2;
text-align: center;
font-size: 1.375em;
color: #17181A
}
.fl-1 .terms-conditions h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .terms-conditions h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.terms-conditions p {
padding: 0;
margin: 0 0 0.61538em;
line-height: 1.38462em;
text-align: center;
font-size: 0.8125em;
color: #484A4D
}
.terms-conditions p span {
display: inline-block
}
.terms-conditions a {
color: #484A4D
}
.terms-conditions a:hover {
color: #17181A
}
.uploader .scrollable.transfer__contents {
overflow: auto
}
.uploader .uploader__image {
display: block;
margin: 1.875em auto 0.75em
}
.uploader h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1.2;
text-align: center;
font-size: 1.375em;
color: #17181A;
padding: 0 0.45455em;
margin: 0
}
.fl-1 .uploader h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .uploader h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader--form .uploader__files {
position: relative;
border-bottom: 1px solid #D4D7D9
}
.uploader--form .uploader__files form {
position: absolute;
opacity: 0;
height: 1px;
width: 1px;
left: 0;
bottom: 0;
overflow: hidden
}
.uploader--form .uploader__empty-state {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
padding-top: 7.1875em;
min-height: 16.25em;
cursor: pointer
}
.uploader--form .uploader__empty-state svg {
position: absolute;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
display: block;
margin: 0 0.625em 0 1.25em;
height: 2.25em;
width: 2.25em;
top: 7.125em
}
.uploader--form .uploader__empty-state svg path {
-webkit-transition: all 0.33s cubic-bezier(0.77, 0, 0.175, 1);
transition: all 0.33s cubic-bezier(0.77, 0, 0.175, 1)
}
.uploader--form .uploader__empty-state:hover svg path:first-of-type,.uploader--form .uploader__empty-state:focus svg path:first-of-type {
fill: #0073e5
}
.uploader--form .uploader__empty-state h2 {
position: absolute;
left: 3em;
top: 5.54545em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1;
text-align: left;
font-size: 1.375em;
display: block;
padding: 0;
margin: 0
}
.fl-1 .uploader--form .uploader__empty-state h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .uploader--form .uploader__empty-state h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader--form .uploader__empty-state p {
position: absolute;
opacity: 0;
-webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
left: 5.07692em;
top: 10.15385em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
padding: 0;
margin: 0;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1;
font-size: 0.8125em;
color: #919599
}
.fl-1 .uploader--form .uploader__empty-state p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader--form .uploader__empty-state:hover h2 {
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.uploader--form .uploader__empty-state:hover p {
-webkit-transform: translateY(50%);
transform: translateY(50%);
opacity: 1
}
.uploader--type-email .uploader__empty-state {
padding-top: 4.375em;
min-height: 10.9375em
}
.uploader--type-email .uploader__empty-state svg {
top: 4.375em
}
.uploader--type-email .uploader__empty-state h2 {
top: 3.54545em
}
.uploader--type-email .uploader__empty-state p {
top: 6.76923em
}
.uploader--form .uploader__list {
background: #F7F9FA;
min-height: 25em;
position: relative;
padding: 150px 0 3.25em;
margin-top: -140px
}
.uploader--type-email .uploader__list {
min-height: 19.6875em
}
.uploader--form .uploader__footer {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
position: absolute;
bottom: 0;
height: 3.25em;
right: 20px;
left: 20px
}
.uploader--form .uploader__add-more {
cursor: pointer
}
.uploader--form .uploader__add-more:hover .uploader__add-files path {
fill: #0073e5
}
.uploader--form .uploader__add-more:hover .uploader__add-files-label {
color: #484A4D
}
.uploader--form .uploader__add-more:hover .uploader__add-files-count {
color: #919599
}
.uploader--form .uploader__add-files {
display: inline-block;
vertical-align: middle;
width: 1.5em;
height: 3.25em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.uploader--form .uploader__add-files path {
-webkit-transition: fill 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: fill 0.2s cubic-bezier(0.77, 0, 0.175, 1)
}
.uploader--form .uploader__add-files.uploader__add-files--reset {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg)
}
.uploader--form .uploader__add-files-content {
display: inline-block;
vertical-align: middle;
padding-left: 0.625em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
position: relative;
top: 0.0625em
}
.uploader--form .uploader__add-files-content .uploader__add-files-label,.uploader--form .uploader__add-files-content .uploader__add-files-count {
display: block;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
-webkit-transition: color 0.2s cubic-bezier(0.77, 0, 0.175, 1);
transition: color 0.2s cubic-bezier(0.77, 0, 0.175, 1)
}
.fl-1 .uploader--form .uploader__add-files-content .uploader__add-files-label,.fl-1 .uploader--form .uploader__add-files-content .uploader__add-files-count {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader--form .uploader__add-files-label {
font-size: 0.8125em;
color: #919599;
line-height: 1.23077em
}
.uploader--form .uploader__add-files-count {
font-size: 0.6875em;
color: #BABCBF
}
.uploader--progress h2 {
padding: 0 0.90909em;
margin: 0 0 0.36364em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1.2;
text-align: center;
font-size: 1.375em;
color: #17181A
}
.fl-1 .uploader--progress h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .uploader--progress h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader--progress p {
text-align: center;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
line-height: 1.38462em;
font-size: 0.8125em;
padding: 0;
margin: 0;
color: #484A4D
}
.fl-1 .uploader--progress p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.uploader--complete .transfer__contents {
padding: 0 20px
}
.uploader--complete h2 {
padding: 0;
margin: 0 0 0.18182em
}
.uploader--complete .complete__text {
padding: 0;
margin: 0 0 0.92857em;
line-height: 1.28571em;
text-align: center;
font-size: 0.875em;
color: #484A4D;
white-space: pre-wrap
}
.uploader--error .illustration {
display: block;
margin: 1.875em auto 0.75em;
height: 10.625em;
width: 10.625em
}
.uploader--error h2 {
white-space: pre-wrap;
padding: 0 0.45455em;
margin: 0 0 0.27273em
}
.uploader--error p {
padding: 0;
margin: 0 1.14286em 0.71429em;
line-height: 1.28571em;
text-align: center;
font-size: 0.875em;
color: #484A4D;
white-space: pre-wrap
}
.uploader--error p a {
color: #484A4D
}
.uploader--error p a:hover {
color: #17181A
}
.transfer__upsell {
padding: 0;
margin: 0
}
.transfer__upsell .illustration {
display: block;
margin: 1.875em auto 0.75em
}
.transfer__upsell h2 {
margin: 0 0 0.4375em
}
.transfer__upsell p {
margin: 0;
padding: 0;
line-height: 1.4;
text-align: center;
white-space: pre-wrap
}
.transfer__upsell a {
color: #409FFF;
font-size: 1em
}
.transferlist {
position: relative
}
.transferlist__search {
position: absolute;
right: 0;
top: 0.375em;
width: 18.75em
}
.transferlist__search input {
padding-left: 2.625em
}
.is-mobile-ready .transferlist__search {
position: relative;
width: inherit
}
.transferlist__time-ago {
position: absolute;
top: -0.1875em;
width: 100%;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #919599;
font-size: 0.875em;
height: 1.57143em
}
.fl-1 .transferlist__time-ago {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferlist__time-ago ~ .transferlist__time-ago {
position: inherit;
margin-top: 1.42857em
}
.is-mobile-ready .transferlist__time-ago {
position: relative;
height: inherit;
top: inherit;
width: inherit;
margin-bottom: 0.4375em
}
.transferlist__sorting {
float: right
}
.is-mobile-ready .transferlist__sorting {
float: none;
margin-bottom: 2em
}
.is-mobile-ready .transferlist__sorting span:first-of-type {
display: block;
margin-bottom: 0.3125em
}
.transferlist__list-info {
position: absolute
}
.transferlist__list-info a {
color: #409FFF;
text-decoration: underline;
cursor: pointer
}
.transferlist__list-info a:hover {
color: #0073e5
}
.transferlist__list-info a:before {
display: inline-block;
content: '\00B7';
padding: 0 0.625em;
text-decoration: none;
color: #919599
}
.is-mobile-ready .transferlist__list-info {
position: static
}
.transferlist__sort {
margin-left: 0.64286em;
text-decoration: underline;
position: relative;
cursor: pointer
}
.transferlist__sort:hover {
color: #409FFF
}
.transferlist__sort--active {
color: #409FFF;
padding-right: 1.14286em;
margin-right: 0
}
.is-mobile-ready .transferlist__sort {
line-height: 2.5em;
width: calc((100% / 3) - 6px);
display: inline-block;
border: 1px solid #D4D7D9;
height: 2.5em;
margin: 0 0.5625em 0 0;
padding: 0;
border-radius: 0.3125em;
text-align: center;
text-decoration: none
}
.is-mobile-ready .transferlist__sort:last-of-type {
margin-right: 0
}
.is-mobile-ready .transferlist__sort--active {
border-color: #409FFF
}
.transferlist__sort-arrow {
position: absolute;
height: 0.5em;
top: 0.375em;
right: 0.4375em
}
.is-mobile-ready .transferlist__sort-arrow {
position: static;
margin-left: 0.375em
}
.transferlist__holder {
position: relative;
list-style: none;
margin: 2.1875em 0;
padding: 1.375em 0 0
}
.is-mobile-ready .transferlist__holder {
top: 0
}
.transferlist__actionbar a {
color: #FFFFFF;
text-decoration: underline;
cursor: pointer
}
.transferlist__actionbar a:before {
display: inline-block;
content: '\00B7';
padding: 0 0.625em;
text-decoration: none
}
.transferdetail h1 {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
.is-mobile-ready .transferdetail h1 {
word-break: break-all;
overflow: initial;
white-space: initial;
line-height: 1.15385em
}
.transferdetail h2 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em
}
.fl-1 .transferdetail h2 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .transferdetail h2 {
margin-bottom: 0
}
.transferdetail .col {
width: 46%;
margin-right: 8%
}
.transferdetail .col:last-of-type {
margin-right: 0
}
.is-mobile-ready .transferdetail .col {
width: 100%;
margin: 0;
padding: 0
}
.transferdetail .col div:first-of-type {
margin-top: 0
}
.transferdetail__options {
width: 100%;
height: 6.25em;
box-shadow: inset 0 -1px 0 0 #E8EBED, inset 0 1px 0 0 #E8EBED;
margin-top: 1.875em;
margin-bottom: 1.875em;
padding-right: 0.625em;
position: relative;
text-align: right
}
.is-mobile-ready .transferdetail__options {
margin-bottom: 0.9375em;
padding-right: 0;
height: 5.625em;
text-align: left
}
.transferdetail__option {
margin-top: 1.625em;
margin-left: 1.25em;
cursor: pointer;
color: #409FFF;
display: inline-block;
position: relative
}
.transferdetail__option>svg {
position: absolute;
width: 1.5em;
height: 1.5em;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%)
}
.transferdetail__option .transferitem__spinner {
top: 0;
left: 50%;
-webkit-transform: translateX(-0.75em);
transform: translateX(-0.75em)
}
.transferdetail__option--disabled {
color: #919599 !important;
cursor: default;
opacity: 0.75;
pointer-events: none
}
.transferdetail__option--no-hover:hover {
cursor: default;
color: #409FFF !important
}
.transferdetail__option--no-hover:hover svg path:first-of-type {
fill: #409FFF !important
}
.transferdetail__option span {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: inline-block;
width: 100%;
padding-top: 2.21429em;
font-size: 0.875em
}
.fl-1 .transferdetail__option span {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferdetail__option-forward svg {
-webkit-transform: rotate(180deg),translateX(-50%);
transform: rotate(180deg),translateX(-50%)
}
.transferdetail__option:hover {
color: #0073e5
}
.transferdetail__option:hover svg:not(.spinner__circle) path:first-of-type {
fill: #0073e5
}
.transferdetail__options-mobile {
padding-top: 1.42857em
}
.transferdetail__options-mobile .button {
width: 100%;
margin: 0.71429em 0 0;
height: 3.57143em
}
.transferdetail__link-wrapper {
position: absolute;
top: calc(50% - 1.5625em);
border: 1px solid #BABCBF;
border-radius: 5px
}
.is-mobile-ready .transferdetail__link-wrapper,.has-touch .transferdetail__link-wrapper {
width: 100%;
height: 3.25em;
text-align: center
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.is-mobile-ready .transferdetail__link-wrapper,.has-touch .transferdetail__link-wrapper {
width: 50%;
border: 0
}
}
.transferdetail__link {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
position: relative;
color: #409FFF;
border: 0;
border-radius: 5px;
height: 3.57143em;
width: 21em;
padding: 0 1.875em 0 1.25em;
font-size: 0.875em
}
.fl-1 .transferdetail__link {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferdetail a.transferdetail__link {
top: 1.125em;
width: 100%;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #409FFF;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block
}
.fl-1 .transferdetail a.transferdetail__link {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferdetail__copy-link {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #919599;
position: absolute;
top: 0;
right: 0;
font-size: 0.875em;
line-height: 3.57143em;
cursor: pointer;
z-index: 5;
background-color: #FFFFFF;
margin-right: 1.42857em;
padding: 0 0 0 0.85714em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border-radius: 0.35714em
}
.fl-1 .transferdetail__copy-link {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferdetail__copy-link:before {
content: "";
display: block;
position: absolute;
height: 3.57143em;
width: 2.14286em;
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, #fff 100%);
background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 100%);
left: -2.14286em
}
.transferdetail__copy-link:hover {
color: #0073e5
}
.transferdetail__filelist {
width: 100%
}
.is-mobile-ready .transferdetail__filelist {
padding: 0.75em 0 1.5625em
}
.transferdetail__filelist .filelist {
font-size: 1.14286em
}
.transferdetail__filelist .filelist__item {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
position: relative;
margin: 0;
padding: 0.5em 0;
font-size: 0.875em
}
.fl-1 .transferdetail__filelist .filelist__item {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferdetail__filelist .filelist .filelist__action,.transferdetail__filelist .filelist .filelist__spinner {
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, #fff 35%, #fff 100%);
background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 35%, #fff 100%);
visibility: visible;
opacity: 1
}
.transferdetail__filelist .filelist .filelist__action svg path {
fill: #BABCBF
}
.is-mobile-ready .transferdetail__filelist .filelist .filelist__action svg path {
fill: #409FFF
}
.transferdetail__filelist .filelist .filelist__action:hover svg path {
fill: #409FFF
}
.transferdetail__message {
margin-top: 2.1875em
}
.transferdetail__message p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
line-height: 1.4
}
.fl-1 .transferdetail__message p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .transferdetail__message {
padding-bottom: 1.25em;
box-shadow: inset 0 -1px 0 0 #E8EBED
}
.transferdetail__downloads {
margin-top: 2.1875em
}
.transferdetail__downloads span {
font-size: 4.375em;
display: block;
height: 0.71429em;
line-height: 0.5em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .transferdetail__downloads span {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .transferdetail__downloads span {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .transferdetail__downloads {
text-align: center;
margin-top: 0;
box-shadow: inset 0 -1px 0 0 #E8EBED;
padding-bottom: 1.25em;
margin-bottom: 1.875em
}
.is-mobile-ready .transferdetail__downloads span {
font-size: 2.5em;
line-height: 0.85em
}
.transferdetail__recipients ul {
margin: 0;
padding: 0
}
.transferdetail__recipients li {
list-style: none;
height: inherit;
line-height: 1.625em;
position: relative;
margin-bottom: 0.625em
}
.transferdetail__recipients li div {
display: block;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
position: relative;
line-height: 1.28571em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 100%
}
.fl-1 .transferdetail__recipients li div {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .transferdetail__recipients li div {
white-space: initial;
word-break: break-all;
text-overflow: initial
}
.transferdetail__recipients li div.status {
color: #919599;
font-size: 0.8125em;
margin-top: 0.07692em;
line-height: 1.15385em;
text-overflow: initial;
white-space: normal;
word-break: break-word;
padding-left: 1.15385em
}
.transferdetail__recipients li div svg {
position: absolute;
width: 0.9375em;
height: 0.9375em;
left: 0;
top: 0.25em
}
.transferdetail__recipients li div svg.transferdetail__recipient-bounced {
top: 0.1875em
}
.is-mobile-ready .transferdetail__recipients {
box-shadow: inset 0 -1px 0 0 #E8EBED;
padding-bottom: 0.9375em
}
.is-mobile-ready .transferdetail__recipients h2 {
margin-bottom: 0.9375em
}
.transferdetail__more,.transferdetail__expand-msg {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: inline-block;
color: #919599;
cursor: pointer
}
.fl-1 .transferdetail__more,.fl-1 .transferdetail__expand-msg {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferdetail__more:hover,.transferdetail__expand-msg:hover {
color: #484A4D
}
.transferdetail__more {
margin-top: 0.9375em;
font-size: 0.875em
}
.transferdetail__expand-msg {
margin-left: 5px
}
.transferitem {
height: 5em;
border: 1px solid #E8EBED;
border-radius: 5px;
margin-bottom: 0.625em;
position: relative;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
overflow: hidden
}
.transferitem__options {
display: none
}
.transferitem .transferitem__option {
color: #919599;
text-decoration: underline
}
.transferitem .transferitem__option:not(:last-child):after {
display: inline-block;
content: '\00B7';
padding: 0 0.625em;
text-decoration: none;
color: #919599
}
.transferitem .transferitem__option:hover {
color: #409FFF
}
.transferitem .transferitem__option.transferitem__option--disabled {
pointer-events: none;
cursor: default;
color: #D8D8D8;
text-decoration: none
}
.transferitem__meta,.transferitem__options {
width: 90%;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #919599;
position: absolute;
left: 1.53846em;
top: 3.23077em
}
.fl-1 .transferitem__meta,.fl-1 .transferitem__options {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferitem__meta .transfermetadata,.transferitem__options .transfermetadata {
width: 90%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
.transferitem__arrow {
height: 2.25em;
width: 2.25em;
padding: 0.625em;
top: 50%;
-webkit-transform: translateY(-50%) rotate(180deg);
transform: translateY(-50%) rotate(180deg);
position: absolute;
right: 1.375em
}
.transferitem__arrow:hover path {
stroke: #409FFF
}
.is-mobile-ready .transferitem__arrow {
right: 0.75em
}
.transferitem--active,.transferitem--selected,.transferitem:hover {
background-color: #F7F9FA
}
html:not(.is-mobile-ready) .transferitem:not(.transferitem--selecting):hover .transferitem__meta {
display: none
}
html:not(.is-mobile-ready) .transferitem:not(.transferitem--selecting):hover .transferitem__options {
display: block
}
.transferitem--highlight-files {
color: #409FFF
}
.transferitem--disabled {
opacity: 0.2;
pointer-events: none;
cursor: default
}
.transferitem__checkbox {
margin: 0;
position: absolute;
left: 1.53846em;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.transferitem__title {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
position: absolute;
width: 80%;
top: 1.0625em;
left: 1.25em;
overflow: hidden;
height: 1.5em;
text-overflow: ellipsis;
white-space: nowrap;
padding-right: 0.625em
}
.fl-1 .transferitem__title {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.transferitem__title span {
color: #409FFF
}
.is-mobile-ready .transferitem__title {
left: 1.25em
}
.transferitem__input {
position: absolute;
height: 1px;
top: -10px;
padding: 0;
border: 0
}
.transferitem__more {
width: 3.625em;
position: absolute;
right: 0.25em;
top: 1.125em;
padding: 1.25em;
cursor: pointer
}
.is-mobile-ready .transferitem__more {
width: 0.5625em;
padding: 0;
right: 1.25em;
top: 2.4375em
}
.transferitem__more:hover path:first-of-type,.transferitem__more:focus path:first-of-type {
fill: #409FFF
}
.transferitem--selecting:hover {
cursor: pointer;
background-color: #F7F9FA
}
.transferitem--selecting .transferitem__title {
left: 3.75em
}
.transferitem--selecting .transferitem__meta {
left: 4.61538em
}
@media (min-width: 48em) and (max-width: 65.5625em) {
.transferitem {
height: 6.25em
}
.transferitem__meta {
display: block !important
}
.transferitem__options {
display: block;
top: 4.76923em
}
.transferitem--selecting .transferitem__title {
top: 1.8125em
}
.transferitem--selecting .transferitem__meta {
top: 4em;
display: block
}
.transferitem--selecting .transferitem__options {
display: none
}
}
.transfermetadata>:not(:last-child):after {
display: inline-block;
content: '\00B7';
padding: 0 0.625em;
text-decoration: none;
color: #919599
}
.transfermetadata__padlock {
margin-right: 0.38462em;
height: 0.76923em
}
.transfermetadata__open-calendar {
cursor: pointer;
display: inline-block
}
.transfermetadata__open-calendar svg.spinner__circle,.transfermetadata__open-calendar svg.open-popup {
height: 0.625em;
margin-left: 0.125em
}
.transfermetadata__open-calendar:hover u {
color: #484A4D
}
.transfermetadata__open-calendar:hover svg.open-popup path {
fill: #484A4D
}
.transfermetadata__expiry-warning {
margin: 0.0625em 0.25em -0.125em;
height: 0.9375em;
width: 0.875em
}
.transfermetadata__never-exp-btn {
width: 80%;
font-size: 0.75em;
margin-top: 0.83333em;
height: 2.5em;
margin: 1.25em 0 0.41667em;
padding: 0
}
.transfermetadata__never-exp-btn:not(.button--inline) {
cursor: default
}
.wallpaper {
background: #17181A;
position: absolute;
z-index: 10;
height: 100%;
width: 100%;
left: 0;
top: 0;
overflow: hidden
}
.wallpaper--no-transition iframe {
-webkit-transition: none;
transition: none
}
.wallpaper--full-panel iframe {
-webkit-transform: translateX(-20%);
transform: translateX(-20%)
}
.wallpaper--half-panel iframe {
-webkit-transform: none;
transform: none
}
@media (max-width: 79.9375em) {
.wallpaper--half-panel iframe {
-webkit-transform: translateX(-10%);
transform: translateX(-10%)
}
}
@media (max-width: 65.5625em) {
.wallpaper--half-panel iframe {
-webkit-transform: translateX(-20%);
transform: translateX(-20%)
}
}
.wallpaper iframe {
-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),-webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
background: transparent;
position: absolute;
z-index: 1;
border: 0;
height: 100%;
width: 100%;
left: 0;
top: 0
}
.wallpaper__cover {
background: rgba(0,0,0,0.01);
position: absolute;
z-index: 4;
cursor: pointer;
height: 100%;
width: 100%;
left: 0;
top: 0
}
.wallpaper__title {
position: absolute;
display: inline-block;
z-index: 3;
bottom: 14px;
right: 14px;
text-shadow: 0 1px 4px rgba(0,0,0,0.5);
white-space: nowrap;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
text-decoration: none;
text-overflow: ellipsis;
font-size: 0.875em;
color: #FFFFFF
}
.fl-1 .wallpaper__title {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (max-width: 30em) {
.wallpaper__title {
font-size: 0.8125em;
bottom: 14px;
right: 14px
}
}
.about__content {
padding-top: 1.25em;
max-width: 64.875em;
margin: 0 auto
}
.is-mobile-ready .about__content {
padding-top: 0
}
.about__content-column {
width: 100%;
margin-bottom: 3.75em
}
.about__content-column>a {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #484A4D;
line-height: 2em
}
.fl-1 .about__content-column>a {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.about__content-column>a:hover {
color: #409FFF
}
@media (min-width: 64em) {
.about__content-column {
display: inline-block;
vertical-align: top;
margin-bottom: 0
}
.about__content-column:first-child {
width: 79%;
padding-right: 10%
}
.about__content-column:last-child {
width: 20%
}
}
.about__content-block {
margin-bottom: 5em
}
.is-mobile-ready .about__content-block {
margin-bottom: 2.5em
}
.about__content-block h1,.about__content-block h2,.about__content-block h3,.about__content-block h4,.about__content-block h5,.about__content-block p {
color: #17181A;
margin: 0
}
.about__content-block h1 {
font-size: 1.625em;
margin-bottom: 0.57692em
}
@media (min-width: 64em) {
.about__content-block h1 {
font-size: 2.5em;
margin-bottom: 0.375em
}
}
.about__content-block h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em;
margin-bottom: 0.27778em
}
.fl-1 .about__content-block h2 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .about__content-block h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.about__content-block h3 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #919599;
margin-bottom: 0.71429em
}
.fl-1 .about__content-block h3 {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.about__content-block h4 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #484A4D;
line-height: 0.875em
}
.fl-1 .about__content-block h4 {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.about__content-block h5 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #484A4D;
line-height: 1.3125em
}
.fl-1 .about__content-block h5 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.about__content-block p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #484A4D;
line-height: 1.375em
}
.fl-1 .about__content-block p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .about__content-block p {
font-size: 0.875em;
line-height: 1.5em
}
.about__content-block img {
width: 10.625em;
height: 10.625em;
margin-bottom: 0.625em;
margin-left: -0.9375em
}
.is-mobile-ready .about__content-block img {
width: 8.125em;
height: 8.125em;
margin-left: -0.6875em
}
.about__content-block img.about__this-works-logo {
width: 8.75em;
height: 1.9375em;
margin: 0 0 1.25em
}
.is-mobile-ready .about__content-block img.about__this-works-logo {
margin: 0 0 0.625em
}
@media (min-width: 48em) {
.about__content-column:first-child .about__content-block {
display: inline-block;
width: 49%;
vertical-align: top
}
.about__content-column:first-child .about__content-block:nth-child(odd) {
padding-left: 5%
}
}
.about__content-column:first-child .about__content-block.about__content-block--is-header {
display: block;
width: 100%;
margin-bottom: 3.75em;
padding-left: 0
}
.about__content-column:first-child .about__content-block.about__content-block--is-header p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em;
line-height: 1.27778em;
color: #17181A
}
.fl-1 .about__content-column:first-child .about__content-block.about__content-block--is-header p {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .about__content-column:first-child .about__content-block.about__content-block--is-header p {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
@media (min-width: 64em) {
.about__content-column:first-child .about__content-block.about__content-block--is-header p {
font-size: 1.625em;
line-height: 1.30769em
}
}
@media (min-width: 48em) {
.about__content-column:first-child .about__content-block:last-child {
display: block;
width: 100%;
margin-bottom: 0
}
.about__content-column:first-child .about__content-block:last-child .about__this-works-illustration,.about__content-column:first-child .about__content-block:last-child .about__this-works-content {
display: inline-block;
width: 49%;
vertical-align: top
}
.about__content-column:first-child .about__content-block:last-child .about__this-works-content {
padding-left: 5%
}
}
.about__content-column:last-child .about__content-block {
display: block;
width: 100%;
border-bottom: solid 0.0625em #E8EBED;
padding-bottom: 1.25em;
margin-bottom: 1.25em
}
.about__content-column:last-child .about__content-block>a {
display: block;
width: 100%;
height: auto;
margin-bottom: 1.25em;
text-decoration: none
}
.about__content-column:last-child .about__content-block>a .about__social svg path {
fill: #484A4D
}
.about__content-column:last-child .about__content-block>a:hover h4,.about__content-column:last-child .about__content-block>a:hover h5 {
color: #409FFF
}
.about__content-column:last-child .about__content-block>a:hover .about__social svg path {
fill: #409FFF
}
.about__content-column:last-child .about__content-block>a:last-child {
margin-bottom: 0
}
.about__content-column:last-child .about__content-block span {
display: inline-block;
vertical-align: top
}
.about__content-column:last-child .about__content-block h4 {
position: relative;
display: inline-block;
top: 0.1875em;
left: 0.5em
}
.about__content-column:last-child .about__content-block img {
width: 1.5em;
height: 1.5em;
margin: 0;
border: 0
}
.about__content-column:last-child .about__content-block p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #919599;
margin-top: 0.61538em
}
.fl-1 .about__content-column:last-child .about__content-block p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.about__content-column:last-child .about__content-block p img {
width: 0.625em;
height: 0.625em;
margin-left: 0.125em
}
.about__this-works-illustration {
width: 100%;
background: #FFDDAB;
margin-bottom: 1.875em;
position: relative;
overflow: hidden;
border-radius: 0.3125em;
position: relative
}
.about__this-works-illustration:before {
display: block;
content: "";
width: 100%;
padding-top: 79.36508%
}
.about__this-works-illustration>img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0
}
.about__this-works-illustration .this-works__gradient {
width: 100%;
height: 0.625em;
position: absolute;
bottom: 0;
background-image: -webkit-linear-gradient(top, rgba(255,221,171,0) 0%, rgba(255,221,171,0.44) 100%);
background-image: linear-gradient(-180deg, rgba(255,221,171,0) 0%, rgba(255,221,171,0.44) 100%);
z-index: 3
}
.about__this-works-illustration img {
margin: 1.25em auto 0;
width: 69%;
height: auto
}
.is-mobile-ready .about__this-works-illustration img {
width: 69%;
height: auto;
margin-left: auto
}
@media (mind-width: 48em) {
.about__this-works-illustration {
width: 20.3125em;
height: 15.9375em
}
}
.about__language-picker-box {
border: 1px solid #BABCBF;
border-radius: 5px;
width: 100%;
padding: 0.9375em 0.625em 0.9375em 2.5em;
max-width: 14.0625em
}
.about__language-picker-box .languagepicker__current {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
text-decoration: none;
position: relative;
width: 100%;
font-size: 0.875em
}
.fl-1 .about__language-picker-box .languagepicker__current {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.about__language-picker-box .languagepicker__current:before {
content: '';
height: 1.14286em;
width: 1.14286em;
display: block;
top: 0.14286em;
position: absolute;
left: -1.92857em;
background: url(https://cdn.wetransfer.net/assets/globe-38209c8fb7d72a610b8354aebf269c82a0bcb7a03eeee94a4f64193e671db2b1.svg)
}
.about__language-picker-box .languagepicker__current svg {
position: absolute;
right: 0.71429em
}
.page-advertise {
margin-left: 0;
margin-right: 0;
margin-bottom: 0
}
.page-advertise h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
color: #17181A;
margin-bottom: 2.27273em
}
.fl-1 .page-advertise h2 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .page-advertise h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .page-advertise {
margin-left: 0;
margin-right: 0
}
.page-advertise__intro {
text-align: center;
padding: 1.25em 1.875em 3.125em
}
.is-mobile-ready .page-advertise__intro {
padding: 0 1.5625em 2.8125em
}
.page-advertise__intro h1 {
margin-bottom: 0.5em
}
.page-advertise__intro p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.625em;
color: #17181A;
line-height: 1.30769em;
max-width: 26.53846em;
margin: 0 auto 1.34615em;
display: block
}
.fl-1 .page-advertise__intro p {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .page-advertise__intro p {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .page-advertise__intro p {
font-size: 1.125em;
line-height: 1.44444em
}
.page-advertise__intro .button {
margin: 0 0.3125em 0.3125em;
width: 15.71429em
}
.is-mobile-ready .page-advertise__intro .button {
margin: 0 0 0.625em;
width: 100%
}
.page-advertise__stats {
padding: 3.75em 1.875em;
margin: 0 auto;
border-top: 1px solid #E8EBED;
max-width: 67.5em;
text-align: center
}
.is-mobile-ready .page-advertise__stats {
padding: 1.875em 1.5625em
}
.page-advertise__stats .stat {
display: inline-block;
vertical-align: top;
margin: 0 0.9375em;
text-align: left
}
.page-advertise__stats .stat .number {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
display: inline-block;
vertical-align: middle;
font-size: 4.375em;
color: #17181A;
margin-right: 0.14286em
}
.fl-1 .page-advertise__stats .stat .number {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise__stats .stat .number span {
font-size: 0.34286em;
vertical-align: top;
color: #919599;
position: relative;
top: 0.625em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .page-advertise__stats .stat .number span {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .page-advertise__stats .stat .number span {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise__stats .stat:first-of-type .number span {
top: auto;
bottom: 0.625em;
vertical-align: bottom
}
.page-advertise__stats .stat .content {
display: inline-block;
vertical-align: middle
}
.page-advertise__stats .stat .content h4 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em;
color: #17181A;
margin: 0.33333em 0 0.05556em
}
.fl-1 .page-advertise__stats .stat .content h4 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .page-advertise__stats .stat .content h4 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise__stats .stat .content p {
margin: 0;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
line-height: 1.5em;
color: #484A4D
}
.fl-1 .page-advertise__stats .stat .content p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .page-advertise__stats .stat {
width: 100%;
margin-bottom: 1.25em
}
.is-mobile-ready .page-advertise__stats .stat .number {
font-size: 3.4375em;
width: 1.45455em;
margin-right: 0.27273em;
text-align: right
}
.page-advertise__stats .source {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #919599;
line-height: 1.38462em;
margin-top: 3.07692em
}
.fl-1 .page-advertise__stats .source {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise__stats .source a {
color: #919599
}
.page-advertise__team {
padding: 2.1875em 1.875em 3.75em
}
.is-mobile-ready .page-advertise__team {
padding: 1.875em 1.5625em
}
.page-advertise__team p {
max-width: 31.875em;
margin: 0 auto;
display: block;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #484A4D;
line-height: 1.375em
}
.fl-1 .page-advertise__team p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise__brands {
padding: 3.75em 1.875em 5em;
text-align: center
}
.is-mobile-ready .page-advertise__brands {
padding: 1.875em 1.5625em
}
.is-mobile-ready .page-advertise__brands img {
max-width: 20%
}
.page-advertise__brands p:first-child {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
color: #17181A;
margin-bottom: 2.72727em
}
.fl-1 .page-advertise__brands p:first-child {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .page-advertise__brands p:first-child {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise__brands-images {
text-align: center
}
.page-advertise__brands-images img {
display: inline-block;
margin: 0 1.25em 1.25em;
vertical-align: middle
}
.page-advertise__gallery {
background: #F7F9FA;
text-align: center;
padding: 2em 1.875em 1.25em
}
.is-mobile-ready .page-advertise__gallery {
padding: 1.875em 1.5625em
}
.is-mobile-ready .page-advertise__gallery .button {
width: 100%
}
.page-advertise__gallery-content {
margin: 0 auto;
max-width: 67.5em
}
.page-advertise-guidelines {
max-width: 50em;
margin-right: auto;
margin-left: auto;
padding: 0 2.5em
}
.page-advertise-guidelines__intro {
max-width: 39.375em
}
.page-advertise-guidelines__intro h1 {
margin-bottom: 0.5em
}
.page-advertise-guidelines__intro p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #484A4D;
line-height: 1.375em;
margin: 0
}
.fl-1 .page-advertise-guidelines__intro p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise-guidelines__types {
max-width: 50em;
padding-top: 2.5em
}
.page-advertise-guidelines__types .type {
display: inline-block;
vertical-align: top;
width: calc(45%);
max-width: 22.5em;
margin-bottom: 1.25em
}
.page-advertise-guidelines__types .type:nth-child(2n) {
margin-right: 5%
}
.is-mobile-ready .page-advertise-guidelines__types .type {
width: 100%;
max-width: inherit;
margin: 0 0 1.25em
}
.page-advertise-guidelines__types .type h3 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
line-height: 1em;
color: #17181A;
margin: 0 0 0.1875em
}
.fl-1 .page-advertise-guidelines__types .type h3 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise-guidelines__types .type p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
line-height: 1.5em;
margin: 0
}
.fl-1 .page-advertise-guidelines__types .type p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise-guidelines__types .type__icon {
display: inline-block;
vertical-align: top;
margin-right: 0.625em
}
.page-advertise-guidelines__types .type__body {
display: inline-block;
width: calc(100% - 65px)
}
.page-advertise-guidelines__dodonts {
max-width: 50em
}
.page-advertise-guidelines__dodonts .column {
display: inline-block;
vertical-align: top;
width: calc(45%);
max-width: 22.5em
}
.page-advertise-guidelines__dodonts .column:first-of-type {
margin-right: 5%
}
.is-mobile-ready .page-advertise-guidelines__dodonts .column {
width: 100%;
max-width: inherit;
margin: 0
}
.page-advertise-guidelines__dodonts ul {
display: block;
padding: 0;
margin: 0
}
.page-advertise-guidelines__dodonts ul li {
display: block;
list-style: none;
padding-left: 1.5625em;
margin: 0 0 1.25em;
background-size: 12px;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
line-height: 1.5em
}
.fl-1 .page-advertise-guidelines__dodonts ul li {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise-guidelines__dodonts ul li h3 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.14286em;
line-height: 1.14286em;
color: #17181A;
margin: 0 0 0.28571em
}
.fl-1 .page-advertise-guidelines__dodonts ul li h3 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise-guidelines__dodonts ul li p {
margin: 0
}
.page-advertise-guidelines__dos li {
background: no-repeat left 0.14286em url(https://cdn.wetransfer.net/assets/guidelines/do-49b7e96a789a754045b39f6d22f4f49cbda98997efd50bfc5140bd69b5deac8b.png)
}
.page-advertise-guidelines__donts li {
background: no-repeat left 0.28571em url(https://cdn.wetransfer.net/assets/guidelines/dont-363ee629f8773b4f8e054e69176ae6a16e04c99dee3a1ecd8f22fd9c5fba7d36.png)
}
.page-advertise-guidelines hr {
display: block;
border: 0;
margin: 3.75em 0;
background: #E8EBED;
width: 100%;
height: 1px
}
.is-mobile-ready .page-advertise-guidelines hr {
margin: 1.875em 0
}
.page-advertise-guidelines__requirements,.page-advertise-guidelines__next-steps,.page-advertise-guidelines__useful-info {
margin-bottom: 2.5em;
max-width: 31.875em
}
.page-advertise-guidelines__requirements ul li,.page-advertise-guidelines__next-steps ul li,.page-advertise-guidelines__useful-info ul li {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
color: #484A4D;
line-height: 1.375em
}
.fl-1 .page-advertise-guidelines__requirements ul li,.fl-1 .page-advertise-guidelines__next-steps ul li,.fl-1 .page-advertise-guidelines__useful-info ul li {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.page-advertise-guidelines__tools .tool {
max-width: 31.875em;
border-bottom: 1px solid #E8EBED;
padding: 1.25em 13.125em 1.25em 0;
position: relative
}
.page-advertise-guidelines__tools .tool .button {
position: absolute;
right: 0;
top: 1.71429em;
margin: 0;
width: 10.71429em;
text-align: center;
height: 2.85714em;
line-height: 2.85714em
}
.page-advertise-guidelines__tools .tool h5 {
margin: 0 0 0.375em
}
.page-advertise-guidelines__tools .tool p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
line-height: 1.5em;
margin: 0
}
.fl-1 .page-advertise-guidelines__tools .tool p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .page-advertise-guidelines__tools .tool {
max-width: 100%;
padding: 1.25em 0
}
.is-mobile-ready .page-advertise-guidelines__tools .tool p {
margin: 0 0 0.625em
}
.is-mobile-ready .page-advertise-guidelines__tools .tool .button {
position: static
}
.ad-gallery__container {
max-width: 65.25em;
margin: 1.875em auto
}
.ad-gallery__container h1 {
margin-bottom: 0.5em
}
.ad-gallery__thumb {
display: inline-block;
margin: 0 0 1.25em;
text-align: left;
text-decoration: none;
width: calc(100%/3 - 14px)
}
.ad-gallery__thumb:nth-of-type(3n+2) {
margin: 0 1.25em 1.25em
}
@media (max-width: 48em) {
.ad-gallery__thumb {
width: 100%;
margin: 0 0 1.25em !important
}
}
.is-mobile-ready .ad-gallery__thumb {
width: 100%;
margin: 0 0 1.25em
}
.ad-gallery__thumb:hover .image {
opacity: 0.8
}
.ad-gallery__thumb .image {
background-color: #F4F4F4;
background-size: cover;
position: relative;
width: 100%;
padding-top: 56.25%;
display: block;
margin: 0 0 0.5em;
border-radius: 0.3125em
}
.ad-gallery__thumb .info {
display: block
}
.is-mobile-ready .ad-gallery__thumb .info .title {
display: block
}
.is-mobile-ready .ad-gallery__thumb .info .meta {
float: none
}
.ad-gallery__thumb .info .title {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #17181A
}
.fl-1 .ad-gallery__thumb .info .title {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.ad-gallery__thumb .info .meta {
float: right;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #919599
}
.fl-1 .ad-gallery__thumb .info .meta {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.apps .col {
width: 50%;
float: right
}
.apps .col ~ .col {
float: left
}
@media (max-width: 64em) {
.apps .col {
float: left;
width: 100%;
padding: 0
}
.apps .col ~ .col {
padding-bottom: 1.25em
}
}
.is-mobile-ready .apps .col {
width: 100%;
padding: 0
}
.apps__intro {
text-align: center;
padding-top: 1.25em;
margin-bottom: 1.875em
}
.apps__intro h1 {
margin-bottom: 0.5em
}
.apps__intro p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #17181A;
margin: 0 auto 0.76923em;
max-width: 26.15385em
}
.fl-1 .apps__intro p {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .apps__intro p {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .apps__intro {
padding: 0;
margin-bottom: 1.25em
}
.is-mobile-ready .apps__intro p {
font-size: 1.125em
}
.apps__icon-overview {
margin: 2.5em 0;
height: 2.5em
}
.apps__icon {
display: inline;
margin: 0 1.25em
}
.apps__icon--appstore {
width: 2.3125em;
height: 2.3125em;
background-color: #409FFF;
border-radius: 50%;
display: inline-block;
padding: 0.3125em;
position: relative;
top: -0.4375em
}
.apps .button {
width: 14.28571em;
text-align: center
}
.apps__button {
display: inline
}
.apps__button svg {
vertical-align: middle;
left: -0.3125em;
position: relative;
top: -0.125em
}
.apps__content {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
width: 21.875em
}
.fl-1 .apps__content {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.apps__content h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em
}
.fl-1 .apps__content h2 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .apps__content h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.apps__content p {
font-size: 0.875em
}
.is-mobile-ready .apps__content {
text-align: center;
width: 100%
}
.is-mobile-ready .apps__content .button {
width: 100%
}
.is-mobile-ready .apps__content .button:last-child {
margin-bottom: 3.125em
}
.apps__image {
display: block;
max-width: 100%;
margin-bottom: 1.875em
}
.is-mobile-ready .apps__image {
margin-bottom: 1.25em
}
.plus-list {
text-align: left;
margin: 0 0.625em 0 0
}
.plus-list h3 {
padding-left: 1.38889em
}
.is-mobile-ready .plus-list {
width: 100%;
margin: 0 0 1.875em
}
.is-mobile-ready .plus-list:nth-child(2) {
margin: 0
}
@media (min-width: 48em) {
.plus-list {
display: inline-block;
vertical-align: top;
max-width: calc(50% - 1.25em)
}
.plus-list:nth-child(2) {
margin: 0 0 0 0.625em
}
}
.plus-list ul {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
list-style: none;
margin: 0;
padding: 0
}
.fl-1 .plus-list ul {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.plus-list li {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
letter-spacing: 0;
line-height: 1.5625em;
margin: 0.75em 0;
background: url(https://cdn.wetransfer.net/assets/valid-icon-eb82dc01703572f874476f9301df6128f05754e8a3d6e61d8bf39a0373f49b40.svg) 0.28571em 0.35714em/0.71429em 0.71429em no-repeat;
padding: 0em 0 0 1.875em;
text-align: left
}
.fl-1 .plus-list li {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.plus-banner {
background-color: #FFF0D9;
position: relative;
padding-top: 2.5em;
width: calc(100% + 10em);
left: -5em;
margin-bottom: 1.875em
}
@media (max-width: 79.9375em) {
.plus-banner {
width: calc(100% + 5em);
left: -2.5em
}
}
.plus-banner__white-bar {
width: 100%;
position: absolute;
bottom: 0;
background-color: #FFFFFF;
height: 2.1875em
}
.is-mobile-ready .plus-banner__white-bar {
height: 3.125em
}
.plus-banner__illustration {
width: calc(100% - 10.9375em);
position: relative;
min-height: 8.125em;
max-width: 57.0625em;
margin: 0 auto
}
.plus-banner__illustration:before {
display: block;
content: "";
width: 100%;
padding-top: 38.40931%
}
.plus-banner__illustration>img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0
}
@media (min-width: 65.5625em) {
.plus-banner__illustration {
min-height: 14.6875em
}
.plus-banner__illustration:before {
display: none
}
}
.plus-banner__illustration img {
width: 100%;
height: auto
}
@media (min-width: 65.5625em) {
.plus-banner__illustration img {
max-width: 1200px;
margin: 0 auto;
position: static
}
}
.is-mobile-ready .plus-banner__illustration {
position: relative;
width: 80%;
margin-top: 6.25em
}
.is-mobile-ready .plus-banner__illustration:before {
display: block;
content: "";
width: 100%;
padding-top: 63.66048%
}
.is-mobile-ready .plus-banner__illustration>img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0
}
.is-mobile-ready .plus-banner {
width: 100vw;
left: -1.25em
}
.plus-banner .plus-banner__header-text {
position: absolute;
top: 1.5625em;
width: 100%;
text-align: center;
z-index: 3;
padding: 0 0.625em
}
@media (max-width: 48em) {
html:not(.is-mobile-ready) .plus-banner .plus-banner__header-text {
font-size: 0.75em
}
}
.plus-banner .plus-banner__header-text h1 {
padding: 0;
border: 0;
font-size: 2.5em
}
.is-mobile-ready .plus-banner .plus-banner__header-text h1,.panel--half .plus-banner .plus-banner__header-text h1 {
font-size: 2em
}
.plus-banner .plus-banner__header-text p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.3125em;
line-height: 1.33333em;
text-align: center;
max-width: 19.04762em;
margin-top: 0.09524em;
margin: 0.09524em auto
}
.fl-1 .plus-banner .plus-banner__header-text p {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .plus-banner .plus-banner__header-text p {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.forgot-password-page {
text-align: center;
position: relative;
top: 1.875em
}
.forgot-password-page.forgot-password-page__logged-in .button {
margin-top: 2.5em
}
.forgot-password-page.forgot-password-page__logged-in .button ~ .button {
margin-left: 0.71429em;
height: 3.57143em
}
.is-mobile-ready .forgot-password-page.forgot-password-page__logged-in .button {
width: 100%;
margin: 2.5em 0 0
}
.is-mobile-ready .forgot-password-page.forgot-password-page__logged-in .button ~ .button {
margin-top: 0.71429em
}
.is-mobile-ready .forgot-password-page {
top: 0
}
.forgot-password-page h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 2em;
color: #17181A;
margin-bottom: 1.125em;
margin-top: 1.125em
}
.fl-1 .forgot-password-page h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .forgot-password-page h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .forgot-password-page h2 {
font-size: 1.625em;
margin-top: 0.38462em
}
.forgot-password-page p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
letter-spacing: 0em;
line-height: 1.4375em;
max-width: 27.14286em;
margin: 2.5em auto 0;
padding: 0
}
.fl-1 .forgot-password-page p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.forgot-password-page a {
text-decoration: underline;
color: #484A4D
}
.forgot-password-page__is-resetting h2 {
margin-bottom: 0.3125em
}
.forgot-password-page .request-password-form--form-container,.forgot-password-page .reset-password-form--form-container {
margin: 0 auto;
padding-bottom: 3.125em;
text-align: left
}
.forgot-password-page .request-password-form--form-container .textfield,.forgot-password-page .request-password-form--form-container .button,.forgot-password-page .reset-password-form--form-container .textfield,.forgot-password-page .reset-password-form--form-container .button {
display: inline-block;
vertical-align: top
}
.forgot-password-page .request-password-form--form-container {
width: 25.3125em
}
.is-mobile-ready .forgot-password-page .request-password-form--form-container {
width: 100%
}
.forgot-password-page .request-password-form--form-container .textfield {
width: 18.125em;
margin-top: 0
}
.is-mobile-ready .forgot-password-page .request-password-form--form-container .textfield {
width: 100%
}
.forgot-password-page .request-password-form--form-container .button {
margin: 0 0 0 0.625em;
width: 7.5em
}
.is-mobile-ready .forgot-password-page .request-password-form--form-container .button {
width: 100%;
margin: 0.625em 0 0
}
.forgot-password-page .request-password-form__has-requested p {
width: 29.375em
}
.is-mobile-ready .forgot-password-page .request-password-form__has-requested p {
width: 100%
}
.forgot-password-page .reset-password-form--form-container {
width: 24.375em
}
.is-mobile-ready .forgot-password-page .reset-password-form--form-container {
width: 100%
}
.forgot-password-page .reset-password-form--form-container .textfield {
width: 100%
}
.forgot-password-page .reset-password-form--form-container .textfield input[type="password"]:focus {
padding-right: 3.125em
}
.is-mobile-ready .forgot-password-page .reset-password-form--form-container .textfield {
width: 100%
}
.is-mobile-ready .forgot-password-page .reset-password-form--form-container .textfield:nth-child(2) {
margin: 0.625em 0 0
}
.forgot-password-page .reset-password-form--form-container .button {
margin: 0.625em 0 0 0.625em;
width: 12.5em
}
.is-mobile-ready .forgot-password-page .reset-password-form--form-container .button--right {
float: none;
width: 100%;
margin-left: 0
}
.forgot-password-page .reset-password-form p {
width: 100%;
margin-top: 0;
margin-bottom: 1.25em
}
.panel__content.help-section {
position: relative;
margin-bottom: 0
}
.panel__content.help-section h1 {
color: #17181A;
margin-bottom: 0.875em
}
.is-mobile-ready .panel__content.help-section h1 {
font-size: 1.625em;
margin-bottom: 0
}
.panel__content.help-section .status {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
position: absolute;
right: 0;
top: 1.125em;
padding-left: 0.9375em
}
.fl-1 .panel__content.help-section .status {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__content.help-section .status a {
text-decoration: none;
color: inherit
}
.panel__content.help-section .status.none {
color: #74D985
}
.panel__content.help-section .status.none:before {
background-color: #74D985
}
.panel__content.help-section .status.minor {
color: #FF9045
}
.panel__content.help-section .status.minor:before {
background-color: #FF9045
}
.panel__content.help-section .status.major,.panel__content.help-section .status.critical {
color: #E65050
}
.panel__content.help-section .status.major:before,.panel__content.help-section .status.critical:before {
background-color: #E65050
}
.is-mobile-ready .panel__content.help-section .status {
position: relative;
top: 0.625em;
margin-bottom: 2.8125em
}
.panel__content.help-section .status:before {
display: inline-block;
width: 0.375em;
height: 0.375em;
content: " ";
border-radius: 0.1875em;
position: absolute;
left: 0;
top: 0.5em
}
.panel__content.help-section form {
position: relative
}
.panel__content.help-section .textfield--search {
width: calc(100% - 110px);
height: 3.75em;
margin-top: 0
}
.panel__content.help-section .textfield--search input {
font-size: 1em;
margin-top: 0;
padding-right: 1.25em;
-webkit-appearance: none
}
.panel__content.help-section .textfield--search input.textfield__field--nolabel {
padding-top: 0
}
.panel__content.help-section .button-search-help {
position: absolute;
right: 0;
top: 0;
width: 7.14286em;
height: 4.28571em;
margin-top: 0;
padding: 0
}
.panel__content.help-section .frequent-questions {
margin-top: 2.8125em
}
.panel__content.help-section .frequent-questions .faq-row {
clear: both;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex
}
.is-mobile-ready .panel__content.help-section .frequent-questions .faq-row {
display: block
}
.panel__content.help-section .frequent-questions .question {
float: left;
width: calc(50% - 0.625em);
min-height: 11.25em;
border: 1px solid #E8EBED;
border-radius: 0.3125em;
margin-bottom: 1.25em;
padding: 1.25em;
text-decoration: none;
position: relative
}
.panel__content.help-section .frequent-questions .question svg {
opacity: 0;
position: absolute;
top: 1.25em;
right: 1.25em
}
.is-mobile-ready .panel__content.help-section .frequent-questions .question {
width: 100%;
float: none;
display: block
}
.panel__content.help-section .frequent-questions .question h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
line-height: 1.27273em;
margin-top: 0;
margin-bottom: 0.625em;
color: #17181A;
max-width: calc(100% - 20px)
}
.fl-1 .panel__content.help-section .frequent-questions .question h2 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .panel__content.help-section .frequent-questions .question h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .panel__content.help-section .frequent-questions .question h2 {
font-size: 1.125em;
line-height: 1.27778em
}
.panel__content.help-section .frequent-questions .question h3 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
line-height: 1.27273em;
margin-top: 0;
margin-bottom: 0.625em;
color: #17181A;
max-width: calc(100% - 20px)
}
.fl-1 .panel__content.help-section .frequent-questions .question h3 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .panel__content.help-section .frequent-questions .question h3 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .panel__content.help-section .frequent-questions .question h3 {
font-size: 1.125em;
line-height: 1.27778em
}
.panel__content.help-section .frequent-questions .question p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
line-height: 1.61538em;
color: #484A4D;
margin-bottom: 0
}
.fl-1 .panel__content.help-section .frequent-questions .question p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__content.help-section .frequent-questions .question span {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.8125em;
color: #484A4D;
text-decoration: underline
}
.fl-1 .panel__content.help-section .frequent-questions .question span {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__content.help-section .frequent-questions .question:nth-of-type(2n) {
margin-left: 1.25em
}
.is-mobile-ready .panel__content.help-section .frequent-questions .question:nth-of-type(2n) {
margin-left: 0
}
.panel__content.help-section .frequent-questions .question:hover {
background-color: #F7F9FA
}
.panel__content.help-section .frequent-questions .question:hover svg {
opacity: 1
}
.panel__content.help-section .more-answers {
text-align: center
}
.panel__content.help-section .more-answers a {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #409FFF;
text-decoration: none;
text-align: right;
display: block;
font-size: 0.875em
}
.fl-1 .panel__content.help-section .more-answers a {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__content.help-section .more-answers svg {
margin-left: 0.375em
}
.panel__content.help-section .more-answers .button {
display: inline-block;
margin: 1.875em auto 3.125em;
color: #FFFFFF;
text-align: center
}
.is-mobile-ready .panel__content.help-section .more-answers a,.is-mobile-ready .panel__content.help-section .more-answers .button {
width: 100%
}
.panel__content.help-section .social-link-out {
position: relative;
min-height: 1.125em;
width: calc(100% + 10em);
left: -5em;
text-align: center;
background-color: #F7F9FA;
padding: 2.25em 0 2.625em
}
.is-mobile-ready .panel__content.help-section .social-link-out {
width: calc(100% + 2.5em);
left: -1.25em
}
.panel__content.help-section .social-link-out h4 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em
}
.fl-1 .panel__content.help-section .social-link-out h4 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .panel__content.help-section .social-link-out h4 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .panel__content.help-section .social-link-out h4 {
margin: 0 1.5em 1.125em
}
.panel__content.help-section .social-link-out ul {
padding: 0
}
.panel__content.help-section .social-link-out ul li {
margin: 0 0.125em;
display: inline-block
}
.panel__content.help-section .social-link-out ul li svg {
width: 2.5em;
height: 2.5em
}
.home__content h1,.home__content h2 {
font-size: 1.625em
}
.home__content h1 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #FFFFFF;
padding: 0 0.76923em
}
.fl-1 .home__content h1 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .home__content h1 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.home__content h2 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #17181A;
margin-top: 0
}
.fl-1 .home__content h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .home__content h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.home__content p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
line-height: 1.5em
}
.fl-1 .home__content p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.home__content-header {
position: relative;
width: 100%;
height: 100%;
background-color: #D8D8D8
}
.home__content-illustration {
position: absolute;
width: 100vw;
height: 100%;
left: 0;
top: 0;
background-position: center;
background-size: cover
}
.home__content-intro {
position: relative;
z-index: 1;
text-align: center;
width: 20em;
margin: 0 auto 2.5em;
padding-top: 6.25em
}
.home__content-block,.home__content-block--with-illustration {
text-align: center;
padding: 2.5em 1.25em 0
}
.home__content-block>img,.home__content-block--with-illustration>img {
display: block;
width: calc(100% - 3.75em);
margin: 1.875em auto 0
}
.home__content-block a.button,.home__content-block--with-illustration a.button {
width: 15.71429em;
height: 3.57143em
}
.home__content-block a.button:last-of-type,.home__content-block--with-illustration a.button:last-of-type {
margin-bottom: 1.25em
}
.home__content-block a.button img,.home__content-block--with-illustration a.button img {
display: inline-block;
vertical-align: top;
width: 1.14286em;
height: 1.14286em;
margin-top: 1em;
margin-right: 0.71429em
}
.home__content-block a.button--inline,.home__content-block--with-illustration a.button--inline {
color: #409FFF;
margin-left: auto;
margin-right: auto
}
.home__content-block a#get-ios-app,.home__content-block a#get-android-app,.home__content-block--with-illustration a#get-ios-app,.home__content-block--with-illustration a#get-android-app {
display: none
}
.home__content-block a#get-android-app img,.home__content-block--with-illustration a#get-android-app img {
margin-top: 1.07143em
}
.home__content-block--with-illustration {
background: #FFFFFF;
padding: 2.5em 1.25em 0;
position: relative
}
.home__content-block--with-illustration:before {
content: '';
background: #D8D8D8;
height: 1px;
position: absolute;
top: 0;
left: 1.25em;
right: 1.25em
}
.home__content-block--with-illustration h1 {
color: #17181A
}
.home__content-block--with-illustration img {
position: relative;
z-index: 2;
padding: 0 0 1.25em
}
.home__content-block--with-illustration .background {
position: absolute;
height: 6.25em;
bottom: 0;
left: 0;
right: 0;
background: #FFF0D9
}
.home__content-block--with-illustration ul {
padding: 0 1.25em
}
.home__content-block--with-illustration h2 {
max-width: 11.53846em;
margin: 0 auto 0.76923em
}
.panel__content.home-page {
margin: 0
}
.panel__content.home-page .home__content-intro a.button {
display: inline-block;
line-height: 3.57143em;
width: 15.71429em;
background: #FFFFFF;
border-radius: 0.3125em;
color: #484A4D
}
#growthExpTwo {
margin-bottom: -5em;
margin-top: -1em
}
.legal {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .legal {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.legal .legal__nav-col {
width: 23.55769231%;
float: right
}
.is-mobile-ready .legal .legal__nav-col {
width: 100%;
float: none;
margin-bottom: 2.5em
}
.is-mobile-ready .legal .legal__nav-col .verticalnav__arrow {
display: none
}
.legal .verticalnav__list {
padding: 0;
width: 100%;
float: none
}
.legal .verticalnav__list .verticalnav__item {
width: 100%;
padding-left: 0;
font-size: 1.14286em
}
.legal .verticalnav__list .verticalnav__item a {
color: #17181A
}
.legal .verticalnav__list .verticalnav__item:last-of-type {
box-shadow: none
}
.legal .verticalnav__list .verticalnav__item--active a {
color: #409FFF
}
.legal .legal__content {
width: 74.51923077%;
display: inline-block;
vertical-align: top;
padding-left: 0
}
.is-mobile-ready .legal .legal__content {
width: 100%
}
.legal .date {
font-size: 0.875em;
color: #484A4D;
margin-top: 0.35714em;
display: block;
margin-bottom: 1.42857em
}
.is-mobile-ready .legal .date {
margin-top: 0
}
.legal section {
margin-bottom: 3.75em
}
.legal h3 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
line-height: 1.27273em;
color: #17181A;
margin-bottom: 0.5em
}
.fl-1 .legal h3 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .legal h3 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .legal h3 {
font-size: 1.125em
}
.legal h4 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1em;
line-height: 1.3125em;
margin-bottom: 0.1875em;
margin-top: 1.125em
}
.fl-1 .legal h4 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.legal p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
line-height: 1.5em;
color: #484A4D;
width: calc(100%/3 * 2 - 10px);
display: inline-block;
vertical-align: top;
margin-top: 0
}
.fl-1 .legal p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.is-mobile-ready .legal p {
font-size: 0.875em;
line-height: 1.64286em;
width: 100%
}
.legal ol {
list-style-type: lower-roman
}
.legal ul,.legal ol {
padding: 0 2.85714em 0 2em;
margin: 0 0 2em;
font-size: 0.875em;
line-height: 1.57143em;
color: #484A4D;
width: calc(100%/3 * 2 - 10px)
}
.is-mobile-ready .legal ul,.is-mobile-ready .legal ol {
width: 100%
}
.legal ul li,.legal ol li {
padding-left: 0.57143em
}
.legal aside {
font-size: 0.8125em;
width: calc(100%/3 - 10px);
vertical-align: top;
background-color: #F7F9FA;
padding: 1.53846em;
display: inline-block;
float: right;
border-radius: 5px;
color: #484A4D;
clear: both;
margin-bottom: 0.38462em
}
.is-mobile-ready .legal aside {
line-height: 1.61538em;
width: 100%;
margin-bottom: 2.15385em;
margin-top: 0 !important
}
.legal aside h4 {
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.23077em;
color: #17181A;
margin-top: 0;
margin-bottom: 0.5em
}
.fl-1 .legal aside h4 {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.plus__content h1,.plus__content h3 {
color: #17181A
}
.plus__content h1 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 2em;
width: 100%;
text-align: center;
padding: 1.25em 0;
margin: 0
}
.fl-1 .plus__content h1 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .plus__content h1 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.plus__content h3 {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.125em;
margin: 0 0 0.3125em
}
.fl-1 .plus__content h3 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .plus__content h3 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.plus__content p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 0.875em;
color: #484A4D;
letter-spacing: 0;
line-height: 1.5em;
text-align: left;
margin: 0
}
.fl-1 .plus__content p {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.plus__content a.button {
display: inline-block;
text-decoration: none;
color: #FFFFFF;
text-align: center;
margin: 2.1875em auto 0;
line-height: 3.42857em
}
.plus__content a.button.button__signup {
margin-bottom: 2.85714em
}
.is-mobile-ready .plus__content a.button.button__signup {
width: 100%
}
.plus__content a.button--is-hidden-on-desktop {
display: none
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.plus__content a.button--is-hidden-on-desktop {
display: block
}
}
.plus__content hr {
max-width: 65em;
border: 0;
height: 0;
border-top: 1px solid #E8EBED
}
.plus__header-text {
position: absolute;
width: 100%;
text-align: center;
z-index: 3;
margin-bottom: 2.5em
}
.plus__header-text h1 {
padding: 0;
font-size: 2.5em;
border: 0
}
.plus__header-text p {
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.3125em;
line-height: 1.33333em;
color: #484A4D;
text-align: center;
margin-top: 0.27778em;
max-width: 19.04762em;
margin-left: auto;
margin-right: auto
}
.fl-1 .plus__header-text p {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .plus__header-text p {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.plus__content-header--with-bg {
background-position: left;
background-size: cover;
background-repeat: no-repeat;
height: 23.75em
}
.plus__content-intro {
position: relative;
overflow: hidden;
margin: auto 0;
left: 0;
text-align: center
}
.plus__content-intro h3 {
margin-top: 0
}
.is-mobile-ready .plus__content-intro {
width: 100%;
margin: 0
}
.plus__content-benefits-container {
width: 66.25em;
margin: 0 auto
}
@media (max-width: 79.9375em) {
.plus__content-benefits-container {
width: 100%;
max-width: 65em
}
}
@media (min-width: 48em) {
.plus__content-benefits-container {
border-bottom: solid 1px #E8EBED;
padding: 4.375em 0
}
.plus__content-benefits-container img {
max-width: 20.75em
}
}
.plus__content-benefits-container .plus__content-benefit {
margin-right: 0.625em;
margin-left: 0.625em;
width: calc(100% / 3 - 1.25em)
}
@media (max-width: 48em) {
.plus__content-benefits-container .plus__content-benefit {
width: 100%;
margin-right: 0;
margin-left: 0
}
}
.plus__content-benefit {
max-width: 65em;
margin: 2.5em auto 0
}
.plus__content-benefit img {
width: 100%;
margin-bottom: 1.25em
}
@media (min-width: 48em) {
.plus__content-benefit {
display: inline-block;
vertical-align: top;
margin-top: 0
}
.plus__content-benefit:last-child {
margin-right: 0
}
}
.plus__content-benefit--is-big .plus__content-benefit-text {
-webkit-transition: margin 0.2s linear;
transition: margin 0.2s linear
}
.plus__content-benefit--is-big .plus__content-benefit-image img {
-webkit-transition: width 0.2s linear;
transition: width 0.2s linear
}
@media (min-width: 48em) {
.plus__content-benefit--is-big {
position: relative;
display: block;
width: 100%;
height: 31.25em;
border-bottom: 1px solid #E8EBED;
padding-bottom: 2.5em
}
.plus__content-benefit--is-big .plus__content-benfit-text,.plus__content-benefit--is-big .plus__content-benefit-image {
position: relative;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
top: 50%
}
.plus__content-benefit--is-big .plus__content-benefit-text {
float: left;
width: calc(33.1% - 0.975em);
margin-right: 1.25em;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.plus__content-benefit--is-big .plus__content-benefit-image {
float: right;
width: calc(66.2% - 1.875em);
margin-bottom: 0
}
}
@media (min-width: 79.9375em) {
.plus__content-benefit--is-big .plus__content-benefit-image {
overflow: hidden
}
.plus__content-benefit--is-big .plus__content-benefit-image img {
width: 100%
}
}
.plus__content-benefit--no-margin-top {
margin-top: 0
}
.plus__form {
padding-top: 4.375em
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.panel__content.plus-page {
margin-top: 3.375em
}
}
@media (min-width: 48em) {
.panel__content.plus-page {
margin-top: 0
}
}
@media (min-width: 19.9375em) and (max-width: 47.9375em) {
.panel__content.plus-page {
margin-top: 3.375em
}
}
.signin-form {
margin: 0 -4.375em 1.375em -3.75em
}
@media (max-width: 79.9375em) {
.signin-form {
margin: 0 -1.875em 1.375em -1.25em
}
}
.signin-form--form-container {
width: 100%;
margin: 0 auto
}
.signin-form--form-container h2 {
display: none;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 1.375em;
margin: 0.90909em 0
}
.fl-1 .signin-form--form-container h2 {
font-family: "FreightSans Pro Medium", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .signin-form--form-container h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.signin-form--form-container .textfield,.signin-form--form-container .button {
display: inline-block;
vertical-align: top
}
.signin-form--form-container .textfield {
width: calc(50% - 4.875em)
}
.signin-form--form-container .textfield__field {
color: #17181A
}
.signin-form--form-container .textfield:nth-child(2),.signin-form--form-container .button {
margin-left: 0.625em
}
.signin-form--form-container .button {
width: 9.07143em;
height: 3.57143em;
padding: 1em 0;
margin: 0.71429em 0 0 0.625em
}
.signin-form__options {
font-size: 0.75em;
height: 1em;
color: #919599;
margin: 1.33333em 0
}
.signin-form__options .checkboxinput__checkbox {
width: 1em;
margin: 0 0.75em 0 0;
padding: 0.16667em
}
.signin-form__options .checkboxinput__checkbox svg {
margin-left: -0.08333em
}
.signin-form__options span {
margin: 0 0.33333em
}
.signin-form .forgot-password-link {
color: #919599
}
.is-mobile-ready .signin-form {
margin: 0 0 1.375em
}
.is-mobile-ready .signin-form .signin-form--form-container h2 {
display: block
}
.is-mobile-ready .signin-form .signin-form--form-container .textfield {
width: 100%;
display: block
}
.is-mobile-ready .signin-form .signin-form--form-container .textfield:nth-child(2),.is-mobile-ready .signin-form .signin-form--form-container .button {
margin-left: 0
}
.is-mobile-ready .signin-form .signin-form--form-container button {
display: inline-block;
width: 100%
}
.is-mobile-ready .signin-form .signin-form--form-container .forgot-password-link {
font-size: 0.875em
}
.is-mobile-ready .signin-form .signin-form--form-container .signin-form__options {
font-size: 0.875em;
margin: 1.5em 0
}
.is-mobile-ready .signin-form .signin-form--form-container .signin-form__options .checkboxinput__checkbox {
width: 1.71429em;
height: 1.71429em
}
.is-mobile-ready .signin-form .signin-form--form-container .signin-form__options .checkboxinput__checkbox svg {
margin: 0.07143em 0
}
.panel__content.signin-page {
margin-top: 1.25em
}
.is-mobile-ready .panel__content.signin-page {
margin-top: 4.625em
}
.panel__content.signin-page .signin-content__list .signin-content__wrapper {
margin: 0 auto;
text-align: center
}
.is-mobile-ready .panel__content.signin-page .signin-content__list .signin-content__wrapper {
text-align: left
}
.panel__content.signin-page .signin-content__list .signin-content__list--features,.panel__content.signin-page .signin-content__list .signin-content__list--customise {
display: inline-block;
vertical-align: top;
text-align: left
}
.panel__content.signin-page .signin-content__list h2 {
padding-left: 1.38889em;
margin: 0 0 0.33333em;
font-size: 1.125em;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .panel__content.signin-page .signin-content__list h2 {
font-family: "FreightSans Pro Semibold", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
html[lang=ru].fl-1 .panel__content.signin-page .signin-content__list h2 {
font-weight: 500;
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.panel__content.signin-page .signin-content__cta {
text-align: center;
margin-top: 1.875em
}
.panel__content.signin-page .signin-content__cta .button {
vertical-align: top;
margin-top: 0
}
.is-mobile-ready .panel__content.signin-page .signin-content__cta {
margin-top: 1.875em
}
.is-mobile-ready .panel__content.signin-page .signin-content__cta .button {
width: 100%;
display: block;
margin-top: 0.71429em
}
.panel__content.signin-page .signin-content__cta .button--inline {
color: #409FFF;
height: 3.57143em
}
.panel__content.signin-page .signin-content__cta .button--inline:hover {
color: #0073e5
}
.unsubscribe-expiration p {
line-height: 1.53846em
}
html:not(.is-mobile-ready) .unsubscribe-expiration p {
width: 27.5em
}
.unsubscribe-expiration p strong {
color: #409FFF;
font-weight: 500;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .unsubscribe-expiration p strong {
font-family: "Fakt Pro Medium", "Fakt Pro Medium Cyr", "Fakt Pro Medium Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.logo,.transfer,.nav {
-webkit-animation: appFadeIn .3s ease-in 0 1 forwards;
animation: appFadeIn .3s ease-in 0 1 forwards
}
.nav.nav--with-panel,.nav.nav--loaded {
-webkit-animation: none;
animation: none
}
@-webkit-keyframes appFadeIn {
0% {
opacity: 0
}
100% {
opacity: 1
}
}
@keyframes appFadeIn {
0% {
opacity: 0
}
100% {
opacity: 1
}
}
.languagepicker {
height: 100%
}
.languagepicker.tooltip {
width: auto;
min-width: 7.8125em;
padding: 0;
height: auto
}
.languagepicker.tooltip .scrollable {
height: 10.3125em;
border-radius: 5px
}
.languagepicker.tooltip .scrollable--overflow-bottom:after {
opacity: 0
}
.languagepicker__list {
padding: 0.625em 0
}
.languagepicker__current {
text-decoration: underline;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer
}
.languagepicker__current:hover {
color: #17181A
}
.languagepicker__arrow {
vertical-align: baseline;
padding: 0;
margin: 0 0 0 0.125em;
height: .85em;
width: .85em
}
.pagination {
text-align: center;
margin: 0 auto
}
.pagination__digit {
width: 2.75em;
height: 2.75em;
display: inline-block;
margin-left: 0.625em;
border-radius: 5px;
line-height: 2.75em;
text-align: center;
color: #919599;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
font-weight: 400;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.fl-1 .pagination__digit {
font-family: "Fakt Pro Normal", "Fakt Pro Normal Cyr", "Fakt Pro Normal Grk", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif
}
.pagination__digit--arrow {
margin-left: 0
}
.pagination__digit--arrow svg {
height: 10px;
width: 10px
}
.pagination__digit--inactive {
cursor: default
}
.pagination__digit--active {
border: 1px solid #D4D7D9;
color: #17181A
}
.is-mobile-ready .pagination__digit {
width: 2.25em;
height: 2.25em;
line-height: 2.25em;
margin-left: 0.5em
} | 0.430387 | 0.137851 |
p {
margin-bottom: 0.1in;
widows: 2;
orphans: 2
}
p.c53 {
margin-bottom: 0
}
p.c52 {
margin-top: 0.46in;
margin-bottom: 0
}
span.c51 {
position: absolute;
top: 0;
left: 0;
width: 4.46in;
height: 0.02in;
border: none;
padding: 0;
background: #fff
}
p.c50 {
margin-bottom: 0;
text-align: justify;
text-indent: -0.1in
}
p.c49 {
font-style: italic;
margin-bottom: 0;
text-align: justify;
text-indent: 0.2in
}
p.c47 {
margin-bottom: 0;
text-align: justify;
text-indent: 0.2in
}
p.c46 {
margin-bottom: 0;
text-align: justify;
text-indent: 0.2in
}
p.c45 {
margin-bottom: 0;
text-align: justify;
text-indent: 0.2in
}
span.c43 {
font-variant: small-caps
}
p.c42 {
margin-bottom: 0;
text-align: justify
}
p.c41 {
margin-bottom: 0;
text-align: justify
}
p.c40 {
margin-bottom: 0;
text-align: justify;
text-indent: 0.5in
}
p.c39 {
margin-bottom: 0;
text-align: justify
}
span.c37 {
font-style: italic;
font-weight: bold
}
td.c36 {
border-top: none;
border-bottom: 1px solid #000;
border-left: none;
border-right: 1px solid #000;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0.08in
}
td.c35 {
border-top: none;
border-bottom: 1px solid #000;
border-left: none;
border-right: none;
padding: 0
}
td.c34 {
border-top: none;
border-bottom: 1px solid #000;
border-left: 1px solid #000;
border-right: none;
padding-top: 0;
padding-bottom: 0;
padding-left: 0.08in;
padding-right: 0
}
td.c33 {
border-top: none;
border-bottom: none;
border-left: none;
border-right: 1px solid #000;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0.08in
}
td.c32 {
border: none;
padding: 0
}
td.c31 {
border-top: none;
border-bottom: none;
border-left: 1px solid #000;
border-right: none;
padding-top: 0;
padding-bottom: 0;
padding-left: 0.08in;
padding-right: 0
}
td.c30 {
border-top: 1px solid #000;
border-bottom: none;
border-left: none;
border-right: 1px solid #000;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0.08in
}
td.c29 {
border-top: 1px solid #000;
border-bottom: none;
border-left: none;
border-right: none;
padding: 0
}
td.c27 {
border-top: 1px solid #000;
border-bottom: none;
border-left: 1px solid #000;
border-right: none;
padding-top: 0;
padding-bottom: 0;
padding-left: 0.08in;
padding-right: 0
}
td.c25 {
border-top: 1px solid #000;
border-bottom: 1px solid #000;
border-left: none;
border-right: 1px solid #000;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0.08in
}
p.c24 {
font-weight: bold;
margin-bottom: 0
}
p.c23 {
font-weight: bold
}
td.c22 {
border-top: 1px solid #000;
border-bottom: 1px solid #000;
border-left: none;
border-right: none;
padding: 0
}
td.c20 {
border-top: 1px solid #000;
border-bottom: 1px solid #000;
border-left: 1px solid #000;
border-right: none;
padding-top: 0;
padding-bottom: 0;
padding-left: 0.08in;
padding-right: 0
}
p.c18 {
margin-bottom: 0;
text-align: justify
}
p.c17 {
margin-bottom: 0;
orphans: 0;
text-align: justify;
widows: 0
}
span.c16 {
font-weight: bold
}
span.c15 {
font-style: italic
}
span.c14 {
font-style: italic
}
p.c13 {
margin-bottom: 0;
text-align: justify
}
span.c11 {
font-weight: bold
}
p.c9 {
margin-bottom: 0;
orphans: 0;
text-align: justify;
widows: 0
}
span.c8 {
font-weight: bold
}
span.c7 {
font-style: italic
}
p.c5 {
margin-bottom: 0;
orphans: 0;
text-align: justify;
widows: 0
}
p.c4 {
margin-bottom: 0;
orphans: 0;
text-align: center;
widows: 0
}
span.c3 {
font-weight: bold
}
p.c2 {
margin-bottom: 0;
orphans: 0;
text-align: center;
widows: 0
}
span.c1 {
font-weight: bold
} | raw/Atlas/66.css | p {
margin-bottom: 0.1in;
widows: 2;
orphans: 2
}
p.c53 {
margin-bottom: 0
}
p.c52 {
margin-top: 0.46in;
margin-bottom: 0
}
span.c51 {
position: absolute;
top: 0;
left: 0;
width: 4.46in;
height: 0.02in;
border: none;
padding: 0;
background: #fff
}
p.c50 {
margin-bottom: 0;
text-align: justify;
text-indent: -0.1in
}
p.c49 {
font-style: italic;
margin-bottom: 0;
text-align: justify;
text-indent: 0.2in
}
p.c47 {
margin-bottom: 0;
text-align: justify;
text-indent: 0.2in
}
p.c46 {
margin-bottom: 0;
text-align: justify;
text-indent: 0.2in
}
p.c45 {
margin-bottom: 0;
text-align: justify;
text-indent: 0.2in
}
span.c43 {
font-variant: small-caps
}
p.c42 {
margin-bottom: 0;
text-align: justify
}
p.c41 {
margin-bottom: 0;
text-align: justify
}
p.c40 {
margin-bottom: 0;
text-align: justify;
text-indent: 0.5in
}
p.c39 {
margin-bottom: 0;
text-align: justify
}
span.c37 {
font-style: italic;
font-weight: bold
}
td.c36 {
border-top: none;
border-bottom: 1px solid #000;
border-left: none;
border-right: 1px solid #000;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0.08in
}
td.c35 {
border-top: none;
border-bottom: 1px solid #000;
border-left: none;
border-right: none;
padding: 0
}
td.c34 {
border-top: none;
border-bottom: 1px solid #000;
border-left: 1px solid #000;
border-right: none;
padding-top: 0;
padding-bottom: 0;
padding-left: 0.08in;
padding-right: 0
}
td.c33 {
border-top: none;
border-bottom: none;
border-left: none;
border-right: 1px solid #000;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0.08in
}
td.c32 {
border: none;
padding: 0
}
td.c31 {
border-top: none;
border-bottom: none;
border-left: 1px solid #000;
border-right: none;
padding-top: 0;
padding-bottom: 0;
padding-left: 0.08in;
padding-right: 0
}
td.c30 {
border-top: 1px solid #000;
border-bottom: none;
border-left: none;
border-right: 1px solid #000;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0.08in
}
td.c29 {
border-top: 1px solid #000;
border-bottom: none;
border-left: none;
border-right: none;
padding: 0
}
td.c27 {
border-top: 1px solid #000;
border-bottom: none;
border-left: 1px solid #000;
border-right: none;
padding-top: 0;
padding-bottom: 0;
padding-left: 0.08in;
padding-right: 0
}
td.c25 {
border-top: 1px solid #000;
border-bottom: 1px solid #000;
border-left: none;
border-right: 1px solid #000;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0.08in
}
p.c24 {
font-weight: bold;
margin-bottom: 0
}
p.c23 {
font-weight: bold
}
td.c22 {
border-top: 1px solid #000;
border-bottom: 1px solid #000;
border-left: none;
border-right: none;
padding: 0
}
td.c20 {
border-top: 1px solid #000;
border-bottom: 1px solid #000;
border-left: 1px solid #000;
border-right: none;
padding-top: 0;
padding-bottom: 0;
padding-left: 0.08in;
padding-right: 0
}
p.c18 {
margin-bottom: 0;
text-align: justify
}
p.c17 {
margin-bottom: 0;
orphans: 0;
text-align: justify;
widows: 0
}
span.c16 {
font-weight: bold
}
span.c15 {
font-style: italic
}
span.c14 {
font-style: italic
}
p.c13 {
margin-bottom: 0;
text-align: justify
}
span.c11 {
font-weight: bold
}
p.c9 {
margin-bottom: 0;
orphans: 0;
text-align: justify;
widows: 0
}
span.c8 {
font-weight: bold
}
span.c7 {
font-style: italic
}
p.c5 {
margin-bottom: 0;
orphans: 0;
text-align: justify;
widows: 0
}
p.c4 {
margin-bottom: 0;
orphans: 0;
text-align: center;
widows: 0
}
span.c3 {
font-weight: bold
}
p.c2 {
margin-bottom: 0;
orphans: 0;
text-align: center;
widows: 0
}
span.c1 {
font-weight: bold
} | 0.500488 | 0.135261 |
html, body {
margin: 0;
padding: 0;
background-color: #E0E4E6;
}
.site{
background-image:url('images/background.png');
background-repeat:repeat-x;
padding-top: 15%;
}
.container{
width: 70%;
margin: 0 auto;
border: 1px #CFCFCF solid;
padding: 10px;
overflow: overlay;
background-color: #E9ECEC;
color: #293235;
padding-bottom: 30px;
height:400px;
}
.title{
font-size: 1.5em;
-webkit-margin-before: 0.83em;
-webkit-margin-after: 0.83em;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
font-weight: bold;
margin: 0 auto;
display: block;
text-align: -webkit-center;
margin-bottom: 25px;
margin-top: 5px;
color: #363E58;
width:170px;
}
.navigator{
width: 215px;
padding-left: 11%;
float:left;
}
.descript{
width:50%;
float:right;
}
#nav_background{
background-image:url('images/nav_bg.png');
height:322px;
width:215px;
}
.point{
height:10px;
width:12px;
background-image:url('images/point_g.png');
display: inline-block;
position: absolute;
}
/*
Here on follows a long list of the position of each point on the map....
*/
#p_01{
margin-top: 235px;
}
#p_02{
margin-top: 142px;
margin-left: 28px;
}
#p_03{
margin-top: 255px;
margin-left: 34px;
}
#p_04{
margin-top: 94px;
margin-left: 42px;
}
#p_05{
margin-top: 198px;
margin-left: 68px;
}
#p_06{
margin-top: 277px;
margin-left: 71px;
}
#p_07{
margin-top: 43px;
margin-left: 75px;
}
#p_08{
margin-top: 143px;
margin-left: 62px;
}
#p_09{
margin-top: 253px;
margin-left: 97px;
}
#p_10{
margin-top: 294px;
margin-left: 109px;
}
#p_11{
margin-top: 18px;
margin-left: 116px;
}
#p_12{
margin-top: 67px;
margin-left: 131px;
}
#p_13{
margin-top: 94px;
margin-left: 87px;
}
#p_14{
margin-top: 94px;
margin-left: 105px;
}
#p_15{
margin-top: 141px;
margin-left: 119px;
}
#p_16{
margin-top: 143px;
margin-left: 103px;
}
#p_17{
margin-top: 185px;
margin-left: 108px;
}
#p_18{
margin-top: 222px;
margin-left: 124px;
}
#p_19{
margin-top: 234px;
margin-left: 130px;
}
#p_20{
margin-top: 248px;
margin-left: 110px;
}
#p_21{
margin-top: 264px;
margin-left: 118px;
}
#p_22{
margin-top: 251px;
margin-left: 141px;
}
#p_23{
margin-top: 217px;
margin-left: 139px;
}
#p_24{
margin-top: 244px;
margin-left: 154px;
}
#p_25{
margin-top: 303px;
margin-left: 166px;
}
#p_26{
margin-top: 307px;
margin-left: 186px;
}
#p_27{
margin-left: 150px;
}
#p_28{
margin-top: 57px;
margin-left: 164px;
}
#p_29{
margin-top: 139px;
margin-left: 131px;
}
#p_30{
margin-top: 132px;
margin-left: 161px;
}
#p_31{
margin-top: 124px;
margin-left: 174px;
}
#p_32{
margin-top: 160px;
margin-left: 140px;
}
#p_33{
margin-top: 205px;
margin-left: 156px;
}
#p_34{
margin-top: 161px;
margin-left: 190px;
}
#p_35{
margin-top: 198px;
margin-left: 192px;
}
#p_36{
margin-top: 227px;
margin-left: 197px;
} | style.css | html, body {
margin: 0;
padding: 0;
background-color: #E0E4E6;
}
.site{
background-image:url('images/background.png');
background-repeat:repeat-x;
padding-top: 15%;
}
.container{
width: 70%;
margin: 0 auto;
border: 1px #CFCFCF solid;
padding: 10px;
overflow: overlay;
background-color: #E9ECEC;
color: #293235;
padding-bottom: 30px;
height:400px;
}
.title{
font-size: 1.5em;
-webkit-margin-before: 0.83em;
-webkit-margin-after: 0.83em;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
font-weight: bold;
margin: 0 auto;
display: block;
text-align: -webkit-center;
margin-bottom: 25px;
margin-top: 5px;
color: #363E58;
width:170px;
}
.navigator{
width: 215px;
padding-left: 11%;
float:left;
}
.descript{
width:50%;
float:right;
}
#nav_background{
background-image:url('images/nav_bg.png');
height:322px;
width:215px;
}
.point{
height:10px;
width:12px;
background-image:url('images/point_g.png');
display: inline-block;
position: absolute;
}
/*
Here on follows a long list of the position of each point on the map....
*/
#p_01{
margin-top: 235px;
}
#p_02{
margin-top: 142px;
margin-left: 28px;
}
#p_03{
margin-top: 255px;
margin-left: 34px;
}
#p_04{
margin-top: 94px;
margin-left: 42px;
}
#p_05{
margin-top: 198px;
margin-left: 68px;
}
#p_06{
margin-top: 277px;
margin-left: 71px;
}
#p_07{
margin-top: 43px;
margin-left: 75px;
}
#p_08{
margin-top: 143px;
margin-left: 62px;
}
#p_09{
margin-top: 253px;
margin-left: 97px;
}
#p_10{
margin-top: 294px;
margin-left: 109px;
}
#p_11{
margin-top: 18px;
margin-left: 116px;
}
#p_12{
margin-top: 67px;
margin-left: 131px;
}
#p_13{
margin-top: 94px;
margin-left: 87px;
}
#p_14{
margin-top: 94px;
margin-left: 105px;
}
#p_15{
margin-top: 141px;
margin-left: 119px;
}
#p_16{
margin-top: 143px;
margin-left: 103px;
}
#p_17{
margin-top: 185px;
margin-left: 108px;
}
#p_18{
margin-top: 222px;
margin-left: 124px;
}
#p_19{
margin-top: 234px;
margin-left: 130px;
}
#p_20{
margin-top: 248px;
margin-left: 110px;
}
#p_21{
margin-top: 264px;
margin-left: 118px;
}
#p_22{
margin-top: 251px;
margin-left: 141px;
}
#p_23{
margin-top: 217px;
margin-left: 139px;
}
#p_24{
margin-top: 244px;
margin-left: 154px;
}
#p_25{
margin-top: 303px;
margin-left: 166px;
}
#p_26{
margin-top: 307px;
margin-left: 186px;
}
#p_27{
margin-left: 150px;
}
#p_28{
margin-top: 57px;
margin-left: 164px;
}
#p_29{
margin-top: 139px;
margin-left: 131px;
}
#p_30{
margin-top: 132px;
margin-left: 161px;
}
#p_31{
margin-top: 124px;
margin-left: 174px;
}
#p_32{
margin-top: 160px;
margin-left: 140px;
}
#p_33{
margin-top: 205px;
margin-left: 156px;
}
#p_34{
margin-top: 161px;
margin-left: 190px;
}
#p_35{
margin-top: 198px;
margin-left: 192px;
}
#p_36{
margin-top: 227px;
margin-left: 197px;
} | 0.222616 | 0.077973 |
* {
margin: 0;
padding: 0;
list-style-type: none;
}
*html,
*html body
/* 修正IE6振动bug */
{
background-image: url(about:blank);
background-attachment: fixed;
}
body {
font-family: "微软雅黑", "Hiragino Sans GB", Arial, Lucida, Verdana, SimSun, Helvetica, sans-serif; /*font-size : 62.5%; px数值除以10,然后换上em作为单位*/
/*min-width:980px;*/
font-size: 13px;
}
a,
img {
border: none;
text-decoration: none;
}
a {
blr: expression(this.onFocus=this.blur());
}
/*去掉a标签的虚线框,避免出现奇怪的选中区域*/
/*a:active {test:expression(target="_blank");}*/:focus {
outline: 0;
}
label {
cursor: pointer;
}
img {
vertical-align: middle;
}
table {
empty-cells: show;
border-collapse: collapse;
border-spacing: 0;
}
h1 {
font-size: 1.6em;
}
h2,
h3,
h4 {
font-size: 1.4em;
}
h5,
h6 {
font-size: 1.2em;
}
input {
border: none;
}
textarea {
overflow: scroll;
}
a,
input,
textarea,
.hover-delay {
font-family: "Microsoft Yahei", "Hiragino Sans GB", Arial, Lucida, Verdana, SimSun, Helvetica, sans-serif;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
input.none-radius {
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
}
input::-ms-clear {
display: none;
}
//去掉输入框的叉叉
.clear {
clear: both;
}
.txt-indent {
text-indent: -999px;
overflow: hidden;
}
input[type=text],
input[type=tel],
input[type=email] {
-webkit-appearance: none;
box-shadow: none;
}
.hide {
display: none;
}
.blue{color:#35bbc3;font-weight: bold;}
/*Normalize end*/
/*main*/
.in {
width: 1200px;
position: relative;
height: 100%;
margin: 0 auto;
}
.bg1 {
width: 100%;
height: 663px;
background: url(../images/a.png) no-repeat center center;
min-width: 1200px;
}
.bg2 {
width: 100%;
height: 795px;
background: url(../images/b.png) no-repeat center center;
min-width: 1200px;
}
.bg3 {
width: 100%;
height: 843px;
background: url(../images/c.png) no-repeat center center;
min-width: 1200px;
}
.bg4 {
width: 100%;
height: 793px;
background: url(../images/d.jpg) no-repeat center center;
min-width: 1200px;
}
.bg5 {
width: 100%;
height: 835px;
background: url(../images/e.jpg) no-repeat center center;
min-width: 1200px;
}
.bg6 {
width: 100%;
height: 828px;
background: url(../images/f.png) no-repeat center center;
min-width: 1200px;
}
.link1 {
display: block;
text-decoration: none;
position: absolute;
top: 68px;
left: 42px;
width: 312px;
height: 105px;
}
.link2 {
display: block;
text-decoration: none;
position: absolute;
bottom: 143px;
right: 217px;
width: 747px;
height: 303px;
}
.ug {
width: 73px;
height: 166px;
position: absolute;
top: 125px;
right: 79px;
z-index: 9;
}
.swiper1 {
width: 910px;
height: 401px;
position: absolute;
top: 186px;
right: 143px;
overflow: hidden;
}
.swiper2 {
width: 1114px;
height: 509px;
position: absolute;
top: 187px;
right: 42px;
overflow: hidden;
}
.swiper3 {
width: 1114px;
height: 509px;
position: absolute;
top: 235px;
right: 42px;
overflow: hidden;
}
.swiper1 img {
width: 910px;
height: 401px;
}
.swiper1 .swiper-slide {
width: 910px;
height: 401px;
}
.swiper2 img, .swiper3 img{
width: 1114px;
height: 509px;
}
.swiper2 .swiper-slide, .swiper3 .swiper-slide{
width: 1114px;
height: 509px;
}
/*.swiper1 .swiper-pagination, .swiper2 .swiper-pagination2, .swiper3 .swiper-pagination3{
width: 100%;
height: 20px;
left: 0;
bottom: 15px;
text-align: center;
z-index: 20;
position: absolute;
}
.swiper1 .swiper-pagination-switch, .swiper2 .swiper-pagination-switch, .swiper3 .swiper-pagination-switch {
display: inline-block;
width: 13px;
height: 13px;
margin-right: 13px;
background: #635d59;
opacity: 0.7;
cursor: pointer;
}
.swiper1 .swiper-active-switch, .swiper2 .swiper-active-switch, .swiper3 .swiper-active-switch{
background: #fffffd;
}*/
.swiper1 .arrow, .swiper2 .arrow, .swiper3 .arrow{
width: 53px;
height: 52px;
display: block;
position: absolute;
top: 167px;
z-index: 1;
cursor: pointer;
}
.swiper2 .arrow, .swiper3 .arrow{
top: 225px;
}
.swiper1 .arrow-left, .swiper2 .arrow-left, .swiper3 .arrow-left{
left: 0px;
background-image: url(../images/btl.png);
background-position: top left
}
.swiper1 .arrow-right, .swiper2 .arrow-right, .swiper3 .arrow-right {
right: 0px;
background-image: url(../images/btr.png);
background-position: top right
}
.news {
width: 822px;
position: absolute;
bottom: 111px;
color: #fff;
text-indent: 28px;
right: 210px;
font-size: 14px;
}
.link3 {
text-decoration: none;
color: #fff;
}
.project {
width: 1134px;
height: 583px;
position: absolute;
bottom: 56px;
left: 29px;
}
.project .tab_menu {
width: 1134px;
overflow: hidden;
}
.project ul li {
width: 162px;
height: 153px;
float: left;
cursor: pointer;
}
.project .tab_menu .a1 {
background: url(../images/logo1.png) no-repeat center center;
background-color: #f0bf5f;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .a2 {
background: url(../images/logo2.png) no-repeat center center;
background-color: #f0bf5f;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .a3 {
background: url(../images/logo3.png) no-repeat center center;
background-color: #f0bf5f;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .a4 {
background: url(../images/logo4.png) no-repeat center center;
background-color: #f0bf5f;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .a5 {
background: url(../images/logo5.png) no-repeat center center;
background-color: #f0bf5f;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .a6 {
background: url(../images/logo6.png) no-repeat center center;
background-color: #f0bf5f;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .a7 {
background: url(../images/logo7.png) no-repeat center center;
background-color: #f0bf5f;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .current .a1 {
background: url(../images/logo11.png) no-repeat center center;
background-color: #fff;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .current .a2 {
background: url(../images/logo22.png) no-repeat center center;
background-color: #fff;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .current .a3 {
background: url(../images/logo33.png) no-repeat center center;
background-color: #fff;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .current .a4 {
background: url(../images/logo44.png) no-repeat center center;
background-color: #fff;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .current .a5 {
background: url(../images/logo55.png) no-repeat center center;
background-color: #fff;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .current .a6 {
background: url(../images/logo66.png) no-repeat center center;
background-color: #fff;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .current .a7 {
background: url(../images/logo77.png) no-repeat center center;
background-color: #fff;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_box {
width: 1134px;
height: 430px;
background-color: #fff;
}
.info1{
width: 974px;
height: 316px;
padding-top:57px;
padding-left: 78px;
font-size: 16px;
word-break: break-all;
}
.info2{
width: 1017px;
height: 343px;
padding-top:60px;
padding-left: 55px;
font-size: 16px;
word-break: break-all;
}
.info3{
width: 944px;
height: 327px;
padding-top:45px;
padding-left: 64px;
font-size: 16px;
word-break: break-all;
}
.info4{
width: 1076px;
height: 412px;
padding-top:10px;
padding-left: 7px;
font-size: 16px;
word-break: break-all;
}
.info5{
width: 915px;
height: 259px;
padding-top:81px;
padding-left: 109px;
font-size: 16px;
word-break: break-all;
}
.info6{
width: 974px;
height: 275px;
padding-top:77px;
padding-left: 78px;
font-size: 16px;
word-break: break-all;
}
.info7{
width: 932px;
height: 289px;
padding-top:80px;
padding-left: 96px;
font-size: 16px;
word-break: break-all;
}
.text1{
width: 515px;
height: 316px;
float:left;
}
.text2{
width: 473px;
height: 267px;
padding-top: 26px;
float:right;
}
.text3{
width: 609px;
height: 318px;
padding-top: 27px;
float:left;
}
.text4{
width: 500px;
height: 245px;
padding-top: 90px;
float:right;
}
.text5{
width: 478px;
height: 259px;
float:left;
}
.text6{
width: 455px;
height: 289px;
padding-top: 30px;
float:right;
}
.text7{
width: 601px;
height: 289px;
float:left;
}
.p1{
float: right;
}
.p2{
float:left;
}
.p3{
float:right;
}
.p4{
float:left;
}
.p5{
float:right;
}
.p6{
float:left;
}
.p7{
float:right;
}
/*exhibition*/
.al {
width: 1130px;
height: 447px;
bottom: 93px;
left:18px;
position: absolute;
}
.al ul li {
width: 125px;
height: 447px;
float: left;
z-index: 10;
overflow: hidden;
position: relative;
}
.al ul li .tn1 {
width: 32px;
font-size: 24px;
height: 130px;
padding: 37px 5px 0 13px;
color: #fff;
font-weight: 100;
text-align: left;
float: left;
line-height: 28px;
}
.al ul li .imgTop img {
position: absolute;
left: 50px;
}
.al .d1 {
margin-right: 1px;
background: #6db801;
}
.al .d2 {
margin-right: 1px;
background: #ff8400;
}
.al .d3 {
margin-right: 1px;
background: #ffc000;
}
.al .d4 {
background: #268ee0;
margin-right: 1px;
}
.al .d5 {
background: #999999;
width: 626px;
}
.pic1 {
width: 281px;
height: 285px;
left: 38px;
top: 204px;
position: absolute;
cursor: pointer;
}
.pic2 {
width: 281px;
height: 285px;
left: 38px;
bottom: 82px;
position: absolute;
cursor: pointer;
}
.pic3 {
width: 281px;
height: 564px;
left: 319px;
top: 206px;
position: absolute;
cursor: pointer;
}
.pic4 {
width: 564px;
height: 281px;
right: 35px;
top: 207px;
position: absolute;
cursor: pointer;
}
.pic5 {
width: 281px;
height: 285px;
right: 318px;
bottom: 83px;
position: absolute;
cursor: pointer;
}
.pic6 {
width: 281px;
height: 285px;
right: 37px;
bottom: 83px;
position: absolute;
cursor: pointer;
}
.v-box {
width: 649px;
height: 336px;
position: absolute;
right: 0px;
top: 241px;
}
.gp{
width: 550px;
height: 336px;
position: absolute;
top:242px;
left:0px;
}
/* Basic Swiper Styles */
.swiper-container {
margin: 0 auto;
position: relative;
overflow: hidden;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-o-backface-visibility: hidden;
backface-visibility: hidden; /* Fix of Webkit flickering */
z-index: 1;
}
.swiper-wrapper {
position: relative;
width: 100%;
-webkit-transition-property: -webkit-transform, left, top;
-webkit-transition-duration: 0s;
-webkit-transform: translate3d(0px, 0, 0);
-webkit-transition-timing-function: ease;
-moz-transition-property: -moz-transform, left, top;
-moz-transition-duration: 0s;
-moz-transform: translate3d(0px, 0, 0);
-moz-transition-timing-function: ease;
-o-transition-property: -o-transform, left, top;
-o-transition-duration: 0s;
-o-transform: translate3d(0px, 0, 0);
-o-transition-timing-function: ease;
-o-transform: translate(0px, 0px);
-ms-transition-property: -ms-transform, left, top;
-ms-transition-duration: 0s;
-ms-transform: translate3d(0px, 0, 0);
-ms-transition-timing-function: ease;
transition-property: transform, left, top;
transition-duration: 0s;
transform: translate3d(0px, 0, 0);
transition-timing-function: ease;
}
.swiper-free-mode > .swiper-wrapper {
-webkit-transition-timing-function: ease-out;
-moz-transition-timing-function: ease-out;
-ms-transition-timing-function: ease-out;
-o-transition-timing-function: ease-out;
transition-timing-function: ease-out;
margin: 0 auto;
}
.swiper-slide {
float: left;
}
.swiper-pages {
height: 100%;
}
.scroll-container {
height: 100%;
width: 100%;
}
.scroll-container .swiper-slide {
width: 100%;
}
.page-inner {
padding: 15px 20px;
}
.swiper-slide .title {
font-style: italic;
font-size: 42px;
margin-top: 80px;
margin-bottom: 0;
line-height: 45px;
text-align: center;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
-ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
-ms-touch-action: pan-x;
} | zt/somno/css/main.css | * {
margin: 0;
padding: 0;
list-style-type: none;
}
*html,
*html body
/* 修正IE6振动bug */
{
background-image: url(about:blank);
background-attachment: fixed;
}
body {
font-family: "微软雅黑", "Hiragino Sans GB", Arial, Lucida, Verdana, SimSun, Helvetica, sans-serif; /*font-size : 62.5%; px数值除以10,然后换上em作为单位*/
/*min-width:980px;*/
font-size: 13px;
}
a,
img {
border: none;
text-decoration: none;
}
a {
blr: expression(this.onFocus=this.blur());
}
/*去掉a标签的虚线框,避免出现奇怪的选中区域*/
/*a:active {test:expression(target="_blank");}*/:focus {
outline: 0;
}
label {
cursor: pointer;
}
img {
vertical-align: middle;
}
table {
empty-cells: show;
border-collapse: collapse;
border-spacing: 0;
}
h1 {
font-size: 1.6em;
}
h2,
h3,
h4 {
font-size: 1.4em;
}
h5,
h6 {
font-size: 1.2em;
}
input {
border: none;
}
textarea {
overflow: scroll;
}
a,
input,
textarea,
.hover-delay {
font-family: "Microsoft Yahei", "Hiragino Sans GB", Arial, Lucida, Verdana, SimSun, Helvetica, sans-serif;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
input.none-radius {
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
}
input::-ms-clear {
display: none;
}
//去掉输入框的叉叉
.clear {
clear: both;
}
.txt-indent {
text-indent: -999px;
overflow: hidden;
}
input[type=text],
input[type=tel],
input[type=email] {
-webkit-appearance: none;
box-shadow: none;
}
.hide {
display: none;
}
.blue{color:#35bbc3;font-weight: bold;}
/*Normalize end*/
/*main*/
.in {
width: 1200px;
position: relative;
height: 100%;
margin: 0 auto;
}
.bg1 {
width: 100%;
height: 663px;
background: url(../images/a.png) no-repeat center center;
min-width: 1200px;
}
.bg2 {
width: 100%;
height: 795px;
background: url(../images/b.png) no-repeat center center;
min-width: 1200px;
}
.bg3 {
width: 100%;
height: 843px;
background: url(../images/c.png) no-repeat center center;
min-width: 1200px;
}
.bg4 {
width: 100%;
height: 793px;
background: url(../images/d.jpg) no-repeat center center;
min-width: 1200px;
}
.bg5 {
width: 100%;
height: 835px;
background: url(../images/e.jpg) no-repeat center center;
min-width: 1200px;
}
.bg6 {
width: 100%;
height: 828px;
background: url(../images/f.png) no-repeat center center;
min-width: 1200px;
}
.link1 {
display: block;
text-decoration: none;
position: absolute;
top: 68px;
left: 42px;
width: 312px;
height: 105px;
}
.link2 {
display: block;
text-decoration: none;
position: absolute;
bottom: 143px;
right: 217px;
width: 747px;
height: 303px;
}
.ug {
width: 73px;
height: 166px;
position: absolute;
top: 125px;
right: 79px;
z-index: 9;
}
.swiper1 {
width: 910px;
height: 401px;
position: absolute;
top: 186px;
right: 143px;
overflow: hidden;
}
.swiper2 {
width: 1114px;
height: 509px;
position: absolute;
top: 187px;
right: 42px;
overflow: hidden;
}
.swiper3 {
width: 1114px;
height: 509px;
position: absolute;
top: 235px;
right: 42px;
overflow: hidden;
}
.swiper1 img {
width: 910px;
height: 401px;
}
.swiper1 .swiper-slide {
width: 910px;
height: 401px;
}
.swiper2 img, .swiper3 img{
width: 1114px;
height: 509px;
}
.swiper2 .swiper-slide, .swiper3 .swiper-slide{
width: 1114px;
height: 509px;
}
/*.swiper1 .swiper-pagination, .swiper2 .swiper-pagination2, .swiper3 .swiper-pagination3{
width: 100%;
height: 20px;
left: 0;
bottom: 15px;
text-align: center;
z-index: 20;
position: absolute;
}
.swiper1 .swiper-pagination-switch, .swiper2 .swiper-pagination-switch, .swiper3 .swiper-pagination-switch {
display: inline-block;
width: 13px;
height: 13px;
margin-right: 13px;
background: #635d59;
opacity: 0.7;
cursor: pointer;
}
.swiper1 .swiper-active-switch, .swiper2 .swiper-active-switch, .swiper3 .swiper-active-switch{
background: #fffffd;
}*/
.swiper1 .arrow, .swiper2 .arrow, .swiper3 .arrow{
width: 53px;
height: 52px;
display: block;
position: absolute;
top: 167px;
z-index: 1;
cursor: pointer;
}
.swiper2 .arrow, .swiper3 .arrow{
top: 225px;
}
.swiper1 .arrow-left, .swiper2 .arrow-left, .swiper3 .arrow-left{
left: 0px;
background-image: url(../images/btl.png);
background-position: top left
}
.swiper1 .arrow-right, .swiper2 .arrow-right, .swiper3 .arrow-right {
right: 0px;
background-image: url(../images/btr.png);
background-position: top right
}
.news {
width: 822px;
position: absolute;
bottom: 111px;
color: #fff;
text-indent: 28px;
right: 210px;
font-size: 14px;
}
.link3 {
text-decoration: none;
color: #fff;
}
.project {
width: 1134px;
height: 583px;
position: absolute;
bottom: 56px;
left: 29px;
}
.project .tab_menu {
width: 1134px;
overflow: hidden;
}
.project ul li {
width: 162px;
height: 153px;
float: left;
cursor: pointer;
}
.project .tab_menu .a1 {
background: url(../images/logo1.png) no-repeat center center;
background-color: #f0bf5f;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .a2 {
background: url(../images/logo2.png) no-repeat center center;
background-color: #f0bf5f;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .a3 {
background: url(../images/logo3.png) no-repeat center center;
background-color: #f0bf5f;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .a4 {
background: url(../images/logo4.png) no-repeat center center;
background-color: #f0bf5f;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .a5 {
background: url(../images/logo5.png) no-repeat center center;
background-color: #f0bf5f;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .a6 {
background: url(../images/logo6.png) no-repeat center center;
background-color: #f0bf5f;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .a7 {
background: url(../images/logo7.png) no-repeat center center;
background-color: #f0bf5f;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .current .a1 {
background: url(../images/logo11.png) no-repeat center center;
background-color: #fff;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .current .a2 {
background: url(../images/logo22.png) no-repeat center center;
background-color: #fff;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .current .a3 {
background: url(../images/logo33.png) no-repeat center center;
background-color: #fff;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .current .a4 {
background: url(../images/logo44.png) no-repeat center center;
background-color: #fff;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .current .a5 {
background: url(../images/logo55.png) no-repeat center center;
background-color: #fff;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .current .a6 {
background: url(../images/logo66.png) no-repeat center center;
background-color: #fff;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_menu .current .a7 {
background: url(../images/logo77.png) no-repeat center center;
background-color: #fff;
display: block;
width: 162px;
height: 153px;
float: left;
}
.project .tab_box {
width: 1134px;
height: 430px;
background-color: #fff;
}
.info1{
width: 974px;
height: 316px;
padding-top:57px;
padding-left: 78px;
font-size: 16px;
word-break: break-all;
}
.info2{
width: 1017px;
height: 343px;
padding-top:60px;
padding-left: 55px;
font-size: 16px;
word-break: break-all;
}
.info3{
width: 944px;
height: 327px;
padding-top:45px;
padding-left: 64px;
font-size: 16px;
word-break: break-all;
}
.info4{
width: 1076px;
height: 412px;
padding-top:10px;
padding-left: 7px;
font-size: 16px;
word-break: break-all;
}
.info5{
width: 915px;
height: 259px;
padding-top:81px;
padding-left: 109px;
font-size: 16px;
word-break: break-all;
}
.info6{
width: 974px;
height: 275px;
padding-top:77px;
padding-left: 78px;
font-size: 16px;
word-break: break-all;
}
.info7{
width: 932px;
height: 289px;
padding-top:80px;
padding-left: 96px;
font-size: 16px;
word-break: break-all;
}
.text1{
width: 515px;
height: 316px;
float:left;
}
.text2{
width: 473px;
height: 267px;
padding-top: 26px;
float:right;
}
.text3{
width: 609px;
height: 318px;
padding-top: 27px;
float:left;
}
.text4{
width: 500px;
height: 245px;
padding-top: 90px;
float:right;
}
.text5{
width: 478px;
height: 259px;
float:left;
}
.text6{
width: 455px;
height: 289px;
padding-top: 30px;
float:right;
}
.text7{
width: 601px;
height: 289px;
float:left;
}
.p1{
float: right;
}
.p2{
float:left;
}
.p3{
float:right;
}
.p4{
float:left;
}
.p5{
float:right;
}
.p6{
float:left;
}
.p7{
float:right;
}
/*exhibition*/
.al {
width: 1130px;
height: 447px;
bottom: 93px;
left:18px;
position: absolute;
}
.al ul li {
width: 125px;
height: 447px;
float: left;
z-index: 10;
overflow: hidden;
position: relative;
}
.al ul li .tn1 {
width: 32px;
font-size: 24px;
height: 130px;
padding: 37px 5px 0 13px;
color: #fff;
font-weight: 100;
text-align: left;
float: left;
line-height: 28px;
}
.al ul li .imgTop img {
position: absolute;
left: 50px;
}
.al .d1 {
margin-right: 1px;
background: #6db801;
}
.al .d2 {
margin-right: 1px;
background: #ff8400;
}
.al .d3 {
margin-right: 1px;
background: #ffc000;
}
.al .d4 {
background: #268ee0;
margin-right: 1px;
}
.al .d5 {
background: #999999;
width: 626px;
}
.pic1 {
width: 281px;
height: 285px;
left: 38px;
top: 204px;
position: absolute;
cursor: pointer;
}
.pic2 {
width: 281px;
height: 285px;
left: 38px;
bottom: 82px;
position: absolute;
cursor: pointer;
}
.pic3 {
width: 281px;
height: 564px;
left: 319px;
top: 206px;
position: absolute;
cursor: pointer;
}
.pic4 {
width: 564px;
height: 281px;
right: 35px;
top: 207px;
position: absolute;
cursor: pointer;
}
.pic5 {
width: 281px;
height: 285px;
right: 318px;
bottom: 83px;
position: absolute;
cursor: pointer;
}
.pic6 {
width: 281px;
height: 285px;
right: 37px;
bottom: 83px;
position: absolute;
cursor: pointer;
}
.v-box {
width: 649px;
height: 336px;
position: absolute;
right: 0px;
top: 241px;
}
.gp{
width: 550px;
height: 336px;
position: absolute;
top:242px;
left:0px;
}
/* Basic Swiper Styles */
.swiper-container {
margin: 0 auto;
position: relative;
overflow: hidden;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-o-backface-visibility: hidden;
backface-visibility: hidden; /* Fix of Webkit flickering */
z-index: 1;
}
.swiper-wrapper {
position: relative;
width: 100%;
-webkit-transition-property: -webkit-transform, left, top;
-webkit-transition-duration: 0s;
-webkit-transform: translate3d(0px, 0, 0);
-webkit-transition-timing-function: ease;
-moz-transition-property: -moz-transform, left, top;
-moz-transition-duration: 0s;
-moz-transform: translate3d(0px, 0, 0);
-moz-transition-timing-function: ease;
-o-transition-property: -o-transform, left, top;
-o-transition-duration: 0s;
-o-transform: translate3d(0px, 0, 0);
-o-transition-timing-function: ease;
-o-transform: translate(0px, 0px);
-ms-transition-property: -ms-transform, left, top;
-ms-transition-duration: 0s;
-ms-transform: translate3d(0px, 0, 0);
-ms-transition-timing-function: ease;
transition-property: transform, left, top;
transition-duration: 0s;
transform: translate3d(0px, 0, 0);
transition-timing-function: ease;
}
.swiper-free-mode > .swiper-wrapper {
-webkit-transition-timing-function: ease-out;
-moz-transition-timing-function: ease-out;
-ms-transition-timing-function: ease-out;
-o-transition-timing-function: ease-out;
transition-timing-function: ease-out;
margin: 0 auto;
}
.swiper-slide {
float: left;
}
.swiper-pages {
height: 100%;
}
.scroll-container {
height: 100%;
width: 100%;
}
.scroll-container .swiper-slide {
width: 100%;
}
.page-inner {
padding: 15px 20px;
}
.swiper-slide .title {
font-style: italic;
font-size: 42px;
margin-top: 80px;
margin-bottom: 0;
line-height: 45px;
text-align: center;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
-ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
-ms-touch-action: pan-x;
} | 0.351422 | 0.093802 |
/* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.*/
/* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following*/
/* disclaimer in the documentation and/or other materials provided with the distribution.*/
/* 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products*/
/* derived from this software without specific prior written permission.*/
/* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,*/
/* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT*/
/* SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL*/
/* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS*/
/* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR*/
/* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.*/
body .ui-tabs .ui-tabs-panel {
padding: 0px;
}
.service_calendar_spinner {
width: 16px;
height: 16px;
display: none;
}
.service_calendar {
width: 922px;
border-collapse: collapse;
border: 1px solid #ccc;
}
.service_calendar thead tr th,
.service_calendar tbody tr td {
border: 1px solid #ccc;
}
#service_calendar .ui-tabs-panel {
padding: 10px 5px;
}
.service_calendar .table_header {
font-size: 12px;
}
.service_calendar .section_header {
font-size: 11px;
background: #adadad;
}
.service_calendar .sub_section_header {
font-size: 10px;
background: #ccc;
}
#service_calendar .service_calendar .section_header,
#service_calendar .service_calendar .totals_section,
#service_calendar .service_calendar .sub_section_header {
text-align: left;
}
#service_calendar .service_calendar .line_item .service_name {
text-align: left;
}
.service_calendar .totals_section,
.service_calendar .line_item {
font-size: 10px;
border-top: 1px solid #adadad;
}
#service_calendar .table_header th {
text-align: center;
}
.service_calendar .line_item td.subject_count {
text-align: center;
}
#service_calendar .service_calendar tbody td.visit {
text-align: right;
}
#service_calendar .totals_section td {
text-align: left;
}
#service_calendar .service_calendar .your_cost,
#service_calendar .service_calendar .service_rate,
#service_calendar .service_calendar .otf_total,
#service_calendar .service_calendar .otf_total_direct_cost,
#service_calendar .service_calendar .pp_max_total_direct_cost,
#service_calendar .service_calendar .pp_max_total_indirect_cost,
#service_calendar .service_calendar .pp_max_total,
#service_calendar .service_calendar .pp_line_item_total,
#service_calendar .service_calendar .pp_line_item_study_total,
#service_calendar .service_calendar .pp_total,
#service_calendar .service_calendar .max_direct_per_patient,
#service_calendar .service_calendar .max_indirect_per_patient,
#service_calendar .service_calendar .max_total_per_patient {
text-align: right;
}
#service_calendar .service_calendar .section_header th,
#service_calendar .service_calendar .sub_section_header th,
#service_calendar .service_calendar .totals_section td,
#service_calendar .service_calendar .line_item td {
padding: 5px;
}
.service_calendar .odd {
background: #E8E8E8;
}
.service_calendar .table_header .services,
.service_calendar .table_header .your_cost,
.service_calendar .table_header .subjects,
.service_calendar .table_header .visits_header,
.service_calendar .table_header .visit_number,
.service_calendar .table_header .total {
text-align: center;
}
#service_calendar .service_calendar .your_cost,
#service_calendar .service_calendar .service_rate,
#service_calendar .service_calendar .otf_total,
#service_calendar .service_calendar .otf_total_direct_cost {
text-align: right;
}
.service_calendar .table_header th span.visit_count {
display: inline-table;
width: 250px;
}
.service_calendar .line_item_visit_billing {
width: 15px;
}
.service_calendar .billing_type_list {
padding: 5px;
}
.service_calendar .billing_type {
display: inline-table;
text-align: center;
width: 18px;
}
.fulfillment_selecter {
width: 200px;
}
.fulfillment_your_cost {
width: 43px;
} | app/assets/stylesheets/portal/service_calendar.css | /* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.*/
/* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following*/
/* disclaimer in the documentation and/or other materials provided with the distribution.*/
/* 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products*/
/* derived from this software without specific prior written permission.*/
/* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,*/
/* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT*/
/* SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL*/
/* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS*/
/* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR*/
/* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.*/
body .ui-tabs .ui-tabs-panel {
padding: 0px;
}
.service_calendar_spinner {
width: 16px;
height: 16px;
display: none;
}
.service_calendar {
width: 922px;
border-collapse: collapse;
border: 1px solid #ccc;
}
.service_calendar thead tr th,
.service_calendar tbody tr td {
border: 1px solid #ccc;
}
#service_calendar .ui-tabs-panel {
padding: 10px 5px;
}
.service_calendar .table_header {
font-size: 12px;
}
.service_calendar .section_header {
font-size: 11px;
background: #adadad;
}
.service_calendar .sub_section_header {
font-size: 10px;
background: #ccc;
}
#service_calendar .service_calendar .section_header,
#service_calendar .service_calendar .totals_section,
#service_calendar .service_calendar .sub_section_header {
text-align: left;
}
#service_calendar .service_calendar .line_item .service_name {
text-align: left;
}
.service_calendar .totals_section,
.service_calendar .line_item {
font-size: 10px;
border-top: 1px solid #adadad;
}
#service_calendar .table_header th {
text-align: center;
}
.service_calendar .line_item td.subject_count {
text-align: center;
}
#service_calendar .service_calendar tbody td.visit {
text-align: right;
}
#service_calendar .totals_section td {
text-align: left;
}
#service_calendar .service_calendar .your_cost,
#service_calendar .service_calendar .service_rate,
#service_calendar .service_calendar .otf_total,
#service_calendar .service_calendar .otf_total_direct_cost,
#service_calendar .service_calendar .pp_max_total_direct_cost,
#service_calendar .service_calendar .pp_max_total_indirect_cost,
#service_calendar .service_calendar .pp_max_total,
#service_calendar .service_calendar .pp_line_item_total,
#service_calendar .service_calendar .pp_line_item_study_total,
#service_calendar .service_calendar .pp_total,
#service_calendar .service_calendar .max_direct_per_patient,
#service_calendar .service_calendar .max_indirect_per_patient,
#service_calendar .service_calendar .max_total_per_patient {
text-align: right;
}
#service_calendar .service_calendar .section_header th,
#service_calendar .service_calendar .sub_section_header th,
#service_calendar .service_calendar .totals_section td,
#service_calendar .service_calendar .line_item td {
padding: 5px;
}
.service_calendar .odd {
background: #E8E8E8;
}
.service_calendar .table_header .services,
.service_calendar .table_header .your_cost,
.service_calendar .table_header .subjects,
.service_calendar .table_header .visits_header,
.service_calendar .table_header .visit_number,
.service_calendar .table_header .total {
text-align: center;
}
#service_calendar .service_calendar .your_cost,
#service_calendar .service_calendar .service_rate,
#service_calendar .service_calendar .otf_total,
#service_calendar .service_calendar .otf_total_direct_cost {
text-align: right;
}
.service_calendar .table_header th span.visit_count {
display: inline-table;
width: 250px;
}
.service_calendar .line_item_visit_billing {
width: 15px;
}
.service_calendar .billing_type_list {
padding: 5px;
}
.service_calendar .billing_type {
display: inline-table;
text-align: center;
width: 18px;
}
.fulfillment_selecter {
width: 200px;
}
.fulfillment_your_cost {
width: 43px;
} | 0.401805 | 0.031859 |
* {
text-decoration: none;
font-size: 1em;
outline: none;
padding: 0;
margin: 0;
}
code, kbd, samp, pre, tt, var, textarea,
input, select, isindex, listing, xmp, plaintext {
white-space: normal;
font-size: 1em;
font: inherit;
}
dfn, i, cite, var, address, em {
font-style: normal;
}
th, h1, h2, h3, h4, h5, h6 {
font-weight: normal;
}
a, img, a img, iframe, form, fieldset,
abbr, acronym, object, applet, table {
border: none;
}
table {
/*border-collapse: collapse;*/
border-spacing: 10;
}
caption, th, td, center {
vertical-align: top;
text-align: left;
}
body {
background: white;
line-height: 1;
color: black;
}
q {
quotes: "" "";
}
ul, ol, dir, menu {
list-style: none;
}
sub, sup {
vertical-align: baseline;
}
a {
color: inherit;
}
font {
color: inherit !important;
font: inherit !important;
}
marquee {
overflow: inherit !important;
-moz-binding: none;
}
blink {
text-decoration: none;
}
nobr {
white-space: normal;
}
/**************************************************************************************************/
html, body {
height: 100%;
color: #000000;
}
body {
margin: 0px;
font: 11px arial,sans-serif;
background-color: #ffffff;
}
td { vertical-align: middle; }
a { color: #414141; }
cite {font-style: normal;}
title { text-transform: capitalize;}
ul.commands {
margin: 0px;
padding: 0px;
}
ul.commands li {
line-height: 20px;
list-style: none;
}
ul.commands li img {
margin-right: 3px;
margin-bottom: -2px;
height: 14px;
}
h1 {
font-size: 16px;
font-weight: bold;
margin-bottom: 10px;
}
/**************************************************************************************************/
cite em,
cite em:first-child {
background: #ffffff url(images/input-bg-right.png) no-repeat;
height: 29px;
width: 8px;
float: left;
border: 0px;
margin-bottom: -1px;
}
cite em:first-child {
background: #ffffff url(images/input-bg-left.png) no-repeat;
margin-left: -4px;
}
input[type=submit],
input[type=reset],
input[type=button] {
font: 11px arial,sans-serif;
border: 1px solid #ffffff;
outline: 1px solid #cdcddc;
background: #b7b7b7 url(images/bg.png) repeat-x;
padding: 1px 5px;
}
input[type=text] {
font: 11px arial,sans-serif;
border: 1px solid #ffffff;
border: 1px solid #cdcddc;
padding: 2px 5px;
margin-left: 2px;
}
input.text {
border: 0px;
outline: 0px;
background: #ffffff url(images/input-bg.png) repeat-x;
font: 11px arial,sans-serif;
padding: 7px 0px;
float: left;
margin-bottom: -1px;
margin-left: 0px;
}
input.i160 {
border: 0px;
outline: 0px;
background: #ffffff url(images/input-160.png) no-repeat;
font: 11px arial,sans-serif;
padding: 8px 7px;
width: 155px;
float: left;
margin-bottom: -1px;
margin-left: 0px;
}
select {
font: 11px arial,sans-serif;
border: 1px solid #ffffff;
outline: 1px solid #cdcddc;
padding: 0px;
margin-left: 3px;
}
/* content ****************************************************************************************/
#license-bar,
#top-bar,
#navigation,
#quickbar,
#icons,
#status,
#menu,
#close-menu,
#show-menu,
#page_settings {
display: none;
}
#content {
position: relative;
top: 0px;
margin: 0px 0px 0px 0px;
padding-top: 0px;
}
#page_links ul {
margin: 0px;
padding: 0px;
}
#page_links ul li {
list-style: none;
line-height: 17px;
background: url(images/arrow.gif) 0px 7px no-repeat;
padding-left: 10px;
}
/* pagination *************************************************************************************/
#content p.pagination {
float: right;
margin-top: 3px;
margin-right: 10px;
}
#status_count_summary {
float: left;
}
#content form.pagination_form {
float: right;
}
/**************************************************************************************************/
.error_message {
margin-left: 1%;
font-weight: bold;
margin-bottom: 10px;
font-size: 12px;
}
.error_description {
margin-left: 1%;
width: 550px;
}
/* generic classes ********************************************************************************/
table {
border-spacing: 0px;
margin: 0px;
width: 100%;
}
caption {
font-size: 11px;
color: #333333;
font-weight: bold;
text-align: left;
padding: 2px 0px 4px 4px;
}
th {
text-align: left;
padding: 5px 7px;
border: 0px;
font-weight: bold;
border: 0px;
padding: 3px 7px;
text-transform: uppercase;
}
tr td {
padding: 0px 5px;
border: 0px;
text-align:left;
white-space: nowrap;
}
tr td.dark {
width: 40px;
text-align: center;
padding: 5.50px 0px;
}
tr td.white {
padding: 0px;
background: #ffffff;
vertical-align: top;
}
/* health css *************************************************************************************/
table.health {
border: 1px solid #dcdccd;
border-spacing: 1px;
background-color: #ffffff;
margin-top: -1px;
}
table.health tr td {
background: none;
border: 0px;
text-align: left;
padding: 0px;
width: 50%;
}
table.health tr td div.border {
height: 187px;
height: 100px;
}
table.health tr td:first-child div.border {
margin-right: 0px;
}
table.health tr td div.border img {
height: 187px;
height: 100px;
}
table.health tr td div.border {
padding: 0px;
}
table.health tr td div.border img {
display: block;
margin-top: 0px;
margin-bottom: 0px;
height: 30px;
}
.service-totals {
margin-left: 249px;
margin-top:-72px;
width: 251px;
}
.service-totals tr td.status:first-child,
.w-table.w50 tr td.status:first-child { border-left: 1px solid #d0d0d0;}
/* extinfo table **********************************************************************************/
table.extinfo {
border-spacing: 1px;
background-color: #dcdccd;
margin-top: -1px;
}
table.extinfo tr td {
padding: 2px 5px;
}
table.extinfo tr td.status.icon {
width: 11px;
}
table.extinfo tr td img {
margin-bottom: -2px;
margin-right: 2px;
}
table.extinfo tr td.status.icon img {
margin: 1px;
height: 14px;
}
/* widgdet style **********************************************************************************/
.widget-header {
font-size: 11px;
color: #333333;
font-weight: bold;
text-align: left;
padding: 3px 5px 3px 5px;
border: 1px solid #e9e9e0;
border: 1px solid #dcdccd;
height: 14px;
}
.widget-header span {
float: left;
}
.widget-header span img {
float: left;
}
.widget-header span.widget-menu {
float: right;
margin-top: 1px;
}
.wtop { margin-top: 11px; margin-bottom: 0px;}
.widget-header span.widget-menu img {
margin-left: 3px;
}
.widget {
width: 100%;
margin-top: 11px;
}
.widget-place {
margin-left: 1%;
width: 32%;
float: left;
min-height: 20px;
}
.widget-place.w98{
width: 98%;
}
.widget-place.col {
clear: none;
}
.widget-placeholder {
margin-top: 11px;
border: 1px dashed #cdcdbc;
}
.widget-editbox{
z-index: 9999;
background-color: #ffffff;
padding: 15px;
float: right;
margin-top: -1px;
border: 1px solid #e9e9e0;
right: 0px;
width: 200px;
position: relative;
}
/**************************************************************************************************/
div.left {
float: left;
margin-top: 11px;
margin-left: 1%;
}
div.right {
float: right;
margin-top: 11px;
}
.max { width: 100%; }
.w99 { width: 99%; }
.w98 { width: 98%; }
.w66 { width: 65%; }
.w50 { width: 50%; }
.w49 { width: 49%; }
.w48 { width: 48%; }
.w33 { width: 32%; }
.w32 { width: 32%; }
/* status *****************************************************************************************/
.status {
padding: 5px;
height: 16px;
}
.icon {
width: 16px;
padding: 2px 7px;
text-align: center;
vertical-align: middle;
}
.icon img {
margin-top: 2px;
margin-bottom: -1px;
}
tr.odd td.bl,
tr.even td.bl { border-left: 1px solid #dcdccd; }
tr.odd td.bt,
tr.even td.bt { border-top: 1px solid #dcdccd; }
tr.odd td.bt img,
tr.even td.bt img { float: left }
td.icon a { border: 0px; }
th.white,
#service_table tr.even td.white,
#service_table tr.odd td.white {
background: #ffffff;
border: 1px solid #ffffff;
padding: 0px;
}
tr.even td.w80,
tr.odd td.w80 { width: 80px; border-right: 0px; }
#content a {
text-decoration: none;
border-bottom: 1px dotted #777777;
}
th a { border-bottom: 0px; }
img { border-bottom: 0px; }
a > img { border: 0px; }
#status_count_summary {
margin-top: 7px;
font-style: italic;
margin-left: 5px;
}
tr.even td {
border: 1px solid #dcdccd;
border-left: 0px;
border-top: 0px;
background: #fdfdfd;
padding-top: 2px;
padding-bottom: 2px;
}
tr.odd td {
border: 1px solid #dcdccd;
border-left: 0px;
background: #f8f8f3;
border-top: 0px;
padding-top: 2px;
padding-bottom: 2px;
}
tr.odd td:first-child,
tr.even td:first-child {
border-left: 1px solid #dcdccd;
}
tr.even td.status {
}
td.white table tr td {
border: 1px solid #e9e9e0;
border-left: 0px;
border-top: 0px;
}
td.white:first-child table tr td:first-child {
border-left: 1px solid #e9e9e0;
}
.w-table {
/*border-spacing: 1px;
background-color: #e9e9e0;
margin-top: -1px;*/
}
.w-table tr td {
border-right: 1px solid #d0d0d0;
border-bottom:1px solid #d0d0d0;
}
.w-table tr td.dark {
border-left: 1px solid #d0d0d0;
}
th.enabled_monfeat,
th.disabled_monfeat {
cursor: pointer
}
th.disabled_monfeat em,
th.enabled_monfeat em {
font-weight: normal;
float: right;
margin-top: 2px;
margin-bottom: -2px;
background: transparent url(../../icons/arrow-down.gif) right no-repeat;
width: 70px;
height: 16px;
padding-left: 20px
}
th.enabled_monfeat em {
width: 65px;
}
th.disabled_monfeat cite,
th.enabled_monfeat cite {
float: left;
margin-top: 2px;
margin-bottom: -2px;
}
table.ext {
border-spacing: 1px;
background-color: #cdcdcd;
}
table.ext tr th {
border: 0px;
}
table.ext tr td.dark {
text-align: left;
padding-left: 7px;
padding-right: 5px;
width: auto;
padding: 3px 5px 3px 7px;
}
table.ext tr td {
padding: 3px 5px;
white-space: normal;
}
table.ext tr td.dark img {
display: block;
}
/* widget thihngys *******************************************************************************/
#widget-tac_hosts table tr th,
#widget-tac_services table tr th,
#widget-tac_monfeat table tr th {
border: 1px solid #e9e9e0;
border-left: 0px;
border-top: 0px;
}
#widget-tac_hosts table tr th:first-child,
#widget-tac_services table tr th:first-child,
#widget-tac_monfeat table tr th:first-child {
border-left: 1px solid #e9e9e0;
}
/* table sorter styles ****************************************************************************/
.group_grid_table th.header,
.group_overview_table th.header,
.comments_table th.header,
#group_summary_table th.header,
#service_table th.header,
#host_table th.header,
th.header {
background: #ffffff url(images/sort.png) top right;
cursor: pointer;
border-bottom: 1px solid #dcdccd;
border-right: 1px solid #dcdccd;
border-top: 1px solid #dcdccd;
padding-top: 14px;
}
.group_grid_table th.header:first-child,
.group_overview_table th.header:first-child,
.comments_table th.header:first-child,
#group_summary_table th.header:first-child,
#service_table th.header:first-child,
#host_table th.header:first-child,
th.header:first-child {
background: #ffffff url(images/sort.png) top right;
cursor: pointer;
border-left: 1px solid #dcdccd;
}
.group_grid_table th,
.group_overview_table th,
.comments_table th,
#group_summary_table th,
#service_table th,
#service_table th.headerNone,
th.headerNone,
#host_table th,
#host_table th.no-sort {
background:#f5f5ef;
cursor: default;
border-bottom: 1px solid #dcdccd;
border-right: 1px solid #dcdccd;
border-top: 1px solid #dcdccd;
padding-top: 14px;
background: #ffffff url(images/sort-none.png) top right;
}
.group_grid_table th:first-child,
.group_overview_table th:first-child,
.comments_table th:first-child,
th.headerNone:first-child,
#group_summary_table th:first-child,
#service_table th:first-child,
#host_table th:first-child,
#host_table th.no-sort:first-child {
border-left: 1px solid #dcdccd;
}
.group_grid_table th.headerSortDown,
.group_overview_table th.headerSortDown,
.comments_table th.headerSortDown,
#group_summary_table th.headerSortDown,
#service_table th.headerSortDown,
#host_table th.headerSortDown,
th.headerSortDown {
background: #ffffff url(images/sort-down.png) top right;
cursor: pointer;
}
.group_grid_table th.headerSortDown:first-child,
.group_overview_table th.headerSortDown:first-child,
.comments_table th.headerSortDown:first-child,
#group_summary_table th.headerSortDown:first-child,
#service_table th.headerSortDown:first-child,
#host_table th.headerSortDown:first-child,
th.headerSortDown:first-child {
background: #ffffff url(images/sort-down.png) top right;
border-left: 1px solid #dcdccd;
cursor: pointer;
}
.group_grid_table th.headerSortUp,
.group_overview_table th.headerSortUp,
.comments_table th.headerSortUp,
#group_summary_table th.headerSortUp,
#service_table th.headerSortUp,
#host_table th.headerSortUp,
th.headerSortUp {
background: #ffffff url(images/sort-up.png) top right;
cursor: pointer;
}
.group_grid_table th.headerSortUp:first-child,
.group_overview_table th.headerSortUp:first-child,
.comments_table th.headerSortUp:first-child,
#group_summary_table th.headerSortUp:first-child,
#service_table th.headerSortUp:first-child,
#host_table th.headerSortUp:first-child,
th.headerSortUp:first-child {
background: #ffffff url(images/sort-up.png) top right;
border-left: 1px solid #dcdccd;
cursor: pointer;
}
/* autocomplete styles ****************************************************************************/
.autocomplete-w1 {
/*background:url(/application/views/themes/default/images/shadow.png) no-repeat bottom right;*/
position:absolute;
top:0px;
left:0px;
margin:8px 0px 0px 6px;
}
.autocomplete {
border:1px solid #999999;
background:#ffffff;
cursor:default;
text-align:left;
max-height:350px;
overflow:auto;
margin:-6px 6px 6px -6px;
}
.autocomplete .selected {
background:#f0f0f0;
}
.autocomplete div {
padding:2px 5px;
white-space:nowrap;
}
.autocomplete strong {
font-weight:normal;
color:#3399ff;
}
/* jquery.jgrowl.css ******************************************************************************/
div.jGrowl {
padding:10px;
z-index:9999;
}
/** Normal Style Positions **/
body > div.jGrowl {
position:fixed;
}
body > div.jGrowl.top-left {
left:0px;
top:0px;
}
body > div.jGrowl.top-right {
right:0px;
top:0px;
}
body > div.jGrowl.bottom-left {
left:0px;
bottom:0px;
}
body > div.jGrowl.bottom-right {
right:0px;
bottom:0px;
}
body > div.jGrowl.center {
top:0px;
width:50%;
left:25%;
}
/** Cross Browser Styling **/
div.center div.jGrowl-notification, div.center div.jGrowl-closer {
margin-left:auto;
margin-right:auto;
}
div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer {
background-color:#000;
color:#fff;
opacity:.85;
filter:alpha(opacity = 85);
zoom:1;
width:235px;
padding:10px;
margin-top:5px;
margin-bottom:5px;
font-family:arial,sans-serif;
font-size:12px;
text-align:left;
display:none;
-moz-border-radius:5px;
-webkit-border-radius:5px;
}
div.jGrowl div.jGrowl-notification {
min-height:40px;
}
div.jGrowl div.jGrowl-notification div.header {
font-weight:bold;
font-size:10px;
}
div.jGrowl div.jGrowl-notification div.close {
float:right;
font-weight:bold;
font-size:12px;
cursor:pointer;
}
div.jGrowl div.jGrowl-closer {
height:15px;
padding-top:4px;
padding-bottom:4px;
cursor:pointer;
font-size:11px;
font-weight:bold;
text-align:center;
}
.ui-slider { position: relative; text-align: left; }
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; }
.ui-slider-horizontal { height: .8em; }
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
.ui-slider-horizontal .ui-slider-range-max { right: 0; }
/* Component containers
----------------------------------*/
.ui-widget { font-family: arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; }
.ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ /*url(images/ui-bg_flat_75_ffffff_40x100.png)*//*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; }
.ui-widget-content a { color: #222222/*{fcContent}*/; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif/*{ffDefault}*/; font-size: 1em; }
.ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ /*url(images/ui-bg_highlight-soft_75_cccccc_1x100.png)*//*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; }
.ui-widget-header a { color: #222222/*{fcHeader}*/; }
.ui-corner-all { -moz-border-radius: 4px/*{cornerRadius}*/; -webkit-border-radius: 4px/*{cornerRadius}*/; }
.ui-state-default, .ui-widget-content .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ /*url(images/ui-bg_glass_75_e6e6e6_1x400.png)*//*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; outline: none; }
#tac_problems_slider{width:200px}
/***************************************************************************************************
* COLOURS!
***************************************************************************************************/
td.white table tr td,
td.white:first-child table tr td:first-child,
#widget-tac_hosts table tr th,
#widget-tac_services table tr th,
#widget-tac_monfeat table tr th,
#widget-tac_hosts table tr th:first-child,
#widget-tac_services table tr th:first-child,
#widget-tac_monfeat table tr th:first-child,
#top-bar,
#quickbar,
#menu,
#menu ul,
#page_settings ul li,
#menu ul li,
#page_settings,
.widget-editbox {
border-color: #e9e9e0;
border-color: #dcdcdc;
}
.group_grid_table th.headerSortUp:first-child,
.group_overview_table th.headerSortUp:first-child,
.comments_table th.headerSortUp:first-child,
#group_summary_table th.headerSortUp:first-child,
#service_table th.headerSortUp:first-child,
#host_table th.headerSortUp:first-child,
th.headerSortUp:first-child,
.group_grid_table th.headerSortDown:first-child,
.group_overview_table th.headerSortDown:first-child,
.comments_table th.headerSortDown:first-child,
#group_summary_table th.headerSortDown:first-child,
#service_table th.headerSortDown:first-child,
#host_table th.headerSortDown:first-child,
th.headerSortDown:first-child,
.group_grid_table th:first-child,
.group_overview_table th:first-child,
.comments_table th:first-child,
th.headerNone:first-child,
#group_summary_table th:first-child,
#service_table th:first-child,
#host_table th:first-child,
#host_table th.no-sort:first-child,
.group_grid_table th,
.group_overview_table th,
.comments_table th,
#group_summary_table th,
#service_table th,
#service_table th.headerNone,
th.headerNone,
#host_table th,
#host_table th.no-sort,
.group_grid_table th.header:first-child,
.group_overview_table th.header:first-child,
.comments_table th.header:first-child,
#group_summary_table th.header:first-child,
#service_table th.header:first-child,
#host_table th.header:first-child,
th.header:first-child,
.group_grid_table th.header,
.group_overview_table th.header,
.comments_table th.header,
#group_summary_table th.header,
#service_table th.header,
#host_table th.header,
th.header,
.autocomplete,
tr.odd td:first-child,
tr.even td:first-child,
tr.even td,
tr.odd td,
tr.odd td.bl,
tr.even td.bl,
tr.odd td.bt,
tr.even td.bt,
.widget-placeholder,
.widget-header,
table.health,
#quickbar{
border-color: #dcdcdc;
border-color: #d0d0d0;
}
#menu ul li.hr {
border-color: #ffffff;
}
input[type=submit],
input[type=reset],
input[type=button],
input[type=text],
select {
border: 1px solid #ffffff;
outline: 1px solid #cdcdcd;
}
input.i160 { border: 0px; outline: 0px; }
#top-bar{
background:#e9e9e9 url(images/bg.png) repeat-x;
}
#page_settings ul li,
#quickbar,
#menu ul li {
background:#e0e0e0 url(images/bg.png) repeat-x;
}
tr td,
table.health tr td div.border {
background:#e9e9e9 url(images/bg.png) repeat-x;
}
.widget-header.dark,
.status,
th,
tr td.dark,
tr.even td.status {
background:#b7b7b7 url(images/bg.png) repeat-x;
}
/*#menu ul li.header {
background:#b7b7b7 url(images/bg.png) 0px -5px repeat;
}*/
.widget-header {
/*background:#f5f5f5 url(images/bg.png) repeat-x;*/
}
.w-table,
table.extinfo {
background: #dcdcdc;
background: #d0d0d0;
}
#menu ul li.hr {
background: #ffffff;
}
tr.even td { background: #fdfdfd; }
tr.odd td,
#menu,
#page_settings,
.autocomplete .selected { background-color: #f5f5f5; }
#page_settings ul li,
#menu ul li {
background-position: 0px -1px;
}
.group_grid_table th.header,
.group_overview_table th.header,
.comments_table th.header,
#group_summary_table th.header,
#service_table th.header,
#host_table th.header,
th.header,
.group_grid_table th.header:first-child,
.group_overview_table th.header:first-child,
.comments_table th.header:first-child,
#group_summary_table th.header:first-child,
#service_table th.header:first-child,
#host_table th.header:first-child,
th.header:first-child {
background: #dcdcdc url(images/sort.png) top right;
}
.group_grid_table th,
.group_overview_table th,
.comments_table th,
#group_summary_table th,
#service_table th,
#service_table th.headerNone,
th.headerNone,
#host_table th,
#host_table th.no-sort {
background:#dcdcdc url(images/bg.png) repeat-x;
}
.group_grid_table th.headerSortDown,
.group_overview_table th.headerSortDown,
.comments_table th.headerSortDown,
#group_summary_table th.headerSortDown,
#service_table th.headerSortDown,
#host_table th.headerSortDown,
th.headerSortDown,
.group_grid_table th.headerSortDown:first-child,
.group_overview_table th.headerSortDown:first-child,
.comments_table th.headerSortDown:first-child,
#group_summary_table th.headerSortDown:first-child,
#service_table th.headerSortDown:first-child,
#host_table th.headerSortDown:first-child,
th.headerSortDown:first-child {
background: #dcdcdc url(images/sort-down.png) top right;
}
.group_grid_table th.headerSortUp,
.group_overview_table th.headerSortUp,
.comments_table th.headerSortUp,
#group_summary_table th.headerSortUp,
#service_table th.headerSortUp,
#host_table th.headerSortUp,
th.headerSortUp,
.group_grid_table th.headerSortUp:first-child,
.group_overview_table th.headerSortUp:first-child,
.comments_table th.headerSortUp:first-child,
#group_summary_table th.headerSortUp:first-child,
#service_table th.headerSortUp:first-child,
#host_table th.headerSortUp:first-child,
th.headerSortUp:first-child {
background: #dcdcdc url(images/sort-up.png) top right;
}
/* Reports */
div.setup-table tr.odd td,
div.setup-table tr.even td {
border-bottom: 1px solid #dcdccd;
border-left: 0px;
border-top: 0px;
background: #f8f8f3;
padding-top: 2px;
padding-bottom: 2px;
}
tr#service_row_2 td.bl,
tr#host_row_2 td.bl,
tr#hostgroup_row td.bl,
tr#servicegroup_row td.bl {
border-left: 1px solid #dcdccd;
}
div.setup-table tr.even td:first-child,
div.setup-table tr.odd td:first-child {
border-left: 1px solid #dcdccd;
}
div.setup-table tr.odd td {
background: #fdfdfd;
}
div#schedule_report tr.odd td {
padding-left: 7px;
}
div.setup-table {
clear: both;
width: 100%;
margin-bottom: 0px;
}
div.setup-table table tr td, div.setup-table table tr th {
text-align: left;
}
#hostgroup_row{display:none;}
#servicegroup_row{display:none;}
#host_row_1{display:none;}
#host_row_2{display:none;}
#host_row_3{display:none;}
#service_row_1{display:none;}
#service_row_2{display:none;}
#submit_button{display:none;}
#sla_setup{display:none;}
tr#hostgroup_row td {
border: 0px solid #cccccc;
}
#hostgroup_row select {
overflow: hidden;
}
td a.help, a.help {
color: #0186b3;
color: #b00000;
font-weight: bold;
font-style: normal;
text-decoration: none;
}
td.move-buttons {
vertical-align: middle;
padding: 10px 0px;
}
select.multiple {
width: 351px;
}
select {
width: 160px;
}
#report_setup {
position: relative;
float: right;
margin-bottom: -2px;
}
/***************************************************************************************************
* DO NOT ADD ANY STYLE BELOW THE COLOURS SECTION. i.e. below this line
***************************************************************************************************/ | application/views/themes/default/css/dark/print.css | * {
text-decoration: none;
font-size: 1em;
outline: none;
padding: 0;
margin: 0;
}
code, kbd, samp, pre, tt, var, textarea,
input, select, isindex, listing, xmp, plaintext {
white-space: normal;
font-size: 1em;
font: inherit;
}
dfn, i, cite, var, address, em {
font-style: normal;
}
th, h1, h2, h3, h4, h5, h6 {
font-weight: normal;
}
a, img, a img, iframe, form, fieldset,
abbr, acronym, object, applet, table {
border: none;
}
table {
/*border-collapse: collapse;*/
border-spacing: 10;
}
caption, th, td, center {
vertical-align: top;
text-align: left;
}
body {
background: white;
line-height: 1;
color: black;
}
q {
quotes: "" "";
}
ul, ol, dir, menu {
list-style: none;
}
sub, sup {
vertical-align: baseline;
}
a {
color: inherit;
}
font {
color: inherit !important;
font: inherit !important;
}
marquee {
overflow: inherit !important;
-moz-binding: none;
}
blink {
text-decoration: none;
}
nobr {
white-space: normal;
}
/**************************************************************************************************/
html, body {
height: 100%;
color: #000000;
}
body {
margin: 0px;
font: 11px arial,sans-serif;
background-color: #ffffff;
}
td { vertical-align: middle; }
a { color: #414141; }
cite {font-style: normal;}
title { text-transform: capitalize;}
ul.commands {
margin: 0px;
padding: 0px;
}
ul.commands li {
line-height: 20px;
list-style: none;
}
ul.commands li img {
margin-right: 3px;
margin-bottom: -2px;
height: 14px;
}
h1 {
font-size: 16px;
font-weight: bold;
margin-bottom: 10px;
}
/**************************************************************************************************/
cite em,
cite em:first-child {
background: #ffffff url(images/input-bg-right.png) no-repeat;
height: 29px;
width: 8px;
float: left;
border: 0px;
margin-bottom: -1px;
}
cite em:first-child {
background: #ffffff url(images/input-bg-left.png) no-repeat;
margin-left: -4px;
}
input[type=submit],
input[type=reset],
input[type=button] {
font: 11px arial,sans-serif;
border: 1px solid #ffffff;
outline: 1px solid #cdcddc;
background: #b7b7b7 url(images/bg.png) repeat-x;
padding: 1px 5px;
}
input[type=text] {
font: 11px arial,sans-serif;
border: 1px solid #ffffff;
border: 1px solid #cdcddc;
padding: 2px 5px;
margin-left: 2px;
}
input.text {
border: 0px;
outline: 0px;
background: #ffffff url(images/input-bg.png) repeat-x;
font: 11px arial,sans-serif;
padding: 7px 0px;
float: left;
margin-bottom: -1px;
margin-left: 0px;
}
input.i160 {
border: 0px;
outline: 0px;
background: #ffffff url(images/input-160.png) no-repeat;
font: 11px arial,sans-serif;
padding: 8px 7px;
width: 155px;
float: left;
margin-bottom: -1px;
margin-left: 0px;
}
select {
font: 11px arial,sans-serif;
border: 1px solid #ffffff;
outline: 1px solid #cdcddc;
padding: 0px;
margin-left: 3px;
}
/* content ****************************************************************************************/
#license-bar,
#top-bar,
#navigation,
#quickbar,
#icons,
#status,
#menu,
#close-menu,
#show-menu,
#page_settings {
display: none;
}
#content {
position: relative;
top: 0px;
margin: 0px 0px 0px 0px;
padding-top: 0px;
}
#page_links ul {
margin: 0px;
padding: 0px;
}
#page_links ul li {
list-style: none;
line-height: 17px;
background: url(images/arrow.gif) 0px 7px no-repeat;
padding-left: 10px;
}
/* pagination *************************************************************************************/
#content p.pagination {
float: right;
margin-top: 3px;
margin-right: 10px;
}
#status_count_summary {
float: left;
}
#content form.pagination_form {
float: right;
}
/**************************************************************************************************/
.error_message {
margin-left: 1%;
font-weight: bold;
margin-bottom: 10px;
font-size: 12px;
}
.error_description {
margin-left: 1%;
width: 550px;
}
/* generic classes ********************************************************************************/
table {
border-spacing: 0px;
margin: 0px;
width: 100%;
}
caption {
font-size: 11px;
color: #333333;
font-weight: bold;
text-align: left;
padding: 2px 0px 4px 4px;
}
th {
text-align: left;
padding: 5px 7px;
border: 0px;
font-weight: bold;
border: 0px;
padding: 3px 7px;
text-transform: uppercase;
}
tr td {
padding: 0px 5px;
border: 0px;
text-align:left;
white-space: nowrap;
}
tr td.dark {
width: 40px;
text-align: center;
padding: 5.50px 0px;
}
tr td.white {
padding: 0px;
background: #ffffff;
vertical-align: top;
}
/* health css *************************************************************************************/
table.health {
border: 1px solid #dcdccd;
border-spacing: 1px;
background-color: #ffffff;
margin-top: -1px;
}
table.health tr td {
background: none;
border: 0px;
text-align: left;
padding: 0px;
width: 50%;
}
table.health tr td div.border {
height: 187px;
height: 100px;
}
table.health tr td:first-child div.border {
margin-right: 0px;
}
table.health tr td div.border img {
height: 187px;
height: 100px;
}
table.health tr td div.border {
padding: 0px;
}
table.health tr td div.border img {
display: block;
margin-top: 0px;
margin-bottom: 0px;
height: 30px;
}
.service-totals {
margin-left: 249px;
margin-top:-72px;
width: 251px;
}
.service-totals tr td.status:first-child,
.w-table.w50 tr td.status:first-child { border-left: 1px solid #d0d0d0;}
/* extinfo table **********************************************************************************/
table.extinfo {
border-spacing: 1px;
background-color: #dcdccd;
margin-top: -1px;
}
table.extinfo tr td {
padding: 2px 5px;
}
table.extinfo tr td.status.icon {
width: 11px;
}
table.extinfo tr td img {
margin-bottom: -2px;
margin-right: 2px;
}
table.extinfo tr td.status.icon img {
margin: 1px;
height: 14px;
}
/* widgdet style **********************************************************************************/
.widget-header {
font-size: 11px;
color: #333333;
font-weight: bold;
text-align: left;
padding: 3px 5px 3px 5px;
border: 1px solid #e9e9e0;
border: 1px solid #dcdccd;
height: 14px;
}
.widget-header span {
float: left;
}
.widget-header span img {
float: left;
}
.widget-header span.widget-menu {
float: right;
margin-top: 1px;
}
.wtop { margin-top: 11px; margin-bottom: 0px;}
.widget-header span.widget-menu img {
margin-left: 3px;
}
.widget {
width: 100%;
margin-top: 11px;
}
.widget-place {
margin-left: 1%;
width: 32%;
float: left;
min-height: 20px;
}
.widget-place.w98{
width: 98%;
}
.widget-place.col {
clear: none;
}
.widget-placeholder {
margin-top: 11px;
border: 1px dashed #cdcdbc;
}
.widget-editbox{
z-index: 9999;
background-color: #ffffff;
padding: 15px;
float: right;
margin-top: -1px;
border: 1px solid #e9e9e0;
right: 0px;
width: 200px;
position: relative;
}
/**************************************************************************************************/
div.left {
float: left;
margin-top: 11px;
margin-left: 1%;
}
div.right {
float: right;
margin-top: 11px;
}
.max { width: 100%; }
.w99 { width: 99%; }
.w98 { width: 98%; }
.w66 { width: 65%; }
.w50 { width: 50%; }
.w49 { width: 49%; }
.w48 { width: 48%; }
.w33 { width: 32%; }
.w32 { width: 32%; }
/* status *****************************************************************************************/
.status {
padding: 5px;
height: 16px;
}
.icon {
width: 16px;
padding: 2px 7px;
text-align: center;
vertical-align: middle;
}
.icon img {
margin-top: 2px;
margin-bottom: -1px;
}
tr.odd td.bl,
tr.even td.bl { border-left: 1px solid #dcdccd; }
tr.odd td.bt,
tr.even td.bt { border-top: 1px solid #dcdccd; }
tr.odd td.bt img,
tr.even td.bt img { float: left }
td.icon a { border: 0px; }
th.white,
#service_table tr.even td.white,
#service_table tr.odd td.white {
background: #ffffff;
border: 1px solid #ffffff;
padding: 0px;
}
tr.even td.w80,
tr.odd td.w80 { width: 80px; border-right: 0px; }
#content a {
text-decoration: none;
border-bottom: 1px dotted #777777;
}
th a { border-bottom: 0px; }
img { border-bottom: 0px; }
a > img { border: 0px; }
#status_count_summary {
margin-top: 7px;
font-style: italic;
margin-left: 5px;
}
tr.even td {
border: 1px solid #dcdccd;
border-left: 0px;
border-top: 0px;
background: #fdfdfd;
padding-top: 2px;
padding-bottom: 2px;
}
tr.odd td {
border: 1px solid #dcdccd;
border-left: 0px;
background: #f8f8f3;
border-top: 0px;
padding-top: 2px;
padding-bottom: 2px;
}
tr.odd td:first-child,
tr.even td:first-child {
border-left: 1px solid #dcdccd;
}
tr.even td.status {
}
td.white table tr td {
border: 1px solid #e9e9e0;
border-left: 0px;
border-top: 0px;
}
td.white:first-child table tr td:first-child {
border-left: 1px solid #e9e9e0;
}
.w-table {
/*border-spacing: 1px;
background-color: #e9e9e0;
margin-top: -1px;*/
}
.w-table tr td {
border-right: 1px solid #d0d0d0;
border-bottom:1px solid #d0d0d0;
}
.w-table tr td.dark {
border-left: 1px solid #d0d0d0;
}
th.enabled_monfeat,
th.disabled_monfeat {
cursor: pointer
}
th.disabled_monfeat em,
th.enabled_monfeat em {
font-weight: normal;
float: right;
margin-top: 2px;
margin-bottom: -2px;
background: transparent url(../../icons/arrow-down.gif) right no-repeat;
width: 70px;
height: 16px;
padding-left: 20px
}
th.enabled_monfeat em {
width: 65px;
}
th.disabled_monfeat cite,
th.enabled_monfeat cite {
float: left;
margin-top: 2px;
margin-bottom: -2px;
}
table.ext {
border-spacing: 1px;
background-color: #cdcdcd;
}
table.ext tr th {
border: 0px;
}
table.ext tr td.dark {
text-align: left;
padding-left: 7px;
padding-right: 5px;
width: auto;
padding: 3px 5px 3px 7px;
}
table.ext tr td {
padding: 3px 5px;
white-space: normal;
}
table.ext tr td.dark img {
display: block;
}
/* widget thihngys *******************************************************************************/
#widget-tac_hosts table tr th,
#widget-tac_services table tr th,
#widget-tac_monfeat table tr th {
border: 1px solid #e9e9e0;
border-left: 0px;
border-top: 0px;
}
#widget-tac_hosts table tr th:first-child,
#widget-tac_services table tr th:first-child,
#widget-tac_monfeat table tr th:first-child {
border-left: 1px solid #e9e9e0;
}
/* table sorter styles ****************************************************************************/
.group_grid_table th.header,
.group_overview_table th.header,
.comments_table th.header,
#group_summary_table th.header,
#service_table th.header,
#host_table th.header,
th.header {
background: #ffffff url(images/sort.png) top right;
cursor: pointer;
border-bottom: 1px solid #dcdccd;
border-right: 1px solid #dcdccd;
border-top: 1px solid #dcdccd;
padding-top: 14px;
}
.group_grid_table th.header:first-child,
.group_overview_table th.header:first-child,
.comments_table th.header:first-child,
#group_summary_table th.header:first-child,
#service_table th.header:first-child,
#host_table th.header:first-child,
th.header:first-child {
background: #ffffff url(images/sort.png) top right;
cursor: pointer;
border-left: 1px solid #dcdccd;
}
.group_grid_table th,
.group_overview_table th,
.comments_table th,
#group_summary_table th,
#service_table th,
#service_table th.headerNone,
th.headerNone,
#host_table th,
#host_table th.no-sort {
background:#f5f5ef;
cursor: default;
border-bottom: 1px solid #dcdccd;
border-right: 1px solid #dcdccd;
border-top: 1px solid #dcdccd;
padding-top: 14px;
background: #ffffff url(images/sort-none.png) top right;
}
.group_grid_table th:first-child,
.group_overview_table th:first-child,
.comments_table th:first-child,
th.headerNone:first-child,
#group_summary_table th:first-child,
#service_table th:first-child,
#host_table th:first-child,
#host_table th.no-sort:first-child {
border-left: 1px solid #dcdccd;
}
.group_grid_table th.headerSortDown,
.group_overview_table th.headerSortDown,
.comments_table th.headerSortDown,
#group_summary_table th.headerSortDown,
#service_table th.headerSortDown,
#host_table th.headerSortDown,
th.headerSortDown {
background: #ffffff url(images/sort-down.png) top right;
cursor: pointer;
}
.group_grid_table th.headerSortDown:first-child,
.group_overview_table th.headerSortDown:first-child,
.comments_table th.headerSortDown:first-child,
#group_summary_table th.headerSortDown:first-child,
#service_table th.headerSortDown:first-child,
#host_table th.headerSortDown:first-child,
th.headerSortDown:first-child {
background: #ffffff url(images/sort-down.png) top right;
border-left: 1px solid #dcdccd;
cursor: pointer;
}
.group_grid_table th.headerSortUp,
.group_overview_table th.headerSortUp,
.comments_table th.headerSortUp,
#group_summary_table th.headerSortUp,
#service_table th.headerSortUp,
#host_table th.headerSortUp,
th.headerSortUp {
background: #ffffff url(images/sort-up.png) top right;
cursor: pointer;
}
.group_grid_table th.headerSortUp:first-child,
.group_overview_table th.headerSortUp:first-child,
.comments_table th.headerSortUp:first-child,
#group_summary_table th.headerSortUp:first-child,
#service_table th.headerSortUp:first-child,
#host_table th.headerSortUp:first-child,
th.headerSortUp:first-child {
background: #ffffff url(images/sort-up.png) top right;
border-left: 1px solid #dcdccd;
cursor: pointer;
}
/* autocomplete styles ****************************************************************************/
.autocomplete-w1 {
/*background:url(/application/views/themes/default/images/shadow.png) no-repeat bottom right;*/
position:absolute;
top:0px;
left:0px;
margin:8px 0px 0px 6px;
}
.autocomplete {
border:1px solid #999999;
background:#ffffff;
cursor:default;
text-align:left;
max-height:350px;
overflow:auto;
margin:-6px 6px 6px -6px;
}
.autocomplete .selected {
background:#f0f0f0;
}
.autocomplete div {
padding:2px 5px;
white-space:nowrap;
}
.autocomplete strong {
font-weight:normal;
color:#3399ff;
}
/* jquery.jgrowl.css ******************************************************************************/
div.jGrowl {
padding:10px;
z-index:9999;
}
/** Normal Style Positions **/
body > div.jGrowl {
position:fixed;
}
body > div.jGrowl.top-left {
left:0px;
top:0px;
}
body > div.jGrowl.top-right {
right:0px;
top:0px;
}
body > div.jGrowl.bottom-left {
left:0px;
bottom:0px;
}
body > div.jGrowl.bottom-right {
right:0px;
bottom:0px;
}
body > div.jGrowl.center {
top:0px;
width:50%;
left:25%;
}
/** Cross Browser Styling **/
div.center div.jGrowl-notification, div.center div.jGrowl-closer {
margin-left:auto;
margin-right:auto;
}
div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer {
background-color:#000;
color:#fff;
opacity:.85;
filter:alpha(opacity = 85);
zoom:1;
width:235px;
padding:10px;
margin-top:5px;
margin-bottom:5px;
font-family:arial,sans-serif;
font-size:12px;
text-align:left;
display:none;
-moz-border-radius:5px;
-webkit-border-radius:5px;
}
div.jGrowl div.jGrowl-notification {
min-height:40px;
}
div.jGrowl div.jGrowl-notification div.header {
font-weight:bold;
font-size:10px;
}
div.jGrowl div.jGrowl-notification div.close {
float:right;
font-weight:bold;
font-size:12px;
cursor:pointer;
}
div.jGrowl div.jGrowl-closer {
height:15px;
padding-top:4px;
padding-bottom:4px;
cursor:pointer;
font-size:11px;
font-weight:bold;
text-align:center;
}
.ui-slider { position: relative; text-align: left; }
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; }
.ui-slider-horizontal { height: .8em; }
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
.ui-slider-horizontal .ui-slider-range-max { right: 0; }
/* Component containers
----------------------------------*/
.ui-widget { font-family: arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; }
.ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ /*url(images/ui-bg_flat_75_ffffff_40x100.png)*//*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; }
.ui-widget-content a { color: #222222/*{fcContent}*/; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif/*{ffDefault}*/; font-size: 1em; }
.ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ /*url(images/ui-bg_highlight-soft_75_cccccc_1x100.png)*//*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; }
.ui-widget-header a { color: #222222/*{fcHeader}*/; }
.ui-corner-all { -moz-border-radius: 4px/*{cornerRadius}*/; -webkit-border-radius: 4px/*{cornerRadius}*/; }
.ui-state-default, .ui-widget-content .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ /*url(images/ui-bg_glass_75_e6e6e6_1x400.png)*//*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; outline: none; }
#tac_problems_slider{width:200px}
/***************************************************************************************************
* COLOURS!
***************************************************************************************************/
td.white table tr td,
td.white:first-child table tr td:first-child,
#widget-tac_hosts table tr th,
#widget-tac_services table tr th,
#widget-tac_monfeat table tr th,
#widget-tac_hosts table tr th:first-child,
#widget-tac_services table tr th:first-child,
#widget-tac_monfeat table tr th:first-child,
#top-bar,
#quickbar,
#menu,
#menu ul,
#page_settings ul li,
#menu ul li,
#page_settings,
.widget-editbox {
border-color: #e9e9e0;
border-color: #dcdcdc;
}
.group_grid_table th.headerSortUp:first-child,
.group_overview_table th.headerSortUp:first-child,
.comments_table th.headerSortUp:first-child,
#group_summary_table th.headerSortUp:first-child,
#service_table th.headerSortUp:first-child,
#host_table th.headerSortUp:first-child,
th.headerSortUp:first-child,
.group_grid_table th.headerSortDown:first-child,
.group_overview_table th.headerSortDown:first-child,
.comments_table th.headerSortDown:first-child,
#group_summary_table th.headerSortDown:first-child,
#service_table th.headerSortDown:first-child,
#host_table th.headerSortDown:first-child,
th.headerSortDown:first-child,
.group_grid_table th:first-child,
.group_overview_table th:first-child,
.comments_table th:first-child,
th.headerNone:first-child,
#group_summary_table th:first-child,
#service_table th:first-child,
#host_table th:first-child,
#host_table th.no-sort:first-child,
.group_grid_table th,
.group_overview_table th,
.comments_table th,
#group_summary_table th,
#service_table th,
#service_table th.headerNone,
th.headerNone,
#host_table th,
#host_table th.no-sort,
.group_grid_table th.header:first-child,
.group_overview_table th.header:first-child,
.comments_table th.header:first-child,
#group_summary_table th.header:first-child,
#service_table th.header:first-child,
#host_table th.header:first-child,
th.header:first-child,
.group_grid_table th.header,
.group_overview_table th.header,
.comments_table th.header,
#group_summary_table th.header,
#service_table th.header,
#host_table th.header,
th.header,
.autocomplete,
tr.odd td:first-child,
tr.even td:first-child,
tr.even td,
tr.odd td,
tr.odd td.bl,
tr.even td.bl,
tr.odd td.bt,
tr.even td.bt,
.widget-placeholder,
.widget-header,
table.health,
#quickbar{
border-color: #dcdcdc;
border-color: #d0d0d0;
}
#menu ul li.hr {
border-color: #ffffff;
}
input[type=submit],
input[type=reset],
input[type=button],
input[type=text],
select {
border: 1px solid #ffffff;
outline: 1px solid #cdcdcd;
}
input.i160 { border: 0px; outline: 0px; }
#top-bar{
background:#e9e9e9 url(images/bg.png) repeat-x;
}
#page_settings ul li,
#quickbar,
#menu ul li {
background:#e0e0e0 url(images/bg.png) repeat-x;
}
tr td,
table.health tr td div.border {
background:#e9e9e9 url(images/bg.png) repeat-x;
}
.widget-header.dark,
.status,
th,
tr td.dark,
tr.even td.status {
background:#b7b7b7 url(images/bg.png) repeat-x;
}
/*#menu ul li.header {
background:#b7b7b7 url(images/bg.png) 0px -5px repeat;
}*/
.widget-header {
/*background:#f5f5f5 url(images/bg.png) repeat-x;*/
}
.w-table,
table.extinfo {
background: #dcdcdc;
background: #d0d0d0;
}
#menu ul li.hr {
background: #ffffff;
}
tr.even td { background: #fdfdfd; }
tr.odd td,
#menu,
#page_settings,
.autocomplete .selected { background-color: #f5f5f5; }
#page_settings ul li,
#menu ul li {
background-position: 0px -1px;
}
.group_grid_table th.header,
.group_overview_table th.header,
.comments_table th.header,
#group_summary_table th.header,
#service_table th.header,
#host_table th.header,
th.header,
.group_grid_table th.header:first-child,
.group_overview_table th.header:first-child,
.comments_table th.header:first-child,
#group_summary_table th.header:first-child,
#service_table th.header:first-child,
#host_table th.header:first-child,
th.header:first-child {
background: #dcdcdc url(images/sort.png) top right;
}
.group_grid_table th,
.group_overview_table th,
.comments_table th,
#group_summary_table th,
#service_table th,
#service_table th.headerNone,
th.headerNone,
#host_table th,
#host_table th.no-sort {
background:#dcdcdc url(images/bg.png) repeat-x;
}
.group_grid_table th.headerSortDown,
.group_overview_table th.headerSortDown,
.comments_table th.headerSortDown,
#group_summary_table th.headerSortDown,
#service_table th.headerSortDown,
#host_table th.headerSortDown,
th.headerSortDown,
.group_grid_table th.headerSortDown:first-child,
.group_overview_table th.headerSortDown:first-child,
.comments_table th.headerSortDown:first-child,
#group_summary_table th.headerSortDown:first-child,
#service_table th.headerSortDown:first-child,
#host_table th.headerSortDown:first-child,
th.headerSortDown:first-child {
background: #dcdcdc url(images/sort-down.png) top right;
}
.group_grid_table th.headerSortUp,
.group_overview_table th.headerSortUp,
.comments_table th.headerSortUp,
#group_summary_table th.headerSortUp,
#service_table th.headerSortUp,
#host_table th.headerSortUp,
th.headerSortUp,
.group_grid_table th.headerSortUp:first-child,
.group_overview_table th.headerSortUp:first-child,
.comments_table th.headerSortUp:first-child,
#group_summary_table th.headerSortUp:first-child,
#service_table th.headerSortUp:first-child,
#host_table th.headerSortUp:first-child,
th.headerSortUp:first-child {
background: #dcdcdc url(images/sort-up.png) top right;
}
/* Reports */
div.setup-table tr.odd td,
div.setup-table tr.even td {
border-bottom: 1px solid #dcdccd;
border-left: 0px;
border-top: 0px;
background: #f8f8f3;
padding-top: 2px;
padding-bottom: 2px;
}
tr#service_row_2 td.bl,
tr#host_row_2 td.bl,
tr#hostgroup_row td.bl,
tr#servicegroup_row td.bl {
border-left: 1px solid #dcdccd;
}
div.setup-table tr.even td:first-child,
div.setup-table tr.odd td:first-child {
border-left: 1px solid #dcdccd;
}
div.setup-table tr.odd td {
background: #fdfdfd;
}
div#schedule_report tr.odd td {
padding-left: 7px;
}
div.setup-table {
clear: both;
width: 100%;
margin-bottom: 0px;
}
div.setup-table table tr td, div.setup-table table tr th {
text-align: left;
}
#hostgroup_row{display:none;}
#servicegroup_row{display:none;}
#host_row_1{display:none;}
#host_row_2{display:none;}
#host_row_3{display:none;}
#service_row_1{display:none;}
#service_row_2{display:none;}
#submit_button{display:none;}
#sla_setup{display:none;}
tr#hostgroup_row td {
border: 0px solid #cccccc;
}
#hostgroup_row select {
overflow: hidden;
}
td a.help, a.help {
color: #0186b3;
color: #b00000;
font-weight: bold;
font-style: normal;
text-decoration: none;
}
td.move-buttons {
vertical-align: middle;
padding: 10px 0px;
}
select.multiple {
width: 351px;
}
select {
width: 160px;
}
#report_setup {
position: relative;
float: right;
margin-bottom: -2px;
}
/***************************************************************************************************
* DO NOT ADD ANY STYLE BELOW THE COLOURS SECTION. i.e. below this line
***************************************************************************************************/ | 0.205057 | 0.090735 |
body{
background: url('../../../images/bg-planet.jpg') no-repeat;
background-position: center center;
background-size: cover;
font-family: 'Montserrat', sans-serif !important;
}
table {
color: #fff;
}
body .container.body .right_col, .custom-well,
.nav-md .container.body .col-md-3.left_col, .left_col.scroll-view,
.nav_title, footer, body .nav_menu, .left_col{
background: rgba(0, 0, 0, 0);
font-size: 16px;
}
.nav_title{
border-bottom: 1px solid #D9DEE4 !important;
height: 59px;
}
.left_col{
border-right: 1px solid #D9DEE4;
}
footer {
padding: 18px 20px;
}
.x_panel {
background: rgba(28, 35, 49, 0.5);
color: #fff;
}
.table-striped > tbody > tr:nth-of-type(2n+1) {
background-color: transparent;
}
.nav.side-menu > li.active > a {
background: transparent;
text-shadow: rgba(0,0,0,0.25) 0 -1px 0;
box-shadow: rgba(0,0,0,0.25) 0 1px 0,inset rgba(255,255,255,0.16) 0 1px 0;
}
.custom-well{
display: none;
}
.custom-well label{
color: #fff;
}
.wizard_verticle{
margin: 30px auto;
}
.wizard_verticle ul.wizard_steps li a.selected::before, .step_no{
background: #1ABB9C;
}
.wizard_verticle ul.wizard_steps li a.done::before, .wizard_verticle ul.wizard_steps li a.done .step_no,
.wizard_verticle ul.wizard_steps li a.selected::before{
background: #34495E;
}
.right_col .actionBar {
/*display: none;*/
}
.wizard_verticle ul.wizard_steps {
width: 80px;
}
.wizard_verticle .stepContainer{
width: 90%;
width: calc(100% - 80px);
padding-top: 20px;
}
.stepContainer{
/*height: auto !important;*/
}
.x_title h2 + small{
line-height: 3;
padding-left: 14px;
}
.actionBar .form-submit{
margin-left: 30px;
float: right;
}
body .container.body .right_col{
/*background: #c5c5c5;*/
}
footer{
min-height: 50px;
}
.wizard-wrapper #wizard_verticle{
padding: 10px 17px;
}
.nav-sm .container.body .col-md-3.left_col{
width: 90px;
}
.nav-sm .container.body .right_col, .nav-sm .main_container .top_nav{
margin-left: 90px;
}
.wizard_steps a span {
display: block;
-webkit-transition: box-shadow 0.3s;
transition: box-shadow 0.3s;
}
.wizard_steps a.selected span{
box-shadow: 0 0 30px 3px #fff;
-webkit-animation: pulse 2s infinite;
animation: pulse 2s infinite;
}
@-webkit-keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(255,255,255, 1);
}
70% {
box-shadow: 0 0 40px 6px rgba(255,255,255, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(255,255,255, 1);
}
70% {
box-shadow: 0 0 40px 6px rgba(255,255,255, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
}
.selection, .select2-container--default .select2-selection--single .select2-selection__rendered {
color: #000;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice{
background-color: transparent;
border: 1px solid #000;
}
.checkbox-wrapper{
max-width: 200px;
}
.grid-element {
min-height: 300px;
width: 20%;
margin: 0 2.5%;
border: 1px solid #fff;
position: relative;
margin-bottom: 30px;
background-color: rgba(51, 122, 183, 0.3);
color: #fff;
}
.grid-element:hover {
background-color: rgba(51, 122, 183, 0.8);
}
.grid-options {
position: absolute;
bottom:0;
left:0;
width: 100%;
height: 40px;
border: 1px solid #fff;
}
.grid-options > a{
margin-top: 5px;
margin-left: 10px;
}
.grid-element img {
display: block;
margin: 10px auto;
}
.grid-name {
margin: 10px auto;
font-size: 14px;
text-align: center;
}
.grid-column {
margin: 10px auto;
}
.nav-md .container.body .right_col, .main_container .top_nav{
margin-left: 320px;
}
.nav-md .container.body .col-md-3.left_col, .nav_title{
width: 320px;
}
.nav-sm .navbar.nav_title {
width: 90px;
}
.site_title img{
display: block;
margin: 10px auto;
}
#sortable{
list-style: decimal;
font-size: 16px;
}
.custom-sortable-item {
width: 100%;
min-height:50px;
border: 1px solid #1ABB9C;
cursor: pointer;
padding: 14px 20px;
background: rgba(0,0,0,0.3);
display: list-item;
}
.custom-sortable-item:hover {
background: #1ABB9C;
color: black;
} | public/assets/admin/css/custom.css | body{
background: url('../../../images/bg-planet.jpg') no-repeat;
background-position: center center;
background-size: cover;
font-family: 'Montserrat', sans-serif !important;
}
table {
color: #fff;
}
body .container.body .right_col, .custom-well,
.nav-md .container.body .col-md-3.left_col, .left_col.scroll-view,
.nav_title, footer, body .nav_menu, .left_col{
background: rgba(0, 0, 0, 0);
font-size: 16px;
}
.nav_title{
border-bottom: 1px solid #D9DEE4 !important;
height: 59px;
}
.left_col{
border-right: 1px solid #D9DEE4;
}
footer {
padding: 18px 20px;
}
.x_panel {
background: rgba(28, 35, 49, 0.5);
color: #fff;
}
.table-striped > tbody > tr:nth-of-type(2n+1) {
background-color: transparent;
}
.nav.side-menu > li.active > a {
background: transparent;
text-shadow: rgba(0,0,0,0.25) 0 -1px 0;
box-shadow: rgba(0,0,0,0.25) 0 1px 0,inset rgba(255,255,255,0.16) 0 1px 0;
}
.custom-well{
display: none;
}
.custom-well label{
color: #fff;
}
.wizard_verticle{
margin: 30px auto;
}
.wizard_verticle ul.wizard_steps li a.selected::before, .step_no{
background: #1ABB9C;
}
.wizard_verticle ul.wizard_steps li a.done::before, .wizard_verticle ul.wizard_steps li a.done .step_no,
.wizard_verticle ul.wizard_steps li a.selected::before{
background: #34495E;
}
.right_col .actionBar {
/*display: none;*/
}
.wizard_verticle ul.wizard_steps {
width: 80px;
}
.wizard_verticle .stepContainer{
width: 90%;
width: calc(100% - 80px);
padding-top: 20px;
}
.stepContainer{
/*height: auto !important;*/
}
.x_title h2 + small{
line-height: 3;
padding-left: 14px;
}
.actionBar .form-submit{
margin-left: 30px;
float: right;
}
body .container.body .right_col{
/*background: #c5c5c5;*/
}
footer{
min-height: 50px;
}
.wizard-wrapper #wizard_verticle{
padding: 10px 17px;
}
.nav-sm .container.body .col-md-3.left_col{
width: 90px;
}
.nav-sm .container.body .right_col, .nav-sm .main_container .top_nav{
margin-left: 90px;
}
.wizard_steps a span {
display: block;
-webkit-transition: box-shadow 0.3s;
transition: box-shadow 0.3s;
}
.wizard_steps a.selected span{
box-shadow: 0 0 30px 3px #fff;
-webkit-animation: pulse 2s infinite;
animation: pulse 2s infinite;
}
@-webkit-keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(255,255,255, 1);
}
70% {
box-shadow: 0 0 40px 6px rgba(255,255,255, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(255,255,255, 1);
}
70% {
box-shadow: 0 0 40px 6px rgba(255,255,255, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
}
.selection, .select2-container--default .select2-selection--single .select2-selection__rendered {
color: #000;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice{
background-color: transparent;
border: 1px solid #000;
}
.checkbox-wrapper{
max-width: 200px;
}
.grid-element {
min-height: 300px;
width: 20%;
margin: 0 2.5%;
border: 1px solid #fff;
position: relative;
margin-bottom: 30px;
background-color: rgba(51, 122, 183, 0.3);
color: #fff;
}
.grid-element:hover {
background-color: rgba(51, 122, 183, 0.8);
}
.grid-options {
position: absolute;
bottom:0;
left:0;
width: 100%;
height: 40px;
border: 1px solid #fff;
}
.grid-options > a{
margin-top: 5px;
margin-left: 10px;
}
.grid-element img {
display: block;
margin: 10px auto;
}
.grid-name {
margin: 10px auto;
font-size: 14px;
text-align: center;
}
.grid-column {
margin: 10px auto;
}
.nav-md .container.body .right_col, .main_container .top_nav{
margin-left: 320px;
}
.nav-md .container.body .col-md-3.left_col, .nav_title{
width: 320px;
}
.nav-sm .navbar.nav_title {
width: 90px;
}
.site_title img{
display: block;
margin: 10px auto;
}
#sortable{
list-style: decimal;
font-size: 16px;
}
.custom-sortable-item {
width: 100%;
min-height:50px;
border: 1px solid #1ABB9C;
cursor: pointer;
padding: 14px 20px;
background: rgba(0,0,0,0.3);
display: list-item;
}
.custom-sortable-item:hover {
background: #1ABB9C;
color: black;
} | 0.469034 | 0.087252 |
.snippet {
padding: 12px 8px 10px 12px;
background: var(--code-bg);
margin: 1em 0px;
border-radius: 2px;
box-shadow: 0 0 2px #888;
cursor: default;
}
.snippet-error {
border-bottom: 2px dotted red;
}
.snippet-warn {
border-bottom: 2px dotted orange;
}
.snippet-info {
border-bottom: 2px dotted teal;
}
.snippet-debug {
border-bottom: 2px dotted pink;
}
.snippet .snippet-meta {
border-top: 2px solid var(--inactive-bg);
color: var(--inactive-fg);
margin-top: 10px;
padding-top: 10px;
font-size: 0.75em;
}
.snippet-meta .snippet-label {
font-weight: bold;
}
.snippet .buttons {
--icon-size: 16px;
}
.snippet-showhide {
display: flex;
flex-direction: row;
align-items: center;
--slider-width: 40px;
--slider-height: 16px;
--slider-diameter: calc(var(--slider-height) - 4px);
}
.snippet-showhide p {
margin-left: 4px;
margin-bottom: 0;
margin-top: 0;
color: var(--inactive-fg);
}
.snippet-showhide-button {
display: inline-block;
position: relative;
width: var(--slider-width);
height: var(--slider-height);
margin-bottom: 0;
}
.snippet-showhide-button input {
opacity: 0;
width: 0;
height: 0;
}
.snippet-showhide-button .slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--inactive-bg);
-webkit-transition: .4s;
transition: .4s;
border-radius: var(--slider-height);
}
.snippet-showhide-button .slider:before {
position: absolute;
content: "";
height: var(--slider-diameter);
width: var(--slider-diameter);
left: 2px;
bottom: 2px;
background-color: var(--inactive-fg);
-webkit-transition: .4s;
transition: .4s;
border-radius: 50%;
}
.snippet-showhide-button .slider:hover::before {
background-color: var(--active-fg);
}
input:checked + .slider {
background-color: var(--active-bg);
}
input:focus + .slider {
box-shadow: 0 0 1px var(--active-bg-shadow);
}
input:checked + .slider:before {
--translation-size: calc(var(--slider-width) - var(--slider-diameter) - 4px);
-webkit-transform: translateX(var(--translation-size));
-ms-transform: translateX(var(--translation-size));
transform: translateX(var(--translation-size));
}
.tooltip {
position: relative;
}
.tooltip:hover:after {
content: attr(label);
padding: 4px 8px;
color: white;
background-color:black;
position: absolute;
left: 0;
z-index:10;
box-shadow:0 0 3px #444;
opacity: 0.8;
}
.snippet .buttons .tooltip::after {
top: 32px;
}
.snippet .buttons {
display: flex;
flex-direction: row-reverse;
justify-content: flex-start;
}
.snippet .buttons button {
outline: none;
background: none;
border: none;
font-size: var(--icon-size);
color: var(--inactive-fg);
cursor: pointer;
}
.snippet .buttons button:hover:not(:disabled) {
color: var(--inactive-fg-shadow)
}
.snippet .buttons button:active:not(:disabled) {
transform: translateY(2px);
color: var(--active-fg)
}
.snippet .buttons button:disabled {
color: var(--inactive-bg)
}
.snippet .buttons>:not(:last-child) {
border-left: 2px solid var(--inactive-bg);
}
.snippet .buttons>* {
padding-left: 5px;
padding-right: 5px;
}
.unselectable {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.included-section {
display: flex;
flex-direction: column;
}
.included-section a {
color: var(--inactive-fg) !important;
font-size: 0.75em;
}
.included-section b {
font-weight: bold;
}
.hideable.hidden {
display: none;
}
@media(max-width: 576px) {
.snippet-showhide {
--slider-width: 32px;
--slider-height: 16px;
}
.snippet .buttons {
--icon-size: 16px;
font-size: 16px;
}
}
@media(max-width: 360px) {
.snippet-showhide {
--slider-width: 32px;
--slider-height: 16px;
}
.snippet .buttons {
--icon-size: 16px;
font-size: 0px;
}
}
@media(max-width: 240px) {
.snippet-showhide {
--slider-width: 24px;
--slider-height: 10px;
}
.snippet .buttons {
--icon-size: 16px;
font-size: 0px;
}
} | scaladoc-js/resources/code-snippets.css |
.snippet {
padding: 12px 8px 10px 12px;
background: var(--code-bg);
margin: 1em 0px;
border-radius: 2px;
box-shadow: 0 0 2px #888;
cursor: default;
}
.snippet-error {
border-bottom: 2px dotted red;
}
.snippet-warn {
border-bottom: 2px dotted orange;
}
.snippet-info {
border-bottom: 2px dotted teal;
}
.snippet-debug {
border-bottom: 2px dotted pink;
}
.snippet .snippet-meta {
border-top: 2px solid var(--inactive-bg);
color: var(--inactive-fg);
margin-top: 10px;
padding-top: 10px;
font-size: 0.75em;
}
.snippet-meta .snippet-label {
font-weight: bold;
}
.snippet .buttons {
--icon-size: 16px;
}
.snippet-showhide {
display: flex;
flex-direction: row;
align-items: center;
--slider-width: 40px;
--slider-height: 16px;
--slider-diameter: calc(var(--slider-height) - 4px);
}
.snippet-showhide p {
margin-left: 4px;
margin-bottom: 0;
margin-top: 0;
color: var(--inactive-fg);
}
.snippet-showhide-button {
display: inline-block;
position: relative;
width: var(--slider-width);
height: var(--slider-height);
margin-bottom: 0;
}
.snippet-showhide-button input {
opacity: 0;
width: 0;
height: 0;
}
.snippet-showhide-button .slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--inactive-bg);
-webkit-transition: .4s;
transition: .4s;
border-radius: var(--slider-height);
}
.snippet-showhide-button .slider:before {
position: absolute;
content: "";
height: var(--slider-diameter);
width: var(--slider-diameter);
left: 2px;
bottom: 2px;
background-color: var(--inactive-fg);
-webkit-transition: .4s;
transition: .4s;
border-radius: 50%;
}
.snippet-showhide-button .slider:hover::before {
background-color: var(--active-fg);
}
input:checked + .slider {
background-color: var(--active-bg);
}
input:focus + .slider {
box-shadow: 0 0 1px var(--active-bg-shadow);
}
input:checked + .slider:before {
--translation-size: calc(var(--slider-width) - var(--slider-diameter) - 4px);
-webkit-transform: translateX(var(--translation-size));
-ms-transform: translateX(var(--translation-size));
transform: translateX(var(--translation-size));
}
.tooltip {
position: relative;
}
.tooltip:hover:after {
content: attr(label);
padding: 4px 8px;
color: white;
background-color:black;
position: absolute;
left: 0;
z-index:10;
box-shadow:0 0 3px #444;
opacity: 0.8;
}
.snippet .buttons .tooltip::after {
top: 32px;
}
.snippet .buttons {
display: flex;
flex-direction: row-reverse;
justify-content: flex-start;
}
.snippet .buttons button {
outline: none;
background: none;
border: none;
font-size: var(--icon-size);
color: var(--inactive-fg);
cursor: pointer;
}
.snippet .buttons button:hover:not(:disabled) {
color: var(--inactive-fg-shadow)
}
.snippet .buttons button:active:not(:disabled) {
transform: translateY(2px);
color: var(--active-fg)
}
.snippet .buttons button:disabled {
color: var(--inactive-bg)
}
.snippet .buttons>:not(:last-child) {
border-left: 2px solid var(--inactive-bg);
}
.snippet .buttons>* {
padding-left: 5px;
padding-right: 5px;
}
.unselectable {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.included-section {
display: flex;
flex-direction: column;
}
.included-section a {
color: var(--inactive-fg) !important;
font-size: 0.75em;
}
.included-section b {
font-weight: bold;
}
.hideable.hidden {
display: none;
}
@media(max-width: 576px) {
.snippet-showhide {
--slider-width: 32px;
--slider-height: 16px;
}
.snippet .buttons {
--icon-size: 16px;
font-size: 16px;
}
}
@media(max-width: 360px) {
.snippet-showhide {
--slider-width: 32px;
--slider-height: 16px;
}
.snippet .buttons {
--icon-size: 16px;
font-size: 0px;
}
}
@media(max-width: 240px) {
.snippet-showhide {
--slider-width: 24px;
--slider-height: 10px;
}
.snippet .buttons {
--icon-size: 16px;
font-size: 0px;
}
} | 0.482917 | 0.128744 |
body {
margin: 0;
margin-bottom: 0;
margin-top: 0;
padding: 10px;
background-color: #FFFFFF;
font-family: "Arial", "Helvetica", "sans-serif";
font-size: 75%;
color: #222222
}
h1 {
font-size: 28px;
color: #000
}
a {
color: #015BA7
}
a:hover {
background-color: #015BA7;
color: white;
text-decoration: none
}
#page {
background-color: #FFFFFF;
width: 800px;
margin: 0;
margin-left: 0;
margin-right: 0
}
#content {
float: left;
background-color: white;
border: 3px solid #aaa;
padding: 25px;
width: 700px
}
#footer {
clear: both
}
#header {
padding-left: 75px;
padding-right: 30px
}
#canvas-content {
padding-top: 25px;
padding-left: 0px;
padding-right: 30px
}
#header {
background-image: url("/assets/logo.png");
background-repeat: no-repeat;
background-position: top left;
height: 64px
}
#header h1, #header h2 {
margin: 0
}
#header h2 {
color: #888;
font-weight: normal;
font-size: 16px
}
#canvas-content {
border-top: 1px solid #ccc;
margin-top: 20px;
padding-top: 0
}
#canvas-content h1 {
margin: 0;
font-size: 20px
}
#canvas-content h2 {
margin: 0;
font-size: 14px;
font-weight: normal;
color: #333;
margin-bottom: 25px
}
#canvas-content ol {
margin-left: 0;
padding-left: 0
}
#canvas-content li {
font-size: 18px;
color: #888;
margin-bottom: 25px
}
#canvas-content li h2 {
margin: 0;
font-weight: normal;
font-size: 18px;
color: #333
}
#canvas-content li p {
color: #555;
font-size: 13px
}
#canvas-chatter {
border-top: 1px solid #ccc;
margin-top: 20px;
padding-top: 0
}
#speech-input-field {
width: 400px;
height: 14px;
padding: 6px 15px;
border-radius: 10px;
border: 1px solid #ccc;
outline: 0;
}
button {
clear: both;
width: 48px;
height:24px;
background: #666666 url(/assets/share.png) no-repeat;
}
#footercont
{
float: left;
width: 700px;
height: 50px;
color: #999;
}
#footercont p
{
margin: 0;
padding: 15px;
}
#footercont a
{
color: #999;
text-decoration: none;
}
#footercont a:hover
{
color: #199BD2;
text-decoration: none;
}
#footerleft
{
float: left;
width: 400px;
height: 50px;
}
#footerright
{
float: left;
width: 300px;
height: 50px;
text-align: right;
} | app/assets/stylesheets/application.css | body {
margin: 0;
margin-bottom: 0;
margin-top: 0;
padding: 10px;
background-color: #FFFFFF;
font-family: "Arial", "Helvetica", "sans-serif";
font-size: 75%;
color: #222222
}
h1 {
font-size: 28px;
color: #000
}
a {
color: #015BA7
}
a:hover {
background-color: #015BA7;
color: white;
text-decoration: none
}
#page {
background-color: #FFFFFF;
width: 800px;
margin: 0;
margin-left: 0;
margin-right: 0
}
#content {
float: left;
background-color: white;
border: 3px solid #aaa;
padding: 25px;
width: 700px
}
#footer {
clear: both
}
#header {
padding-left: 75px;
padding-right: 30px
}
#canvas-content {
padding-top: 25px;
padding-left: 0px;
padding-right: 30px
}
#header {
background-image: url("/assets/logo.png");
background-repeat: no-repeat;
background-position: top left;
height: 64px
}
#header h1, #header h2 {
margin: 0
}
#header h2 {
color: #888;
font-weight: normal;
font-size: 16px
}
#canvas-content {
border-top: 1px solid #ccc;
margin-top: 20px;
padding-top: 0
}
#canvas-content h1 {
margin: 0;
font-size: 20px
}
#canvas-content h2 {
margin: 0;
font-size: 14px;
font-weight: normal;
color: #333;
margin-bottom: 25px
}
#canvas-content ol {
margin-left: 0;
padding-left: 0
}
#canvas-content li {
font-size: 18px;
color: #888;
margin-bottom: 25px
}
#canvas-content li h2 {
margin: 0;
font-weight: normal;
font-size: 18px;
color: #333
}
#canvas-content li p {
color: #555;
font-size: 13px
}
#canvas-chatter {
border-top: 1px solid #ccc;
margin-top: 20px;
padding-top: 0
}
#speech-input-field {
width: 400px;
height: 14px;
padding: 6px 15px;
border-radius: 10px;
border: 1px solid #ccc;
outline: 0;
}
button {
clear: both;
width: 48px;
height:24px;
background: #666666 url(/assets/share.png) no-repeat;
}
#footercont
{
float: left;
width: 700px;
height: 50px;
color: #999;
}
#footercont p
{
margin: 0;
padding: 15px;
}
#footercont a
{
color: #999;
text-decoration: none;
}
#footercont a:hover
{
color: #199BD2;
text-decoration: none;
}
#footerleft
{
float: left;
width: 400px;
height: 50px;
}
#footerright
{
float: left;
width: 300px;
height: 50px;
text-align: right;
} | 0.436622 | 0.1178 |
.gi-scroll-up,
.gi-scroll-down-right,
.gi-scroll-left {
position: fixed;
width: 285px;
z-index: 9990;
padding: 10px 10px 5px;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
/* Change box model */
[class^="gi-scroll"] {
box-sizing: border-box;
-moz-box-sizing: border-box;
}
/*
Positioning
========================================================================== */
/* Scrolling Up */
.gi-scroll-up {
top: 0;
right: 0;
}
/* Scrolling Down, Right */
.gi-scroll-down-right {
bottom: 0;
right: 0;
}
/* Scrolling Left */
.gi-scroll-left {
bottom: 0;
left: 0;
}
/*
Indicator Body
========================================================================== */
.gi-scroll {
position: relative;
height: 40px;
margin-bottom: 5px;
font-size: 13px;
font-family: sans-serif;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 3px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
/* Gradient */
background-image: -moz-linear-gradient(top, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.15)), color-stop(100%,rgba(255,255,255,0)));
background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.15) 0%,rgba(255,255,255,0) 100%);
background-image: -o-linear-gradient(top, rgba(255,255,255,0.15) 0%,rgba(255,255,255,0) 100%);
background-image: -ms-linear-gradient(top, rgba(255,255,255,0.15) 0%,rgba(255,255,255,0) 100%);
background-image: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%,rgba(255,255,255,0) 100%);
}
.gi-scroll-msg {
margin-left: 37px;
padding: 14px 14px 14px 5px;
line-height: 1;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
text-align: left;
color: white;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
/*
Scrolling Icon
========================================================================== */
.gi-scroll-icon {
display: block;
position: absolute;
height: 22px;
width: 22px;
left: 9px;
top: 9px;
background-image: url("scroll-indicator/./images/icons.png");
background-repeat: no-repeat;
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.gi-scroll-icon {
background-image: url("scroll-indicator/./images/icons@2x.png");
background-size: 85px 22px;
}
}
.gi-scroll-left .gi-scroll-icon {
background-position: -42px 0;
}
.gi-scroll-right .gi-scroll-icon {
background-position: -63px 0;
}
.gi-scroll-down .gi-scroll-icon {
background-position: -21px 0;
} | dist/scroll-indicator.css | .gi-scroll-up,
.gi-scroll-down-right,
.gi-scroll-left {
position: fixed;
width: 285px;
z-index: 9990;
padding: 10px 10px 5px;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
/* Change box model */
[class^="gi-scroll"] {
box-sizing: border-box;
-moz-box-sizing: border-box;
}
/*
Positioning
========================================================================== */
/* Scrolling Up */
.gi-scroll-up {
top: 0;
right: 0;
}
/* Scrolling Down, Right */
.gi-scroll-down-right {
bottom: 0;
right: 0;
}
/* Scrolling Left */
.gi-scroll-left {
bottom: 0;
left: 0;
}
/*
Indicator Body
========================================================================== */
.gi-scroll {
position: relative;
height: 40px;
margin-bottom: 5px;
font-size: 13px;
font-family: sans-serif;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 3px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
/* Gradient */
background-image: -moz-linear-gradient(top, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.15)), color-stop(100%,rgba(255,255,255,0)));
background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.15) 0%,rgba(255,255,255,0) 100%);
background-image: -o-linear-gradient(top, rgba(255,255,255,0.15) 0%,rgba(255,255,255,0) 100%);
background-image: -ms-linear-gradient(top, rgba(255,255,255,0.15) 0%,rgba(255,255,255,0) 100%);
background-image: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%,rgba(255,255,255,0) 100%);
}
.gi-scroll-msg {
margin-left: 37px;
padding: 14px 14px 14px 5px;
line-height: 1;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
text-align: left;
color: white;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
/*
Scrolling Icon
========================================================================== */
.gi-scroll-icon {
display: block;
position: absolute;
height: 22px;
width: 22px;
left: 9px;
top: 9px;
background-image: url("scroll-indicator/./images/icons.png");
background-repeat: no-repeat;
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.gi-scroll-icon {
background-image: url("scroll-indicator/./images/icons@2x.png");
background-size: 85px 22px;
}
}
.gi-scroll-left .gi-scroll-icon {
background-position: -42px 0;
}
.gi-scroll-right .gi-scroll-icon {
background-position: -63px 0;
}
.gi-scroll-down .gi-scroll-icon {
background-position: -21px 0;
} | 0.442877 | 0.083441 |
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: space-between;
background-color: white;
margin-bottom: 17%;
margin-right: 40%;
margin-left: -10%;
width: 80%;
}
#container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
background-color: white;
align-items: center;
margin-top: 2%;
margin-left: 28%;
margin-right: 20%;
width: 60%;
}
#container1 {
display: flex;
flex-direction: row;
background-color: white;
}
a {
text-decoration: none;
color: white;
}
container {
perspective: 1000px;
margin: 40px 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.seat {
background-color: #09aa32;
height: 22px;
width: 25px;
margin: 3px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.selected {
background-color: #0081cb;
}
.occupied {
background-color: #dd2707;
}
.seat:nth-of-type(2) {
margin-right: 18px;
}
.seat:nth-last-of-type(2) {
margin-left: 18px;
}
.seat:not(.occupied):hover {
cursor: pointer;
transform: scale(1.2);
}
.showcase .seat:not(.occupied):hover {
cursor: default;
transform: scale(1);
}
.showcase {
display: flex;
justify-content: space-between;
list-style-type: none;
background: rgba(0,0,0,0.1);
padding: 5px 10px;
border-radius: 5px;
color: #777;
}
.showcase li {
display: flex;
align-items: center;
justify-content: center;
margin: 0 10px;
}
.showcase li small {
margin-left: 2px;
}
.row {
display: flex;
align-items: center;
justify-content: center;
}
.screen {
background-image: url("https://www.denofgeek.com/wp-content/uploads/2016/03/cinema.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 250px;
width: 100%;
margin: 0px 0 5px 0;
transform: rotateX(-45deg);
box-shadow: 0 3px 10px rgba(255,255,255,0.7);
}
p.text {
margin: 40px 0;
}
p.text span {
color: #0081cb;
font-weight: 600;
box-sizing: content-box;
}
.credits a {
color: #fff;
} | cinema-webapp/src/app/components/movie-cinema-room/movie-cinema-room.component.css | display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: space-between;
background-color: white;
margin-bottom: 17%;
margin-right: 40%;
margin-left: -10%;
width: 80%;
}
#container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
background-color: white;
align-items: center;
margin-top: 2%;
margin-left: 28%;
margin-right: 20%;
width: 60%;
}
#container1 {
display: flex;
flex-direction: row;
background-color: white;
}
a {
text-decoration: none;
color: white;
}
container {
perspective: 1000px;
margin: 40px 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.seat {
background-color: #09aa32;
height: 22px;
width: 25px;
margin: 3px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.selected {
background-color: #0081cb;
}
.occupied {
background-color: #dd2707;
}
.seat:nth-of-type(2) {
margin-right: 18px;
}
.seat:nth-last-of-type(2) {
margin-left: 18px;
}
.seat:not(.occupied):hover {
cursor: pointer;
transform: scale(1.2);
}
.showcase .seat:not(.occupied):hover {
cursor: default;
transform: scale(1);
}
.showcase {
display: flex;
justify-content: space-between;
list-style-type: none;
background: rgba(0,0,0,0.1);
padding: 5px 10px;
border-radius: 5px;
color: #777;
}
.showcase li {
display: flex;
align-items: center;
justify-content: center;
margin: 0 10px;
}
.showcase li small {
margin-left: 2px;
}
.row {
display: flex;
align-items: center;
justify-content: center;
}
.screen {
background-image: url("https://www.denofgeek.com/wp-content/uploads/2016/03/cinema.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 250px;
width: 100%;
margin: 0px 0 5px 0;
transform: rotateX(-45deg);
box-shadow: 0 3px 10px rgba(255,255,255,0.7);
}
p.text {
margin: 40px 0;
}
p.text span {
color: #0081cb;
font-weight: 600;
box-sizing: content-box;
}
.credits a {
color: #fff;
} | 0.369315 | 0.088033 |
.logo {
animation: movedown 1s linear 1;
animation-delay: 1s;
visibility: hidden;
animation-fill-mode: forwards;
}
@keyframes movedown {
0% {
transform: translateY(-100px);
visibility:visible;
}
100% {
transform: translateY(0);
visibility:visible;
}
}
.navbar_child {
animation: movedown 1s linear 1;
animation-delay: 1.8s;
visibility: hidden;
animation-fill-mode: forwards;
}
@keyframes movedown {
0% {
transform: translateY(-100px);
visibility:visible;
}
100% {
transform: translateY(0);
visibility:visible;
}
}
.cart
{
animation: movedown 1s linear 1;
animation-delay: 2.5s;
visibility: hidden;
animation-fill-mode: forwards;
}
@keyframes movedown {
0% {
transform: translateY(-100px);
visibility:visible;
}
100% {
transform: translateY(0);
visibility:visible;
}
}
.head_left {
animation: moveright 1s linear 1;
animation-delay: 1s;
visibility: hidden;
animation-fill-mode: forwards;
}
@keyframes moveright {
0% {
transform: translateX(-100px);
visibility:visible;
}
100% {
transform: translateY(0);
visibility:visible;
}
}
.line_left {
animation: moveright 1s linear 1;
animation-delay: 2s;
visibility: hidden;
animation-fill-mode: forwards;
}
@keyframes moveright {
0% {
transform: translateX(-100px);
visibility:visible;
}
100% {
transform: translateX(0);
visibility:visible;
}
}
.arrows {
animation: moveright 1s linear 1;
animation-delay: 2.8s;
visibility: hidden;
animation-fill-mode: forwards;
}
@keyframes moveright {
0% {
transform: translateX(-100px);
visibility:visible;
}
100% {
transform: translateX(0);
visibility:visible;
}
}
.main_image {
animation: outside 1s linear 1;
animation-delay: 4s;
visibility: hidden;
animation-fill-mode: forwards;
}
@keyframes outside {
0% {
transform:scale(0.1);
visibility:visible;
}
100% {
transform: scale(1);
visibility:visible;
}
} | Sahil/style.css | .logo {
animation: movedown 1s linear 1;
animation-delay: 1s;
visibility: hidden;
animation-fill-mode: forwards;
}
@keyframes movedown {
0% {
transform: translateY(-100px);
visibility:visible;
}
100% {
transform: translateY(0);
visibility:visible;
}
}
.navbar_child {
animation: movedown 1s linear 1;
animation-delay: 1.8s;
visibility: hidden;
animation-fill-mode: forwards;
}
@keyframes movedown {
0% {
transform: translateY(-100px);
visibility:visible;
}
100% {
transform: translateY(0);
visibility:visible;
}
}
.cart
{
animation: movedown 1s linear 1;
animation-delay: 2.5s;
visibility: hidden;
animation-fill-mode: forwards;
}
@keyframes movedown {
0% {
transform: translateY(-100px);
visibility:visible;
}
100% {
transform: translateY(0);
visibility:visible;
}
}
.head_left {
animation: moveright 1s linear 1;
animation-delay: 1s;
visibility: hidden;
animation-fill-mode: forwards;
}
@keyframes moveright {
0% {
transform: translateX(-100px);
visibility:visible;
}
100% {
transform: translateY(0);
visibility:visible;
}
}
.line_left {
animation: moveright 1s linear 1;
animation-delay: 2s;
visibility: hidden;
animation-fill-mode: forwards;
}
@keyframes moveright {
0% {
transform: translateX(-100px);
visibility:visible;
}
100% {
transform: translateX(0);
visibility:visible;
}
}
.arrows {
animation: moveright 1s linear 1;
animation-delay: 2.8s;
visibility: hidden;
animation-fill-mode: forwards;
}
@keyframes moveright {
0% {
transform: translateX(-100px);
visibility:visible;
}
100% {
transform: translateX(0);
visibility:visible;
}
}
.main_image {
animation: outside 1s linear 1;
animation-delay: 4s;
visibility: hidden;
animation-fill-mode: forwards;
}
@keyframes outside {
0% {
transform:scale(0.1);
visibility:visible;
}
100% {
transform: scale(1);
visibility:visible;
}
} | 0.779364 | 0.3143 |
body {
padding: 0;
margin: 0;
font-weight: normal;
}
html {
font-family: Arial, Helvetica, sans-serif;
}
img {
max-height: 200px;
transition: transform 0.1s;
}
img:hover {
transform: scale(1.1);
}
#navbar {
background: white;
position: fixed;
width: 100%;
top: 0px;
z-index: 99999999;
transition: all .4s ease;
}
#nav-items {
background: none;
list-style-type: none;
display: flex;
justify-content: space-around;
align-items: center;
padding-left: 0;
}
.nav-links {
display: inline;
transition-property: all;
transition-duration: 0.1s;
}
.nav-links:hover {
text-decoration: underline;
}
a {
text-decoration: none;
color: white;
}
#navbar a {
color: #111;
}
#welcome {
background: #111;
color: white;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#welcome h2 {
font-size: 40px;
}
#welcome h3 {
font-family: "Lucida Console", Monaco, monospace;
overflow: hidden;
border-right: .15em solid white;
white-space: nowrap;
margin: 0 auto;
letter-spacing: .15em;
animation:
typing 1.25s steps(17, end),
blink-caret .5s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 190px}
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: rgb(255, 255, 255); }
}
#about {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 20px;
}
#projects {
padding-top: 20px;
padding-bottom: 20px;
text-align: center;
color: white;
background-color: #111;
}
#project-header{
font-size: 40px;
}
.project-tile {
margin-left: auto;
margin-right: auto;
width: 80vw;
height: 100vh;
padding-top: 30px;
}
.project-tile iframe {
height: 90%;
width: 100%;
z-index: 999;
background: white;
border: 0;
}
.project-tile h2 {
transition-property: all;
transition-duration: 0.1s;
color: whitesmoke;
}
.project-tile h2:hover {
text-decoration: underline;
}
#contact {
display: flex;
justify-content: center;
height: 80vh;
background: white;
padding-bottom: 0;
}
#contact iframe {
padding: 60px 0 0 0;
height: 100%;
width: 100%;
z-index: 999;
background: white;
border: 0;
} | style.css | body {
padding: 0;
margin: 0;
font-weight: normal;
}
html {
font-family: Arial, Helvetica, sans-serif;
}
img {
max-height: 200px;
transition: transform 0.1s;
}
img:hover {
transform: scale(1.1);
}
#navbar {
background: white;
position: fixed;
width: 100%;
top: 0px;
z-index: 99999999;
transition: all .4s ease;
}
#nav-items {
background: none;
list-style-type: none;
display: flex;
justify-content: space-around;
align-items: center;
padding-left: 0;
}
.nav-links {
display: inline;
transition-property: all;
transition-duration: 0.1s;
}
.nav-links:hover {
text-decoration: underline;
}
a {
text-decoration: none;
color: white;
}
#navbar a {
color: #111;
}
#welcome {
background: #111;
color: white;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#welcome h2 {
font-size: 40px;
}
#welcome h3 {
font-family: "Lucida Console", Monaco, monospace;
overflow: hidden;
border-right: .15em solid white;
white-space: nowrap;
margin: 0 auto;
letter-spacing: .15em;
animation:
typing 1.25s steps(17, end),
blink-caret .5s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 190px}
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: rgb(255, 255, 255); }
}
#about {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 20px;
}
#projects {
padding-top: 20px;
padding-bottom: 20px;
text-align: center;
color: white;
background-color: #111;
}
#project-header{
font-size: 40px;
}
.project-tile {
margin-left: auto;
margin-right: auto;
width: 80vw;
height: 100vh;
padding-top: 30px;
}
.project-tile iframe {
height: 90%;
width: 100%;
z-index: 999;
background: white;
border: 0;
}
.project-tile h2 {
transition-property: all;
transition-duration: 0.1s;
color: whitesmoke;
}
.project-tile h2:hover {
text-decoration: underline;
}
#contact {
display: flex;
justify-content: center;
height: 80vh;
background: white;
padding-bottom: 0;
}
#contact iframe {
padding: 60px 0 0 0;
height: 100%;
width: 100%;
z-index: 999;
background: white;
border: 0;
} | 0.487795 | 0.074736 |
@font-face {
font-family: '<NAME>';
src: url('../fonts/JennaSue.woff2') format('woff2'),
url('../fonts/JennaSue.woff') format('woff'),
url('../fonts/JennaSue.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');
:root {
--pink: #d69e9c;
--white: #fff;
--tan: #e8d8b4;
--yellow: #efcf8d;
--brown: #b7a598;
}
.christmas-list-page {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--tan);
display: flex;
justify-content: center;
font-size: 16px;
padding: 32px;
overflow-y: scroll;
font-family: 'Roboto', sans-serif;
}
.christmas-list-page a {
font-family: 'Roboto', sans-serif;
font-size: 16px;
}
.christmas-lists {
max-width: 900px;
z-index: 200;
position: relative;
background-color: var(--white);
height: fit-content;
padding: 32px 64px;
box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.12);
}
.christmas-lists h1 {
text-align: center;
}
.christmas-lists h2 {
margin: 8px 0;
}
.christmas-list-page h1,
.christmas-list-page h2,
.christmas-list-page h3,
.christmas-list-page h4 {
color: var(--pink);
font-family: 'J<NAME>', serif;
}
.list-item {
margin: 24px 0;
}
.list-item * {
margin: 4px 0;
}
.list-item__title {
font-weight: bold;
color: var(--brown);
}
.list-item__is-new {
color: var(--pink);
}
.christmas-list-page h1 {
font-size: 4em;
}
.christmas-list-page h2 {
font-size: 3em;
}
.christmas-list-image {
position: fixed;
width: 15vw;
top: 5vh;
right: 5vw;
transform: rotate(30deg);
z-index: 100;
}
.lists-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 128px;
}
@media screen and (max-width: 768px) {
.christmas-list-page {
padding: 16px;
}
.christmas-lists {
max-width: unset;
padding: 8px 24px;
}
.lists-container {
grid-template-columns: 1fr;
}
.christmas-list-image {
top: -2vh;
right: -5vw;
width: 30vw;
}
} | src/pages/christmas-list.css | @font-face {
font-family: '<NAME>';
src: url('../fonts/JennaSue.woff2') format('woff2'),
url('../fonts/JennaSue.woff') format('woff'),
url('../fonts/JennaSue.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');
:root {
--pink: #d69e9c;
--white: #fff;
--tan: #e8d8b4;
--yellow: #efcf8d;
--brown: #b7a598;
}
.christmas-list-page {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--tan);
display: flex;
justify-content: center;
font-size: 16px;
padding: 32px;
overflow-y: scroll;
font-family: 'Roboto', sans-serif;
}
.christmas-list-page a {
font-family: 'Roboto', sans-serif;
font-size: 16px;
}
.christmas-lists {
max-width: 900px;
z-index: 200;
position: relative;
background-color: var(--white);
height: fit-content;
padding: 32px 64px;
box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.12);
}
.christmas-lists h1 {
text-align: center;
}
.christmas-lists h2 {
margin: 8px 0;
}
.christmas-list-page h1,
.christmas-list-page h2,
.christmas-list-page h3,
.christmas-list-page h4 {
color: var(--pink);
font-family: 'J<NAME>', serif;
}
.list-item {
margin: 24px 0;
}
.list-item * {
margin: 4px 0;
}
.list-item__title {
font-weight: bold;
color: var(--brown);
}
.list-item__is-new {
color: var(--pink);
}
.christmas-list-page h1 {
font-size: 4em;
}
.christmas-list-page h2 {
font-size: 3em;
}
.christmas-list-image {
position: fixed;
width: 15vw;
top: 5vh;
right: 5vw;
transform: rotate(30deg);
z-index: 100;
}
.lists-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 128px;
}
@media screen and (max-width: 768px) {
.christmas-list-page {
padding: 16px;
}
.christmas-lists {
max-width: unset;
padding: 8px 24px;
}
.lists-container {
grid-template-columns: 1fr;
}
.christmas-list-image {
top: -2vh;
right: -5vw;
width: 30vw;
}
} | 0.427038 | 0.091544 |
/**********************//**********************//**********************//**********************/
@media (max-width: 321px) {
html {
background-position: initial;
}
h1 {
font-size: 18px;
}
h2 {
font-size: 16px;
}
.oc {
top: 150px;
}
.step,
.complete {
width: 85%;
padding: 30px 15px;
}
.step h1 {
font-size: 17px;
}
.step h3 {
padding: 0px 15px;
font-size: 14px;
}
.step label {
font-size: 13px;
}
.step input {
vertical-align: middle;
}
.step li span {
margin: 4px 0px;
vertical-align: middle;
}
ul {
padding: 8px 0px;
margin: 0px 15px;
font-size: 13px;
}
}
/**********************//**********************//**********************//**********************/
@media (min-width: 322px) and (max-width: 480px) {
h1 {
font-size: 20px;
}
h2 {
font-size: 17px;
}
.oc {
top: 150px;
}
.step,
.complete {
width: 70%;
padding: 30px;
}
ul {
padding: 0px;
}
}
/**********************//**********************//**********************//**********************/
@media (min-width: 481px) and (max-width: 560px) {
h1 {
font-size: 22px;
}
h2 {
font-size: 19px;
}
.oc {
top: 150px;
}
.step,
.complete {
width: 45%;
padding: 45px;
}
}
/**********************//**********************//**********************//**********************/
@media (min-width: 561px) and (max-width: 767px) {
h1 {
font-size: 24px;
}
h2 {
font-size: 22px;
}
.oc {
top: 150px;
}
.step,
.complete {
width: 40%;
}
}
/**********************//**********************//**********************//**********************/
@media (min-width: 768px) and (max-width: 1080px) {
.step,
.complete {
width: 35%;
}
} | css/altStyles.css |
/**********************//**********************//**********************//**********************/
@media (max-width: 321px) {
html {
background-position: initial;
}
h1 {
font-size: 18px;
}
h2 {
font-size: 16px;
}
.oc {
top: 150px;
}
.step,
.complete {
width: 85%;
padding: 30px 15px;
}
.step h1 {
font-size: 17px;
}
.step h3 {
padding: 0px 15px;
font-size: 14px;
}
.step label {
font-size: 13px;
}
.step input {
vertical-align: middle;
}
.step li span {
margin: 4px 0px;
vertical-align: middle;
}
ul {
padding: 8px 0px;
margin: 0px 15px;
font-size: 13px;
}
}
/**********************//**********************//**********************//**********************/
@media (min-width: 322px) and (max-width: 480px) {
h1 {
font-size: 20px;
}
h2 {
font-size: 17px;
}
.oc {
top: 150px;
}
.step,
.complete {
width: 70%;
padding: 30px;
}
ul {
padding: 0px;
}
}
/**********************//**********************//**********************//**********************/
@media (min-width: 481px) and (max-width: 560px) {
h1 {
font-size: 22px;
}
h2 {
font-size: 19px;
}
.oc {
top: 150px;
}
.step,
.complete {
width: 45%;
padding: 45px;
}
}
/**********************//**********************//**********************//**********************/
@media (min-width: 561px) and (max-width: 767px) {
h1 {
font-size: 24px;
}
h2 {
font-size: 22px;
}
.oc {
top: 150px;
}
.step,
.complete {
width: 40%;
}
}
/**********************//**********************//**********************//**********************/
@media (min-width: 768px) and (max-width: 1080px) {
.step,
.complete {
width: 35%;
}
} | 0.236428 | 0.095602 |
@font-face {
font-family: 'font';
src: url("/Fonts/Nunito-Regular.ttf"); }
html, body, div, span, applet, object, iframe,
h1, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline; }
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block; }
body {
line-height: 1; }
ol, ul {
list-style: none; }
blockquote, q {
quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none; }
table {
border-collapse: collapse;
border-spacing: 0; }
@keyframes pulse {
0% {
transform: scale(0.95);
box-shadow: 0 0 0 0 #000000b3;
transform: rotate(45deg); }
70% {
transform: scale(1);
box-shadow: 0 0 0 10px #00000000;
transform: rotate(45deg); }
100% {
transform: scale(0.95);
box-shadow: 0 0 0 0 #00000000;
transform: rotate(45deg); } }
@keyframes fadeOut {
from {
transform: rotate(-45deg);
opacity: 1; }
to {
transform: rotate(-45deg);
opacity: 0; } }
@keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3); }
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1); }
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9); }
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03); }
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97); }
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1); } }
.Button {
font-size: 16px;
font-family: font;
background-color: #fff;
display: inline-block;
height: 64px;
width: 64px;
border: 1px solid #252525;
transform: rotate(45deg);
cursor: pointer;
outline: 0;
padding: 0px;
margin: 12px;
box-shadow: 0 0 0 0 black;
text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
1px 1px 0 #fff; }
.Button:hover {
display: inline-block;
background-color: #f5f5f5; }
.Button:active {
background: #dfdfdf;
box-shadow: 0 1px 2px 0 #dfdfdf, .3, 0 3px 6px 2px #dfdfdf, .15; }
.Button:focus {
/* &::after {
content: "";
display: block;
width: 10px;
height: 10px;
background-color: #252525;
border-radius: 50%;
position: absolute;
z-index: 100;
top: -25px;
right: 30px;
}
*/
border: 2px solid #252525; }
.Button-Text {
text-align: center;
font-family: font;
transform: rotate(-45deg);
opacity: 1; }
.Button-Text::selection {
background: #252525;
color: #fff;
text-shadow: none;
box-shadow: 0; }
.Button-Outer {
display: inline-block;
height: 89px;
width: 89px;
top: 0px;
margin: 16px; } | Diamond-Main.css | @font-face {
font-family: 'font';
src: url("/Fonts/Nunito-Regular.ttf"); }
html, body, div, span, applet, object, iframe,
h1, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline; }
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block; }
body {
line-height: 1; }
ol, ul {
list-style: none; }
blockquote, q {
quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none; }
table {
border-collapse: collapse;
border-spacing: 0; }
@keyframes pulse {
0% {
transform: scale(0.95);
box-shadow: 0 0 0 0 #000000b3;
transform: rotate(45deg); }
70% {
transform: scale(1);
box-shadow: 0 0 0 10px #00000000;
transform: rotate(45deg); }
100% {
transform: scale(0.95);
box-shadow: 0 0 0 0 #00000000;
transform: rotate(45deg); } }
@keyframes fadeOut {
from {
transform: rotate(-45deg);
opacity: 1; }
to {
transform: rotate(-45deg);
opacity: 0; } }
@keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3); }
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1); }
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9); }
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03); }
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97); }
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1); } }
.Button {
font-size: 16px;
font-family: font;
background-color: #fff;
display: inline-block;
height: 64px;
width: 64px;
border: 1px solid #252525;
transform: rotate(45deg);
cursor: pointer;
outline: 0;
padding: 0px;
margin: 12px;
box-shadow: 0 0 0 0 black;
text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
1px 1px 0 #fff; }
.Button:hover {
display: inline-block;
background-color: #f5f5f5; }
.Button:active {
background: #dfdfdf;
box-shadow: 0 1px 2px 0 #dfdfdf, .3, 0 3px 6px 2px #dfdfdf, .15; }
.Button:focus {
/* &::after {
content: "";
display: block;
width: 10px;
height: 10px;
background-color: #252525;
border-radius: 50%;
position: absolute;
z-index: 100;
top: -25px;
right: 30px;
}
*/
border: 2px solid #252525; }
.Button-Text {
text-align: center;
font-family: font;
transform: rotate(-45deg);
opacity: 1; }
.Button-Text::selection {
background: #252525;
color: #fff;
text-shadow: none;
box-shadow: 0; }
.Button-Outer {
display: inline-block;
height: 89px;
width: 89px;
top: 0px;
margin: 16px; } | 0.373419 | 0.146301 |
.foboto {
font-family: 'Roboto', sans-serif;
}
.flex {
display: flex;
}
.borange {
background-color: #d35649;
}
.forange {
color: #d35649;
}
.bgrey {
background-color: rgba(105, 105, 105, 0.688);
}
.fgrey {
color: #333;
}
.bblue {
background-color: rgb(58, 155, 214);
}
.fblue {
color: rgb(58, 155, 214);
}
.fgrey-light {
color: rgba(105, 105, 105, 0.888);
}
.filter {
filter: invert(15%) sepia(8%) saturate(16%) hue-rotate(315deg) brightness(99%) contrast(85%);
}
.header-icon {
color: white;
font-size: 18px;
}
.btn-nostyle {
border: none;
}
.lnostyle {
text-decoration: none;
}
.how-icon {
width: 60px;
height: 60px;
display: block;
margin: auto;
}
.logo {
height: 50px;
}
.logo-txt {
font-size: 30px;
font-weight: 800;
margin-top: 15px;
}
.bg-black {
background-color: black;
}
/* header */
.header-small {
flex-direction: column;
}
.logo-div {
margin: auto;
}
.header-list {
padding: 10px 25px;
margin: auto;
}
.invinsible {
font-size: 5px;
color: #d35649;
}
/* Main */
/* Search section */
.search-section {
background-image: url("https://live.staticflickr.com/57/220270916_d546e6fd11_b.jpg");
background-position-x: 55%;
height: 650px;
background-size: cover;
}
.main-form {
width: 90%;
margin: auto;
}
h4 {
font-size: 20px;
}
input {
height: 35px;
width: 99%;
}
label {
height: 35px;
font-size: 20px;
width: 99%;
text-align: center;
padding-top: 5px;
background-color: #d35649;
}
.search-form {
margin: auto;
padding: 20px 10px 20px 10px;
border-radius: 10px;
}
.headline {
font-size: 22px;
}
.how-div {
position: relative;
margin: 45% 0 0 20%;
}
.how {
border-radius: 5px;
font-size: 25px;
color: black;
padding-bottom: 15px;
position: absolute;
z-index: 5;
top: 0;
left: 0;
}
/* How it works */
.how-headline {
text-align: center;
font-size: 24px;
}
/* Circle images section */
.find-btn {
display: block;
margin: auto;
width: 50%;
}
.round-img {
height: 200px;
width: 200px;
object-fit: cover;
display: block;
margin: auto;
}
.line-span {
font-size: 19px;
font-weight: 900;
line-height: 22px;
text-align: center;
}
.pline {
text-align: center;
}
/* footer */
.footer-logo {
justify-content: space-around;
}
.last-line {
background-color: #333;
justify-content: space-between;
}
.ln {
line-height: 22px;
}
.fnav {
margin: auto;
padding-top: 10px;
}
.flist-i {
margin: 0 10px 0 10px;
}
.footer-link {
font-size: 14px;
color: white;
}
a.footer-link:hover,
a.footer-link:active {
color: rgba(105, 105, 105, 0.688);
}
.last-list-i {
margin: 0 10px;
}
.last-icon {
color: white;
}
.last-icon:hover,
.last-icon:active {
color: black;
}
.footer-lg-p > a:hover {
color: #333;
font-weight: bold;
}
.footer-lg {
display: none;
}
/* Medium screen */
@media (min-width: 768px) {
/* Header */
.header-small {
flex-direction: row;
}
.header-icon {
margin: 10px 20px 0 20px;
}
/* Main */
/* Search section */
.main-form {
width: 70%;
margin: auto;
}
legend {
font-size: 25px;
}
.main-link {
color: white;
text-decoration: none;
}
.main-link:hover {
font-weight: bolder;
color: white;
}
input {
height: 35px;
width: 70%;
}
label {
height: 35px;
font-size: 20px;
width: 29%;
text-align: center;
padding-top: 5px;
margin-left: -4px;
background-color: rgb(58, 155, 214);
}
.search-form {
margin: auto;
padding: 20px 10px 20px 10px;
border-radius: 10px;
}
.lbl-btn {
background-color: rgb(58, 155, 214);
}
.headline {
font-size: 30px;
}
.how-div {
position: relative;
margin: 30% 0 0 40%;
}
/* Circle images section */
.line-txt-div {
width: 50%;
margin-left: 40px;
}
.find-btn {
margin: 0;
}
.line-span {
font-size: 19px;
font-weight: 900;
line-height: 22px;
text-align: left;
}
.pline {
text-align: left;
}
.round-img {
margin-right: 40px;
}
/* footer */
.nav-bar {
position: relative;
height: 130px;
}
.footer-nav-div {
display: flex;
justify-content: space-around;
}
.footer-circle {
height: 93px;
width: 93px;
border: 3px solid rgba(105, 105, 105, 0.888);
border-radius: 50%;
position: absolute;
top: 15px;
left: 50%;
margin-left: -45px;
background-color: black;
z-index: 1;
}
.footer-logo {
position: absolute;
left: 50%;
top: 35px;
margin-left: -25px;
z-index: 2;
}
.border-line {
border: 2px solid #d3d3d3;
margin-right: 30px;
margin-left: 30px;
}
.flist-i {
margin: 0 8px 0 8px;
}
.fnav {
margin: 0;
padding: 0;
}
.last-list-i {
margin: 0 10px;
}
}
@media (min-width: 1024px) {
.header-icon {
font-size: 18px;
}
.invinsible {
font-size: 18px;
color: white;
}
.search-section {
background-image: url("https://live.staticflickr.com/57/220270916_d546e6fd11_b.jpg");
background-position-y: 40%;
height: 650px;
background-size: cover;
}
.lbl-btn {
background-color: #d35649;
}
.search-lbl {
background-color: #d35649;
}
.how-div {
position: relative;
margin: 20px 0 0 43%;
}
.how-icon {
padding: 20px;
}
/* Circle images section */
.find-btn {
display: block;
margin: 0;
width: 50%;
}
.round-img {
height: 300px;
width: 300px;
object-fit: cover;
display: block;
margin: 30px 50px 30px 0;
}
.line-span {
font-size: 30px;
font-weight: 900;
line-height: 40px;
}
.pline {
text-align: left;
font-size: 25px;
}
.line-txt-div {
width: 40%;
margin-left: 30px;
margin-top: 30%;
}
/* Footer */
.footer-lg {
display: flex;
justify-content: space-evenly;
padding-bottom: 20px;
}
.footer-lg-card {
width: 25%;
}
.subscribe-lbl {
width: 30%;
font-size: 15px;
background-color: #333;
padding-top: 10px;
padding-bottom: 15px;
}
.ln {
margin-top: 12px;
}
}
/* Search page style */
/* Mobile */
.filters-section {
background-color: #d3d3d3;
padding: 5%;
}
.filter-h {
color: #333;
font-size: 22px;
font-weight: bolder;
text-align: center;
line-height: 25px;
}
.invisible-option {
font-size: 2px;
color: white;
}
.filter-lbl {
height: 30px;
font-size: 20px;
text-align: left;
padding-bottom: 5px;
background-color: #d3d3d3;
}
.filters-inp,
.filter-slct {
height: 30px;
width: 75%;
border-radius: 5px;
background-color: white;
border: 2px solid #333;
}
fieldset {
margin-top: 10px;
}
.p2-searc-btn {
height: 30px;
width: 40%;
background-color: rgb(58, 155, 214);
border: 1px solid rgb(58, 155, 214);
border-radius: 5px;
}
.fake-btn {
height: 30px;
width: 40%;
background-color: rgb(58, 155, 214);
border: 1px solid rgb(58, 155, 214);
border-radius: 5px;
position: relative;
}
.fake-btn-lbl {
position: absolute;
top: 5px;
left: 35%;
}
.reset-btn {
height: 30px;
width: 60%;
background-color: #d35649;
border: 1px solid #d35649;
border-radius: 5px;
}
.results-card {
width: 100%;
background-color: #d35649;
position: relative;
}
.bg-svg {
display: block;
background-color: #d35649;
}
.bg-img {
padding: 5%;
}
.results-absolute {
position: absolute;
bottom: 10%;
z-index: 2;
width: 96%;
left: 50%;
margin-left: -48%;
}
.results-h {
font-size: 20px;
width: 80%;
text-align: center;
margin: auto;
color: white;
padding-bottom: 5%;
}
.result-img {
display: block;
margin: auto;
width: 80%;
height: 70%;
}
.result-link {
text-decoration: none;
}
.result-link:hover {
font-size: 22px;
font-weight: bolder;
}
@media (min-width: 768px) {
.filter-h {
color: #333;
font-size: 30px;
font-weight: bolder;
line-height: 40px;
}
.filter-lbl {
height: 40px;
font-weight: bolder;
text-align: center;
width: 100%;
}
.filters-inp,
.filter-slct {
height: 40px;
display: block;
margin: auto;
}
fieldset {
margin-top: 3%;
}
.p2-searc-btn {
height: 40px;
width: 40%;
display: block;
margin: auto;
}
.fake-btn {
height: 40px;
width: 40%;
display: block;
margin: auto;
}
.fake-btn-lbl {
left: 40%;
top: 8px;
}
.reset-btn {
height: 40px;
width: 60%;
display: block;
margin: auto;
}
.results-h {
font-size: 40px;
width: 80%;
text-align: center;
margin: auto;
color: white;
padding-bottom: 50px;
}
.results-absolute {
position: absolute;
bottom: 15%;
z-index: 2;
width: 96%;
left: 50%;
margin-left: -48%;
}
}
@media (min-width: 1024px) {
.filters-section {
padding: 2%;
}
.card-result-div {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.filter-h {
color: #333;
font-size: 33px;
font-weight: 700;
margin-top: 4%;
}
.filters-form {
display: flex;
justify-content: space-evenly;
align-items: flex-end;
width: 100%;
margin: 10px 5px;
}
fieldset {
margin-right: 10px;
padding-bottom: 5%;
width: 14%;
}
.filter-lbl {
height: 30px;
font-size: 15px;
font-weight: 500;
padding-bottom: 5px;
}
.filters-inp,
.filter-slct {
height: 30px;
width: 100%;
}
.fake-btn {
height: 30px;
width: 100%;
}
.fake-btn-lbl {
left: 30%;
top: 20%;
margin: 0;
padding: 0;
height: 13px;
}
.reset-btn {
height: 30px;
width: 100%;
}
.results-card {
width: 30%;
}
.results-h {
font-size: 20px;
width: 80%;
text-align: center;
margin: 0 auto;
color: white;
padding-bottom: 2%;
}
}
/* Page 3 style */
/* Mobile version */
.rectangle-section {
border: 2px solid #333;
padding: 5% 3%;
}
.hotel-logo {
width: 40%;
fill: #333;
display: block;
margin: auto;
padding-bottom: 2%;
}
.rectangle {
border: 2px solid #d3d3d3;
}
.rectangle-p {
font-size: 20px;
line-height: 40px;
color: #333;
padding: 5px 15px;
text-align: center;
}
.rectangle-span {
font-size: 20px;
line-height: 40px;
color: rgb(58, 155, 214);
}
.book-btn {
background-color: rgb(58, 155, 214);
border: 1px solid rgb(58, 155, 214);
border-radius: 5px;
height: 40px;
width: 40%;
display: block;
margin: auto;
}
.p3-div {
margin: 2% 0;
}
.p3 {
line-height: 24px;
}
.view-more-div {
width: 100%;
background-color: #d3d3d3;
}
.view-more {
text-decoration: none;
font-size: 20px;
line-height: 40px;
color: #333;
padding: 15px;
text-align: center;
}
.view-more:hover {
font-weight: bolder;
color: #333;
}
.map-container {
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
height: 0;
}
.map-container iframe {
left: 0;
top: 0;
height: 100%;
width: 100%;
position: absolute;
border: 0;
}
.map-h {
font-size: 30px;
line-height: 40px;
text-align: center;
margin: 3% 0;
}
@media (min-width: 768px) {
.rectangles-div {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.rectangle {
width: 50%;
}
.icons3 {
display: flex;
justify-content: flex-end;
margin-top: 3%;
}
.marg {
margin: 2%;
}
.z-depth-1-half {
height: 500px;
}
} | css/main.css | .foboto {
font-family: 'Roboto', sans-serif;
}
.flex {
display: flex;
}
.borange {
background-color: #d35649;
}
.forange {
color: #d35649;
}
.bgrey {
background-color: rgba(105, 105, 105, 0.688);
}
.fgrey {
color: #333;
}
.bblue {
background-color: rgb(58, 155, 214);
}
.fblue {
color: rgb(58, 155, 214);
}
.fgrey-light {
color: rgba(105, 105, 105, 0.888);
}
.filter {
filter: invert(15%) sepia(8%) saturate(16%) hue-rotate(315deg) brightness(99%) contrast(85%);
}
.header-icon {
color: white;
font-size: 18px;
}
.btn-nostyle {
border: none;
}
.lnostyle {
text-decoration: none;
}
.how-icon {
width: 60px;
height: 60px;
display: block;
margin: auto;
}
.logo {
height: 50px;
}
.logo-txt {
font-size: 30px;
font-weight: 800;
margin-top: 15px;
}
.bg-black {
background-color: black;
}
/* header */
.header-small {
flex-direction: column;
}
.logo-div {
margin: auto;
}
.header-list {
padding: 10px 25px;
margin: auto;
}
.invinsible {
font-size: 5px;
color: #d35649;
}
/* Main */
/* Search section */
.search-section {
background-image: url("https://live.staticflickr.com/57/220270916_d546e6fd11_b.jpg");
background-position-x: 55%;
height: 650px;
background-size: cover;
}
.main-form {
width: 90%;
margin: auto;
}
h4 {
font-size: 20px;
}
input {
height: 35px;
width: 99%;
}
label {
height: 35px;
font-size: 20px;
width: 99%;
text-align: center;
padding-top: 5px;
background-color: #d35649;
}
.search-form {
margin: auto;
padding: 20px 10px 20px 10px;
border-radius: 10px;
}
.headline {
font-size: 22px;
}
.how-div {
position: relative;
margin: 45% 0 0 20%;
}
.how {
border-radius: 5px;
font-size: 25px;
color: black;
padding-bottom: 15px;
position: absolute;
z-index: 5;
top: 0;
left: 0;
}
/* How it works */
.how-headline {
text-align: center;
font-size: 24px;
}
/* Circle images section */
.find-btn {
display: block;
margin: auto;
width: 50%;
}
.round-img {
height: 200px;
width: 200px;
object-fit: cover;
display: block;
margin: auto;
}
.line-span {
font-size: 19px;
font-weight: 900;
line-height: 22px;
text-align: center;
}
.pline {
text-align: center;
}
/* footer */
.footer-logo {
justify-content: space-around;
}
.last-line {
background-color: #333;
justify-content: space-between;
}
.ln {
line-height: 22px;
}
.fnav {
margin: auto;
padding-top: 10px;
}
.flist-i {
margin: 0 10px 0 10px;
}
.footer-link {
font-size: 14px;
color: white;
}
a.footer-link:hover,
a.footer-link:active {
color: rgba(105, 105, 105, 0.688);
}
.last-list-i {
margin: 0 10px;
}
.last-icon {
color: white;
}
.last-icon:hover,
.last-icon:active {
color: black;
}
.footer-lg-p > a:hover {
color: #333;
font-weight: bold;
}
.footer-lg {
display: none;
}
/* Medium screen */
@media (min-width: 768px) {
/* Header */
.header-small {
flex-direction: row;
}
.header-icon {
margin: 10px 20px 0 20px;
}
/* Main */
/* Search section */
.main-form {
width: 70%;
margin: auto;
}
legend {
font-size: 25px;
}
.main-link {
color: white;
text-decoration: none;
}
.main-link:hover {
font-weight: bolder;
color: white;
}
input {
height: 35px;
width: 70%;
}
label {
height: 35px;
font-size: 20px;
width: 29%;
text-align: center;
padding-top: 5px;
margin-left: -4px;
background-color: rgb(58, 155, 214);
}
.search-form {
margin: auto;
padding: 20px 10px 20px 10px;
border-radius: 10px;
}
.lbl-btn {
background-color: rgb(58, 155, 214);
}
.headline {
font-size: 30px;
}
.how-div {
position: relative;
margin: 30% 0 0 40%;
}
/* Circle images section */
.line-txt-div {
width: 50%;
margin-left: 40px;
}
.find-btn {
margin: 0;
}
.line-span {
font-size: 19px;
font-weight: 900;
line-height: 22px;
text-align: left;
}
.pline {
text-align: left;
}
.round-img {
margin-right: 40px;
}
/* footer */
.nav-bar {
position: relative;
height: 130px;
}
.footer-nav-div {
display: flex;
justify-content: space-around;
}
.footer-circle {
height: 93px;
width: 93px;
border: 3px solid rgba(105, 105, 105, 0.888);
border-radius: 50%;
position: absolute;
top: 15px;
left: 50%;
margin-left: -45px;
background-color: black;
z-index: 1;
}
.footer-logo {
position: absolute;
left: 50%;
top: 35px;
margin-left: -25px;
z-index: 2;
}
.border-line {
border: 2px solid #d3d3d3;
margin-right: 30px;
margin-left: 30px;
}
.flist-i {
margin: 0 8px 0 8px;
}
.fnav {
margin: 0;
padding: 0;
}
.last-list-i {
margin: 0 10px;
}
}
@media (min-width: 1024px) {
.header-icon {
font-size: 18px;
}
.invinsible {
font-size: 18px;
color: white;
}
.search-section {
background-image: url("https://live.staticflickr.com/57/220270916_d546e6fd11_b.jpg");
background-position-y: 40%;
height: 650px;
background-size: cover;
}
.lbl-btn {
background-color: #d35649;
}
.search-lbl {
background-color: #d35649;
}
.how-div {
position: relative;
margin: 20px 0 0 43%;
}
.how-icon {
padding: 20px;
}
/* Circle images section */
.find-btn {
display: block;
margin: 0;
width: 50%;
}
.round-img {
height: 300px;
width: 300px;
object-fit: cover;
display: block;
margin: 30px 50px 30px 0;
}
.line-span {
font-size: 30px;
font-weight: 900;
line-height: 40px;
}
.pline {
text-align: left;
font-size: 25px;
}
.line-txt-div {
width: 40%;
margin-left: 30px;
margin-top: 30%;
}
/* Footer */
.footer-lg {
display: flex;
justify-content: space-evenly;
padding-bottom: 20px;
}
.footer-lg-card {
width: 25%;
}
.subscribe-lbl {
width: 30%;
font-size: 15px;
background-color: #333;
padding-top: 10px;
padding-bottom: 15px;
}
.ln {
margin-top: 12px;
}
}
/* Search page style */
/* Mobile */
.filters-section {
background-color: #d3d3d3;
padding: 5%;
}
.filter-h {
color: #333;
font-size: 22px;
font-weight: bolder;
text-align: center;
line-height: 25px;
}
.invisible-option {
font-size: 2px;
color: white;
}
.filter-lbl {
height: 30px;
font-size: 20px;
text-align: left;
padding-bottom: 5px;
background-color: #d3d3d3;
}
.filters-inp,
.filter-slct {
height: 30px;
width: 75%;
border-radius: 5px;
background-color: white;
border: 2px solid #333;
}
fieldset {
margin-top: 10px;
}
.p2-searc-btn {
height: 30px;
width: 40%;
background-color: rgb(58, 155, 214);
border: 1px solid rgb(58, 155, 214);
border-radius: 5px;
}
.fake-btn {
height: 30px;
width: 40%;
background-color: rgb(58, 155, 214);
border: 1px solid rgb(58, 155, 214);
border-radius: 5px;
position: relative;
}
.fake-btn-lbl {
position: absolute;
top: 5px;
left: 35%;
}
.reset-btn {
height: 30px;
width: 60%;
background-color: #d35649;
border: 1px solid #d35649;
border-radius: 5px;
}
.results-card {
width: 100%;
background-color: #d35649;
position: relative;
}
.bg-svg {
display: block;
background-color: #d35649;
}
.bg-img {
padding: 5%;
}
.results-absolute {
position: absolute;
bottom: 10%;
z-index: 2;
width: 96%;
left: 50%;
margin-left: -48%;
}
.results-h {
font-size: 20px;
width: 80%;
text-align: center;
margin: auto;
color: white;
padding-bottom: 5%;
}
.result-img {
display: block;
margin: auto;
width: 80%;
height: 70%;
}
.result-link {
text-decoration: none;
}
.result-link:hover {
font-size: 22px;
font-weight: bolder;
}
@media (min-width: 768px) {
.filter-h {
color: #333;
font-size: 30px;
font-weight: bolder;
line-height: 40px;
}
.filter-lbl {
height: 40px;
font-weight: bolder;
text-align: center;
width: 100%;
}
.filters-inp,
.filter-slct {
height: 40px;
display: block;
margin: auto;
}
fieldset {
margin-top: 3%;
}
.p2-searc-btn {
height: 40px;
width: 40%;
display: block;
margin: auto;
}
.fake-btn {
height: 40px;
width: 40%;
display: block;
margin: auto;
}
.fake-btn-lbl {
left: 40%;
top: 8px;
}
.reset-btn {
height: 40px;
width: 60%;
display: block;
margin: auto;
}
.results-h {
font-size: 40px;
width: 80%;
text-align: center;
margin: auto;
color: white;
padding-bottom: 50px;
}
.results-absolute {
position: absolute;
bottom: 15%;
z-index: 2;
width: 96%;
left: 50%;
margin-left: -48%;
}
}
@media (min-width: 1024px) {
.filters-section {
padding: 2%;
}
.card-result-div {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.filter-h {
color: #333;
font-size: 33px;
font-weight: 700;
margin-top: 4%;
}
.filters-form {
display: flex;
justify-content: space-evenly;
align-items: flex-end;
width: 100%;
margin: 10px 5px;
}
fieldset {
margin-right: 10px;
padding-bottom: 5%;
width: 14%;
}
.filter-lbl {
height: 30px;
font-size: 15px;
font-weight: 500;
padding-bottom: 5px;
}
.filters-inp,
.filter-slct {
height: 30px;
width: 100%;
}
.fake-btn {
height: 30px;
width: 100%;
}
.fake-btn-lbl {
left: 30%;
top: 20%;
margin: 0;
padding: 0;
height: 13px;
}
.reset-btn {
height: 30px;
width: 100%;
}
.results-card {
width: 30%;
}
.results-h {
font-size: 20px;
width: 80%;
text-align: center;
margin: 0 auto;
color: white;
padding-bottom: 2%;
}
}
/* Page 3 style */
/* Mobile version */
.rectangle-section {
border: 2px solid #333;
padding: 5% 3%;
}
.hotel-logo {
width: 40%;
fill: #333;
display: block;
margin: auto;
padding-bottom: 2%;
}
.rectangle {
border: 2px solid #d3d3d3;
}
.rectangle-p {
font-size: 20px;
line-height: 40px;
color: #333;
padding: 5px 15px;
text-align: center;
}
.rectangle-span {
font-size: 20px;
line-height: 40px;
color: rgb(58, 155, 214);
}
.book-btn {
background-color: rgb(58, 155, 214);
border: 1px solid rgb(58, 155, 214);
border-radius: 5px;
height: 40px;
width: 40%;
display: block;
margin: auto;
}
.p3-div {
margin: 2% 0;
}
.p3 {
line-height: 24px;
}
.view-more-div {
width: 100%;
background-color: #d3d3d3;
}
.view-more {
text-decoration: none;
font-size: 20px;
line-height: 40px;
color: #333;
padding: 15px;
text-align: center;
}
.view-more:hover {
font-weight: bolder;
color: #333;
}
.map-container {
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
height: 0;
}
.map-container iframe {
left: 0;
top: 0;
height: 100%;
width: 100%;
position: absolute;
border: 0;
}
.map-h {
font-size: 30px;
line-height: 40px;
text-align: center;
margin: 3% 0;
}
@media (min-width: 768px) {
.rectangles-div {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.rectangle {
width: 50%;
}
.icons3 {
display: flex;
justify-content: flex-end;
margin-top: 3%;
}
.marg {
margin: 2%;
}
.z-depth-1-half {
height: 500px;
}
} | 0.505371 | 0.132515 |
input, textarea {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
content {
left: 61px;
top: 0;
bottom: 0;
position: fixed;
z-index: 80;
}
.icon-menu {
background-image: url(/images/menu.png);
width: 14px;
height: 14px;
padding: 11px;
background-origin: content-box;
background-size: 100%;
background-repeat: no-repeat;
}
.menu {
height: 100%;
width: 61px;
position: fixed;
z-index: 100;
top: 0;
}
.item-menu.icon-menu {
background-image: url(/images/menu.png);
margin: 11px 7px;
cursor: pointer;
}
.icon-client {
background-image: url(/images/clients.png);
}
.icon-company {
background-image: url(/images/company.png);
}
.icon-finance {
background-image: url(/images/finance.png);
}
.item-menu {
width: 19px;
height: 19px;
padding: 14px;
margin: 3px 7px;
background-origin: content-box;
background-size: 100%;
background-repeat: no-repeat;
border-radius: 50%;
float: left;
}
.item-menu:hover {
background-color: rgba(0, 0, 0, 0.25);
}
header {
position: fixed;
z-index: 30;
top: 0;
left: 0;
right: 0;
height: 70px;
}
.panel-list {
width: 400px;
background-color: white;
border-radius: 4px 4px 0 0;
top: 70px;
bottom: 0;
position: absolute;
overflow: hidden;
}
.panels-content {
width: 400px;
top: 70px;
bottom: 0;
left: 425px;
position: absolute;
overflow-y: overlay;
border-radius: 4px 4px 0 0;
}
.search-field {
width: 100%;
padding: 24px 100px 20px 60px;
font-size: 17px;
height: 60px;
border: 0;
border-radius: 4px;
background-color: transparent;
outline: none;
transition: .3s;
z-index: 50;
position: relative;
}
.search-field:focus {
background: #fffffff5;
box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.12);
}
.list {
user-select: none;
display: table;
padding: 10px 0 30px 0;
list-style-type: none;
margin: 0;
width: 100%;
background-color: white;
position: relative;
z-index: 25;
overflow: hidden;
}
.item-list {
width: 100%;
min-height: 40px;
box-sizing: border-box;
float: left;
cursor: pointer;
transition: .3s;
padding: 12px 25px;
}
.avatar-listt {
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 15px;
float: left;
}
div.left-content {
float: left;
height: 40px;
position: relative;
}
.name-content {
font-size: 14px;
color: #020202;
width: 220px;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
white-space: nowrap;
margin: 2px 0;
}
.desc-content {
font-size: 12px;
*color: #545454;
color: #929292;
margin: 1px 0;
display: table;
}
.right-content {
float: right;
}
.debt {
margin: 10.5px 0 10.5px 0;
display: table;
}
.container-list {
box-sizing: border-box;
position: absolute;
top: 60px;
bottom: 0;
left: 0;
right: 0;
overflow-y: overlay;
z-index: 10;
}
img.search-icon {
width: 23px;
height: 23px;
margin: 18px 20px;
opacity: 0.4;
float: left;
position: absolute;
z-index: 60;
}
.panel-content {
width: 400px;
background-color: white;
border-radius: 4px;
margin-bottom: 20px;
display: table;
position: relative;
}
.panel-logo {
float: left;
height: 32px;
margin: 19px 70px;
}
a.logo {
width: 32px;
height: 32px;
margin: auto;
transition: 0.4s cubic-bezier(0, 0, 0, 1);
float: left;
}
a.logo:hover {
-ms-transform: scale(1.5);
transform: scale(1.5);
}
.logo>img {
width: 100%;
}
.info-logo {
float: left;
margin-left: 10px;
}
.biz-logo {
color: #99c9f1;
font-size: 15px;
font-weight: bold;
user-select: none;
}
.company-logo {
color: white;
width: 100%;
display: table;
}
.btn-show-list {
position: relative;
}
.name-company {
background-size: 8px 6px;
background-repeat: no-repeat;
background-image: url(/images/arrow-bottom.png);
padding-right: 15px;
background-position: right center;
font-size: 14px;
cursor: pointer;
}
.panel-show {
position: absolute;
background-color: white;
top: 10px;
left: 10px;
font-size: 14px;
padding: 10px 0;
border-radius: 7px;
display: none;
box-shadow: 0 1px 8px -2px rgba(0, 0, 0, 0.5)!important;
box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.6);
z-index: 999;
user-select: none;
min-width: 190px;
max-height: 60vh;
overflow-y: overlay;
}
.left-side-elem:hover>.panel-show, .btn-show-list:hover>.panel-show {
display: grid!important;
}
.panel-show>* {
color: #494949;
padding: 10px 20px;
float: left;
cursor: pointer;
}
.panel-account {
height: 36px;
float: right;
margin: 17px;
}
.account-avatar {
width: 36px;
height: 36px;
border-radius: 50%;
background-color: white;
}
.panel-account>* {
float: left;
}
.account-name {
padding: 10px 15px;
color: white;
font-size: 14px;
}
.indecators {
margin: 17px 10px;
user-select: none;
}
.indecator {
float: left;
margin: 0 10px;
}
.interact:hover {
opacity: .8;
}
.interact.active {
opacity: 1;
cursor: default;
}
.blue-color {
color: #3880ff;
}
.interact {
cursor: pointer;
opacity: .5;
}
.loading {
background-color: white;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 20;
border-radius: 4px 4px 0 0;
}
.loading>img {
width: 60px;
position: absolute;
top: 90px;
right: 0;
/* bottom: 0; */
left: 0;
margin: auto;
user-select: none;
}
.panel-footer {
width: 100%;
float: left;
background: whitesmoke;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 0 0 4px 4px;
color: #464646;
user-select: none;
cursor: default;
display: grid;
min-height: 73px;
}
.loading>div {
position: absolute;
top: 35px;
right: 0;
left: 0;
margin: auto;
text-transform: uppercase;
font-size: 11px;
font-weight: bold;
user-select: none;
display: table;
color: #a3a3a3;
width: 100%;
text-align: center;
}
.ava {
width: 50px;
height: 50px;
border-radius: 50%;
float: left;
margin-right: 10px;
}
.item-list:hover {
-webkit-transform: translateX(2px);
-ms-transform: translateX(2px);
transform: translateX(2px);
}
.panel-info {
*padding: 23px 20px;
padding: 23px 20px 23px 0px;
display: grid;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.name-panel {
color: #444444;
font-size: 22px;
font-weight: 500;
margin: 2px 0;
float: left;
padding: 0;
width: 100%;
}
.additional-info {
font-size: 13px;
color: rgb(68, 68, 68);
float: left;
width: 100%;
margin: 2px 0;
}
.panel-panel {
min-height: 73px;
background: whitesmoke;
border-radius: 0 0 4px 4px;
width: 100%;
display: grid;
position: relative;
}
.btn-add-panel {
width: 15px;
height: 15px;
padding: 12px;
border-radius: 50%;
background: #3880ff;
color: white;
box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.3);
opacity: .5;
cursor: pointer;
transition: .3s;
float: right;
}
.btn-add-panel:hover {
opacity: 1;
}
.panel-header {
padding: 20px 20px 16px 20px;
user-select: none;
display: table;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.title-panel {
font-size: 12px;
text-transform: uppercase;
font-weight: bold;
color: #808080;
padding: 0;
float: left;
}
div.show-panel {
color: #3880ff;
float: right;
padding: 0;
}
.show-panel:hover {
opacity: 1;
}
.list-panel {
padding: 0;
margin: 0 0 20px 0;
}
.btn-show-panel {
width: 23px;
height: 23px;
padding: 8px;
border-radius: 50%;
color: black;
cursor: pointer;
transition: .3s;
margin: 0 0 0 7px;
float: right;
}
.total-info {
margin: 20px 20px 0 55px;
float: left;
display: grid;
position: relative;
}
.item-info {
margin: 10px 0;
float: left;
width: 100%;
}
.title-item-info {
font-size: 13px;
color: #adadad;
margin-bottom: 3px;
user-select: none;
cursor: default;
}
.content-item-info {
font-size: 15px;
color: #252525;
}
.title-info {
color: #a3a3a3;
font-size: 12px;
text-transform: uppercase;
user-select: none;
cursor: default;
position: relative;
margin: 26px 0 5px 0;
font-weight: bold;
}
.parent-compact .compact {
display: none!important;
}
.click-compact {
width: 20px;
height: 20px;
position: absolute;
top: 0;
right: 0;
padding: 14px 13px 12px 13px;
margin: 25px 12px;
border-radius: 50%;
transition: .3s;
user-select: none;
}
/*.panel-info:hover .click-compact {
background-color: whitesmoke;
}*/
.click-compact:hover {
background-color: #e9e9e9!important;
}
.click-compact.active {
-moz-transform: rotate(-180deg);
-o-transform: rotate(-180deg);
-webkit-transform: rotate(-180deg);
background-color: whitesmoke;
}
.item-panel {
width: 100%;
margin-bottom: 10px;
display: grid;
transition: .3s;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
cursor: default;
color: black;
}
.item-panel__basic-info {
border-bottom: 1px solid #f0f4f5;
padding: 4px 0;
margin: 0 20px;
}
.item-panel__total-info {
margin: 10px 20px 0;
}
.item-panel.active {
background-color: #f5f5f5;
padding: 10px 0;
}
.item-panel.active .left-item-panel {
white-space: normal;
}
.left-item-panel {
font-size: 14px;
float: left;
width: 250px;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
white-space: nowrap;
}
.right-item-panel {
font-size: 14px;
float: right;
color: #a4a4a4;
width: 30%;
text-align: right;
}
.green {
color: #12ce88;
}
.red {
color: #ff7375;
}
.basic-info__container {
float: left;
height: 50px;
position: relative;
width: 250px;
margin-left: 5px;
}
.basic-info__container__content {
display: table;
position: absolute;
top: 0px;
bottom: 0px;
margin: auto 0px;
}
.total-info__service {
color: #585858;
font-size: 13px;
background-size: 13px 13px;
background-repeat: no-repeat;
float: left;
padding-left: 20px;
background-image: url(/images/service1.png);
margin-top: 10px;
position: relative;
z-index: 8;
width: 100%;
}
.service__item {
float: left;
margin: -1px 10px 5px 0;
transition: .3s;
}
.info-about-subsc {
width: 100%;
float: left;
color: #a7a7a7;
font-size: 13px!important;
margin: 10px 0 6px 0;
}
.subscriptions {
color: #a7a7a7;
font-size: 13px;
background-size: 11px 11px;
background-repeat: no-repeat;
float: left;
margin: 3px 6px 4px 8px;
border: 1px solid #e2e2e2;
border-width: 0 0 0 1px;
}
.subscription {
margin: 0 0 10px 0;
display: table;
color: #a7a7a7;
transition: .3s;
padding-left: 30px;
}
.data-subscriptions {
background-size: 18px 18px;
background-repeat: no-repeat;
background-image: url(/images/subs.png);
background-color: #f5f5f5;
background-position-y: center;
padding: 5px 0 5px 30px;
display: table;
margin-left: -38px;
color: #a7a7a7;
}
.panel-add {
margin: 10px 0;
position: relative;
}
.new-btn {
width: 20px;
height: 20px;
float: left;
cursor: pointer;
margin: 0 10px;
padding: 10px;
border-radius: 50%;
color: black;
}
.btn-back:hover {
background-image: linear-gradient(to left top,#e1e5e7 0,rgba(171, 142, 205, 0.04) 100%);
}
.btn-confirm {
color: #12ce88;
}
.btn-close-panel {
color: #ff7375;
}
.btn-confirm:hover {
color: #f7f7f7;
background-color: #12ce88;
}
.btn-close-panel:hover {
color: #f7f7f7;
background-color: #ff7375;
}
.hydrated {
width: 100%;
height: 100%;
}
.btn-back {
position: absolute;
top: 0;
left: 0;
}
.panel-form__title {
margin: 0 20px 10px 60px;
padding: 11px 0;
font-size: 16px;
color: #444444;
border-left: 1px;
user-select: none;
cursor: default;
}
.no-record {
font-size: 14px;
margin: 0 20px 10px;
color: #ababab;
user-select: none;
cursor: default;
}
.btn-add-group {
color: #4fa6f7;
cursor: pointer;
text-transform: uppercase;
font-size: 10px;
font-weight: bold;
user-select: none;
float: left;
padding: 10px 0;
margin: 0 20px;
}
.reset-search {
width: 20px;
height: 20px;
padding: 10px;
margin: 10px 5px 10px 0;
cursor: pointer;
border-radius: 50%;
float: right;
position: relative;
user-select: none;
}
.reset-search:hover, .reset-search.active {
background-image: linear-gradient(to left top,#e1e5e7 0,rgba(171, 142, 205, 0.04) 100%);
}
.item-panel__total-info {
display: none;
}
.item-panel.active>.item-panel__total-info {
display: block;
}
.item-panel.active .right-item-panel--no-hover {
display: none;
}
.btn-hide {
display: none;
}
.item-panel.active .btn-hide {
display: block;
}
.panel-content>.list-panel>.item-panel:hover {
background-color: whitesmoke;
/*padding: 10px 0;*/
}
.notification {
position: fixed;
right: 17px;
z-index: 4;
top: 70px;
}
.notification__item {
background-color: white;
font-size: 15px;
border-radius: 7px 0 7px 7px;
width: 260px;
padding: 14px 16px;
color: #171717;
overflow: hidden;
margin-bottom: 14px;
position: relative;
box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.12);
}
.btns {
display: table;
width: 100%;
*margin-bottom: 20px;
margin-bottom: 4px;
}
.btns>* {
margin-right: 10px;
}
.btn {
font-size: 12px;
background-size: 11px 11px;
background-repeat: no-repeat;
float: left;
cursor: pointer;
opacity: 0.8;
user-select: none;
transition: 0.3s;
text-transform: uppercase;
font-weight: 600;
border: 0px;
background-color: transparent;
outline: none;
text-align: left;
padding: 2px 0px 0px;
position: relative;
}
.gray {
color: #a4a4a4;
}
.btn-subscribe {
color: #12ce88;
}
.btn-subscribe svg {
fill: #12ce88;
}
.btn-unsubscribe {
color: #ff7375;
}
.btn-unsubscribe svg {
fill: #ff7375;
}
.btn:hover {
-webkit-transform: translateX(1px);
-ms-transform: translateX(1px);
transform: translateX(1px);
opacity: 1;
}
.btn.active {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
opacity: 1;
}
.btn.active .btn__text {
opacity: .4;
}
.btn__text {
transition: .3s;
}
.btn-add {
color: #4fa6f7;
margin: 10px 0 10px 20px;
}
.btn-add-menu {
width: 20px;
height: 20px;
padding: 10px;
margin: 3px 10.5px;
border-radius: 50%;
float: left;
background: white;
color: black;
cursor: pointer;
opacity: .6;
transition: .3s;
}
.btn-add-menu:hover {
opacity: .8;
}
.btn-add-menu:active {
opacity: 1;
}
@keyframes wave {
0% {
left: -85px;
}
100% {
left: 0;
}
}
.container {
width: 65px;
height: 10px;
overflow: hidden;
position: absolute;
margin-top: -2px;
}
svg {
position: relative;
height: 100%;
top: 0;
bottom: 0;
margin: auto 0;
left: -10px;
width: 150px;
animation: wave 2s linear infinite;
fill: #12ce88;
}
img.loading-panel {
margin: 0 auto;
width: 50px;
height: 50px;
display: table;
}
.subscriptions1 {
color: #585858;
font-size: 14px;
background-size: 11px 11px;
background-repeat: no-repeat;
float: left;
border: 2px solid;
border-width: 0 0 0 2px;
padding: 0;
list-style-type: none;
margin: 0 6px;
}
.subscription1 {
position: relative;
margin: 16px 0;
}
.subscription1>div {
width: 10px;
height: 10px;
border-radius: 50%;
border: 2px solid #585858;
position: absolute;
margin: 2px;
left: -10px;
top: 0;
background-color: whitesmoke;
}
.subscription1>span {
margin-left: 16px;
}
.block-information {
margin-bottom: 20px;
}
.block-information>h3 {
color: #a3a3a3;
font-size: 12px;
text-transform: uppercase;
user-select: none;
cursor: default;
position: relative;
margin: 20px 0 0 0;
font-weight: bold;
}
.pnl-add {
position: fixed;
z-index: 9999;
background-color: white;
top: 69px;
left: 7px;
border-radius: 4px;
box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.12);
display: none;
}
.pnl-add.open {
display: block;
}
.header-pnl-add {
margin: 3px;
position: relative;
}
.title-pnl-add {
margin: 0 60px 10px 50px;
padding: 11px 0;
font-size: 16px;
color: #4f4f4f;
border-left: 1px;
user-select: none;
cursor: default;
}
.body-pnl-add {
padding: 0px 0px 14px;
display: grid;
margin-top: -8px;
}
.item-panel-add {
padding: 7px 14px;
transition: .3s;
}
.item-panel-add:hover {
background-color: whitesmoke;
}
.sdfdsa {
width: 19px;
height: 19px;
padding: 5px;
background-origin: content-box;
background-size: 100%;
background-repeat: no-repeat;
border-radius: 50%;
float: left;
background-image: url(/images/visitors.png);
}
.dsafdsaf {
color: #3d3c3c;
float: left;
margin: 5px 10px;
}
.item-list.active {
background: #f5f5f5;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
cursor: default;
}
.status-complited {
font-size: 12px;
cursor: default;
user-select: none;
}
.complited {
color: #45ce87;
}
.not-complited {
color: #ff7375;
}
.notification-close {
position: absolute;
width: 18px;
height: 18px;
top: 2px;
right: 2px;
z-index: 999;
padding: 6px;
cursor: pointer;
border-radius: 50%;
}
.notification-close:hover {
background-image: linear-gradient(to left top,#e1e5e7 0,rgba(171, 142, 205, 0.04) 100%);
}
.item-panel select {
width: 100%;
font-size: 14px;
background-color: transparent;
border: 0;
outline: none;
cursor: pointer;
}
/*.section.panel-content.show-all .item-panel:nth-of-type(1) {
display: block!important;
}*/
.show-all .item-panel,
.item-panel:nth-of-type(1),
.item-panel:nth-of-type(2),
.item-panel:nth-of-type(3) {
display: grid!important;
}
.item-panel {
display: none;
}
.textarea {
width: 100%!important;
min-height: 50px!important;
max-height: 250px!important;
}
header:hover {
z-index: 90;
}
.panels-test {
width: 100%;
min-height: 44px;
background-color: white;
margin-bottom: 20px;
border-radius: 4px;
position: relative;
}
.params-filter {
float: left;
font-size: 12px;
border: 1px solid;
border-radius: 6px;
padding: 2px 6px;
margin: 1.5px;
cursor: pointer;
user-select: none;
color: #3880ff;
}
.params-filter:hover {
background-color: #ff7375;
border-color: #ff7375;
color: white;
}
.params-filter__img {
float: left;
width: 15px;
height: 15px;
margin-right: 4px;
}
.income {
color: #12ce88;
}
.expense {
color: #ff7375;
}
.image {
width: 100%;
height: 100%;
}
.right-item-panel>.btn {
float: right;
}
.active.item-menu {
background-color: transparent;
cursor: default;
}
.active.icon-client {
background-image: url(/images/clients_active.png);
}
.active.icon-company {
background-image: url(/images/workflow_active.png);
}
.active.icon-finance {
background-image: url(/images/transactions_active.png);
}
.search-info {
z-index: 60;
position: relative;
padding: 10px 20px 20px 20px;
display: table;
background-color: white;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 0 0 4px 4px;
}
.item-search {
float: left;
margin-right: 10px;
font-size: 14px;
opacity: .3;
cursor: pointer;
user-select: none;
}
.item-search.active {
opacity: 1;
}
.item-search:hover {
opacity: .7;
}
.search {
background-color: #f5f5f5f5;
position: relative;
z-index: 80;
border-radius: 4px;
}
.search.active {
box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.12);
background-color: white;
}
.btn-delete {
width: 16px;
height: 16px;
padding: 4px;
margin: -4px;
float: left;
cursor: pointer;
user-select: none;
margin-right: 5px;
}
/*.item__btns {
display: none;
}*/
.btn-delete:hover {
color: #444444;
}
.item-panel:hover .item__btns, .item-panel.active .item__btns {
display: block;
}
.item-panel:hover .price-record {
display: none;
}
.price-record>div {
float: right;
margin-left: 10px;
}
.active-item {
color: #3880ff!important;
}
.default-item {
opacity: .45;
}
.default-item:hover {
opacity: 1;
}
.amount.active {
cursor: default;
opacity: 1;
}
.index-indecator {
font-size: 24px;
}
.name-indecator {
font-size: 10px;
text-transform: uppercase;
font-weight: bold;
}
.red-color {
color: rgb(255, 115, 117);
}
.empty-list {
font-size: 14px;
color: #ababab;
user-select: none;
cursor: default;
padding: 15px 0 14px 20px;
}
.list-params {
width: 84%;
margin: -1.5px;
float: left;
padding: 12px 0 12px 20px;
}
.params-filter__img>.hydrated:nth-last-child(1) {
display: none;
}
.params-filter:hover .params-filter__img>.hydrated:nth-last-child(1) {
display: block;
}
.params-filter:hover .params-filter__img>div {
display: none;
}
.green-color {
*color: #12ce88;
color: #0eb879;
}
.item-panel.active {
opacity: 1;
}
.link-to {
color: #4285f4;
font-size: 14px;
}
.title-btn {
float: right;
position: absolute;
right: 10px;
top: 0;
padding: 15px;
color: #12ce88;
}
.data-subscriptions.current {
color: #2a2a2a;
}
.sub-desc {
display: none;
}
.subscription.active .sub-desc {
display: block;
}
.date-display {
display: table;
margin: 0 auto;
padding: 6px 10px;
border-radius: 4px;
cursor: pointer;
text-transform: uppercase;
font-size: 14px;
text-align: center;
margin-top: -10px;
margin-bottom: 10px;
}
.date-display:hover {
background-color: #e3e3e3;
}
.date-filter {
position: relative;
}
.btn-date {
width: 16px;
height: 16px;
padding: 6px;
position: absolute;
border-radius: 50%;
cursor: pointer;
}
.btn-date:hover {
background-color: #e3e3e3;
}
.btn-date>img {
width: 100%;
}
.dark-color {
*color: #464646;
color: #303030;
}
.pnl-date-filter {
position: absolute;
background-color: white;
padding: 6px 0;
z-index: 999;
border-radius: 4px;
box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.12);
width: 170px;
margin: 0 auto;
left: 0;
right: 0;
top: 28px;
display: none;
text-align: left;
transition-delay: 0.5s;
}
.date-display:hover>.pnl-date-filter {
display: block;
}
.item-date {
padding: 10px 14px 10px 14px;
transition: .3s;
color: #3d3c3c;
font-size: 13px;
}
.item-date:hover {
background-color: whitesmoke;
}
.item-date.active {
color: #3880ff;
}
.center-left-content {
display: table;
position: absolute;
top: 0px;
bottom: 0px;
margin: auto 0px;
}
.affiliate-work {
color: #585858;
font-size: 13px;
background-size: 13px 13px;
background-repeat: no-repeat;
float: left;
padding-left: 20px;
background-image: url(/images/office3.png);
position: relative;
z-index: 8;
width: 100%;
}
.not-allowed {
cursor: not-allowed;
}
#error_explanation {
font-size: 15px;
color: #171717;
}
.pnl-optionally {
position: absolute;
top: -3px;
right: 7px;
z-index: 9999;
background-color: white;
border-radius: 4px;
box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.12);
display: none;
}
.pnl-optionally.open {
display: block;
}
.optionally {
user-select: none;
}
.categories-tree {
padding: 0;
margin: 0 0 0 16px;
}
.item-category {
width: 100%;
margin-top: 10px;
display: grid;
transition: .3s;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
cursor: default;
color: black;
}
.panel-content>.categories-tree>.item-category {
display: none;
}
.show-all .item-category, .item-category:nth-of-type(1), .item-category:nth-of-type(2), .item-category:nth-of-type(3) {
display: grid!important;
}
.left-item-panel:hover .item__btns {
display: block;
}
.value-item-panel {
border-bottom: 1px solid #f0f4f5;
padding: 4px 0;
margin: 0 20px 0 4px;
display: flex;
}
.value-item-panel .left-item-panel {
cursor: pointer;
}
.value-item-panel .left-item-panel>* {
float: left;
}
.btn-show {
transform: rotate(90deg);
}
.left-item-panel.active .btn-show {
transform: rotate(0deg);
} | app/assets/stylesheets/new.css | input, textarea {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
content {
left: 61px;
top: 0;
bottom: 0;
position: fixed;
z-index: 80;
}
.icon-menu {
background-image: url(/images/menu.png);
width: 14px;
height: 14px;
padding: 11px;
background-origin: content-box;
background-size: 100%;
background-repeat: no-repeat;
}
.menu {
height: 100%;
width: 61px;
position: fixed;
z-index: 100;
top: 0;
}
.item-menu.icon-menu {
background-image: url(/images/menu.png);
margin: 11px 7px;
cursor: pointer;
}
.icon-client {
background-image: url(/images/clients.png);
}
.icon-company {
background-image: url(/images/company.png);
}
.icon-finance {
background-image: url(/images/finance.png);
}
.item-menu {
width: 19px;
height: 19px;
padding: 14px;
margin: 3px 7px;
background-origin: content-box;
background-size: 100%;
background-repeat: no-repeat;
border-radius: 50%;
float: left;
}
.item-menu:hover {
background-color: rgba(0, 0, 0, 0.25);
}
header {
position: fixed;
z-index: 30;
top: 0;
left: 0;
right: 0;
height: 70px;
}
.panel-list {
width: 400px;
background-color: white;
border-radius: 4px 4px 0 0;
top: 70px;
bottom: 0;
position: absolute;
overflow: hidden;
}
.panels-content {
width: 400px;
top: 70px;
bottom: 0;
left: 425px;
position: absolute;
overflow-y: overlay;
border-radius: 4px 4px 0 0;
}
.search-field {
width: 100%;
padding: 24px 100px 20px 60px;
font-size: 17px;
height: 60px;
border: 0;
border-radius: 4px;
background-color: transparent;
outline: none;
transition: .3s;
z-index: 50;
position: relative;
}
.search-field:focus {
background: #fffffff5;
box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.12);
}
.list {
user-select: none;
display: table;
padding: 10px 0 30px 0;
list-style-type: none;
margin: 0;
width: 100%;
background-color: white;
position: relative;
z-index: 25;
overflow: hidden;
}
.item-list {
width: 100%;
min-height: 40px;
box-sizing: border-box;
float: left;
cursor: pointer;
transition: .3s;
padding: 12px 25px;
}
.avatar-listt {
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 15px;
float: left;
}
div.left-content {
float: left;
height: 40px;
position: relative;
}
.name-content {
font-size: 14px;
color: #020202;
width: 220px;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
white-space: nowrap;
margin: 2px 0;
}
.desc-content {
font-size: 12px;
*color: #545454;
color: #929292;
margin: 1px 0;
display: table;
}
.right-content {
float: right;
}
.debt {
margin: 10.5px 0 10.5px 0;
display: table;
}
.container-list {
box-sizing: border-box;
position: absolute;
top: 60px;
bottom: 0;
left: 0;
right: 0;
overflow-y: overlay;
z-index: 10;
}
img.search-icon {
width: 23px;
height: 23px;
margin: 18px 20px;
opacity: 0.4;
float: left;
position: absolute;
z-index: 60;
}
.panel-content {
width: 400px;
background-color: white;
border-radius: 4px;
margin-bottom: 20px;
display: table;
position: relative;
}
.panel-logo {
float: left;
height: 32px;
margin: 19px 70px;
}
a.logo {
width: 32px;
height: 32px;
margin: auto;
transition: 0.4s cubic-bezier(0, 0, 0, 1);
float: left;
}
a.logo:hover {
-ms-transform: scale(1.5);
transform: scale(1.5);
}
.logo>img {
width: 100%;
}
.info-logo {
float: left;
margin-left: 10px;
}
.biz-logo {
color: #99c9f1;
font-size: 15px;
font-weight: bold;
user-select: none;
}
.company-logo {
color: white;
width: 100%;
display: table;
}
.btn-show-list {
position: relative;
}
.name-company {
background-size: 8px 6px;
background-repeat: no-repeat;
background-image: url(/images/arrow-bottom.png);
padding-right: 15px;
background-position: right center;
font-size: 14px;
cursor: pointer;
}
.panel-show {
position: absolute;
background-color: white;
top: 10px;
left: 10px;
font-size: 14px;
padding: 10px 0;
border-radius: 7px;
display: none;
box-shadow: 0 1px 8px -2px rgba(0, 0, 0, 0.5)!important;
box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.6);
z-index: 999;
user-select: none;
min-width: 190px;
max-height: 60vh;
overflow-y: overlay;
}
.left-side-elem:hover>.panel-show, .btn-show-list:hover>.panel-show {
display: grid!important;
}
.panel-show>* {
color: #494949;
padding: 10px 20px;
float: left;
cursor: pointer;
}
.panel-account {
height: 36px;
float: right;
margin: 17px;
}
.account-avatar {
width: 36px;
height: 36px;
border-radius: 50%;
background-color: white;
}
.panel-account>* {
float: left;
}
.account-name {
padding: 10px 15px;
color: white;
font-size: 14px;
}
.indecators {
margin: 17px 10px;
user-select: none;
}
.indecator {
float: left;
margin: 0 10px;
}
.interact:hover {
opacity: .8;
}
.interact.active {
opacity: 1;
cursor: default;
}
.blue-color {
color: #3880ff;
}
.interact {
cursor: pointer;
opacity: .5;
}
.loading {
background-color: white;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 20;
border-radius: 4px 4px 0 0;
}
.loading>img {
width: 60px;
position: absolute;
top: 90px;
right: 0;
/* bottom: 0; */
left: 0;
margin: auto;
user-select: none;
}
.panel-footer {
width: 100%;
float: left;
background: whitesmoke;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 0 0 4px 4px;
color: #464646;
user-select: none;
cursor: default;
display: grid;
min-height: 73px;
}
.loading>div {
position: absolute;
top: 35px;
right: 0;
left: 0;
margin: auto;
text-transform: uppercase;
font-size: 11px;
font-weight: bold;
user-select: none;
display: table;
color: #a3a3a3;
width: 100%;
text-align: center;
}
.ava {
width: 50px;
height: 50px;
border-radius: 50%;
float: left;
margin-right: 10px;
}
.item-list:hover {
-webkit-transform: translateX(2px);
-ms-transform: translateX(2px);
transform: translateX(2px);
}
.panel-info {
*padding: 23px 20px;
padding: 23px 20px 23px 0px;
display: grid;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.name-panel {
color: #444444;
font-size: 22px;
font-weight: 500;
margin: 2px 0;
float: left;
padding: 0;
width: 100%;
}
.additional-info {
font-size: 13px;
color: rgb(68, 68, 68);
float: left;
width: 100%;
margin: 2px 0;
}
.panel-panel {
min-height: 73px;
background: whitesmoke;
border-radius: 0 0 4px 4px;
width: 100%;
display: grid;
position: relative;
}
.btn-add-panel {
width: 15px;
height: 15px;
padding: 12px;
border-radius: 50%;
background: #3880ff;
color: white;
box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.3);
opacity: .5;
cursor: pointer;
transition: .3s;
float: right;
}
.btn-add-panel:hover {
opacity: 1;
}
.panel-header {
padding: 20px 20px 16px 20px;
user-select: none;
display: table;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.title-panel {
font-size: 12px;
text-transform: uppercase;
font-weight: bold;
color: #808080;
padding: 0;
float: left;
}
div.show-panel {
color: #3880ff;
float: right;
padding: 0;
}
.show-panel:hover {
opacity: 1;
}
.list-panel {
padding: 0;
margin: 0 0 20px 0;
}
.btn-show-panel {
width: 23px;
height: 23px;
padding: 8px;
border-radius: 50%;
color: black;
cursor: pointer;
transition: .3s;
margin: 0 0 0 7px;
float: right;
}
.total-info {
margin: 20px 20px 0 55px;
float: left;
display: grid;
position: relative;
}
.item-info {
margin: 10px 0;
float: left;
width: 100%;
}
.title-item-info {
font-size: 13px;
color: #adadad;
margin-bottom: 3px;
user-select: none;
cursor: default;
}
.content-item-info {
font-size: 15px;
color: #252525;
}
.title-info {
color: #a3a3a3;
font-size: 12px;
text-transform: uppercase;
user-select: none;
cursor: default;
position: relative;
margin: 26px 0 5px 0;
font-weight: bold;
}
.parent-compact .compact {
display: none!important;
}
.click-compact {
width: 20px;
height: 20px;
position: absolute;
top: 0;
right: 0;
padding: 14px 13px 12px 13px;
margin: 25px 12px;
border-radius: 50%;
transition: .3s;
user-select: none;
}
/*.panel-info:hover .click-compact {
background-color: whitesmoke;
}*/
.click-compact:hover {
background-color: #e9e9e9!important;
}
.click-compact.active {
-moz-transform: rotate(-180deg);
-o-transform: rotate(-180deg);
-webkit-transform: rotate(-180deg);
background-color: whitesmoke;
}
.item-panel {
width: 100%;
margin-bottom: 10px;
display: grid;
transition: .3s;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
cursor: default;
color: black;
}
.item-panel__basic-info {
border-bottom: 1px solid #f0f4f5;
padding: 4px 0;
margin: 0 20px;
}
.item-panel__total-info {
margin: 10px 20px 0;
}
.item-panel.active {
background-color: #f5f5f5;
padding: 10px 0;
}
.item-panel.active .left-item-panel {
white-space: normal;
}
.left-item-panel {
font-size: 14px;
float: left;
width: 250px;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
white-space: nowrap;
}
.right-item-panel {
font-size: 14px;
float: right;
color: #a4a4a4;
width: 30%;
text-align: right;
}
.green {
color: #12ce88;
}
.red {
color: #ff7375;
}
.basic-info__container {
float: left;
height: 50px;
position: relative;
width: 250px;
margin-left: 5px;
}
.basic-info__container__content {
display: table;
position: absolute;
top: 0px;
bottom: 0px;
margin: auto 0px;
}
.total-info__service {
color: #585858;
font-size: 13px;
background-size: 13px 13px;
background-repeat: no-repeat;
float: left;
padding-left: 20px;
background-image: url(/images/service1.png);
margin-top: 10px;
position: relative;
z-index: 8;
width: 100%;
}
.service__item {
float: left;
margin: -1px 10px 5px 0;
transition: .3s;
}
.info-about-subsc {
width: 100%;
float: left;
color: #a7a7a7;
font-size: 13px!important;
margin: 10px 0 6px 0;
}
.subscriptions {
color: #a7a7a7;
font-size: 13px;
background-size: 11px 11px;
background-repeat: no-repeat;
float: left;
margin: 3px 6px 4px 8px;
border: 1px solid #e2e2e2;
border-width: 0 0 0 1px;
}
.subscription {
margin: 0 0 10px 0;
display: table;
color: #a7a7a7;
transition: .3s;
padding-left: 30px;
}
.data-subscriptions {
background-size: 18px 18px;
background-repeat: no-repeat;
background-image: url(/images/subs.png);
background-color: #f5f5f5;
background-position-y: center;
padding: 5px 0 5px 30px;
display: table;
margin-left: -38px;
color: #a7a7a7;
}
.panel-add {
margin: 10px 0;
position: relative;
}
.new-btn {
width: 20px;
height: 20px;
float: left;
cursor: pointer;
margin: 0 10px;
padding: 10px;
border-radius: 50%;
color: black;
}
.btn-back:hover {
background-image: linear-gradient(to left top,#e1e5e7 0,rgba(171, 142, 205, 0.04) 100%);
}
.btn-confirm {
color: #12ce88;
}
.btn-close-panel {
color: #ff7375;
}
.btn-confirm:hover {
color: #f7f7f7;
background-color: #12ce88;
}
.btn-close-panel:hover {
color: #f7f7f7;
background-color: #ff7375;
}
.hydrated {
width: 100%;
height: 100%;
}
.btn-back {
position: absolute;
top: 0;
left: 0;
}
.panel-form__title {
margin: 0 20px 10px 60px;
padding: 11px 0;
font-size: 16px;
color: #444444;
border-left: 1px;
user-select: none;
cursor: default;
}
.no-record {
font-size: 14px;
margin: 0 20px 10px;
color: #ababab;
user-select: none;
cursor: default;
}
.btn-add-group {
color: #4fa6f7;
cursor: pointer;
text-transform: uppercase;
font-size: 10px;
font-weight: bold;
user-select: none;
float: left;
padding: 10px 0;
margin: 0 20px;
}
.reset-search {
width: 20px;
height: 20px;
padding: 10px;
margin: 10px 5px 10px 0;
cursor: pointer;
border-radius: 50%;
float: right;
position: relative;
user-select: none;
}
.reset-search:hover, .reset-search.active {
background-image: linear-gradient(to left top,#e1e5e7 0,rgba(171, 142, 205, 0.04) 100%);
}
.item-panel__total-info {
display: none;
}
.item-panel.active>.item-panel__total-info {
display: block;
}
.item-panel.active .right-item-panel--no-hover {
display: none;
}
.btn-hide {
display: none;
}
.item-panel.active .btn-hide {
display: block;
}
.panel-content>.list-panel>.item-panel:hover {
background-color: whitesmoke;
/*padding: 10px 0;*/
}
.notification {
position: fixed;
right: 17px;
z-index: 4;
top: 70px;
}
.notification__item {
background-color: white;
font-size: 15px;
border-radius: 7px 0 7px 7px;
width: 260px;
padding: 14px 16px;
color: #171717;
overflow: hidden;
margin-bottom: 14px;
position: relative;
box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.12);
}
.btns {
display: table;
width: 100%;
*margin-bottom: 20px;
margin-bottom: 4px;
}
.btns>* {
margin-right: 10px;
}
.btn {
font-size: 12px;
background-size: 11px 11px;
background-repeat: no-repeat;
float: left;
cursor: pointer;
opacity: 0.8;
user-select: none;
transition: 0.3s;
text-transform: uppercase;
font-weight: 600;
border: 0px;
background-color: transparent;
outline: none;
text-align: left;
padding: 2px 0px 0px;
position: relative;
}
.gray {
color: #a4a4a4;
}
.btn-subscribe {
color: #12ce88;
}
.btn-subscribe svg {
fill: #12ce88;
}
.btn-unsubscribe {
color: #ff7375;
}
.btn-unsubscribe svg {
fill: #ff7375;
}
.btn:hover {
-webkit-transform: translateX(1px);
-ms-transform: translateX(1px);
transform: translateX(1px);
opacity: 1;
}
.btn.active {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
opacity: 1;
}
.btn.active .btn__text {
opacity: .4;
}
.btn__text {
transition: .3s;
}
.btn-add {
color: #4fa6f7;
margin: 10px 0 10px 20px;
}
.btn-add-menu {
width: 20px;
height: 20px;
padding: 10px;
margin: 3px 10.5px;
border-radius: 50%;
float: left;
background: white;
color: black;
cursor: pointer;
opacity: .6;
transition: .3s;
}
.btn-add-menu:hover {
opacity: .8;
}
.btn-add-menu:active {
opacity: 1;
}
@keyframes wave {
0% {
left: -85px;
}
100% {
left: 0;
}
}
.container {
width: 65px;
height: 10px;
overflow: hidden;
position: absolute;
margin-top: -2px;
}
svg {
position: relative;
height: 100%;
top: 0;
bottom: 0;
margin: auto 0;
left: -10px;
width: 150px;
animation: wave 2s linear infinite;
fill: #12ce88;
}
img.loading-panel {
margin: 0 auto;
width: 50px;
height: 50px;
display: table;
}
.subscriptions1 {
color: #585858;
font-size: 14px;
background-size: 11px 11px;
background-repeat: no-repeat;
float: left;
border: 2px solid;
border-width: 0 0 0 2px;
padding: 0;
list-style-type: none;
margin: 0 6px;
}
.subscription1 {
position: relative;
margin: 16px 0;
}
.subscription1>div {
width: 10px;
height: 10px;
border-radius: 50%;
border: 2px solid #585858;
position: absolute;
margin: 2px;
left: -10px;
top: 0;
background-color: whitesmoke;
}
.subscription1>span {
margin-left: 16px;
}
.block-information {
margin-bottom: 20px;
}
.block-information>h3 {
color: #a3a3a3;
font-size: 12px;
text-transform: uppercase;
user-select: none;
cursor: default;
position: relative;
margin: 20px 0 0 0;
font-weight: bold;
}
.pnl-add {
position: fixed;
z-index: 9999;
background-color: white;
top: 69px;
left: 7px;
border-radius: 4px;
box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.12);
display: none;
}
.pnl-add.open {
display: block;
}
.header-pnl-add {
margin: 3px;
position: relative;
}
.title-pnl-add {
margin: 0 60px 10px 50px;
padding: 11px 0;
font-size: 16px;
color: #4f4f4f;
border-left: 1px;
user-select: none;
cursor: default;
}
.body-pnl-add {
padding: 0px 0px 14px;
display: grid;
margin-top: -8px;
}
.item-panel-add {
padding: 7px 14px;
transition: .3s;
}
.item-panel-add:hover {
background-color: whitesmoke;
}
.sdfdsa {
width: 19px;
height: 19px;
padding: 5px;
background-origin: content-box;
background-size: 100%;
background-repeat: no-repeat;
border-radius: 50%;
float: left;
background-image: url(/images/visitors.png);
}
.dsafdsaf {
color: #3d3c3c;
float: left;
margin: 5px 10px;
}
.item-list.active {
background: #f5f5f5;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
cursor: default;
}
.status-complited {
font-size: 12px;
cursor: default;
user-select: none;
}
.complited {
color: #45ce87;
}
.not-complited {
color: #ff7375;
}
.notification-close {
position: absolute;
width: 18px;
height: 18px;
top: 2px;
right: 2px;
z-index: 999;
padding: 6px;
cursor: pointer;
border-radius: 50%;
}
.notification-close:hover {
background-image: linear-gradient(to left top,#e1e5e7 0,rgba(171, 142, 205, 0.04) 100%);
}
.item-panel select {
width: 100%;
font-size: 14px;
background-color: transparent;
border: 0;
outline: none;
cursor: pointer;
}
/*.section.panel-content.show-all .item-panel:nth-of-type(1) {
display: block!important;
}*/
.show-all .item-panel,
.item-panel:nth-of-type(1),
.item-panel:nth-of-type(2),
.item-panel:nth-of-type(3) {
display: grid!important;
}
.item-panel {
display: none;
}
.textarea {
width: 100%!important;
min-height: 50px!important;
max-height: 250px!important;
}
header:hover {
z-index: 90;
}
.panels-test {
width: 100%;
min-height: 44px;
background-color: white;
margin-bottom: 20px;
border-radius: 4px;
position: relative;
}
.params-filter {
float: left;
font-size: 12px;
border: 1px solid;
border-radius: 6px;
padding: 2px 6px;
margin: 1.5px;
cursor: pointer;
user-select: none;
color: #3880ff;
}
.params-filter:hover {
background-color: #ff7375;
border-color: #ff7375;
color: white;
}
.params-filter__img {
float: left;
width: 15px;
height: 15px;
margin-right: 4px;
}
.income {
color: #12ce88;
}
.expense {
color: #ff7375;
}
.image {
width: 100%;
height: 100%;
}
.right-item-panel>.btn {
float: right;
}
.active.item-menu {
background-color: transparent;
cursor: default;
}
.active.icon-client {
background-image: url(/images/clients_active.png);
}
.active.icon-company {
background-image: url(/images/workflow_active.png);
}
.active.icon-finance {
background-image: url(/images/transactions_active.png);
}
.search-info {
z-index: 60;
position: relative;
padding: 10px 20px 20px 20px;
display: table;
background-color: white;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 0 0 4px 4px;
}
.item-search {
float: left;
margin-right: 10px;
font-size: 14px;
opacity: .3;
cursor: pointer;
user-select: none;
}
.item-search.active {
opacity: 1;
}
.item-search:hover {
opacity: .7;
}
.search {
background-color: #f5f5f5f5;
position: relative;
z-index: 80;
border-radius: 4px;
}
.search.active {
box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.12);
background-color: white;
}
.btn-delete {
width: 16px;
height: 16px;
padding: 4px;
margin: -4px;
float: left;
cursor: pointer;
user-select: none;
margin-right: 5px;
}
/*.item__btns {
display: none;
}*/
.btn-delete:hover {
color: #444444;
}
.item-panel:hover .item__btns, .item-panel.active .item__btns {
display: block;
}
.item-panel:hover .price-record {
display: none;
}
.price-record>div {
float: right;
margin-left: 10px;
}
.active-item {
color: #3880ff!important;
}
.default-item {
opacity: .45;
}
.default-item:hover {
opacity: 1;
}
.amount.active {
cursor: default;
opacity: 1;
}
.index-indecator {
font-size: 24px;
}
.name-indecator {
font-size: 10px;
text-transform: uppercase;
font-weight: bold;
}
.red-color {
color: rgb(255, 115, 117);
}
.empty-list {
font-size: 14px;
color: #ababab;
user-select: none;
cursor: default;
padding: 15px 0 14px 20px;
}
.list-params {
width: 84%;
margin: -1.5px;
float: left;
padding: 12px 0 12px 20px;
}
.params-filter__img>.hydrated:nth-last-child(1) {
display: none;
}
.params-filter:hover .params-filter__img>.hydrated:nth-last-child(1) {
display: block;
}
.params-filter:hover .params-filter__img>div {
display: none;
}
.green-color {
*color: #12ce88;
color: #0eb879;
}
.item-panel.active {
opacity: 1;
}
.link-to {
color: #4285f4;
font-size: 14px;
}
.title-btn {
float: right;
position: absolute;
right: 10px;
top: 0;
padding: 15px;
color: #12ce88;
}
.data-subscriptions.current {
color: #2a2a2a;
}
.sub-desc {
display: none;
}
.subscription.active .sub-desc {
display: block;
}
.date-display {
display: table;
margin: 0 auto;
padding: 6px 10px;
border-radius: 4px;
cursor: pointer;
text-transform: uppercase;
font-size: 14px;
text-align: center;
margin-top: -10px;
margin-bottom: 10px;
}
.date-display:hover {
background-color: #e3e3e3;
}
.date-filter {
position: relative;
}
.btn-date {
width: 16px;
height: 16px;
padding: 6px;
position: absolute;
border-radius: 50%;
cursor: pointer;
}
.btn-date:hover {
background-color: #e3e3e3;
}
.btn-date>img {
width: 100%;
}
.dark-color {
*color: #464646;
color: #303030;
}
.pnl-date-filter {
position: absolute;
background-color: white;
padding: 6px 0;
z-index: 999;
border-radius: 4px;
box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.12);
width: 170px;
margin: 0 auto;
left: 0;
right: 0;
top: 28px;
display: none;
text-align: left;
transition-delay: 0.5s;
}
.date-display:hover>.pnl-date-filter {
display: block;
}
.item-date {
padding: 10px 14px 10px 14px;
transition: .3s;
color: #3d3c3c;
font-size: 13px;
}
.item-date:hover {
background-color: whitesmoke;
}
.item-date.active {
color: #3880ff;
}
.center-left-content {
display: table;
position: absolute;
top: 0px;
bottom: 0px;
margin: auto 0px;
}
.affiliate-work {
color: #585858;
font-size: 13px;
background-size: 13px 13px;
background-repeat: no-repeat;
float: left;
padding-left: 20px;
background-image: url(/images/office3.png);
position: relative;
z-index: 8;
width: 100%;
}
.not-allowed {
cursor: not-allowed;
}
#error_explanation {
font-size: 15px;
color: #171717;
}
.pnl-optionally {
position: absolute;
top: -3px;
right: 7px;
z-index: 9999;
background-color: white;
border-radius: 4px;
box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.12);
display: none;
}
.pnl-optionally.open {
display: block;
}
.optionally {
user-select: none;
}
.categories-tree {
padding: 0;
margin: 0 0 0 16px;
}
.item-category {
width: 100%;
margin-top: 10px;
display: grid;
transition: .3s;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
cursor: default;
color: black;
}
.panel-content>.categories-tree>.item-category {
display: none;
}
.show-all .item-category, .item-category:nth-of-type(1), .item-category:nth-of-type(2), .item-category:nth-of-type(3) {
display: grid!important;
}
.left-item-panel:hover .item__btns {
display: block;
}
.value-item-panel {
border-bottom: 1px solid #f0f4f5;
padding: 4px 0;
margin: 0 20px 0 4px;
display: flex;
}
.value-item-panel .left-item-panel {
cursor: pointer;
}
.value-item-panel .left-item-panel>* {
float: left;
}
.btn-show {
transform: rotate(90deg);
}
.left-item-panel.active .btn-show {
transform: rotate(0deg);
} | 0.418697 | 0.126111 |
pre {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%
}
body {
margin: 0
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary {
display: block
}
audio,canvas,progress,video {
display: inline-block;
vertical-align: baseline
}
audio:not([controls]) {
display: none;
height: 0
}
[hidden],template {
display: none
}
a {
background: transparent
}
a:active,a:hover {
outline: 0
}
abbr[title] {
border-bottom: 1px dotted
}
b,strong {
font-weight: bold
}
dfn {
font-style: italic
}
h1 {
font-size: 2em;
margin: .67em 0
}
mark {
background: #ff0;
color: #000
}
small {
font-size: 80%
}
sub,sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline
}
sup {
top: -.5em
}
sub {
bottom: -.25em
}
img {
border: 0
}
svg:not(:root) {
overflow: hidden
}
figure {
margin: 1em 40px
}
hr {
-webkit-box-sizing: content-box;
box-sizing: content-box;
height: 0
}
pre {
overflow: auto
}
code,kbd,pre,samp {
font-family: monospace,monospace;
font-size: 1em
}
button,input,optgroup,select,textarea {
color: inherit;
font: inherit;
margin: 0
}
button {
overflow: visible
}
button,select {
text-transform: none
}
button,html input[type="button"],input[type="reset"],input[type="submit"] {
-webkit-appearance: button;
cursor: pointer
}
button[disabled],html input[disabled] {
cursor: default
}
button::-moz-focus-inner,input::-moz-focus-inner {
border: 0;
padding: 0
}
input {
line-height: normal
}
input[type="checkbox"],input[type="radio"] {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0
}
input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button {
height: auto
}
input[type="search"] {
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;
box-sizing: content-box
}
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: .35em .625em .75em
}
legend {
border: 0;
padding: 0
}
textarea {
overflow: auto
}
optgroup {
font-weight: bold
}
table {
border-collapse: collapse;
border-spacing: 0
}
td,th {
padding: 0
}
a {
-webkit-tap-highlight-color: rgba(0,0,0,0)
}
@font-face {
font-family:'Open Sans';font-style:normal;font-weight:300;src:local('Open Sans Light'),local('OpenSans-Light'),url("https://fonts.gstatic.com/s/opensans/v10/DXI1ORHCpsQm3Vp6mXoaTRampu5_7CjHW5spxoeN3Vs.woff2") format('woff2')
}
@font-face {
font-family:'Open Sans';font-style:normal;font-weight:800;src:local('Open Sans Extrabold'),local('OpenSans-Extrabold'),url("https://fonts.gstatic.com/s/opensans/v10/EInbV5DfGHOiMmvb1Xr-hiYtBUPDK3WL7KRKS_3q7OE.woff2") format('woff2')
}
h1,h2,h3,h4 {
font-family: 'Open Sans',sans-serif;
font-weight: 800;
font-style: normal
}
@-webkit-keyframes animateGradient {
0% {
background-position: 100% 90%
}
99% {
background-position: 0% 90%
}
100% {
background-position: 0% 90%;
background-size: 200% 7px
}
}
@keyframes animateGradient {
0% {
background-position: 100% 90%
}
99% {
background-position: 0% 90%
}
100% {
background-position: 0% 90%;
background-size: 200% 7px
}
}
.icons-home {
text-align: center;
}
.icons-home a {
display: inline-block;
padding: .938rem;
margin: .125rem;
border-radius: 50%;
border: .125rem solid #fff;
line-height: 0;
-webkit-transition: all .7s;
transition: all .7s;
}
.icons-home a .icon {
fill: #fff;
width: 18px;
height: 18px;
}
@media only screen and (min-width:37.5rem) {
.icons-home a .icon {
width: 30px;
height: 30px
}
}
.icons-home a:hover {
background: #fff;
}
.icons-home a:hover .icon {
fill: #365c96
}
.down {
position: absolute;
bottom: 50px;
width: 100%;
display: block;
text-align: center;
}
.down .icon {
position: absolute;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
width: 100px;
height: 100px;
fill: #fff;
-webkit-animation: pulse 1.3s infinite;
animation: pulse 1.3s infinite
}
.icon-arrow-menu {
vertical-align: bottom;
width: 18px;
height: 15px
}
#heart {
color: #e41515
}
*,*:before,*:after {
-webkit-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box
}
body {
left: 0;
right: 0;
margin: auto
}
a,aside,.overlay,body {
-webkit-transition: all .25s ease;
transition: all .25s ease
}
a.slideButton,.dosearch {
position: absolute;
display: block;
width: 40px;
height: 40px;
top: 10px;
z-index: 31
}
.slideButton {
left: 10px
}
.dosearch {
right: 10px;
background: #315387;
border-radius: .188rem;
padding: .125rem .188rem
}
.icon-menu {
cursor: pointer;
padding: .313rem;
border-radius: .188rem;
background: #315387;
width: 2.5rem;
height: 2.5rem;
fill: #fff
}
.icon-search {
width: 2.188rem;
height: 2.188rem
}
.overlay {
cursor: pointer
}
#close {
display: none
}
aside {
position: fixed;
height: 163px;
width: 100%;
bottom: -100%;
background: #2f2f33;
z-index: 20;
-webkit-box-shadow: inset -10px -1px 15px -9px rgba(0,0,0,0.5);
box-shadow: inset -10px -1px 15px -9px rgba(0,0,0,0.5);
}
aside li {
margin: 0;
list-style-type: none
}
aside ul {
margin: 0;
padding: 0
}
aside #topmenu {
background-color: #365c96;
border: 2px solid #365c96;
*zoom: 1;
}
aside #topmenu:before,aside #topmenu:after {
content: '';
display: table
}
aside #topmenu:after {
clear: both
}
aside #topmenu ul {
*zoom: 1;
float: left;
clear: none;
text-align: inherit;
width: 63.95%;
margin-left: 0%;
margin-right: 3%;
}
aside #topmenu ul:before,aside #topmenu ul:after {
content: '';
display: table
}
aside #topmenu ul:after {
clear: both
}
aside #topmenu ul:last-child {
margin-right: 0%
}
@media only screen and (max-width:1000px) {
aside #topmenu ul {
*zoom: 1;
float: left;
clear: none;
text-align: inherit;
width: 100%;
margin-left: 0%;
margin-right: 3%
}
aside #topmenu ul:before,aside #topmenu ul:after {
content: '';
display: table
}
aside #topmenu ul:after {
clear: both
}
aside #topmenu ul:last-child {
margin-right: 0%
}
}
aside #topmenu ul:nth-child(2) {
*zoom: 1;
float: left;
clear: none;
text-align: inherit;
width: 33.05%;
margin-left: 0%;
margin-right: 3%;
display: none;
text-align: right;
}
aside #topmenu ul:nth-child(2):before,aside #topmenu ul:nth-child(2):after {
content: '';
display: table
}
aside #topmenu ul:nth-child(2):after {
clear: both
}
aside #topmenu ul:nth-child(2):last-child {
margin-right: 0%
}
aside #topmenu ul:nth-child(2) li:first-child {
background: transparent;
}
aside #topmenu ul:nth-child(2) li:first-child span {
background: transparent;
border-radius: 0;
color: #fff;
width: 45px
}
aside #topmenu ul:nth-child(2) li:nth-child(2) {
padding-left: 20px;
padding-right: 20px
}
aside #topmenu ul:nth-child(2) li:nth-child(3) {
margin-right: -10px;
padding-left: 10px
}
@media only screen and (min-width:1000px) {
aside #topmenu ul:nth-child(2) {
display: block
}
}
aside #topmenu ul li {
-webkit-transform: skewx(-20deg);
transform: skewx(-20deg);
padding: 3px 4px 6px 4px;
background: #2f2f33;
display: inline-block;
}
aside #topmenu ul li:first-child {
background: #efb102;
padding: 4px 10px 4px 20px;
margin-left: -10px;
}
aside #topmenu ul li:first-child span {
border-radius: 100%;
width: 20px;
height: 20px;
text-align: center;
background-color: #000;
color: #efb102;
font-weight: 300
}
aside #topmenu ul li:nth-child(3) {
background: #4591ec;
padding-right: 30px;
padding-left: 30px;
}
aside #topmenu ul li:nth-child(3) span {
color: #fff
}
aside #topmenu ul li span {
-webkit-transform: skewx(20deg);
transform: skewx(20deg);
display: block;
font-family: 'Open Sans',sans-serif;
font-weight: 800;
font-style: normal;
font-size: .813rem;
color: #4591ec
}
@media only screen and (max-width:37.5rem) {
aside #topmenu ul li:nth-child(3),aside #topmenu ul li:nth-child(4) {
display: none
}
}
aside nav ul {
padding: 10px 0 0 10px;
float: left;
margin-right: 80px;
}
aside nav ul .counter-menu {
color: #4591ec;
font-weight: 800;
margin-right: 4px
}
aside nav ul a {
width: 100%;
cursor: pointer;
text-decoration: none;
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
color: #b3b3b1;
}
aside nav ul a:hover {
background: rgba(87,147,241,0.42)
}
aside.slide {
bottom: 0
}
a.slideButton.slide {
pointer-events: none
}
.overlay {
position: fixed;
width: 100%;
height: 100%;
bottom: 0;
left: 0;
pointer-events: none;
background: transparent;
z-index: 30;
}
.overlay.slide {
pointer-events: auto;
bottom: 162px;
background: rgba(0,0,0,0.6)
}
input[type="search"] {
-webkit-box-sizing: content-box;
-ms-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
-webkit-appearance: textfield
}
input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none
}
.search-wrapper {
-webkit-transform: translateY(-400px);
transform: translateY(-400px);
z-index: 9999;
}
.search-wrapper.active {
-webkit-transform: translateY(0);
transform: translateY(0)
}
.search-form {
position: relative;
top: 0;
-webkit-transform: translateX(-200px);
transform: translateX(-200px);
z-index: 9999;
width: 100%;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition: all 200ms 100ms cubic-bezier(0,.6,.4,1);
transition: all 200ms 100ms cubic-bezier(0,.6,.4,1);
}
.search-form h4 {
margin: .625rem 0
}
.search-form .search-field {
width: 100%;
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
font-size: 1.625rem;
color: #fff;
background-color: transparent;
border: 0;
border-bottom: 1px solid #fff;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
background-clip: padding-box;
-webkit-appearance: none;
}
.search-form .search-field:focus {
outline: 0;
-webkit-box-shadow: none;
box-shadow: none
}
.search-form.active {
top: 0;
-webkit-transform: translateX(0);
transform: translateX(0);
-ms-filter: none;
-webkit-filter: none;
filter: none;
opacity: 1
}
.search-form.hidden {
display: none
}
.search-form .icon-remove-sign {
position: absolute;
top: 0;
right: 0;
z-index: 1;
display: block;
fill: #fff;
width: 30px;
height: 30px;
text-align: center;
cursor: pointer
}
.search-form::-webkit-input-placeholder {
font-size: 1.625rem
}
.search-form .search-field::-webkit-search-decoration,.search-form .search-field::-webkit-search-cancel-button,.search-form .search-field::-webkit-search-results-button,.search-form .search-field::-webkit-search-results-decoration {
display: none
}
.search-form .search-list {
position: absolute;
width: 100%;
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal
}
.search-form h4,.search-form li,.search-form p,.search-form a,.search-form a:hover {
color: #fff
}
body.search-overlay {
overflow: hidden;
}
body.search-overlay:after {
position: absolute;
top: 0;
left: 0;
z-index: 9001;
width: 100%;
height: 100%;
min-height: 100%;
background-color: rgba(0,0,0,0.6);
content: '';
}
@media only screen and (max-width:37.5rem) {
body.search-overlay:after {
background-color: #365c96
}
}
.search-wrapper {
position: absolute;
top: 50px;
width: 100%;
padding-right: 10%;
padding-left: 10%;
}
.search-wrapper *zoom 1:after,.search-wrapper *zoom 1:before {
display: table;
line-height: 0;
content: ""
}
.search-wrapper *zoom 1:after {
clear: both
}
.search-wrapper:before,.search-wrapper:after {
display: table;
line-height: 0;
content: ""
}
.search-list {
padding: 0;
margin: 0;
list-style-type: none;
}
.search-list .entry-date {
float: right;
display: none;
font-size: 14px;
text-transform: uppercase
}
.search-list a {
text-decoration: none;
display: block;
padding: .938rem 0;
width: 100%;
border-bottom: 1px solid #fff;
}
.search-list a:hover {
color: #b3b3b3;
border-bottom: 1px solid #b3b3b3
}
@media only screen and (min-width:48em) {
.search-wrapper {
top: 100px
}
.search-list .entry-date {
display: inline
}
}
.tags {
margin-top: 1.875rem;
}
.tags a {
font-size: .875rem;
color: #365c96;
display: inline-block;
border: 1px solid #365c96;
border-radius: .313rem;
padding: .25rem .625rem;
margin-right: .125rem;
margin-bottom: .5rem;
text-decoration: none;
}
.tags a:hover {
color: #1b2e4b;
border: 1px solid #1b2e4b
}
.img-rounded {
border-radius: 50%
}
.aboutme .recent {
list-style: none
}
.aboutme .post-title:before {
content: ""
}
.aboutme h2:hover {
background-color: rgba(87,147,241,0.42)
}
.aboutme li h3 {
font-size: 1.25rem;
margin-bottom: 7px;
position: relative;
}
.aboutme li h3:before {
content: "|>";
font-size: 1.25rem;
color: #000;
position: absolute;
left: -10px;
-webkit-transition: all .2s;
transition: all .2s
}
.aboutme li h3:hover:before {
-webkit-transform: translateX(-10px);
transform: translateX(-10px)
}
html,body {
height: 100%
}
.header-site,.header-post,.page-header {
background: #365c96;
height: 100%;
}
.header-site .content,.header-post .content,.page-header .content {
width: 95%;
position: absolute;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
text-align: center
}
.header-site li {
margin: 0;
list-style-type: none
}
.header-site .person img {
width: 130px;
height: 130px;
border-radius: 100%
}
.header-site .recent {
*zoom: 1;
width: auto;
max-width: 450px;
float: none;
display: block;
margin-right: auto;
margin-left: auto;
padding-left: 0;
padding-right: 0;
}
@media only screen and (max-width:320px) {
.header-site .recent:last-child {
display: none
}
}
.header-site .recent:before,.header-site .recent:after {
content: '';
display: table
}
.header-site .recent:after {
clear: both
}
.header-site .recent p {
text-align: left;
color: #fff
}
.header-site .recent a {
text-decoration: none;
color: #9cf;
}
.header-site .recent a h2 {
text-align: left;
margin: 0;
font-weight: 300;
font-size: 1.063rem;
border-bottom: 1px solid #8774a9;
}
.header-site .recent a h2:hover {
background: rgba(135,116,169,0.42)
}
.header-site h1,.header-site h2 {
color: #fff;
text-align: center
}
.header-site .site-title {
font-size: 1.875rem;
line-height: 1;
display: block;
letter-spacing: 9px;
}
@media only screen and (min-width:37.5rem) {
.header-site .site-title {
letter-spacing: 16px;
margin-bottom: 0;
font-size: 1.25rem
}
}
.header-site .site-description {
font-size: 1.25rem;
display: block;
margin: 1.875rem 0;
}
@media only screen and (min-width:37.5rem) {
.header-site .site-description {
font-size: 2.5rem
}
}
.header-post {
height: 62px;
}
@media only screen and (min-width:90.625rem) {
.header-post {
background: transparent
}
.header-post #open {
position: fixed;
background: transparent
}
}
.header-post p {
margin: 0;
padding-top: 23px;
text-align: center;
color: #fff
}
.page-header {
height: 62px;
}
.page-header h1 {
text-align: center;
text-transform: uppercase;
font-size: 1.875rem;
margin: 0 0 30px;
padding-top: 10px;
color: #fff;
font-weight: 300;
}
@media only screen and (min-width:37.5rem) {
.page-header h1 {
font-size: 1.875rem
}
}
.page_posts .tree-posts {
display: block;
width: 100%
}
.page_posts #search {
background: transparent;
}
.page_posts #search svg {
background-color: transparent
}
.tree-posts {
padding-top: 43px;
width: 347px;
height: 100%;
position: fixed;
background-color: #2f2f33;
overflow-y: auto;
top: 0;
}
@media only screen and (max-width:90.625rem) {
.tree-posts {
display: none
}
}
.tree-posts h3 {
color: #c06a64;
position: relative;
margin: .625rem 0;
}
.tree-posts h3:before {
content: "";
width: 100px;
height: 4px;
position: absolute;
bottom: 0;
background-color: #c06a64
}
.post-item {
text-align: left;
padding: .313rem 1.25rem;
position: relative;
}
.post-item .content {
*zoom: 1;
}
.post-item .content:before,.post-item .content:after {
content: '';
display: table
}
.post-item .content:after {
clear: both
}
@media only screen and (max-width:37.5rem) {
.post-item .content {
text-align: center;
display: block;
clear: both;
float: none;
width: 100%;
margin-left: auto;
margin-right: auto
}
.post-item .content:first-child {
margin-left: auto
}
.post-item .content:last-child {
margin-right: auto
}
}
.post-item .content a {
text-transform: lowercase;
text-decoration: none;
border: none
}
@media only screen and (min-width:37.5rem) {
.post-item .content a {
*zoom: 1;
float: left;
clear: none;
text-align: inherit;
width: 69.1%;
margin-left: 0%;
margin-right: 3%
}
.post-item .content a:before,.post-item .content a:after {
content: '';
display: table
}
.post-item .content a:after {
clear: both
}
.post-item .content a:last-child {
margin-right: 0%
}
}
.post-item .content .date {
color: #365c96
}
.post-item .content .post-title {
color: #c7b288;
position: relative;
padding: 0;
font-size: 1rem;
margin: 0;
text-align: center;
}
.post-item .content .post-title.selected {
background: #365c96
}
.post-item .content .post-title:hover {
background-color: rgba(199,178,136,0.32)
}
@media only screen and (min-width:37.5rem) {
.post-item .content .post-title {
text-align: left;
margin-left: -.625rem;
display: initial;
font-size: 1.063rem;
text-decoration: none
}
}
@media only screen and (min-width:90.625rem) {
.post {
margin-left: 347px
}
}
.post h1:before,.post h2:before,.post h3:before {
color: #365c96;
font-weight: 300;
margin-right: 10px
}
.post h1 {
text-align: center;
margin: 0;
font-size: 1.875rem;
}
@media only screen and (min-width:37.5rem) {
.post h1 {
font-size: 2.5rem
}
}
.post h1:before {
content: "#";
color: #365c96;
font-size: 2.5rem
}
.post .time {
text-align: center;
margin-top: 30px;
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal
}
.post .music-read {
text-align: center
}
.post-content {
padding: 1rem 0;
}
.post-content img {
max-width: 100%;
margin: 1.875rem auto;
display: block
}
.post-content p,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content ul,.post-content ol,.post-content .tags,.post-content iframe {
max-width: 50rem;
padding: 0 1.25rem;
margin: 0 auto 1.875rem;
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
font-size: 1.125rem;
line-height: 2;
letter-spacing: .01rem;
}
@media only screen and (min-width:37.5rem) {
.post-content p,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content ul,.post-content ol,.post-content .tags,.post-content iframe {
font-size: 1.25rem
}
}
.post-content p,.post-content li {
color: #333;
}
.post-content p code,.post-content li code {
color: #555d76
}
.post-content a {
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
color: #365c96;
text-decoration: none;
border-bottom: 2px solid #365c96;
}
.post-content a:hover {
background-color: rgba(87,147,241,0.42)
}
.post-content iframe {
margin-top: 1.875rem;
width: 100%
}
.post-content #twitter-widget-0 {
margin: auto !important
}
.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5 {
font-family: 'Open Sans',sans-serif;
font-weight: 800;
font-style: normal
}
.post-content h1 {
font-size: 1.875rem;
line-height: 1.4;
}
@media only screen and (min-width:37.5rem) {
.post-content h1 {
font-size: 2.813rem
}
}
.post-content h2 {
font-size: 1.375rem;
line-height: 1.4;
}
.post-content h2:before {
content: '##';
font-size: 1.563rem
}
@media only screen and (min-width:37.5rem) {
.post-content h2 {
font-size: 2.188rem
}
}
.post-content h3 {
font-size: 1.125rem;
line-height: 1.4;
}
@media only screen and (min-width:37.5rem) {
.post-content h3 {
font-size: 1.563rem
}
}
.post-content ul,.post-content ol {
padding-left: 2.5rem
}
.post-content ul.post-list {
padding: 0;
}
@media only screen and (max-width:37.5rem) {
.post-content ul.post-list {
padding: 0 1.25rem
}
}
.post-content blockquote {
*zoom: 1;
width: auto;
max-width: 45.625rem;
float: none;
display: block;
margin-right: auto;
margin-left: auto;
padding-left: 0;
padding-right: 0;
border-left: .313rem solid #365c96;
padding: 0 1.875rem;
margin: 3.125rem auto;
}
.post-content blockquote:before,.post-content blockquote:after {
content: '';
display: table
}
.post-content blockquote:after {
clear: both
}
@media only screen and (max-width:37.5rem) {
.post-content blockquote {
width: 70%
}
}
.post-content blockquote p {
color: rgba(0,0,0,0.6);
margin: 0;
}
@media only screen and (max-width:37.5rem) {
.post-content blockquote p {
font-size: 1.125rem;
line-height: 1.5;
padding: 0
}
}
.post-content hr {
*zoom: 1;
width: auto;
max-width: 47.5rem;
float: none;
display: block;
margin-right: auto;
margin-left: auto;
padding-left: 0;
padding-right: 0;
border: 1px solid #f2f2f2;
margin: 50px auto
}
.post-content hr:before,.post-content hr:after {
content: '';
display: table
}
.post-content hr:after {
clear: both
}
.post-content .about_perfil {
width: 200px
}
.share {
*zoom: 1;
width: auto;
max-width: 800px;
float: none;
display: block;
margin-right: auto;
margin-left: auto;
padding-left: 0;
padding-right: 0;
text-align: center;
border-top: 1px solid #f2f2f2;
padding-top: 1.25rem;
}
.share:before,.share:after {
content: '';
display: table
}
.share:after {
clear: both
}
.share svg {
margin: .938rem;
width: 35px;
height: 35px
}
.share a {
text-decoration: none;
}
.share a:hover svg {
fill: #365c96
}
table {
margin: 3.125rem auto;
}
@media only screen and (max-width:37.5rem) {
table {
display: none
}
}
table th,table td {
border: .125rem solid #ccc;
padding: .313rem
}
.tag-title {
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
font-size: 2.25rem;
margin-top: 3.75rem;
*zoom: 1;
width: auto;
max-width: 50rem;
float: none;
display: block;
margin-right: auto;
margin-left: auto;
padding-left: 0;
padding-right: 0;
}
.tag-title:before,.tag-title:after {
content: '';
display: table
}
.tag-title:after {
clear: both
}
@media only screen and (max-width:37.5rem) {
.tag-title {
font-size: 1.75rem;
margin-top: 1.25rem;
padding: 0 1.25rem
}
}
.post-list {
list-style: none;
margin: 1.563rem auto;
}
@media only screen and (max-width:37.5rem) {
.post-list {
padding: 0 1.25rem
}
}
.post-list a {
display: block;
border-bottom: 1px solid #dadada;
padding: .625rem 0;
text-decoration: none;
-webkit-transition: all .5s;
transition: all .5s;
}
.post-list a:hover {
color: #1b2e4b;
border-bottom: 1px solid #1b2e4b
}
.post-list .entry-date {
float: right;
}
@media only screen and (max-width:37.5rem) {
.post-list .entry-date {
display: none
}
}
pre {
width: 100%;
padding: 1.25rem 0;
margin: 1.875rem 0;
font-size: .875rem;
}
@media only screen and (min-width:37.5rem) {
pre {
font-size: 1rem;
padding: 1.25rem 0;
margin: 1.25rem 0
}
}
pre code {
*zoom: 1;
width: auto;
max-width: 50rem;
float: none;
display: block;
margin-right: auto;
margin-left: auto;
padding-left: 0;
padding-right: 0;
padding: 0 1.25rem;
}
pre code:before,pre code:after {
content: '';
display: table
}
pre code:after {
clear: both
}
@media only screen and (max-width:37.5rem) {
pre code {
overflow-x: scroll
}
}
pre span {
line-height: 1.5rem;
font-family: 'Monaco','Consolas','Menlo',monospace
}
.highlight {
white-space: pre;
overflow: auto;
word-wrap: normal;
border-radius: 0;
padding: 20px;
background-color: #2f2f33;
color: #c1c2c3;
margin: 0;
margin-bottom: 30px
}
.highlight .hll {
background-color: #ffc
}
.highlight .gd {
color: #2e3436;
background-color: #0e1416
}
.highlight .gr {
color: #eeeeec;
background-color: #c00
}
.highlight .gi {
color: #babdb6;
background-color: #1f2b2d
}
.highlight .go {
color: #2c3032;
background-color: #2c3032
}
.highlight .kt {
color: #e3e7df
}
.highlight .ni {
color: #888a85
}
.highlight .c,.highlight .cm,.highlight .c1,.highlight .cs {
color: #8d9684
}
.highlight .err,.highlight .g,.highlight .l,.highlight .n,.highlight .x,.highlight .p,.highlight .ge,.highlight .gp,.highlight .gs,.highlight .gt,.highlight .ld,.highlight .s,.highlight .nc,.highlight .nd,.highlight .ne,.highlight .nl,.highlight .nn,.highlight .nx,.highlight .py,.highlight .ow,.highlight .w,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .s2,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx,.highlight .sr,.highlight .s1,.highlight .ss,.highlight .bp {
color: #c1c2c3
}
.highlight .k,.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .nt {
color: #729fcf
}
.highlight .cp,.highlight .gh,.highlight .gu,.highlight .na,.highlight .nf {
color: #e9a94b
}
.highlight .m,.highlight .nb,.highlight .no,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo,.highlight .il {
color: #8ae234
}
.highlight .o {
color: #989daa
}
.highlight .nv,.highlight .vc,.highlight .vg,.highlight .vi {
color: #fff
}
.author {
background: #f2f2f2;
display: table;
width: 100%;
padding: 2.5rem 0;
margin: 2.5rem 0;
}
@media only screen and (min-width:37.5rem) {
.author {
padding: 3.125rem 0
}
}
.author .details {
margin: auto;
max-width: 50rem;
padding: 0 1.25rem;
}
@media only screen and (max-width:37.5rem) {
.author .details {
text-align: center
}
}
.author img {
border-radius: 50%;
display: block;
margin: auto;
}
@media only screen and (min-width:37.5rem) {
.author img {
float: left;
margin-right: 3.125rem
}
}
.author .def {
color: #808080;
font-size: 1.125rem;
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
margin: .625rem;
}
@media only screen and (min-width:37.5rem) {
.author .def {
margin: 0;
padding-top: 1.563rem
}
}
.author .name {
margin: 0;
}
.author .name a {
font-family: 'Open Sans',sans-serif;
font-weight: 800;
font-style: normal;
text-decoration: none;
color: #000;
font-size: 1.875rem;
}
.author .name a:hover {
color: #365c96
}
@media only screen and (min-width:37.5rem) {
.author .name a {
font-size: 2.813rem
}
}
.author .desc {
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
margin: .625rem;
font-size: 1rem;
}
@media only screen and (min-width:37.5rem) {
.author .desc {
font-size: 1.25rem
}
}
.author .email {
text-decoration: none;
color: #365c96
}
.comments {
*zoom: 1;
width: auto;
max-width: 50rem;
float: none;
display: block;
margin-right: auto;
margin-left: auto;
padding-left: 0;
padding-right: 0;
padding: 0 1.25rem;
}
.comments:before,.comments:after {
content: '';
display: table
}
.comments:after {
clear: both
}
.comments h3 {
margin: 0 0 1.875rem;
font-size: 1.875rem
}
footer {
background: #365c96;
padding: 1.563rem 0;
margin-top: 100px;
clear: both;
}
footer p {
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
color: #fff;
text-align: center;
margin: 0
} | assets/css/main.css | pre {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%
}
body {
margin: 0
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary {
display: block
}
audio,canvas,progress,video {
display: inline-block;
vertical-align: baseline
}
audio:not([controls]) {
display: none;
height: 0
}
[hidden],template {
display: none
}
a {
background: transparent
}
a:active,a:hover {
outline: 0
}
abbr[title] {
border-bottom: 1px dotted
}
b,strong {
font-weight: bold
}
dfn {
font-style: italic
}
h1 {
font-size: 2em;
margin: .67em 0
}
mark {
background: #ff0;
color: #000
}
small {
font-size: 80%
}
sub,sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline
}
sup {
top: -.5em
}
sub {
bottom: -.25em
}
img {
border: 0
}
svg:not(:root) {
overflow: hidden
}
figure {
margin: 1em 40px
}
hr {
-webkit-box-sizing: content-box;
box-sizing: content-box;
height: 0
}
pre {
overflow: auto
}
code,kbd,pre,samp {
font-family: monospace,monospace;
font-size: 1em
}
button,input,optgroup,select,textarea {
color: inherit;
font: inherit;
margin: 0
}
button {
overflow: visible
}
button,select {
text-transform: none
}
button,html input[type="button"],input[type="reset"],input[type="submit"] {
-webkit-appearance: button;
cursor: pointer
}
button[disabled],html input[disabled] {
cursor: default
}
button::-moz-focus-inner,input::-moz-focus-inner {
border: 0;
padding: 0
}
input {
line-height: normal
}
input[type="checkbox"],input[type="radio"] {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0
}
input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button {
height: auto
}
input[type="search"] {
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;
box-sizing: content-box
}
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: .35em .625em .75em
}
legend {
border: 0;
padding: 0
}
textarea {
overflow: auto
}
optgroup {
font-weight: bold
}
table {
border-collapse: collapse;
border-spacing: 0
}
td,th {
padding: 0
}
a {
-webkit-tap-highlight-color: rgba(0,0,0,0)
}
@font-face {
font-family:'Open Sans';font-style:normal;font-weight:300;src:local('Open Sans Light'),local('OpenSans-Light'),url("https://fonts.gstatic.com/s/opensans/v10/DXI1ORHCpsQm3Vp6mXoaTRampu5_7CjHW5spxoeN3Vs.woff2") format('woff2')
}
@font-face {
font-family:'Open Sans';font-style:normal;font-weight:800;src:local('Open Sans Extrabold'),local('OpenSans-Extrabold'),url("https://fonts.gstatic.com/s/opensans/v10/EInbV5DfGHOiMmvb1Xr-hiYtBUPDK3WL7KRKS_3q7OE.woff2") format('woff2')
}
h1,h2,h3,h4 {
font-family: 'Open Sans',sans-serif;
font-weight: 800;
font-style: normal
}
@-webkit-keyframes animateGradient {
0% {
background-position: 100% 90%
}
99% {
background-position: 0% 90%
}
100% {
background-position: 0% 90%;
background-size: 200% 7px
}
}
@keyframes animateGradient {
0% {
background-position: 100% 90%
}
99% {
background-position: 0% 90%
}
100% {
background-position: 0% 90%;
background-size: 200% 7px
}
}
.icons-home {
text-align: center;
}
.icons-home a {
display: inline-block;
padding: .938rem;
margin: .125rem;
border-radius: 50%;
border: .125rem solid #fff;
line-height: 0;
-webkit-transition: all .7s;
transition: all .7s;
}
.icons-home a .icon {
fill: #fff;
width: 18px;
height: 18px;
}
@media only screen and (min-width:37.5rem) {
.icons-home a .icon {
width: 30px;
height: 30px
}
}
.icons-home a:hover {
background: #fff;
}
.icons-home a:hover .icon {
fill: #365c96
}
.down {
position: absolute;
bottom: 50px;
width: 100%;
display: block;
text-align: center;
}
.down .icon {
position: absolute;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
width: 100px;
height: 100px;
fill: #fff;
-webkit-animation: pulse 1.3s infinite;
animation: pulse 1.3s infinite
}
.icon-arrow-menu {
vertical-align: bottom;
width: 18px;
height: 15px
}
#heart {
color: #e41515
}
*,*:before,*:after {
-webkit-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box
}
body {
left: 0;
right: 0;
margin: auto
}
a,aside,.overlay,body {
-webkit-transition: all .25s ease;
transition: all .25s ease
}
a.slideButton,.dosearch {
position: absolute;
display: block;
width: 40px;
height: 40px;
top: 10px;
z-index: 31
}
.slideButton {
left: 10px
}
.dosearch {
right: 10px;
background: #315387;
border-radius: .188rem;
padding: .125rem .188rem
}
.icon-menu {
cursor: pointer;
padding: .313rem;
border-radius: .188rem;
background: #315387;
width: 2.5rem;
height: 2.5rem;
fill: #fff
}
.icon-search {
width: 2.188rem;
height: 2.188rem
}
.overlay {
cursor: pointer
}
#close {
display: none
}
aside {
position: fixed;
height: 163px;
width: 100%;
bottom: -100%;
background: #2f2f33;
z-index: 20;
-webkit-box-shadow: inset -10px -1px 15px -9px rgba(0,0,0,0.5);
box-shadow: inset -10px -1px 15px -9px rgba(0,0,0,0.5);
}
aside li {
margin: 0;
list-style-type: none
}
aside ul {
margin: 0;
padding: 0
}
aside #topmenu {
background-color: #365c96;
border: 2px solid #365c96;
*zoom: 1;
}
aside #topmenu:before,aside #topmenu:after {
content: '';
display: table
}
aside #topmenu:after {
clear: both
}
aside #topmenu ul {
*zoom: 1;
float: left;
clear: none;
text-align: inherit;
width: 63.95%;
margin-left: 0%;
margin-right: 3%;
}
aside #topmenu ul:before,aside #topmenu ul:after {
content: '';
display: table
}
aside #topmenu ul:after {
clear: both
}
aside #topmenu ul:last-child {
margin-right: 0%
}
@media only screen and (max-width:1000px) {
aside #topmenu ul {
*zoom: 1;
float: left;
clear: none;
text-align: inherit;
width: 100%;
margin-left: 0%;
margin-right: 3%
}
aside #topmenu ul:before,aside #topmenu ul:after {
content: '';
display: table
}
aside #topmenu ul:after {
clear: both
}
aside #topmenu ul:last-child {
margin-right: 0%
}
}
aside #topmenu ul:nth-child(2) {
*zoom: 1;
float: left;
clear: none;
text-align: inherit;
width: 33.05%;
margin-left: 0%;
margin-right: 3%;
display: none;
text-align: right;
}
aside #topmenu ul:nth-child(2):before,aside #topmenu ul:nth-child(2):after {
content: '';
display: table
}
aside #topmenu ul:nth-child(2):after {
clear: both
}
aside #topmenu ul:nth-child(2):last-child {
margin-right: 0%
}
aside #topmenu ul:nth-child(2) li:first-child {
background: transparent;
}
aside #topmenu ul:nth-child(2) li:first-child span {
background: transparent;
border-radius: 0;
color: #fff;
width: 45px
}
aside #topmenu ul:nth-child(2) li:nth-child(2) {
padding-left: 20px;
padding-right: 20px
}
aside #topmenu ul:nth-child(2) li:nth-child(3) {
margin-right: -10px;
padding-left: 10px
}
@media only screen and (min-width:1000px) {
aside #topmenu ul:nth-child(2) {
display: block
}
}
aside #topmenu ul li {
-webkit-transform: skewx(-20deg);
transform: skewx(-20deg);
padding: 3px 4px 6px 4px;
background: #2f2f33;
display: inline-block;
}
aside #topmenu ul li:first-child {
background: #efb102;
padding: 4px 10px 4px 20px;
margin-left: -10px;
}
aside #topmenu ul li:first-child span {
border-radius: 100%;
width: 20px;
height: 20px;
text-align: center;
background-color: #000;
color: #efb102;
font-weight: 300
}
aside #topmenu ul li:nth-child(3) {
background: #4591ec;
padding-right: 30px;
padding-left: 30px;
}
aside #topmenu ul li:nth-child(3) span {
color: #fff
}
aside #topmenu ul li span {
-webkit-transform: skewx(20deg);
transform: skewx(20deg);
display: block;
font-family: 'Open Sans',sans-serif;
font-weight: 800;
font-style: normal;
font-size: .813rem;
color: #4591ec
}
@media only screen and (max-width:37.5rem) {
aside #topmenu ul li:nth-child(3),aside #topmenu ul li:nth-child(4) {
display: none
}
}
aside nav ul {
padding: 10px 0 0 10px;
float: left;
margin-right: 80px;
}
aside nav ul .counter-menu {
color: #4591ec;
font-weight: 800;
margin-right: 4px
}
aside nav ul a {
width: 100%;
cursor: pointer;
text-decoration: none;
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
color: #b3b3b1;
}
aside nav ul a:hover {
background: rgba(87,147,241,0.42)
}
aside.slide {
bottom: 0
}
a.slideButton.slide {
pointer-events: none
}
.overlay {
position: fixed;
width: 100%;
height: 100%;
bottom: 0;
left: 0;
pointer-events: none;
background: transparent;
z-index: 30;
}
.overlay.slide {
pointer-events: auto;
bottom: 162px;
background: rgba(0,0,0,0.6)
}
input[type="search"] {
-webkit-box-sizing: content-box;
-ms-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
-webkit-appearance: textfield
}
input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none
}
.search-wrapper {
-webkit-transform: translateY(-400px);
transform: translateY(-400px);
z-index: 9999;
}
.search-wrapper.active {
-webkit-transform: translateY(0);
transform: translateY(0)
}
.search-form {
position: relative;
top: 0;
-webkit-transform: translateX(-200px);
transform: translateX(-200px);
z-index: 9999;
width: 100%;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition: all 200ms 100ms cubic-bezier(0,.6,.4,1);
transition: all 200ms 100ms cubic-bezier(0,.6,.4,1);
}
.search-form h4 {
margin: .625rem 0
}
.search-form .search-field {
width: 100%;
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
font-size: 1.625rem;
color: #fff;
background-color: transparent;
border: 0;
border-bottom: 1px solid #fff;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
background-clip: padding-box;
-webkit-appearance: none;
}
.search-form .search-field:focus {
outline: 0;
-webkit-box-shadow: none;
box-shadow: none
}
.search-form.active {
top: 0;
-webkit-transform: translateX(0);
transform: translateX(0);
-ms-filter: none;
-webkit-filter: none;
filter: none;
opacity: 1
}
.search-form.hidden {
display: none
}
.search-form .icon-remove-sign {
position: absolute;
top: 0;
right: 0;
z-index: 1;
display: block;
fill: #fff;
width: 30px;
height: 30px;
text-align: center;
cursor: pointer
}
.search-form::-webkit-input-placeholder {
font-size: 1.625rem
}
.search-form .search-field::-webkit-search-decoration,.search-form .search-field::-webkit-search-cancel-button,.search-form .search-field::-webkit-search-results-button,.search-form .search-field::-webkit-search-results-decoration {
display: none
}
.search-form .search-list {
position: absolute;
width: 100%;
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal
}
.search-form h4,.search-form li,.search-form p,.search-form a,.search-form a:hover {
color: #fff
}
body.search-overlay {
overflow: hidden;
}
body.search-overlay:after {
position: absolute;
top: 0;
left: 0;
z-index: 9001;
width: 100%;
height: 100%;
min-height: 100%;
background-color: rgba(0,0,0,0.6);
content: '';
}
@media only screen and (max-width:37.5rem) {
body.search-overlay:after {
background-color: #365c96
}
}
.search-wrapper {
position: absolute;
top: 50px;
width: 100%;
padding-right: 10%;
padding-left: 10%;
}
.search-wrapper *zoom 1:after,.search-wrapper *zoom 1:before {
display: table;
line-height: 0;
content: ""
}
.search-wrapper *zoom 1:after {
clear: both
}
.search-wrapper:before,.search-wrapper:after {
display: table;
line-height: 0;
content: ""
}
.search-list {
padding: 0;
margin: 0;
list-style-type: none;
}
.search-list .entry-date {
float: right;
display: none;
font-size: 14px;
text-transform: uppercase
}
.search-list a {
text-decoration: none;
display: block;
padding: .938rem 0;
width: 100%;
border-bottom: 1px solid #fff;
}
.search-list a:hover {
color: #b3b3b3;
border-bottom: 1px solid #b3b3b3
}
@media only screen and (min-width:48em) {
.search-wrapper {
top: 100px
}
.search-list .entry-date {
display: inline
}
}
.tags {
margin-top: 1.875rem;
}
.tags a {
font-size: .875rem;
color: #365c96;
display: inline-block;
border: 1px solid #365c96;
border-radius: .313rem;
padding: .25rem .625rem;
margin-right: .125rem;
margin-bottom: .5rem;
text-decoration: none;
}
.tags a:hover {
color: #1b2e4b;
border: 1px solid #1b2e4b
}
.img-rounded {
border-radius: 50%
}
.aboutme .recent {
list-style: none
}
.aboutme .post-title:before {
content: ""
}
.aboutme h2:hover {
background-color: rgba(87,147,241,0.42)
}
.aboutme li h3 {
font-size: 1.25rem;
margin-bottom: 7px;
position: relative;
}
.aboutme li h3:before {
content: "|>";
font-size: 1.25rem;
color: #000;
position: absolute;
left: -10px;
-webkit-transition: all .2s;
transition: all .2s
}
.aboutme li h3:hover:before {
-webkit-transform: translateX(-10px);
transform: translateX(-10px)
}
html,body {
height: 100%
}
.header-site,.header-post,.page-header {
background: #365c96;
height: 100%;
}
.header-site .content,.header-post .content,.page-header .content {
width: 95%;
position: absolute;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
text-align: center
}
.header-site li {
margin: 0;
list-style-type: none
}
.header-site .person img {
width: 130px;
height: 130px;
border-radius: 100%
}
.header-site .recent {
*zoom: 1;
width: auto;
max-width: 450px;
float: none;
display: block;
margin-right: auto;
margin-left: auto;
padding-left: 0;
padding-right: 0;
}
@media only screen and (max-width:320px) {
.header-site .recent:last-child {
display: none
}
}
.header-site .recent:before,.header-site .recent:after {
content: '';
display: table
}
.header-site .recent:after {
clear: both
}
.header-site .recent p {
text-align: left;
color: #fff
}
.header-site .recent a {
text-decoration: none;
color: #9cf;
}
.header-site .recent a h2 {
text-align: left;
margin: 0;
font-weight: 300;
font-size: 1.063rem;
border-bottom: 1px solid #8774a9;
}
.header-site .recent a h2:hover {
background: rgba(135,116,169,0.42)
}
.header-site h1,.header-site h2 {
color: #fff;
text-align: center
}
.header-site .site-title {
font-size: 1.875rem;
line-height: 1;
display: block;
letter-spacing: 9px;
}
@media only screen and (min-width:37.5rem) {
.header-site .site-title {
letter-spacing: 16px;
margin-bottom: 0;
font-size: 1.25rem
}
}
.header-site .site-description {
font-size: 1.25rem;
display: block;
margin: 1.875rem 0;
}
@media only screen and (min-width:37.5rem) {
.header-site .site-description {
font-size: 2.5rem
}
}
.header-post {
height: 62px;
}
@media only screen and (min-width:90.625rem) {
.header-post {
background: transparent
}
.header-post #open {
position: fixed;
background: transparent
}
}
.header-post p {
margin: 0;
padding-top: 23px;
text-align: center;
color: #fff
}
.page-header {
height: 62px;
}
.page-header h1 {
text-align: center;
text-transform: uppercase;
font-size: 1.875rem;
margin: 0 0 30px;
padding-top: 10px;
color: #fff;
font-weight: 300;
}
@media only screen and (min-width:37.5rem) {
.page-header h1 {
font-size: 1.875rem
}
}
.page_posts .tree-posts {
display: block;
width: 100%
}
.page_posts #search {
background: transparent;
}
.page_posts #search svg {
background-color: transparent
}
.tree-posts {
padding-top: 43px;
width: 347px;
height: 100%;
position: fixed;
background-color: #2f2f33;
overflow-y: auto;
top: 0;
}
@media only screen and (max-width:90.625rem) {
.tree-posts {
display: none
}
}
.tree-posts h3 {
color: #c06a64;
position: relative;
margin: .625rem 0;
}
.tree-posts h3:before {
content: "";
width: 100px;
height: 4px;
position: absolute;
bottom: 0;
background-color: #c06a64
}
.post-item {
text-align: left;
padding: .313rem 1.25rem;
position: relative;
}
.post-item .content {
*zoom: 1;
}
.post-item .content:before,.post-item .content:after {
content: '';
display: table
}
.post-item .content:after {
clear: both
}
@media only screen and (max-width:37.5rem) {
.post-item .content {
text-align: center;
display: block;
clear: both;
float: none;
width: 100%;
margin-left: auto;
margin-right: auto
}
.post-item .content:first-child {
margin-left: auto
}
.post-item .content:last-child {
margin-right: auto
}
}
.post-item .content a {
text-transform: lowercase;
text-decoration: none;
border: none
}
@media only screen and (min-width:37.5rem) {
.post-item .content a {
*zoom: 1;
float: left;
clear: none;
text-align: inherit;
width: 69.1%;
margin-left: 0%;
margin-right: 3%
}
.post-item .content a:before,.post-item .content a:after {
content: '';
display: table
}
.post-item .content a:after {
clear: both
}
.post-item .content a:last-child {
margin-right: 0%
}
}
.post-item .content .date {
color: #365c96
}
.post-item .content .post-title {
color: #c7b288;
position: relative;
padding: 0;
font-size: 1rem;
margin: 0;
text-align: center;
}
.post-item .content .post-title.selected {
background: #365c96
}
.post-item .content .post-title:hover {
background-color: rgba(199,178,136,0.32)
}
@media only screen and (min-width:37.5rem) {
.post-item .content .post-title {
text-align: left;
margin-left: -.625rem;
display: initial;
font-size: 1.063rem;
text-decoration: none
}
}
@media only screen and (min-width:90.625rem) {
.post {
margin-left: 347px
}
}
.post h1:before,.post h2:before,.post h3:before {
color: #365c96;
font-weight: 300;
margin-right: 10px
}
.post h1 {
text-align: center;
margin: 0;
font-size: 1.875rem;
}
@media only screen and (min-width:37.5rem) {
.post h1 {
font-size: 2.5rem
}
}
.post h1:before {
content: "#";
color: #365c96;
font-size: 2.5rem
}
.post .time {
text-align: center;
margin-top: 30px;
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal
}
.post .music-read {
text-align: center
}
.post-content {
padding: 1rem 0;
}
.post-content img {
max-width: 100%;
margin: 1.875rem auto;
display: block
}
.post-content p,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content ul,.post-content ol,.post-content .tags,.post-content iframe {
max-width: 50rem;
padding: 0 1.25rem;
margin: 0 auto 1.875rem;
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
font-size: 1.125rem;
line-height: 2;
letter-spacing: .01rem;
}
@media only screen and (min-width:37.5rem) {
.post-content p,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content ul,.post-content ol,.post-content .tags,.post-content iframe {
font-size: 1.25rem
}
}
.post-content p,.post-content li {
color: #333;
}
.post-content p code,.post-content li code {
color: #555d76
}
.post-content a {
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
color: #365c96;
text-decoration: none;
border-bottom: 2px solid #365c96;
}
.post-content a:hover {
background-color: rgba(87,147,241,0.42)
}
.post-content iframe {
margin-top: 1.875rem;
width: 100%
}
.post-content #twitter-widget-0 {
margin: auto !important
}
.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5 {
font-family: 'Open Sans',sans-serif;
font-weight: 800;
font-style: normal
}
.post-content h1 {
font-size: 1.875rem;
line-height: 1.4;
}
@media only screen and (min-width:37.5rem) {
.post-content h1 {
font-size: 2.813rem
}
}
.post-content h2 {
font-size: 1.375rem;
line-height: 1.4;
}
.post-content h2:before {
content: '##';
font-size: 1.563rem
}
@media only screen and (min-width:37.5rem) {
.post-content h2 {
font-size: 2.188rem
}
}
.post-content h3 {
font-size: 1.125rem;
line-height: 1.4;
}
@media only screen and (min-width:37.5rem) {
.post-content h3 {
font-size: 1.563rem
}
}
.post-content ul,.post-content ol {
padding-left: 2.5rem
}
.post-content ul.post-list {
padding: 0;
}
@media only screen and (max-width:37.5rem) {
.post-content ul.post-list {
padding: 0 1.25rem
}
}
.post-content blockquote {
*zoom: 1;
width: auto;
max-width: 45.625rem;
float: none;
display: block;
margin-right: auto;
margin-left: auto;
padding-left: 0;
padding-right: 0;
border-left: .313rem solid #365c96;
padding: 0 1.875rem;
margin: 3.125rem auto;
}
.post-content blockquote:before,.post-content blockquote:after {
content: '';
display: table
}
.post-content blockquote:after {
clear: both
}
@media only screen and (max-width:37.5rem) {
.post-content blockquote {
width: 70%
}
}
.post-content blockquote p {
color: rgba(0,0,0,0.6);
margin: 0;
}
@media only screen and (max-width:37.5rem) {
.post-content blockquote p {
font-size: 1.125rem;
line-height: 1.5;
padding: 0
}
}
.post-content hr {
*zoom: 1;
width: auto;
max-width: 47.5rem;
float: none;
display: block;
margin-right: auto;
margin-left: auto;
padding-left: 0;
padding-right: 0;
border: 1px solid #f2f2f2;
margin: 50px auto
}
.post-content hr:before,.post-content hr:after {
content: '';
display: table
}
.post-content hr:after {
clear: both
}
.post-content .about_perfil {
width: 200px
}
.share {
*zoom: 1;
width: auto;
max-width: 800px;
float: none;
display: block;
margin-right: auto;
margin-left: auto;
padding-left: 0;
padding-right: 0;
text-align: center;
border-top: 1px solid #f2f2f2;
padding-top: 1.25rem;
}
.share:before,.share:after {
content: '';
display: table
}
.share:after {
clear: both
}
.share svg {
margin: .938rem;
width: 35px;
height: 35px
}
.share a {
text-decoration: none;
}
.share a:hover svg {
fill: #365c96
}
table {
margin: 3.125rem auto;
}
@media only screen and (max-width:37.5rem) {
table {
display: none
}
}
table th,table td {
border: .125rem solid #ccc;
padding: .313rem
}
.tag-title {
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
font-size: 2.25rem;
margin-top: 3.75rem;
*zoom: 1;
width: auto;
max-width: 50rem;
float: none;
display: block;
margin-right: auto;
margin-left: auto;
padding-left: 0;
padding-right: 0;
}
.tag-title:before,.tag-title:after {
content: '';
display: table
}
.tag-title:after {
clear: both
}
@media only screen and (max-width:37.5rem) {
.tag-title {
font-size: 1.75rem;
margin-top: 1.25rem;
padding: 0 1.25rem
}
}
.post-list {
list-style: none;
margin: 1.563rem auto;
}
@media only screen and (max-width:37.5rem) {
.post-list {
padding: 0 1.25rem
}
}
.post-list a {
display: block;
border-bottom: 1px solid #dadada;
padding: .625rem 0;
text-decoration: none;
-webkit-transition: all .5s;
transition: all .5s;
}
.post-list a:hover {
color: #1b2e4b;
border-bottom: 1px solid #1b2e4b
}
.post-list .entry-date {
float: right;
}
@media only screen and (max-width:37.5rem) {
.post-list .entry-date {
display: none
}
}
pre {
width: 100%;
padding: 1.25rem 0;
margin: 1.875rem 0;
font-size: .875rem;
}
@media only screen and (min-width:37.5rem) {
pre {
font-size: 1rem;
padding: 1.25rem 0;
margin: 1.25rem 0
}
}
pre code {
*zoom: 1;
width: auto;
max-width: 50rem;
float: none;
display: block;
margin-right: auto;
margin-left: auto;
padding-left: 0;
padding-right: 0;
padding: 0 1.25rem;
}
pre code:before,pre code:after {
content: '';
display: table
}
pre code:after {
clear: both
}
@media only screen and (max-width:37.5rem) {
pre code {
overflow-x: scroll
}
}
pre span {
line-height: 1.5rem;
font-family: 'Monaco','Consolas','Menlo',monospace
}
.highlight {
white-space: pre;
overflow: auto;
word-wrap: normal;
border-radius: 0;
padding: 20px;
background-color: #2f2f33;
color: #c1c2c3;
margin: 0;
margin-bottom: 30px
}
.highlight .hll {
background-color: #ffc
}
.highlight .gd {
color: #2e3436;
background-color: #0e1416
}
.highlight .gr {
color: #eeeeec;
background-color: #c00
}
.highlight .gi {
color: #babdb6;
background-color: #1f2b2d
}
.highlight .go {
color: #2c3032;
background-color: #2c3032
}
.highlight .kt {
color: #e3e7df
}
.highlight .ni {
color: #888a85
}
.highlight .c,.highlight .cm,.highlight .c1,.highlight .cs {
color: #8d9684
}
.highlight .err,.highlight .g,.highlight .l,.highlight .n,.highlight .x,.highlight .p,.highlight .ge,.highlight .gp,.highlight .gs,.highlight .gt,.highlight .ld,.highlight .s,.highlight .nc,.highlight .nd,.highlight .ne,.highlight .nl,.highlight .nn,.highlight .nx,.highlight .py,.highlight .ow,.highlight .w,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .s2,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx,.highlight .sr,.highlight .s1,.highlight .ss,.highlight .bp {
color: #c1c2c3
}
.highlight .k,.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .nt {
color: #729fcf
}
.highlight .cp,.highlight .gh,.highlight .gu,.highlight .na,.highlight .nf {
color: #e9a94b
}
.highlight .m,.highlight .nb,.highlight .no,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo,.highlight .il {
color: #8ae234
}
.highlight .o {
color: #989daa
}
.highlight .nv,.highlight .vc,.highlight .vg,.highlight .vi {
color: #fff
}
.author {
background: #f2f2f2;
display: table;
width: 100%;
padding: 2.5rem 0;
margin: 2.5rem 0;
}
@media only screen and (min-width:37.5rem) {
.author {
padding: 3.125rem 0
}
}
.author .details {
margin: auto;
max-width: 50rem;
padding: 0 1.25rem;
}
@media only screen and (max-width:37.5rem) {
.author .details {
text-align: center
}
}
.author img {
border-radius: 50%;
display: block;
margin: auto;
}
@media only screen and (min-width:37.5rem) {
.author img {
float: left;
margin-right: 3.125rem
}
}
.author .def {
color: #808080;
font-size: 1.125rem;
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
margin: .625rem;
}
@media only screen and (min-width:37.5rem) {
.author .def {
margin: 0;
padding-top: 1.563rem
}
}
.author .name {
margin: 0;
}
.author .name a {
font-family: 'Open Sans',sans-serif;
font-weight: 800;
font-style: normal;
text-decoration: none;
color: #000;
font-size: 1.875rem;
}
.author .name a:hover {
color: #365c96
}
@media only screen and (min-width:37.5rem) {
.author .name a {
font-size: 2.813rem
}
}
.author .desc {
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
margin: .625rem;
font-size: 1rem;
}
@media only screen and (min-width:37.5rem) {
.author .desc {
font-size: 1.25rem
}
}
.author .email {
text-decoration: none;
color: #365c96
}
.comments {
*zoom: 1;
width: auto;
max-width: 50rem;
float: none;
display: block;
margin-right: auto;
margin-left: auto;
padding-left: 0;
padding-right: 0;
padding: 0 1.25rem;
}
.comments:before,.comments:after {
content: '';
display: table
}
.comments:after {
clear: both
}
.comments h3 {
margin: 0 0 1.875rem;
font-size: 1.875rem
}
footer {
background: #365c96;
padding: 1.563rem 0;
margin-top: 100px;
clear: both;
}
footer p {
font-family: 'Open Sans',sans-serif;
font-weight: 300;
font-style: normal;
color: #fff;
text-align: center;
margin: 0
} | 0.408159 | 0.138782 |
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');
*, *::before, *::after {
box-sizing: border-box;
}
body {
font-family: 'Lato', sans-serif;
line-height: 24px;
font-size: 14px;
font-style: normal;
font-weight: 400;
visibility: visible;
color: #000;
letter-spacing: 0.05em;
}
/* general css */
.fix {
overflow: hidden;
}
.hidden {
display: none;
}
.clear {
clear: both;
}
.container {
max-width: 1170px;
}
@media only screen and (max-width: 767px) {
.container {
width: 450px;
}
}
@media only screen and (max-width: 479px) {
.container {
width: 100%;
}
}
.capitalize {
text-transform: capitalize;
}
.uppercase {
text-transform: uppercase;
}
.no-gutters>.col, .no-gutters>[class*="col-"] {
padding-right: 0;
padding-left: 0;
margin: 0;
}
.off_canvas_overlay {
width: 100%;
height: 100%;
position: fixed;
z-index: 99;
opacity: 0;
visibility: hidden;
cursor: crosshair;
background: #000;
top: 0;
}
.off_canvas_overlay.active {
opacity: 0.5;
visibility: visible;
}
.offcanvas_menu {
display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.offcanvas_menu {
display: block;
}
}
@media only screen and (max-width: 767px) {
.offcanvas_menu {
display: block;
}
.offcanvas_two .canvas_open {
top: 18px;
}
}
.offcanvas_two .canvas_open a:hover {
color: #cc9900;
border-color: #cc9900;
}
.canvas_open {
position: absolute;
right: 17px;
top: 34px;
z-index: 9;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.canvas_open {
right: 25px;
top: 26px;
}
}
@media only screen and (max-width: 767px) {
.canvas_open {
right: 19px;
top: 28px;
}
}
.canvas_open a {
font-size: 30px;
width: 43px;
height: 40px;
display: block;
line-height: 39px;
text-align: center;
color: #555;
border: 1px solid #555;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.canvas_open a {
width: 33px;
height: 33px;
line-height: 30px;
font-size: 26px;
}
}
@media only screen and (max-width: 767px) {
.canvas_open a {
width: 30px;
height: 30px;
line-height: 26px;
font-size: 24px;
}
}
.canvas_open a:hover {
color: #bda87f;
border-color: #bda87f;
}
.canvas_close {
position: absolute;
top: 10px;
right: 13px;
}
.canvas_close a {
font-size: 18px;
text-transform: uppercase;
font-weight: 500;
width: 32px;
height: 32px;
display: block;
text-align: center;
line-height: 31px;
border: 1px solid #8b1b46;
border-radius: 50%;
color: #58240c;
}
.canvas_close a:hover {
background: #bda87f;
border-color: #bda87f;
color: aliceblue;
}
.offcanvas_menu_wrapper {
width: 290px;
position: fixed;
background: #fff;
z-index: 99;
top: 0;
height: 100vh;
transition: 0.5s;
left: 0;
margin-left: -300px;
padding: 50px 15px 30px;
overflow-y: auto;
}
.offcanvas_menu_wrapper.active {
margin-left: 0;
}
.offcanvas_menu_wrapper .header_account {
display: block;
}
ul {
list-style: outside none none;
margin: 0;
padding: 0;
}
/*
.list-unstyled{
list-style: none;
}*/
.header_account {
margin-right: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.header_account {
margin-right: 25px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.header_account {
display: none;
margin-right: 0;
margin-bottom: 20px;
text-align: center;
}
}
@media only screen and (max-width: 767px) {
.header_account {
display: none;
margin-right: 0;
margin-bottom: 20px;
text-align: center;
}
}
.header_account>ul>li {
display: inline-block;
position: relative;
margin-right: 30px;
}
.header_account>ul>li:last-child {
margin-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.header_account>ul>li {
margin-right: 0;
}
.header_account>ul>li:hover>a {
color: #fff;
}
}
@media only screen and (max-width: 767px) {
.header_account>ul>li {
margin-right: 0;
}
.header_account>ul>li:hover>a {
color: #fff;
}
}
.header_account>ul>li:hover ul.dropdown_currency, .header_account>ul>li:hover ul.dropdown_language, .header_account>ul>li:hover ul.dropdown_links {
visibility: visible;
max-height: 200px;
}
.header_account>ul>li:hover>a {
color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.header_account>ul>li:hover>a {
color: #bda87f;
}
}
@media only screen and (max-width: 767px) {
.header_account>ul>li:hover>a {
color: #bda87f;
}
}
.header_account>ul>li>a {
text-transform: uppercase;
line-height: 50px;
font-size: 12px;
display: inline-block;
font-weight: 400;
color: #999;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.header_account>ul>li>a {
line-height: 22px;
color: #000;
}
}
@media only screen and (max-width: 767px) {
.header_account>ul>li>a {
line-height: 22px;
color: #000;
}
}
.header_account>ul>li>a i {
margin-left: 3px;
margin-right: 15px;
}
.header_account>ul>li>a img {
margin-right: 4px;
}
.header_account>ul>li:hover a:not([href]):not([tabindex]) {
color: #bda87f;
}
.dropdown_currency, .dropdown_language, .dropdown_links {
position: absolute;
background: #fff;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
min-width: 130px;
text-align: left;
top: 100%;
left: 0;
transition: all 0.5s ease-out;
overflow: hidden;
border-radius: 3px;
visibility: hidden;
max-height: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.dropdown_currency, .dropdown_language, .dropdown_links {
left: -30px;
}
}
@media only screen and (max-width: 767px) {
.dropdown_currency, .dropdown_language, .dropdown_links {
left: -30px;
}
}
.dropdown_currency li a, .dropdown_language li a, .dropdown_links li a {
text-transform: uppercase;
display: block;
font-size: 12px;
white-space: nowrap;
padding: 8px 8px 8px 20px;
line-height: 20px;
color: #000;
}
.dropdown_currency li a:hover, .dropdown_language li a:hover, .dropdown_links li a:hover {
background: #f2f2f2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.dropdown_language {
left: -10px;
}
}
@media only screen and (max-width: 767px) {
.dropdown_language {
left: -10px;
}
}
.dropdown_links {
right: 0;
left: auto;
}
.offcanvas_menu_wrapper .header_right_info {
display: block;
margin-bottom: 25px;
}
.offcanvas_menu_wrapper .header_right_info>ul>li>a {
color: #000;
}
.header_right_info {
text-align: right;
margin-left: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.header_right_info {
display: none;
text-align: center;
margin-left: 0;
}
}
@media only screen and (max-width: 767px) {
.header_right_info {
display: none;
text-align: center;
margin-left: 0;
}
}
.header_right_info>ul>li {
display: inline-block;
position: relative;
margin-right: 15px;
}
.header_right_info>ul>li:hover>a {
color: #cc9900;
}
.header_right_info>ul>li:last-child {
margin-right: 0;
}
.header_right_info>ul>li>a {
font-size: 20px;
color: #999;
}
.search_widget {
position: absolute;
right: 0;
top: 36px;
z-index: 99;
display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.search_widget {
left: -68px;
right: auto;
}
}
@media only screen and (max-width: 767px) {
.search_widget {
left: -68px;
right: auto;
}
}
.search_widget form {
position: relative;
width: 400px;
border: 1px solid #ebebeb;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.search_widget form {
width: 225px;
}
}
@media only screen and (max-width: 767px) {
.search_widget form {
width: 225px;
}
}
.search_widget form input {
padding: 10px 40px 10px 15px;
height: 41px;
line-height: 30px;
font-size: 12px;
color: #222;
border: none;
width: 100%;
background: #f7f7f7;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.search_widget form input {
padding: 8px 40px 8px 15px;
height: 38px;
}
}
@media only screen and (max-width: 767px) {
.search_widget form input {
padding: 8px 40px 8px 15px;
height: 38px;
}
}
.search_widget form button {
position: absolute;
top: 0;
right: 0;
width: 40px;
height: 100%;
border: 0;
background: none;
font-size: 16px;
}
.search_widget form button:hover {
color: #cc9900;
}
.header_wishlist span.item_count {
position: absolute;
top: -6px;
right: -14px;
width: 17px;
height: 17px;
line-height: 17px;
border-radius: 100%;
text-align: center;
background: #cc9900;
font-size: 10px;
font-weight: 400;
color: #fff;
}
.mini_cart_wrapper:hover .mini_cart {
max-height: 550px;
padding: 20px 28px 33px;
visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.mini_cart_wrapper:hover .mini_cart {
padding: 10px 11px 20px;
}
}
@media only screen and (max-width: 767px) {
.mini_cart_wrapper:hover .mini_cart {
padding: 10px 11px 20px;
}
}
.mini_cart_wrapper span.item_count {
position: absolute;
top: -6px;
right: -14px;
width: 17px;
height: 17px;
line-height: 17px;
border-radius: 100%;
text-align: center;
background: #cc9900;
font-size: 10px;
font-weight: 400;
color: #fff;
}
.mini_cart {
position: absolute;
min-width: 355px;
padding: 0 28px;
background: #fff;
border: 0;
z-index: 999;
right: 0;
top: 142%;
max-height: 0;
visibility: hidden;
overflow: hidden;
border: 1px solid #ebebeb;
transition: all 0.5s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.mini_cart {
display: none;
transition: unset;
padding: 10px 11px 20px;
min-width: 253px;
right: -69px;
max-height: inherit;
visibility: inherit;
}
}
@media only screen and (max-width: 767px) {
.mini_cart {
display: none;
transition: unset;
padding: 10px 11px 20px;
min-width: 253px;
right: -69px;
max-height: inherit;
visibility: inherit;
}
}
.mini_cart2 .cart_info a:hover {
color: #cc9900 !important;
}
.mini_cart2 .cart_img:hover {
border-color: #cc9900 !important;
}
.mini_cart2 .cart_remove a:hover {
border-color: #cc9900 !important;
background: #cc9900 !important;
}
.mini_cart2 .cart_button a:hover {
border-color: #cc9900 !important;
background: #cc9900 !important;
}
.cart_item {
overflow: hidden;
padding: 11px 0;
border-bottom: 1px solid #ebebeb;
display: flex;
justify-content: space-between;
}
.cart_img {
width: 70px;
margin-right: 10px;
border: 1px solid transparent;
}
.cart_img:hover {
border-color: #cc9900 !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.cart_img {
width: 70px;
}
}
@media only screen and (max-width: 767px) {
.cart_img {
width: 70px;
}
}
.cart_info {
width: 60%;
text-align: left;
top: 20px;
position: relative;
color: #000;
}
.cart_info a {
font-weight: 600;
font-size: 14px;
line-height: 20px;
display: block;
margin-bottom: 6px;
color: #000;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.cart_info a {
font-size: 13px;
}
}
@media only screen and (max-width: 767px) {
.cart_info a {
font-size: 13px;
}
}
img {
max-width: 100%;
height: auto;
}
@media screen and (max-width: 1200){
img {
max-width: 50%;
}
}
.cart_info a:hover {
color: #cc9900;
text-decoration: none;
}
.cart_info p {
font-size: 12px;
}
.cart_info p span {
font-size: 16px;
font-weight: 600;
}
.cart_remove a {
font-size: 15px;
border: 1px solid #ebebeb;
width: 20px;
height: 20px;
display: block;
line-height: 18px;
text-align: center;
border-radius: 50%;
text-decoration: none;
color: #555;
}
.cart_remove a:hover {
background: #cc9900;
border-color: #cc9900;
color: #fff;
}
.cart_remove a i {
display: block;
padding-left: 2px;
padding-top: 2px;
padding-right: 2px;
padding-bottom: 2px;
}
.mini_cart_table {
padding: 23px 0px;
}
.cart_total {
display: flex;
justify-content: space-between;
color: #000;
}
.cart_total span {
font-size: 14px;
font-weight: 400;
}
.cart_total span.price {
font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.cart_total span {
font-size: 13px;
}
}
@media only screen and (max-width: 767px) {
.cart_total span {
font-size: 13px;
}
}
.cart_button:first-child {
margin-bottom: 15px;
}
.cart_button a {
text-transform: uppercase;
border-radius: 3px;
font-size: 14px;
font-weight: 500;
display: block;
text-align: center;
line-height: 20px;
margin-bottom: 0;
padding: 10px 0px;
color: #000;
border: 2px solid #000;
text-decoration: none;
}
.cart_button a:hover {
color: #fff;
border-color: #cc9900;
}
.offcanvas_main_menu li a:hover {
color: #cc9900;
}
.offcanvas_main_menu li ul.sub-menu {
padding-left: 20px;
}
.offcanvas_main_menu>li.menu-item-has-children.menu-open>span.menu-expand {
transform: rotate(180deg);
}
.offcanvas_main_menu>li ul li.menu-item-has-children.menu-open span.menu-expand {
transform: rotate(180deg);
}
.offcanvas_main_menu li {
position: relative;
}
.offcanvas_main_menu li:last-child {
margin: 0;
}
.offcanvas_main_menu li span.menu-expand {
position: absolute;
right: 0;
}
.offcanvas_main_menu li a {
font-size: 14px;
font-weight: 400;
text-transform: capitalize;
display: block;
padding-bottom: 10px;
margin-bottom: 10px;
color: #000;
border-bottom: 1px solid #ebebeb;
}
a:focus {
text-decoration: none !important;
color: inherit;
outline: none;
}
a:hover {
text-decoration: none !important;
}
.offcanvas_main_menu li a:hover {
color: #cc9900;
}
.offcanvas_main_menu li ul.sub-menu {
padding-left: 20px;
}
p:last-child {
margin-bottom: 0;
}
a, button {
color: inherit;
line-height: inherit;
text-decoration: none;
cursor: pointer;
}
a, button, img, input, span {
transition: all 0.3s ease 0s;
}
*:focus {
outline: none !important;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 400;
margin-top: 0;
}
.offcanvas_footer {
margin-top: 50px;
padding-bottom: 50px;
text-align: center;
}
.offcanvas_footer span a {
font-size: 14px;
}
.offcanvas_footer span a:hover {
color: #cc9900;
}
.offcanvas_footer ul {
margin-top: 20px;
}
.offcanvas_footer ul li {
display: inline-block;
margin-right: 4px;
}
.offcanvas_footer ul li:last-child {
margin-right: 0;
}
.offcanvas_footer ul li a {
display: inline-block;
width: 30px;
height: 30px;
text-align: center;
line-height: 30px;
border-radius: 50%;
font-size: 13px;
color: #fff;
}
.offcanvas_footer ul li.facebook a {
background: #3c5b9b;
}
.offcanvas_footer ul li.twitter a {
background: #1da1f2;
}
.offcanvas_footer ul li.instagram a {
background: #ff5a00;
}
.offcanvas_footer ul li.pinterest a {
background: #bd081b;
}
.offcanvas_footer ul li.linkedin a {
background: #242492;
}
.offcanvas_footer ul li.google-plus a {
background: #2af645;
}
.offcanvas_footer ul li.facebook a:hover {
background: #cc9900;
}
.offcanvas_footer ul li.twitter a:hover {
background: #cc9900;
}
.offcanvas_footer ul li.instagram a:hover {
background: #cc9900;
}
.offcanvas_footer ul li.pinterest a:hover {
background: #cc9900;
}
.offcanvas_footer ul li.linkedin a:hover {
background: #cc9900;
}
.offcanvas_footer ul li.google-plus a:hover {
background: #cc9900;
}
.fa-envelope {
margin-right: 5px;
width: 30px;
height: 30px;
text-align: center;
line-height: 30px;
border-radius: 50%;
font-size: 13px;
background: #9a1ee2;
color: #fff;
}
.offcanvas_footer a {
letter-spacing: 2px;
}
/* ***************************** */
.header_transparent {
position: absolute;
width: 100%;
top: 0;
left: 0;
z-index: 99;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.header_transparent {
position: inherit;
}
}
@media only screen and (max-width: 767px) {
.header_transparent {
position: inherit;
}
}
.header_transparent .header_container {
background: rgba(0, 0, 0, 0.9);
padding: 17px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.header_transparent .header_container {
background: #1c1d22;
}
}
@media only screen and (max-width: 767px) {
.header_transparent .header_container {
background: #1c1d22;
}
}
.header_transparent .sticky-header.sticky {
background: rgba(28, 29, 24, 0.7);
padding: 8px 0;
}
.header_container {
padding: 22px 0;
background: #1c1d22;
}
@media only screen and (max-width: 767px) {
.header_container {
padding: 25px 0;
}
}
.sticky-header.sticky {
position: fixed;
z-index: 99;
width: 100%;
top: 0;
background: rgba(28, 29, 24, 0.7);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
animation: fadeInDown;
animation-duration: 900ms;
animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
animation-delay: 0s;
animation-iteration-count: 1;
animation-direction: normal;
animation-fill-mode: none;
animation-play-state: running;
border-bottom: 0;
display: block;
padding: 10px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.sticky-header.sticky {
position: inherit;
box-shadow: inherit;
animation-name: inherit;
padding: 0;
background: inherit;
opacity: inherit;
}
}
@media only screen and (max-width: 767px) {
.sticky-header.sticky {
position: inherit;
box-shadow: inherit;
animation-name: inherit;
padding: 0;
background: inherit;
opacity: inherit;
}
}
.sticky-header.sticky .logo a img {
max-width: 118px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.sticky-header.sticky .logo a img {
max-width: 100%;
}
}
@media only screen and (max-width: 767px) {
.sticky-header.sticky .logo a img {
max-width: 100px;
}
}
.header_transparent .sticky-header.sticky {
background: rgba(28, 29, 24, 0.7);
padding: 8px 0;
}
@media only screen and (max-width: 767px) {
.logo {
display: inline-block;
}
}
@media only screen and (max-width: 767px) {
.logo a img {
max-width: 110px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.main_menu {
display: none;
}
}
@media only screen and (max-width: 767px) {
.main_menu {
display: none;
}
}
.main_menu nav>ul {
display: flex;
justify-content: flex-end;
}
.main_menu nav>ul>li {
position: relative;
flex-shrink: 0;
}
.main_menu nav>ul>li:hover ul.sub_menu {
visibility: visible;
max-height: 300px;
padding: 24px 30px;
}
.main_menu nav>ul>li:hover .mega_menu {
visibility: visible;
max-height: 300px;
padding: 25px 30px 30px 30px;
}
.main_menu nav>ul>li:hover>a {
color: #cc9900;
}
.main_menu nav>ul>li>a {
display: block;
font-size: 14px;
line-height: 20px;
padding: 10px 23px;
text-transform: uppercase;
font-weight: 400;
position: relative;
color: #fff;
}
.main_menu nav>ul>li>a i {
margin-left: 3px;
}
.main_menu nav>ul>li>a.active {
color: #cc9900;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.main_menu nav>ul>li>a {
padding: 10px 15px;
}
}
.main_menu nav>ul>li ul.sub_menu {
position: absolute;
min-width: 215px;
padding: 0 30px;
background: #fff;
box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
max-height: 0;
transform-origin: 0 0 0;
left: 0;
right: auto;
visibility: hidden;
overflow: hidden;
transition: 0.5s;
z-index: 99;
top: 100%;
text-align: left;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.main_menu nav>ul>li ul.sub_menu li a {
font-size: 13px;
font-weight: 400;
display: block;
line-height: 32px;
text-transform: capitalize;
}
.main_menu nav>ul>li ul.sub_menu li a:hover {
color: #cc9900;
}
.main_menu nav>ul>li.mega_items {
position: static;
}
.main_menu nav>ul>li .mega_menu {
position: absolute;
min-width: 100%;
padding: 0 30px 0 30px;
background: #fff;
box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
max-height: 0;
transform-origin: 0 0 0;
left: 0;
right: auto;
visibility: hidden;
overflow: hidden;
transition: 0.5s;
z-index: 99;
top: 100%;
text-align: left;
}
.menu_two nav>ul {
justify-content: center;
}
.menu_two nav>ul>li:hover>a {
color: #cc9900;
}
.menu_two nav>ul>li>a {
padding: 10px 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
.menu_two nav>ul>li>a {
padding: 10px 14px;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.menu_two nav>ul>li>a {
padding: 10px 5px;
font-size: 13px;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.menu_two nav>ul>li>a i {
margin-left: 1px;
}
}
.menu_two nav>ul>li>a.active {
color: #cc9900;
}
.menu_two nav>ul>li ul.sub_menu li a:hover {
color: #cc9900;
}
.menu_two .mega_menu_inner>li>a:hover {
color: #cc9900;
}
.menu_two .mega_menu_inner>li ul li a:hover {
color: #cc9900;
}
.menu_position {
position: relative;
padding-top: 12px;
}
.mega_menu_inner {
display: flex;
justify-content: space-between;
}
.mega_menu_inner>li>a {
font-size: 14px;
line-height: 24px;
text-transform: uppercase;
font-weight: 600;
display: block;
margin-bottom: 12px;
}
.mega_menu_inner>li>a:hover {
color: #cc9900;
}
.mega_menu_inner>li ul li {
display: block;
}
.mega_menu_inner>li ul li a {
font-size: 13px;
font-weight: 400;
display: block;
line-height: 30px;
text-transform: capitalize;
}
.mega_menu_inner>li ul li a:hover {
color: #cc9900;
}
.header_top_right {
display: flex;
align-items: center;
justify-content: flex-end;
}
.header_top_right .header_right_info {
margin-left: 0;
}
.header_top_right .header_right_info>ul>li {
margin-right: 11px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.header_top_right .header_right_info>ul>li {
margin-right: 10px;
}
}
.header_top_right .header_right_info>ul>li:last-child {
margin-right: 0;
}
.header_top_right .header_right_info>ul>li>a {
color: #fff;
}
.header_top_right .header_right_info>ul>li:hover>a {
color: #cc9900;
}
.header_top_right .header_account {
margin-right: 0;
margin-left: 20px;
}
.header_top_right .header_account>ul>li {
position: relative;
margin-right: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.header_top_right .header_account>ul>li {
margin-right: 8px;
padding-right: 8px;
}
}
.header_top_right .header_account>ul>li::before {
content: "";
width: 1px;
height: 18px;
background: #a4a5a7;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
}
.header_top_right .header_account>ul>li:last-child {
margin-right: 0;
padding-right: 0;
}
.header_top_right .header_account>ul>li:last-child::before {
display: none;
}
.header_top_right .header_account>ul>li>a {
color: #fff;
font-size: 13px;
}
.header_top_right .header_account>ul>li.top_links>a {
font-size: 18px;
}
.header_top_right .header_account>ul>li:hover>a {
color: #cc9900;
}
.header_top_right .dropdown_language, .header_top_right .dropdown_currency, .header_top_right .dropdown_links {
right: 0;
left: auto;
}
/* ************************* */
.master-slider {
position: relative;
visibility: hidden;
font-family: 'Lato', sans-serif;
}
.master-slider a {
transition: none;
}
.master-slider, .master-slider * {
box-sizing: content-box;
}
.pt-pb {
padding-top: 0;
padding-bottom: 0;
}
.ms-slide {
position: absolute;
height: 100%;
transform: translateZ(0px);
}
.ms-slide .ms-layer {
position: absolute;
pointer-events: auto;
}
.ms-layer.bold-title {
font-weight: 900;
font-size: 26pt;
color: #222;
margin: 0;
}
.ms-layer.light-title {
margin: 0;
font-weight: 300;
font-size: 38pt;
text-transform: uppercase;
color: #f1f1f1;
letter-spacing: -3px;
}
html, body {
height: 100%;
overflow-x: hidden;
width: 100%;
}
body {
color: #c5c5c5;
background-color: #0a0c0b;
}
.btn, .btn:hover {
transition: all 0.25s ease-in-out;
}
.main-menu a {
color: #000;
transition: all 0.25s ease-in-out;
}
nav a:hover {
color: #d9932f;
outline: none;
outline-offset: 0px;
text-decoration: none !important;
}
a {
color: #b0976d;
}
a:hover, a:focus, a span:hover, a:active {
color: #d9932f !important;
outline: none;
outline-offset: 0px;
text-decoration: underline !important;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
color: #fff;
}
.ms-slide .ms-slide-layers {
position: absolute;
overflow: hidden;
width: 100%;
height: 100%;
z-index: 109;
top: 0px;
pointer-events: none;
}
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-thumb {
background-image: linear-gradient(125deg, #fb3c7f 0%, #ffc05e 100%);
border-radius: 10px;
}
.no-padding {
padding: 0;
}
.no-gutter>[class*='col-'] {
padding-right: 0;
padding-left: 0;
}
.lineeffect {
margin-bottom: 0;
}
.lineeffect a:hover::before, .lineeffect a:hover::after {
opacity: 1;
transform: scale(1);
}
.lineeffect a::before, .lineeffect a::after {
bottom: 10px;
content: "";
left: 10px;
opacity: 0;
position: absolute;
right: 10px;
top: 10px;
transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
z-index: 1;
}
.lineeffect a::before {
border-bottom: 1px solid rgba(255, 255, 255);
border-top: 1px solid #fff;
transform: scale(0, 1);
}
.lineeffect a::after {
border-left: 1px solid rgba(255, 255, 255);
border-right: 1px solid #fff;
transform: scale(1, 0);
}
.img-fill {
min-width: -webkit-fill-available;
}
section {
padding: 50px 0;
}
.category-img img {
display: block;
margin-bottom: 15px;
}
.category-img .cat-link {
text-align: center;
}
.category-img .cat-link a {
display: inline-block;
font-weight: normal;
color: #cc9900;
}
.category-img .cat-link a:hover {
color: #f0dc6f;
}
.super-deal-section {
background-repeat: no-repeat;
background-size: cover;
background-position: top right;
min-height: 500px;
}
.super-deal h1 {
color: #fff;
font-weight: 600;
font-size: 3.42em;
}
.super-deal h2 {
color: #fff;
}
.super-deal a.btn {
border: 1px solid #fff;
padding: 10px 25px;
color: #fff;
}
.super-deal a.btn:hover {
border: 1px solid #d9932f;
color: #d9932f;
background-color: #fff;
}
.super-deal {
margin-top: 85px;
margin-bottom: 85px;
text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
color: #fff;
}
@media only screen and (max-width: 991px) {
.super-deal-section {
min-height: 350px;
}
.super-deal {
margin-top: 0px;
margin-bottom: 15px;
}
.super-deal h1 {
font-weight: 600;
font-size: 24px;
}
}
@media only screen and (max-width: 767px) {
.super-deal-section {
background-position: top center;
min-height: 300px;
}
}
.product-slide .row {
display: flex;
height: auto;
justify-content: center;
}
.categoriesW{
display: block;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 768px) {
.categorieW{
margin-bottom: 50px;
}
}
.tabSix .nav-tabs {
border-bottom: none;
}
.tabSix .nav-tabs>li>a {
margin-right: 0;
line-height: 1.42;
background-color: transparent;
border-style: solid;
border-color: #898989;
color: #999;
border-width: 0 0 0 0;
border-radius: 0px;
padding: 10px 25px;
font-weight: 600;
}
.tabSix .nav-tabs>li.active>a, .tabSix .nav-tabs>li.active>a:focus, .tabSix .nav-tabs>li.active>a:hover, .tabSix .nav-tabs>li>a:hover {
color: #d9932f;
cursor: pointer;
border-width: 0 0 0 0;
background-color: transparent;
}
.tabSix .nav-tabs li a p {
margin-bottom: 0;
font-size: 1em;
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
}
.tabSix .nav-tabs li {
display: inline-block;
float: none;
}
@media (min-width: 768px) {
.tabSix .tab-content {
margin-top: 24px;
}
}
.tabSix ul li::after {
font: normal normal normal 14px/1 FontAwesome;
content: "\f111";
display: inline-block;
position: absolute;
right: -4px;
top: 18px;
font-size: 7px;
}
.tabSix ul li:last-child::after {
display: none;
}
.product-main {
float: left;
width: calc(100% - 2px);
transition: all 0.45s ease-in-out;
overflow: hidden;
}
figure {
float: left;
position: relative;
}
.product-main figure::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: all 0.45s ease-in-out;
}
.product-main figure.dark-theme::before {
background-color: #000;
}
figure img {
width: 100%;
}
.ribbon {
position: absolute;
top: 0;
left: 0;
display: inline-block;
background-color: #d9932f;
}
.ribbon span {
color: aliceblue;
text-transform: capitalize;
padding: 22px 0px;
display: inline-block;
font-size: 15px;
transform: rotate(-90deg);
font-weight: 600;
line-height: 45px;
}
.ribbon::after {
content: "";
width: 0px;
height: 0;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
position: absolute;
bottom: -4px;
left: 50%;
margin-left: -4px;
border-top: 4px solid #d9932f;
}
.product-main a:hover h4{
text-decoration: underline;
transition: 0.25s;
}
.block-sticker-tag1 {
width: 50px;
height: 50px;
background-color: #313131;
position: absolute;
top: 50%;
margin-top: -75px;
right: -51px;
color: #fff;
opacity: 0;
transition: all 0.45s ease-in-out;
}
.off_tag {
position: absolute;
top: 9px;
left: 0;
font-size: 13px;
color: #fff;
line-height: 15px;
text-transform: uppercase;
text-align: center;
}
.block-sticker-tag1 strong {
font-size: 18px;
text-align: center;
padding: 7px 0 0 15px;
display: inline-block;
}
.block-sticker-tag2 {
width: 50px;
height: 50px;
background-color: #313131;
position: absolute;
top: 50%;
margin-top: -25px;
right: -51px;
color: #fff;
opacity: 0;
transition: all 0.45s ease-in-out;
}
.off_tag1 {
position: absolute;
top: 20px;
left: 0;
font-size: 13px;
color: #fff;
line-height: 15px;
text-transform: uppercase;
text-align: center;
}
.block-sticker-tag2 strong {
font-size: 18px;
text-align: center;
padding: 0px 0 0 16px;
display: inline-block;
margin-top: -2px;
}
.block-sticker-tag3 {
width: 50px;
height: 50px;
background-color: #313131;
position: absolute;
top: 50%;
margin-top: 25px;
right: -51px;
color: #fff;
opacity: 0;
transition: all 0.45s ease-in-out;
}
.off_tag2 {
position: absolute;
top: 20px;
left: 0;
font-size: 13px;
color: #fff;
line-height: 15px;
text-transform: uppercase;
text-align: center;
}
.block-sticker-tag3 strong {
font-size: 18px;
text-align: center;
padding: 0px 0 0 16px;
display: inline-block;
margin-top: -2px;
}
.block-caption1 {
width: 100%;
display: inline-block;
position: relative;
text-align: center;
}
.block-caption1 h4 {
font-size: 1.42em;
font-weight: 400;
margin-top: 10px;
color: #fff;
}
.price {
padding: 0;
margin-top: 6px;
margin-bottom: 10px;
}
.sell-price {
font-size: 1.2em;
font-weight: 700;
margin-right: 10px;
color: #d9932f;
}
.price .actual-price {
color: #ababab;
font-size: 1.3em;
text-decoration: line-through;
}
.product-main:hover {
transition: all 0.45s ease-in-out;
}
.product-main:hover figure::before {
opacity: 0.4;
transition: all 0.45s ease-in-out;
}
.product-main:hover figure .block-sticker-tag1, .product-main:hover figure .block-sticker-tag2, .product-main:hover figure .block-sticker-tag3 {
opacity: 1;
right: 0;
transition: all 0.45s ease-in-out;
}
.block-sticker-tag1:hover strong, .block-sticker-tag2:hover strong, .block-sticker-tag3:hover strong {
color: #d9932f;
cursor: pointer;
}
.testi {
text-align: center;
background-attachment: fixed;
background-size: cover;
background-repeat: no-repeat;
}
.testi #quote-carousel.carousel {
padding-bottom: 30px;
}
.testi #quote-carousel.carousel .carousel-inner .item {
opacity: 0;
transition-property: opacity;
}
.testi #quote-carousel.carousel .carousel-inner .active {
opacity: 1;
transition-property: opacity;
}
.testi #quote-carousel.carousel .carousel-indicators {
bottom: -10px;
z-index: 2;
}
.testi #quote-carousel.carousel .carousel-indicators li {
background-color: #848484;
border: none;
}
.testi #quote-carousel.carousel .carousel-indicators .active {
background-color: #cc9900;
border: none;
width: 10px;
height: 10px;
margin: 1px;
}
.testi #quote-carousel.carousel blockquote {
text-align: left;
border: none;
font-size: 14px;
color: #fff;
width: 90%;
margin: 15px auto;
}
.testi #quote-carousel.carousel blockquote p {
letter-spacing: 1px;
padding-top: 15px;
}
.testi #quote-carousel.carousel blockquote .profile-circle img {
margin: 0 auto;
border-radius: 50%;
border: 8px solid #d9932f;
}
.testi .item .name {
color: #fff;
font-size: 18px;
}
.testi .item .position {
text-align: left;
}
@media only screen and (max-width: 1199px) {
.testi #quote-carousel blockquote {
text-align: center;
}
}
@media only screen and (max-width: 767px) {
.testi #quote-carousel blockquote {
width: 100%;
}
}
.blog-title a {
color: #fff;
}
.blog-img .bubble-top::before {
pointer-events: none;
position: absolute;
z-index: 999;
content: "";
border-style: solid;
transition-duration: 0.3s;
transition-property: top;
left: calc(50% - 20px);
bottom: 0;
border-width: 0 20px 20px 20px;
border-color: transparent transparent #0a0c0b transparent;
}
.blog-img .bubble-bottom::before {
pointer-events: none;
position: absolute;
z-index: 999;
content: "";
border-style: solid;
transition-duration: 0.3s;
transition-property: top;
left: calc(100% - 20px);
top: 0;
border-width: 20px 20px 0 20px;
border-color: #0a0c0b transparent transparent transparent;
}
.ImageWrapper .PStyleHe {
position: absolute;
background: url(images/plus.png) no-repeat scroll center center / 100% 100% #222222;
width: 100%;
height: 100%;
z-index: 199;
background-origin: padding-box, padding-box;
background-position: center center;
background-repeat: no-repeat;
background-size: 10px 10px, 100% 100%;
opacity: 0;
top: 0;
transition: all 0.3s ease 0s;
}
.ImageWrapper {
display: block;
overflow: hidden;
position: relative;
}
.ImageWrapper:hover .PStyleHe {
opacity: 0.6;
background-size: 60px 60px, 100% 100%;
visibility: visible;
}
.blog-content {
padding: 15px;
min-height: 265px;
}
.read-more {
color: #cc9900;
}
@media only screen and (max-width: 1024px) {
.blog-content {
min-height: 220px;
}
}
@media only screen and (max-width: 991px) {
.blog-content {
padding: 15px;
min-height: 170px;
}
.blog-title h4 {
margin-top: 0;
margin-bottom: 5px;
}
.post-date {
margin-bottom: 5px;
}
.post-content {
margin-bottom: 10px;
}
}
@media only screen and (max-width: 767px) {
.blog-content {
padding: 15px;
min-height: 170px;
background-color: #000;
margin-bottom: 10px;
}
.blog-img .bubble-top::before {
border-color: transparent transparent #000 transparent;
}
.blog-img .bubble-bottom::before {
border-color: #000 transparent transparent transparent;
}
}
.newsletter-bg {
background: linear-gradient(to right, #111514 50%, #540b23 0, #540b23 50%, #540b23 100%);
padding-bottom: 60px;
min-height: 250px;
}
.newsletter-bg form {
text-align: right;
}
.newsletter {
width: auto;
display: inline-block;
margin: 0 auto;
}
.form-inline .newsletter .form-control {
border: 1px solid #0a0c0b;
border-radius: 0;
width: 370px;
background-color: #0a0c0b;
height: 50px;
}
.newsletter .btn-default {
border: 1px solid #d9932f;
border-radius: 0;
background-color: #d9932f;
color: #fff;
transition: ease 0.5s ease-in-out;
padding: 8px 25px;
/* font-size: 18px; */
align-items: center;
}
.newsletter .btn-default:hover {
border: 1px solid #d9932f;
background-color: #fff;
color: #d9932f;
transition: ease-in-out 0.5s ease-in-out;
}
.newsletter .btn-default i {
margin-left: 7px;
font-size: 15px;
background-color: transparent;
}
.newsletter .btn-default:hover i {
color: #d9932f;
}
.t-mb-20 {
margin-bottom: 20px;
}
.t-pt-40 {
padding-top: 40px;
}
.t-pb-30 {
padding-bottom: 30px;
}
.t-pt-70 {
padding-top: 70px;
}
@media only screen and (max-width: 991px) {
.newsletter-bg {
background-position: top;
}
.newsletter .btn-default {
margin-top: 8px;
}
}
@media only screen and (max-width: 767px) {
.newsletter-bg form {
text-align: center;
}
}
.footer {
text-align: center;
padding: 80px 0 0;
background-color: #000;
}
.footer .footer-block {
text-align: left;
}
.footer .footer-block li a {
color: #ccc;
padding-bottom: 5px;
padding-top: 5px;
display: block;
}
.footer .footer-block li a::before {
font-family: fontawesome;
font-size: 7px;
vertical-align: middle;
color: #fff;
}
.footer .footer-block li a:hover {
margin-left: 5px;
text-decoration: none;
}
.footer-title {
color: #d9932f;
text-transform: capitalize;
padding-bottom: 5px;
margin-bottom: 10px;
font-size: 16px;
font-weight: 600;
}
hr.footer_border {
color: #d9932f;
width: 20%;
text-align: left;
border-color: #d9932f;
border-width: 2px;
margin: 0 0 20px 0;
}
.footer_icon {
padding-top: 5px;
}
.footer_icon i {
color: #ccc;
margin-right: 10px;
}
.contact_footer, .contact_footer a {
color: #ccc;
}
.footer_icon .fa-envelope {
background: transparent;
}
.footer_icon div {
padding: 5px 0 0;
}
.footer_botom_outer {
margin-top: 50px;
}
.footerbottom_link {
border-top: 1px solid #d9932f;
border-bottom: 1px solid #d9932f;
padding: 20px 0 15px 0;
}
.footerbottom_link, .copyright {
text-align: center;
color: #ccc;
}
footer .card .ul.list-inline {
margin: 0;
}
.copyright p {
color: #ccc;
padding: 25px 0;
font-size: 1em;
line-height: 15px;
height: 50px;
}
.copyright i {
color: #d9932f;
margin-right: 5px;
}
@media only screen and (max-width: 991px) {
.footer {
padding: 30px 0 0;
}
}
blockquote {
text-align: center !important;
} | public/css/accueil.css | @import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');
*, *::before, *::after {
box-sizing: border-box;
}
body {
font-family: 'Lato', sans-serif;
line-height: 24px;
font-size: 14px;
font-style: normal;
font-weight: 400;
visibility: visible;
color: #000;
letter-spacing: 0.05em;
}
/* general css */
.fix {
overflow: hidden;
}
.hidden {
display: none;
}
.clear {
clear: both;
}
.container {
max-width: 1170px;
}
@media only screen and (max-width: 767px) {
.container {
width: 450px;
}
}
@media only screen and (max-width: 479px) {
.container {
width: 100%;
}
}
.capitalize {
text-transform: capitalize;
}
.uppercase {
text-transform: uppercase;
}
.no-gutters>.col, .no-gutters>[class*="col-"] {
padding-right: 0;
padding-left: 0;
margin: 0;
}
.off_canvas_overlay {
width: 100%;
height: 100%;
position: fixed;
z-index: 99;
opacity: 0;
visibility: hidden;
cursor: crosshair;
background: #000;
top: 0;
}
.off_canvas_overlay.active {
opacity: 0.5;
visibility: visible;
}
.offcanvas_menu {
display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.offcanvas_menu {
display: block;
}
}
@media only screen and (max-width: 767px) {
.offcanvas_menu {
display: block;
}
.offcanvas_two .canvas_open {
top: 18px;
}
}
.offcanvas_two .canvas_open a:hover {
color: #cc9900;
border-color: #cc9900;
}
.canvas_open {
position: absolute;
right: 17px;
top: 34px;
z-index: 9;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.canvas_open {
right: 25px;
top: 26px;
}
}
@media only screen and (max-width: 767px) {
.canvas_open {
right: 19px;
top: 28px;
}
}
.canvas_open a {
font-size: 30px;
width: 43px;
height: 40px;
display: block;
line-height: 39px;
text-align: center;
color: #555;
border: 1px solid #555;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.canvas_open a {
width: 33px;
height: 33px;
line-height: 30px;
font-size: 26px;
}
}
@media only screen and (max-width: 767px) {
.canvas_open a {
width: 30px;
height: 30px;
line-height: 26px;
font-size: 24px;
}
}
.canvas_open a:hover {
color: #bda87f;
border-color: #bda87f;
}
.canvas_close {
position: absolute;
top: 10px;
right: 13px;
}
.canvas_close a {
font-size: 18px;
text-transform: uppercase;
font-weight: 500;
width: 32px;
height: 32px;
display: block;
text-align: center;
line-height: 31px;
border: 1px solid #8b1b46;
border-radius: 50%;
color: #58240c;
}
.canvas_close a:hover {
background: #bda87f;
border-color: #bda87f;
color: aliceblue;
}
.offcanvas_menu_wrapper {
width: 290px;
position: fixed;
background: #fff;
z-index: 99;
top: 0;
height: 100vh;
transition: 0.5s;
left: 0;
margin-left: -300px;
padding: 50px 15px 30px;
overflow-y: auto;
}
.offcanvas_menu_wrapper.active {
margin-left: 0;
}
.offcanvas_menu_wrapper .header_account {
display: block;
}
ul {
list-style: outside none none;
margin: 0;
padding: 0;
}
/*
.list-unstyled{
list-style: none;
}*/
.header_account {
margin-right: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.header_account {
margin-right: 25px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.header_account {
display: none;
margin-right: 0;
margin-bottom: 20px;
text-align: center;
}
}
@media only screen and (max-width: 767px) {
.header_account {
display: none;
margin-right: 0;
margin-bottom: 20px;
text-align: center;
}
}
.header_account>ul>li {
display: inline-block;
position: relative;
margin-right: 30px;
}
.header_account>ul>li:last-child {
margin-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.header_account>ul>li {
margin-right: 0;
}
.header_account>ul>li:hover>a {
color: #fff;
}
}
@media only screen and (max-width: 767px) {
.header_account>ul>li {
margin-right: 0;
}
.header_account>ul>li:hover>a {
color: #fff;
}
}
.header_account>ul>li:hover ul.dropdown_currency, .header_account>ul>li:hover ul.dropdown_language, .header_account>ul>li:hover ul.dropdown_links {
visibility: visible;
max-height: 200px;
}
.header_account>ul>li:hover>a {
color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.header_account>ul>li:hover>a {
color: #bda87f;
}
}
@media only screen and (max-width: 767px) {
.header_account>ul>li:hover>a {
color: #bda87f;
}
}
.header_account>ul>li>a {
text-transform: uppercase;
line-height: 50px;
font-size: 12px;
display: inline-block;
font-weight: 400;
color: #999;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.header_account>ul>li>a {
line-height: 22px;
color: #000;
}
}
@media only screen and (max-width: 767px) {
.header_account>ul>li>a {
line-height: 22px;
color: #000;
}
}
.header_account>ul>li>a i {
margin-left: 3px;
margin-right: 15px;
}
.header_account>ul>li>a img {
margin-right: 4px;
}
.header_account>ul>li:hover a:not([href]):not([tabindex]) {
color: #bda87f;
}
.dropdown_currency, .dropdown_language, .dropdown_links {
position: absolute;
background: #fff;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
min-width: 130px;
text-align: left;
top: 100%;
left: 0;
transition: all 0.5s ease-out;
overflow: hidden;
border-radius: 3px;
visibility: hidden;
max-height: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.dropdown_currency, .dropdown_language, .dropdown_links {
left: -30px;
}
}
@media only screen and (max-width: 767px) {
.dropdown_currency, .dropdown_language, .dropdown_links {
left: -30px;
}
}
.dropdown_currency li a, .dropdown_language li a, .dropdown_links li a {
text-transform: uppercase;
display: block;
font-size: 12px;
white-space: nowrap;
padding: 8px 8px 8px 20px;
line-height: 20px;
color: #000;
}
.dropdown_currency li a:hover, .dropdown_language li a:hover, .dropdown_links li a:hover {
background: #f2f2f2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.dropdown_language {
left: -10px;
}
}
@media only screen and (max-width: 767px) {
.dropdown_language {
left: -10px;
}
}
.dropdown_links {
right: 0;
left: auto;
}
.offcanvas_menu_wrapper .header_right_info {
display: block;
margin-bottom: 25px;
}
.offcanvas_menu_wrapper .header_right_info>ul>li>a {
color: #000;
}
.header_right_info {
text-align: right;
margin-left: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.header_right_info {
display: none;
text-align: center;
margin-left: 0;
}
}
@media only screen and (max-width: 767px) {
.header_right_info {
display: none;
text-align: center;
margin-left: 0;
}
}
.header_right_info>ul>li {
display: inline-block;
position: relative;
margin-right: 15px;
}
.header_right_info>ul>li:hover>a {
color: #cc9900;
}
.header_right_info>ul>li:last-child {
margin-right: 0;
}
.header_right_info>ul>li>a {
font-size: 20px;
color: #999;
}
.search_widget {
position: absolute;
right: 0;
top: 36px;
z-index: 99;
display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.search_widget {
left: -68px;
right: auto;
}
}
@media only screen and (max-width: 767px) {
.search_widget {
left: -68px;
right: auto;
}
}
.search_widget form {
position: relative;
width: 400px;
border: 1px solid #ebebeb;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.search_widget form {
width: 225px;
}
}
@media only screen and (max-width: 767px) {
.search_widget form {
width: 225px;
}
}
.search_widget form input {
padding: 10px 40px 10px 15px;
height: 41px;
line-height: 30px;
font-size: 12px;
color: #222;
border: none;
width: 100%;
background: #f7f7f7;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.search_widget form input {
padding: 8px 40px 8px 15px;
height: 38px;
}
}
@media only screen and (max-width: 767px) {
.search_widget form input {
padding: 8px 40px 8px 15px;
height: 38px;
}
}
.search_widget form button {
position: absolute;
top: 0;
right: 0;
width: 40px;
height: 100%;
border: 0;
background: none;
font-size: 16px;
}
.search_widget form button:hover {
color: #cc9900;
}
.header_wishlist span.item_count {
position: absolute;
top: -6px;
right: -14px;
width: 17px;
height: 17px;
line-height: 17px;
border-radius: 100%;
text-align: center;
background: #cc9900;
font-size: 10px;
font-weight: 400;
color: #fff;
}
.mini_cart_wrapper:hover .mini_cart {
max-height: 550px;
padding: 20px 28px 33px;
visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.mini_cart_wrapper:hover .mini_cart {
padding: 10px 11px 20px;
}
}
@media only screen and (max-width: 767px) {
.mini_cart_wrapper:hover .mini_cart {
padding: 10px 11px 20px;
}
}
.mini_cart_wrapper span.item_count {
position: absolute;
top: -6px;
right: -14px;
width: 17px;
height: 17px;
line-height: 17px;
border-radius: 100%;
text-align: center;
background: #cc9900;
font-size: 10px;
font-weight: 400;
color: #fff;
}
.mini_cart {
position: absolute;
min-width: 355px;
padding: 0 28px;
background: #fff;
border: 0;
z-index: 999;
right: 0;
top: 142%;
max-height: 0;
visibility: hidden;
overflow: hidden;
border: 1px solid #ebebeb;
transition: all 0.5s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.mini_cart {
display: none;
transition: unset;
padding: 10px 11px 20px;
min-width: 253px;
right: -69px;
max-height: inherit;
visibility: inherit;
}
}
@media only screen and (max-width: 767px) {
.mini_cart {
display: none;
transition: unset;
padding: 10px 11px 20px;
min-width: 253px;
right: -69px;
max-height: inherit;
visibility: inherit;
}
}
.mini_cart2 .cart_info a:hover {
color: #cc9900 !important;
}
.mini_cart2 .cart_img:hover {
border-color: #cc9900 !important;
}
.mini_cart2 .cart_remove a:hover {
border-color: #cc9900 !important;
background: #cc9900 !important;
}
.mini_cart2 .cart_button a:hover {
border-color: #cc9900 !important;
background: #cc9900 !important;
}
.cart_item {
overflow: hidden;
padding: 11px 0;
border-bottom: 1px solid #ebebeb;
display: flex;
justify-content: space-between;
}
.cart_img {
width: 70px;
margin-right: 10px;
border: 1px solid transparent;
}
.cart_img:hover {
border-color: #cc9900 !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.cart_img {
width: 70px;
}
}
@media only screen and (max-width: 767px) {
.cart_img {
width: 70px;
}
}
.cart_info {
width: 60%;
text-align: left;
top: 20px;
position: relative;
color: #000;
}
.cart_info a {
font-weight: 600;
font-size: 14px;
line-height: 20px;
display: block;
margin-bottom: 6px;
color: #000;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.cart_info a {
font-size: 13px;
}
}
@media only screen and (max-width: 767px) {
.cart_info a {
font-size: 13px;
}
}
img {
max-width: 100%;
height: auto;
}
@media screen and (max-width: 1200){
img {
max-width: 50%;
}
}
.cart_info a:hover {
color: #cc9900;
text-decoration: none;
}
.cart_info p {
font-size: 12px;
}
.cart_info p span {
font-size: 16px;
font-weight: 600;
}
.cart_remove a {
font-size: 15px;
border: 1px solid #ebebeb;
width: 20px;
height: 20px;
display: block;
line-height: 18px;
text-align: center;
border-radius: 50%;
text-decoration: none;
color: #555;
}
.cart_remove a:hover {
background: #cc9900;
border-color: #cc9900;
color: #fff;
}
.cart_remove a i {
display: block;
padding-left: 2px;
padding-top: 2px;
padding-right: 2px;
padding-bottom: 2px;
}
.mini_cart_table {
padding: 23px 0px;
}
.cart_total {
display: flex;
justify-content: space-between;
color: #000;
}
.cart_total span {
font-size: 14px;
font-weight: 400;
}
.cart_total span.price {
font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.cart_total span {
font-size: 13px;
}
}
@media only screen and (max-width: 767px) {
.cart_total span {
font-size: 13px;
}
}
.cart_button:first-child {
margin-bottom: 15px;
}
.cart_button a {
text-transform: uppercase;
border-radius: 3px;
font-size: 14px;
font-weight: 500;
display: block;
text-align: center;
line-height: 20px;
margin-bottom: 0;
padding: 10px 0px;
color: #000;
border: 2px solid #000;
text-decoration: none;
}
.cart_button a:hover {
color: #fff;
border-color: #cc9900;
}
.offcanvas_main_menu li a:hover {
color: #cc9900;
}
.offcanvas_main_menu li ul.sub-menu {
padding-left: 20px;
}
.offcanvas_main_menu>li.menu-item-has-children.menu-open>span.menu-expand {
transform: rotate(180deg);
}
.offcanvas_main_menu>li ul li.menu-item-has-children.menu-open span.menu-expand {
transform: rotate(180deg);
}
.offcanvas_main_menu li {
position: relative;
}
.offcanvas_main_menu li:last-child {
margin: 0;
}
.offcanvas_main_menu li span.menu-expand {
position: absolute;
right: 0;
}
.offcanvas_main_menu li a {
font-size: 14px;
font-weight: 400;
text-transform: capitalize;
display: block;
padding-bottom: 10px;
margin-bottom: 10px;
color: #000;
border-bottom: 1px solid #ebebeb;
}
a:focus {
text-decoration: none !important;
color: inherit;
outline: none;
}
a:hover {
text-decoration: none !important;
}
.offcanvas_main_menu li a:hover {
color: #cc9900;
}
.offcanvas_main_menu li ul.sub-menu {
padding-left: 20px;
}
p:last-child {
margin-bottom: 0;
}
a, button {
color: inherit;
line-height: inherit;
text-decoration: none;
cursor: pointer;
}
a, button, img, input, span {
transition: all 0.3s ease 0s;
}
*:focus {
outline: none !important;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 400;
margin-top: 0;
}
.offcanvas_footer {
margin-top: 50px;
padding-bottom: 50px;
text-align: center;
}
.offcanvas_footer span a {
font-size: 14px;
}
.offcanvas_footer span a:hover {
color: #cc9900;
}
.offcanvas_footer ul {
margin-top: 20px;
}
.offcanvas_footer ul li {
display: inline-block;
margin-right: 4px;
}
.offcanvas_footer ul li:last-child {
margin-right: 0;
}
.offcanvas_footer ul li a {
display: inline-block;
width: 30px;
height: 30px;
text-align: center;
line-height: 30px;
border-radius: 50%;
font-size: 13px;
color: #fff;
}
.offcanvas_footer ul li.facebook a {
background: #3c5b9b;
}
.offcanvas_footer ul li.twitter a {
background: #1da1f2;
}
.offcanvas_footer ul li.instagram a {
background: #ff5a00;
}
.offcanvas_footer ul li.pinterest a {
background: #bd081b;
}
.offcanvas_footer ul li.linkedin a {
background: #242492;
}
.offcanvas_footer ul li.google-plus a {
background: #2af645;
}
.offcanvas_footer ul li.facebook a:hover {
background: #cc9900;
}
.offcanvas_footer ul li.twitter a:hover {
background: #cc9900;
}
.offcanvas_footer ul li.instagram a:hover {
background: #cc9900;
}
.offcanvas_footer ul li.pinterest a:hover {
background: #cc9900;
}
.offcanvas_footer ul li.linkedin a:hover {
background: #cc9900;
}
.offcanvas_footer ul li.google-plus a:hover {
background: #cc9900;
}
.fa-envelope {
margin-right: 5px;
width: 30px;
height: 30px;
text-align: center;
line-height: 30px;
border-radius: 50%;
font-size: 13px;
background: #9a1ee2;
color: #fff;
}
.offcanvas_footer a {
letter-spacing: 2px;
}
/* ***************************** */
.header_transparent {
position: absolute;
width: 100%;
top: 0;
left: 0;
z-index: 99;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.header_transparent {
position: inherit;
}
}
@media only screen and (max-width: 767px) {
.header_transparent {
position: inherit;
}
}
.header_transparent .header_container {
background: rgba(0, 0, 0, 0.9);
padding: 17px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.header_transparent .header_container {
background: #1c1d22;
}
}
@media only screen and (max-width: 767px) {
.header_transparent .header_container {
background: #1c1d22;
}
}
.header_transparent .sticky-header.sticky {
background: rgba(28, 29, 24, 0.7);
padding: 8px 0;
}
.header_container {
padding: 22px 0;
background: #1c1d22;
}
@media only screen and (max-width: 767px) {
.header_container {
padding: 25px 0;
}
}
.sticky-header.sticky {
position: fixed;
z-index: 99;
width: 100%;
top: 0;
background: rgba(28, 29, 24, 0.7);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
animation: fadeInDown;
animation-duration: 900ms;
animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
animation-delay: 0s;
animation-iteration-count: 1;
animation-direction: normal;
animation-fill-mode: none;
animation-play-state: running;
border-bottom: 0;
display: block;
padding: 10px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.sticky-header.sticky {
position: inherit;
box-shadow: inherit;
animation-name: inherit;
padding: 0;
background: inherit;
opacity: inherit;
}
}
@media only screen and (max-width: 767px) {
.sticky-header.sticky {
position: inherit;
box-shadow: inherit;
animation-name: inherit;
padding: 0;
background: inherit;
opacity: inherit;
}
}
.sticky-header.sticky .logo a img {
max-width: 118px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.sticky-header.sticky .logo a img {
max-width: 100%;
}
}
@media only screen and (max-width: 767px) {
.sticky-header.sticky .logo a img {
max-width: 100px;
}
}
.header_transparent .sticky-header.sticky {
background: rgba(28, 29, 24, 0.7);
padding: 8px 0;
}
@media only screen and (max-width: 767px) {
.logo {
display: inline-block;
}
}
@media only screen and (max-width: 767px) {
.logo a img {
max-width: 110px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.main_menu {
display: none;
}
}
@media only screen and (max-width: 767px) {
.main_menu {
display: none;
}
}
.main_menu nav>ul {
display: flex;
justify-content: flex-end;
}
.main_menu nav>ul>li {
position: relative;
flex-shrink: 0;
}
.main_menu nav>ul>li:hover ul.sub_menu {
visibility: visible;
max-height: 300px;
padding: 24px 30px;
}
.main_menu nav>ul>li:hover .mega_menu {
visibility: visible;
max-height: 300px;
padding: 25px 30px 30px 30px;
}
.main_menu nav>ul>li:hover>a {
color: #cc9900;
}
.main_menu nav>ul>li>a {
display: block;
font-size: 14px;
line-height: 20px;
padding: 10px 23px;
text-transform: uppercase;
font-weight: 400;
position: relative;
color: #fff;
}
.main_menu nav>ul>li>a i {
margin-left: 3px;
}
.main_menu nav>ul>li>a.active {
color: #cc9900;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.main_menu nav>ul>li>a {
padding: 10px 15px;
}
}
.main_menu nav>ul>li ul.sub_menu {
position: absolute;
min-width: 215px;
padding: 0 30px;
background: #fff;
box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
max-height: 0;
transform-origin: 0 0 0;
left: 0;
right: auto;
visibility: hidden;
overflow: hidden;
transition: 0.5s;
z-index: 99;
top: 100%;
text-align: left;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.main_menu nav>ul>li ul.sub_menu li a {
font-size: 13px;
font-weight: 400;
display: block;
line-height: 32px;
text-transform: capitalize;
}
.main_menu nav>ul>li ul.sub_menu li a:hover {
color: #cc9900;
}
.main_menu nav>ul>li.mega_items {
position: static;
}
.main_menu nav>ul>li .mega_menu {
position: absolute;
min-width: 100%;
padding: 0 30px 0 30px;
background: #fff;
box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
max-height: 0;
transform-origin: 0 0 0;
left: 0;
right: auto;
visibility: hidden;
overflow: hidden;
transition: 0.5s;
z-index: 99;
top: 100%;
text-align: left;
}
.menu_two nav>ul {
justify-content: center;
}
.menu_two nav>ul>li:hover>a {
color: #cc9900;
}
.menu_two nav>ul>li>a {
padding: 10px 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
.menu_two nav>ul>li>a {
padding: 10px 14px;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.menu_two nav>ul>li>a {
padding: 10px 5px;
font-size: 13px;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.menu_two nav>ul>li>a i {
margin-left: 1px;
}
}
.menu_two nav>ul>li>a.active {
color: #cc9900;
}
.menu_two nav>ul>li ul.sub_menu li a:hover {
color: #cc9900;
}
.menu_two .mega_menu_inner>li>a:hover {
color: #cc9900;
}
.menu_two .mega_menu_inner>li ul li a:hover {
color: #cc9900;
}
.menu_position {
position: relative;
padding-top: 12px;
}
.mega_menu_inner {
display: flex;
justify-content: space-between;
}
.mega_menu_inner>li>a {
font-size: 14px;
line-height: 24px;
text-transform: uppercase;
font-weight: 600;
display: block;
margin-bottom: 12px;
}
.mega_menu_inner>li>a:hover {
color: #cc9900;
}
.mega_menu_inner>li ul li {
display: block;
}
.mega_menu_inner>li ul li a {
font-size: 13px;
font-weight: 400;
display: block;
line-height: 30px;
text-transform: capitalize;
}
.mega_menu_inner>li ul li a:hover {
color: #cc9900;
}
.header_top_right {
display: flex;
align-items: center;
justify-content: flex-end;
}
.header_top_right .header_right_info {
margin-left: 0;
}
.header_top_right .header_right_info>ul>li {
margin-right: 11px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.header_top_right .header_right_info>ul>li {
margin-right: 10px;
}
}
.header_top_right .header_right_info>ul>li:last-child {
margin-right: 0;
}
.header_top_right .header_right_info>ul>li>a {
color: #fff;
}
.header_top_right .header_right_info>ul>li:hover>a {
color: #cc9900;
}
.header_top_right .header_account {
margin-right: 0;
margin-left: 20px;
}
.header_top_right .header_account>ul>li {
position: relative;
margin-right: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.header_top_right .header_account>ul>li {
margin-right: 8px;
padding-right: 8px;
}
}
.header_top_right .header_account>ul>li::before {
content: "";
width: 1px;
height: 18px;
background: #a4a5a7;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
}
.header_top_right .header_account>ul>li:last-child {
margin-right: 0;
padding-right: 0;
}
.header_top_right .header_account>ul>li:last-child::before {
display: none;
}
.header_top_right .header_account>ul>li>a {
color: #fff;
font-size: 13px;
}
.header_top_right .header_account>ul>li.top_links>a {
font-size: 18px;
}
.header_top_right .header_account>ul>li:hover>a {
color: #cc9900;
}
.header_top_right .dropdown_language, .header_top_right .dropdown_currency, .header_top_right .dropdown_links {
right: 0;
left: auto;
}
/* ************************* */
.master-slider {
position: relative;
visibility: hidden;
font-family: 'Lato', sans-serif;
}
.master-slider a {
transition: none;
}
.master-slider, .master-slider * {
box-sizing: content-box;
}
.pt-pb {
padding-top: 0;
padding-bottom: 0;
}
.ms-slide {
position: absolute;
height: 100%;
transform: translateZ(0px);
}
.ms-slide .ms-layer {
position: absolute;
pointer-events: auto;
}
.ms-layer.bold-title {
font-weight: 900;
font-size: 26pt;
color: #222;
margin: 0;
}
.ms-layer.light-title {
margin: 0;
font-weight: 300;
font-size: 38pt;
text-transform: uppercase;
color: #f1f1f1;
letter-spacing: -3px;
}
html, body {
height: 100%;
overflow-x: hidden;
width: 100%;
}
body {
color: #c5c5c5;
background-color: #0a0c0b;
}
.btn, .btn:hover {
transition: all 0.25s ease-in-out;
}
.main-menu a {
color: #000;
transition: all 0.25s ease-in-out;
}
nav a:hover {
color: #d9932f;
outline: none;
outline-offset: 0px;
text-decoration: none !important;
}
a {
color: #b0976d;
}
a:hover, a:focus, a span:hover, a:active {
color: #d9932f !important;
outline: none;
outline-offset: 0px;
text-decoration: underline !important;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
color: #fff;
}
.ms-slide .ms-slide-layers {
position: absolute;
overflow: hidden;
width: 100%;
height: 100%;
z-index: 109;
top: 0px;
pointer-events: none;
}
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-thumb {
background-image: linear-gradient(125deg, #fb3c7f 0%, #ffc05e 100%);
border-radius: 10px;
}
.no-padding {
padding: 0;
}
.no-gutter>[class*='col-'] {
padding-right: 0;
padding-left: 0;
}
.lineeffect {
margin-bottom: 0;
}
.lineeffect a:hover::before, .lineeffect a:hover::after {
opacity: 1;
transform: scale(1);
}
.lineeffect a::before, .lineeffect a::after {
bottom: 10px;
content: "";
left: 10px;
opacity: 0;
position: absolute;
right: 10px;
top: 10px;
transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
z-index: 1;
}
.lineeffect a::before {
border-bottom: 1px solid rgba(255, 255, 255);
border-top: 1px solid #fff;
transform: scale(0, 1);
}
.lineeffect a::after {
border-left: 1px solid rgba(255, 255, 255);
border-right: 1px solid #fff;
transform: scale(1, 0);
}
.img-fill {
min-width: -webkit-fill-available;
}
section {
padding: 50px 0;
}
.category-img img {
display: block;
margin-bottom: 15px;
}
.category-img .cat-link {
text-align: center;
}
.category-img .cat-link a {
display: inline-block;
font-weight: normal;
color: #cc9900;
}
.category-img .cat-link a:hover {
color: #f0dc6f;
}
.super-deal-section {
background-repeat: no-repeat;
background-size: cover;
background-position: top right;
min-height: 500px;
}
.super-deal h1 {
color: #fff;
font-weight: 600;
font-size: 3.42em;
}
.super-deal h2 {
color: #fff;
}
.super-deal a.btn {
border: 1px solid #fff;
padding: 10px 25px;
color: #fff;
}
.super-deal a.btn:hover {
border: 1px solid #d9932f;
color: #d9932f;
background-color: #fff;
}
.super-deal {
margin-top: 85px;
margin-bottom: 85px;
text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
color: #fff;
}
@media only screen and (max-width: 991px) {
.super-deal-section {
min-height: 350px;
}
.super-deal {
margin-top: 0px;
margin-bottom: 15px;
}
.super-deal h1 {
font-weight: 600;
font-size: 24px;
}
}
@media only screen and (max-width: 767px) {
.super-deal-section {
background-position: top center;
min-height: 300px;
}
}
.product-slide .row {
display: flex;
height: auto;
justify-content: center;
}
.categoriesW{
display: block;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 768px) {
.categorieW{
margin-bottom: 50px;
}
}
.tabSix .nav-tabs {
border-bottom: none;
}
.tabSix .nav-tabs>li>a {
margin-right: 0;
line-height: 1.42;
background-color: transparent;
border-style: solid;
border-color: #898989;
color: #999;
border-width: 0 0 0 0;
border-radius: 0px;
padding: 10px 25px;
font-weight: 600;
}
.tabSix .nav-tabs>li.active>a, .tabSix .nav-tabs>li.active>a:focus, .tabSix .nav-tabs>li.active>a:hover, .tabSix .nav-tabs>li>a:hover {
color: #d9932f;
cursor: pointer;
border-width: 0 0 0 0;
background-color: transparent;
}
.tabSix .nav-tabs li a p {
margin-bottom: 0;
font-size: 1em;
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
}
.tabSix .nav-tabs li {
display: inline-block;
float: none;
}
@media (min-width: 768px) {
.tabSix .tab-content {
margin-top: 24px;
}
}
.tabSix ul li::after {
font: normal normal normal 14px/1 FontAwesome;
content: "\f111";
display: inline-block;
position: absolute;
right: -4px;
top: 18px;
font-size: 7px;
}
.tabSix ul li:last-child::after {
display: none;
}
.product-main {
float: left;
width: calc(100% - 2px);
transition: all 0.45s ease-in-out;
overflow: hidden;
}
figure {
float: left;
position: relative;
}
.product-main figure::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: all 0.45s ease-in-out;
}
.product-main figure.dark-theme::before {
background-color: #000;
}
figure img {
width: 100%;
}
.ribbon {
position: absolute;
top: 0;
left: 0;
display: inline-block;
background-color: #d9932f;
}
.ribbon span {
color: aliceblue;
text-transform: capitalize;
padding: 22px 0px;
display: inline-block;
font-size: 15px;
transform: rotate(-90deg);
font-weight: 600;
line-height: 45px;
}
.ribbon::after {
content: "";
width: 0px;
height: 0;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
position: absolute;
bottom: -4px;
left: 50%;
margin-left: -4px;
border-top: 4px solid #d9932f;
}
.product-main a:hover h4{
text-decoration: underline;
transition: 0.25s;
}
.block-sticker-tag1 {
width: 50px;
height: 50px;
background-color: #313131;
position: absolute;
top: 50%;
margin-top: -75px;
right: -51px;
color: #fff;
opacity: 0;
transition: all 0.45s ease-in-out;
}
.off_tag {
position: absolute;
top: 9px;
left: 0;
font-size: 13px;
color: #fff;
line-height: 15px;
text-transform: uppercase;
text-align: center;
}
.block-sticker-tag1 strong {
font-size: 18px;
text-align: center;
padding: 7px 0 0 15px;
display: inline-block;
}
.block-sticker-tag2 {
width: 50px;
height: 50px;
background-color: #313131;
position: absolute;
top: 50%;
margin-top: -25px;
right: -51px;
color: #fff;
opacity: 0;
transition: all 0.45s ease-in-out;
}
.off_tag1 {
position: absolute;
top: 20px;
left: 0;
font-size: 13px;
color: #fff;
line-height: 15px;
text-transform: uppercase;
text-align: center;
}
.block-sticker-tag2 strong {
font-size: 18px;
text-align: center;
padding: 0px 0 0 16px;
display: inline-block;
margin-top: -2px;
}
.block-sticker-tag3 {
width: 50px;
height: 50px;
background-color: #313131;
position: absolute;
top: 50%;
margin-top: 25px;
right: -51px;
color: #fff;
opacity: 0;
transition: all 0.45s ease-in-out;
}
.off_tag2 {
position: absolute;
top: 20px;
left: 0;
font-size: 13px;
color: #fff;
line-height: 15px;
text-transform: uppercase;
text-align: center;
}
.block-sticker-tag3 strong {
font-size: 18px;
text-align: center;
padding: 0px 0 0 16px;
display: inline-block;
margin-top: -2px;
}
.block-caption1 {
width: 100%;
display: inline-block;
position: relative;
text-align: center;
}
.block-caption1 h4 {
font-size: 1.42em;
font-weight: 400;
margin-top: 10px;
color: #fff;
}
.price {
padding: 0;
margin-top: 6px;
margin-bottom: 10px;
}
.sell-price {
font-size: 1.2em;
font-weight: 700;
margin-right: 10px;
color: #d9932f;
}
.price .actual-price {
color: #ababab;
font-size: 1.3em;
text-decoration: line-through;
}
.product-main:hover {
transition: all 0.45s ease-in-out;
}
.product-main:hover figure::before {
opacity: 0.4;
transition: all 0.45s ease-in-out;
}
.product-main:hover figure .block-sticker-tag1, .product-main:hover figure .block-sticker-tag2, .product-main:hover figure .block-sticker-tag3 {
opacity: 1;
right: 0;
transition: all 0.45s ease-in-out;
}
.block-sticker-tag1:hover strong, .block-sticker-tag2:hover strong, .block-sticker-tag3:hover strong {
color: #d9932f;
cursor: pointer;
}
.testi {
text-align: center;
background-attachment: fixed;
background-size: cover;
background-repeat: no-repeat;
}
.testi #quote-carousel.carousel {
padding-bottom: 30px;
}
.testi #quote-carousel.carousel .carousel-inner .item {
opacity: 0;
transition-property: opacity;
}
.testi #quote-carousel.carousel .carousel-inner .active {
opacity: 1;
transition-property: opacity;
}
.testi #quote-carousel.carousel .carousel-indicators {
bottom: -10px;
z-index: 2;
}
.testi #quote-carousel.carousel .carousel-indicators li {
background-color: #848484;
border: none;
}
.testi #quote-carousel.carousel .carousel-indicators .active {
background-color: #cc9900;
border: none;
width: 10px;
height: 10px;
margin: 1px;
}
.testi #quote-carousel.carousel blockquote {
text-align: left;
border: none;
font-size: 14px;
color: #fff;
width: 90%;
margin: 15px auto;
}
.testi #quote-carousel.carousel blockquote p {
letter-spacing: 1px;
padding-top: 15px;
}
.testi #quote-carousel.carousel blockquote .profile-circle img {
margin: 0 auto;
border-radius: 50%;
border: 8px solid #d9932f;
}
.testi .item .name {
color: #fff;
font-size: 18px;
}
.testi .item .position {
text-align: left;
}
@media only screen and (max-width: 1199px) {
.testi #quote-carousel blockquote {
text-align: center;
}
}
@media only screen and (max-width: 767px) {
.testi #quote-carousel blockquote {
width: 100%;
}
}
.blog-title a {
color: #fff;
}
.blog-img .bubble-top::before {
pointer-events: none;
position: absolute;
z-index: 999;
content: "";
border-style: solid;
transition-duration: 0.3s;
transition-property: top;
left: calc(50% - 20px);
bottom: 0;
border-width: 0 20px 20px 20px;
border-color: transparent transparent #0a0c0b transparent;
}
.blog-img .bubble-bottom::before {
pointer-events: none;
position: absolute;
z-index: 999;
content: "";
border-style: solid;
transition-duration: 0.3s;
transition-property: top;
left: calc(100% - 20px);
top: 0;
border-width: 20px 20px 0 20px;
border-color: #0a0c0b transparent transparent transparent;
}
.ImageWrapper .PStyleHe {
position: absolute;
background: url(images/plus.png) no-repeat scroll center center / 100% 100% #222222;
width: 100%;
height: 100%;
z-index: 199;
background-origin: padding-box, padding-box;
background-position: center center;
background-repeat: no-repeat;
background-size: 10px 10px, 100% 100%;
opacity: 0;
top: 0;
transition: all 0.3s ease 0s;
}
.ImageWrapper {
display: block;
overflow: hidden;
position: relative;
}
.ImageWrapper:hover .PStyleHe {
opacity: 0.6;
background-size: 60px 60px, 100% 100%;
visibility: visible;
}
.blog-content {
padding: 15px;
min-height: 265px;
}
.read-more {
color: #cc9900;
}
@media only screen and (max-width: 1024px) {
.blog-content {
min-height: 220px;
}
}
@media only screen and (max-width: 991px) {
.blog-content {
padding: 15px;
min-height: 170px;
}
.blog-title h4 {
margin-top: 0;
margin-bottom: 5px;
}
.post-date {
margin-bottom: 5px;
}
.post-content {
margin-bottom: 10px;
}
}
@media only screen and (max-width: 767px) {
.blog-content {
padding: 15px;
min-height: 170px;
background-color: #000;
margin-bottom: 10px;
}
.blog-img .bubble-top::before {
border-color: transparent transparent #000 transparent;
}
.blog-img .bubble-bottom::before {
border-color: #000 transparent transparent transparent;
}
}
.newsletter-bg {
background: linear-gradient(to right, #111514 50%, #540b23 0, #540b23 50%, #540b23 100%);
padding-bottom: 60px;
min-height: 250px;
}
.newsletter-bg form {
text-align: right;
}
.newsletter {
width: auto;
display: inline-block;
margin: 0 auto;
}
.form-inline .newsletter .form-control {
border: 1px solid #0a0c0b;
border-radius: 0;
width: 370px;
background-color: #0a0c0b;
height: 50px;
}
.newsletter .btn-default {
border: 1px solid #d9932f;
border-radius: 0;
background-color: #d9932f;
color: #fff;
transition: ease 0.5s ease-in-out;
padding: 8px 25px;
/* font-size: 18px; */
align-items: center;
}
.newsletter .btn-default:hover {
border: 1px solid #d9932f;
background-color: #fff;
color: #d9932f;
transition: ease-in-out 0.5s ease-in-out;
}
.newsletter .btn-default i {
margin-left: 7px;
font-size: 15px;
background-color: transparent;
}
.newsletter .btn-default:hover i {
color: #d9932f;
}
.t-mb-20 {
margin-bottom: 20px;
}
.t-pt-40 {
padding-top: 40px;
}
.t-pb-30 {
padding-bottom: 30px;
}
.t-pt-70 {
padding-top: 70px;
}
@media only screen and (max-width: 991px) {
.newsletter-bg {
background-position: top;
}
.newsletter .btn-default {
margin-top: 8px;
}
}
@media only screen and (max-width: 767px) {
.newsletter-bg form {
text-align: center;
}
}
.footer {
text-align: center;
padding: 80px 0 0;
background-color: #000;
}
.footer .footer-block {
text-align: left;
}
.footer .footer-block li a {
color: #ccc;
padding-bottom: 5px;
padding-top: 5px;
display: block;
}
.footer .footer-block li a::before {
font-family: fontawesome;
font-size: 7px;
vertical-align: middle;
color: #fff;
}
.footer .footer-block li a:hover {
margin-left: 5px;
text-decoration: none;
}
.footer-title {
color: #d9932f;
text-transform: capitalize;
padding-bottom: 5px;
margin-bottom: 10px;
font-size: 16px;
font-weight: 600;
}
hr.footer_border {
color: #d9932f;
width: 20%;
text-align: left;
border-color: #d9932f;
border-width: 2px;
margin: 0 0 20px 0;
}
.footer_icon {
padding-top: 5px;
}
.footer_icon i {
color: #ccc;
margin-right: 10px;
}
.contact_footer, .contact_footer a {
color: #ccc;
}
.footer_icon .fa-envelope {
background: transparent;
}
.footer_icon div {
padding: 5px 0 0;
}
.footer_botom_outer {
margin-top: 50px;
}
.footerbottom_link {
border-top: 1px solid #d9932f;
border-bottom: 1px solid #d9932f;
padding: 20px 0 15px 0;
}
.footerbottom_link, .copyright {
text-align: center;
color: #ccc;
}
footer .card .ul.list-inline {
margin: 0;
}
.copyright p {
color: #ccc;
padding: 25px 0;
font-size: 1em;
line-height: 15px;
height: 50px;
}
.copyright i {
color: #d9932f;
margin-right: 5px;
}
@media only screen and (max-width: 991px) {
.footer {
padding: 30px 0 0;
}
}
blockquote {
text-align: center !important;
} | 0.521471 | 0.091058 |
.container .tudo {
float: left;
}
.container .container-left {
width: 800px;
margin: 5px;
}
.container .container-left .produtos-recentes {
width: inherit;
margin-bottom: 20px;
}
.container .container-left .produtos-recentes .corpo .produtos {
float: left;
width: 150px;
border: 1px solid #fff;
margin-right: 10px;
margin-top: 10px;
box-shadow: 0 1px 1px #888;
}
.container .container-left .produtos-recentes .cabeca {
color: #888;
background: #fff;
padding: 4px;
font-size: 19px;
box-shadow: 2px 1px 2px #;
border-radius: 5px;
}
.container .container-left .produtos-recentes .corpo .produtos .produto-header img {
width: 150px;
overflow: hidden;
border-image: round;
border: 2px solid #888;
border-radius: 5px;
}
.container .container-left .produtos-recentes .corpo .produtos .produto-body {
background: #fff;
}
.compra {
width: 150px;
}
.add {
margin-left: 23px;
margin-bottom: 10px;
float: left;
}
.container .container-rigth {
width: 300px;
}
.container .container-rigth .comprado-cabeca {
background: #fff;
padding: 5px;
margin: 5px;
font-size: 19px;
box-shadow: 2px 1px 2px #888;
border-radius: 5px;
color: #888;
}
.container .container-rigth .comprado-corpo {
background: #fff;
height: 230px;
width: inherit;
margin: 5px;
padding: 5px;
box-shadow: 2px 1px 2px #888;
border-radius: 5px;
}
.container .container-rigth .comprado-corpo .categoria {
margin-top: 15px;
}
.container .container-rigth .comprado-corpo .categoria li {
list-style: none;
margin-left: 14px;
margin-bottom: 6px;
font-size: 19px;
}
.container .container-rigth .comprado-corpo .categoria li a {
color: #888;
}
.container-rigth .mais-vendido .vendido-cabeca {
padding: 5px;
margin: 5px;
background: #fff;
box-shadow: 2px 1px 2px #888;
border-radius: 5px;
color: #888;
}
.container-rigth .mais-vendido .vendido-cabeca p{
font-size: 19px;
}
.container-rigth .mais-vendido .vendido-corpo {
background: #fff;
height: 350px;
padding: 5px;
margin: 5px;
box-shadow: 2px 1px 2px #888;
border-radius: 5px;
}
.container .container-left .produtos-dispuniveis {
width: inherit;
margin-bottom: 10px;
}
.container .container-left .produtos-dispuniveis .dispunivel-cabeca {
background: #fff;
margin-top: 10px;
width: inherit;
float: left;
box-shadow: 2px 1px 2px #888;
border-radius: 5px;
padding: 5px;
margin: 5px;
}
.container .container-left .produtos-dispuniveis .dispunivel-cabeca h3 {
font-size: 19px;
color: #888;
margin-bottom: 10px;
}
.container .container-left .produtos-dispuniveis .dispunivel-corpo {
margin-top: 10px;
margin-left: 19px;
}
.container .container-left .produtos-dispuniveis .dispunivel-corpo .produto {
background: #fff;
width: 242px;
height: 100px;
box-shadow: 1px 2px 2px #888;
border-radius: 5px;
float: left;
margin-left: 10px;
margin-bottom: 10px;
color: #888;
font-weight: bold;
}
.container .container-left .produtos-dispuniveis .dispunivel-corpo .produto .btn-venda {
margin-left: 30px;
margin-top: 12px;
}
.container .container-left .produtos-dispuniveis .dispunivel-corpo .produto img {
float: left;
border: 2px solid #888;
}
.container .container-left .produtos-dispuniveis .dispunivel-corpo .produto p {
float: left;
}
.container .container-left .produtos-dispuniveis .dispunivel-corpo .produto button {
margin-top: 16px;
margin-left: 10px;
}
.olho {
color: #00acc1;
margin-right: 6px;
margin-top: 8px;
cursor: pointer;
}
.limpa {
clear: both;
}
.main-grid .hora {
width: 400px;
height: 20px;
margin-top: -4px;
margin-left: 350px;
float: left;
width: auto;
height: auto;
border: 3px solid #888;
background: #fff;
border-radius: 5px;
color: #00acc1;
}
.main-grid .hora ul li span {
margin-left: 29px;
}
.main-grid .hora ul .seperator {
margin-top: -20px;
}
/* funcionario */
.main-grid .row .list-func {
width: 600px;
background: #fff;
height: auto;
border-radius: 5px;
box-shadow: 2px 1px 2px #888;
}
.main-grid .row .list-func .paginacao ul {
margin-top: 8px;
color: red;
}
.main-grid .row .list-func h2{
font-size: 18px;
margin-top: 10px;
font-weight: bold;
color: #888;
}
.main-grid .row .list-func .profile {
float: left;
border: 1px solid #888;
margin-left: 12px;
margin-top: 12px;
padding-right: 7px;
margin-bottom: 14px;
}
.main-grid .row .list-func .profile img {
float: left;
border: none;
}
.main-grid .row .list-func .profile p {
float: left;
}
.main-grid .row .list-func .profile i {
float: left;
margin-top: 26px;
margin-left: -134px;
}
.main-grid .row .list-func .profile a{
margin-top: 77px;
margin-left: -15px;
}
/* ======================= produto-single ================================ */
.container .img .thumbnail .caption h3 {
color: #00bcd4;
font-weight: bold;
font-size: 19px;
margin-bottom: 5px;
border-bottom: 1px dashed #888;
}
.container .img .thumbnail .caption ul {
list-style: none;
margin-left: 17px;
font-size: 18px;
font-weight: bold;
}
.container .img .thumbnail .caption ul li{
color: #888;
}
.form .form-group ul {
list-style: none;
margin-left: 12px;
font-weight: bold;
color: #888;
}
.form .form-group label {
font-weight: 100px;
color: #00bcd4;
font-size: 19px;
}
.form .form-group ul li {
border-bottom: 1px dashed #888;
}
.encomenda {
margin-right: 18px;
}
/*============= list encomenda ================*/
.container-rigth .mais-vendido .vendido-corpo ul {
list-style: none;
margin-left: 23px;
margin-bottom: 12px;
font-size: 16px;
font-weight: bold;
margin-top: 12px;
}
.container-rigth .mais-vendido .vendido-corpo ul li {
border-bottom: 1px dashed #ccc;
margin-bottom: 10px;
}
.container-rigth .mais-vendido .vendido-corpo ul li a{
color: #888;
}
.container-rigth .mais-vendido .vendido-corpo ul li a:hover {
color: #00bcd4;
}
/*========== carrinho =============*/
.container .carrinho {
width: 600px;
height: 600px;
background: #fff;
margin: 10px auto;
border-radius: 5px;
box-shadow: 2px 2px 2px #ccc;
}
.container .carrinho .carr-cabeca h3 {
padding-top: 10px;
padding-left: 10px;
color: #888;
font-weight: bold;
}
.img.logo {
border-image: round;
border-radius: 5px;
}
.container .row-now .funcionario-editar {
width: 600px;
height: auto;
margin: 20px auto;
padding: 10px;
background: #fff;
box-shadow: 2px 1px 2px #ccc;
}
.row-now .funcionario-editar .form .form-group ul li {
display: none;
}
.row .col-md-6 .form .form-group ul li {
display: none;
}
.container .row .col-md-6 .relatorio {
background: #fff;
box-shadow: 2px 1px 2px #ccc;
border-radius: 5px;
padding: 10px;
}
.container .row-now .funcionario-editar h1 {
color: #00bcd4;
font-weight: bold;
margin-top: 10px;
margin-left: 10px;
font-size: 33px;
border-bottom: 1px solid #ccc;
}
.container .row-now .funcionario-editar img {
border-image: round;
border: 4px solid #ccc;
border-radius: 7px;
margin-bottom: 20px;
margin-top: 15px;
}
.container .row-now .funcionario-editar h3 {
color: #888;
font-size: 22px;
margin-bottom: 10px;
font-weight: bold;
} | static/css/default.css | .container .tudo {
float: left;
}
.container .container-left {
width: 800px;
margin: 5px;
}
.container .container-left .produtos-recentes {
width: inherit;
margin-bottom: 20px;
}
.container .container-left .produtos-recentes .corpo .produtos {
float: left;
width: 150px;
border: 1px solid #fff;
margin-right: 10px;
margin-top: 10px;
box-shadow: 0 1px 1px #888;
}
.container .container-left .produtos-recentes .cabeca {
color: #888;
background: #fff;
padding: 4px;
font-size: 19px;
box-shadow: 2px 1px 2px #;
border-radius: 5px;
}
.container .container-left .produtos-recentes .corpo .produtos .produto-header img {
width: 150px;
overflow: hidden;
border-image: round;
border: 2px solid #888;
border-radius: 5px;
}
.container .container-left .produtos-recentes .corpo .produtos .produto-body {
background: #fff;
}
.compra {
width: 150px;
}
.add {
margin-left: 23px;
margin-bottom: 10px;
float: left;
}
.container .container-rigth {
width: 300px;
}
.container .container-rigth .comprado-cabeca {
background: #fff;
padding: 5px;
margin: 5px;
font-size: 19px;
box-shadow: 2px 1px 2px #888;
border-radius: 5px;
color: #888;
}
.container .container-rigth .comprado-corpo {
background: #fff;
height: 230px;
width: inherit;
margin: 5px;
padding: 5px;
box-shadow: 2px 1px 2px #888;
border-radius: 5px;
}
.container .container-rigth .comprado-corpo .categoria {
margin-top: 15px;
}
.container .container-rigth .comprado-corpo .categoria li {
list-style: none;
margin-left: 14px;
margin-bottom: 6px;
font-size: 19px;
}
.container .container-rigth .comprado-corpo .categoria li a {
color: #888;
}
.container-rigth .mais-vendido .vendido-cabeca {
padding: 5px;
margin: 5px;
background: #fff;
box-shadow: 2px 1px 2px #888;
border-radius: 5px;
color: #888;
}
.container-rigth .mais-vendido .vendido-cabeca p{
font-size: 19px;
}
.container-rigth .mais-vendido .vendido-corpo {
background: #fff;
height: 350px;
padding: 5px;
margin: 5px;
box-shadow: 2px 1px 2px #888;
border-radius: 5px;
}
.container .container-left .produtos-dispuniveis {
width: inherit;
margin-bottom: 10px;
}
.container .container-left .produtos-dispuniveis .dispunivel-cabeca {
background: #fff;
margin-top: 10px;
width: inherit;
float: left;
box-shadow: 2px 1px 2px #888;
border-radius: 5px;
padding: 5px;
margin: 5px;
}
.container .container-left .produtos-dispuniveis .dispunivel-cabeca h3 {
font-size: 19px;
color: #888;
margin-bottom: 10px;
}
.container .container-left .produtos-dispuniveis .dispunivel-corpo {
margin-top: 10px;
margin-left: 19px;
}
.container .container-left .produtos-dispuniveis .dispunivel-corpo .produto {
background: #fff;
width: 242px;
height: 100px;
box-shadow: 1px 2px 2px #888;
border-radius: 5px;
float: left;
margin-left: 10px;
margin-bottom: 10px;
color: #888;
font-weight: bold;
}
.container .container-left .produtos-dispuniveis .dispunivel-corpo .produto .btn-venda {
margin-left: 30px;
margin-top: 12px;
}
.container .container-left .produtos-dispuniveis .dispunivel-corpo .produto img {
float: left;
border: 2px solid #888;
}
.container .container-left .produtos-dispuniveis .dispunivel-corpo .produto p {
float: left;
}
.container .container-left .produtos-dispuniveis .dispunivel-corpo .produto button {
margin-top: 16px;
margin-left: 10px;
}
.olho {
color: #00acc1;
margin-right: 6px;
margin-top: 8px;
cursor: pointer;
}
.limpa {
clear: both;
}
.main-grid .hora {
width: 400px;
height: 20px;
margin-top: -4px;
margin-left: 350px;
float: left;
width: auto;
height: auto;
border: 3px solid #888;
background: #fff;
border-radius: 5px;
color: #00acc1;
}
.main-grid .hora ul li span {
margin-left: 29px;
}
.main-grid .hora ul .seperator {
margin-top: -20px;
}
/* funcionario */
.main-grid .row .list-func {
width: 600px;
background: #fff;
height: auto;
border-radius: 5px;
box-shadow: 2px 1px 2px #888;
}
.main-grid .row .list-func .paginacao ul {
margin-top: 8px;
color: red;
}
.main-grid .row .list-func h2{
font-size: 18px;
margin-top: 10px;
font-weight: bold;
color: #888;
}
.main-grid .row .list-func .profile {
float: left;
border: 1px solid #888;
margin-left: 12px;
margin-top: 12px;
padding-right: 7px;
margin-bottom: 14px;
}
.main-grid .row .list-func .profile img {
float: left;
border: none;
}
.main-grid .row .list-func .profile p {
float: left;
}
.main-grid .row .list-func .profile i {
float: left;
margin-top: 26px;
margin-left: -134px;
}
.main-grid .row .list-func .profile a{
margin-top: 77px;
margin-left: -15px;
}
/* ======================= produto-single ================================ */
.container .img .thumbnail .caption h3 {
color: #00bcd4;
font-weight: bold;
font-size: 19px;
margin-bottom: 5px;
border-bottom: 1px dashed #888;
}
.container .img .thumbnail .caption ul {
list-style: none;
margin-left: 17px;
font-size: 18px;
font-weight: bold;
}
.container .img .thumbnail .caption ul li{
color: #888;
}
.form .form-group ul {
list-style: none;
margin-left: 12px;
font-weight: bold;
color: #888;
}
.form .form-group label {
font-weight: 100px;
color: #00bcd4;
font-size: 19px;
}
.form .form-group ul li {
border-bottom: 1px dashed #888;
}
.encomenda {
margin-right: 18px;
}
/*============= list encomenda ================*/
.container-rigth .mais-vendido .vendido-corpo ul {
list-style: none;
margin-left: 23px;
margin-bottom: 12px;
font-size: 16px;
font-weight: bold;
margin-top: 12px;
}
.container-rigth .mais-vendido .vendido-corpo ul li {
border-bottom: 1px dashed #ccc;
margin-bottom: 10px;
}
.container-rigth .mais-vendido .vendido-corpo ul li a{
color: #888;
}
.container-rigth .mais-vendido .vendido-corpo ul li a:hover {
color: #00bcd4;
}
/*========== carrinho =============*/
.container .carrinho {
width: 600px;
height: 600px;
background: #fff;
margin: 10px auto;
border-radius: 5px;
box-shadow: 2px 2px 2px #ccc;
}
.container .carrinho .carr-cabeca h3 {
padding-top: 10px;
padding-left: 10px;
color: #888;
font-weight: bold;
}
.img.logo {
border-image: round;
border-radius: 5px;
}
.container .row-now .funcionario-editar {
width: 600px;
height: auto;
margin: 20px auto;
padding: 10px;
background: #fff;
box-shadow: 2px 1px 2px #ccc;
}
.row-now .funcionario-editar .form .form-group ul li {
display: none;
}
.row .col-md-6 .form .form-group ul li {
display: none;
}
.container .row .col-md-6 .relatorio {
background: #fff;
box-shadow: 2px 1px 2px #ccc;
border-radius: 5px;
padding: 10px;
}
.container .row-now .funcionario-editar h1 {
color: #00bcd4;
font-weight: bold;
margin-top: 10px;
margin-left: 10px;
font-size: 33px;
border-bottom: 1px solid #ccc;
}
.container .row-now .funcionario-editar img {
border-image: round;
border: 4px solid #ccc;
border-radius: 7px;
margin-bottom: 20px;
margin-top: 15px;
}
.container .row-now .funcionario-editar h3 {
color: #888;
font-size: 22px;
margin-bottom: 10px;
font-weight: bold;
} | 0.327668 | 0.081082 |
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900&display=swap');
/****************************
GENERAL
*****************************/
/* Background */
/* Font Size and Family */
/* Colors */
/* Basic Meida Queries */
/* Elements */
/* Radiuses */
/*Colors for color mixer*/
/****************************
HEADER
*****************************/
/*When to open Main Menu Burger*/
/*When to open Second Menu Burger*/
/*Header Menu Navigation*/
/*Header Dropdown menu*/
/*Mobile Main Menu Navigation*/
/*Mobile Main Menu Navigation*/
/*Sidebar nav*/
/*Header member nav*/
/*Header burger*/
/*Header social*/
/*Logo on Header*/
/*Social icons General*/
body {
font-family: 'verdana';
outline: none !important;
}
img {
max-width: 100%;
}
html,
body {
/*!*font-size: 16px;*!*/
}
body {
overflow-x: hidden;
max-width: 100%;
background: #ffffff;
color: #212121;
}
a {
color: #0044de;
}
.main {
position: relative;
}
h1.hr,
h2.hr,
h3.hr,
h4.hr,
h5.hr {
display: inline-block;
}
h1.hr:after,
h2.hr:after,
h3.hr:after,
h4.hr:after,
h5.hr:after {
display: block;
content: '';
width: 65%;
max-width: 150px;
height: 8px;
background-color: #0044de;
-webkit-mask-image: url('../img/hr.svg');
mask-image: url('../img/hr.svg');
-webkit-mask-repeat: repeat-x;
mask-repeat: repeat-x;
-webkit-mask-size: contain;
mask-size: contain;
}
h1.hr:after {
margin: 15px auto 25px;
}
h2.hr:after {
margin: 30px auto;
}
h3.hr:after {
margin: 15px auto;
}
h4.hr:after {
margin: 15px auto;
}
h5.hr:after {
margin: 10px auto;
}
hr.hr {
display: inline-block;
min-height: auto !important;
border: 0;
width: 65%;
max-width: 150px;
height: 8px;
background-color: #0044de;
-webkit-mask-image: url('../img/hr.svg');
mask-image: url('../img/hr.svg');
-webkit-mask-repeat: repeat-x;
mask-repeat: repeat-x;
-webkit-mask-size: contain;
mask-size: contain;
}
.text-center h1.hr,
.text-center h2.hr,
.text-center h3.hr,
.text-center h4.hr,
.text-center h5.hr,
.text-center h6.hr {
margin-bottom: 10px;
}
.text-center h1.hr:after,
.text-center h2.hr:after,
.text-center h3.hr:after,
.text-center h4.hr:after,
.text-center h5.hr:after,
.text-center h6.hr:after {
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
text-align: center;
}
.text-left h1.hr,
.text-left h2.hr,
.text-left h3.hr,
.text-left h4.hr,
.text-left h5.hr,
.text-left h6.hr {
margin-left: 0 !important;
}
.text-left h1.hr:after,
.text-left h2.hr:after,
.text-left h3.hr:after,
.text-left h4.hr:after,
.text-left h5.hr:after,
.text-left h6.hr:after {
display: block;
width: 100%;
margin-left: 0;
margin-right: 0;
}
@media screen and (max-width: 991px) {
.text-lg-center h1.hr,
.text-lg-center h2.hr,
.text-lg-center h3.hr,
.text-lg-center h4.hr,
.text-lg-center h5.hr,
.text-lg-center h6.hr {
text-align: center;
}
.text-lg-center h1.hr:after,
.text-lg-center h2.hr:after,
.text-lg-center h3.hr:after,
.text-lg-center h4.hr:after,
.text-lg-center h5.hr:after,
.text-lg-center h6.hr:after {
text-align: center;
margin-left: auto;
margin-right: auto;
}
}
@media screen and (min-width: 991px) {
.text-lg-left h1.hr,
.text-lg-left h2.hr,
.text-lg-left h3.hr,
.text-lg-left h4.hr,
.text-lg-left h5.hr,
.text-lg-left h6.hr {
text-align: left;
}
.text-lg-left h1.hr:after,
.text-lg-left h2.hr:after,
.text-lg-left h3.hr:after,
.text-lg-left h4.hr:after,
.text-lg-left h5.hr:after,
.text-lg-left h6.hr:after {
text-align: left;
margin-left: 0;
margin-right: 0;
}
}
h1 {
/*font-size: 50px;*/
color: #212121;
/*font-weight: bold;*/
}
@media screen and (max-width: 1199px) {
h1 {
/*font-size: 46px;*/
}
}
h2 {
/*font-size: 46px;*/
color: #212121;
/*font-weight: 700;*/
}
@media screen and (max-width: 1199px) {
h2 {
/*font-size: 36px;*/
}
}
h3 {
/*font-size: 36px;*/
color: #212121;
/*font-weight: 600;*/
/* @media screen and (max-width: 767px) {
/*font-size: @title-xs;*/
}*/
}
@media screen and (max-width: 1199px) {
h3 {
/*font-size: 24px;*/
}
}
h4 {
/*font-size: 24px;*/
color: #212121;
/*font-weight: bold;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
}
@media screen and (max-width: 1199px) {
h4 {
/*font-size: 18px;*/
}
}
h5 {
/*font-size: 18px;*/
color: #212121;
/*font-weight: 600;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
}
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p {
color: #f4f4f4 !important;
}
.bg-default h1,
.bg-default h2,
.bg-default h3,
.bg-default h4,
.bg-default h5 {
color: #f4f4f4;
}
.text-background {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 0;
overflow: hidden;
opacity: 0.1;
/*font-size: 140px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 120px;*/
letter-spacing: normal;
color: #212121;
}
.text-background.xl {
/*font-size: 300px;*/
/*line-height: 280px;*/
}
.bg-default {
background-color: #212121;
}
.bg-primary {
background-color: #0044de !important;
}
.bg-secondary {
background-color: #6aabcf !important;
}
.bg-silver {
background-color: #f3f3f3 !important;
}
.bg-content-box {
background-clip: content-box;
/* @media screen and (max-width: 991px) {
background-clip: border-box;
}*/
}
.typography-area ul:not(.ul),
.typography-area ol:not(.ol) {
padding-left: 15px;
}
.typography-area ul:not(.ul) li {
display: list-item;
list-style-type: disc;
}
.typography-area ol:not(.ol) li {
list-style-type: decimal;
display: list-item;
list-style-type: disc;
}
.typography-area img {
max-width: 100%;
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
Created on : Jun 28, 2019, 11:47:53 AM
Author : m.petkov
*/
/*Color mixer*/
.bg-default,
.badge-default,
.icon-bg-default,
.hr-bg-default {
background-color: #212121;
}
.module-hr-bg-default div[class*="hr-"] {
background-color: #212121 !important;
}
.text-default {
color: #212121 !important;
}
.text-default > *:not(font),
.text-default .btn-link,
.icon-default {
color: #212121 !important;
}
.border-default-1 {
border: 1px solid #212121;
}
.border-default-2 {
border: 2px solid #212121;
}
.border-default-3 {
border: 3px solid #212121;
}
.border-default-4 {
border: 4px solid #212121;
}
.border-default-5 {
border: 5px solid #212121;
}
.border-default-6 {
border: 6px solid #212121;
}
.border-default-7 {
border: 7px solid #212121;
}
.border-default-8 {
border: 8px solid #212121;
}
.border-default-9 {
border: 9px solid #212121;
}
.border-default-10 {
border: 10px solid #212121;
}
.border-top-default-1 {
border-top: 1px solid #212121;
}
.border-top-default-2 {
border-top: 2px solid #212121;
}
.border-top-default-3 {
border-top: 3px solid #212121;
}
.border-top-default-4 {
border-top: 4px solid #212121;
}
.border-top-default-5 {
border-top: 5px solid #212121;
}
.border-top-default-6 {
border-top: 6px solid #212121;
}
.border-top-default-7 {
border-top: 7px solid #212121;
}
.border-top-default-8 {
border-top: 8px solid #212121;
}
.border-top-default-9 {
border-top: 9px solid #212121;
}
.border-top-default-10 {
border-top: 10px solid #212121;
}
.border-right-default-1 {
border-right: 1px solid #212121;
}
.border-right-default-2 {
border-right: 2px solid #212121;
}
.border-right-default-3 {
border-right: 3px solid #212121;
}
.border-right-default-4 {
border-right: 4px solid #212121;
}
.border-right-default-5 {
border-right: 5px solid #212121;
}
.border-right-default-6 {
border-right: 6px solid #212121;
}
.border-right-default-7 {
border-right: 7px solid #212121;
}
.border-right-default-8 {
border-right: 8px solid #212121;
}
.border-right-default-9 {
border-right: 9px solid #212121;
}
.border-right-default-10 {
border-right: 10px solid #212121;
}
.border-bottom-default-1 {
border-bottom: 1px solid #212121;
}
.border-bottom-default-2 {
border-bottom: 2px solid #212121;
}
.border-bottom-default-3 {
border-bottom: 3px solid #212121;
}
.border-bottom-default-4 {
border-bottom: 4px solid #212121;
}
.border-bottom-default-5 {
border-bottom: 5px solid #212121;
}
.border-bottom-default-6 {
border-bottom: 6px solid #212121;
}
.border-bottom-default-7 {
border-bottom: 7px solid #212121;
}
.border-bottom-default-8 {
border-bottom: 8px solid #212121;
}
.border-bottom-default-9 {
border-bottom: 9px solid #212121;
}
.border-bottom-default-10 {
border-bottom: 10px solid #212121;
}
.border-left-default-1 {
border-left: 1px solid #212121;
}
.border-left-default-2 {
border-left: 2px solid #212121;
}
.border-left-default-3 {
border-left: 3px solid #212121;
}
.border-left-default-4 {
border-left: 4px solid #212121;
}
.border-left-default-5 {
border-left: 5px solid #212121;
}
.border-left-default-6 {
border-left: 6px solid #212121;
}
.border-left-default-7 {
border-left: 7px solid #212121;
}
.border-left-default-8 {
border-left: 8px solid #212121;
}
.border-left-default-9 {
border-left: 9px solid #212121;
}
.border-left-default-10 {
border-left: 10px solid #212121;
}
.bg-primary,
.badge-primary,
.icon-bg-primary,
.hr-bg-primary {
background-color: #0044de;
}
.module-hr-bg-primary div[class*="hr-"] {
background-color: #0044de !important;
}
.text-primary {
color: #0044de !important;
}
.text-primary > *:not(font),
.text-primary .btn-link,
.icon-primary {
color: #0044de !important;
}
.border-primary-1 {
border: 1px solid #0044de;
}
.border-primary-2 {
border: 2px solid #0044de;
}
.border-primary-3 {
border: 3px solid #0044de;
}
.border-primary-4 {
border: 4px solid #0044de;
}
.border-primary-5 {
border: 5px solid #0044de;
}
.border-primary-6 {
border: 6px solid #0044de;
}
.border-primary-7 {
border: 7px solid #0044de;
}
.border-primary-8 {
border: 8px solid #0044de;
}
.border-primary-9 {
border: 9px solid #0044de;
}
.border-primary-10 {
border: 10px solid #0044de;
}
.border-top-primary-1 {
border-top: 1px solid #0044de;
}
.border-top-primary-2 {
border-top: 2px solid #0044de;
}
.border-top-primary-3 {
border-top: 3px solid #0044de;
}
.border-top-primary-4 {
border-top: 4px solid #0044de;
}
.border-top-primary-5 {
border-top: 5px solid #0044de;
}
.border-top-primary-6 {
border-top: 6px solid #0044de;
}
.border-top-primary-7 {
border-top: 7px solid #0044de;
}
.border-top-primary-8 {
border-top: 8px solid #0044de;
}
.border-top-primary-9 {
border-top: 9px solid #0044de;
}
.border-top-primary-10 {
border-top: 10px solid #0044de;
}
.border-right-primary-1 {
border-right: 1px solid #0044de;
}
.border-right-primary-2 {
border-right: 2px solid #0044de;
}
.border-right-primary-3 {
border-right: 3px solid #0044de;
}
.border-right-primary-4 {
border-right: 4px solid #0044de;
}
.border-right-primary-5 {
border-right: 5px solid #0044de;
}
.border-right-primary-6 {
border-right: 6px solid #0044de;
}
.border-right-primary-7 {
border-right: 7px solid #0044de;
}
.border-right-primary-8 {
border-right: 8px solid #0044de;
}
.border-right-primary-9 {
border-right: 9px solid #0044de;
}
.border-right-primary-10 {
border-right: 10px solid #0044de;
}
.border-bottom-primary-1 {
border-bottom: 1px solid #0044de;
}
.border-bottom-primary-2 {
border-bottom: 2px solid #0044de;
}
.border-bottom-primary-3 {
border-bottom: 3px solid #0044de;
}
.border-bottom-primary-4 {
border-bottom: 4px solid #0044de;
}
.border-bottom-primary-5 {
border-bottom: 5px solid #0044de;
}
.border-bottom-primary-6 {
border-bottom: 6px solid #0044de;
}
.border-bottom-primary-7 {
border-bottom: 7px solid #0044de;
}
.border-bottom-primary-8 {
border-bottom: 8px solid #0044de;
}
.border-bottom-primary-9 {
border-bottom: 9px solid #0044de;
}
.border-bottom-primary-10 {
border-bottom: 10px solid #0044de;
}
.border-left-primary-1 {
border-left: 1px solid #0044de;
}
.border-left-primary-2 {
border-left: 2px solid #0044de;
}
.border-left-primary-3 {
border-left: 3px solid #0044de;
}
.border-left-primary-4 {
border-left: 4px solid #0044de;
}
.border-left-primary-5 {
border-left: 5px solid #0044de;
}
.border-left-primary-6 {
border-left: 6px solid #0044de;
}
.border-left-primary-7 {
border-left: 7px solid #0044de;
}
.border-left-primary-8 {
border-left: 8px solid #0044de;
}
.border-left-primary-9 {
border-left: 9px solid #0044de;
}
.border-left-primary-10 {
border-left: 10px solid #0044de;
}
.bg-secondary,
.badge-secondary,
.icon-bg-secondary,
.hr-bg-secondary {
background-color: #6aabcf;
}
.module-hr-bg-secondary div[class*="hr-"] {
background-color: #6aabcf !important;
}
.text-secondary {
color: #6aabcf !important;
}
.text-secondary > *:not(font),
.text-secondary .btn-link,
.icon-secondary {
color: #6aabcf !important;
}
.border-secondary-1 {
border: 1px solid #6aabcf;
}
.border-secondary-2 {
border: 2px solid #6aabcf;
}
.border-secondary-3 {
border: 3px solid #6aabcf;
}
.border-secondary-4 {
border: 4px solid #6aabcf;
}
.border-secondary-5 {
border: 5px solid #6aabcf;
}
.border-secondary-6 {
border: 6px solid #6aabcf;
}
.border-secondary-7 {
border: 7px solid #6aabcf;
}
.border-secondary-8 {
border: 8px solid #6aabcf;
}
.border-secondary-9 {
border: 9px solid #6aabcf;
}
.border-secondary-10 {
border: 10px solid #6aabcf;
}
.border-top-secondary-1 {
border-top: 1px solid #6aabcf;
}
.border-top-secondary-2 {
border-top: 2px solid #6aabcf;
}
.border-top-secondary-3 {
border-top: 3px solid #6aabcf;
}
.border-top-secondary-4 {
border-top: 4px solid #6aabcf;
}
.border-top-secondary-5 {
border-top: 5px solid #6aabcf;
}
.border-top-secondary-6 {
border-top: 6px solid #6aabcf;
}
.border-top-secondary-7 {
border-top: 7px solid #6aabcf;
}
.border-top-secondary-8 {
border-top: 8px solid #6aabcf;
}
.border-top-secondary-9 {
border-top: 9px solid #6aabcf;
}
.border-top-secondary-10 {
border-top: 10px solid #6aabcf;
}
.border-right-secondary-1 {
border-right: 1px solid #6aabcf;
}
.border-right-secondary-2 {
border-right: 2px solid #6aabcf;
}
.border-right-secondary-3 {
border-right: 3px solid #6aabcf;
}
.border-right-secondary-4 {
border-right: 4px solid #6aabcf;
}
.border-right-secondary-5 {
border-right: 5px solid #6aabcf;
}
.border-right-secondary-6 {
border-right: 6px solid #6aabcf;
}
.border-right-secondary-7 {
border-right: 7px solid #6aabcf;
}
.border-right-secondary-8 {
border-right: 8px solid #6aabcf;
}
.border-right-secondary-9 {
border-right: 9px solid #6aabcf;
}
.border-right-secondary-10 {
border-right: 10px solid #6aabcf;
}
.border-bottom-secondary-1 {
border-bottom: 1px solid #6aabcf;
}
.border-bottom-secondary-2 {
border-bottom: 2px solid #6aabcf;
}
.border-bottom-secondary-3 {
border-bottom: 3px solid #6aabcf;
}
.border-bottom-secondary-4 {
border-bottom: 4px solid #6aabcf;
}
.border-bottom-secondary-5 {
border-bottom: 5px solid #6aabcf;
}
.border-bottom-secondary-6 {
border-bottom: 6px solid #6aabcf;
}
.border-bottom-secondary-7 {
border-bottom: 7px solid #6aabcf;
}
.border-bottom-secondary-8 {
border-bottom: 8px solid #6aabcf;
}
.border-bottom-secondary-9 {
border-bottom: 9px solid #6aabcf;
}
.border-bottom-secondary-10 {
border-bottom: 10px solid #6aabcf;
}
.border-left-secondary-1 {
border-left: 1px solid #6aabcf;
}
.border-left-secondary-2 {
border-left: 2px solid #6aabcf;
}
.border-left-secondary-3 {
border-left: 3px solid #6aabcf;
}
.border-left-secondary-4 {
border-left: 4px solid #6aabcf;
}
.border-left-secondary-5 {
border-left: 5px solid #6aabcf;
}
.border-left-secondary-6 {
border-left: 6px solid #6aabcf;
}
.border-left-secondary-7 {
border-left: 7px solid #6aabcf;
}
.border-left-secondary-8 {
border-left: 8px solid #6aabcf;
}
.border-left-secondary-9 {
border-left: 9px solid #6aabcf;
}
.border-left-secondary-10 {
border-left: 10px solid #6aabcf;
}
.bg-dark,
.badge-dark,
.icon-bg-dark,
.hr-bg-dark {
background-color: #212121;
}
.module-hr-bg-dark div[class*="hr-"] {
background-color: #212121 !important;
}
.text-dark {
color: #212121 !important;
}
.text-dark > *:not(font),
.text-dark .btn-link,
.icon-dark {
color: #212121 !important;
}
.border-dark-1 {
border: 1px solid #212121;
}
.border-dark-2 {
border: 2px solid #212121;
}
.border-dark-3 {
border: 3px solid #212121;
}
.border-dark-4 {
border: 4px solid #212121;
}
.border-dark-5 {
border: 5px solid #212121;
}
.border-dark-6 {
border: 6px solid #212121;
}
.border-dark-7 {
border: 7px solid #212121;
}
.border-dark-8 {
border: 8px solid #212121;
}
.border-dark-9 {
border: 9px solid #212121;
}
.border-dark-10 {
border: 10px solid #212121;
}
.border-top-dark-1 {
border-top: 1px solid #212121;
}
.border-top-dark-2 {
border-top: 2px solid #212121;
}
.border-top-dark-3 {
border-top: 3px solid #212121;
}
.border-top-dark-4 {
border-top: 4px solid #212121;
}
.border-top-dark-5 {
border-top: 5px solid #212121;
}
.border-top-dark-6 {
border-top: 6px solid #212121;
}
.border-top-dark-7 {
border-top: 7px solid #212121;
}
.border-top-dark-8 {
border-top: 8px solid #212121;
}
.border-top-dark-9 {
border-top: 9px solid #212121;
}
.border-top-dark-10 {
border-top: 10px solid #212121;
}
.border-right-dark-1 {
border-right: 1px solid #212121;
}
.border-right-dark-2 {
border-right: 2px solid #212121;
}
.border-right-dark-3 {
border-right: 3px solid #212121;
}
.border-right-dark-4 {
border-right: 4px solid #212121;
}
.border-right-dark-5 {
border-right: 5px solid #212121;
}
.border-right-dark-6 {
border-right: 6px solid #212121;
}
.border-right-dark-7 {
border-right: 7px solid #212121;
}
.border-right-dark-8 {
border-right: 8px solid #212121;
}
.border-right-dark-9 {
border-right: 9px solid #212121;
}
.border-right-dark-10 {
border-right: 10px solid #212121;
}
.border-bottom-dark-1 {
border-bottom: 1px solid #212121;
}
.border-bottom-dark-2 {
border-bottom: 2px solid #212121;
}
.border-bottom-dark-3 {
border-bottom: 3px solid #212121;
}
.border-bottom-dark-4 {
border-bottom: 4px solid #212121;
}
.border-bottom-dark-5 {
border-bottom: 5px solid #212121;
}
.border-bottom-dark-6 {
border-bottom: 6px solid #212121;
}
.border-bottom-dark-7 {
border-bottom: 7px solid #212121;
}
.border-bottom-dark-8 {
border-bottom: 8px solid #212121;
}
.border-bottom-dark-9 {
border-bottom: 9px solid #212121;
}
.border-bottom-dark-10 {
border-bottom: 10px solid #212121;
}
.border-left-dark-1 {
border-left: 1px solid #212121;
}
.border-left-dark-2 {
border-left: 2px solid #212121;
}
.border-left-dark-3 {
border-left: 3px solid #212121;
}
.border-left-dark-4 {
border-left: 4px solid #212121;
}
.border-left-dark-5 {
border-left: 5px solid #212121;
}
.border-left-dark-6 {
border-left: 6px solid #212121;
}
.border-left-dark-7 {
border-left: 7px solid #212121;
}
.border-left-dark-8 {
border-left: 8px solid #212121;
}
.border-left-dark-9 {
border-left: 9px solid #212121;
}
.border-left-dark-10 {
border-left: 10px solid #212121;
}
.bg-light,
.badge-light,
.icon-bg-light,
.hr-bg-light {
background-color: #f4f4f4;
}
.module-hr-bg-light div[class*="hr-"] {
background-color: #f4f4f4 !important;
}
.text-light {
color: #f4f4f4 !important;
}
.text-light > *:not(font),
.text-light .btn-link,
.icon-light {
color: #f4f4f4 !important;
}
.border-light-1 {
border: 1px solid #f4f4f4;
}
.border-light-2 {
border: 2px solid #f4f4f4;
}
.border-light-3 {
border: 3px solid #f4f4f4;
}
.border-light-4 {
border: 4px solid #f4f4f4;
}
.border-light-5 {
border: 5px solid #f4f4f4;
}
.border-light-6 {
border: 6px solid #f4f4f4;
}
.border-light-7 {
border: 7px solid #f4f4f4;
}
.border-light-8 {
border: 8px solid #f4f4f4;
}
.border-light-9 {
border: 9px solid #f4f4f4;
}
.border-light-10 {
border: 10px solid #f4f4f4;
}
.border-top-light-1 {
border-top: 1px solid #f4f4f4;
}
.border-top-light-2 {
border-top: 2px solid #f4f4f4;
}
.border-top-light-3 {
border-top: 3px solid #f4f4f4;
}
.border-top-light-4 {
border-top: 4px solid #f4f4f4;
}
.border-top-light-5 {
border-top: 5px solid #f4f4f4;
}
.border-top-light-6 {
border-top: 6px solid #f4f4f4;
}
.border-top-light-7 {
border-top: 7px solid #f4f4f4;
}
.border-top-light-8 {
border-top: 8px solid #f4f4f4;
}
.border-top-light-9 {
border-top: 9px solid #f4f4f4;
}
.border-top-light-10 {
border-top: 10px solid #f4f4f4;
}
.border-right-light-1 {
border-right: 1px solid #f4f4f4;
}
.border-right-light-2 {
border-right: 2px solid #f4f4f4;
}
.border-right-light-3 {
border-right: 3px solid #f4f4f4;
}
.border-right-light-4 {
border-right: 4px solid #f4f4f4;
}
.border-right-light-5 {
border-right: 5px solid #f4f4f4;
}
.border-right-light-6 {
border-right: 6px solid #f4f4f4;
}
.border-right-light-7 {
border-right: 7px solid #f4f4f4;
}
.border-right-light-8 {
border-right: 8px solid #f4f4f4;
}
.border-right-light-9 {
border-right: 9px solid #f4f4f4;
}
.border-right-light-10 {
border-right: 10px solid #f4f4f4;
}
.border-bottom-light-1 {
border-bottom: 1px solid #f4f4f4;
}
.border-bottom-light-2 {
border-bottom: 2px solid #f4f4f4;
}
.border-bottom-light-3 {
border-bottom: 3px solid #f4f4f4;
}
.border-bottom-light-4 {
border-bottom: 4px solid #f4f4f4;
}
.border-bottom-light-5 {
border-bottom: 5px solid #f4f4f4;
}
.border-bottom-light-6 {
border-bottom: 6px solid #f4f4f4;
}
.border-bottom-light-7 {
border-bottom: 7px solid #f4f4f4;
}
.border-bottom-light-8 {
border-bottom: 8px solid #f4f4f4;
}
.border-bottom-light-9 {
border-bottom: 9px solid #f4f4f4;
}
.border-bottom-light-10 {
border-bottom: 10px solid #f4f4f4;
}
.border-left-light-1 {
border-left: 1px solid #f4f4f4;
}
.border-left-light-2 {
border-left: 2px solid #f4f4f4;
}
.border-left-light-3 {
border-left: 3px solid #f4f4f4;
}
.border-left-light-4 {
border-left: 4px solid #f4f4f4;
}
.border-left-light-5 {
border-left: 5px solid #f4f4f4;
}
.border-left-light-6 {
border-left: 6px solid #f4f4f4;
}
.border-left-light-7 {
border-left: 7px solid #f4f4f4;
}
.border-left-light-8 {
border-left: 8px solid #f4f4f4;
}
.border-left-light-9 {
border-left: 9px solid #f4f4f4;
}
.border-left-light-10 {
border-left: 10px solid #f4f4f4;
}
.bg-"grey",
.badge-"grey",
.icon-bg-"grey",
.hr-bg-"grey" {
background-color: #bfbfbf;
}
.module-hr-bg-"grey" div[class*="hr-"] {
background-color: #bfbfbf !important;
}
.text-"grey" {
color: #bfbfbf !important;
}
.text-"grey" > *:not(font),
.text-"grey" .btn-link,
.icon-"grey" {
color: #bfbfbf !important;
}
.border-"grey"-1 {
border: 1px solid #bfbfbf;
}
.border-"grey"-2 {
border: 2px solid #bfbfbf;
}
.border-"grey"-3 {
border: 3px solid #bfbfbf;
}
.border-"grey"-4 {
border: 4px solid #bfbfbf;
}
.border-"grey"-5 {
border: 5px solid #bfbfbf;
}
.border-"grey"-6 {
border: 6px solid #bfbfbf;
}
.border-"grey"-7 {
border: 7px solid #bfbfbf;
}
.border-"grey"-8 {
border: 8px solid #bfbfbf;
}
.border-"grey"-9 {
border: 9px solid #bfbfbf;
}
.border-"grey"-10 {
border: 10px solid #bfbfbf;
}
.border-top-"grey"-1 {
border-top: 1px solid #bfbfbf;
}
.border-top-"grey"-2 {
border-top: 2px solid #bfbfbf;
}
.border-top-"grey"-3 {
border-top: 3px solid #bfbfbf;
}
.border-top-"grey"-4 {
border-top: 4px solid #bfbfbf;
}
.border-top-"grey"-5 {
border-top: 5px solid #bfbfbf;
}
.border-top-"grey"-6 {
border-top: 6px solid #bfbfbf;
}
.border-top-"grey"-7 {
border-top: 7px solid #bfbfbf;
}
.border-top-"grey"-8 {
border-top: 8px solid #bfbfbf;
}
.border-top-"grey"-9 {
border-top: 9px solid #bfbfbf;
}
.border-top-"grey"-10 {
border-top: 10px solid #bfbfbf;
}
.border-right-"grey"-1 {
border-right: 1px solid #bfbfbf;
}
.border-right-"grey"-2 {
border-right: 2px solid #bfbfbf;
}
.border-right-"grey"-3 {
border-right: 3px solid #bfbfbf;
}
.border-right-"grey"-4 {
border-right: 4px solid #bfbfbf;
}
.border-right-"grey"-5 {
border-right: 5px solid #bfbfbf;
}
.border-right-"grey"-6 {
border-right: 6px solid #bfbfbf;
}
.border-right-"grey"-7 {
border-right: 7px solid #bfbfbf;
}
.border-right-"grey"-8 {
border-right: 8px solid #bfbfbf;
}
.border-right-"grey"-9 {
border-right: 9px solid #bfbfbf;
}
.border-right-"grey"-10 {
border-right: 10px solid #bfbfbf;
}
.border-bottom-"grey"-1 {
border-bottom: 1px solid #bfbfbf;
}
.border-bottom-"grey"-2 {
border-bottom: 2px solid #bfbfbf;
}
.border-bottom-"grey"-3 {
border-bottom: 3px solid #bfbfbf;
}
.border-bottom-"grey"-4 {
border-bottom: 4px solid #bfbfbf;
}
.border-bottom-"grey"-5 {
border-bottom: 5px solid #bfbfbf;
}
.border-bottom-"grey"-6 {
border-bottom: 6px solid #bfbfbf;
}
.border-bottom-"grey"-7 {
border-bottom: 7px solid #bfbfbf;
}
.border-bottom-"grey"-8 {
border-bottom: 8px solid #bfbfbf;
}
.border-bottom-"grey"-9 {
border-bottom: 9px solid #bfbfbf;
}
.border-bottom-"grey"-10 {
border-bottom: 10px solid #bfbfbf;
}
.border-left-"grey"-1 {
border-left: 1px solid #bfbfbf;
}
.border-left-"grey"-2 {
border-left: 2px solid #bfbfbf;
}
.border-left-"grey"-3 {
border-left: 3px solid #bfbfbf;
}
.border-left-"grey"-4 {
border-left: 4px solid #bfbfbf;
}
.border-left-"grey"-5 {
border-left: 5px solid #bfbfbf;
}
.border-left-"grey"-6 {
border-left: 6px solid #bfbfbf;
}
.border-left-"grey"-7 {
border-left: 7px solid #bfbfbf;
}
.border-left-"grey"-8 {
border-left: 8px solid #bfbfbf;
}
.border-left-"grey"-9 {
border-left: 9px solid #bfbfbf;
}
.border-left-"grey"-10 {
border-left: 10px solid #bfbfbf;
}
.cuted:after,
.cuted-top:before,
.cutted-bottom:after {
pointer-events: none;
}
.main-content {
overflow: hidden;
}
.main-content p {
color: #212121;
/*font-size: 18px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.75;*/
letter-spacing: normal;
/* @media screen and (max-width: 767px) {
/*font-size: @paragraph-sm;*/
}*/
}
@media screen and (max-width: 1199px) {
.main-content p {
/*font-size: 14px;*/
}
}
.main-content p.highlight {
color: #212121;
/*font-size: 18px !important;*/
position: relative !important;
/*font-weight: 600 !important;*/
/*font-style: normal !important;*/
font-stretch: normal !important;
/*line-height: 1.44 !important;*/
letter-spacing: 0.23px !important;
padding-left: 30px !important;
text-align: left !important;
/*
@media screen and (max-width: 767px) {
/*font-size: @paragraph-md;*/
}
*/
}
@media screen and (max-width: 1199px) {
.main-content p.highlight {
/*font-size: 16px !important;*/
}
}
.main-content p.highlight:before {
display: block;
content: '';
width: 10px;
height: 100%;
position: absolute;
margin-left: -30px;
background-color: #0044de;
-webkit-mask-image: url('../img/hr-vertical.svg');
mask-image: url('../img/hr-vertical.svg');
-webkit-mask-repeat: repeat-y;
mask-repeat: repeat-y;
-webkit-mask-size: cover;
mask-size: cover;
}
.main-content p.lead {
color: #212121;
/*font-size: 24px !important;*/
position: relative !important;
/*font-weight: 300 !important;*/
/*font-style: normal !important;*/
font-stretch: normal !important;
/*line-height: 1.44 !important;*/
letter-spacing: 0.23px !important;
}
@media screen and (max-width: 1199px) {
.main-content p.lead {
/*font-size: 16px !important;*/
}
}
.main-content blockquote {
/*font-size: 36px;*/
/*font-weight: 300;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.32;*/
letter-spacing: 0.35px;
text-align: center;
color: #303953;
}
.main-content blockquote:before {
width: 100%;
content: '\f10e';
display: inline-block;
/*font-family: "Font Awesome 5 Free";*/
/*font-weight: 900;*/
margin: 25px auto;
left: 0;
right: 0;
text-align: center;
}
.main-content blockquote .testimonial {
margin-top: 40px;
}
.main-content blockquote .testimonial img {
width: 81px;
height: 81px;
object-fit: contain;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
margin-bottom: 15px;
}
.main-content blockquote .testimonial .name {
display: block;
/*font-size: 18px;*/
/*font-weight: 600;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.44;*/
letter-spacing: 0.23px;
text-align: center;
color: #212121;
}
.main-content blockquote .testimonial .info {
display: block;
/*font-size: 16px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.75;*/
letter-spacing: normal;
text-align: center;
color: #b3b7c5;
}
.main-content blockquote.text-white .testimonial .name,
.main-content blockquote.text-white .testimonial .info {
color: #f4f4f4;
}
.main-content blockquote.small {
/*font-size: 16px;*/
text-align: left;
}
.main-content blockquote.small:before {
text-align: left;
margin: 25px auto 25px 0;
}
.main-content blockquote.small .testimonial .name {
text-align: left;
}
.main-content blockquote.small .testimonial .info {
text-align: left;
}
.main-content .bg-default p,
.main-content .bg-default p.lead,
.main-content .bg-default p.highlight,
.main-content .bg-default blockquote,
.main-content .bg-default blockquote.small {
color: #f4f4f4;
}
.main-content .text-left blockquote {
text-align: left;
}
.main-content .text-left blockquote:before {
text-align: left;
margin: 0 auto 25px 0;
}
.main-content .text-left blockquote .testimonial .name {
text-align: left;
}
.main-content .text-left blockquote .testimonial .info {
text-align: left;
}
.main-content small {
color: #979aa6;
/*font-size: 14px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.71;*/
letter-spacing: normal;
}
@media screen and (max-width: 1199px) {
.main-content small {
/*font-size: 14px;*/
}
}
@media screen and (max-width: 767px) {
.main-content small {
/*font-size: 12px;*/
}
}
.main-content ol.ol {
padding-left: 15px;
}
.main-content ol.ol li {
color: #0044de;
text-align: left;
margin-bottom: 20px;
list-style-type: decimal;
/*font-weight: bold;*/
/*font-size: 16px;*/
}
.main-content ol.ol li:after {
clear: both;
display: block;
content: '';
}
.main-content ol.ol li:before {
content: '|';
display: block;
/*font-weight: 900;*/
margin-right: 10px;
float: left;
}
.main-content ol.ol li span {
color: #212121;
float: left;
display: block;
/*font-weight: normal;*/
width: calc(100% - 25px);
}
.main-content ul.ul li {
color: #0044de;
text-align: left;
margin-bottom: 20px;
/*font-size: 16px;*/
}
.main-content ul.ul li:after {
clear: both;
display: block;
content: '';
}
.main-content ul.ul li:before {
/*font-family: "Font Awesome 5 Free";*/
content: '\f061';
display: block;
/*font-weight: 900;*/
margin-right: 10px;
float: left;
}
.main-content ul.ul li span {
color: #212121;
float: left;
display: block;
width: calc(100% - 25px);
}
.main-content section {
z-index: 9;
position: relative;
clear: both;
}
.main-content section > div {
z-index: 3;
position: relative;
}
.main-content nav {
z-index: 2;
}
.main-content .hidden {
display: none;
}
@media (min-width: 1200px) {
.main-content .hidden-lg {
display: none !important;
}
}
@media (max-width: 1199px) and (min-width: 992px) {
.main-content .hidden-md {
display: none !important;
}
}
@media (max-width: 991px) and (min-width: 768px) {
.main-content .hidden-sm {
display: none !important;
}
}
@media (max-width: 767px) {
.main-content .hidden-xs {
display: none !important;
}
}
.main-content .row-eq-height {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.shadow-sm {
-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
-moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
}
.shadow-md {
-webkit-box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
}
/* Background */
.background-image-holder {
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
position: static;
}
[data-bg-contain] .background-image-holder {
background-size: contain;
}
[data-parallax] .background-image-holder {
background-attachment: fixed;
}
@media screen and (max-width: 767px) {
[data-parallax] .background-image-holder {
background-attachment: scroll;
}
}
[data-background-position="center top"] .background-image-holder {
background-position: center top;
}
[data-background-position="center bottom"] .background-image-holder {
background-position: center bottom;
}
[background-position="center center"] .background-image-holder {
background-position: center center;
}
[data-overlay] {
position: relative;
}
[data-overlay] .background-image-holder:after {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: linear-gradient(to bottom right, #212121, #545454);
opacity: 0.5;
z-index: 2;
pointer-events: none;
}
[data-overlay-inverse] .background-image-holder:after {
background-image: linear-gradient(to bottom right, #0044de, #457eff);
}
[data-overlay-black] .background-image-holder:after {
background-image: linear-gradient(to bottom right, #000000, #000000);
}
[data-overlay="1"] .background-image-holder:after {
opacity: 0.1;
}
[data-overlay="2"] .background-image-holder:after {
opacity: 0.2;
}
[data-overlay="3"] .background-image-holder:after {
opacity: 0.3;
}
[data-overlay="4"] .background-image-holder:after {
opacity: 0.4;
}
[data-overlay="5"] .background-image-holder:after {
opacity: 0.5;
}
[data-overlay="6"] .background-image-holder:after {
opacity: 0.6;
}
[data-overlay="7"] .background-image-holder:after {
opacity: 0.7;
}
[data-overlay="8"] .background-image-holder:after {
opacity: 0.8;
}
[data-overlay="9"] .background-image-holder:after {
opacity: 0.9;
}
[data-overlay="10"] .background-image-holder:after {
opacity: 1;
}
.form-control {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border-color: #d8d8d8;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
outline: 0 !important;
color: #212121;
height: calc(1.5em + .75rem + 4px);
}
.form-control:focus {
border-color: #0044de;
-webkit-box-shadow: 0 0 10px rgba(0, 68, 222, 0.5) !important;
box-shadow: 0 0 10px rgba(0, 68, 222, 0.5) !important;
}
.form-control::placeholder {
/* Chrome, Firefox, Opera, Safari 10.1+ */
color: #cacaca;
opacity: 1;
/* Firefox */
}
.form-control:-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: #cacaca;
}
.form-control::-ms-input-placeholder {
/* Microsoft Edge */
color: #cacaca;
}
.bootstrap-select .dropdown-toggle:focus,
.btn:focus,
.btn-group .dropdown-toggle:active,
.btn-group.show .dropdown-toggle {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
outline: 0 !important;
}
.module {
/*line-height: 1;*/
}
.custom-control.custom-radio.d-inline-block,
.custom-control.custom-checkbox.d-inline-block,
.custom-control.custom-switch.d-inline-block {
margin-left: 20px;
}
.custom-control.custom-radio.d-inline-block:first-of-type,
.custom-control.custom-checkbox.d-inline-block:first-of-type,
.custom-control.custom-switch.d-inline-block:first-of-type {
margin-left: 0;
}
.custom-control.custom-radio .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0.2rem rgba(0, 68, 222, 0.25);
}
.custom-control.custom-radio:first-of-type {
margin-left: 0;
}
.custom-control.custom-radio .custom-control-label {
padding-top: 2px;
/*line-height: 1.5;*/
}
.custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
background: #0044de;
border: 3px solid #fff;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
width: 13px;
height: 13px;
}
.custom-control.custom-radio .custom-control-label::before {
width: 13px;
height: 13px;
}
.custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
background: #0044de;
width: 15px;
height: 15px;
border-color: #6c757d;
}
.custom-control.custom-radio .custom-control-label::before {
top: 3px;
left: -25px;
}
.custom-control.custom-radio .custom-control-label::before,
.custom-control.custom-radio .custom-control-label::after {
margin-top: 4px;
}
.custom-control.custom-checkbox .custom-control-label {
/*line-height: 1.5;*/
}
.custom-control.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0.2rem rgba(0, 68, 222, 0.25);
}
.custom-control.custom-checkbox .custom-control-label::before {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.custom-control.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
border-color: #6c757d;
background-color: #fff;
}
.custom-control.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%236c757d' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.custom-control.custom-switch .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0.2rem rgba(0, 68, 222, 0.25);
}
.custom-control.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
border-color: #0044de;
background-color: #0044de;
}
.custom-control.custom-switch .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
border-color: #0044de;
}
.form-control.is-valid,
.was-validated .form-control:valid,
.form-control.is-invalid,
.was-validated .form-control:invalid {
border-color: #d8d8d8;
background-size: calc(0.625em) calc(0.625em);
}
.invalid-feedback {
color: #0044de;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
background: #0044de;
}
.bootstrap-select .dropdown-menu {
margin-top: -1px !important;
}
.bootstrap-select .dropdown-toggle::after {
border-top: .2em solid;
border-right: .2em solid transparent;
border-left: .2em solid transparent;
}
.bootstrap-select .btn.dropdown-toggle,
.bootstrap-select .dropdown-menu {
-webkit-border-radius: 0 !important;
-moz-border-radius: 0 !important;
border-radius: 0 !important;
}
.bootstrap-select .btn.dropdown-toggle,
.bootstrap-select .bootstrap-select .dropdown-menu {
background: #ffffff;
border: 1px solid #d8d8d8;
}
.bootstrap-select .dropdown-item:focus,
.bootstrap-select .dropdown-item:hover {
color: #3f4043;
}
.bootstrap-select .dropdown-item:focus,
.bootstrap-select .dropdown-item:hover {
color: #3f4043;
text-decoration: none;
background-color: #f4f4f4;
}
/* Ajax Loading */
.js-ajax-loading {
transition: .2s;
width: 100%;
height: 100%;
position: fixed;
bottom: 0;
left: 0;
right: 0;
top: 0;
background: #fff;
z-index: 999;
display: flex;
align-content: center;
align-items: center;
text-align: center;
}
.js-ajax-loading img {
display: block;
margin: 0 auto;
-webkit-animation: pulse 1s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
animation: pulse 1s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}
body.page-loaded .js-ajax-loading {
opacity: 0;
visibility: hidden;
}
@keyframes pulse {
0%,
100% {
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
50% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
/* *******************************************
**************** Containers *************** *
******************************************* */
@media (min-width: 768px) and (max-width: 991px) {
.container {
width: 90%;
}
}
@media (min-width: 1366px) and (max-width: 1439px) {
.container {
width: 1336px;
max-width: 1336px;
}
}
@media (max-width: 1365px) {
.container,
.container,
.container {
width: 90%;
max-width: 90%;
}
}
@media (max-width: 991px) {
.container,
.container,
.container {
width: 100%;
max-width: 100%;
}
}
@media (min-width: 1440px) {
.container {
width: 1440px;
max-width: 1440px;
}
}
@media (min-width: 1660px) {
.container {
width: 1660px;
max-width: 1660px;
}
}
/*
@media (min-width: 1650px) {
.container {
width: 1650px;
max-width: 1650px;
}
}*/
/* *******************************************
**************** Navigation *************** *
******************************************* */
/*Flex mixin*/
.inline-flex,
.flex-inline,
.mixin-inline-flex {
display: -webkit-inline-box;
display: -moz-inline-box;
display: ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
}
.flex,
.flex-row,
.mixin-flex-row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.flex-row-nowrap,
.mixin-flex-row-nowrap {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.row-reverse,
.flex-row-reverse,
.mixin-flex-row-reverse {
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
.flex-column,
.mixin-flex-column {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
-ms-flex-direction: column;
flex-wrap: wrap;
flex-direction: column;
}
.flex-column-reverse,
.mixin-flex-column-reverse {
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
.flex-center,
.mixin-flex-center {
align-items: center;
justify-content: center;
}
.overlay {
position: relative;
}
.overlay:after {
content: '';
position: absolute;
width: 100%;
height: 100%;
display: block;
top: 0;
left: 0;
z-index: 0;
background-color: #212121;
opacity: 0.5;
}
.overlay-opacity-0:after {
opacity: 0!important;
}
.overlay-opacity-1:after {
opacity: 0.1!important;
}
.overlay-opacity-2:after {
opacity: 0.2!important;
}
.overlay-opacity-3:after {
opacity: 0.3!important;
}
.overlay-opacity-4:after {
opacity: 0.4!important;
}
.overlay-opacity-5:after {
opacity: 0.5!important;
}
.overlay-opacity-6:after {
opacity: 0.6!important;
}
.overlay-opacity-7:after {
opacity: 0.7!important;
}
.overlay-opacity-8:after {
opacity: 0.8!important;
}
.overlay-opacity-9:after {
opacity: 0.9!important;
}
.overlay-opacity-10:after {
opacity: 1!important;
}
.overlay * {
position: relative;
z-index: 1;
}
section:not(.block-style) .has-style,
section:not(.block-style).has-style {
-webkit-border-radius: 0%;
-moz-border-radius: 0%;
border-radius: 0%;
-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0);
-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0);
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0);
border: 1px solid #ffffff;
background-color: #ffffff;
}
/* Icon Style */
.icons {
display: -webkit-inline-box;
display: -moz-inline-box;
display: ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
/*.mixin-flex-center();*/
/* background: transparent;*/
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
padding: 0.1rem;
/*line-height: 1;*/
/* background-clip: content-box;*/
/*.has-style();*/
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.icon-style-1 {
/* width: @width;
height: @height;*/
/*font-size: 2rem;*/
}
.icon-style-2 {
/* width: @width;
height: @height;*/
/*font-size: 3rem;*/
}
.icon-style-3 {
/* width: @width;
height: @height;*/
/*font-size: 4rem;*/
}
/* Icon Style */
/* *******************************************
**************** Navigation *************** *
******************************************* */
.navigation-holder {
position: relative;
z-index: 10;
width: 100%;
}
.navigation-holder:not(.not-transparent) {
height: 0;
}
.navigation {
margin-bottom: 0;
border: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
transition: height .4s;
transition: background .4s;
background: rgba(255, 255, 255, 0.15);
}
.navigation .logo a .logo-text,
.navigation .logo .logo-text,
.navigation .logo a,
.navigation .logo a span {
color: #212121;
/*font-size: 28px;*/
/*font-weight: bold;*/
text-decoration: none;
}
.navigation-holder.not-transparent,
.navigation-holder.not-transparent .navigation:not(.sticky) {
position: relative !important;
}
.navigation-holder.not-transparent .navigation,
.sticky-nav .sticky {
position: fixed;
width: 100%;
top: 0;
z-index: 100;
background: #ffffff;
}
.navigation.sticky {
border-bottom: 2px solid #e5e5e5;
}
.sticky-padding {
padding-top: 65px;
}
.mw-live-edit .navigation.sticky {
margin-top: 55px;
}
.navigation-holder:not(.not-transparent) .navigation .logo.logo-dark {
display: none !important;
}
.navigation-holder:not(.not-transparent) .navigation .logo.logo-light {
display: flex !important;
}
.navigation-holder:not(.not-transparent) .navigation.sticky .logo.logo-dark {
display: flex !important;
}
.navigation-holder:not(.not-transparent) .navigation.sticky .logo.logo-light {
display: none !important;
}
.navigation-holder.not-transparent .navigation .logo.logo-dark {
display: flex !important;
}
.navigation-holder.not-transparent .navigation .logo.logo-light {
display: none !important;
}
.navigation-holder.not-transparent .navigation.sticky .logo.logo-dark {
display: flex !important;
}
.navigation-holder.not-transparent .navigation.sticky .logo.logo-light {
display: none !important;
}
.navigation {
border: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
position: relative;
}
/* Sticky nav */
html:not(.sidebar-nav-website) body.sticky-nav .sticky:after {
content: '';
position: absolute;
display: block;
width: 100%;
height: 7px;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), transparent);
bottom: -7px;
z-index: 2;
}
body.sticky-nav:not(.mw-live-edit) .navigation {
position: fixed;
top: 0;
width: 100%;
max-width: 100%;
left: 0;
right: 0;
margin: auto;
}
.container-fluid > .navbar-collapse,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container > .navbar-header {
width: 100%;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
align-items: center;
margin-right: 0;
margin-left: 0;
}
.navbar-header:after {
display: block;
clear: both;
content: '';
/*font-size: 0;*/
}
.navbar-header ul.socials {
margin: 0;
}
.navbar-header ul.socials li a {
background: transparent;
color: #ffffff;
/*font-size: 18px;*/
padding: 0;
margin: 0;
height: 20px;
width: 20px;
}
.navbar-header ul.socials a:hover {
background: transparent;
color: #ffffff;
}
.navbar-header ul.header-contacts-list li {
display: inline-block;
}
.navbar-header ul.header-contacts-list li + li {
margin-left: 15px;
}
.navbar-header ul.header-contacts-list li a {
color: #ffffff;
/*font-size: .75rem;*/
padding: 5px;
display: -webkit-inline-box;
display: -moz-inline-box;
display: ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
align-items: center;
justify-content: center;
}
.navigation-holder.not-transparent .navbar-header ul.header-contacts-list li a,
.navigation.sticky .navbar-header ul.header-contacts-list li a {
color: #212121;
}
.navbar-header ul.header-contacts-list li a:hover {
text-decoration: none;
}
.navbar-header ul.header-contacts-list li a span {
/*line-height: 0;*/
}
body:not([data-lang="ar"]) .navbar-header ul.header-contacts-list li a span:nth-of-type(2) {
margin-left: 7px;
}
body[data-lang="ar"] .navbar-header ul.header-contacts-list li a span:nth-of-type(2) {
margin-right: 7px;
}
.navbar-header ul.header-contacts-list li a i {
/*font-weight: 600;*/
/*font-size: 1rem;*/
}
.navbar-header ul.socials.header-social-phone {
margin-top: 20px;
}
.navbar-header ul.socials.header-social-phone li a {
color: #ffffff;
}
/*Logo settings*/
.logo a .logo-text,
.logo .logo-text,
.logo a,
.logo a span {
color: #212121;
/*font-size: 28px;*/
/*font-weight: bold;*/
text-decoration: none;
padding-left: 0 !important;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
justify-content: flex-start;
height: 100%;
}
.logo a span {
width: auto !important;
}
.navigation .navbar-header .logo {
position: relative;
height: auto;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 10px 0;
}
.navigation.sticky .navbar-header .logo {
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.navigation .navbar-header .logo a {
display: -webkit-inline-box;
display: -moz-inline-box;
display: ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
align-items: center;
justify-content: flex-start;
height: 100%;
}
.navigation .navbar-header .logo img {
max-height: 100px;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.navigation.sticky .navbar-header .logo img {
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
.navigation .navbar-header .logo img {
max-width: 100%;
}
}
@media (max-width: 575px) {
.navigation .navbar-header .logo {
height: 36px;
margin: 15px 0;
}
.navigation .navbar-header .logo img {
max-height: 100%;
width: auto !important;
}
}
/*END Logo settings*/
@media screen and (max-width: 767px) {
body.lock-scroll-extra-menu {
overflow: hidden;
}
body.lock-scroll {
overflow: hidden;
}
}
.navigation .navbar-header .toggle,
.navigation .navbar-header .cart {
display: none;
}
.navigation .navbar-header .toggle,
.navigation .navbar-header .toggle-inside-menu {
height: 25px;
width: 34px;
}
body:not([data-lang="ar"]) .navigation .navbar-header .toggle {
text-align: right;
}
body[data-lang="ar"] .navigation .navbar-header .toggle {
text-align: left;
}
body:not([data-lang="ar"]) .navigation .navbar-header .toggle-inside-menu {
margin-left: 15px;
}
body[data-lang="ar"] .navigation .navbar-header .toggle-inside-menu {
margin-right: 15px;
}
.toggle-inside-menu .mobile-menu-btn span {
background: #212121;
}
html:not(.sidebar-nav-website) .toggle .mobile-menu-btn.active span {
background: transparent;
}
.extra-toggle .mobile-menu-btn.active span {
background: #ffffff;
}
.mobile-menu-btn {
color: #212121;
/*font-size: 16px;*/
text-decoration: none;
display: inline-block;
position: relative;
cursor: pointer;
width: 34px;
height: 22px;
text-transform: uppercase;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
top: 0;
}
.toggle-inside-menu {
display: flex;
justify-content: flex-end;
position: relative;
}
.mobile-menu-btn span {
position: absolute;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
display: inline-block;
height: 2px;
width: 33px;
top: 0;
right: 0;
background: #ffffff;
}
.navigation.sticky .mobile-menu-btn span,
.not-transparent.navigation-holder .mobile-menu-btn span {
background: #212121;
}
.mobile-menu-btn span:first-child {
-webkit-transform-origin: 0 center;
-ms-transform-origin: 0 center;
-moz-transform-origin: 0 center;
transform-origin: 0 center;
}
.mobile-menu-btn span:nth-child(2) {
top: 9px;
}
.mobile-menu-btn span:nth-child(3) {
-webkit-transform-origin: 0 center;
-ms-transform-origin: 0 center;
-moz-transform-origin: 0 center;
transform-origin: 0 center;
top: 19px;
}
.mobile-menu-btn.active:not(.blocked-toggle) span:nth-child(1) {
-webkit-transform: rotate(45deg) translateY(-2px);
-moz-transform: rotate(45deg) translateY(-2px);
-ms-transform: rotate(45deg) translateY(-2px);
transform: rotate(45deg) translateY(-3px);
}
.mobile-menu-btn.active:not(.blocked-toggle) span:nth-child(3) {
-webkit-transform: rotate(-45deg) translateY(2px);
-ms-transform: rotate(-45deg) translateY(2px);
-moz-transform: rotate(-45deg) translateY(2px);
transform: rotate(-45deg) translateY(3px);
}
.mobile-menu-btn.active:not(.blocked-toggle) span:nth-child(2) {
opacity: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
.mobile-menu-btn.active:not(.blocked-toggle) {
transform: rotate(180deg);
right: 3px;
}
.toggle-inside-menu .mobile-menu-btn.active {
right: 0px;
}
/* Kebab icon */
.extra-toggle {
display: none;
}
.mobile-menu-btn-2.active {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.mobile-menu-btn-2 {
position: relative;
z-index: 1;
width: 25px;
height: 25px;
cursor: pointer;
display: inline-block;
transition: 400ms cubic-bezier(0.55, 0, 0.1, 1);
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
.mobile-menu-btn-2 span {
position: absolute;
right: 0;
left: 0;
display: block;
width: 4px;
height: 4px;
margin: auto;
pointer-events: none;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
background-color: #ffffff;
}
.mobile-menu-btn-2 span:nth-child(1) {
top: 0;
}
.mobile-menu-btn-2 span:nth-child(2) {
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.mobile-menu-btn-2 span:nth-child(3) {
bottom: 0;
}
/*Sidebar Nav menu collapse icon*/
.sidebar-nav-website .navigation .list li > a:after {
display: none;
}
.sidebar-nav-website .submenu-toggle {
display: block;
position: absolute;
right: 0;
top: 50%;
}
.sidebar-nav-website .submenu-toggle:before {
position: absolute;
top: 50%;
content: " ";
right: 20px;
margin-top: -1px;
width: 10px;
height: 2px;
background-color: #212121;
transform: rotate(90deg);
transition: transform 0.25s ease-in-out;
}
.sidebar-nav-website .submenu-toggle.active-icon:before {
transform: rotate(0);
}
.sidebar-nav-website .submenu-toggle:after {
position: absolute;
top: 50%;
content: " ";
right: 20px;
margin-top: -1px;
width: 10px;
height: 2px;
background-color: #212121;
}
/*End Sidebar Nav menu collapse icon*/
.mobile-menu-label {
margin-right: 10px;
width: 100%;
/*line-height: 1;*/
position: relative;
text-transform: uppercase;
height: 30px;
/*font-size: 14px;*/
display: none;
}
.mobile-menu-label b {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
position: absolute;
right: 0;
width: 100%;
height: 100%;
align-items: center;
justify-content: flex-start;
/*font-weight: 600;*/
color: #ffffff;
}
.mobile-menu-label b + b {
opacity: 0;
visibility: hidden;
transform: translateX(20px) scale(0.9);
}
.mobile-extra-menu-active .mobile-menu-label b:first-child {
opacity: 0;
visibility: hidden;
transform: translateX(-20px) scale(0.9);
}
.mobile-extra-menu-active .mobile-menu-label b + b {
opacity: 1;
visibility: visible;
transform: translateX(0px);
}
.navigation .navbar-header .cart {
text-align: left;
}
.navigation .navbar-header .cart a {
color: #ffffff;
/*font-size: 24px;*/
}
.navigation .menu-overlay {
flex: 1;
}
.member-nav > .dropdown > .dropdown-menu {
margin-top: 10px;
}
.navigation .list {
display: block;
max-width: 100%;
text-align: center;
}
.navigation .list li a {
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
/*font-size: 16px;*/
/*font-family: 'Lato', sans-serif;*/
/*font-weight: 600;*/
text-transform: inherit;
}
.navigation .list .dropdown-menu span.name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: calc(100% - 20px);
display: inline-block;
}
.navigation .list > li > a {
display: block;
text-decoration: none;
position: relative;
color: #ffffff;
padding: .7rem .5rem;
}
.not-transparent .navigation .list > li > a,
.navigation.sticky .list > li > a {
color: #212121;
}
.navigation .list li > a:after {
content: '';
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
transform: rotate(0);
top: calc(50% - 1.5px);
}
body:not([data-lang="ar"]) .navigation .list li.has-sub-menu > a:after {
margin-left: 10px;
}
body[data-lang="ar"] .navigation .list li.has-sub-menu > a:after {
margin-right: 10px;
}
.navigation li:hover > a:after {
transform: rotate(-90deg);
}
.navigation .list > li > a:hover,
.navigation .list > li.active > a,
.navigation .list > li.active-parent > a {
color: #0044de;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.dropdown-menu .dropdown-menu {
display: block;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
top: 0;
left: 100%;
}
.navigation .list > li {
margin: 0 25px;
display: inline-block;
clear: both;
}
.navigation .list > li > ul a {
padding: .5rem .7rem;
color: #f4f4f4;
}
.dropdown-menu > li > a {
display: block;
clear: both;
/*font-weight: 600;*/
text-transform: inherit;
text-decoration: none;
}
.navigation .menu .list {
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.navigation .list > li:hover {
z-index: 10;
}
.show > .dropdown-menu {
opacity: 1;
visibility: visible;
}
.dropdown-menu > li > a:focus {
background-color: transparent;
}
.navigation .dropdown-menu {
background: #212121;
border: 1px solid rgba(244, 244, 244, 0.1);
}
.navigation .module-menu .dropdown-menu {
max-width: 15rem;
min-width: 12rem;
}
/*.navigation .list>li>ul a:hover {
background-color: @header-dropdown-back-on-hover;
color: @header-dropdown-color-on-hover;
}*/
.navigation .list .dropdown:hover .dropdown-menu {
margin: 0;
}
.member-nav .dropdown-menu li a {
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.member-nav .dropdown-menu:not(.shopping-cart) a {
padding: .5rem .7rem;
color: #f4f4f4;
/*font-family: 'Lato', sans-serif;*/
/*font-size: 16px;*/
}
.member-nav .dropdown-menu:not(.shopping-cart) li:not(:first-child) a:hover {
color: rgba(244, 244, 244, 0.8);
}
.member-nav .btn-member .dropdown-menu li:not(:first-of-type) a:hover {
background: rgba(244, 244, 244, 0.03);
}
.member-nav .shopping-cart-holder .btn:hover {
background: rgba(0, 68, 222, 0.9);
color: #212121;
}
.navigation .menu .list > li.mobile-search,
.navigation .menu .list > li.mobile-profile {
display: none;
}
.navigation .menu .list > li.mobile-search form {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
align-items: center;
}
.mobile-search button {
border: none;
color: white;
background: #0044de;
height: 45px;
text-align: center;
width: auto;
padding: 0 15px;
}
.mobile-search input {
background: transparent;
border: none;
height: 45px;
width: 100%;
color: #212121;
}
.mobile-search .fa {
color: #212121;
margin: 0 14px;
}
/* Member nav */
.member-nav {
display: inline-flex;
justify-content: flex-end;
align-items: center;
position: relative;
}
.member-nav li.dropdown {
position: static;
}
.member-nav li.dropdown a {
position: relative;
}
.member-nav .dropdown-menu {
right: 0;
left: auto !important;
transform: unset !important;
margin-top: 50px !important;
}
.member-nav .btn {
padding-left: 15px !important;
padding-right: 15px !important;
}
.member-nav > li {
display: inline-block;
vertical-align: middle;
}
.member-nav > li a {
text-decoration: none;
}
.member-nav .dropdown-toggle > span {
color: #f4f4f4;
/*font-size: 11px;*/
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
padding: 0;
display: inline-flex;
position: absolute;
z-index: 1;
background-color: #0044de;
min-width: 16px;
min-height: 16px;
align-items: center;
justify-content: center;
top: -4px;
right: -9px;
}
.member-nav-inverse .member-nav .dropdown-toggle > span {
color: #212121;
}
.member-nav .dropdown-toggle > i {
color: #ffffff;
/*font-size: 22px;*/
/*line-height: 28px;*/
}
.not-transparent .navigation .member-nav .dropdown-toggle > i,
.navigation.sticky .member-nav .dropdown-toggle > i {
color: #212121;
}
.member-nav a:after {
display: none !important;
}
.member-nav .search button.dropdown-toggle {
margin-right: 0;
color: #ffffff;
border: 0;
background: transparent;
}
.member-nav .search button.dropdown-toggle:after {
display: none;
}
.member-nav .search button {
outline: none;
-webkit-border-radius: 0 !important;
-moz-border-radius: 0 !important;
border-radius: 0 !important;
}
.member-nav .search .dropdown-menu {
padding-left: .5rem;
padding-right: .5rem;
}
.member-nav .search input {
background: #ffffff;
/*font-size: .9rem;*/
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
padding: .4rem .7rem;
outline: none;
border: 0;
flex: 1;
}
.member-nav .search .dropdown-menu i {
color: rgba(33, 33, 33, 0.7);
background: #ffffff;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
body:not([data-lang="ar"]) .member-nav .search .dropdown-menu i {
padding: 0 0 0 0.5rem;
}
body[data-lang="ar"] .member-nav .search .dropdown-menu i {
padding: 0 0.5rem 0 0;
}
/* Header Shopping Cart */
.navigation .menu .member-nav .shopping-cart {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.navigation .menu .member-nav .shopping-cart:before {
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #212121;
content: '';
display: block;
position: absolute;
margin-top: -10px;
margin-left: 39px;
}
.member-nav .shopping-cart-holder {
padding: 0 20px;
width: 240px;
max-width: 100%;
overflow: hidden;
}
.member-nav .shopping-cart-holder .product {
padding: 10px 0;
border-bottom: 1px solid rgba(0, 68, 222, 0.2);
}
.member-nav .shopping-cart-holder .product .remove {
position: absolute;
right: 10px;
color: #0044de;
/*line-height: 0;*/
top: 10px;
}
.member-nav .shopping-cart-holder .product .remove:hover {
background: transparent;
color: #457eff;
}
.member-nav .shopping-cart-holder .product h5 {
color: #ffffff;
/*font-size: 14px;*/
}
.member-nav .shopping-cart-holder .product .qty {
color: rgba(0, 68, 222, 0.9);
}
.member-nav .shopping-cart-holder .product .price {
color: #ffffff;
/*font-size: 14px;*/
/*font-weight: bold;*/
}
.member-nav .shopping-cart-holder .total p {
/*font-size: 16px;*/
color: #ffffff;
margin: 15px 0 10px 0;
}
.member-nav .shopping-cart-holder .btn {
margin-top: 20px;
display: block;
width: 100%;
}
.dropdown-menu {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
color: #212121;
display: block;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
min-width: 15rem;
/* top: 100%;*/
}
body[data-lang="ar"] .dropdown-menu {
text-align: right;
}
.dropdown-menu li {
position: relative;
}
.member-nav > .dropdown > .dropdown-menu {
margin-top: .7rem;
}
.member-nav .dropdown-menu:before {
position: absolute;
top: -7px;
width: 15px;
height: 15px;
transform: rotate(45deg);
content: '';
left: 10px;
display: none;
}
.member-nav .dropdown-menu,
.member-nav .dropdown-menu:before {
background-color: #212121;
}
/*See more icon*/
.navigation .sub-menu-more > a {
/*font-size: 0 !important;*/
/*line-height: 0;*/
position: relative !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
width: 32px;
height: 32px;
padding: 0px !important;
align-items: center;
}
.navigation .sub-menu-more > a span {
left: 2px;
}
.navigation .sub-menu-more > a span:before {
left: 12px;
}
.navigation .sub-menu-more > a span:after {
left: 24px;
}
.navigation .sub-menu-more > a span,
.navigation .sub-menu-more > a span:after,
.navigation .sub-menu-more > a span:before {
display: block;
position: absolute;
width: 4px;
height: 4px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.8);
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.navigation .sub-menu-more > a:hover span,
.navigation .sub-menu-more > a:hover span:after,
.navigation .sub-menu-more > a:hover span:before {
background-color: rgba(255, 255, 255, 0.4);
}
.navigation .sub-menu-more > a span:after,
.navigation .sub-menu-more > a span:before {
content: '';
display: block;
}
/*!!! Only for main header menu !!!*/
@media screen and (min-width: 1200px) {
html:not(.sidebar-nav-website) {
/*See more icon*/
/*End See more icon*/
}
html:not(.sidebar-nav-website) .navigation .menu .small-navbar .list li a {
/*font-size: calc(14px);*/
}
html:not(.sidebar-nav-website) .navigation .menu .list > li:hover > a {
color: #0044de;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
html:not(.sidebar-nav-website) .navigation .menu .list > li > ul li:hover > a {
color: rgba(244, 244, 244, 0.8);
background-color: rgba(244, 244, 244, 0.03);
}
html:not(.sidebar-nav-website) .navigation .menu .list > li > ul li:hover > a:focus {
color: #212121;
}
html:not(.sidebar-nav-website) .navigation .list li:hover > ul {
opacity: 1;
visibility: visible;
}
html:not(.sidebar-nav-website) .mw-live-edit .navigation .menu-overlay {
position: static;
}
html:not(.sidebar-nav-website) .toggle-inside-menu {
display: none;
}
html:not(.sidebar-nav-website) .navigation .menu .collapseNav-initialized {
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
align-items: center;
}
html:not(.sidebar-nav-website) .navigation-holder:not(.header_style_3) .navigation .menu .sub-menu-more > .dropdown-menu {
left: auto;
right: 0;
}
html:not(.sidebar-nav-website) .navigation-holder:not(.header_style_3) .navigation .menu .sub-menu-more .dropdown-menu .dropdown-menu {
left: -100%;
right: 100%;
}
html:not(.sidebar-nav-website) .navigation-holder:not(.header_style_3) .navigation .menu .sub-menu-more .dropdown-menu li:hover > a:after {
transform: rotate(90deg) !important;
}
}
@media screen and (max-width: 1199px) {
.navigation .menu .sub-menu-more {
display: none !important;
}
.navigation .menu ul {
width: 100%;
margin-top: 20px;
}
.navigation .menu .list li {
display: block;
margin: 0;
clear: both;
width: 100%;
}
.navigation .menu .list > li > a {
color: #212121;
clear: both;
padding: 10px 30px;
text-align: left;
}
.navigation .menu a.dropdown-toggle::after {
margin-top: 0px;
}
.navigation .menu .list .dropdown span.name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: calc(100% - 20px);
display: inline-block;
}
.navigation .menu .list > li > ul a {
color: rgba(33, 33, 33, 0.7);
}
.navigation .menu .list > li > ul > li a {
padding: 8px 40px;
}
.navigation .menu .list > li > ul > li > ul > li a {
padding: 8px 50px;
}
.navigation .menu .list > li a:hover {
background-color: rgba(244, 244, 244, 0.03);
color: #212121;
}
.navigation .menu .dropdown-menu > .active > a,
.navigation .menu .dropdown-menu > .active > a:focus {
background-color: rgba(244, 244, 244, 0.03);
color: #212121;
}
.navigation .menu .list > li.active-parent > a,
.navigation .menu .list > li.active > a {
color: #0044de;
}
.navigation .menu .list > li.active li.active-parent > a {
color: #212121;
}
.navigation .menu .show > .dropdown-menu {
display: block;
position: relative;
float: none;
margin: 0 auto;
max-width: 100%;
margin-top: 0;
}
.navigation .menu .list .dropdown.show {
background: rgba(244, 244, 244, 0.5);
margin: 0 20px;
padding-bottom: 15px;
}
.navigation .menu .has-sub-menu ul.dropdown-menu {
position: static !important;
transform: unset !important;
opacity: 1;
visibility: visible;
display: none;
box-shadow: none;
-webkit-transition: none;
transition: none;
border: 0;
margin: 0;
background: transparent;
max-width: 100%;
min-width: unset;
}
.navigation .menu-overlay[class*="pl-"] {
padding: 0 !important;
}
.navigation .navbar-header .toggle {
display: block;
}
.navigation .member-nav {
flex: 1;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
justify-content: flex-end;
}
.navigation.sticky .menu .member-nav {
display: block;
}
html:not(.sidebar-nav-website) .navigation .menu-overlay {
visibility: hidden;
width: 100%;
position: fixed;
top: 0;
left: 0;
height: 100%;
padding: 0 !important;
background: rgba(33, 33, 33, 0.5);
opacity: 0;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
z-index: 10;
}
html:not(.sidebar-nav-website) .navigation .menu {
visibility: hidden;
opacity: 0;
overflow: hidden;
position: absolute;
top: 0;
right: 0;
padding: 20px 0 40px 0;
background: #f4f4f4;
min-height: calc(100vh);
transform: scaleY(1) scaleX(0) translateX(400px);
transform-origin: right 0;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
max-width: 100%;
width: 100%;
-webkit-box-shadow: 0px 35px 60px 0px rgba(0, 0, 0, 0.6);
-moz-box-shadow: 0px 35px 60px 0px rgba(0, 0, 0, 0.6);
box-shadow: 0px 35px 60px 0px rgba(0, 0, 0, 0.6);
z-index: 10;
}
html.mobile-menu-active:not(.sidebar-nav-website) .menu-overlay {
opacity: 1;
visibility: visible;
}
html.mobile-menu-active:not(.sidebar-nav-website) .menu {
visibility: visible;
overflow: auto;
opacity: 1;
transform: scaleY(1) scaleX(1) translateX(0);
max-width: 400px;
}
nav.navigation li.btn-cart a:not(.btn) {
display: inline-flex;
align-items: center;
position: relative;
}
.member-nav.main-member-nav:not(.visible-search) .search {
display: none;
}
.navigation .menu .list > li.mobile-search {
display: block;
width: 100%;
background: #ffffff;
padding: 0 15px;
background-clip: content-box;
clear: both;
margin-top: 20px;
margin-bottom: 20px;
}
.member-nav .dropdown-menu:before {
left: auto;
right: 10px;
}
/***** Sidebar navigation menu *****/
.sidebar-nav-website .navigation .menu-overlay {
visibility: visible;
width: 340px;
position: fixed;
top: 0;
left: 0;
height: 100%;
padding: 0 !important;
opacity: 1;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
z-index: 1;
margin-left: -340px;
}
.sidebar-nav-website .navigation .menu {
visibility: visible;
opacity: 1;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
padding: 0px 0 40px;
background: #f4f4f4;
height: calc(100vh);
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
max-width: 100%;
width: 340px;
z-index: 1;
}
.mobile-menu-active.sidebar-nav-website .mw-live-edit .menu-overlay {
top: 56px;
}
.mobile-menu-active.sidebar-nav-website .menu-overlay {
margin-left: 0;
}
.mobile-menu-active.sidebar-nav-website .menu {
overflow: auto;
max-width: 340px;
border-right: 1px solid #ffffff;
}
.mobile-menu-active.sidebar-nav-website .main {
width: calc(100% - 340px);
right: -340px;
}
.mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
width: calc(100%);
margin: 0;
left: 0;
}
.sidebar-nav-website .main {
width: 100%;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
position: relative;
right: 0;
}
.sidebar-nav-website .navigation .menu ul {
margin-top: 0;
}
.sidebar-nav-website .navigation .menu .module-menu .list > .has-sub-menu > ul.dropdown-menu {
padding: 0 0 1rem 0;
}
.sidebar-nav-website .navigation .menu .module-menu .list > li:not(:first-of-type) {
border-top: 1px solid #ffffff;
}
.sidebar-nav-website .navigation .menu .module-menu .list > li:last-of-type {
border-bottom: 1px solid #ffffff;
}
.sidebar-nav-website .navigation .menu .list > li > a {
padding: 1rem 2rem;
}
.sidebar-nav-website .navigation .menu .list > li > ul > li a {
padding: .5rem 2.5rem;
}
.sidebar-nav-website .navigation .menu .list > li > ul > li > ul > li a {
padding: .5rem 3rem;
}
/***** End Sidebar navigation menu *****/
}
@media (max-width: 1365px) {
html.sidebar-nav-website.mobile-menu-active,
html.sidebar-nav-website.mobile-menu-active body {
overflow: hidden;
}
.mobile-menu-active.sidebar-nav-website .main {
width: calc(100%);
}
.mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
width: calc(100%);
}
.sidebar-nav-website .navigation .menu-overlay {
width: 100%;
margin-left: 0;
visibility: hidden;
opacity: 0;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.mobile-menu-active.sidebar-nav-website .menu-overlay {
visibility: visible;
opacity: 1;
background-color: rgba(33, 33, 33, 0.5);
}
.sidebar-nav-website .navigation .menu {
margin-left: -340px;
}
.mobile-menu-active.sidebar-nav-website .navigation .menu {
margin-left: 0;
}
.sidebar-nav-website .mobile-menu-btn {
z-index: 10;
}
}
@media (max-width: 767px) {
.mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
width: calc(100%);
left: 340px;
}
.sidebar-nav-website .navigation .menu ul {
margin-top: 20px;
}
.sidebar-nav-website .navigation .menu {
min-height: calc(100vh);
}
}
@media (max-width: calc(340px + 64px)) {
.sidebar-nav-website .navigation .menu {
width: calc(100vw - 64px);
max-width: calc(100vw - 64px);
margin-left: calc(-100vw - 64px);
}
.mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
left: calc(100vw - 64px);
}
.mobile-menu-active.sidebar-nav-website .main {
right: calc(-100vw + 64px);
}
}
@media (max-width: 767px) {
html:not(.sidebar-nav-website) .navigation .menu {
padding-bottom: 220px;
}
.navigation .list li > a:after {
position: absolute;
margin-left: 0;
}
body:not([data-lang="ar"]) .navigation .list li > a:after {
right: 0;
margin-right: 25px;
}
body[data-lang="ar"] .navigation .list li > a:after {
left: 0;
margin-left: 25px;
}
.member-nav li.btn-member {
display: none;
}
.navigation .menu .list > li.mobile-profile {
display: block;
}
.navbar-header ul.socials.header-social-phone {
justify-content: center;
padding: 0 15px;
}
.navbar-header ul.socials.header-social-phone li a {
color: #212121;
background-color: #ffffff;
}
.navbar-header ul.header-contacts-list-phone {
padding: 0 15px;
}
}
@media (max-width: 575px) {
html:not(.sidebar-nav-website) .navigation .menu {
width: calc(100% - 30px);
}
.member-nav .btn-cart,
.member-nav.visible-search .search {
position: static;
}
.member-nav > .dropdown.btn-cart > .dropdown-menu,
.member-nav.visible-search > .dropdown.search > .dropdown-menu {
left: 0 !important;
right: 0 !important;
transform-origin: center top;
transform: translate3d(0px, 0px, 0px) !important;
top: 100% !important;
margin-top: 0;
min-height: 100vh;
width: 100%;
}
.member-nav.visible-search > .dropdown.search > .dropdown-menu:after {
content: '';
display: block;
position: absolute;
left: 0;
right: 0;
top: 100%;
bottom: 0;
background-color: rgba(244, 244, 244, 0.5);
height: 100vh;
z-index: 0;
width: 100%;
}
.member-nav.visible-search > .dropdown.search > .dropdown-menu {
min-height: initial;
padding: 1rem;
}
.member-nav > .dropdown > .dropdown-menu:before {
display: none;
}
.member-nav .shopping-cart-holder {
width: 100%;
}
.navbar-header ul.header-contacts-list li + li {
margin-left: 5px;
}
}
/*Secondary menu*/
.navigation .secondary-menu {
width: 100%;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
flex: 1;
}
.navigation .secondary-menu .module-menu {
width: 100%;
}
.navigation .secondary-menu .list li:hover > ul {
opacity: 1;
visibility: visible;
}
.secondary-menu > ul.dropdown-menu {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
display: block;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
top: 100%;
position: absolute;
background-color: #0044de;
}
.navigation .secondary-menu > li > a {
display: block;
/*font-size: 16px;*/
color: #282627;
text-decoration: none;
position: relative;
}
.navigation .secondary-menu > li > a,
.navigation .secondary-menu > li > ul a {
padding: 10px 30px;
text-align: right;
}
.navigation .secondary-menu .list > li.mobile-search,
.navigation .secondary-menu .list > li.mobile-profile {
display: none;
}
.navigation .secondary-menu .list > li.mobile-search form {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
align-items: center;
}
.navigation .secondary-menu .list > li.mobile-search {
background: #ffffff;
}
/* Mega DropDown Secondary menu in huge resolution */
/* Not Finished */
/*@media screen and (min-width: 992px) {
.navigation .secondary-menu.secondary-menu-open .module-menu {
margin-top: 20px;
}
.navigation .secondary-menu.secondary-menu-open .module-menu>ul{
padding-bottom: 0;
-ms-flex-direction: row;
flex-direction: row;
}
.navigation .secondary-menu.secondary-menu-open .module-menu>ul>li {
display: inline-block;
}
}*/
/* END Mega DropDown Secondary menu in huge resolution */
@media screen and (min-width: 1199px) {
.navigation .secondary-menu .small-navbar .list li a {
/*font-size: calc(14px);*/
}
.navigation .secondary-menu .list > li:hover > a {
color: #0044de;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.navigation .secondary-menu .list > li > ul li:hover > a {
color: rgba(244, 244, 244, 0.8);
background-color: rgba(244, 244, 244, 0.03);
}
/*See more icon for secondary menu*/
.navigation .secondary-menu .collapseNav-initialized {
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
align-items: center;
}
.navigation-holder:not(.header_style_3) .navigation .secondary-menu .sub-menu-more > .dropdown-menu {
left: auto;
right: 0;
}
.navigation-holder:not(.header_style_3) .navigation .secondary-menu .sub-menu-more .dropdown-menu .dropdown-menu {
left: -100%;
right: 100%;
}
.navigation-holder:not(.header_style_3) .navigation .secondary-menu .sub-menu-more .dropdown-menu li:hover > a:after {
transform: rotate(90deg) !important;
}
/*End See more icon*/
}
@media screen and (max-width: 1199px) {
.navigation .secondary-menu .sub-menu-more {
display: none !important;
}
.mobile-menu-label {
display: -webkit-inline-box;
display: -moz-inline-box;
display: ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
}
.extra-toggle {
width: 34px;
height: 30px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
align-items: center;
justify-content: center;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
cursor: pointer;
}
.navigation .secondary-menu .module-menu > ul {
margin-top: 20px;
padding-bottom: 160px;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
-ms-flex-direction: column;
flex-wrap: wrap;
flex-direction: column;
}
.navigation .secondary-menu {
position: absolute;
right: 0;
left: 0;
top: calc(-100vh);
margin-left: auto;
margin-right: auto;
padding: 0 0 20px 0;
background-color: #f4f4f4;
min-height: calc(100vh);
transform-origin: top 0;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
max-width: 100%;
width: 100%;
z-index: -1;
bottom: 0;
overflow: hidden;
visibility: hidden;
opacity: 1;
align-content: flex-start;
}
.mobile-extra-menu-active .secondary-menu {
visibility: visible;
overflow: auto;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0%, 100%, 0);
webkit-transition: 0.5s ease;
transition: 0.5s ease;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 220px;
}
.navigation .secondary-menu ul {
width: 100%;
}
.navigation .secondary-menu .list > li,
.navigation .secondary-menu .list > li li {
display: block;
margin: 0;
clear: both;
}
.navigation .secondary-menu .list > li > ul a,
.navigation .secondary-menu .list > li > a {
color: #212121;
clear: both;
padding: 10px 30px;
}
.navigation .secondary-menu .list > li > ul a {
color: rgba(33, 33, 33, 0.7);
}
.navigation .secondary-menu .list > li > ul > li a {
padding: 8px 40px;
}
.navigation .secondary-menu .list > li > ul > li > ul a {
padding: 8px 50px;
}
.navigation .secondary-menu .list > li a:hover {
background-color: rgba(244, 244, 244, 0.03);
color: #212121;
}
.navigation .secondary-menu .dropdown-menu > .active > a,
.navigation .secondary-menu .dropdown-menu > .active > a:focus {
background-color: rgba(244, 244, 244, 0.03);
color: #212121;
}
.navigation .secondary-menu .list > li.active-parent > a,
.navigation .secondary-menu .list > li.active > a {
color: #0044de;
}
.navigation .secondary-menu .list > li.active li.active-parent > a {
color: #212121;
}
.navigation .secondary-menu .has-sub-menu ul.dropdown-menu {
position: static !important;
transform: unset !important;
opacity: 1;
visibility: visible;
display: none;
box-shadow: none;
-webkit-transition: none;
transition: none;
border: 0;
margin: 0;
background: 0 0;
max-width: 100%;
min-width: unset;
}
.navigation .secondary-menu .list > li.mobile-search {
display: block;
margin-top: 20px;
}
.member-nav.secondary-member-nav:not(.visible-search) .search {
display: none;
}
}
@media screen and (max-width: 767px) {
.navigation .secondary-menu .container {
padding-left: 15px;
padding-right: 15px;
}
.navigation .secondary-menu .list > li.mobile-profile {
display: block;
margin-top: 20px;
}
}
.header-social-links {
flex: 1;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
}
.header-contacts {
flex: 1;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
}
.header-contacts ul {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.main-header,
.down-header,
.up-header {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
width: 100%;
}
.container.color-background-container:after {
content: '';
position: absolute;
width: 100%;
height: 100%;
display: block;
top: 0;
left: 0;
z-index: 0;
background-color: #0044de;
opacity: 1;
z-index: -1;
}
@media screen and (min-width: 1451px) {
.down-header {
margin-bottom: 20px;
}
}
/*Header style 1*/
.header_style_1 .navigation .navbar-header .toggle {
flex: 1;
}
@media screen and (min-width: 1200px) {
.header_style_1 .menu-overlay .module-menu .list {
justify-content: flex-end;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
body:not([data-lang="ar"]) .header_style_1 .member-nav {
padding-left: 30px;
}
body[data-lang="ar"] .header_style_1 .member-nav {
padding-right: 30px;
}
}
/*Header style 2*/
@media screen and (min-width: 1200px) {
.header_style_2 .menu-overlay .menu {
width: 100%;
}
.header_style_2 .navigation .menu .collapseNav-initialized {
justify-content: center;
}
.header_style_2 .menu-overlay {
justify-content: center;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
}
/*Header style 3*/
.header_style_3 .member-nav {
flex: 1;
}
.header_style_3 .navigation .navbar-header .toggle {
flex: 1;
}
@media (max-width: 575px) {
.mobile-menu-active .header_style_3 .menu {
width: 100%;
}
}
/*Header style 4*/
.header_style_4 .member-nav {
flex: 1;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
justify-content: flex-start;
}
.header_style_4 .navigation .navbar-header .toggle {
flex: 1;
}
@media screen and (min-width: 1200px) {
.header_style_4 .menu-overlay .module-menu .list {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
justify-content: flex-end;
}
.header_style_4 .menu-overlay .menu {
width: 100%;
}
}
@media (min-width: 576px) and (max-width: 991px) {
.header_style_4 .member-nav .dropdown-menu:before {
left: 10px;
right: auto;
}
}
@media (max-width: 767px) {
.website_member-nav .header_style_4 .navigation .navbar-header .logo {
margin: 10px;
}
}
@media (max-width: 575px) {
.mobile-menu-active .header_style_4 .menu {
width: 100%;
}
}
/*Header style 5*/
.header_style_5 .navbar-header {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
-ms-flex-direction: column;
flex-wrap: wrap;
flex-direction: column;
}
.header_style_5.not-transparent .navigation .socials li a,
.header_style_5 .navigation.sticky .socials li a {
color: #212121;
}
.header_style_5 .down-header {
margin-bottom: 0;
}
.header_style_5 .down-header .header-social-links {
margin-bottom: 0;
}
.header_style_5 .main-header {
justify-content: space-between;
align-items: center;
}
.header_style_5 .main-header .logo {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.header_style_5 .down-header {
align-items: center;
justify-content: center;
}
@media screen and (min-width: 1200px) {
.header_style_5 .menu-overlay {
text-align: center;
}
.header_style_5 .menu-overlay .module-menu .list {
justify-content: center;
}
}
@media screen and (min-width: 768px) {
.header_style_5 .main-header .logo,
.header_style_5 .main-header .member-nav {
flex: 1;
}
}
@media (max-width: 767px) {
.header_style_5 .main-header .logo {
justify-content: flex-start;
}
}
/*Header style 6*/
.header_style_6 .navbar-header {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
-ms-flex-direction: column;
flex-wrap: wrap;
flex-direction: column;
}
.header_style_6 .main-header {
justify-content: space-between;
align-items: center;
}
.header_style_6 .main-header .logo {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.header_style_6 .down-header {
align-items: center;
justify-content: center;
}
@media screen and (min-width: 1200px) {
.header_style_6 .menu-overlay {
text-align: center;
}
.header_style_6 .menu-overlay .module-menu .list {
justify-content: center;
}
}
@media screen and (min-width: 768px) {
.header_style_6 .main-header .logo {
flex: 1;
}
.header_style_6 .main-header .member-nav {
flex: 1;
}
}
@media (max-width: 767px) {
.header_style_6 .navbar-header ul.header-contacts-list {
text-align: center;
}
.header_style_6 .navbar-header ul.header-contacts-list li a {
background-color: #ffffff;
color: #212121;
width: 36px;
height: 36px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
}
/*Header style 7*/
html:not(.mobile-menu-active) .header_style_7.navigation-holder .navigation .logo.logo-dark,
html:not(.mobile-menu-active) .header_style_7.navigation-holder.not-transparent .navigation .logo.logo-dark,
html:not(.mobile-menu-active) .header_style_7.navigation-holder .navigation.sticky .logo.logo-dark,
html:not(.mobile-menu-active) .header_style_7.navigation-holder.not-transparent .navigation.sticky .logo.logo-dark {
display: none !important;
}
html:not(.mobile-menu-active) .header_style_7.navigation-holder .navigation .logo.logo-light,
html:not(.mobile-menu-active) .header_style_7.navigation-holder.not-transparent .navigation .logo.logo-light,
html:not(.mobile-menu-active) .header_style_7.navigation-holder .navigation.sticky .logo.logo-light,
html:not(.mobile-menu-active) .header_style_7.navigation-holder.not-transparent .navigation.sticky .logo.logo-light {
display: flex !important;
}
html:not(.mobile-menu-active) .header_style_7 .navigation.sticky {
border: 0 !important;
}
html:not(.mobile-menu-active) .header_style_7 .navigation .list > li > a {
color: #f4f4f4 !important;
}
html:not(.mobile-menu-active) .header_style_7 .navigation .member-nav .dropdown-toggle > i,
html:not(.mobile-menu-active) .header_style_7 .navigation .member-nav .dropdown-toggle > i,
html:not(.mobile-menu-active) .header_style_7 .navigation .member-nav .dropdown-toggle > i,
html:not(.mobile-menu-active) .header_style_7 .not-transparent .navigation .member-nav .dropdown-toggle > i,
html:not(.mobile-menu-active) .header_style_7 .navigation.sticky .member-nav .dropdown-toggle > i,
html:not(.mobile-menu-active) .header_style_7 .not-transparent .navigation .member-nav .dropdown-toggle > i,
html:not(.mobile-menu-active) .header_style_7 .navigation.sticky .member-nav .dropdown-toggle > i,
html:not(.mobile-menu-active) .header_style_7 .not-transparent .navigation .member-nav .dropdown-toggle > i {
color: #f4f4f4 !important;
}
html:not(.mobile-menu-active) .header_style_7 .member-nav .dropdown-toggle > span {
background-color: #f4f4f4 !important;
color: #0044de !important;
}
.header_style_7 .navbar-header {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
-ms-flex-direction: column;
flex-wrap: wrap;
flex-direction: column;
}
.header_style_7 .main-header {
justify-content: space-between;
align-items: center;
}
.header_style_7 .main-header .logo {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.header_style_7 .down-header {
align-items: center;
justify-content: space-between;
}
@media screen and (min-width: 768px) {
.header_style_7 .down-header {
margin-bottom: 10px;
}
}
@media screen and (max-width: 767px) {
.header_style_7 .down-header {
justify-content: flex-end;
margin-bottom: 10px;
}
}
/*Header style 8*/
.header_style_8 .navigation-holder.not-transparent .navbar-header ul.header-contacts-list li a,
.header_style_8 .navigation.sticky .navbar-header ul.header-contacts-list li a {
color: #f4f4f4;
}
.header_style_8 .toggle {
flex: 1;
}
.header_style_8 .up-header {
padding-top: 5px;
padding-bottom: 5px;
align-items: center;
}
.header_style_8 .up-header .list {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
justify-content: flex-end;
}
.header_style_8 .up-header .list li {
margin: 0;
}
.header_style_8 .up-header .list li a {
color: #f4f4f4;
}
.header_style_8 .up-header .list li a:hover {
color: #ffffff;
}
.header_style_8 .header-social-links {
justify-content: center;
flex: unset;
}
.header_style_8 .main-header {
justify-content: space-between;
align-items: center;
}
.header_style_8 .main-header .logo {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.header_style_8 .member-nav {
flex: unset;
}
@media screen and (min-width: 1200px) {
.header_style_8 .secondary-menu.secondray-menu-open {
padding: 20px 0;
}
}
@media screen and (max-width: 767px) {
.header_style_8 .up-header {
justify-content: space-between;
}
.header_style_8 .header-contacts,
.header_style_8 .header-social-links,
.header_style_8 .toggle {
flex: unset;
}
}
/*Header style 9*/
.header_style_9 .mobile-menu-btn.active:not(.blocked-toggle) span {
background: #212121;
}
@media screen and (max-width: 5000px) {
.header_style_9 .navigation .menu .sub-menu-more {
display: none !important;
}
.header_style_9 .navigation .menu ul {
width: 100%;
margin-top: 20px;
}
.header_style_9 .navigation .menu .list li {
display: block;
margin: 0;
clear: both;
width: 100%;
}
.header_style_9 .navigation .menu .list > li > a {
color: #212121;
clear: both;
padding: 10px 30px;
}
.header_style_9 .navigation .menu .list > li > ul a {
color: rgba(33, 33, 33, 0.7);
}
.header_style_9 .navigation .menu .list > li > ul > li a {
padding: 8px 40px;
}
.header_style_9 .navigation .menu .list > li > ul > li > ul > li a {
padding: 8px 50px;
}
.header_style_9 .navigation .menu .list > li a:hover {
background-color: rgba(244, 244, 244, 0.03);
color: #212121;
}
.header_style_9 .navigation .menu .dropdown-menu > .active > a,
.header_style_9 .navigation .menu .dropdown-menu > .active > a:focus {
background-color: rgba(244, 244, 244, 0.03);
color: #212121;
}
.header_style_9 .navigation .menu .list > li.active-parent > a,
.header_style_9 .navigation .menu .list > li.active > a {
color: #0044de;
}
.header_style_9 .navigation .menu .list > li.active li.active-parent > a {
color: #212121;
}
.header_style_9 .navigation .menu .show > .dropdown-menu {
display: block;
position: relative;
float: none;
margin: 0 auto;
max-width: 100%;
margin-top: 0;
}
.header_style_9 .navigation .menu .list .dropdown.show {
background: #457eff;
margin: 0 20px;
padding-bottom: 15px;
}
.header_style_9 .navigation .menu .has-sub-menu ul.dropdown-menu {
position: static !important;
transform: unset !important;
opacity: 1;
visibility: visible;
display: none;
box-shadow: none;
-webkit-transition: none;
transition: none;
border: 0;
margin: 0;
background: transparent;
max-width: 100%;
min-width: unset;
}
.header_style_9 .navigation .menu-overlay[class*="pl-"] {
padding: 0 !important;
}
.header_style_9 .navigation .navbar-header .toggle {
display: block;
margin-right: 20px;
}
.header_style_9 .navigation .member-nav {
flex: 1;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
justify-content: flex-end;
}
.header_style_9 .navigation.sticky .menu .member-nav {
display: block;
}
.header_style_9 nav.navigation li.btn-cart a:not(.btn) {
display: inline-flex;
align-items: center;
position: relative;
}
.header_style_9 .member-nav.main-member-nav:not(.visible-search) .search {
display: none;
}
.header_style_9 .navigation .menu .list > li.mobile-search {
display: block;
width: 100%;
background: #ffffff;
padding: 0 15px;
background-clip: content-box;
clear: both;
margin-top: 20px;
margin-bottom: 20px;
}
.header_style_9 .member-nav .dropdown-menu:before {
left: auto;
right: 10px;
}
/***** Sidebar navigation menu *****/
.sidebar-nav-website .header_style_9 .navigation .menu-overlay {
visibility: visible;
width: 340px;
position: fixed;
top: 0;
left: 0;
height: 100%;
padding: 0 !important;
opacity: 1;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
z-index: 1;
margin-left: -340px;
}
.sidebar-nav-website .header_style_9 .navigation .menu {
visibility: visible;
opacity: 1;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
padding: 0px 0 40px;
background: #f4f4f4;
height: calc(100vh);
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
max-width: 100%;
width: 340px;
z-index: 1;
}
.sidebar-nav-website .header_style_9 .navigation .menu ul {
margin-top: 0;
}
.sidebar-nav-website .header_style_9 .navigation .menu .module-menu .list > .has-sub-menu > ul.dropdown-menu {
padding: 0 0 1rem 0;
}
.sidebar-nav-website .header_style_9 .navigation .menu .module-menu .list > li:not(:first-of-type) {
border-top: 1px solid #f4f4f4;
}
.sidebar-nav-website .header_style_9 .navigation .menu .module-menu .list > li:last-of-type {
border-bottom: 1px solid #f4f4f4;
}
.sidebar-nav-website .header_style_9 .navigation .menu .list > li > a {
padding: 1rem 2rem;
}
.sidebar-nav-website .header_style_9 .navigation .menu .list > li > ul > li a {
padding: .5rem 2.5rem;
}
.sidebar-nav-website .header_style_9 .navigation .menu .list > li > ul > li > ul > li a {
padding: .5rem 3rem;
}
.sidebar-nav-website .header_style_9 .main {
width: 100%;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
position: relative;
right: 0;
}
.mobile-menu-active.sidebar-nav-website .header_style_9 .mw-live-edit .menu-overlay {
top: 56px;
}
.mobile-menu-active.sidebar-nav-website .header_style_9 .menu-overlay {
margin-left: 0;
}
.mobile-menu-active.sidebar-nav-website .header_style_9 .menu {
overflow: auto;
max-width: 340px;
border-right: 1px solid #f4f4f4;
}
.mobile-menu-active.sidebar-nav-website .header_style_9 .main {
width: calc(100% - 340px);
right: -340px;
}
.mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .header_style_9 .js-sidebar-nav {
width: calc(100%);
margin: 0;
left: 0;
}
/***** End Sidebar navigation menu *****/
}
.header-posts-holder .posts-menu {
z-index: 99;
display: none;
width: 100%;
height: 280px;
left: 0;
position: absolute;
background: #ffffff;
border-top: 2px solid rgba(33, 33, 33, 0.1);
}
@media screen and (min-width: 992px) and (max-width: 1439px) {
.header-posts-holder .posts-menu {
height: 560px;
}
}
.header-posts-holder .posts-menu.opened {
display: block;
}
.header-posts-holder .posts-menu .container {
position: relative;
}
.header-posts-holder .posts-menu .container:before {
content: '';
right: 30px;
border: solid rgba(33, 33, 33, 0.1);
border-width: 0 2px 2px 0;
display: inline-block;
padding: 7px;
transform: rotate(-135deg);
-webkit-transform: rotate(-135deg);
background: #fff;
position: absolute;
top: -10px;
}
.header-posts-holder .posts-menu .events {
float: right;
}
.header-posts-holder .posts-menu .events .event {
margin-bottom: 30px;
width: 140px;
float: left;
margin-left: 30px;
}
.header-posts-holder .posts-menu .events .event h5 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.header-posts-holder .posts-menu .events .event:after {
display: block;
clear: both;
content: '';
}
.header-posts-holder .posts-menu .events .event .info {
margin-top: 10px;
}
.header-posts-holder .posts-menu .events .event .image img {
max-width: 100%;
width: 140px;
height: 140px;
}
@media screen and (max-width: 767px) {
.header-posts-holder .posts-menu {
height: 100vh;
position: fixed;
top: 0;
z-index: 9;
right: 0;
width: 300px;
left: auto;
box-shadow: 0 11px 32px 0 rgba(219, 219, 219, 0.5);
}
.header-posts-holder .posts-menu .posts-title {
display: none;
}
.header-posts-holder .posts-menu .btn-posts {
margin: 30px 0;
}
.header-posts-holder .posts-menu .btn-posts .btn span.fas {
margin-top: 3px;
}
.header-posts-holder .posts-menu .events {
float: none;
}
.header-posts-holder .posts-menu .events .event {
max-width: 100%;
padding: 15px 0;
margin-left: 0;
margin-bottom: 0;
border-bottom: 2px solid rgba(33, 33, 33, 0.1);
float: none;
width: 300px;
}
.header-posts-holder .posts-menu .events .event:last-of-type {
border-bottom: 0;
}
.header-posts-holder .posts-menu .events .event .image {
margin-right: 25px;
float: left;
}
.header-posts-holder .posts-menu .events .event .image img {
width: 60px;
height: 60px;
}
}
/* *******************************************
**************** Margins *************** *
******************************************* */
.row-mx-1 {
margin-left: -1px !important;
margin-right: -1px !important;
}
.row-mx-2 {
margin-left: -2px !important;
margin-right: -2px !important;
}
.row-mx-3 {
margin-left: -3px !important;
margin-right: -3px !important;
}
.row-mx-4 {
margin-left: -4px !important;
margin-right: -4px !important;
}
.row-mx-5 {
margin-left: -5px !important;
margin-right: -5px !important;
}
.row-mx-6 {
margin-left: -6px !important;
margin-right: -6px !important;
}
.row-mx-7 {
margin-left: -7px !important;
margin-right: -7px !important;
}
.row-mx-8 {
margin-left: -8px !important;
margin-right: -8px !important;
}
.row-mx-9 {
margin-left: -9px !important;
margin-right: -9px !important;
}
.row-mx-10 {
margin-left: -10px !important;
margin-right: -10px !important;
}
.row-mx-11 {
margin-left: -11px !important;
margin-right: -11px !important;
}
.row-mx-12 {
margin-left: -12px !important;
margin-right: -12px !important;
}
.row-mx-13 {
margin-left: -13px !important;
margin-right: -13px !important;
}
.row-mx-14 {
margin-left: -14px !important;
margin-right: -14px !important;
}
.row-mx-15 {
margin-left: -15px !important;
margin-right: -15px !important;
}
.col-px-1 {
padding-left: 1px !important;
padding-right: 1px !important;
}
.col-px-2 {
padding-left: 2px !important;
padding-right: 2px !important;
}
.col-px-3 {
padding-left: 3px !important;
padding-right: 3px !important;
}
.col-px-4 {
padding-left: 4px !important;
padding-right: 4px !important;
}
.col-px-5 {
padding-left: 5px !important;
padding-right: 5px !important;
}
.col-px-6 {
padding-left: 6px !important;
padding-right: 6px !important;
}
.col-px-7 {
padding-left: 7px !important;
padding-right: 7px !important;
}
.col-px-8 {
padding-left: 8px !important;
padding-right: 8px !important;
}
.col-px-9 {
padding-left: 9px !important;
padding-right: 9px !important;
}
.col-px-10 {
padding-left: 10px !important;
padding-right: 10px !important;
}
.col-px-11 {
padding-left: 11px !important;
padding-right: 11px !important;
}
.col-px-12 {
padding-left: 12px !important;
padding-right: 12px !important;
}
.col-px-13 {
padding-left: 13px !important;
padding-right: 13px !important;
}
.col-px-14 {
padding-left: 14px !important;
padding-right: 14px !important;
}
.col-px-15 {
padding-left: 15px !important;
padding-right: 15px !important;
}
/* *******************************************
**************** Socials *************** *
******************************************* */
ul.socials.center {
text-align: center;
}
ul.socials {
margin-top: 20px;
}
ul.socials li {
display: inline-block;
color: #212121;
margin-right: 15px;
width: auto;
}
ul.socials li a {
display: block;
color: #ffffff;
text-decoration: none;
background: #0044de;
height: 40px;
width: 40px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
/*font-size: 20px;*/
padding: 9px 0;
text-align: center;
position: relative;
}
ul.socials li a:hover {
background: #212121;
color: #212121;
text-decoration: none;
}
ul.socials.labels {
margin-top: 0;
text-align: right !important;
}
ul.socials.labels li {
display: inline-block;
color: #212121;
margin-left: 5px;
margin-right: 0px !important;
width: auto;
}
ul.socials.labels li a {
display: block;
color: #f4f4f4 !important;
text-decoration: none;
background: rgba(61, 0, 180, 0.03);
height: 30px;
width: auto;
/*font-size: 14px;*/
/*line-height: 14px;*/
padding: 0px 15px;
text-align: center;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
ul.socials.labels li a i {
/*font-size: 16px;*/
margin-right: 10px;
float: left;
margin-top: 7px;
color: #f4f4f4;
}
ul.socials.labels li a span {
float: left;
display: block;
margin-top: 7px;
/*font-size: 12px;*/
/*line-height: 18px;*/
}
ul.socials.labels li a:hover {
background: #212121;
color: #ffffff;
text-decoration: none;
}
ul.socials.labels li a.facebook {
background: #3B5998;
}
ul.socials.labels li a.google-plus {
background: #d62d20;
}
ul.socials.labels li a.twitter {
background: #1dcaff;
}
ul.socials.labels li a.pinterest {
background: #cb2027;
}
ul.socials.labels li a.linkedin {
background: #0077B5;
}
ul.socials.labels li:hover a {
color: #ffffff;
background: #212121;
}
/* *******************************************
**************** Socials *************** *
******************************************* */
ul.socials-2.center {
text-align: center;
}
ul.socials-2 li {
display: inline-block;
color: #212121;
margin: 0 10px;
width: auto;
}
ul.socials-2 li a {
display: block;
color: #212121;
text-decoration: none;
/*font-size: 26px;*/
padding: 2px 0;
text-align: center;
position: relative;
}
ul.socials-2 li a:hover {
color: #457eff;
}
/* *******************************************
**************** Elements *************** *
******************************************* */
/* Google Maps */
#map {
height: 400px;
width: 100%;
}
#map img {
width: inherit;
}
#map .gmnoprint {
width: 200px;
}
/* To Top */
#to-top {
width: 40px;
height: 40px;
background-color: #0044de;
position: fixed;
bottom: 30px;
right: 30px;
cursor: pointer;
opacity: .4;
border: 0;
color: #ffffff;
padding: 0;
z-index: 99;
}
#to-top:before {
content: "\f077";
color: white;
/*font-family: 'FontAwesome';*/
position: relative;
top: -1px;
}
#to-top:hover {
opacity: 1;
}
/* Tables holder */
.div-table {
display: table;
width: 100%;
height: 100%;
}
.div-table-cell {
display: table-cell;
width: 100%;
height: 100%;
vertical-align: middle;
}
/* Buttons */
.btn {
padding-left: 25px;
padding-right: 25px;
text-align: center;
}
.btn-lg {
padding: .75rem 2.1rem;
/*font-size: 1.05rem;*/
/*font-weight: 700;*/
min-width: 250px;
}
[class*="btn-outline"] {
background: #ffffff;
border: 1px solid #ffffff;
}
.btn img {
max-width: 100%;
max-height: 30px;
}
.btn-default {
color: #f4f4f4;
background: #212121;
border: 1px solid #212121;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.btn-default:hover,
.btn-default.focus,
.btn-default:focus {
color: #f4f4f4;
background-color: #545454;
border: 1px solid #545454;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.btn-outline-default {
color: #212121;
border-color: #212121;
}
.btn-outline-default:hover {
background-color: #212121;
border-color: #212121;
color: #f4f4f4;
}
.btn-primary {
color: #f4f4f4;
background-color: #0044de;
border: 1px solid #0044de;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle,
.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus {
color: #f4f4f4;
background-color: #457eff;
border: 1px solid #457eff;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.btn-outline-primary {
border-color: #0044de;
}
.btn-outline-primary:hover {
background-color: #0044de;
border-color: #0044de;
}
.btn-outline-primary.active:hover,
.btn-outline-primary.active.focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.active {
color: #f4f4f4 !important;
background-color: #0044de !important;
border: 1px solid #0044de !important;
-webkit-border-radius: 3px !important;
-moz-border-radius: 3px !important;
border-radius: 3px !important;
}
.btn-link {
color: #0044de;
text-decoration: none;
/*font-size: 18px;*/
}
.btn-link:hover {
color: rgba(0, 68, 222, 0.7);
text-decoration: none;
}
.btn i {
margin-right: 10px;
}
.btn-play {
width: 85px;
height: 85px;
border-radius: 100% !important;
display: flex;
justify-content: center;
align-items: center;
}
.btn-play i {
margin: 0;
}
.button-1 {
height: 50px;
background: #0044de;
border: 1px solid #0044de;
cursor: pointer;
overflow: hidden;
position: relative;
text-align: center;
transition: background 5s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
user-select: none;
display: inline-block;
}
.button-1 .mask {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.5);
height: 100px;
position: absolute;
transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
width: 200px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none;
}
.button-1:hover {
background: #0044de;
border: 1px solid #0044de;
transition: background 0s;
}
.button-1:hover .mask {
background-color: #fff;
transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
}
.button-1 a,
.button-1 button {
/*font-size: 14px;*/
color: #f4f4f4;
text-align: center;
position: relative;
text-decoration: none;
text-transform: uppercase;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 0px 40px 0 40px;
transition: padding-right 0.2s linear 0s, padding-left 0.2s linear 0s;
}
.button-1 a:before,
.button-1 button:before {
content: "\f054";
/*font-family: "Font Awesome 5 Free";*/
/*font-weight: 900;*/
/*font-size: 15px;*/
position: absolute;
display: flex;
align-items: center;
justify-content: center;
right: 0;
top: 0;
opacity: 0;
height: 100%;
width: 40px;
transition: all 0.2s linear 0s;
}
.button-1 a:hover,
.button-1 button:hover {
text-indent: -20px;
padding: 0px 45px 0 35px;
}
.button-1 a:hover:before,
.button-1 button:hover:before {
opacity: 1;
text-indent: 0px;
}
.button-1.button-md {
height: 40px;
}
.button-1 button:hover {
text-indent: 0px;
}
.button-2 {
height: 50px;
background: #0044de;
border: 1px solid #0044de;
cursor: pointer;
overflow: hidden;
position: relative;
text-align: center;
transition: background 5s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
user-select: none;
display: inline-block;
}
.button-2 .mask {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.5);
height: 100px;
position: absolute;
transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
width: 200px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none;
}
.button-2:hover {
background: #0044de;
border: 1px solid #0044de;
transition: background 0s;
}
.button-2:hover .mask {
background-color: #fff;
transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
}
.button-2 a,
.button-2 button {
/*font-size: 14px;*/
color: #f4f4f4;
text-align: center;
position: relative;
text-decoration: none;
text-transform: uppercase;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 0px 70px 0 30px;
transition: padding-right 0.2s linear 0s, padding-left 0.2s linear 0s;
}
.button-2 a:before,
.button-2 button:before {
border-left: 1px solid #f4f4f4;
content: "\f054";
/*font-family: "Font Awesome 5 Free";*/
/*font-weight: 900;*/
/*font-size: 15px;*/
position: absolute;
display: flex;
align-items: center;
justify-content: center;
right: 0;
top: 0;
height: 100%;
width: 40px;
transition: all 0.2s linear 0s;
z-index: 2;
background: #0044de;
}
.button-2 a:hover,
.button-2 button:hover {
text-indent: -20px;
}
.button-2 a:hover:before,
.button-2 button:hover:before {
text-indent: 0px;
width: 50px;
}
.button-2.button-md {
height: 40px;
}
.button-2 button:hover {
text-indent: 0px;
}
.button-3 {
height: 50px;
background: #fff;
border: 1px solid #0044de;
cursor: pointer;
overflow: hidden;
position: relative;
text-align: center;
transition: background 5s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
user-select: none;
display: inline-block;
}
.button-3:hover {
background: #fff;
border: 1px solid #0044de;
transition: background 0s;
}
.button-3 a,
.button-3 button {
/*font-size: 14px;*/
color: #212121;
text-align: center;
position: relative;
text-decoration: none;
text-transform: uppercase;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 0px 40px 0 40px;
transition: padding-right 0.2s linear 0s, padding-left 0.2s linear 0s;
}
.button-3 a:before,
.button-3 button:before {
left: 130%;
position: absolute;
top: 50%;
transform: translateY(-50%);
/*font-size: 90%;*/
color: #0044de;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
display: block;
/*font-family: 'Font Awesome 5 Free';*/
content: "\f061";
/*font-weight: 900;*/
}
.button-3 a:hover,
.button-3 button:hover {
padding: 0px 45px 0 35px;
}
.button-3 a:hover:before,
.button-3 button:hover:before {
left: calc(100% - 30px);
}
.button-3.button-md {
height: 40px;
}
.button-4 {
color: #f4f4f4;
cursor: pointer;
position: relative;
text-decoration: none !important;
text-transform: uppercase;
overflow: hidden;
display: inline-block;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: transparent;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
height: 50px;
border: 1px solid #f4f4f4;
/*font-size: 14px;*/
/*font-weight: 600;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
text-align: center;
}
.button-4 span {
color: #f4f4f4;
z-index: 20;
padding: 0 40px;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.button-4:after {
background: #fff;
content: "";
height: 155px;
left: -75px;
opacity: .2;
position: absolute;
top: -50px;
-webkit-transform: rotate(35deg);
transform: rotate(35deg);
transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
width: 50px;
z-index: auto;
}
.button-4:hover:after {
left: 120%;
transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.button-4.button-md {
height: 40px;
}
.button-5 {
padding: 0px 60px 0 20px;
color: #f4f4f4;
cursor: pointer;
position: relative;
text-decoration: none !important;
text-transform: uppercase;
overflow: hidden;
display: inline-block;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: transparent;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
height: 50px;
border: 1px solid #f4f4f4;
/*font-size: 14px;*/
/*font-weight: 600;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
text-align: center;
}
.button-5 span {
color: #f4f4f4;
z-index: 20;
padding: 0 40px;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.button-5:after {
background: #fff;
content: "";
height: 155px;
left: -75px;
opacity: .2;
position: absolute;
top: -50px;
-webkit-transform: rotate(35deg);
transform: rotate(35deg);
transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
width: 50px;
z-index: auto;
}
.button-5:before {
border-left: 1px solid #f4f4f4;
content: "\f054";
/*font-family: "Font Awesome 5 Free";*/
/*font-weight: 900;*/
/*font-size: 15px;*/
position: absolute;
display: flex;
align-items: center;
justify-content: center;
right: 0;
top: 0;
height: 100%;
width: 40px;
transition: all 0.2s linear 0s;
z-index: 2;
background: transparent;
color: #f4f4f4;
}
.button-5:hover:before {
width: 50px;
}
.button-5:hover:after {
left: 120%;
transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.button-5.button-md {
height: 40px;
}
.button-6 {
height: 50px;
background: #f4f4f4;
border: 1px solid #f4f4f4;
cursor: pointer;
overflow: hidden;
position: relative;
text-align: center;
transition: background 5s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
user-select: none;
display: inline-block;
}
.button-6:hover {
background: #f4f4f4;
border: 1px solid #f4f4f4;
transition: background 0s;
opacity: 0.9;
}
.button-6 a,
.button-6 button {
/*font-size: 14px;*/
color: #212121;
text-align: center;
position: relative;
text-decoration: none;
text-transform: uppercase;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 0px 40px 0 40px;
transition: padding-right 0.2s linear 0s, padding-left 0.2s linear 0s;
}
.button-6 a:before,
.button-6 button:before {
left: 130%;
position: absolute;
top: 50%;
transform: translateY(-50%);
/*font-size: 90%;*/
color: #212121;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
display: block;
/*font-family: 'Font Awesome 5 Free';*/
content: "\f061";
/*font-weight: 900;*/
}
.button-6 a:hover,
.button-6 button:hover {
padding: 0px 45px 0 35px;
}
.button-6 a:hover:before,
.button-6 button:hover:before {
left: calc(100% - 30px);
}
.button-6.button-md {
height: 40px;
}
.button-7 {
color: #f4f4f4 !important;
text-decoration: none !important;
/*font-size: 18px;*/
/*font-weight: 600;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
position: relative;
overflow: hidden;
display: inline-block;
z-index: 1;
}
.button-7 span {
display: block;
z-index: 2;
padding-bottom: 2px;
padding-right: 30px;
transition: all .2s linear 0s;
}
.button-7 span:after {
content: "\f30b";
/*font-family: "Font Awesome 5 Free";*/
/*font-weight: 900;*/
/*font-size: 11px;*/
position: absolute;
display: flex;
align-items: center;
justify-content: center;
right: 0;
top: 0;
height: 100%;
margin-right: 5px;
z-index: 2;
background: 0 0;
color: #fff;
}
.button-7:after {
content: '';
display: block;
width: 100%;
position: absolute;
left: 0;
right: 0;
background: #0044de;
height: 7px;
bottom: 0;
z-index: -1;
}
.button-7:hover span {
padding-right: 40px;
}
.button-8 {
color: #0044de !important;
text-decoration: none !important;
/*font-size: 18px !important;*/
/*font-weight: 600;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
position: relative;
overflow: hidden;
display: inline-block;
z-index: 2;
}
.button-8 span {
/*font-size: 18px !important;*/
display: block;
z-index: 2;
padding-right: 20px;
transition: all .2s linear 0s;
color: #0044de !important;
}
.button-8 span:after {
content: "\f30b";
/*font-family: "Font Awesome 5 Free";*/
/*font-weight: 900;*/
/*font-size: 15px;*/
position: absolute;
display: flex;
align-items: center;
justify-content: center;
right: 0;
top: 0;
height: 100%;
z-index: 2;
background: 0 0;
color: #0044de;
margin-top: 2px;
}
.button-8:hover span {
padding-right: 25px;
}
.button-8.button-red {
color: #0044de !important;
}
.button-8.button-red span:after {
color: #0044de;
}
.button-1 button,
.button-2 button,
.button-3 button,
.button-4 button,
.button-5 button,
.button-6 button,
.button-7 button,
.button-8 button {
/*line-height: 1;*/
background: transparent;
border: 0;
}
/* Newsletter form */
.newsletter-form input {
width: calc(100% - 40px);
}
.newsletter-form button {
width: 40px;
padding: 6px 0 7px 0;
}
.newsletter-form button i {
float: none;
margin: 0 auto;
}
/* Tables */
.table {
width: auto;
margin: 0 auto;
}
.table th {
background: #212121;
color: #ffffff;
}
.table th,
.table td {
/*font-size: 16px;*/
}
.table td {
color: #212121;
}
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
border: 0;
padding: 10px 30px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
background: rgba(61, 0, 180, 0.05);
}
/* Tabs */
.tabs {
margin-bottom: 10px;
}
.tabs .tab-pane {
min-height: 200px;
padding: 80px 0;
}
.tabs .nav-tabs {
border-bottom: 0;
}
@media screen and (max-width: 991px) {
.tabs .tab-pane {
padding: 80px 0 20px 0;
}
}
.tabs .nav-tabs > li .icon::before {
display: block;
margin: 0 0 0.35em;
opacity: 0;
-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
transition: transform 0.2s, opacity 0.2s;
-webkit-transform: translate3d(0, -100px, 0);
transform: translate3d(0, -100px, 0);
pointer-events: none;
/*font-size: 36px;*/
}
.tabs .nav-tabs > li.active .icon::before {
color: #212121;
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.tabs .nav-tabs > li > a {
color: #212121;
/*font-size: 18px;*/
/*line-height: 1.3333333;*/
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
border: 0;
border-bottom: 3px solid transparent;
margin: 0;
padding: 10px 10px;
white-space: nowrap;
text-overflow: ellipsis;
display: inline-block;
margin: 0 auto;
width: auto;
text-align: center;
}
.tabs .nav-tabs > li > a span {
/*font-weight: 700;*/
color: #212121;
}
.tabs .nav-tabs > li.active > a span {
/*font-weight: 700;*/
color: #212121;
}
.tabs .nav-tabs > li.active > a,
.tabs .nav-tabs > li.active > a:focus,
.tabs .nav-tabs > li.active > a:hover {
color: #212121;
border: 0;
border-bottom: 3px solid #212121;
}
.tabs .nav-tabs > li > a:focus,
.tabs .nav-tabs > li > a:hover {
background: transparent;
color: #212121;
border-bottom: 3px solid #212121;
text-decoration: none;
}
@media screen and (max-width: 767px) {
.tabs .nav-tabs > li > a span {
display: none;
}
.tabs .nav-tabs > li .icon::before {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@media screen and (max-width: 480px) {
.tabs .nav-tabs > li .icon::before {
/*font-size: 30px;*/
}
}
@media screen and (max-width: 400px) {
.tabs .nav-tabs > li .icon::before {
/*font-size: 28px;*/
}
}
.tabs .nav-tabs > li {
text-align: center;
}
/* Tabs 2 */
.tabs-2 {
margin-bottom: 10px;
}
.tabs-2 .tab-pane {
min-height: 200px;
padding: 80px 0;
}
.tabs-2 .nav-tabs {
text-align: center;
border-bottom: 0;
}
@media screen and (min-width: 992px) {
.tabs-2 .nav-tabs {
border-bottom: 3px solid #212121;
height: 45px;
}
}
.tabs-2 .nav-tabs > li {
margin: 0 2px;
display: inline-block;
float: none;
}
.tabs-2 .nav-tabs > li > a {
color: #212121;
/*font-size: 16px;*/
/*font-weight: bold;*/
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
border: 0;
margin: 0;
padding: 10px 30px;
text-align: center;
background: #ffffff;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.tabs-2 .nav-tabs > li.active > a,
.tabs-2 .nav-tabs > li.active > a:focus,
.tabs-2 .nav-tabs > li.active > a:hover {
color: #ffffff;
border: 0;
background: #212121;
}
.tabs-2 .nav > li > a:focus,
.tabs-2 .nav > li > a:hover {
background: #ffffff;
color: #212121;
}
.tabs-2 .nav-tabs > li > a i {
margin-right: 10px;
/*line-height: 18px;*/
float: left;
}
.tabs-2 .nav-tabs > li > a i.material-icons {
/*font-size: 22px;*/
margin-top: 3px;
/*line-height: 10px;*/
}
@media screen and (max-width: 991px) {
.tabs-2 .nav-tabs > li {
width: 50% !important;
}
}
@media screen and (max-width: 767px) {
.tabs-2 .nav-tabs > li {
width: 100% !important;
}
}
.tabs-2 .as-buttons.nav-tabs {
border: 0;
text-align: center;
}
.tabs-2 .as-buttons.nav-tabs > li {
margin: 0 10px;
display: inline-block;
float: none;
}
.tabs-2 .as-buttons.nav-tabs > li a i {
float: left;
margin-top: 10px;
}
.tabs-2 .as-buttons.nav-tabs > li > a {
border: 1px solid #212121;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background-color: #ffffff;
color: #212121;
}
.tabs-2 .as-buttons.nav-tabs > li.active > a,
.tabs-2 .as-buttons.nav-tabs > li.active > a:focus,
.tabs-2 .as-buttons.nav-tabs > li.active > a:hover {
border: 1px solid #212121;
background-color: #212121;
color: #ffffff;
}
/* Select holder */
.field-holder {
margin-bottom: 20px;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
/*line-height: 19px;*/
}
.field-holder label {
color: #212121;
padding: 13px 15px 13px 0;
/*font-weight: bold;*/
/*font-size: 16px;*/
}
.field-holder .bootstrap-select,
.field-holder label,
.field-holder input,
.field-holder select:not(.selectpicker) {
float: left;
display: block;
width: auto !important;
}
.field-holder .btn,
.field-holder select:not(.selectpicker),
.field-holder input {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border: 1px solid #d1d1d1;
/*font-size: 18px;*/
/*font-weight: bold;*/
color: #212121;
height: 46px;
padding: 12px 12px;
background: #ffffff;
}
/* Accordions */
.accordions .panel {
border: 0;
margin-bottom: 25px;
}
.accordions .panel-heading {
background: rgba(61, 0, 180, 0.03);
padding: 0;
border-color: #f9f9f9;
border: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.accordions .panel-collapse,
.accordions .collapse {
width: 100%;
}
.accordions .panel-title {
margin-bottom: 0;
/*font-size: 20px;*/
text-align: left;
}
.accordions .panel-title > .small,
.accordions .panel-title > .small > a,
.panel-title > a,
.accordions .panel-title > small,
.accordions .panel-title > small > a {
/*font-size: 20px;*/
color: #212121;
display: block;
padding: 14px 12px;
}
.accordions .panel-title > a {
/*font-size: 20px;*/
color: #212121;
display: block;
padding: 14px 12px;
text-decoration: none;
position: relative;
}
.accordions .panel-title > a:before {
padding: 25px;
background: #212121;
display: block;
float: right;
margin-top: -14px;
margin-right: -12px;
content: '';
}
.accordions .panel-title > a:after {
/*font-family: FontAwesome;*/
/*font-size: 24px;*/
color: #ffffff;
display: block;
content: '\f105';
right: 19px;
-ms-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
position: absolute;
top: 24px;
/*line-height: 0;*/
transition: all 0.2s ease;
}
.accordions .panel-title > a.collapsed:after {
-ms-transform: rotate(0deg);
/* IE 9 */
-webkit-transform: rotate(0deg);
/* Safari 3-8 */
transform: rotate(0deg);
}
.accordions .panel-body {
padding: 15px;
border: 1px solid #f9f9f9;
border-top: 0 !important;
}
.accordions .panel-body,
.accordions .panel-body p {
text-align: left;
/*font-size: 16px;*/
color: #212121;
/*line-height: 1.5;*/
}
/* Slick slider - Testimonials */
.slick-testimonials.slick-slider {
padding-bottom: 30px;
}
.slick-testimonials.slick-slider .slick-prev:before,
.slick-testimonials.slick-slider .slick-next:before {
color: #212121;
/*font-size: 30px;*/
padding: 5px;
opacity: 1;
}
.slick-testimonials.slick-slider .slick-prev:hover:before,
.slick-testimonials.slick-slider .slick-next:hover:before {
color: #212121;
}
.slick-testimonials.slick-slider.inverse .slick-prev:before,
.slick-testimonials.slick-slider.inverse .slick-next:before {
color: #f4f4f4;
}
.slick-testimonials.slick-slider.inverse .slick-prev:hover:before,
.slick-testimonials.slick-slider.inverse .slick-next:hover:before {
color: #f4f4f4;
}
.slick-testimonials .slide-holder {
width: auto;
padding-top: 45px;
margin: 0 auto;
max-width: 820px;
text-align: center;
}
.slick-testimonials .slide .img-holder {
width: 120px;
height: 120px;
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
margin: 0 auto;
margin-bottom: 30px;
margin-top: 30px;
border: 0;
background-color: #ffffff;
}
.slick-testimonials .slide .info-holder {
text-align: center;
}
.slick-testimonials .slide .info-holder h3,
.slick-testimonials .slide .info-holder h5 {
color: #212121;
}
.slick-testimonials.inverse .slide .info-holder h3,
.slick-testimonials.inverse .slide .info-holder h5 {
color: #f4f4f4;
}
.slick-testimonials .slide .info-holder h4 {
color: #212121;
margin-bottom: 18px;
}
.slick-testimonials .slide .info-holder p {
color: #212121;
/*font-weight: 500;*/
}
.slick-testimonials.inverse .slide .info-holder h4,
.slick-testimonials.inverse .slide .info-holder p {
color: #ffffff;
}
.slick-testimonials .slide {
transition: all 0.4s ease;
}
.slick-testimonials .slick-dots {
text-align: center;
margin-top: 20px;
}
.slick-testimonials .slick-dots li {
display: inline-block;
/*font-size: 0px;*/
margin: 0 10px;
}
.slick-testimonials .slick-dots li button {
border: 0;
height: 16px;
width: 16px;
-webkit-border-radius: 14px;
-moz-border-radius: 14px;
border-radius: 14px;
background: #ffffff;
}
.slick-testimonials.inverse .slick-dots li button {
border: 0;
}
.slick-testimonials .slick-dots li.slick-active button {
background: #0044de;
}
.slick-testimonials .slick-dots li button:before {
display: none;
}
@media screen and (max-width: 1199px) {
.slick-testimonials .slide.slick-center {
margin-top: 0px;
}
.slick-testimonials .slick-dots {
margin-top: 30px;
}
}
.slick-testimonials .slick-arrow {
position: absolute;
top: 45%;
z-index: 4;
/*font-size: 0;*/
border: 0;
background: none;
}
.slick-testimonials .slick-arrow:before {
/*font-family: FontAwesome;*/
color: #f4f4f4;
display: block;
/*font-size: 20px;*/
}
.slick-testimonials .slick-next {
right: 5%;
}
.slick-testimonials .slick-next:before {
content: '\f054';
}
.slick-testimonials .slick-prev {
left: 5%;
}
.slick-testimonials .slick-prev:before {
content: '\f053';
}
/* Slick slider - Testimonials 2 */
.slick-testimonials-2.slick-slider {
padding-bottom: 30px;
}
.slick-testimonials-2 .slide-holder {
width: 100%;
margin: 0 auto;
}
.slick-testimonials-2 .slide .img-holder {
width: 105px;
height: 105px;
background-size: cover;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
margin: 0 auto;
}
.slick-testimonials-2 .slide .info-holder {
width: 100%;
padding: 30px 0px 30px 0px;
text-align: center;
}
.slick-testimonials-2 .slide .info-holder h3 {
/*font-size: 30px;*/
color: #ffffff;
/*font-weight: bold;*/
margin-bottom: 8px;
}
.slick-testimonials-2 .slide .info-holder h4 {
/*font-size: 14px;*/
color: #ffffff;
/*font-weight: bold;*/
margin-bottom: 38px;
}
.slick-testimonials-2 .slide .info-holder p {
/*font-size: 16px;*/
color: #ffffff;
}
.slick-testimonials-2 .slide {
transition: all 0.4s ease;
}
.slick-testimonials-2 .slick-dots {
text-align: center;
}
.slick-testimonials-2 .slick-dots li button:before {
display: none;
}
.slick-testimonials-2 .slick-dots li {
display: inline;
/*font-size: 0px;*/
margin: 0 5px;
}
.slick-testimonials-2 .slick-dots li button {
border: 0;
height: 14px;
width: 14px;
-webkit-border-radius: 14px;
-moz-border-radius: 14px;
border-radius: 14px;
background: transparent;
border: 1px solid #ffffff;
}
.slick-testimonials-2 .slick-dots li.slick-active button {
background: #ffffff;
border: 1px solid #ffffff;
}
@media screen and (max-width: 1199px) {
.slick-testimonials-2 .slide.slick-center {
margin-top: 0px;
}
.slick-testimonials-2 .slick-dots {
margin-top: 30px;
}
}
.slick-testimonials-2 .slick-arrow {
position: absolute;
top: 45%;
z-index: 4;
/*font-size: 0;*/
border: 0;
background: none;
display: none !important;
}
.slick-testimonials-2:hover .slick-arrow {
display: block !important;
}
.slick-testimonials-2 .slick-arrow:before {
/*font-family: FontAwesome;*/
color: #ffffff;
display: block;
/*font-size: 20px;*/
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
}
.slick-testimonials-2 .slick-next {
right: 5%;
}
.slick-testimonials-2 .slick-next:before {
content: '\f054';
}
.slick-testimonials-2 .slick-prev {
left: 5%;
}
.slick-testimonials-2 .slick-prev:before {
content: '\f053';
}
/* Slick slider 3 - Testimonials */
.slick-testimonials-3 .slick-track {
display: flex;
}
.slick-testimonials-3 .slick-track .slick-slide {
display: flex;
height: auto;
}
.slick-testimonials-3 .slick-list {
max-width: calc(100% - 100px);
margin: 0 auto;
}
.slick-testimonials-3 .slick-prev:before,
.slick-testimonials-3 .slick-next:before {
color: #212121;
/*font-size: 30px;*/
padding: 5px;
opacity: 1;
}
.slick-testimonials-3 .slick-prev:hover:before,
.slick-testimonials-3 .slick-next:hover:before {
color: #212121;
}
.slick-testimonials-3 .slide-holder {
width: auto;
margin: 0 auto;
max-width: 820px;
text-align: center;
padding: 25px;
}
.slick-testimonials-3 .img-holder {
width: 60px;
height: 60px;
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
margin: 0;
border: 0;
background-color: #ffffff;
}
.slick-testimonials-3 .slide .info-holder {
text-align: left;
}
.slick-testimonials-3 .slide .info-holder p {
color: #212121;
/*font-size: 16px;*/
}
.slick-testimonials-3 .slide {
transition: all 0.4s ease;
}
.slick-testimonials-3 .slick-dots {
text-align: center;
margin-top: 20px;
}
.slick-testimonials-3 .slick-dots li {
display: inline-block;
/*font-size: 0px;*/
margin: 0 10px;
}
.slick-testimonials-3 .slick-dots li button {
border: 0;
height: 16px;
width: 16px;
-webkit-border-radius: 14px;
-moz-border-radius: 14px;
border-radius: 14px;
background: #ffffff;
}
.slick-testimonials-3 .inverse .slick-dots li button {
border: 0;
}
.slick-testimonials-3 .slick-dots li.slick-active button {
background: #0044de;
}
.slick-testimonials-3 .slick-dots li button:before {
display: none;
}
@media screen and (max-width: 1199px) {
.slick-testimonials-3 .slide.slick-center {
margin-top: 0px;
}
.slick-testimonials-3 .slick-dots {
margin-top: 30px;
}
}
.slick-testimonials-3 .slick-arrow {
position: absolute;
top: 45%;
z-index: 4;
/*font-size: 0;*/
border: 0;
background: #fff;
-webkit-box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
width: 45px;
height: 45px;
border-radius: 100%;
}
.slick-testimonials-3 .slick-arrow:before {
/*font-family: FontAwesome;*/
color: #212121;
display: block;
/*font-size: 20px;*/
}
.slick-testimonials-3 .slick-next {
right: 0%;
}
.slick-testimonials-3 .slick-next:before {
content: '\f054';
}
.slick-testimonials-3 .slick-prev {
left: 0%;
}
.slick-testimonials-3 .slick-prev:before {
content: '\f053';
}
/* Slick brands */
.slick-brands .slide {
text-align: center;
}
.slick-brands .slide img {
max-width: 80%;
margin: 0 auto;
}
/* Paging */
.pagination > li {
margin: 5px 3px;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
/*font-weight: bold;*/
color: #f4f4f4 !important;
background-color: #0044de !important;
border: 0 !important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.pagination > li > a,
.pagination > li > span {
color: #212121 !important;
background-color: #ffffff !important;
border: 0 !important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
color: #212121 !important;
background-color: #f3f3f3 !important;
border: 0 !important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
color: #f4f4f4 !important;
background-color: #0044de !important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
/* lists */
.styled-lists li {
color: #212121;
padding: 0 30px;
margin-bottom: 55px;
}
@media screen and (max-width: 1199px) {
.styled-lists li {
margin-bottom: 45px;
}
}
@media screen and (max-width: 991px) {
.styled-lists li {
margin-bottom: 35px;
}
}
@media screen and (max-width: 767px) {
.styled-lists li {
margin-bottom: 25px;
}
}
.styled-lists li:before {
content: '\f192';
display: block;
/*font-family: 'FontAwesome';*/
position: absolute;
margin: 3px 0 0 -22px;
color: #212121;
}
.styled-lists li strong {
/*font-size: 20px;*/
/*font-weight: bold;*/
}
.styled-lists li p {
/*font-size: 16px;*/
}
/* Blog posts */
.blog-posts .slick-arrow {
display: none;
}
.blog-posts .post {
margin-bottom: 30px !important;
}
.blog-posts .post .description {
min-height: 260px;
text-align: left;
}
.blog-posts .post .description h3 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.blog-posts .post .date {
/*font-size: 16px;*/
}
.blog-posts .post .description p {
display: -webkit-box;
-webkit-line-clamp: 5;
-webkit-box-orient: vertical;
overflow: hidden;
}
.blog-posts .post .description .cats {
color: #bfbfbf;
/*font-size: 14px;*/
margin: 5px 0 5px 0;
text-decoration: none;
text-align: center;
}
.blog-posts .slick-dots {
text-align: left;
padding: 0 10px;
}
/* Blog posts 2 */
.blog-posts-2 .post {
display: block;
text-decoration: none;
margin: 0 auto;
position: relative;
height: 100%;
}
.blog-posts-2 .description h5 {
color: #212121;
/*font-weight: 600;*/
/*font-size: 14px;*/
margin: 10px 0 10px 0;
text-decoration: none;
text-align: left;
}
.blog-posts-2 a,
.blog-posts-2 a:hover {
text-decoration: none;
}
.blog-posts-2 .description {
padding: 15px 0;
}
.blog-posts-2 .description,
.blog-posts-2 .description p {
color: #bfbfbf;
/*font-size: 12px;*/
/*line-height: 1.7;*/
}
.blog-posts-2 .post .image {
width: 90px;
height: 90px;
min-width: 90px;
background-position: center center;
-webkit-background-size: 100%;
background-size: 100%;
background-repeat: no-repeat;
position: relative;
transition: all 0.3s ease-in-out;
-webkit-background-size: cover;
background-size: cover;
overflow: hidden;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
float: left;
margin-right: 20px;
}
/* Teamcard */
.teamcard .member {
margin-bottom: 25px;
}
.teamcard .description h3 {
color: #212121;
/*font-size: 24px;*/
margin: 10px 0 5px 0;
text-align: center;
/*font-weight: bold;*/
}
.teamcard .description {
padding: 15px;
text-align: center;
}
.teamcard .description,
.teamcard .description p {
color: #212121;
/*font-size: 18px;*/
/*line-height: 1.5;*/
}
.teamcard .member .image {
height: 240px;
width: 240px;
margin: 0 auto;
background-position: center center;
-webkit-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
/* Teamcard 2 */
.teamcard-2 .member {
max-width: 240px;
margin: 0 auto;
margin-bottom: 25px;
}
.teamcard-2 .description h3 {
color: #212121;
/*font-size: 18px;*/
/*line-height: 1.4;*/
margin: 10px 0 5px 0;
text-align: left;
/*font-weight: bold;*/
}
.teamcard-2 .description {
text-align: left;
}
.teamcard-2 .description span {
/*font-size: 12px;*/
display: block;
color: #bfbfbf;
}
.teamcard-2 .description,
.teamcard-2 .description p {
color: #212121;
/*font-size: 16px;*/
/*line-height: 1.4;*/
}
.teamcard-2 .member .image {
height: 290px;
margin: 0 auto;
background-position: center center;
-webkit-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
}
.teamcard-2 .member .image .hover {
visibility: hidden;
display: inline-block;
position: relative;
bottom: 0;
top: 0;
left: 0;
right: 0;
height: 100%;
width: 100%;
opacity: 0;
transition: opacity 0.25s ease-in-out;
-moz-transition: opacity 0.25s ease-in-out;
-webkit-transition: opacity 0.25s ease-in-out;
}
.teamcard-2 .member:hover .image .hover {
visibility: visible;
background-color: rgba(33, 33, 33, 0.8);
color: #ffffff;
opacity: 1;
}
.teamcard-2 .member .image .hover .socials {
padding-top: 110px;
text-align: center;
}
.teamcard-2 .member .image .hover ul.socials li {
display: inline-block;
color: #212121;
margin: 0 5px;
width: auto;
}
.teamcard-2 .member .image .hover ul.socials li a {
display: block;
color: #212121;
text-decoration: none;
background: rgba(61, 0, 180, 0.03);
height: 40px;
width: 40px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
/*font-size: 26px;*/
padding: 2px 0;
text-align: center;
position: relative;
}
.teamcard-2 .member .image .hover ul.socials li a:hover {
background: #212121;
color: #212121;
text-decoration: none;
}
/* Teamcard */
.masonry-team .teamcard .member {
min-height: 250px;
padding: 25px 10px 15px 10px;
height: 100%;
display: flex;
flex-flow: column;
margin: 0;
}
.masonry-team .teamcard .member .description h3 {
color: #212121;
/*font-size: 24px;*/
margin: 10px 0 5px 0;
text-align: center;
/*font-weight: bold;*/
}
.masonry-team .teamcard .member .description {
padding: 15px;
text-align: center;
}
.masonry-team .teamcard .member .description,
.masonry-team .teamcard .member .description p {
color: #212121;
/*font-size: 16px;*/
/*line-height: 1.5;*/
}
.masonry-team .teamcard .member .image {
height: 85px;
width: 85px;
margin: 0 auto;
background-position: center center;
-webkit-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
.masonry-team .teamcard .member .socials-holder {
position: absolute;
bottom: 20px;
left: 0;
right: 0;
}
.masonry-team .teamcard .member ul.socials {
text-align: center;
margin: 0;
}
.masonry-team .teamcard .member ul.socials li {
margin: 0;
}
.masonry-team .teamcard .member ul.socials li a {
background: transparent;
color: #212121;
/*font-size: 22px;*/
}
.masonry-team .teamcard .member ul.socials li a:hover {
background: transparent;
color: #0044de;
}
.masonry-team .masonry-grid-works {
margin: 0 -10px;
}
.masonry-team .masonry-grid-works_fullwidth {
margin: 0;
}
.masonry-team .masonry-grid-works__sizer_w-50 {
width: 50%;
}
.masonry-team .masonry-grid-works__sizer_w-33 {
width: -webkit-calc(100% / 3);
width: calc(100% / 3);
}
.masonry-team .masonry-grid-works__sizer_w-25 {
width: -webkit-calc(100% / 4);
width: calc(100% / 4);
}
.masonry-team .masonry-grid-works__item {
padding: 15px;
}
.masonry-team .masonry-grid-works__item_w-50 {
width: 50%;
}
.masonry-team .masonry-grid-works__item_w-33 {
width: -webkit-calc(100% / 3);
width: calc(100% / 3);
}
.masonry-team .masonry-grid-works__item_w-25 {
width: -webkit-calc(100% / 4);
width: calc(100% / 4);
}
.masonry-team .list-masonry-grid-works-filter {
display: block;
text-align: center;
}
.masonry-team .list-masonry-grid-works-filter__item {
display: inline-block;
padding: 0;
margin: 0;
}
.masonry-team .list-masonry-grid-works-filter__link_active .list-masonry-grid-works-filter__link-lines {
opacity: 1;
visibility: visible;
}
.masonry-team .list-masonry-grid-works-filter__link-lines {
display: inline-block;
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
opacity: 0;
visibility: hidden;
}
.masonry-team .list-masonry-grid-works-filter__link-lines:before,
.masonry-team .list-masonry-grid-works-filter__link-lines:after {
content: '';
display: block;
background-color: #212121;
position: absolute;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_top:before {
width: 1px;
height: 38px;
bottom: -9px;
left: 2px;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_top:after {
width: 1px;
height: 30px;
bottom: -9px;
left: 0px;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_bottom:before {
width: 1px;
height: 38px;
top: -9px;
right: 2px;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_bottom:after {
width: 1px;
height: 30px;
top: -9px;
right: 0px;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_left:before {
width: 60px;
height: 1px;
bottom: 2px;
left: -9px;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_left:after {
width: 50px;
height: 1px;
bottom: 0px;
left: -9px;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_right:before {
width: 60px;
height: 1px;
top: 2px;
right: -9px;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_right:after {
width: 50px;
height: 1px;
top: 0px;
right: -9px;
}
@media only screen and (max-width: 991px) {
.masonry-team .masonry-grid-works__sizer_w-33,
.masonry-team .masonry-grid-works__item_w-33 {
width: 50%;
}
.masonry-team .masonry-grid-works__sizer_w-25,
.masonry-team .masonry-grid-works__item_w-25 {
width: 33.3%;
}
}
@media only screen and (max-width: 767px) {
.masonry-team .masonry-grid-works__sizer_w-50,
.masonry-team .masonry-grid-works__item_w-50 {
width: 100%;
}
}
@media only screen and (max-width: 480px) {
.masonry-team .masonry-grid-works__sizer_w-33,
.masonry-team .masonry-grid-works__item_w-33 {
width: 100%;
}
.masonry-team .masonry-grid-works__sizer_w-25,
.masonry-team .masonry-grid-works__item_w-25 {
width: 100%;
}
}
/* Shop products */
.shop-products .product {
margin-bottom: 40px;
/*
.image:hover .hover {
visibility: visible;
opacity: 1;
}
*/
}
.shop-products .product h3 {
text-decoration: none;
text-align: left;
min-height: 45px;
}
.shop-products .product .price-holder {
display: flex;
justify-content: left;
align-items: center;
}
.shop-products .product a,
.shop-products .product a:hover {
text-decoration: none;
}
.shop-products .product .image {
padding: 15px;
position: relative;
background-origin: content-box;
height: 360px;
width: 100%;
background-position: center center;
-webkit-background-size: contain;
background-size: contain;
background-repeat: no-repeat;
border: 1px solid #f3f3f3;
}
.shop-products .product:hover .image {
border: 1px solid #0044de;
-webkit-box-shadow: 0 0 10px rgba(0, 68, 222, 0.4);
box-shadow: 0 0 10px rgba(0, 68, 222, 0.4);
}
.shop-products .product:hover .image .hover {
width: 100%;
text-align: center;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(33, 33, 33, 0.15);
visibility: hidden;
opacity: 0;
transition: all .3s;
}
.shop-products .product .hover .btn {
padding: 10px;
text-align: center;
margin: 0 5px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
transform: translateY(-20px);
transition: all .3s;
}
.shop-products .product .hover .btn + .btn {
transform: translateY(20px);
}
.shop-products .product .btn.btn-primary {
background: transparent;
border-color: transparent;
color: #212121;
/*font-weight: bold;*/
}
.shop-products .product:hover .btn.btn-primary {
background: #0044de;
border-color: #0044de;
color: #f4f4f4;
}
.shop-products .product .image:hover .hover .btn {
transform: translateY(0);
}
.shop-products .product .hover .btn i {
margin: 0;
}
.shop-products .product .hover > * {
top: 45%;
position: relative;
}
.shop-products .product .heading-holder {
min-height: 50px;
}
.shop-products .product .heading-holder h5 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.shop-products .product .btn {
padding: 5px 10px;
}
.shop-products .product .btn i {
float: left;
margin-right: 5px;
/*font-size: 18px;*/
margin-top: 2px;
}
.shop-products .product .price,
.shop-products .product .price-old {
/*font-size: 16px;*/
/*font-weight: bold;*/
}
.shop-products .product .price {
color: #0044de;
}
.shop-products .product .price-old {
text-decoration: line-through;
color: #b9b9b9;
margin-right: 10px;
}
.shop-products .product .product-label {
min-width: 60px;
position: absolute;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background: #0044de;
color: #ffffff;
/*font-size: 12px;*/
text-transform: uppercase;
text-align: center;
letter-spacing: 2px;
right: 35px;
top: 20px;
/*font-weight: bold;*/
z-index: 1;
padding: 6px 10px;
}
.related-products .product .image {
height: 250px;
}
/* Pricing list */
.pricing-list > div {
max-width: 290px;
margin-bottom: 30px;
}
.pricing-list .btn {
min-width: unset;
}
.pricing-list .plan {
max-width: 290px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
-moz-box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
height: 100%;
margin: 0 auto 0px auto;
}
.pricing-list .plan .label {
/*font-size: 12px;*/
text-align: center;
min-height: 26px;
width: 100%;
display: block;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
padding: 7px;
}
.pricing-list .plan .label.bestseller {
background: #0044de;
color: #f4f4f4;
}
.pricing-list .plan .heading {
/*font-size: 16px;*/
text-align: center;
padding: 20px 10px 20px 10px;
}
.pricing-list .plan .heading .price {
position: relative;
margin-top: 10px;
}
.pricing-list .plan .heading .price .sum {
/*font-size: 75px;*/
/*font-weight: bold;*/
margin: 0 0px;
color: #212121;
}
.pricing-list .plan .heading .price small {
/*font-size: 16px;*/
/*font-weight: bold;*/
color: #212121;
}
.pricing-list .plan .heading .price .period {
/*font-size: 14px;*/
/*line-height: 14px;*/
/*font-weight: normal;*/
position: relative;
display: block;
margin-top: 20px;
color: #212121;
}
.pricing-list .plan .heading .price .period:after {
margin: 10px auto 0 auto;
display: block;
content: '';
width: 100%;
max-width: 75px;
height: 4px;
background-color: #0044de;
-webkit-mask-image: url('../img/hr.svg');
mask-image: url('../img/hr.svg');
-webkit-mask-repeat: repeat-x;
mask-repeat: repeat-x;
-webkit-mask-size: contain;
mask-size: contain;
}
.pricing-list .plan .heading p {
/*font-size: 16px;*/
color: #0044de;
/*font-weight: 600;*/
}
.pricing-list .plan .description {
text-align: center;
padding: 0 15px 45px 15px;
}
.pricing-list .plan .description p {
/*font-size: 16px;*/
text-align: center;
}
.pricing-list .plan .description p.strikethrough {
text-decoration: line-through;
color: #868686;
}
.pricing-list .plan:hover {
background: #0044de;
cursor: pointer;
}
.pricing-list .plan:hover .price .sum,
.pricing-list .plan:hover .price small,
.pricing-list .plan:hover .price .period,
.pricing-list .plan:hover p,
.pricing-list .plan:hover span {
color: #f4f4f4;
}
.pricing-list .plan:hover .price .period:after {
background-color: #ffffff;
}
/* *******************************************
************** Footer ********************* *
******************************************* */
footer {
background: #212121;
}
footer .logo {
margin-bottom: 30px;
}
footer .logo img {
max-width: 100px;
}
footer ul li {
color: #f3f3f3;
display: inline-block;
width: auto;
margin: 0 10px 0 0;
}
footer a {
color: #f4f4f4;
text-decoration: none;
}
footer a:hover {
color: #ffffff;
text-decoration: none;
}
footer ul li a {
display: block;
color: #f4f4f4;
text-decoration: none;
padding: 0px 0;
}
footer ul li a:hover {
color: #ffffff;
text-decoration: none;
}
footer,
footer p {
/*font-size: 14px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.71;*/
letter-spacing: normal;
color: #979aa6;
}
footer a,
footer p a {
/*font-size: 16px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.75;*/
letter-spacing: normal;
color: #f4f4f4;
}
footer a.underlined,
footer p a.underlined {
display: inline-block;
}
footer a.underlined:after,
footer p a.underlined:after {
content: '';
display: block;
border-bottom: 2px solid #979aa6;
}
footer .copyright {
margin-top: 30px;
}
footer .copyright ul {
/*line-height: 1;*/
}
footer .copyright ul li {
display: inline-block;
width: auto;
}
footer .copyright ul li a:after {
content: '|';
margin: 0 2px 0 3px;
}
footer .copyright a {
/*font-size: 12px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.71;*/
letter-spacing: normal;
color: #979aa6;
text-decoration: none;
}
footer .copyright li:last-of-type a:after {
content: '';
margin: 0 2px 0 3px;
}
footer .copyright p {
/*font-size: 12px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.71;*/
letter-spacing: normal;
color: #979aa6;
}
footer h4 {
color: #f4f4f4;
display: block;
margin-bottom: 10px;
text-transform: none;
}
footer .newsletter-holder {
/*font-size: 36px;*/
/*font-weight: 600;*/
color: #f3f3f3;
}
footer ul.socials {
margin-top: 20px;
display: block;
width: 100%;
}
footer ul.socials li {
margin: 0 10px;
width: auto;
display: inline-block !important;
border: 0 !important;
}
footer ul.socials li a {
display: block;
text-decoration: none;
height: 40px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
text-align: center;
position: relative;
padding: 0 !important;
/*font-size: 20px !important;*/
background: transparent !important;
width: auto;
color: #f4f4f4;
}
footer ul.socials li a:hover {
text-decoration: none;
color: rgba(244, 244, 244, 0.5);
}
@media screen and (max-width: 991px) {
footer {
text-align: left;
}
footer .container > .edit > .row > div {
margin-bottom: 60px;
}
footer .logo-column,
footer .logo-column p {
text-align: center !important;
}
footer .newsletter-form {
max-width: 250px;
margin: 0 -15px 0 -15px;
}
}
@media screen and (max-width: 575px) {
footer {
text-align: center;
}
footer .container > .edit > .row > div {
margin-bottom: 60px;
}
footer ul li a {
padding: 7px 0;
}
footer .newsletter-form {
max-width: 250px;
margin: 0 auto;
}
footer ul.socials li a {
/*font-size: 46px !important;*/
}
}
/* Newsletter */
.newsletter-holder {
background: #292832;
width: 420px;
max-width: 100%;
height: 55px;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
padding: 5px;
}
.newsletter-holder input {
border: 0;
background: transparent;
float: left;
width: 65%;
padding: 0 20px;
height: 100%;
/*font-size: 16px;*/
}
.newsletter-holder button {
float: left;
width: 35%;
background: #212121;
color: #ffffff;
/*font-size: 16px;*/
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
border: 0;
padding: 11px;
}
.newsletter-holder button:hover {
background-color: #ffffff;
color: #212121;
}
.section-silver {
background: #f3f3f3;
}
.section-dark {
background: #0044de;
}
/* *******************************************
************** Section ************** *
******************************************* */
.section {
min-height: 100px;
padding: 30px 0;
}
/* *******************************************
************** Section 2 ************** *
******************************************* */
.section-2 {
padding: 30px 0 0 0;
}
.section-2 .background-image-holder {
min-height: 50vh;
height: 750px;
max-height: 100vh;
}
.section-2.vh-80 .background-image-holder {
min-height: 80vh;
height: 80vh;
}
.section-2 h1,
.section-2 h2,
.section-2 h3,
.section-2 h4,
.section-2 h5,
.section-2 h6,
.section-2 p,
.section-2 p.lead {
color: #ffffff;
}
.section-2 .container {
z-index: 9;
}
.section-2 .socials-holder {
z-index: 9;
right: 0;
height: 100%;
text-align: right;
color: #ffffff;
display: flex;
flex-flow: column;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}
.section-2 .socials-holder ul li {
display: block;
}
.section-2 .socials-holder ul li a {
color: #ffffff;
/*font-size: 24px;*/
margin: 35px 40px 35px 0;
}
@media screen and (max-width: 991px) {
.section-2 .socials-holder {
display: none;
}
}
/* *******************************************
************** Section 3 ************** *
******************************************* */
.section-3 {
padding: 30px 0 0 0;
}
.section-3 .background-image-holder {
min-height: 20vh;
height: 350px;
max-height: 50vh;
}
.section-3.vh-100 .background-image-holder {
min-height: 100vh;
}
.section-3 h1,
.section-3 h2,
.section-3 h3,
.section-3 h4,
.section-3 h5,
.section-3 h6,
.section-3 p,
.section-3 p.lead {
color: #ffffff;
}
.section-3 .container {
z-index: 9;
}
.section-3 .socials-holder {
z-index: 9;
right: 0;
height: 100%;
text-align: right;
color: #ffffff;
display: flex;
flex-flow: column;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}
.section-3 .socials-holder ul li {
display: block;
}
.section-3 .socials-holder ul li a {
color: #ffffff;
/*font-size: 24px;*/
margin: 35px 40px 35px 0;
}
@media screen and (max-width: 991px) {
.section-3 .socials-holder {
display: none;
}
}
/* *******************************************
************** Section 4 ************** *
******************************************* */
.section-4 .bg-secondary {
background-clip: content-box !important;
}
.section-4 * {
color: #f4f4f4;
}
@media screen and (max-width: 575px) {
.section-4 .h-100 {
height: auto;
}
.section-4 .module-btn {
bottom: 0;
position: absolute;
}
}
.section-4 .info-holder {
padding: 40px 30px;
}
@media screen and (max-width: 575px) {
.section-4 .info-holder {
height: 370px;
}
}
/* *******************************************
************** Section 5 ************** *
******************************************* */
.section-5 .picrow {
margin-bottom: 10px;
}
.section-5 .photo-container {
position: relative;
}
.section-5 .photo-container .image-thumb {
padding: 0px 5px !important;
width: calc(100% - 10px);
background: transparent;
}
/* *******************************************
************** Section 6 ************** *
******************************************* */
.section-6 {
padding: 30px 0;
/* h1,h2,h3,h4,h5,h6,p{
color: @default;
}*/
}
.section-6 .mwembed {
height: auto !important;
width: auto !important;
}
@media screen and (max-width: 1199px) {
.section-6 .info-holder {
margin-bottom: 30px;
text-align: center;
}
}
.section-6 .div-table-cell {
position: relative;
}
.section-6 .div-table-cell .button-holder {
position: absolute;
width: 100%;
height: 100%;
justify-content: center;
display: flex;
align-items: center;
}
/* *******************************************
************** Section 7 ************** *
******************************************* */
.section-7 .card {
height: 100%;
background: #ffffff;
border: 0;
padding: 40px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.section-7 .card .stamp {
margin-left: 0;
margin-bottom: 30px;
color: #f4f4f4;
/*font-size: 35px;*/
}
.section-7 .card .stamp i {
color: #212121;
}
@media screen and (max-width: 767px) {
.section-7 .card .stamp {
/*font-size: 30px;*/
width: 80px;
height: 60px;
padding: 0;
margin-bottom: 0;
}
}
.section-7 .card.dark {
background: #212121;
}
.section-7 .card.dark h1,
.section-7 .card.dark h2,
.section-7 .card.dark h3,
.section-7 .card.dark h4,
.section-7 .card.dark p {
color: #f4f4f4;
}
.section-7 .card.dark i {
color: #f4f4f4;
}
.section-7 .card:hover {
background: #0044de;
}
.section-7 .card:hover h1,
.section-7 .card:hover h2,
.section-7 .card:hover h3,
.section-7 .card:hover h4,
.section-7 .card:hover p {
color: #f4f4f4;
}
.section-7 .card:hover i {
color: #f4f4f4;
}
/* *******************************************
************** Section 8 ************** *
******************************************* */
.section-8 {
position: relative;
z-index: 9;
}
.section-8 .icon-holder {
margin-top: 50px;
margin-bottom: 50px;
}
.section-8 .icon-holder .mw-icon,
.section-8 .icon-holder .icon {
margin-bottom: 35px;
/*font-size: 65px;*/
color: #0044de;
display: block;
}
/* *******************************************
************** Section 9 ************** *
******************************************* */
.section-9 {
padding: 0;
z-index: -1;
}
.section-9 .background-image-holder {
position: relative;
height: 575px;
max-height: 100vh;
/*&:before {
content: '';
display: block;
position: absolute;
width: 100%;
left: 0;
right: 0;
top: 0;
height: 300px;
background: rgba(255, 255, 255, 1);
background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0.72) 29%, rgba(255, 255, 255, 0) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(1%, rgba(255, 255, 255, 1)), color-stop(29%, rgba(255, 255, 255, 0.72)), color-stop(100%, rgba(255, 255, 255, 0)));
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0.72) 29%, rgba(255, 255, 255, 0) 100%);
background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0.72) 29%, rgba(255, 255, 255, 0) 100%);
background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0.72) 29%, rgba(255, 255, 255, 0) 100%);
background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0.72) 29%, rgba(255, 255, 255, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
}*/
}
.section-9 .container {
padding: 160px 0 320px 0;
}
@media screen and (max-width: 1199px) {
.section-9 .container {
padding: 120px 0 240px 0;
}
}
@media screen and (max-width: 991px) {
.section-9 .container {
padding: 120px 0 240px 0;
}
}
@media screen and (max-width: 575px) {
.section-9 .container {
padding: 80px 0 160px 0;
}
}
.section-9 .blockquote-holder {
max-width: 680px;
padding-bottom: 400px;
}
@media screen and (min-width: 1441px) {
.section-9 .blockquote-holder {
padding-bottom: 600px;
}
}
.mw-live-edit .section-9 {
margin-top: 0px;
}
.section-9.no-gradient {
margin-top: 0px;
}
.section-9.no-gradient .background-image-holder {
min-height: 70vh;
}
.section-9.no-gradient .background-image-holder:before {
display: none;
}
/* *******************************************
************** Section 10 ************** *
******************************************* */
.section-10 .mwembed {
height: auto !important;
}
.section-10 .new-world-testimonials-2 .info-holder {
text-align: left !important;
}
@media screen and (min-width: 992px) {
.section-10 .video-left .video-holder {
padding-right: 4.15%;
}
}
@media screen and (max-width: 991px) {
.section-10 .video-right .left-side {
order: 1 !important;
}
.section-10 .video-right .right-side {
order: 2 !important;
}
}
@media screen and (min-width: 992px) {
.section-10 .video-right .video-holder {
padding-left: 4.15%;
}
}
/* *******************************************
************** Section 11 ************** *
******************************************* */
.section-11 i.fab {
/*font-size: 36px;*/
color: #0044de;
margin-bottom: 30px;
}
.section-11 .title-holder {
height: 250px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
/* *******************************************
************** Section 12 ************** *
******************************************* */
.section-12 {
position: relative;
z-index: 9;
}
.section-12 .icon-holder {
margin: 50px auto;
}
.section-12 .icon-holder .mw-icon,
.section-12 .icon-holder .icon {
margin-bottom: 20px;
/*font-size: 55px;*/
color: #0044de;
display: block;
}
.section-12 h6 {
/*font-size: 36px;*/
color: #212121;
margin-bottom: 10px;
/*font-weight: 500;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
}
.section-12 p {
color: #212121;
}
.section-12 .button-holder:before {
opacity: 0;
}
@media screen and (min-width: 576px) and (max-width: 991px) {
.section-12 h6 {
/*font-size: 24px;*/
}
}
@media screen and (max-width: 767px) {
.section-12 .button-holder {
margin-top: 30px;
padding: 40px 0 50px 0;
}
.section-12 .button-holder:before {
opacity: 1;
}
.section-12 .icon-holder {
margin: 20px auto;
}
}
/* *******************************************
************** Section 13 ************** *
******************************************* */
.section-13 {
position: relative;
z-index: 9;
}
.section-13 .icon-holder {
margin: 50px auto;
}
.section-13 .icon-holder .icon,
.section-13 .icon-holder .mw-icon {
margin-bottom: 30px;
/*font-size: 55px;*/
color: #ffffff;
display: block;
}
.section-13 h6 {
/*font-size: 30px;*/
color: #ffffff;
margin-bottom: 5px;
/*font-weight: 500;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
}
.section-13 p {
color: #ffffff;
}
.section-13 .button-holder:before {
opacity: 0;
}
@media screen and (min-width: 576px) and (max-width: 991px) {
.section-13 h6 {
/*font-size: 24px;*/
}
}
@media screen and (max-width: 767px) {
.section-13 .button-holder {
margin-top: 30px;
padding: 40px 0 50px 0;
}
.section-13 .button-holder:before {
opacity: 1;
}
.section-13 .icon-holder {
margin: 20px auto;
}
}
/* *******************************************
************** Section 14 ************** *
******************************************* */
.section-14 .info {
float: left;
width: calc(100% - 50px);
}
.section-14 .mw-icon,
.section-14 .icon {
display: block;
float: left;
width: 50px;
margin-bottom: 20px;
}
.section-14 .mw-icon i,
.section-14 .icon i {
/*font-size: 38px;*/
color: #f4f4f4;
opacity: 0.5;
margin-top: 5px;
}
@media screen and (max-width: 575px) {
.section-14 .info,
.section-14 .icon {
float: none;
width: 100%;
}
}
/* *******************************************
************** Section 15 ************** *
******************************************* */
.section-15 {
min-height: 100px;
padding: 30px 0;
background-color: #212121;
}
.section-15 .container {
padding: 0 10%;
text-align: center;
}
@media screen and (max-width: 991px) {
.section-15 .slider-wrapper {
max-width: 100%;
}
}
/* *******************************************
************** Section 16 ************** *
******************************************* */
.section-16 {
min-height: 100px;
padding: 30px 0;
}
.section-16 .info-holder {
z-index: 9;
background: #ffffff;
padding: 50px 70px;
border: 1px solid rgba(33, 33, 33, 0.3);
}
.section-16 .flexbox-container {
justify-content: center;
}
.section-16 .left-side {
padding: 120px 60px;
min-height: 550px;
justify-content: center;
display: flex;
flex-direction: column;
}
.section-16 h1,
.section-16 h2,
.section-16 h3,
.section-16 h4,
.section-16 h5,
.section-16 h6 {
color: #212121;
}
.section-16 p,
.section-16 span {
/*font-size: 16px;*/
/*line-height: 1.5;*/
color: #212121;
}
.section-16 p {
margin-bottom: 10px;
}
.section-16 .img-holder {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
@media screen and (max-width: 991px) {
.section-16 .left-side {
min-height: auto;
padding: 10px;
}
.section-16 p {
text-align: center;
}
.section-16 .img-holder {
padding-top: 56.25%;
/* 16:9 Aspect Ratio */
}
.section-16 .flexbox-container {
flex-direction: column-reverse;
}
.section-16 .info-holder {
padding: 50px 20px;
}
}
/* *******************************************
************** Section 17 ************** *
******************************************* */
.section-17 {
min-height: 100px;
padding: 30px 0;
}
.section-17 .info-holder {
z-index: 9;
background: #ffffff;
padding: 50px 70px;
border: 1px solid rgba(33, 33, 33, 0.3);
}
.section-17 .flexbox-container {
justify-content: center;
}
.section-17 .right-side {
padding: 120px 60px;
min-height: 550px;
justify-content: center;
display: flex;
flex-direction: column;
}
.section-17 h1,
.section-17 h2,
.section-17 h3,
.section-17 h4,
.section-17 h5,
.section-17 h6 {
color: #212121;
}
.section-17 p,
.section-17 span {
/*font-size: 16px;*/
/*line-height: 1.5;*/
color: #212121;
}
.section-17 p {
margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
.section-17 .right-side {
min-height: auto;
padding: 10px;
}
.section-17 p {
text-align: center;
}
.section-17 .flexbox-container {
flex-direction: column;
}
}
.section-17 .img-holder {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
@media screen and (max-width: 991px) {
.section-17 .img-holder {
padding-top: 56.25%;
/* 16:9 Aspect Ratio */
}
.section-17 .info-holder {
padding: 50px 20px;
}
}
/* *******************************************
************** Section 18 ************** *
******************************************* */
.section-18 .padding-holder {
padding: 50px 30px;
max-height: calc(100vh - 100px);
}
@media screen and (min-width: 1200px) {
.section-18 .padding-holder {
min-height: 680px;
height: 100%;
}
}
@media screen and (max-width: 1199px) {
.section-18 .button-holder {
margin-top: 30px !important;
}
}
@media screen and (min-width: 1200px) {
.section-18 .background-image-holder .button-holder {
bottom: 50px;
position: absolute;
}
}
.section-18 .text-white h1,
.section-18 .text-white h2,
.section-18 .text-white h3,
.section-18 .text-white h4,
.section-18 .text-white h5,
.section-18 .text-white h6,
.section-18 .text-white p {
color: #ffffff !important;
}
/* *******************************************
************** Section 19 ************** *
******************************************* */
.section-19 {
padding: 30px 0 0 0;
}
.section-19 .background-image-holder {
min-height: 400px;
height: 30.25vw;
max-height: 90vh;
/*position: relative;
&:before {
position: absolute;
left: 0;
top: 0;
background: rgba(red(@default), green(@default), blue(@default), .3);
content: '';
width: 100%;
height: 100%;
z-index: 1;
}*/
}
.section-19 .background-image-holder > div {
z-index: 2;
}
@media screen and (max-width: 1440px) {
.section-19 .background-image-holder {
height: 56.25vw;
}
}
.section-19 .text-holder {
min-height: 400px;
}
.section-19 .info-holder {
padding-left: 50px;
padding-right: 50px;
}
.section-19 .info-holder h1,
.section-19 .info-holder h2,
.section-19 .info-holder h3,
.section-19 .info-holder h4,
.section-19 .info-holder h5,
.section-19 .info-holder h6,
.section-19 .info-holder p {
color: #ffffff !important;
}
.section-19 blockquote:before,
.section-19 blockquote,
.section-19 blockquote .testimonial .name {
color: #ffffff;
text-align: left;
}
.section-19 .socials-holder {
right: 0;
height: 100%;
text-align: right;
color: #ffffff;
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
}
.section-19 .socials-holder ul li {
display: block;
}
.section-19 .socials-holder ul li a {
color: #ffffff;
/*font-size: 24px;*/
margin: 35px 40px 35px 0;
}
@media screen and (min-width: 992px) {
.section-19 .stamp {
background: transparent !important;
width: auto;
height: auto;
max-width: 450px;
}
}
@media screen and (max-width: 991px) {
.section-19 .socials-holder {
display: none;
}
.section-19 .stamp {
padding: 35px;
position: absolute;
z-index: 999;
left: 0;
right: 0;
}
.section-19 .background-image-holder.cuted {
margin-bottom: 140px;
}
.section-19 .background-image-holder.cuted:after {
display: block;
width: 100%;
position: absolute;
content: '';
background: url('../img/divider.svg');
-webkit-background-size: cover;
background-size: cover;
height: 140px;
z-index: 9;
top: calc(100% - 140px);
-moz-transform: scale(-1, 1);
-webkit-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.section-19 blockquote:before,
.section-19 blockquote,
.section-19 blockquote .testimonial .name {
text-align: center;
}
.section-19 blockquote {
/*font-size: 16px;*/
}
.section-19 blockquote:before {
/*font-size: 18px;*/
}
.section-19 .align-self-end {
align-self: flex-start !important;
text-align: center;
}
.section-19 .info-holder {
padding-bottom: 10px;
margin: 50px auto 30px auto;
}
}
@media screen and (max-width: 767px) {
.section-19 blockquote:before {
margin: 5px auto;
}
.section-19 .stamp {
margin-top: 0;
width: 280px;
height: 280px;
background-repeat: no-repeat;
}
.section-19 .info-holder {
padding-bottom: 10px;
padding-left: 0;
padding-right: 0;
margin: 30px auto 10px;
}
}
/* *******************************************
************** Section 20 ************** *
******************************************* */
.section-20 {
position: relative;
z-index: 9;
}
.section-20 h3 {
/*font-size: 30px;*/
margin: 10px 0;
}
.section-20 .text-white h1,
.section-20 .text-white h2,
.section-20 .text-white h3,
.section-20 .text-white h4,
.section-20 .text-white h5,
.section-20 .text-white h6,
.section-20 .text-white p {
color: #ffffff !important;
}
.section-20 .background-image-holder {
-webkit-background-size: cover;
background-size: cover;
padding: 15px;
margin-bottom: 30px;
position: relative;
height: 100%;
}
.section-20 .background-image-holder:before {
position: absolute;
left: 0;
top: 0;
background: rgba(33, 33, 33, 0.5);
content: '';
width: 100%;
height: 100%;
z-index: 1;
}
.section-20 .icon-holder {
color: #ffffff;
margin-top: 10px;
margin-bottom: 20px;
}
.section-20 .icon-holder i,
.section-20 .icon-holder span {
/*font-size: 45px;*/
color: #ffffff;
display: block;
}
.section-20 .square {
position: relative;
width: 100%;
z-index: 2;
align-items: center;
justify-content: center;
display: flex;
height: 100%;
}
.section-20 .square .content {
position: relative;
width: 100%;
height: 100%;
flex-flow: column;
align-items: center;
justify-content: center;
display: flex;
}
.section-20 .square:after {
content: "";
display: block;
padding-bottom: 100%;
}
.section-20 .slick-dots {
text-align: center;
margin-top: 20px;
}
.section-20 .slick-dots li {
display: inline-block;
/*font-size: 0px;*/
margin: 0 5px;
}
.section-20 .slick-dots li button {
border: 0;
height: 11px;
width: 11px;
-webkit-border-radius: 14px;
-moz-border-radius: 14px;
border-radius: 14px;
background: #c2c2c2;
}
.section-20 .slick-dots li.slick-active button {
background: #212121;
height: 16px;
width: 16px;
}
.section-20 .slick-dots li button:before {
display: none;
}
@media screen and (max-width: 1199px) {
.section-20 .slide.slick-center {
margin-top: 0px;
}
.section-20 .slick-dots {
margin-top: 30px;
}
}
/* *******************************************
************** Section 21 ************** *
******************************************* */
.section-21 .twitter-holder {
padding: 30px;
background: #0044de;
}
/* *******************************************
************** Section 22 ************** *
******************************************* */
.section-22 .box {
margin-bottom: 30px;
padding: 25px 30px;
display: flex;
flex-flow: row;
align-items: center;
}
@media screen and (max-width: 575px) {
.section-22 .box {
justify-content: center;
flex-flow: column;
align-items: start;
}
}
.section-22 .box:hover {
cursor: pointer;
background: #0044de;
}
.section-22 .box:hover * {
color: #f4f4f4;
}
.section-22 .box:after {
content: '';
display: block;
clear: both;
}
.section-22 .box .icon-holder {
float: left;
/*font-size: 35px;*/
width: 60px;
text-align: left;
}
@media screen and (max-width: 575px) {
.section-22 .box .icon-holder {
margin-bottom: 10px;
}
}
.section-22 .box .text-holder {
float: left;
width: calc(100% - 60px);
}
.section-22 .box p {
/*font-size: 16px;*/
/*line-height: 1.35;*/
}
.section-22 ul.socials {
margin: 0;
}
.section-22 ul.socials li {
margin-left: 7px;
margin-right: 0;
}
.section-22 ul.socials li a {
background: transparent;
color: #212121;
/*font-size: 20px;*/
height: 29px;
width: 29px;
}
.section-22 .socials-holder {
right: 30px;
bottom: 47px;
position: absolute;
}
/* *******************************************
************** Section 23 ************** *
******************************************* */
.section-23 p {
/*font-size: 16px;*/
/*line-height: 1.5;*/
}
.section-23 .card {
height: 100%;
background: #ffffff;
border: 0;
padding: 30px 10px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
text-align: center;
}
.section-23 .card .stamp {
margin: 0 auto;
margin-bottom: 10px;
color: #f4f4f4;
/*font-size: 55px;*/
}
.section-23 .card .stamp i {
color: #0044de;
}
@media screen and (max-width: 767px) {
.section-23 .card .stamp {
/*font-size: 30px;*/
width: 80px;
height: 80px;
padding: 26px;
}
}
.section-23 .card.dark {
background: #212121;
}
.section-23 .card.dark h1,
.section-23 .card.dark h2,
.section-23 .card.dark h3,
.section-23 .card.dark h4,
.section-23 .card.dark p {
color: #f4f4f4;
}
.section-23 .card.dark i {
color: #f4f4f4;
}
.section-23 .card:hover {
background: #0044de;
}
.section-23 .card:hover h1,
.section-23 .card:hover h2,
.section-23 .card:hover h3,
.section-23 .card:hover h4,
.section-23 .card:hover p {
color: #f4f4f4;
}
.section-23 .card:hover i {
color: #f4f4f4;
}
/* *******************************************
************** Section 24 ************** *
******************************************* */
.section-24 {
position: relative;
z-index: 9;
}
.section-24 .background-image-holder {
-webkit-background-size: cover;
background-size: cover;
padding: 15px;
margin-bottom: 30px;
position: relative;
}
.section-24 .background-image-holder:before {
position: absolute;
left: 0;
top: 0;
background: rgba(0, 68, 222, 0.8);
content: '';
width: 100%;
height: 100%;
z-index: 1;
visibility: hidden;
}
.section-24 .icon-holder {
color: #f4f4f4;
margin-top: 10px;
margin-bottom: 20px;
}
.section-24 .icon-holder i,
.section-24 .icon-holder span {
/*font-size: 45px;*/
color: #f4f4f4;
display: block;
}
.section-24 .square {
position: relative;
width: 100%;
z-index: 2;
visibility: hidden;
}
.section-24 .square .content {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
}
.section-24 .square .content p {
/*font-size: 16px;*/
}
.section-24 .square:after {
content: "";
display: block;
padding-bottom: 100%;
}
.section-24 .background-image-holder:hover {
cursor: pointer;
}
.section-24 .background-image-holder:hover .square {
visibility: visible;
}
.section-24 .background-image-holder:hover:before {
visibility: visible;
}
.section-24 ul.socials {
margin: 0 0 20px 0;
}
.section-24 ul.socials li {
margin: 0 2px;
}
.section-24 ul.socials li a,
.section-24 ul.socials li a:hover {
background: transparent;
/*font-size: 24px;*/
}
.section-24 ul.socials li a:hover {
color: rgba(244, 244, 244, 0.5);
}
.section-24 .socials-holder {
position: absolute;
bottom: 0;
}
/* *******************************************
************** Section 25 ************** *
******************************************* */
.section-25 {
min-height: 100px;
padding: 30px 0;
}
.section-25 .img-holder {
padding: 0 70px;
position: relative;
min-height: 500px;
margin-bottom: 20px;
}
.section-25 .img-holder .image-1 {
width: 80%;
height: 80%;
position: absolute;
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
top: 0;
left: 0;
}
.section-25 .img-holder .image-2 {
width: 70%;
height: 70%;
position: absolute;
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
border: 15px solid #ffffff;
bottom: 0;
right: 0;
}
/* *******************************************
************** Section 26 ************** *
******************************************* */
.section-26 {
position: relative;
z-index: 9;
}
@media screen and (max-width: 576px) {
.section-26 .features-holder > div {
margin-top: 20px;
margin-bottom: 20px;
}
}
@media screen and (min-width: 576px) {
.section-26 .features-holder > div:nth-child(odd) {
margin-top: 40px;
}
}
.section-26 .icon-holder {
padding-top: 50px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
padding-bottom: 50px;
}
.section-26 .icon-holder .mw-icon,
.section-26 .icon-holder .icon {
margin-bottom: 15px;
/*font-size: 55px;*/
color: #0044de;
display: block;
}
.section-26 .icon-holder:hover {
background-color: #0044de;
}
.section-26 .icon-holder:hover * {
color: #f4f4f4;
}
.section-26 .icon-holder:hover .mw-icon,
.section-26 .icon-holder:hover .icon {
color: #f4f4f4;
}
/* *******************************************
************** Section 27 ************** *
******************************************* */
.section-27 {
padding: 30px 0 0 0;
}
@media screen and (min-width: 1440px) {
.section-27 h1 {
/*font-size: 100px;*/
}
.section-27 h2 {
/*font-size: 46px;*/
}
}
.section-27 .background-image-holder {
min-height: 50vh;
height: 750px;
max-height: 80vh;
}
.section-27.vh-80 .background-image-holder {
min-height: 80vh;
height: 80vh;
}
.section-27 h1,
.section-27 h2,
.section-27 h3,
.section-27 h4,
.section-27 h5,
.section-27 h6,
.section-27 p,
.section-27 p.lead {
color: #ffffff;
}
.section-27 .container {
z-index: 9;
}
.section-27 .socials-holder {
z-index: 9;
right: 0;
height: 100%;
text-align: right;
color: #ffffff;
display: flex;
flex-flow: column;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}
.section-27 .socials-holder ul li {
display: block;
}
.section-27 .socials-holder ul li a {
color: #ffffff;
/*font-size: 24px;*/
margin: 35px 40px 35px 0;
}
@media screen and (max-width: 991px) {
.section-27 .socials-holder {
display: none;
}
}
/* *******************************************
**************** Pages *************** *
******************************************* */
/* Page - Blog Inner */
.blog-inner-page .padding {
max-width: 780px;
}
.blog-inner-page ul.socials li a {
color: #212121;
background: transparent;
}
.blog-inner-page ul.socials li a:hover {
color: #212121;
background: #212121;
}
.blog-inner-page .heading h1 {
/*font-size: 46px;*/
color: #212121;
/*font-weight: 600;*/
}
@media screen and (max-width: 1199px) {
.blog-inner-page .heading h1 {
/*font-size: 36px;*/
}
}
@media screen and (max-width: 767px) {
.blog-inner-page .heading h1 {
/*font-size: 24px;*/
}
}
.blog-inner-page .heading-image {
width: 100%;
}
.blog-inner-page .description img {
max-width: 100%;
}
.blog-inner-page .share-label {
/*font-size: 18px;*/
color: #212121;
/*font-weight: bold;*/
}
.blog-inner-page .comments .comment-holder {
text-align: center;
}
.blog-inner-page .comments .comment-holder .author,
.blog-inner-page .comments .comment-holder .author a,
.blog-inner-page .comments .comment-holder .author span {
/*font-size: 20px;*/
color: #212121;
/*font-weight: bold;*/
text-decoration: none;
}
.blog-inner-page .comments .comment-holder .date {
margin-bottom: 20px;
}
.blog-inner-page .comments .comment-holder .date,
.blog-inner-page .comments .comment-holder .date span {
/*font-size: 12px;*/
color: #9f9f9f;
}
.blog-inner-page .comments .comment-holder .description {
width: 80%;
margin: 0 auto;
}
.blog-inner-page .comments .comment-holder .description,
.blog-inner-page .comments .comment-holder .description p {
/*font-size: 16px;*/
color: #212121;
text-align: center;
}
@media screen and (max-width: 991px) {
.blog-inner-page .heading h1 {
/*font-size: 30px;*/
}
}
@media screen and (max-width: 767px) {
.blog-inner-page .heading-image {
width: 100%;
-webkit-background-size: contain;
background-size: contain;
background-position: center center;
background-repeat: no-repeat;
background-attachment: inherit;
}
.blog-inner-page .heading h1 {
/*font-size: 28px;*/
}
}
.blog-inner-page .reviews {
margin-top: 20px;
}
.blog-inner-page .reviews .heading h3 {
/*font-size: 16px;*/
color: #212121;
/*font-weight: bold;*/
padding: 8px 0 25px 0px;
}
.blog-inner-page .reviews .heading i {
float: left;
/*font-size: 50px;*/
color: #212121;
}
.blog-inner-page .reviews .review {
background: #f3f3f3;
padding: 15px 0;
color: #212121;
margin-bottom: 20px;
}
.blog-inner-page .reviews .review:after {
clear: both;
content: '';
display: block;
}
.blog-inner-page .reviews .review .avatar-holder {
width: 70px;
float: left;
}
.blog-inner-page .reviews .review .avatar-holder .avatar {
background: #f3f3f3;
width: 50px;
height: 50px;
background-repeat: no-repeat;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
background-size: cover;
}
.blog-inner-page .reviews .review .info {
width: calc(100% - 70px);
float: left;
}
.blog-inner-page .reviews .review .info h4 {
color: #212121;
/*font-size: 14px;*/
/*font-weight: 700;*/
margin: 10px 0 20px 0;
}
.blog-inner-page .reviews .review .info p {
color: #212121;
/*font-size: 14px;*/
}
.blog-inner-page .leave-review .left-side {
float: left;
width: 70px;
}
.blog-inner-page .leave-review .right-side {
float: left;
width: calc(100% - 70px);
}
.blog-inner-page .leave-review .left-side i {
/*font-size: 50px;*/
color: #212121;
}
.blog-inner-page .leave-review .right-side h3 {
/*font-size: 24px;*/
color: #212121;
/*font-weight: bold;*/
margin: 12px 0 25px 0;
}
.blog-inner-page .leave-review .right-side p {
/*font-size: 16px;*/
color: #212121;
}
.blog-inner-page .leave-review .form textarea {
min-height: 100px;
max-width: 100%;
}
.blog-inner-page .leave-review .form .form-group {
margin-bottom: 25px;
}
.blog-inner-page .leave-review .form .form-group label {
/*font-size: 14px;*/
color: #212121;
/*line-height: 1.4;*/
margin-bottom: 10px;
}
.blog-inner-page .leave-review .form .form-group .form-control {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border: 2px solid #ddd;
color: #212121;
/*font-size: 0.857rem;*/
padding: 12px 20px;
margin-bottom: 10px;
margin-right: 10px;
/*font-weight: 600;*/
height: auto;
}
.blog-inner-page .leave-review .form .form-group .form-control::placeholder {
/* Chrome, Firefox, Opera, Safari 10.1+ */
color: rgba(191, 191, 191, 0.8);
opacity: 1;
/* Firefox */
}
.blog-inner-page .leave-review .form .form-group .form-control:-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: rgba(191, 191, 191, 0.8);
}
.blog-inner-page .leave-review .form .form-group .form-control::-ms-input-placeholder {
/* Microsoft Edge */
color: rgba(191, 191, 191, 0.8);
}
.blog-inner-page .reviews h1,
.blog-inner-page .reviews h2,
.blog-inner-page .reviews h3,
.blog-inner-page .reviews h4,
.blog-inner-page .reviews h5,
.blog-inner-page .reviews h6,
.blog-inner-page .reviews p,
.blog-inner-page .reviews span {
color: #212121 !important;
}
/* Page - Shop Inner */
.relative {
position: relative;
}
.shop-inner-page .next-previous-content .btn {
padding: 4px 8px;
text-align: center;
}
.shop-inner-page .next-previous-content .btn i {
margin: 0;
}
.shop-inner-page .heading {
text-align: left;
margin-bottom: 20px;
border-bottom: 1px solid #ebebeb;
padding-bottom: 20px;
}
.shop-inner-page .heading h4 {
width: calc(100% - 70px);
}
.shop-inner-page .main-price {
/*font-weight: bold;*/
}
.shop-inner-page .main-price .price {
color: #0044de;
/*font-size: 24px;*/
}
.shop-inner-page .main-price .price span {
margin: 0 5px;
/*font-size: 36px;*/
}
.shop-inner-page .main-price .price-old {
color: #b9b9b9;
/*font-size: 24px;*/
text-decoration: line-through;
margin-right: 15px;
}
.shop-inner-page .mw-add-to-cart-holder .price:after {
clear: both;
display: block;
content: '';
}
.shop-inner-page .mw-price-item-value,
.shop-inner-page .mw-price-item-key {
color: #212121;
/*font-size: 16px;*/
/*font-weight: bold;*/
margin-top: 10px;
display: inline-block;
}
.shop-inner-page p.labels {
color: #212121;
/*font-size: 14px;*/
/*line-height: 1.8;*/
}
.shop-inner-page p.labels span {
color: #212121;
}
.shop-inner-page .description-short {
margin-top: 20px;
}
.shop-inner-page .description-short h1,
.shop-inner-page .description-short h2,
.shop-inner-page .description-short h3,
.shop-inner-page .description-short h4,
.shop-inner-page .description-short h5,
.shop-inner-page .description-short h6,
.shop-inner-page .description-short span,
.shop-inner-page .description-short p {
color: #212121;
}
.shop-inner-page .description {
margin-top: 20px;
}
.shop-inner-page .description h1,
.shop-inner-page .description h2,
.shop-inner-page .description h3,
.shop-inner-page .description h4,
.shop-inner-page .description h5,
.shop-inner-page .description h6 {
color: #212121;
}
.shop-inner-page .description p {
/*line-height: 1.5;*/
/*font-size: 16px;*/
color: #212121;
text-align: justify;
margin-bottom: 10px;
}
.shop-inner-page .description .table {
margin: 0;
text-align: left;
}
.shop-inner-page .description .table tr td:first-of-type {
padding-left: 0;
}
.shop-inner-page .description .table td {
/*font-size: 16px;*/
color: #212121;
/*font-weight: bold;*/
}
.shop-inner-page .product-gallery a {
display: block;
width: 100%;
background: #f3f3f3;
margin-bottom: 20px;
text-align: center;
padding: 10px;
}
.shop-inner-page .product-gallery img {
max-width: 70%;
}
.shop-inner-page .product-gallery a:last-child img {
margin-bottom: 0px;
}
.shop-inner-page .quantity input,
.shop-inner-page .quantity .minus,
.shop-inner-page .quantity .plus {
display: block;
float: left;
background: #2c6cff;
color: #fff;
border: 0;
margin: 0;
/*font-size: 18px;*/
padding: 6px 20px;
height: 46px;
}
.shop-inner-page .quantity input {
width: calc(100% - 120px);
text-align: center;
border-radius: 0;
}
.shop-inner-page .quantity .minus,
.shop-inner-page .quantity .plus {
/*font-size: 24px;*/
width: 60px;
}
.shop-inner-page .quantity .minus {
border-bottom-left-radius: 7px;
border-top-left-radius: 7px;
}
.shop-inner-page .quantity .plus {
border-bottom-right-radius: 7px;
border-top-right-radius: 7px;
}
.shop-inner-page .box .btn {
text-transform: uppercase;
}
.shop-inner-page .table-striped > tbody > tr:nth-of-type(odd) {
background: transparent;
}
.shop-inner-page .table-striped > tbody > tr:nth-of-type(even) {
background: rgba(61, 0, 180, 0.05);
}
.shop-inner-page .product-specifications .table-striped > tbody > tr td:first-of-type {
border-bottom-left-radius: 7px;
border-top-left-radius: 7px;
}
.shop-inner-page .product-specifications .table-striped > tbody > tr td:last-of-type {
border-bottom-right-radius: 7px;
border-top-right-radius: 7px;
}
.shop-inner-page .product-specifications .table-striped th {
background: transparent;
color: #212121;
text-transform: uppercase;
}
.shop-inner-page .product-specifications .table tr:hover > td {
background: #dadada;
}
.shop-inner-page .product-specifications .table {
width: 100%;
}
.shop-inner-page .product-specifications .left-side {
float: left;
width: 70px;
}
.shop-inner-page .product-specifications .right-side {
float: left;
width: calc(100% - 70px);
}
.shop-inner-page .product-specifications .left-side i {
/*font-size: 50px;*/
color: #212121;
}
.shop-inner-page .product-specifications .right-side h3 {
/*font-size: 24px;*/
color: #212121;
/*font-weight: bold;*/
margin: 12px 0 25px 0;
}
.shop-inner-page .product-specifications .right-side p {
/*font-size: 16px;*/
color: #212121;
}
.shop-inner-page .reviews {
margin-top: 20px;
}
.shop-inner-page .reviews h1,
.shop-inner-page .reviews h2,
.shop-inner-page .reviews h3,
.shop-inner-page .reviews h4,
.shop-inner-page .reviews h5,
.shop-inner-page .reviews h6,
.shop-inner-page .reviews span,
.shop-inner-page .reviews p {
color: #212121;
}
.shop-inner-page .reviews .heading h3 {
/*font-size: 16px;*/
color: #212121;
/*font-weight: bold;*/
padding: 8px 0 25px 0px;
}
.shop-inner-page .reviews .heading i {
float: left;
/*font-size: 50px;*/
color: #212121;
}
.shop-inner-page .reviews .review {
background: #f3f3f3;
padding: 15px 0;
color: #212121;
margin-bottom: 20px;
}
.shop-inner-page .reviews .review:after {
clear: both;
content: '';
display: block;
}
.shop-inner-page .reviews .review .avatar-holder {
width: 70px;
float: left;
}
.shop-inner-page .reviews .review .avatar-holder .avatar {
background: #f3f3f3;
width: 50px;
height: 50px;
background-repeat: no-repeat;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
background-size: cover;
}
.shop-inner-page .reviews .review .info {
width: calc(100% - 70px);
float: left;
}
.shop-inner-page .reviews .review .info h4 {
color: #212121;
/*font-size: 14px;*/
/*font-weight: 700;*/
margin: 0px 0 20px 0;
}
.shop-inner-page .reviews .review .info p {
color: #212121;
/*font-size: 14px;*/
}
.shop-inner-page .leave-review .left-side {
float: left;
width: 70px;
}
.shop-inner-page .leave-review .right-side {
float: left;
width: calc(100% - 70px);
}
.shop-inner-page .leave-review .left-side i {
/*font-size: 50px;*/
color: #212121;
}
.shop-inner-page .leave-review .right-side h3 {
/*font-size: 24px;*/
color: #212121;
/*font-weight: bold;*/
margin: 12px 0 25px 0;
}
.shop-inner-page .leave-review .right-side p {
/*font-size: 16px;*/
color: #212121;
}
.shop-inner-page .leave-review .form textarea {
min-height: 100px;
max-width: 100%;
}
.shop-inner-page .leave-review .form .form-group {
margin-bottom: 25px;
}
.shop-inner-page .leave-review .form .form-group label {
/*font-size: 14px;*/
color: #212121;
/*line-height: 1.4;*/
margin-bottom: 10px;
}
.shop-inner-page .leave-review .form .form-group .form-control {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border: 2px solid #ddd;
color: #212121;
/*font-size: 0.857rem;*/
padding: 12px 20px;
margin-bottom: 10px;
margin-right: 10px;
text-transform: uppercase;
/*font-weight: 600;*/
height: auto;
}
.shop-inner-page .leave-review .form .form-group .form-control::placeholder {
/* Chrome, Firefox, Opera, Safari 10.1+ */
color: rgba(191, 191, 191, 0.8);
opacity: 1;
/* Firefox */
}
.shop-inner-page .leave-review .form .form-group .form-control:-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: rgba(191, 191, 191, 0.8);
}
.shop-inner-page .leave-review .form .form-group .form-control::-ms-input-placeholder {
/* Microsoft Edge */
color: rgba(191, 191, 191, 0.8);
}
@media screen and (max-width: 991px) {
.shop-inner-page .heading h1 {
/*font-size: 30px;*/
}
.shop-inner-page p.price {
/*font-size: 30px;*/
}
.shop-inner-page .box {
padding: 30px 30px 30px 30px;
}
.shop-inner-page .box .quantity input {
margin-bottom: 10px;
}
}
@media screen and (max-width: 767px) {
.shop-inner-page p.price {
/*font-size: 28px;*/
}
}
.shop-inner-page .tabs .tab-pane {
padding: 20px 0 0 0;
}
.zoomContainer {
z-index: 3;
}
.shop-inner-page .elevatezoom {
position: relative;
margin-bottom: 40px;
}
.shop-inner-page .elevatezoom .main-image {
max-width: 100%;
}
.shop-inner-page .elevatezoom .square {
border: 1px solid #f3f3f3;
}
.shop-inner-page .elevatezoom .square .content {
padding: 20px;
}
.shop-inner-page .elevatezoom .elevatezoom-holder {
max-width: calc(100% - 100px);
height: 100%;
white-space: nowrap;
max-height: 100%;
text-align: center;
max-width: 100%;
margin: 0 auto;
align-items: center;
justify-content: center;
display: flex;
position: relative;
}
.shop-inner-page .elevatezoom .elevatezoom-holder img {
max-height: 100%;
/*position: relative !important;*/
left: 0;
right: 0;
margin: 0 auto;
}
.shop-inner-page .elevatezoom .elevatezoom-holder .helper {
display: inline-block;
height: 100%;
vertical-align: middle;
}
.shop-inner-page .elevatezoom .elevatezoom-holder .zoomWrapper {
max-height: 100%;
max-width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery {
margin-top: 20px;
position: relative;
padding: 0 25px;
width: 100%;
float: left;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-list {
margin: 0 -10px;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery a {
display: block;
height: 100px;
width: 100%;
background-size: contain;
background-repeat: no-repeat;
background-origin: content-box;
padding: 5px 10px;
margin: 0px 0 14px 0;
background-color: #fff;
background-position: center center;
border: 1px solid #ebebeb;
margin: 10px;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery a.active {
border-color: #0044de;
-webkit-box-shadow: 0 0 17px rgba(200, 200, 200, 0.5);
-moz-box-shadow: 0 0 17px rgba(200, 200, 200, 0.5);
box-shadow: 0 0 17px rgba(200, 200, 200, 0.5);
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-arrow {
top: 60px;
z-index: 4;
/*font-size: 0;*/
border: 0;
background: none;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery:hover .slick-arrow {
display: block !important;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-arrow:before {
/*font-family: FontAwesome;*/
color: #bfbfbf;
display: block;
/*font-size: 12px;*/
text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.8);
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-next {
right: 0;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-next:before {
content: '\f054';
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-prev {
left: 0;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-prev:before {
content: '\f053';
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-track {
float: left;
}
/* Slick options */
.product-gallery .slick-arrow {
position: absolute;
top: 45%;
z-index: 4;
/*font-size: 0;*/
border: 0;
background: none;
display: none !important;
}
.shop-inner-page .product-gallery:hover .slick-arrow {
display: block !important;
}
.shop-inner-page .product-gallery .slick-arrow:before {
/*font-family: FontAwesome;*/
color: #ffffff;
display: block;
/*font-size: 20px;*/
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
}
.shop-inner-page .product-gallery .slick-next {
right: 5%;
}
.shop-inner-page .product-gallery .slick-next:before {
content: '\f054';
}
.shop-inner-page .product-gallery .slick-prev {
left: 5%;
}
.shop-inner-page .product-gallery .slick-prev:before {
content: '\f053';
}
@media screen and (max-width: 991px) {
.shop-inner-page .product-holder .product-info {
margin-top: 35px;
margin-bottom: 35px;
}
.shop-inner-page .table-responsive {
border: 0;
}
}
.shop-inner-page .product-info .heading h1 {
/*font-size: 24px;*/
color: #212121;
/*font-weight: bold;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
}
@media screen and (max-width: 1199px) {
.shop-inner-page .product-info .heading h1 {
/*font-size: 18px;*/
}
}
/* Masonry Gallery */
.masonry-gallery .image-holder {
position: relative;
overflow: hidden;
z-index: 60;
}
.masonry-gallery .image-holder:after {
content: '';
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
border: 10px solid #ffffff;
z-index: 50;
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
-webkit-transform: scale(1.06);
-ms-transform: scale(1.06);
transform: scale(1.06);
}
.masonry-gallery .image-holder:hover:after {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.masonry-gallery .image-holder:hover .image-holder__descr {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
.masonry-gallery .image-holder:hover .image-holder__icon {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
.masonry-gallery .image-holder_dark:after {
border-color: #2b2b2b;
}
.masonry-gallery .image-holder__img {
width: 100%;
height: auto;
}
.masonry-gallery .image-holder__descr {
position: absolute;
left: 0;
bottom: 10px;
width: 100%;
background-color: #0044de;
text-align: center;
padding: 17px 0px;
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
opacity: 0;
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
}
.projects .masonry-gallery .image-holder__descr {
background-color: rgba(0, 68, 222, 0.8);
text-align: left;
padding: 15px 20px;
}
.projects .masonry-gallery .image-holder__descr .image-holder__heading {
color: #212121;
/*font-size: 16px;*/
text-transform: none;
/*font-weight: bold;*/
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.projects .masonry-gallery .image-holder__descr .image-holder__description {
color: #ffffff;
/*font-size: 16px;*/
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.masonry-gallery .image-holder__heading {
/*font-size: 1.07692rem;*/
/*font-weight: 400;*/
color: #ffffff;
text-transform: uppercase;
margin-top: 0;
margin-bottom: 0;
}
.masonry-gallery .image-holder__icon {
display: inline-block;
position: absolute;
top: 10px;
right: 10px;
width: 30px;
height: 30px;
background-color: #212121;
text-align: center;
padding: 3px;
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
opacity: 0;
-webkit-transform: translate(10px, -10px);
-ms-transform: translate(10px, -10px);
transform: translate(10px, -10px);
}
.masonry-gallery .image-holder__icon:before {
content: '\f105';
display: inline-block;
/*font-family: 'FontAwesome';*/
/*font-size: 1.23077rem;*/
color: #212121;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.masonry-gallery .masonry-grid-works {
margin: 0 -10px;
}
.masonry-gallery .masonry-grid-works_fullwidth {
margin: 0;
}
.masonry-gallery .masonry-grid-works__sizer_w-20 {
width: 20%;
}
.masonry-gallery .masonry-grid-works__sizer_w-25 {
width: 25%;
}
.masonry-gallery .masonry-grid-works__sizer_w-33 {
width: -webkit-calc(100% / 3);
width: calc(100% / 3);
}
.masonry-gallery .masonry-grid-works__item {
padding: 10px;
}
.masonry-gallery .masonry-grid-works__item_fullwidth {
padding: 0;
}
.masonry-gallery .masonry-grid-works__item_w-20 {
width: 20%;
}
.masonry-gallery .masonry-grid-works__item_w-25 {
width: 25%;
}
.masonry-gallery .masonry-grid-works__item_w-33 {
width: -webkit-calc(100% / 3);
width: calc(100% / 3);
}
.masonry-gallery .list-masonry-grid-works-filter {
display: block;
text-align: center;
}
.masonry-gallery .list-masonry-grid-works-filter__item {
display: inline-block;
}
.masonry-gallery .list-masonry-grid-works-filter__link {
margin: 0 10px;
}
.masonry-gallery .list-masonry-grid-works-filter__link_active .list-masonry-grid-works-filter__link-lines {
opacity: 1;
visibility: visible;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines {
display: inline-block;
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
opacity: 0;
visibility: hidden;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines:before,
.masonry-gallery .list-masonry-grid-works-filter__link-lines:after {
content: '';
display: block;
background-color: #212121;
position: absolute;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_top:before {
width: 1px;
height: 38px;
bottom: -9px;
left: 2px;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_top:after {
width: 1px;
height: 30px;
bottom: -9px;
left: 0px;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_bottom:before {
width: 1px;
height: 38px;
top: -9px;
right: 2px;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_bottom:after {
width: 1px;
height: 30px;
top: -9px;
right: 0px;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_left:before {
width: 60px;
height: 1px;
bottom: 2px;
left: -9px;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_left:after {
width: 50px;
height: 1px;
bottom: 0px;
left: -9px;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_right:before {
width: 60px;
height: 1px;
top: 2px;
right: -9px;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_right:after {
width: 50px;
height: 1px;
top: 0px;
right: -9px;
}
@media only screen and (max-width: 1200px) {
.masonry-gallery .masonry-grid-works__sizer_w-20,
.masonry-gallery .masonry-grid-works__item_w-20 {
width: 50%;
}
}
@media only screen and (max-width: 991px) {
.masonry-gallery .masonry-grid-works__sizer_w-25,
.masonry-gallery .masonry-grid-works__item_w-25 {
width: 50%;
}
.masonry-gallery .masonry-grid-works__sizer_w-33,
.masonry-gallery .masonry-grid-works__item_w-33 {
width: 50%;
}
}
@media only screen and (max-width: 767px) {
.masonry-gallery .list-masonry-grid-works-filter__item {
display: block;
margin-bottom: 15px;
padding: 0px 15px;
}
.masonry-gallery .list-masonry-grid-works-filter__item:last-child {
margin-bottom: 0;
}
}
@media only screen and (max-width: 480px) {
.masonry-gallery .image-holder__descr {
opacity: 1;
}
.masonry-gallery .masonry-grid-works__sizer_w-20,
.masonry-gallery .masonry-grid-works__item_w-20 {
width: 100%;
}
.masonry-gallery .masonry-grid-works__sizer_w-25,
.masonry-gallery .masonry-grid-works__item_w-25 {
width: 100%;
}
.masonry-gallery .masonry-grid-works__sizer_w-33,
.masonry-gallery .masonry-grid-works__item_w-33 {
width: 100%;
}
}
/* Checkout Modal */
@media screen and (min-width: 1450px) {
.modal-dialog {
margin: 10% auto;
}
}
.checkout-modal .modal-content {
border: 1px solid #c3c3c3 !important;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
background: #f5f5f5;
color: #505050;
}
.checkout-modal .modal-header {
padding-bottom: 0;
border-color: #c3c3c3;
}
.checkout-modal .modal-header .close {
margin-top: -25px;
margin-right: -10px;
background: #f5f5f5;
opacity: 1;
color: #505050;
padding: 1px 5px;
border: 1px solid #c3c3c3;
border-radius: 100%;
right: 0;
position: absolute;
}
.checkout-modal .step-button {
text-align: center;
padding: 0;
}
.checkout-modal .step-button a {
text-decoration: none;
display: block;
height: 100%;
}
.checkout-modal .step-button.muted a {
opacity: 0.4;
}
.checkout-modal .step-button .active {
border-bottom: 2px solid #212121;
}
.checkout-modal .step-button i {
/*font-size: 24px;*/
color: #505050;
}
.checkout-modal .step-button span {
display: block;
/*font-size: 14px;*/
color: #505050;
/*font-weight: bold;*/
padding-bottom: 10px;
}
.checkout-modal .js-step-content {
display: none;
}
.checkout-modal .js-step-content .btn {
border-radius: 2px;
}
.checkout-modal .js-shopping-cart .products .product {
/*font-size: 14px;*/
border-bottom: 1px solid #c3c3c3;
padding: 10px 0;
}
@media screen and (max-width: 767px) {
.checkout-modal .js-shopping-cart .products .product img {
max-width: 200px;
margin: 0 auto;
display: block;
}
}
.checkout-modal .js-shopping-cart .products .product:hover {
background: #ffffff;
}
.checkout-modal .js-shopping-cart .products .product .action {
padding-left: 0;
padding-right: 0;
}
.checkout-modal .js-shopping-cart .products .product .action a {
color: #0044de;
opacity: 1;
display: inline-block;
}
.checkout-modal .js-shopping-cart .products .product .qty {
padding-left: 0;
padding-right: 0;
text-align: center;
}
.checkout-modal .js-shopping-cart .products .product .qty select {
margin-top: 25px;
}
.checkout-modal .js-shopping-cart .products .product .action .tooltip {
margin-top: 5px;
}
.checkout-modal .js-shopping-cart .products .product .title,
.checkout-modal .js-shopping-cart .products .product .price,
.checkout-modal .js-shopping-cart .products .product .action {
padding-top: 35px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.checkout-modal .js-shopping-cart .products .product .price,
.checkout-modal .js-shopping-cart .products .product .action {
text-align: center;
}
.checkout-modal .js-shopping-cart .amount .total,
.checkout-modal .js-shopping-cart .amount .promocode {
padding-top: 35px;
}
.checkout-modal .js-shopping-cart .amount .promocode .form-control {
/*font-size: 14px;*/
/*font-style: italic;*/
}
.checkout-modal .js-shopping-cart .amount .total p,
.checkout-modal .js-shopping-cart .amount .promocode p {
margin-bottom: 20px;
}
.checkout-modal .js-shopping-cart .amount .promocode .btn {
border-bottom-right-radius: 2px;
border-top-right-radius: 2px;
}
.checkout-modal .js-shopping-cart .amount .promocode .form-control {
margin: 0;
}
.checkout-modal .js-shopping-cart .amount .total {
/*font-size: 16px;*/
}
.checkout-modal .js-step-content {
/*font-size: 16px;*/
}
.checkout-modal .js-step-content .form-control {
border: 0;
margin-bottom: 10px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
/*font-size: 14px;*/
}
.checkout-modal .js-step-content .fields .field-holder {
margin-bottom: 0;
}
.checkout-modal .js-step-content .fields .field-holder .form-control,
.checkout-modal .js-step-content .fields .field-holder .bootstrap-select {
width: 100% !important;
}
.checkout-modal .js-step-content .fields .field-holder .bootstrap-select .btn {
margin-bottom: 10px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
border: 0;
}
.checkout-modal .js-step-content .fields:after {
display: block;
clear: both;
content: '';
}
.checkout-modal .js-step-content .fields.x2,
.checkout-modal .js-step-content .fields.x3 {
margin: 0 -5px;
}
.checkout-modal .js-step-content .fields.x2 .field-holder {
float: left;
width: 50%;
padding: 0 5px;
}
.checkout-modal .js-step-content .fields.x3 .field-holder {
float: left;
width: 33.3%;
padding: 0 5px;
}
@media screen and (max-width: 767px) {
.checkout-modal .js-shopping-cart .products .product .title {
text-align: center;
}
}
@media (min-width: 1450px) {
.checkout-modal .modal-dialog {
width: 700px;
}
}
/* Login Modal */
@media screen and (min-width: 1450px) {
/*.modal-dialog {*/
/*margin: 10% auto;*/
/*}*/
}
.login-modal .modal-content {
border: 1px solid #c3c3c3 !important;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
background: #f5f5f5;
color: #505050;
}
.login-modal .modal-header {
padding-bottom: 0;
border-color: #c3c3c3;
border: 0;
}
.login-modal .modal-header .close {
margin-top: -25px;
margin-right: -25px;
background: #f5f5f5;
opacity: 1;
color: #505050;
padding: 1px 5px;
border: 1px solid #c3c3c3;
border-radius: 100%;
}
.login-modal .modal-dialog {
max-width: 500px;
}
.login-modal .modal-body {
padding: 20px 60px;
}
.login-modal .modal-body .form-control {
background: #ffffff;
border: 1px solid #c3c3c3;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
color: #505050;
/*font-size: 16px;*/
}
.login-modal .modal-body p {
/*font-size: 16px;*/
color: #333;
text-align: center;
/*line-height: 1.5;*/
}
.login-modal .modal-body .icon {
text-align: center;
margin-bottom: 20px;
}
.login-modal .modal-body .icon i {
/*font-size: 45px;*/
color: #333;
}
/*
@media (min-width: 1450px) {
.login-modal .modal-dialog {
width: 700px;
}
}
*/
.login-modal .socials-login {
display: flex;
width: 100%;
margin: 20px 0 30px 0;
}
.login-modal .socials-login a {
color: #ffffff;
flex: 1;
padding: 5px 10px;
/*font-size: 24px;*/
text-align: center;
margin: 0 2px;
}
.login-modal .socials-login a:hover {
opacity: 0.8;
}
.login-modal .socials-login .facebook {
background-color: #3b5998;
}
.login-modal .socials-login .twitter {
background-color: #00aced;
}
.login-modal .socials-login .gplus {
background-color: #db4437;
}
.login-modal .socials-login .linkedin {
background-color: #0077b5;
}
.login-modal .socials-login .github {
background-color: #333333;
}
.login-modal .socials-login .microweber {
background-color: #0086db;
}
.login-modal .or {
/*line-height: 0.5;*/
text-align: center;
position: relative;
overflow: hidden;
}
.login-modal .or span {
display: inline-block;
position: relative;
}
.login-modal .or span:before,
.login-modal .or span:after {
content: "";
position: absolute;
height: 13px;
border-bottom: 1px solid #c3c3c3;
top: 0;
width: 600px;
}
.login-modal .or span:before {
right: 100%;
margin-right: 15px;
}
.login-modal .or span:after {
left: 100%;
margin-left: 15px;
}
.login-modal .act {
position: relative;
margin: 25px 0 20px 0;
text-align: center;
}
.login-modal a {
color: #505050;
/*font-size: 14px;*/
text-decoration: none;
}
.login-modal .act a {
/*font-size: 16px;*/
text-transform: uppercase;
color: #505050;
text-decoration: none;
/*font-weight: bold;*/
}
.login-modal .act a:hover {
opacity: 0.8;
}
.login-modal .act a span {
display: block;
}
.login-modal .act:after {
/*font-family: 'Material Icons';*/
display: block;
position: absolute;
top: -11px;
/*font-size: 30px;*/
}
.login-modal .act.create:after {
content: 'arrow_forward';
float: right;
right: 62px;
}
.login-modal .act.login:after {
content: 'arrow_back';
float: left;
left: 90px;
}
.login-modal .personal-data {
color: #bbbbbb !important;
text-align: justify !important;
}
@media screen and (max-width: 520px) {
.login-modal .act:after {
display: none;
}
}
/* Page - Portfolio Inner */
.portfolio-inner-page .container {
padding: 0 5%;
}
.relative {
position: relative;
}
.portfolio-inner-page .heading {
text-align: left;
}
.portfolio-inner-page .heading h1 {
/*font-size: 36px;*/
color: #212121;
/*font-weight: bold;*/
}
.portfolio-inner-page .description {
margin-top: 20px;
}
.portfolio-inner-page .description p {
/*line-height: 1.5;*/
/*font-size: 16px;*/
color: #212121;
text-align: justify;
margin-bottom: 10px;
}
.portfolio-inner-page .description .table {
margin: 0;
text-align: left;
}
.portfolio-inner-page .description .table tr td:first-of-type {
padding-left: 0;
}
.portfolio-inner-page .description .table td {
/*font-size: 16px;*/
color: #212121;
/*font-weight: bold;*/
}
.portfolio-inner-page .project-gallery img {
max-width: 100%;
margin-bottom: 20px;
}
.portfolio-inner-page .project-gallery a:last-child img {
margin-bottom: 0px;
}
/* Slick options */
.project-gallery .slick-arrow {
position: absolute;
top: 45%;
z-index: 4;
/*font-size: 0;*/
border: 0;
background: none;
display: none !important;
}
.portfolio-inner-page .project-gallery:hover .slick-arrow {
display: block !important;
}
.portfolio-inner-page .project-gallery .slick-arrow:before {
/*font-family: FontAwesome;*/
color: #ffffff;
display: block;
/*font-size: 20px;*/
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
}
.portfolio-inner-page .project-gallery .slick-next {
right: 5%;
}
.portfolio-inner-page .project-gallery .slick-next:before {
content: '\f054';
}
.portfolio-inner-page .project-gallery .slick-prev {
left: 5%;
}
.portfolio-inner-page .project-gallery .slick-prev:before {
content: '\f053';
}
@media screen and (max-width: 991px) {
/* .project-holder {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column-reverse;
}
.project-holder > div.col-md-6 {
width: 100%;
}*/
.portfolio-inner-page .project-holder .project-info {
margin-top: 35px;
margin-bottom: 35px;
}
.portfolio-inner-page .table-responsive {
border: 0;
}
}
/* Portfolio projects */
.portfolio-projects .project {
margin-bottom: 25px;
}
.portfolio-projects .project h3 {
color: #212121;
/*font-weight: bold;*/
/*font-size: 17px;*/
margin: 25px 0 15px 0;
text-decoration: none;
text-align: center;
}
.portfolio-projects .project a,
.portfolio-projects .project a:hover {
text-decoration: none;
}
.portfolio-projects .project .image {
position: relative;
background-origin: content-box;
background-color: #f0f0f0;
height: 260px;
width: 100%;
background-position: center center;
-webkit-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
-webkit-box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
-moz-box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
}
.portfolio-projects .project .image .hover {
width: 100%;
text-align: center;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(255, 32, 81, 0.15);
display: none;
}
.portfolio-projects .project .image:hover .hover {
display: inline-block;
}
.portfolio-projects .project .hover .btn {
padding: 10px;
text-align: center;
margin: 0 5px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
.portfolio-projects .project .hover .btn i {
margin: 0;
}
.portfolio-projects .project .hover > * {
top: 45%;
position: relative;
}
@media screen and (max-width: 991px) {
.portfolio-inner-page .heading h1 {
/*font-size: 30px;*/
}
}
@media screen and (max-width: 767px) {
.portfolio-inner-page .heading h1 {
/*font-size: 28px;*/
}
}
.feature-grid .img-holder {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
}
@media screen and (max-width: 991px) {
.feature-grid .img-holder {
position: static;
left: 0;
transform: translateX(0);
}
.project-info-content {
position: static !important;
-webkit-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
-o-transform: none !important;
transform: none !important;
}
}
.feature-grid:after {
display: block;
content: ' ';
/*font-size: 0;*/
clear: both;
}
.feature-grid {
position: relative;
}
.feature-grid .left-side {
float: left;
}
.feature-grid .right-side {
float: right;
}
.bootstrap-select.btn-group .dropdown-menu li.selected a span.text {
color: #ffffff;
/*font-weight: bold;*/
}
/* Effects */
.particles {
position: relative;
display: inline-block;
}
.particles-wrapper {
position: relative;
display: inline-block;
overflow: hidden;
}
.particles-canvas {
position: absolute;
pointer-events: none;
top: 50%;
left: 50%;
transform: translate3d(-50%, -50%, 0);
}
/*
.module-menu {
.dropdown-menu {
min-width: 200px;
border-radius: 0;
color: @textDark;
display: block;
opacity: 0;
visibility: hidden;
transition: all .3s;
transform: scaleY(0) scaleX(.2);
top: 100%;
transform-origin: left top;
box-shadow: 0 39px 97px 0 rgba(175, 175, 175, 0.25);
border: solid 1px #f4f4f4;
}
.dropdown-menu li {
position: relative;
}
}
.navigation li li .caret {
position: absolute;
top: 19px;
right: 10px;
}
.navigation li:hover > a .caret {
transform: rotate(-90deg);
}
.module-menu {
.dropdown-menu .dropdown-menu {
display: block;
opacity: 0;
visibility: hidden;
transition: all .3s;
transform: scaleY(0) scaleX(.2);
transform-origin: left top;
top: 0;
left: 100%;
}
.show > .dropdown-menu {
opacity: 1;
visibility: visible;
transform: scaleY(1) scaleX(1);
}
.dropdown-menu > li > a:focus {
background-color: transparent;
}
}*/
.slider-wrapper .swiper-slide {
border-radius: 7px;
overflow: hidden;
}
.slider-wrapper .swiper-slide > img {
width: 100%;
}
@media (min-width: 741px) {
.swiper-slide {
opacity: .2;
}
.swiper-slide-prev,
.swiper-slide-next {
opacity: 0.7;
}
}
.swiper-slide-active {
opacity: 1;
}
.material-icons,
.fa {
position: relative;
display: inline-block;
}
.info-block .particles {
vertical-align: middle;
}
/* /Mobilemenu */
/**
* Simple fade transition for Magnific Pop Up
*/
.mfp-fade.mfp-bg {
opacity: 0;
-webkit-transition: all 0.15s ease-out;
-moz-transition: all 0.15s ease-out;
transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
opacity: 0;
-webkit-transition: all 0.15s ease-out;
-moz-transition: all 0.15s ease-out;
transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
opacity: 0;
}
footer a {
transition: color .3s;
text-decoration: none;
}
ul.socials li a {
transition: all .3s;
}
/* *******************************************
************** Product Slider ************** *
******************************************* */
.product-slider-holder {
min-height: 100px;
padding: 0;
padding-bottom: 30px;
}
.product-slider-holder .slick-dotted.slick-slider {
margin-bottom: 0;
padding-bottom: 30px;
}
.product-slider-holder .flexbox-container {
align-items: center;
justify-content: center;
}
.product-slider-holder .left-side {
text-align: left;
}
.product-slider-holder .product-slider .slide {
padding: 70px 100px 30px 100px;
}
.product-slider-holder h1,
.product-slider-holder h2,
.product-slider-holder h3,
.product-slider-holder h4,
.product-slider-holder h5,
.product-slider-holder h6 {
/*font-size: 36px;*/
/*font-weight: 600;*/
margin-bottom: 50px;
color: #212121;
}
.product-slider-holder p,
.product-slider-holder span {
/*font-size: 16px;*/
/*line-height: 1.5;*/
color: #212121;
/*font-weight: 300;*/
}
.product-slider-holder p {
margin-bottom: 10px;
}
.product-slider-holder .btn {
min-width: 150px;
}
.product-slider-holder .img-holder img {
margin: 0 auto;
max-height: 400px;
max-width: 100%;
}
.product-slider .slick-arrow {
position: absolute;
z-index: 4;
/*font-size: 0;*/
border: 0;
background: none;
height: auto;
top: 50%;
transform: translateY(-50%);
}
.product-slider .slick-arrow:before {
/*font-family: 'Font Awesome\ 5 Free';*/
/*font-weight: 900;*/
color: #212121;
display: block;
/*font-size: 32px;*/
/*line-height: 1;*/
padding: 5px 20px;
}
.product-slider .slick-next {
right: 0;
width: auto;
transition: all .5s ease;
overflow: hidden;
}
.product-slider .slick-next:after {
content: '';
position: absolute;
right: 0;
top: 0;
display: block;
width: 100%;
height: 100%;
background-color: #212121;
transform: translateX(100%);
transition: all .5s ease;
z-index: -1;
}
.product-slider .slick-next:hover:after,
.product-slider .slick-next:focus:after {
right: auto;
left: 0;
transform: translateX(0%);
transition: all .5s ease;
}
.product-slider .slick-next:before {
content: '\f054';
}
.product-slider .slick-prev {
left: 0;
width: auto;
transition: all .5s ease;
overflow: hidden;
}
.product-slider .slick-prev:after {
content: '';
position: absolute;
left: 0;
top: 0;
display: block;
width: 100%;
height: 100%;
background-color: #212121;
transform: translateX(-100%);
transition: all .5s ease;
z-index: -1;
}
.product-slider .slick-prev:hover:after,
.product-slider .slick-prev:focus:after {
right: auto;
left: 0;
transform: translateX(0%);
transition: all .5s ease;
}
.product-slider .slick-prev:before {
content: '\f053';
}
.product-slider .slick-dots {
text-align: center;
margin: 20px;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.product-slider .slick-dots li {
display: -webkit-inline-box;
display: -moz-inline-box;
display: ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
/*font-size: 0px;*/
margin: 0 5px;
align-items: center;
justify-content: center;
}
.product-slider .slick-dots li button {
border: 0;
height: 15px;
width: 15px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
background: transparent;
padding: 3px;
border: 2px solid #212121;
}
.product-slider .slick-dots li button:before {
display: none;
}
.product-slider .slick-dots li.slick-active button {
background: #212121;
}
@media screen and (max-width: 1366px) {
.product-slider .slick-dots {
margin: 30px 0;
}
}
@media screen and (max-width: 1199px) {
.product-slider-holder .img-holder {
margin-bottom: 30px;
}
}
@media screen and (max-width: 991px) {
.product-slider-holder h1,
.product-slider-holder h2,
.product-slider-holder h3,
.product-slider-holder h4,
.product-slider-holder h5,
.product-slider-holder h6 {
text-align: center;
/*font-size: 30px;*/
}
.product-slider-holder p {
text-align: center;
}
.product-slider-holder .flexbox-container {
flex-direction: column-reverse;
}
.product-slider .slide .img-holder {
max-height: 500px;
}
}
@media screen and (max-width: 767px) {
.product-slider-holder h1,
.product-slider-holder h2,
.product-slider-holder h3,
.product-slider-holder h4,
.product-slider-holder h5,
.product-slider-holder h6 {
text-align: center;
/*font-size: 26px;*/
}
.product-slider-holder .product-slider .slide {
padding: 70px 10px 30px 10px;
}
.product-slider .slick-arrow {
display: none;
}
}
a.dropdown-toggle::after {
float: right;
display: block;
margin-top: 8px;
}
.js-red-text {
color: #0044de;
}
.module-categories-template-default .nav-list li {
width: 100%;
display: block;
margin-top: 25px;
}
.module-categories-template-default .nav-list li span.dot {
height: 16px;
display: inline-block;
position: relative;
margin-right: 20px;
background: #0044de;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
/*font-size: 12px;*/
/*font-weight: 400;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: normal;*/
letter-spacing: normal;
padding: 5px;
}
.module-categories-template-default .nav-list li span.dot:after {
content: '';
display: block;
width: 0;
height: 0;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
border-left: 8px solid #0044de;
position: absolute;
right: -8px;
top: 0;
}
.module-categories-template-default .nav-list li a {
display: block;
color: #f4f4f4;
/*font-size: 18px;*/
text-decoration: none;
position: relative;
}
.module-categories-template-default .nav-list li a span:not(.dot) {
position: relative;
}
.module-categories-template-default .nav-list li a span:not(.dot):after {
content: '';
display: none;
width: 100%;
position: absolute;
height: 2px;
background: #0044de;
left: 0;
bottom: -3px;
}
.module-categories-template-default .nav-list li a:hover span:not(.dot):after {
display: block;
}
.sidebar__widget {
margin-bottom: 30px;
}
.sidebar__widget h6 {
color: #212121;
text-transform: uppercase;
/*font-size: 14px;*/
/*font-weight: 700;*/
}
.sidebar__widget hr {
margin-top: 5px;
margin-bottom: 1rem;
border-top: 2px solid #dddddd;
}
.sidebar__widget .sidebar-search .mw-search-default-btn-holder {
width: 40px;
}
.sidebar__widget .sidebar-search .search-field {
background: #ebebeb;
border-radius: 20px;
overflow: hidden;
}
.sidebar__widget .sidebar-search .search-field input,
.sidebar__widget .sidebar-search .search-field button {
background: transparent;
border: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
outline: none !important;
}
.sidebar__widget .sidebar-search .search-field input {
padding: 0px 10px 2px 20px;
/*font-size: 14px;*/
/*font-weight: 600;*/
color: #212121;
}
.sidebar__widget .sidebar-search .search-field button {
padding: 0 5px;
}
.sidebar__widget .sidebar-search .search-field button:before {
display: inline-block;
content: '\f002';
/*font-family: "Font Awesome 5 Free" !important;*/
/*font-weight: 900;*/
/*font-size: 16px;*/
color: #212121;
}
.tags {
margin-bottom: 20px;
}
.tags:after {
clear: both;
display: block;
content: '';
}
.tags a {
border: 2px solid #ddd;
color: #212121;
/*font-size: 0.857rem;*/
padding: 8px 15px;
text-decoration: none;
float: left;
display: block;
margin-bottom: 10px;
margin-right: 10px;
text-transform: uppercase;
/*font-weight: 600;*/
}
.tags a:hover {
border: 2px solid #bfbfbf;
color: #212121;
}
/* Small Cart Modal */
.member-nav {
/* Start of .checkout-modal */
/* End of .checkout-modal */
/*Small Checkout*/
}
.member-nav .checkout-modal .modal-header {
padding: 0rem;
padding-bottom: 0;
}
.member-nav .checkout-modal .step-button {
text-align: center;
}
.member-nav .checkout-modal .js-red-text {
color: #dc3545;
margin-bottom: 0.5rem;
/*font-size: 0.9rem;*/
}
.member-nav .checkout-modal .js-green-text {
color: #28a745;
margin-bottom: 0.5rem;
/*font-size: 0.9rem;*/
}
.member-nav .checkout-modal .step-button.muted a {
opacity: 0.4;
}
.member-nav .checkout-modal .step-button a {
padding: 1.6rem 1rem;
}
.member-nav .checkout-modal .step-button .js-show-step i {
color: #212121;
}
.member-nav .checkout-modal .step-button .js-show-step span {
color: #212121;
/*font-size: 0.9rem;*/
}
.member-nav .checkout-modal .step-button .js-show-step.active {
background: #212121;
}
.member-nav .checkout-modal .step-button .js-show-step.active span,
.member-nav .checkout-modal .step-button .js-show-step.active i {
color: #f4f4f4;
}
.member-nav .checkout-modal .js-step-content {
display: none;
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-products-wrapper .checkout-modal-product-list-item {
padding: 0.75rem 0;
position: relative;
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-products-wrapper .checkout-modal-product-list-item:after {
height: 1px;
background-color: #ffffff;
display: block;
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: 0 auto;
width: calc(100% - 16px);
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-products-wrapper .checkout-modal-product-list-item:hover {
background: #f4f4f4;
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-product-list-item-action a {
color: #212121;
opacity: 1;
display: inline-block;
/*line-height: 1;*/
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-product-list-item-qty select {
margin-top: 2rem;
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-product-list-item-action .tooltip {
margin-top: 5px;
}
.member-nav .checkout-modal .checkout-modal-list-item-cell {
display: flex;
flex-direction: row;
align-items: center;
/*font-size: 0.9rem;*/
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-product-list-item-title,
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-product-list-item-title > * {
/* white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;*/
}
.member-nav .item-title a {
color: #212121 !important;
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-amount-holder .checkout-modal-promocode-holder,
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-amount-holder .checkout-modal-total-holder {
padding-top: 2.5rem;
align-items: flex-start;
align-content: flex-start;
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-amount-holder .checkout-modal-promocode-holder .form-control {
/*font-style: italic;*/
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-amount-holder .checkout-modal-promocode-holder p,
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-amount-holder .checkout-modal-total-holder p {
margin-bottom: 1rem;
}
.member-nav .checkout-modal .checkout-modal-total-price {
/*font-weight: bold;*/
}
.member-nav .checkout-modal .js-step-content .row .field-holder,
.member-nav .checkout-modal .js-step-content .form-row .field-holder {
margin-bottom: 1rem;
}
.member-nav .checkout-modal .js-step-content .row .field-holder .bootstrap-select,
.member-nav .checkout-modal .js-step-content .form-row .field-holder .bootstrap-select,
.member-nav .checkout-modal .js-step-content .row .field-holder .form-control,
.member-nav .checkout-modal .js-step-content .form-row .field-holder .form-control {
width: 100% !important;
}
.member-nav .checkout-modal .js-step-content .row .field-holder .form-control.input-md,
.member-nav .checkout-modal .js-step-content .form-row .field-holder .form-control.input-md {
padding-right: 2rem !important;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.member-nav .checkout-modal .checkout-modal-list-item-cell .form-control {
max-width: 90px;
}
.member-nav .checkout-modal .js-step-content .row:after,
.member-nav .checkout-modal .js-step-content .form-row:after {
display: block;
clear: both;
content: '';
}
.member-nav .checkout-modal .mw-ui-check input[type=checkbox] + span:after {
left: 0 !important;
width: 100% !important;
height: 100% !important;
top: 1px !important;
}
@media screen and (max-width: 991px) {
.member-nav .checkout-modal .modal-header {
padding: 0rem;
padding-bottom: 0;
}
.member-nav .checkout-modal .modal-body {
padding: 2.5rem 1.5rem;
padding-top: 1rem;
}
.member-nav .checkout-modal .step-button .js-show-step span {
/*font-size: .8rem;*/
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-amount-holder .checkout-modal-promocode-holder,
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-amount-holder .checkout-modal-total-holder {
padding-top: 1.5rem;
}
}
@media screen and (max-width: 767px) {
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-products-wrapper .row,
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-products-wrapper .form-row {
align-content: flex-start;
}
.member-nav .checkout-modal .checkout-modal-list-item-cell .form-control {
margin: .75rem 0;
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-product-list-item-action {
align-items: flex-start;
padding-top: .5rem;
}
.member-nav .checkout-modal .step-button a {
padding: 1rem;
}
}
@media screen and (max-width: 575px) {
.member-nav .checkout-modal .modal-header {
padding: 0rem;
padding-bottom: 0;
}
.member-nav .checkout-modal .modal-body {
padding: 2.5rem 1rem;
padding-top: 1.5rem;
}
.member-nav .checkout-modal .step-button .js-show-step span {
/*font-size: .7rem;*/
}
}
@media screen and (max-width: 400px) {
.member-nav .checkout-modal .step-button a {
padding: 1rem .5rem;
}
.member-nav .coupon-col,
.member-nav .coupon-btn-col {
flex: 0 0 100%;
max-width: 100%;
}
.member-nav .coupon-btn-col {
margin-top: .5rem;
}
}
.member-nav .dropdown-menu.shopping-cart {
background-color: #f4f4f4;
padding: 0;
border: 1px solid #ffffff;
}
.member-nav .dropdown-menu.shopping-cart:before {
display: none;
}
.member-nav .dropdown-menu.shopping-cart .products,
.member-nav .dropdown-menu.shopping-cart .products-amount {
padding: 1.7rem;
}
.member-nav .dropdown-menu.shopping-cart .products {
padding-bottom: 0;
}
.member-nav .dropdown-menu.shopping-cart .product-item {
padding: 0.7rem 0;
/*font-size: .9rem;*/
border-bottom: 1px solid #ffffff;
}
.member-nav .dropdown-menu.shopping-cart a i {
color: #212121;
/*font-size: 1.2rem;*/
}
@media screen and (min-width: 576px) {
.member-nav .dropdown-menu.shopping-cart {
min-width: 25rem;
}
}
@media screen and (max-width: 575px) {
.member-nav .dropdown-menu.shopping-cart {
min-width: 25rem;
}
.member-nav .dropdown-menu.shopping-cart .total {
margin-bottom: 1rem;
}
}
/* Elements */
.new-world-news .post-holder {
margin: 20px auto;
padding: 10px;
}
.new-world-news .thumbnail-holder {
display: flex;
align-items: center;
margin-bottom: 15px;
position: relative;
overflow: hidden;
}
.new-world-news .thumbnail-holder .thumbnail {
width: 100%;
height: 285px;
position: relative;
background-size: cover !important;
background-position: center center !important;
transition: transform .2s;
/* Animation */
}
.new-world-news .thumbnail-holder .thumbnail img {
width: 100%;
position: relative;
max-height: 100%;
height: 285px;
}
.new-world-news .thumbnail-holder:hover .thumbnail {
transform: scale(1.1);
/* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.new-world-news small {
/*font-size: 14px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: 1.71;*/
letter-spacing: normal;
color: #979aa6;
margin: 10px 0;
display: block;
}
.new-world-news p {
/*line-height: 1.75;*/
}
.new-world-news .tags {
left: 0px;
position: absolute;
z-index: 9;
top: 20px;
}
.new-world-news .tags .badge {
height: 26px;
display: inline-block;
position: relative;
margin-right: 10px;
background: #0044de;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
/*font-size: 12px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: normal;*/
letter-spacing: normal;
padding: 5px 10px;
}
.new-world-news .tags .badge:after {
content: '';
display: block;
width: 0;
height: 0;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-left: 8px solid #0044de;
position: absolute;
right: -8px;
top: 0;
}
.new-world-news a:hover {
text-decoration: none;
}
.new-world-news a h3:hover {
color: #0044de !important;
text-decoration: underline;
}
.new-world-news .post-big .thumbnail {
padding: 40px;
min-height: 540px;
-webkit-background-size: cover;
background-size: cover;
}
@media screen and (max-width: 991px) {
.new-world-news .post-big .thumbnail {
min-height: 390px;
}
}
.new-world-news .post-big h2,
.new-world-news .post-big h3 {
margin-bottom: 10px;
color: #ffffff;
}
.new-world-news .post-big p {
color: #ffffff;
margin-bottom: 10px;
}
.new-world-news .post-big small {
color: #ffffff;
}
.new-world-news .post-big .button-5 span {
padding: 0 10px;
}
.new-world-news-1 .post-holder {
margin: 20px auto;
}
.new-world-news-1 .thumbnail {
padding-top: 56.25%;
/* 16:9 Aspect Ratio */
width: 100%;
position: relative;
background-size: cover !important;
background-position: center center !important;
-webkit-background-size: cover;
}
.new-world-news-1 small {
/*font-size: 14px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: 1.71;*/
letter-spacing: normal;
color: #979aa6;
margin: 10px 0;
display: block;
}
.new-world-news-1 p {
/*line-height: 1.75;*/
}
.new-world-news-1 .tags {
left: -10px;
position: absolute;
z-index: 9;
top: 20px;
}
.new-world-news-1 .tags .badge {
height: 26px;
display: inline-block;
position: relative;
margin-right: 10px;
background: #0044de;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
/*font-size: 12px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: normal;*/
letter-spacing: normal;
padding: 5px 10px;
}
.new-world-news-1 .tags .badge:after {
content: '';
display: block;
width: 0;
height: 0;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-left: 8px solid #0044de;
position: absolute;
right: -8px;
top: 0;
}
.new-world-news-1 a:hover {
text-decoration: none;
}
.new-world-news-1 .post-big small {
/*font-size: 16px;*/
}
.new-world-news-2 .post-holder {
margin: 20px auto;
}
.new-world-news-2 .thumbnail {
padding-top: 56.25%;
/* 16:9 Aspect Ratio */
width: 100%;
position: relative;
background-size: cover !important;
background-position: center center !important;
-webkit-background-size: cover;
}
.new-world-news-2 small {
/*font-size: 14px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: 1.71;*/
letter-spacing: normal;
color: #979aa6;
margin: 10px 0;
display: block;
}
.new-world-news-2 p {
/*line-height: 1.75;*/
}
.new-world-news-2 .tags {
left: -10px;
position: absolute;
z-index: 9;
top: 20px;
}
.new-world-news-2 .tags .badge {
height: 26px;
display: inline-block;
position: relative;
margin-right: 10px;
background: #0044de;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
/*font-size: 12px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: normal;*/
letter-spacing: normal;
padding: 5px 10px;
}
.new-world-news-2 .tags .badge:after {
content: '';
display: block;
width: 0;
height: 0;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-left: 8px solid #0044de;
position: absolute;
right: -8px;
top: 0;
}
.new-world-news-2 a:hover {
text-decoration: none;
}
.new-world-news-2 .post-big .thumbnail {
padding: 40px;
height: 390px;
-webkit-background-size: cover;
background-size: cover;
}
@media screen and (max-width: 991px) {
.new-world-news-2 .post-big .thumbnail {
min-height: 390px;
}
}
.new-world-news-2 .post-big h2,
.new-world-news-2 .post-big h3 {
margin-bottom: 10px;
color: #ffffff;
}
.new-world-news-2 .post-big p {
color: #ffffff;
margin-bottom: 10px;
}
.new-world-news-2 .post-big small {
color: #ffffff;
}
.new-world-news-2 .post-big .button-5 span {
padding: 0 10px;
}
.new-world-news-3 .post-holder {
margin: 15px auto;
}
.new-world-news-3 .thumbnail {
padding-top: 56.25%;
/* 16:9 Aspect Ratio */
width: 100%;
position: relative;
background-size: cover !important;
background-position: center center !important;
-webkit-background-size: cover;
}
.new-world-news-3 small {
/*font-size: 14px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: 1.71;*/
letter-spacing: normal;
color: #979aa6;
margin: 10px 0;
display: block;
}
.new-world-news-3 p {
/*line-height: 1.75;*/
}
.new-world-news-3 .tags {
left: -10px;
position: absolute;
z-index: 9;
top: 20px;
}
.new-world-news-3 .tags .badge {
height: 26px;
display: inline-block;
position: relative;
margin-right: 10px;
background: #0044de;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
/*font-size: 12px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: normal;*/
letter-spacing: normal;
padding: 5px 10px;
}
.new-world-news-3 .tags .badge:after {
content: '';
display: block;
width: 0;
height: 0;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-left: 8px solid #0044de;
position: absolute;
right: -8px;
top: 0;
}
.new-world-news-3 a:hover {
text-decoration: none;
}
.new-world-news-3 .post-big .thumbnail {
padding: 40px;
height: 390px;
-webkit-background-size: cover;
background-size: cover;
}
@media screen and (max-width: 991px) {
.new-world-news-3 .post-big .thumbnail {
min-height: 390px;
}
}
.new-world-news-3 .post-big.high .thumbnail {
height: 643px;
}
.new-world-news-3 .post-big h2,
.new-world-news-3 .post-big h3 {
margin-bottom: 10px;
color: #ffffff;
}
.new-world-news-3 .post-big p {
color: #ffffff;
margin-bottom: 10px;
}
.new-world-news-3 .post-big small {
color: #ffffff;
}
.new-world-news-3 .post-big .button-5 span {
padding: 0 10px;
}
.mw-instagram-feeds {
margin: 0 -5px;
}
.mw-instagram-feeds .feed-photo {
padding-left: 5px;
padding-right: 5px;
margin-bottom: 10px;
}
.mw-instagram-feeds .feed-photo:after {
content: "";
display: block;
padding-bottom: 100%;
}
.mw-instagram-feeds .feed-photo a {
display: block;
width: 100%;
height: 100%;
text-decoration: none !important;
position: relative;
}
.mw-instagram-feeds .feed-photo .background-holder {
height: 100%;
width: 100%;
background-size: cover;
position: absolute;
overflow: hidden;
}
.mw-instagram-feeds .feed-photo .info-holder {
opacity: 0;
-webkit-transition: opacity 0.3s ease-in;
-moz-transition: opacity 0.3s ease-in;
-o-transition: opacity 0.3s ease-in;
display: flex;
background: rgba(33, 33, 33, 0.8);
height: 100%;
color: #f4f4f4;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0 30px;
}
.mw-instagram-feeds .feed-photo .info-holder p {
color: #f4f4f4;
}
.mw-instagram-feeds .feed-photo .info-holder .counts {
width: 100%;
margin-top: 15px;
}
.mw-instagram-feeds .feed-photo .info-holder .counts span {
margin: 0 7px;
/*font-size: 12px;*/
}
.mw-instagram-feeds .feed-photo .info-holder .counts span i {
margin-right: 3px;
}
.mw-instagram-feeds .feed-photo .info-holder .counts span i.fa-heart {
color: red;
}
.mw-instagram-feeds .feed-photo:hover .info-holder {
opacity: 1;
}
.partners .partner {
height: 160px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.border-top-bottom {
border-top: solid 2px rgba(179, 183, 197, 0.5);
border-bottom: solid 2px rgba(179, 183, 197, 0.5);
}
.posts-tags .badge {
height: 26px;
display: inline-block;
position: relative;
margin-right: 10px;
background: #0044de;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
/*font-size: 12px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: normal;*/
letter-spacing: normal;
padding: 5px 10px;
margin-bottom: 10px;
}
.posts-tags .badge:after {
content: '';
display: block;
width: 0;
height: 0;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-left: 8px solid #0044de;
position: absolute;
right: -8px;
top: 0;
}
.stamped-img {
/*
width: 116px;
height: 116px;
min-width: 116px;
min-height: 116px;*/
padding-top: 102%;
width: 100%;
float: left;
margin-right: 20px;
position: relative;
}
.stamped-img img {
width: 100%;
max-width: max-content;
position: absolute;
z-index: 0;
left: 0;
top: 0;
right: 0;
border: 0;
height: 98%;
}
.stamped-img:before {
z-index: 2;
content: '';
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background: url('../img/shape.svg');
-webkit-background-size: contain;
background-size: contain;
}
.icons-with-label {
margin: 10px 0;
}
.icons-with-label span {
/*font-size: 18px;*/
/*font-weight: 600;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: 1.44;*/
letter-spacing: 0.23px;
color: #212121;
margin-right: 20px;
display: inline-block;
}
.icons-with-label span i {
/*font-size: 24px;*/
/*line-height: 18px;*/
color: #0044de;
float: left;
margin-right: 7px;
}
.prev-next-post {
padding: 30px;
background: url('../img/prev_next.jpg');
background-size: cover;
background-position: center center;
min-height: 212px;
}
.prev-next-post a {
text-decoration: none !important;
}
.prev-next-post h4,
.prev-next-post p {
color: #f4f4f4 !important;
}
.prev-next-post .link {
padding: 0 50px;
}
.prev-next-post .link a {
/*font-size: 36px;*/
/*font-weight: 900;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: normal;*/
letter-spacing: 0.35px;
color: #f4f4f4;
text-decoration: none;
}
.prev-next-post .link a i {
color: #0044de;
/*font-size: 16px;*/
}
.prev-next-post .link.left-side {
text-align: right;
}
.prev-next-post .link.left-side i {
margin-right: 10px;
}
.prev-next-post .link.right-side {
text-align: left;
}
.prev-next-post .link.right-side i {
margin-left: 10px;
}
.prev-next-post img {
float: left;
margin-right: 20px;
width: 90px;
height: 90px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
.h3-icon i {
/*font-size: 38px;*/
float: left;
margin-top: -3px;
margin-right: 10px;
color: #0044de;
}
@media screen and (max-width: 1199px) {
.h3-icon i {
margin-top: -8px;
}
}
.h4-icon i {
/*font-size: 38px;*/
float: left;
margin-top: -3px;
margin-right: 10px;
color: #0044de;
}
@media screen and (max-width: 1199px) {
.h4-icon i {
margin-top: -8px;
}
}
.mwembed {
height: auto !important;
}
.vimeo-bg-wrapper {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
overflow: hidden;
}
.vimeo-bg-wrapper iframe {
width: 100vw;
height: 56.25vw;
/* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
min-height: 100vh;
min-width: 177.77vh;
/* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.play-btn {
width: 65px;
height: 65px;
background-color: #ffffff;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
.play-btn i {
float: none;
margin: 0 auto;
}
.blog-stamp {
z-index: 11;
position: absolute;
left: 0;
right: 0;
margin-top: -340px;
}
.blog-stamp blockquote {
/*font-size: 16px;*/
/*line-height: 1.75;*/
}
.blog-stamp blockquote:before {
/*font-size: 30px;*/
margin-bottom: 5px;
}
.blog-inner-2 .posts-tags {
margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
.blog-inner-2 .posts-tags {
text-align: center;
}
}
.blog-inner-2 .socials.labels.center {
margin-bottom: 20px;
text-align: left !important;
}
.blog-inner-2 .socials.labels.center li {
margin: 0 5px 0 0;
}
.post-image-slider .slider > div {
height: 70vh;
max-height: 500px;
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
}
.post-image-slider .bx-wrapper {
border: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.post-image-slider .bx-wrapper .bx-next {
right: -21.5px;
}
.post-image-slider .bx-wrapper .bx-prev {
left: -21.5px;
}
.post-image-slider .bx-wrapper .bx-next,
.post-image-slider .bx-wrapper .bx-prev {
width: 43px;
height: 43px;
background: #0044de;
/*font-size: 0px;*/
text-indent: 0;
padding: 14px 0px;
/*line-height: 1;*/
text-align: center;
}
.post-image-slider .bx-wrapper .bx-next:hover,
.post-image-slider .bx-wrapper .bx-prev:hover {
text-decoration: none !important;
}
.post-image-slider .bx-controls-direction a.bx-prev:before,
.post-image-slider .bx-controls-direction a.bx-next:before {
/*font-family: "Font Awesome 5 Free";*/
color: #f4f4f4;
display: block;
/*font-weight: 900;*/
/*font-size: 14px;*/
}
.post-image-slider .bx-controls-direction a.bx-prev:before {
content: "\f060";
margin-left: -3px;
}
.post-image-slider .bx-controls-direction a.bx-next:before {
content: "\f061";
margin-right: -3px;
}
.post-image-slider img {
width: 100%;
}
.post-image-slider .bx-pager-link {
width: 6px !important;
height: 6px !important;
opacity: 0.5 !important;
background-color: #f4f4f4 !important;
}
.post-image-slider .bx-pager-link.active {
opacity: 1 !important;
}
.post-image-slider .bx-pager-item {
margin: 0 3px;
}
.post-image-slider .bx-wrapper .bx-pager {
bottom: 25px;
}
.home-slider h1,
.home-slider h2,
.home-slider h3,
.home-slider h4,
.home-slider h5,
.home-slider h6,
.home-slider p {
color: #ffffff;
}
.home-slider p {
/*font-size: 24px;*/
}
.home-slider .slide .img-holder {
align-items: center;
justify-content: center;
display: flex;
background-size: cover;
background-position: center center;
min-height: 750px;
max-height: 100vh;
}
.home-slider .slide .img-holder:before {
position: absolute;
left: 0;
top: 0;
background: rgba(33, 33, 33, 0.2);
content: '';
width: 100%;
height: 100%;
z-index: 1;
}
.home-slider .slide .info-holder {
z-index: 2;
}
.home-slider .slide .img-holder.right {
align-items: center;
justify-content: flex-end;
}
.home-slider .slide .img-holder.left {
align-items: center;
justify-content: flex-start;
}
.home-slider .bx-wrapper {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
border: 0 !important;
}
.home-slider .bx-wrapper .bx-controls-direction {
margin: 0 auto;
left: 0;
right: 0;
top: 50%;
position: absolute;
}
.home-slider .bx-wrapper .bx-controls-direction a {
background: none;
/*font-size: 0;*/
text-indent: 0 !important;
text-decoration: none !important;
}
.home-slider .bx-wrapper .bx-controls-direction a:before {
/*font-family: FontAwesome;*/
color: #ffffff;
display: block;
/*font-size: 20px;*/
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
}
.home-slider .bx-wrapper .bx-controls-direction a.bx-next {
right: 0%;
}
.home-slider .bx-wrapper .bx-controls-direction a.bx-next:before {
content: '\f054';
}
.home-slider .bx-wrapper .bx-controls-direction a.bx-prev {
left: 0%;
text-align: right;
}
.home-slider .bx-wrapper .bx-controls-direction a.bx-prev:before {
content: '\f053';
}
.home-slider .bx-wrapper .bx-pager {
bottom: 30px;
}
.home-slider .bx-wrapper .bx-pager.bx-default-pager a {
border: 0 !important;
height: 14px !important;
width: 14px !important;
-webkit-border-radius: 14px !important;
-moz-border-radius: 14px !important;
border-radius: 14px !important;
background: #ffffff !important;
}
.home-slider .bx-wrapper .bx-pager.bx-default-pager a.active {
background: #0044de !important;
}
.icons-slider h1,
.icons-slider h2,
.icons-slider h3,
.icons-slider h4,
.icons-slider h5,
.icons-slider h6,
.icons-slider p {
color: #f4f4f4;
}
.icons-slider p {
/*font-size: 24px;*/
}
.icons-slider .slide .img-holder {
align-items: center;
justify-content: center;
display: flex;
background-size: cover;
background-position: center center;
height: 750px;
max-height: calc(100vh - 170px);
}
.icons-slider .slide .img-holder.right {
align-items: center;
justify-content: flex-end;
}
.icons-slider .slide .img-holder.left {
align-items: center;
justify-content: flex-start;
}
.icons-slider .bx-wrapper {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
border: 0 !important;
}
.icons-slider .bx-wrapper .bx-controls-direction a {
background: none;
/*font-size: 0;*/
text-indent: 0 !important;
text-decoration: none !important;
}
.icons-slider .bx-wrapper .bx-controls-direction a:before {
/*font-family: FontAwesome;*/
color: #f4f4f4;
display: block;
/*font-size: 30px;*/
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
}
.icons-slider .bx-wrapper .bx-controls-direction a.bx-next {
right: 5%;
}
.icons-slider .bx-wrapper .bx-controls-direction a.bx-next:before {
content: '\f054';
}
.icons-slider .bx-wrapper .bx-controls-direction a.bx-prev {
left: 5%;
}
.icons-slider .bx-wrapper .bx-controls-direction a.bx-prev:before {
content: '\f053';
}
.icons-slider .bx-wrapper .bx-pager {
bottom: 30px;
}
.icons-slider .bx-wrapper .bx-pager.bx-default-pager a {
border: 0 !important;
height: 14px !important;
width: 14px !important;
-webkit-border-radius: 14px !important;
-moz-border-radius: 14px !important;
border-radius: 14px !important;
background: #ffffff !important;
}
.icons-slider .bx-wrapper .bx-pager.bx-default-pager a.active {
background: #0044de !important;
}
.icons-pager {
margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
.icons-pager {
margin-bottom: 20px;
}
}
.icons-pager .icon-holder {
margin: 0 25px;
text-decoration: none;
display: inline-block;
/*font-size: 50px;*/
color: #212121;
background: #ececec;
width: 90px;
height: 90px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
border: 1px solid #ececec;
position: relative;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-ms-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
}
@media screen and (max-width: 767px) {
.icons-pager .icon-holder {
/*font-size: 40px;*/
margin: 0 10px;
width: 70px;
height: 70px;
}
}
.icons-pager .icon-holder div {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.icons-pager .icon-holder.active {
background: #ffffff;
border: 1px solid #bfbfbf;
}
.square {
position: relative;
width: 100%;
}
.square .content {
position: absolute;
width: 100%;
height: 100%;
display: flex;
}
.square:after {
content: "";
display: block;
padding-bottom: 100%;
}
.slick-dots {
text-align: center;
margin-top: 20px;
}
@media screen and (max-width: 1199px) {
.slick-dots {
margin-top: 30px;
}
.slick-dots .slide.slick-center {
margin-top: 0px;
}
}
.slick-dots li {
display: inline-block;
/*font-size: 0px;*/
margin: 0 5px;
}
.slick-dots li button {
border: 0;
height: 11px;
width: 11px;
-webkit-border-radius: 14px;
-moz-border-radius: 14px;
border-radius: 14px;
background: #c2c2c2;
}
.slick-dots li button:before {
display: none;
}
.slick-dots li.slick-active button {
background: #0044de;
height: 16px;
width: 16px;
}
.footer-newsletter {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
overflow: hidden;
}
.footer-newsletter input,
.footer-newsletter button {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.twitter-feed-skin-1 {
/*font-size: 18px;*/
color: #f4f4f4;
}
.twitter-feed-skin-1 a {
color: #f4f4f4;
}
.twitter-feed-skin-1 p {
/*line-height: 1.35;*/
}
.twitter-feed-skin-1 h4 {
/*font-weight: 300;*/
margin-bottom: 10px;
text-transform: uppercase;
}
.twitter-feed-skin-1 i {
/*font-size: 30px;*/
margin-bottom: 30px;
}
.breadcrumb {
background-color: transparent;
justify-content: center;
}
.breadcrumb a {
color: #0044de;
/*font-size: 16px;*/
/*font-weight: bold;*/
}
.small-cta {
background: #0044de;
text-align: center;
padding: 30px 70px;
position: relative;
display: flex;
flex-flow: column;
justify-content: center;
align-items: center;
width: fit-content;
}
.small-cta h1,
.small-cta h2,
.small-cta h3,
.small-cta h4,
.small-cta h5,
.small-cta h6,
.small-cta p,
.small-cta * {
color: #f4f4f4;
}
.small-cta .icon-holder {
position: absolute;
opacity: 0.5;
left: 25px;
}
.small-cta .icon-holder i {
/*font-size: 50px;*/
}
.product-custom-fields-holder {
position: relative;
margin: 0;
}
.product-custom-fields-holder .row,
.product-custom-fields-holder div[class*='col-'] {
position: static;
}
.product-custom-fields-holder .control-label,
.product-custom-fields-holder .form-check-label {
left: 0;
position: absolute;
margin-top: 10px;
}
.product-custom-fields-holder .custom-control {
margin-left: 0px !important;
margin-right: 20px;
display: inline-block;
}
.starrr {
margin-bottom: 30px;
}
.starrr .mw-icon-web-star {
color: #ececec;
/*font-size: 16px;*/
margin: 0 3px;
}
.starrr .mw-icon-web-star:before {
content: "\f005";
/*font-family: "Font Awesome 5 Free" !important;*/
/*font-weight: 900;*/
}
.starrr .mw-icon-web-star.active {
color: #0044de;
}
.product-info-content .availability {
display: inline-block;
}
.product-info-content .availability i {
display: inline-block;
margin-right: 5px;
}
.module-categories-template-horizontal-list-1 ul.mw-cats-menu {
text-align: left;
}
.module-categories-template-horizontal-list-1 ul.mw-cats-menu li {
display: block !important;
}
.module-categories-template-horizontal-list-1 ul.mw-cats-menu li a {
/*font-size: 16px;*/
/*font-weight: bold;*/
padding: 8px 10px;
color: #212121;
}
.module-categories-template-horizontal-list-1 ul.mw-cats-menu li a:hover {
color: #0044de;
}
.module-categories-template-horizontal-list-1 ul.mw-cats-menu li a:before {
display: inline-block;
content: '\f054';
/*font-family: "Font Awesome 5 Free" !important;*/
/*font-weight: 900;*/
margin-right: 13px;
/*font-size: 12px;*/
color: #b9b9b9;
}
.shop-tags a {
color: #212121;
/*font-size: 16px;*/
/*font-weight: 700;*/
margin: 0 5px 15px 0;
display: inline-block;
}
.shop-tags a:hover {
color: #0044de;
}
.module-categories-template-horizontal-list-1 ul.mw-cats-menu > li > ul {
display: block;
position: relative;
border: 0;
padding: 0;
background: transparent;
}
.module-categories-template-horizontal-list-1 ul.mw-cats-menu > li:hover > ul {
padding: 0;
}
.module-custom-fields textarea[name="Message"] {
min-height: 200px;
}
.faq-holder.styled .item {
width: 100%;
}
.module-multilanguage .mw-dropdown-default .mw-ui-btn {
background: #0044de;
border-color: #0044de;
}
.module-multilanguage .mw-dropdown-default .mw-ui-btn .flag-icon {
margin-right: 10px;
/*font-size: 13px;*/
}
.module-multilanguage .flag-icon {
margin-right: 10px;
}
.checkout-modal .modal-header .close {
/*font-size: 16px !important;*/
}
.modal-content .table th {
background: none;
color: black;
}
.modal-content .btn-lg {
min-width: auto;
} | userfiles/templates/new-world/assets/css/css/main.css | @import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900&display=swap');
/****************************
GENERAL
*****************************/
/* Background */
/* Font Size and Family */
/* Colors */
/* Basic Meida Queries */
/* Elements */
/* Radiuses */
/*Colors for color mixer*/
/****************************
HEADER
*****************************/
/*When to open Main Menu Burger*/
/*When to open Second Menu Burger*/
/*Header Menu Navigation*/
/*Header Dropdown menu*/
/*Mobile Main Menu Navigation*/
/*Mobile Main Menu Navigation*/
/*Sidebar nav*/
/*Header member nav*/
/*Header burger*/
/*Header social*/
/*Logo on Header*/
/*Social icons General*/
body {
font-family: 'verdana';
outline: none !important;
}
img {
max-width: 100%;
}
html,
body {
/*!*font-size: 16px;*!*/
}
body {
overflow-x: hidden;
max-width: 100%;
background: #ffffff;
color: #212121;
}
a {
color: #0044de;
}
.main {
position: relative;
}
h1.hr,
h2.hr,
h3.hr,
h4.hr,
h5.hr {
display: inline-block;
}
h1.hr:after,
h2.hr:after,
h3.hr:after,
h4.hr:after,
h5.hr:after {
display: block;
content: '';
width: 65%;
max-width: 150px;
height: 8px;
background-color: #0044de;
-webkit-mask-image: url('../img/hr.svg');
mask-image: url('../img/hr.svg');
-webkit-mask-repeat: repeat-x;
mask-repeat: repeat-x;
-webkit-mask-size: contain;
mask-size: contain;
}
h1.hr:after {
margin: 15px auto 25px;
}
h2.hr:after {
margin: 30px auto;
}
h3.hr:after {
margin: 15px auto;
}
h4.hr:after {
margin: 15px auto;
}
h5.hr:after {
margin: 10px auto;
}
hr.hr {
display: inline-block;
min-height: auto !important;
border: 0;
width: 65%;
max-width: 150px;
height: 8px;
background-color: #0044de;
-webkit-mask-image: url('../img/hr.svg');
mask-image: url('../img/hr.svg');
-webkit-mask-repeat: repeat-x;
mask-repeat: repeat-x;
-webkit-mask-size: contain;
mask-size: contain;
}
.text-center h1.hr,
.text-center h2.hr,
.text-center h3.hr,
.text-center h4.hr,
.text-center h5.hr,
.text-center h6.hr {
margin-bottom: 10px;
}
.text-center h1.hr:after,
.text-center h2.hr:after,
.text-center h3.hr:after,
.text-center h4.hr:after,
.text-center h5.hr:after,
.text-center h6.hr:after {
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
text-align: center;
}
.text-left h1.hr,
.text-left h2.hr,
.text-left h3.hr,
.text-left h4.hr,
.text-left h5.hr,
.text-left h6.hr {
margin-left: 0 !important;
}
.text-left h1.hr:after,
.text-left h2.hr:after,
.text-left h3.hr:after,
.text-left h4.hr:after,
.text-left h5.hr:after,
.text-left h6.hr:after {
display: block;
width: 100%;
margin-left: 0;
margin-right: 0;
}
@media screen and (max-width: 991px) {
.text-lg-center h1.hr,
.text-lg-center h2.hr,
.text-lg-center h3.hr,
.text-lg-center h4.hr,
.text-lg-center h5.hr,
.text-lg-center h6.hr {
text-align: center;
}
.text-lg-center h1.hr:after,
.text-lg-center h2.hr:after,
.text-lg-center h3.hr:after,
.text-lg-center h4.hr:after,
.text-lg-center h5.hr:after,
.text-lg-center h6.hr:after {
text-align: center;
margin-left: auto;
margin-right: auto;
}
}
@media screen and (min-width: 991px) {
.text-lg-left h1.hr,
.text-lg-left h2.hr,
.text-lg-left h3.hr,
.text-lg-left h4.hr,
.text-lg-left h5.hr,
.text-lg-left h6.hr {
text-align: left;
}
.text-lg-left h1.hr:after,
.text-lg-left h2.hr:after,
.text-lg-left h3.hr:after,
.text-lg-left h4.hr:after,
.text-lg-left h5.hr:after,
.text-lg-left h6.hr:after {
text-align: left;
margin-left: 0;
margin-right: 0;
}
}
h1 {
/*font-size: 50px;*/
color: #212121;
/*font-weight: bold;*/
}
@media screen and (max-width: 1199px) {
h1 {
/*font-size: 46px;*/
}
}
h2 {
/*font-size: 46px;*/
color: #212121;
/*font-weight: 700;*/
}
@media screen and (max-width: 1199px) {
h2 {
/*font-size: 36px;*/
}
}
h3 {
/*font-size: 36px;*/
color: #212121;
/*font-weight: 600;*/
/* @media screen and (max-width: 767px) {
/*font-size: @title-xs;*/
}*/
}
@media screen and (max-width: 1199px) {
h3 {
/*font-size: 24px;*/
}
}
h4 {
/*font-size: 24px;*/
color: #212121;
/*font-weight: bold;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
}
@media screen and (max-width: 1199px) {
h4 {
/*font-size: 18px;*/
}
}
h5 {
/*font-size: 18px;*/
color: #212121;
/*font-weight: 600;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
}
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p {
color: #f4f4f4 !important;
}
.bg-default h1,
.bg-default h2,
.bg-default h3,
.bg-default h4,
.bg-default h5 {
color: #f4f4f4;
}
.text-background {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 0;
overflow: hidden;
opacity: 0.1;
/*font-size: 140px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 120px;*/
letter-spacing: normal;
color: #212121;
}
.text-background.xl {
/*font-size: 300px;*/
/*line-height: 280px;*/
}
.bg-default {
background-color: #212121;
}
.bg-primary {
background-color: #0044de !important;
}
.bg-secondary {
background-color: #6aabcf !important;
}
.bg-silver {
background-color: #f3f3f3 !important;
}
.bg-content-box {
background-clip: content-box;
/* @media screen and (max-width: 991px) {
background-clip: border-box;
}*/
}
.typography-area ul:not(.ul),
.typography-area ol:not(.ol) {
padding-left: 15px;
}
.typography-area ul:not(.ul) li {
display: list-item;
list-style-type: disc;
}
.typography-area ol:not(.ol) li {
list-style-type: decimal;
display: list-item;
list-style-type: disc;
}
.typography-area img {
max-width: 100%;
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
Created on : Jun 28, 2019, 11:47:53 AM
Author : m.petkov
*/
/*Color mixer*/
.bg-default,
.badge-default,
.icon-bg-default,
.hr-bg-default {
background-color: #212121;
}
.module-hr-bg-default div[class*="hr-"] {
background-color: #212121 !important;
}
.text-default {
color: #212121 !important;
}
.text-default > *:not(font),
.text-default .btn-link,
.icon-default {
color: #212121 !important;
}
.border-default-1 {
border: 1px solid #212121;
}
.border-default-2 {
border: 2px solid #212121;
}
.border-default-3 {
border: 3px solid #212121;
}
.border-default-4 {
border: 4px solid #212121;
}
.border-default-5 {
border: 5px solid #212121;
}
.border-default-6 {
border: 6px solid #212121;
}
.border-default-7 {
border: 7px solid #212121;
}
.border-default-8 {
border: 8px solid #212121;
}
.border-default-9 {
border: 9px solid #212121;
}
.border-default-10 {
border: 10px solid #212121;
}
.border-top-default-1 {
border-top: 1px solid #212121;
}
.border-top-default-2 {
border-top: 2px solid #212121;
}
.border-top-default-3 {
border-top: 3px solid #212121;
}
.border-top-default-4 {
border-top: 4px solid #212121;
}
.border-top-default-5 {
border-top: 5px solid #212121;
}
.border-top-default-6 {
border-top: 6px solid #212121;
}
.border-top-default-7 {
border-top: 7px solid #212121;
}
.border-top-default-8 {
border-top: 8px solid #212121;
}
.border-top-default-9 {
border-top: 9px solid #212121;
}
.border-top-default-10 {
border-top: 10px solid #212121;
}
.border-right-default-1 {
border-right: 1px solid #212121;
}
.border-right-default-2 {
border-right: 2px solid #212121;
}
.border-right-default-3 {
border-right: 3px solid #212121;
}
.border-right-default-4 {
border-right: 4px solid #212121;
}
.border-right-default-5 {
border-right: 5px solid #212121;
}
.border-right-default-6 {
border-right: 6px solid #212121;
}
.border-right-default-7 {
border-right: 7px solid #212121;
}
.border-right-default-8 {
border-right: 8px solid #212121;
}
.border-right-default-9 {
border-right: 9px solid #212121;
}
.border-right-default-10 {
border-right: 10px solid #212121;
}
.border-bottom-default-1 {
border-bottom: 1px solid #212121;
}
.border-bottom-default-2 {
border-bottom: 2px solid #212121;
}
.border-bottom-default-3 {
border-bottom: 3px solid #212121;
}
.border-bottom-default-4 {
border-bottom: 4px solid #212121;
}
.border-bottom-default-5 {
border-bottom: 5px solid #212121;
}
.border-bottom-default-6 {
border-bottom: 6px solid #212121;
}
.border-bottom-default-7 {
border-bottom: 7px solid #212121;
}
.border-bottom-default-8 {
border-bottom: 8px solid #212121;
}
.border-bottom-default-9 {
border-bottom: 9px solid #212121;
}
.border-bottom-default-10 {
border-bottom: 10px solid #212121;
}
.border-left-default-1 {
border-left: 1px solid #212121;
}
.border-left-default-2 {
border-left: 2px solid #212121;
}
.border-left-default-3 {
border-left: 3px solid #212121;
}
.border-left-default-4 {
border-left: 4px solid #212121;
}
.border-left-default-5 {
border-left: 5px solid #212121;
}
.border-left-default-6 {
border-left: 6px solid #212121;
}
.border-left-default-7 {
border-left: 7px solid #212121;
}
.border-left-default-8 {
border-left: 8px solid #212121;
}
.border-left-default-9 {
border-left: 9px solid #212121;
}
.border-left-default-10 {
border-left: 10px solid #212121;
}
.bg-primary,
.badge-primary,
.icon-bg-primary,
.hr-bg-primary {
background-color: #0044de;
}
.module-hr-bg-primary div[class*="hr-"] {
background-color: #0044de !important;
}
.text-primary {
color: #0044de !important;
}
.text-primary > *:not(font),
.text-primary .btn-link,
.icon-primary {
color: #0044de !important;
}
.border-primary-1 {
border: 1px solid #0044de;
}
.border-primary-2 {
border: 2px solid #0044de;
}
.border-primary-3 {
border: 3px solid #0044de;
}
.border-primary-4 {
border: 4px solid #0044de;
}
.border-primary-5 {
border: 5px solid #0044de;
}
.border-primary-6 {
border: 6px solid #0044de;
}
.border-primary-7 {
border: 7px solid #0044de;
}
.border-primary-8 {
border: 8px solid #0044de;
}
.border-primary-9 {
border: 9px solid #0044de;
}
.border-primary-10 {
border: 10px solid #0044de;
}
.border-top-primary-1 {
border-top: 1px solid #0044de;
}
.border-top-primary-2 {
border-top: 2px solid #0044de;
}
.border-top-primary-3 {
border-top: 3px solid #0044de;
}
.border-top-primary-4 {
border-top: 4px solid #0044de;
}
.border-top-primary-5 {
border-top: 5px solid #0044de;
}
.border-top-primary-6 {
border-top: 6px solid #0044de;
}
.border-top-primary-7 {
border-top: 7px solid #0044de;
}
.border-top-primary-8 {
border-top: 8px solid #0044de;
}
.border-top-primary-9 {
border-top: 9px solid #0044de;
}
.border-top-primary-10 {
border-top: 10px solid #0044de;
}
.border-right-primary-1 {
border-right: 1px solid #0044de;
}
.border-right-primary-2 {
border-right: 2px solid #0044de;
}
.border-right-primary-3 {
border-right: 3px solid #0044de;
}
.border-right-primary-4 {
border-right: 4px solid #0044de;
}
.border-right-primary-5 {
border-right: 5px solid #0044de;
}
.border-right-primary-6 {
border-right: 6px solid #0044de;
}
.border-right-primary-7 {
border-right: 7px solid #0044de;
}
.border-right-primary-8 {
border-right: 8px solid #0044de;
}
.border-right-primary-9 {
border-right: 9px solid #0044de;
}
.border-right-primary-10 {
border-right: 10px solid #0044de;
}
.border-bottom-primary-1 {
border-bottom: 1px solid #0044de;
}
.border-bottom-primary-2 {
border-bottom: 2px solid #0044de;
}
.border-bottom-primary-3 {
border-bottom: 3px solid #0044de;
}
.border-bottom-primary-4 {
border-bottom: 4px solid #0044de;
}
.border-bottom-primary-5 {
border-bottom: 5px solid #0044de;
}
.border-bottom-primary-6 {
border-bottom: 6px solid #0044de;
}
.border-bottom-primary-7 {
border-bottom: 7px solid #0044de;
}
.border-bottom-primary-8 {
border-bottom: 8px solid #0044de;
}
.border-bottom-primary-9 {
border-bottom: 9px solid #0044de;
}
.border-bottom-primary-10 {
border-bottom: 10px solid #0044de;
}
.border-left-primary-1 {
border-left: 1px solid #0044de;
}
.border-left-primary-2 {
border-left: 2px solid #0044de;
}
.border-left-primary-3 {
border-left: 3px solid #0044de;
}
.border-left-primary-4 {
border-left: 4px solid #0044de;
}
.border-left-primary-5 {
border-left: 5px solid #0044de;
}
.border-left-primary-6 {
border-left: 6px solid #0044de;
}
.border-left-primary-7 {
border-left: 7px solid #0044de;
}
.border-left-primary-8 {
border-left: 8px solid #0044de;
}
.border-left-primary-9 {
border-left: 9px solid #0044de;
}
.border-left-primary-10 {
border-left: 10px solid #0044de;
}
.bg-secondary,
.badge-secondary,
.icon-bg-secondary,
.hr-bg-secondary {
background-color: #6aabcf;
}
.module-hr-bg-secondary div[class*="hr-"] {
background-color: #6aabcf !important;
}
.text-secondary {
color: #6aabcf !important;
}
.text-secondary > *:not(font),
.text-secondary .btn-link,
.icon-secondary {
color: #6aabcf !important;
}
.border-secondary-1 {
border: 1px solid #6aabcf;
}
.border-secondary-2 {
border: 2px solid #6aabcf;
}
.border-secondary-3 {
border: 3px solid #6aabcf;
}
.border-secondary-4 {
border: 4px solid #6aabcf;
}
.border-secondary-5 {
border: 5px solid #6aabcf;
}
.border-secondary-6 {
border: 6px solid #6aabcf;
}
.border-secondary-7 {
border: 7px solid #6aabcf;
}
.border-secondary-8 {
border: 8px solid #6aabcf;
}
.border-secondary-9 {
border: 9px solid #6aabcf;
}
.border-secondary-10 {
border: 10px solid #6aabcf;
}
.border-top-secondary-1 {
border-top: 1px solid #6aabcf;
}
.border-top-secondary-2 {
border-top: 2px solid #6aabcf;
}
.border-top-secondary-3 {
border-top: 3px solid #6aabcf;
}
.border-top-secondary-4 {
border-top: 4px solid #6aabcf;
}
.border-top-secondary-5 {
border-top: 5px solid #6aabcf;
}
.border-top-secondary-6 {
border-top: 6px solid #6aabcf;
}
.border-top-secondary-7 {
border-top: 7px solid #6aabcf;
}
.border-top-secondary-8 {
border-top: 8px solid #6aabcf;
}
.border-top-secondary-9 {
border-top: 9px solid #6aabcf;
}
.border-top-secondary-10 {
border-top: 10px solid #6aabcf;
}
.border-right-secondary-1 {
border-right: 1px solid #6aabcf;
}
.border-right-secondary-2 {
border-right: 2px solid #6aabcf;
}
.border-right-secondary-3 {
border-right: 3px solid #6aabcf;
}
.border-right-secondary-4 {
border-right: 4px solid #6aabcf;
}
.border-right-secondary-5 {
border-right: 5px solid #6aabcf;
}
.border-right-secondary-6 {
border-right: 6px solid #6aabcf;
}
.border-right-secondary-7 {
border-right: 7px solid #6aabcf;
}
.border-right-secondary-8 {
border-right: 8px solid #6aabcf;
}
.border-right-secondary-9 {
border-right: 9px solid #6aabcf;
}
.border-right-secondary-10 {
border-right: 10px solid #6aabcf;
}
.border-bottom-secondary-1 {
border-bottom: 1px solid #6aabcf;
}
.border-bottom-secondary-2 {
border-bottom: 2px solid #6aabcf;
}
.border-bottom-secondary-3 {
border-bottom: 3px solid #6aabcf;
}
.border-bottom-secondary-4 {
border-bottom: 4px solid #6aabcf;
}
.border-bottom-secondary-5 {
border-bottom: 5px solid #6aabcf;
}
.border-bottom-secondary-6 {
border-bottom: 6px solid #6aabcf;
}
.border-bottom-secondary-7 {
border-bottom: 7px solid #6aabcf;
}
.border-bottom-secondary-8 {
border-bottom: 8px solid #6aabcf;
}
.border-bottom-secondary-9 {
border-bottom: 9px solid #6aabcf;
}
.border-bottom-secondary-10 {
border-bottom: 10px solid #6aabcf;
}
.border-left-secondary-1 {
border-left: 1px solid #6aabcf;
}
.border-left-secondary-2 {
border-left: 2px solid #6aabcf;
}
.border-left-secondary-3 {
border-left: 3px solid #6aabcf;
}
.border-left-secondary-4 {
border-left: 4px solid #6aabcf;
}
.border-left-secondary-5 {
border-left: 5px solid #6aabcf;
}
.border-left-secondary-6 {
border-left: 6px solid #6aabcf;
}
.border-left-secondary-7 {
border-left: 7px solid #6aabcf;
}
.border-left-secondary-8 {
border-left: 8px solid #6aabcf;
}
.border-left-secondary-9 {
border-left: 9px solid #6aabcf;
}
.border-left-secondary-10 {
border-left: 10px solid #6aabcf;
}
.bg-dark,
.badge-dark,
.icon-bg-dark,
.hr-bg-dark {
background-color: #212121;
}
.module-hr-bg-dark div[class*="hr-"] {
background-color: #212121 !important;
}
.text-dark {
color: #212121 !important;
}
.text-dark > *:not(font),
.text-dark .btn-link,
.icon-dark {
color: #212121 !important;
}
.border-dark-1 {
border: 1px solid #212121;
}
.border-dark-2 {
border: 2px solid #212121;
}
.border-dark-3 {
border: 3px solid #212121;
}
.border-dark-4 {
border: 4px solid #212121;
}
.border-dark-5 {
border: 5px solid #212121;
}
.border-dark-6 {
border: 6px solid #212121;
}
.border-dark-7 {
border: 7px solid #212121;
}
.border-dark-8 {
border: 8px solid #212121;
}
.border-dark-9 {
border: 9px solid #212121;
}
.border-dark-10 {
border: 10px solid #212121;
}
.border-top-dark-1 {
border-top: 1px solid #212121;
}
.border-top-dark-2 {
border-top: 2px solid #212121;
}
.border-top-dark-3 {
border-top: 3px solid #212121;
}
.border-top-dark-4 {
border-top: 4px solid #212121;
}
.border-top-dark-5 {
border-top: 5px solid #212121;
}
.border-top-dark-6 {
border-top: 6px solid #212121;
}
.border-top-dark-7 {
border-top: 7px solid #212121;
}
.border-top-dark-8 {
border-top: 8px solid #212121;
}
.border-top-dark-9 {
border-top: 9px solid #212121;
}
.border-top-dark-10 {
border-top: 10px solid #212121;
}
.border-right-dark-1 {
border-right: 1px solid #212121;
}
.border-right-dark-2 {
border-right: 2px solid #212121;
}
.border-right-dark-3 {
border-right: 3px solid #212121;
}
.border-right-dark-4 {
border-right: 4px solid #212121;
}
.border-right-dark-5 {
border-right: 5px solid #212121;
}
.border-right-dark-6 {
border-right: 6px solid #212121;
}
.border-right-dark-7 {
border-right: 7px solid #212121;
}
.border-right-dark-8 {
border-right: 8px solid #212121;
}
.border-right-dark-9 {
border-right: 9px solid #212121;
}
.border-right-dark-10 {
border-right: 10px solid #212121;
}
.border-bottom-dark-1 {
border-bottom: 1px solid #212121;
}
.border-bottom-dark-2 {
border-bottom: 2px solid #212121;
}
.border-bottom-dark-3 {
border-bottom: 3px solid #212121;
}
.border-bottom-dark-4 {
border-bottom: 4px solid #212121;
}
.border-bottom-dark-5 {
border-bottom: 5px solid #212121;
}
.border-bottom-dark-6 {
border-bottom: 6px solid #212121;
}
.border-bottom-dark-7 {
border-bottom: 7px solid #212121;
}
.border-bottom-dark-8 {
border-bottom: 8px solid #212121;
}
.border-bottom-dark-9 {
border-bottom: 9px solid #212121;
}
.border-bottom-dark-10 {
border-bottom: 10px solid #212121;
}
.border-left-dark-1 {
border-left: 1px solid #212121;
}
.border-left-dark-2 {
border-left: 2px solid #212121;
}
.border-left-dark-3 {
border-left: 3px solid #212121;
}
.border-left-dark-4 {
border-left: 4px solid #212121;
}
.border-left-dark-5 {
border-left: 5px solid #212121;
}
.border-left-dark-6 {
border-left: 6px solid #212121;
}
.border-left-dark-7 {
border-left: 7px solid #212121;
}
.border-left-dark-8 {
border-left: 8px solid #212121;
}
.border-left-dark-9 {
border-left: 9px solid #212121;
}
.border-left-dark-10 {
border-left: 10px solid #212121;
}
.bg-light,
.badge-light,
.icon-bg-light,
.hr-bg-light {
background-color: #f4f4f4;
}
.module-hr-bg-light div[class*="hr-"] {
background-color: #f4f4f4 !important;
}
.text-light {
color: #f4f4f4 !important;
}
.text-light > *:not(font),
.text-light .btn-link,
.icon-light {
color: #f4f4f4 !important;
}
.border-light-1 {
border: 1px solid #f4f4f4;
}
.border-light-2 {
border: 2px solid #f4f4f4;
}
.border-light-3 {
border: 3px solid #f4f4f4;
}
.border-light-4 {
border: 4px solid #f4f4f4;
}
.border-light-5 {
border: 5px solid #f4f4f4;
}
.border-light-6 {
border: 6px solid #f4f4f4;
}
.border-light-7 {
border: 7px solid #f4f4f4;
}
.border-light-8 {
border: 8px solid #f4f4f4;
}
.border-light-9 {
border: 9px solid #f4f4f4;
}
.border-light-10 {
border: 10px solid #f4f4f4;
}
.border-top-light-1 {
border-top: 1px solid #f4f4f4;
}
.border-top-light-2 {
border-top: 2px solid #f4f4f4;
}
.border-top-light-3 {
border-top: 3px solid #f4f4f4;
}
.border-top-light-4 {
border-top: 4px solid #f4f4f4;
}
.border-top-light-5 {
border-top: 5px solid #f4f4f4;
}
.border-top-light-6 {
border-top: 6px solid #f4f4f4;
}
.border-top-light-7 {
border-top: 7px solid #f4f4f4;
}
.border-top-light-8 {
border-top: 8px solid #f4f4f4;
}
.border-top-light-9 {
border-top: 9px solid #f4f4f4;
}
.border-top-light-10 {
border-top: 10px solid #f4f4f4;
}
.border-right-light-1 {
border-right: 1px solid #f4f4f4;
}
.border-right-light-2 {
border-right: 2px solid #f4f4f4;
}
.border-right-light-3 {
border-right: 3px solid #f4f4f4;
}
.border-right-light-4 {
border-right: 4px solid #f4f4f4;
}
.border-right-light-5 {
border-right: 5px solid #f4f4f4;
}
.border-right-light-6 {
border-right: 6px solid #f4f4f4;
}
.border-right-light-7 {
border-right: 7px solid #f4f4f4;
}
.border-right-light-8 {
border-right: 8px solid #f4f4f4;
}
.border-right-light-9 {
border-right: 9px solid #f4f4f4;
}
.border-right-light-10 {
border-right: 10px solid #f4f4f4;
}
.border-bottom-light-1 {
border-bottom: 1px solid #f4f4f4;
}
.border-bottom-light-2 {
border-bottom: 2px solid #f4f4f4;
}
.border-bottom-light-3 {
border-bottom: 3px solid #f4f4f4;
}
.border-bottom-light-4 {
border-bottom: 4px solid #f4f4f4;
}
.border-bottom-light-5 {
border-bottom: 5px solid #f4f4f4;
}
.border-bottom-light-6 {
border-bottom: 6px solid #f4f4f4;
}
.border-bottom-light-7 {
border-bottom: 7px solid #f4f4f4;
}
.border-bottom-light-8 {
border-bottom: 8px solid #f4f4f4;
}
.border-bottom-light-9 {
border-bottom: 9px solid #f4f4f4;
}
.border-bottom-light-10 {
border-bottom: 10px solid #f4f4f4;
}
.border-left-light-1 {
border-left: 1px solid #f4f4f4;
}
.border-left-light-2 {
border-left: 2px solid #f4f4f4;
}
.border-left-light-3 {
border-left: 3px solid #f4f4f4;
}
.border-left-light-4 {
border-left: 4px solid #f4f4f4;
}
.border-left-light-5 {
border-left: 5px solid #f4f4f4;
}
.border-left-light-6 {
border-left: 6px solid #f4f4f4;
}
.border-left-light-7 {
border-left: 7px solid #f4f4f4;
}
.border-left-light-8 {
border-left: 8px solid #f4f4f4;
}
.border-left-light-9 {
border-left: 9px solid #f4f4f4;
}
.border-left-light-10 {
border-left: 10px solid #f4f4f4;
}
.bg-"grey",
.badge-"grey",
.icon-bg-"grey",
.hr-bg-"grey" {
background-color: #bfbfbf;
}
.module-hr-bg-"grey" div[class*="hr-"] {
background-color: #bfbfbf !important;
}
.text-"grey" {
color: #bfbfbf !important;
}
.text-"grey" > *:not(font),
.text-"grey" .btn-link,
.icon-"grey" {
color: #bfbfbf !important;
}
.border-"grey"-1 {
border: 1px solid #bfbfbf;
}
.border-"grey"-2 {
border: 2px solid #bfbfbf;
}
.border-"grey"-3 {
border: 3px solid #bfbfbf;
}
.border-"grey"-4 {
border: 4px solid #bfbfbf;
}
.border-"grey"-5 {
border: 5px solid #bfbfbf;
}
.border-"grey"-6 {
border: 6px solid #bfbfbf;
}
.border-"grey"-7 {
border: 7px solid #bfbfbf;
}
.border-"grey"-8 {
border: 8px solid #bfbfbf;
}
.border-"grey"-9 {
border: 9px solid #bfbfbf;
}
.border-"grey"-10 {
border: 10px solid #bfbfbf;
}
.border-top-"grey"-1 {
border-top: 1px solid #bfbfbf;
}
.border-top-"grey"-2 {
border-top: 2px solid #bfbfbf;
}
.border-top-"grey"-3 {
border-top: 3px solid #bfbfbf;
}
.border-top-"grey"-4 {
border-top: 4px solid #bfbfbf;
}
.border-top-"grey"-5 {
border-top: 5px solid #bfbfbf;
}
.border-top-"grey"-6 {
border-top: 6px solid #bfbfbf;
}
.border-top-"grey"-7 {
border-top: 7px solid #bfbfbf;
}
.border-top-"grey"-8 {
border-top: 8px solid #bfbfbf;
}
.border-top-"grey"-9 {
border-top: 9px solid #bfbfbf;
}
.border-top-"grey"-10 {
border-top: 10px solid #bfbfbf;
}
.border-right-"grey"-1 {
border-right: 1px solid #bfbfbf;
}
.border-right-"grey"-2 {
border-right: 2px solid #bfbfbf;
}
.border-right-"grey"-3 {
border-right: 3px solid #bfbfbf;
}
.border-right-"grey"-4 {
border-right: 4px solid #bfbfbf;
}
.border-right-"grey"-5 {
border-right: 5px solid #bfbfbf;
}
.border-right-"grey"-6 {
border-right: 6px solid #bfbfbf;
}
.border-right-"grey"-7 {
border-right: 7px solid #bfbfbf;
}
.border-right-"grey"-8 {
border-right: 8px solid #bfbfbf;
}
.border-right-"grey"-9 {
border-right: 9px solid #bfbfbf;
}
.border-right-"grey"-10 {
border-right: 10px solid #bfbfbf;
}
.border-bottom-"grey"-1 {
border-bottom: 1px solid #bfbfbf;
}
.border-bottom-"grey"-2 {
border-bottom: 2px solid #bfbfbf;
}
.border-bottom-"grey"-3 {
border-bottom: 3px solid #bfbfbf;
}
.border-bottom-"grey"-4 {
border-bottom: 4px solid #bfbfbf;
}
.border-bottom-"grey"-5 {
border-bottom: 5px solid #bfbfbf;
}
.border-bottom-"grey"-6 {
border-bottom: 6px solid #bfbfbf;
}
.border-bottom-"grey"-7 {
border-bottom: 7px solid #bfbfbf;
}
.border-bottom-"grey"-8 {
border-bottom: 8px solid #bfbfbf;
}
.border-bottom-"grey"-9 {
border-bottom: 9px solid #bfbfbf;
}
.border-bottom-"grey"-10 {
border-bottom: 10px solid #bfbfbf;
}
.border-left-"grey"-1 {
border-left: 1px solid #bfbfbf;
}
.border-left-"grey"-2 {
border-left: 2px solid #bfbfbf;
}
.border-left-"grey"-3 {
border-left: 3px solid #bfbfbf;
}
.border-left-"grey"-4 {
border-left: 4px solid #bfbfbf;
}
.border-left-"grey"-5 {
border-left: 5px solid #bfbfbf;
}
.border-left-"grey"-6 {
border-left: 6px solid #bfbfbf;
}
.border-left-"grey"-7 {
border-left: 7px solid #bfbfbf;
}
.border-left-"grey"-8 {
border-left: 8px solid #bfbfbf;
}
.border-left-"grey"-9 {
border-left: 9px solid #bfbfbf;
}
.border-left-"grey"-10 {
border-left: 10px solid #bfbfbf;
}
.cuted:after,
.cuted-top:before,
.cutted-bottom:after {
pointer-events: none;
}
.main-content {
overflow: hidden;
}
.main-content p {
color: #212121;
/*font-size: 18px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.75;*/
letter-spacing: normal;
/* @media screen and (max-width: 767px) {
/*font-size: @paragraph-sm;*/
}*/
}
@media screen and (max-width: 1199px) {
.main-content p {
/*font-size: 14px;*/
}
}
.main-content p.highlight {
color: #212121;
/*font-size: 18px !important;*/
position: relative !important;
/*font-weight: 600 !important;*/
/*font-style: normal !important;*/
font-stretch: normal !important;
/*line-height: 1.44 !important;*/
letter-spacing: 0.23px !important;
padding-left: 30px !important;
text-align: left !important;
/*
@media screen and (max-width: 767px) {
/*font-size: @paragraph-md;*/
}
*/
}
@media screen and (max-width: 1199px) {
.main-content p.highlight {
/*font-size: 16px !important;*/
}
}
.main-content p.highlight:before {
display: block;
content: '';
width: 10px;
height: 100%;
position: absolute;
margin-left: -30px;
background-color: #0044de;
-webkit-mask-image: url('../img/hr-vertical.svg');
mask-image: url('../img/hr-vertical.svg');
-webkit-mask-repeat: repeat-y;
mask-repeat: repeat-y;
-webkit-mask-size: cover;
mask-size: cover;
}
.main-content p.lead {
color: #212121;
/*font-size: 24px !important;*/
position: relative !important;
/*font-weight: 300 !important;*/
/*font-style: normal !important;*/
font-stretch: normal !important;
/*line-height: 1.44 !important;*/
letter-spacing: 0.23px !important;
}
@media screen and (max-width: 1199px) {
.main-content p.lead {
/*font-size: 16px !important;*/
}
}
.main-content blockquote {
/*font-size: 36px;*/
/*font-weight: 300;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.32;*/
letter-spacing: 0.35px;
text-align: center;
color: #303953;
}
.main-content blockquote:before {
width: 100%;
content: '\f10e';
display: inline-block;
/*font-family: "Font Awesome 5 Free";*/
/*font-weight: 900;*/
margin: 25px auto;
left: 0;
right: 0;
text-align: center;
}
.main-content blockquote .testimonial {
margin-top: 40px;
}
.main-content blockquote .testimonial img {
width: 81px;
height: 81px;
object-fit: contain;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
margin-bottom: 15px;
}
.main-content blockquote .testimonial .name {
display: block;
/*font-size: 18px;*/
/*font-weight: 600;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.44;*/
letter-spacing: 0.23px;
text-align: center;
color: #212121;
}
.main-content blockquote .testimonial .info {
display: block;
/*font-size: 16px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.75;*/
letter-spacing: normal;
text-align: center;
color: #b3b7c5;
}
.main-content blockquote.text-white .testimonial .name,
.main-content blockquote.text-white .testimonial .info {
color: #f4f4f4;
}
.main-content blockquote.small {
/*font-size: 16px;*/
text-align: left;
}
.main-content blockquote.small:before {
text-align: left;
margin: 25px auto 25px 0;
}
.main-content blockquote.small .testimonial .name {
text-align: left;
}
.main-content blockquote.small .testimonial .info {
text-align: left;
}
.main-content .bg-default p,
.main-content .bg-default p.lead,
.main-content .bg-default p.highlight,
.main-content .bg-default blockquote,
.main-content .bg-default blockquote.small {
color: #f4f4f4;
}
.main-content .text-left blockquote {
text-align: left;
}
.main-content .text-left blockquote:before {
text-align: left;
margin: 0 auto 25px 0;
}
.main-content .text-left blockquote .testimonial .name {
text-align: left;
}
.main-content .text-left blockquote .testimonial .info {
text-align: left;
}
.main-content small {
color: #979aa6;
/*font-size: 14px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.71;*/
letter-spacing: normal;
}
@media screen and (max-width: 1199px) {
.main-content small {
/*font-size: 14px;*/
}
}
@media screen and (max-width: 767px) {
.main-content small {
/*font-size: 12px;*/
}
}
.main-content ol.ol {
padding-left: 15px;
}
.main-content ol.ol li {
color: #0044de;
text-align: left;
margin-bottom: 20px;
list-style-type: decimal;
/*font-weight: bold;*/
/*font-size: 16px;*/
}
.main-content ol.ol li:after {
clear: both;
display: block;
content: '';
}
.main-content ol.ol li:before {
content: '|';
display: block;
/*font-weight: 900;*/
margin-right: 10px;
float: left;
}
.main-content ol.ol li span {
color: #212121;
float: left;
display: block;
/*font-weight: normal;*/
width: calc(100% - 25px);
}
.main-content ul.ul li {
color: #0044de;
text-align: left;
margin-bottom: 20px;
/*font-size: 16px;*/
}
.main-content ul.ul li:after {
clear: both;
display: block;
content: '';
}
.main-content ul.ul li:before {
/*font-family: "Font Awesome 5 Free";*/
content: '\f061';
display: block;
/*font-weight: 900;*/
margin-right: 10px;
float: left;
}
.main-content ul.ul li span {
color: #212121;
float: left;
display: block;
width: calc(100% - 25px);
}
.main-content section {
z-index: 9;
position: relative;
clear: both;
}
.main-content section > div {
z-index: 3;
position: relative;
}
.main-content nav {
z-index: 2;
}
.main-content .hidden {
display: none;
}
@media (min-width: 1200px) {
.main-content .hidden-lg {
display: none !important;
}
}
@media (max-width: 1199px) and (min-width: 992px) {
.main-content .hidden-md {
display: none !important;
}
}
@media (max-width: 991px) and (min-width: 768px) {
.main-content .hidden-sm {
display: none !important;
}
}
@media (max-width: 767px) {
.main-content .hidden-xs {
display: none !important;
}
}
.main-content .row-eq-height {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.shadow-sm {
-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
-moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
}
.shadow-md {
-webkit-box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
}
/* Background */
.background-image-holder {
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
position: static;
}
[data-bg-contain] .background-image-holder {
background-size: contain;
}
[data-parallax] .background-image-holder {
background-attachment: fixed;
}
@media screen and (max-width: 767px) {
[data-parallax] .background-image-holder {
background-attachment: scroll;
}
}
[data-background-position="center top"] .background-image-holder {
background-position: center top;
}
[data-background-position="center bottom"] .background-image-holder {
background-position: center bottom;
}
[background-position="center center"] .background-image-holder {
background-position: center center;
}
[data-overlay] {
position: relative;
}
[data-overlay] .background-image-holder:after {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: linear-gradient(to bottom right, #212121, #545454);
opacity: 0.5;
z-index: 2;
pointer-events: none;
}
[data-overlay-inverse] .background-image-holder:after {
background-image: linear-gradient(to bottom right, #0044de, #457eff);
}
[data-overlay-black] .background-image-holder:after {
background-image: linear-gradient(to bottom right, #000000, #000000);
}
[data-overlay="1"] .background-image-holder:after {
opacity: 0.1;
}
[data-overlay="2"] .background-image-holder:after {
opacity: 0.2;
}
[data-overlay="3"] .background-image-holder:after {
opacity: 0.3;
}
[data-overlay="4"] .background-image-holder:after {
opacity: 0.4;
}
[data-overlay="5"] .background-image-holder:after {
opacity: 0.5;
}
[data-overlay="6"] .background-image-holder:after {
opacity: 0.6;
}
[data-overlay="7"] .background-image-holder:after {
opacity: 0.7;
}
[data-overlay="8"] .background-image-holder:after {
opacity: 0.8;
}
[data-overlay="9"] .background-image-holder:after {
opacity: 0.9;
}
[data-overlay="10"] .background-image-holder:after {
opacity: 1;
}
.form-control {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border-color: #d8d8d8;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
outline: 0 !important;
color: #212121;
height: calc(1.5em + .75rem + 4px);
}
.form-control:focus {
border-color: #0044de;
-webkit-box-shadow: 0 0 10px rgba(0, 68, 222, 0.5) !important;
box-shadow: 0 0 10px rgba(0, 68, 222, 0.5) !important;
}
.form-control::placeholder {
/* Chrome, Firefox, Opera, Safari 10.1+ */
color: #cacaca;
opacity: 1;
/* Firefox */
}
.form-control:-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: #cacaca;
}
.form-control::-ms-input-placeholder {
/* Microsoft Edge */
color: #cacaca;
}
.bootstrap-select .dropdown-toggle:focus,
.btn:focus,
.btn-group .dropdown-toggle:active,
.btn-group.show .dropdown-toggle {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
outline: 0 !important;
}
.module {
/*line-height: 1;*/
}
.custom-control.custom-radio.d-inline-block,
.custom-control.custom-checkbox.d-inline-block,
.custom-control.custom-switch.d-inline-block {
margin-left: 20px;
}
.custom-control.custom-radio.d-inline-block:first-of-type,
.custom-control.custom-checkbox.d-inline-block:first-of-type,
.custom-control.custom-switch.d-inline-block:first-of-type {
margin-left: 0;
}
.custom-control.custom-radio .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0.2rem rgba(0, 68, 222, 0.25);
}
.custom-control.custom-radio:first-of-type {
margin-left: 0;
}
.custom-control.custom-radio .custom-control-label {
padding-top: 2px;
/*line-height: 1.5;*/
}
.custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
background: #0044de;
border: 3px solid #fff;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
width: 13px;
height: 13px;
}
.custom-control.custom-radio .custom-control-label::before {
width: 13px;
height: 13px;
}
.custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
background: #0044de;
width: 15px;
height: 15px;
border-color: #6c757d;
}
.custom-control.custom-radio .custom-control-label::before {
top: 3px;
left: -25px;
}
.custom-control.custom-radio .custom-control-label::before,
.custom-control.custom-radio .custom-control-label::after {
margin-top: 4px;
}
.custom-control.custom-checkbox .custom-control-label {
/*line-height: 1.5;*/
}
.custom-control.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0.2rem rgba(0, 68, 222, 0.25);
}
.custom-control.custom-checkbox .custom-control-label::before {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.custom-control.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
border-color: #6c757d;
background-color: #fff;
}
.custom-control.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%236c757d' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.custom-control.custom-switch .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0.2rem rgba(0, 68, 222, 0.25);
}
.custom-control.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
border-color: #0044de;
background-color: #0044de;
}
.custom-control.custom-switch .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
border-color: #0044de;
}
.form-control.is-valid,
.was-validated .form-control:valid,
.form-control.is-invalid,
.was-validated .form-control:invalid {
border-color: #d8d8d8;
background-size: calc(0.625em) calc(0.625em);
}
.invalid-feedback {
color: #0044de;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
background: #0044de;
}
.bootstrap-select .dropdown-menu {
margin-top: -1px !important;
}
.bootstrap-select .dropdown-toggle::after {
border-top: .2em solid;
border-right: .2em solid transparent;
border-left: .2em solid transparent;
}
.bootstrap-select .btn.dropdown-toggle,
.bootstrap-select .dropdown-menu {
-webkit-border-radius: 0 !important;
-moz-border-radius: 0 !important;
border-radius: 0 !important;
}
.bootstrap-select .btn.dropdown-toggle,
.bootstrap-select .bootstrap-select .dropdown-menu {
background: #ffffff;
border: 1px solid #d8d8d8;
}
.bootstrap-select .dropdown-item:focus,
.bootstrap-select .dropdown-item:hover {
color: #3f4043;
}
.bootstrap-select .dropdown-item:focus,
.bootstrap-select .dropdown-item:hover {
color: #3f4043;
text-decoration: none;
background-color: #f4f4f4;
}
/* Ajax Loading */
.js-ajax-loading {
transition: .2s;
width: 100%;
height: 100%;
position: fixed;
bottom: 0;
left: 0;
right: 0;
top: 0;
background: #fff;
z-index: 999;
display: flex;
align-content: center;
align-items: center;
text-align: center;
}
.js-ajax-loading img {
display: block;
margin: 0 auto;
-webkit-animation: pulse 1s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
animation: pulse 1s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}
body.page-loaded .js-ajax-loading {
opacity: 0;
visibility: hidden;
}
@keyframes pulse {
0%,
100% {
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
50% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
/* *******************************************
**************** Containers *************** *
******************************************* */
@media (min-width: 768px) and (max-width: 991px) {
.container {
width: 90%;
}
}
@media (min-width: 1366px) and (max-width: 1439px) {
.container {
width: 1336px;
max-width: 1336px;
}
}
@media (max-width: 1365px) {
.container,
.container,
.container {
width: 90%;
max-width: 90%;
}
}
@media (max-width: 991px) {
.container,
.container,
.container {
width: 100%;
max-width: 100%;
}
}
@media (min-width: 1440px) {
.container {
width: 1440px;
max-width: 1440px;
}
}
@media (min-width: 1660px) {
.container {
width: 1660px;
max-width: 1660px;
}
}
/*
@media (min-width: 1650px) {
.container {
width: 1650px;
max-width: 1650px;
}
}*/
/* *******************************************
**************** Navigation *************** *
******************************************* */
/*Flex mixin*/
.inline-flex,
.flex-inline,
.mixin-inline-flex {
display: -webkit-inline-box;
display: -moz-inline-box;
display: ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
}
.flex,
.flex-row,
.mixin-flex-row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.flex-row-nowrap,
.mixin-flex-row-nowrap {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.row-reverse,
.flex-row-reverse,
.mixin-flex-row-reverse {
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
.flex-column,
.mixin-flex-column {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
-ms-flex-direction: column;
flex-wrap: wrap;
flex-direction: column;
}
.flex-column-reverse,
.mixin-flex-column-reverse {
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
.flex-center,
.mixin-flex-center {
align-items: center;
justify-content: center;
}
.overlay {
position: relative;
}
.overlay:after {
content: '';
position: absolute;
width: 100%;
height: 100%;
display: block;
top: 0;
left: 0;
z-index: 0;
background-color: #212121;
opacity: 0.5;
}
.overlay-opacity-0:after {
opacity: 0!important;
}
.overlay-opacity-1:after {
opacity: 0.1!important;
}
.overlay-opacity-2:after {
opacity: 0.2!important;
}
.overlay-opacity-3:after {
opacity: 0.3!important;
}
.overlay-opacity-4:after {
opacity: 0.4!important;
}
.overlay-opacity-5:after {
opacity: 0.5!important;
}
.overlay-opacity-6:after {
opacity: 0.6!important;
}
.overlay-opacity-7:after {
opacity: 0.7!important;
}
.overlay-opacity-8:after {
opacity: 0.8!important;
}
.overlay-opacity-9:after {
opacity: 0.9!important;
}
.overlay-opacity-10:after {
opacity: 1!important;
}
.overlay * {
position: relative;
z-index: 1;
}
section:not(.block-style) .has-style,
section:not(.block-style).has-style {
-webkit-border-radius: 0%;
-moz-border-radius: 0%;
border-radius: 0%;
-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0);
-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0);
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0);
border: 1px solid #ffffff;
background-color: #ffffff;
}
/* Icon Style */
.icons {
display: -webkit-inline-box;
display: -moz-inline-box;
display: ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
/*.mixin-flex-center();*/
/* background: transparent;*/
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
padding: 0.1rem;
/*line-height: 1;*/
/* background-clip: content-box;*/
/*.has-style();*/
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.icon-style-1 {
/* width: @width;
height: @height;*/
/*font-size: 2rem;*/
}
.icon-style-2 {
/* width: @width;
height: @height;*/
/*font-size: 3rem;*/
}
.icon-style-3 {
/* width: @width;
height: @height;*/
/*font-size: 4rem;*/
}
/* Icon Style */
/* *******************************************
**************** Navigation *************** *
******************************************* */
.navigation-holder {
position: relative;
z-index: 10;
width: 100%;
}
.navigation-holder:not(.not-transparent) {
height: 0;
}
.navigation {
margin-bottom: 0;
border: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
transition: height .4s;
transition: background .4s;
background: rgba(255, 255, 255, 0.15);
}
.navigation .logo a .logo-text,
.navigation .logo .logo-text,
.navigation .logo a,
.navigation .logo a span {
color: #212121;
/*font-size: 28px;*/
/*font-weight: bold;*/
text-decoration: none;
}
.navigation-holder.not-transparent,
.navigation-holder.not-transparent .navigation:not(.sticky) {
position: relative !important;
}
.navigation-holder.not-transparent .navigation,
.sticky-nav .sticky {
position: fixed;
width: 100%;
top: 0;
z-index: 100;
background: #ffffff;
}
.navigation.sticky {
border-bottom: 2px solid #e5e5e5;
}
.sticky-padding {
padding-top: 65px;
}
.mw-live-edit .navigation.sticky {
margin-top: 55px;
}
.navigation-holder:not(.not-transparent) .navigation .logo.logo-dark {
display: none !important;
}
.navigation-holder:not(.not-transparent) .navigation .logo.logo-light {
display: flex !important;
}
.navigation-holder:not(.not-transparent) .navigation.sticky .logo.logo-dark {
display: flex !important;
}
.navigation-holder:not(.not-transparent) .navigation.sticky .logo.logo-light {
display: none !important;
}
.navigation-holder.not-transparent .navigation .logo.logo-dark {
display: flex !important;
}
.navigation-holder.not-transparent .navigation .logo.logo-light {
display: none !important;
}
.navigation-holder.not-transparent .navigation.sticky .logo.logo-dark {
display: flex !important;
}
.navigation-holder.not-transparent .navigation.sticky .logo.logo-light {
display: none !important;
}
.navigation {
border: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
position: relative;
}
/* Sticky nav */
html:not(.sidebar-nav-website) body.sticky-nav .sticky:after {
content: '';
position: absolute;
display: block;
width: 100%;
height: 7px;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), transparent);
bottom: -7px;
z-index: 2;
}
body.sticky-nav:not(.mw-live-edit) .navigation {
position: fixed;
top: 0;
width: 100%;
max-width: 100%;
left: 0;
right: 0;
margin: auto;
}
.container-fluid > .navbar-collapse,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container > .navbar-header {
width: 100%;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
align-items: center;
margin-right: 0;
margin-left: 0;
}
.navbar-header:after {
display: block;
clear: both;
content: '';
/*font-size: 0;*/
}
.navbar-header ul.socials {
margin: 0;
}
.navbar-header ul.socials li a {
background: transparent;
color: #ffffff;
/*font-size: 18px;*/
padding: 0;
margin: 0;
height: 20px;
width: 20px;
}
.navbar-header ul.socials a:hover {
background: transparent;
color: #ffffff;
}
.navbar-header ul.header-contacts-list li {
display: inline-block;
}
.navbar-header ul.header-contacts-list li + li {
margin-left: 15px;
}
.navbar-header ul.header-contacts-list li a {
color: #ffffff;
/*font-size: .75rem;*/
padding: 5px;
display: -webkit-inline-box;
display: -moz-inline-box;
display: ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
align-items: center;
justify-content: center;
}
.navigation-holder.not-transparent .navbar-header ul.header-contacts-list li a,
.navigation.sticky .navbar-header ul.header-contacts-list li a {
color: #212121;
}
.navbar-header ul.header-contacts-list li a:hover {
text-decoration: none;
}
.navbar-header ul.header-contacts-list li a span {
/*line-height: 0;*/
}
body:not([data-lang="ar"]) .navbar-header ul.header-contacts-list li a span:nth-of-type(2) {
margin-left: 7px;
}
body[data-lang="ar"] .navbar-header ul.header-contacts-list li a span:nth-of-type(2) {
margin-right: 7px;
}
.navbar-header ul.header-contacts-list li a i {
/*font-weight: 600;*/
/*font-size: 1rem;*/
}
.navbar-header ul.socials.header-social-phone {
margin-top: 20px;
}
.navbar-header ul.socials.header-social-phone li a {
color: #ffffff;
}
/*Logo settings*/
.logo a .logo-text,
.logo .logo-text,
.logo a,
.logo a span {
color: #212121;
/*font-size: 28px;*/
/*font-weight: bold;*/
text-decoration: none;
padding-left: 0 !important;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
justify-content: flex-start;
height: 100%;
}
.logo a span {
width: auto !important;
}
.navigation .navbar-header .logo {
position: relative;
height: auto;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 10px 0;
}
.navigation.sticky .navbar-header .logo {
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.navigation .navbar-header .logo a {
display: -webkit-inline-box;
display: -moz-inline-box;
display: ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
align-items: center;
justify-content: flex-start;
height: 100%;
}
.navigation .navbar-header .logo img {
max-height: 100px;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.navigation.sticky .navbar-header .logo img {
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
.navigation .navbar-header .logo img {
max-width: 100%;
}
}
@media (max-width: 575px) {
.navigation .navbar-header .logo {
height: 36px;
margin: 15px 0;
}
.navigation .navbar-header .logo img {
max-height: 100%;
width: auto !important;
}
}
/*END Logo settings*/
@media screen and (max-width: 767px) {
body.lock-scroll-extra-menu {
overflow: hidden;
}
body.lock-scroll {
overflow: hidden;
}
}
.navigation .navbar-header .toggle,
.navigation .navbar-header .cart {
display: none;
}
.navigation .navbar-header .toggle,
.navigation .navbar-header .toggle-inside-menu {
height: 25px;
width: 34px;
}
body:not([data-lang="ar"]) .navigation .navbar-header .toggle {
text-align: right;
}
body[data-lang="ar"] .navigation .navbar-header .toggle {
text-align: left;
}
body:not([data-lang="ar"]) .navigation .navbar-header .toggle-inside-menu {
margin-left: 15px;
}
body[data-lang="ar"] .navigation .navbar-header .toggle-inside-menu {
margin-right: 15px;
}
.toggle-inside-menu .mobile-menu-btn span {
background: #212121;
}
html:not(.sidebar-nav-website) .toggle .mobile-menu-btn.active span {
background: transparent;
}
.extra-toggle .mobile-menu-btn.active span {
background: #ffffff;
}
.mobile-menu-btn {
color: #212121;
/*font-size: 16px;*/
text-decoration: none;
display: inline-block;
position: relative;
cursor: pointer;
width: 34px;
height: 22px;
text-transform: uppercase;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
top: 0;
}
.toggle-inside-menu {
display: flex;
justify-content: flex-end;
position: relative;
}
.mobile-menu-btn span {
position: absolute;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
display: inline-block;
height: 2px;
width: 33px;
top: 0;
right: 0;
background: #ffffff;
}
.navigation.sticky .mobile-menu-btn span,
.not-transparent.navigation-holder .mobile-menu-btn span {
background: #212121;
}
.mobile-menu-btn span:first-child {
-webkit-transform-origin: 0 center;
-ms-transform-origin: 0 center;
-moz-transform-origin: 0 center;
transform-origin: 0 center;
}
.mobile-menu-btn span:nth-child(2) {
top: 9px;
}
.mobile-menu-btn span:nth-child(3) {
-webkit-transform-origin: 0 center;
-ms-transform-origin: 0 center;
-moz-transform-origin: 0 center;
transform-origin: 0 center;
top: 19px;
}
.mobile-menu-btn.active:not(.blocked-toggle) span:nth-child(1) {
-webkit-transform: rotate(45deg) translateY(-2px);
-moz-transform: rotate(45deg) translateY(-2px);
-ms-transform: rotate(45deg) translateY(-2px);
transform: rotate(45deg) translateY(-3px);
}
.mobile-menu-btn.active:not(.blocked-toggle) span:nth-child(3) {
-webkit-transform: rotate(-45deg) translateY(2px);
-ms-transform: rotate(-45deg) translateY(2px);
-moz-transform: rotate(-45deg) translateY(2px);
transform: rotate(-45deg) translateY(3px);
}
.mobile-menu-btn.active:not(.blocked-toggle) span:nth-child(2) {
opacity: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
.mobile-menu-btn.active:not(.blocked-toggle) {
transform: rotate(180deg);
right: 3px;
}
.toggle-inside-menu .mobile-menu-btn.active {
right: 0px;
}
/* Kebab icon */
.extra-toggle {
display: none;
}
.mobile-menu-btn-2.active {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.mobile-menu-btn-2 {
position: relative;
z-index: 1;
width: 25px;
height: 25px;
cursor: pointer;
display: inline-block;
transition: 400ms cubic-bezier(0.55, 0, 0.1, 1);
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
.mobile-menu-btn-2 span {
position: absolute;
right: 0;
left: 0;
display: block;
width: 4px;
height: 4px;
margin: auto;
pointer-events: none;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
background-color: #ffffff;
}
.mobile-menu-btn-2 span:nth-child(1) {
top: 0;
}
.mobile-menu-btn-2 span:nth-child(2) {
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.mobile-menu-btn-2 span:nth-child(3) {
bottom: 0;
}
/*Sidebar Nav menu collapse icon*/
.sidebar-nav-website .navigation .list li > a:after {
display: none;
}
.sidebar-nav-website .submenu-toggle {
display: block;
position: absolute;
right: 0;
top: 50%;
}
.sidebar-nav-website .submenu-toggle:before {
position: absolute;
top: 50%;
content: " ";
right: 20px;
margin-top: -1px;
width: 10px;
height: 2px;
background-color: #212121;
transform: rotate(90deg);
transition: transform 0.25s ease-in-out;
}
.sidebar-nav-website .submenu-toggle.active-icon:before {
transform: rotate(0);
}
.sidebar-nav-website .submenu-toggle:after {
position: absolute;
top: 50%;
content: " ";
right: 20px;
margin-top: -1px;
width: 10px;
height: 2px;
background-color: #212121;
}
/*End Sidebar Nav menu collapse icon*/
.mobile-menu-label {
margin-right: 10px;
width: 100%;
/*line-height: 1;*/
position: relative;
text-transform: uppercase;
height: 30px;
/*font-size: 14px;*/
display: none;
}
.mobile-menu-label b {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
position: absolute;
right: 0;
width: 100%;
height: 100%;
align-items: center;
justify-content: flex-start;
/*font-weight: 600;*/
color: #ffffff;
}
.mobile-menu-label b + b {
opacity: 0;
visibility: hidden;
transform: translateX(20px) scale(0.9);
}
.mobile-extra-menu-active .mobile-menu-label b:first-child {
opacity: 0;
visibility: hidden;
transform: translateX(-20px) scale(0.9);
}
.mobile-extra-menu-active .mobile-menu-label b + b {
opacity: 1;
visibility: visible;
transform: translateX(0px);
}
.navigation .navbar-header .cart {
text-align: left;
}
.navigation .navbar-header .cart a {
color: #ffffff;
/*font-size: 24px;*/
}
.navigation .menu-overlay {
flex: 1;
}
.member-nav > .dropdown > .dropdown-menu {
margin-top: 10px;
}
.navigation .list {
display: block;
max-width: 100%;
text-align: center;
}
.navigation .list li a {
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
/*font-size: 16px;*/
/*font-family: 'Lato', sans-serif;*/
/*font-weight: 600;*/
text-transform: inherit;
}
.navigation .list .dropdown-menu span.name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: calc(100% - 20px);
display: inline-block;
}
.navigation .list > li > a {
display: block;
text-decoration: none;
position: relative;
color: #ffffff;
padding: .7rem .5rem;
}
.not-transparent .navigation .list > li > a,
.navigation.sticky .list > li > a {
color: #212121;
}
.navigation .list li > a:after {
content: '';
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
transform: rotate(0);
top: calc(50% - 1.5px);
}
body:not([data-lang="ar"]) .navigation .list li.has-sub-menu > a:after {
margin-left: 10px;
}
body[data-lang="ar"] .navigation .list li.has-sub-menu > a:after {
margin-right: 10px;
}
.navigation li:hover > a:after {
transform: rotate(-90deg);
}
.navigation .list > li > a:hover,
.navigation .list > li.active > a,
.navigation .list > li.active-parent > a {
color: #0044de;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.dropdown-menu .dropdown-menu {
display: block;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
top: 0;
left: 100%;
}
.navigation .list > li {
margin: 0 25px;
display: inline-block;
clear: both;
}
.navigation .list > li > ul a {
padding: .5rem .7rem;
color: #f4f4f4;
}
.dropdown-menu > li > a {
display: block;
clear: both;
/*font-weight: 600;*/
text-transform: inherit;
text-decoration: none;
}
.navigation .menu .list {
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.navigation .list > li:hover {
z-index: 10;
}
.show > .dropdown-menu {
opacity: 1;
visibility: visible;
}
.dropdown-menu > li > a:focus {
background-color: transparent;
}
.navigation .dropdown-menu {
background: #212121;
border: 1px solid rgba(244, 244, 244, 0.1);
}
.navigation .module-menu .dropdown-menu {
max-width: 15rem;
min-width: 12rem;
}
/*.navigation .list>li>ul a:hover {
background-color: @header-dropdown-back-on-hover;
color: @header-dropdown-color-on-hover;
}*/
.navigation .list .dropdown:hover .dropdown-menu {
margin: 0;
}
.member-nav .dropdown-menu li a {
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.member-nav .dropdown-menu:not(.shopping-cart) a {
padding: .5rem .7rem;
color: #f4f4f4;
/*font-family: 'Lato', sans-serif;*/
/*font-size: 16px;*/
}
.member-nav .dropdown-menu:not(.shopping-cart) li:not(:first-child) a:hover {
color: rgba(244, 244, 244, 0.8);
}
.member-nav .btn-member .dropdown-menu li:not(:first-of-type) a:hover {
background: rgba(244, 244, 244, 0.03);
}
.member-nav .shopping-cart-holder .btn:hover {
background: rgba(0, 68, 222, 0.9);
color: #212121;
}
.navigation .menu .list > li.mobile-search,
.navigation .menu .list > li.mobile-profile {
display: none;
}
.navigation .menu .list > li.mobile-search form {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
align-items: center;
}
.mobile-search button {
border: none;
color: white;
background: #0044de;
height: 45px;
text-align: center;
width: auto;
padding: 0 15px;
}
.mobile-search input {
background: transparent;
border: none;
height: 45px;
width: 100%;
color: #212121;
}
.mobile-search .fa {
color: #212121;
margin: 0 14px;
}
/* Member nav */
.member-nav {
display: inline-flex;
justify-content: flex-end;
align-items: center;
position: relative;
}
.member-nav li.dropdown {
position: static;
}
.member-nav li.dropdown a {
position: relative;
}
.member-nav .dropdown-menu {
right: 0;
left: auto !important;
transform: unset !important;
margin-top: 50px !important;
}
.member-nav .btn {
padding-left: 15px !important;
padding-right: 15px !important;
}
.member-nav > li {
display: inline-block;
vertical-align: middle;
}
.member-nav > li a {
text-decoration: none;
}
.member-nav .dropdown-toggle > span {
color: #f4f4f4;
/*font-size: 11px;*/
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
padding: 0;
display: inline-flex;
position: absolute;
z-index: 1;
background-color: #0044de;
min-width: 16px;
min-height: 16px;
align-items: center;
justify-content: center;
top: -4px;
right: -9px;
}
.member-nav-inverse .member-nav .dropdown-toggle > span {
color: #212121;
}
.member-nav .dropdown-toggle > i {
color: #ffffff;
/*font-size: 22px;*/
/*line-height: 28px;*/
}
.not-transparent .navigation .member-nav .dropdown-toggle > i,
.navigation.sticky .member-nav .dropdown-toggle > i {
color: #212121;
}
.member-nav a:after {
display: none !important;
}
.member-nav .search button.dropdown-toggle {
margin-right: 0;
color: #ffffff;
border: 0;
background: transparent;
}
.member-nav .search button.dropdown-toggle:after {
display: none;
}
.member-nav .search button {
outline: none;
-webkit-border-radius: 0 !important;
-moz-border-radius: 0 !important;
border-radius: 0 !important;
}
.member-nav .search .dropdown-menu {
padding-left: .5rem;
padding-right: .5rem;
}
.member-nav .search input {
background: #ffffff;
/*font-size: .9rem;*/
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
padding: .4rem .7rem;
outline: none;
border: 0;
flex: 1;
}
.member-nav .search .dropdown-menu i {
color: rgba(33, 33, 33, 0.7);
background: #ffffff;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
body:not([data-lang="ar"]) .member-nav .search .dropdown-menu i {
padding: 0 0 0 0.5rem;
}
body[data-lang="ar"] .member-nav .search .dropdown-menu i {
padding: 0 0.5rem 0 0;
}
/* Header Shopping Cart */
.navigation .menu .member-nav .shopping-cart {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.navigation .menu .member-nav .shopping-cart:before {
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #212121;
content: '';
display: block;
position: absolute;
margin-top: -10px;
margin-left: 39px;
}
.member-nav .shopping-cart-holder {
padding: 0 20px;
width: 240px;
max-width: 100%;
overflow: hidden;
}
.member-nav .shopping-cart-holder .product {
padding: 10px 0;
border-bottom: 1px solid rgba(0, 68, 222, 0.2);
}
.member-nav .shopping-cart-holder .product .remove {
position: absolute;
right: 10px;
color: #0044de;
/*line-height: 0;*/
top: 10px;
}
.member-nav .shopping-cart-holder .product .remove:hover {
background: transparent;
color: #457eff;
}
.member-nav .shopping-cart-holder .product h5 {
color: #ffffff;
/*font-size: 14px;*/
}
.member-nav .shopping-cart-holder .product .qty {
color: rgba(0, 68, 222, 0.9);
}
.member-nav .shopping-cart-holder .product .price {
color: #ffffff;
/*font-size: 14px;*/
/*font-weight: bold;*/
}
.member-nav .shopping-cart-holder .total p {
/*font-size: 16px;*/
color: #ffffff;
margin: 15px 0 10px 0;
}
.member-nav .shopping-cart-holder .btn {
margin-top: 20px;
display: block;
width: 100%;
}
.dropdown-menu {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
color: #212121;
display: block;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
min-width: 15rem;
/* top: 100%;*/
}
body[data-lang="ar"] .dropdown-menu {
text-align: right;
}
.dropdown-menu li {
position: relative;
}
.member-nav > .dropdown > .dropdown-menu {
margin-top: .7rem;
}
.member-nav .dropdown-menu:before {
position: absolute;
top: -7px;
width: 15px;
height: 15px;
transform: rotate(45deg);
content: '';
left: 10px;
display: none;
}
.member-nav .dropdown-menu,
.member-nav .dropdown-menu:before {
background-color: #212121;
}
/*See more icon*/
.navigation .sub-menu-more > a {
/*font-size: 0 !important;*/
/*line-height: 0;*/
position: relative !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
width: 32px;
height: 32px;
padding: 0px !important;
align-items: center;
}
.navigation .sub-menu-more > a span {
left: 2px;
}
.navigation .sub-menu-more > a span:before {
left: 12px;
}
.navigation .sub-menu-more > a span:after {
left: 24px;
}
.navigation .sub-menu-more > a span,
.navigation .sub-menu-more > a span:after,
.navigation .sub-menu-more > a span:before {
display: block;
position: absolute;
width: 4px;
height: 4px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.8);
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.navigation .sub-menu-more > a:hover span,
.navigation .sub-menu-more > a:hover span:after,
.navigation .sub-menu-more > a:hover span:before {
background-color: rgba(255, 255, 255, 0.4);
}
.navigation .sub-menu-more > a span:after,
.navigation .sub-menu-more > a span:before {
content: '';
display: block;
}
/*!!! Only for main header menu !!!*/
@media screen and (min-width: 1200px) {
html:not(.sidebar-nav-website) {
/*See more icon*/
/*End See more icon*/
}
html:not(.sidebar-nav-website) .navigation .menu .small-navbar .list li a {
/*font-size: calc(14px);*/
}
html:not(.sidebar-nav-website) .navigation .menu .list > li:hover > a {
color: #0044de;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
html:not(.sidebar-nav-website) .navigation .menu .list > li > ul li:hover > a {
color: rgba(244, 244, 244, 0.8);
background-color: rgba(244, 244, 244, 0.03);
}
html:not(.sidebar-nav-website) .navigation .menu .list > li > ul li:hover > a:focus {
color: #212121;
}
html:not(.sidebar-nav-website) .navigation .list li:hover > ul {
opacity: 1;
visibility: visible;
}
html:not(.sidebar-nav-website) .mw-live-edit .navigation .menu-overlay {
position: static;
}
html:not(.sidebar-nav-website) .toggle-inside-menu {
display: none;
}
html:not(.sidebar-nav-website) .navigation .menu .collapseNav-initialized {
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
align-items: center;
}
html:not(.sidebar-nav-website) .navigation-holder:not(.header_style_3) .navigation .menu .sub-menu-more > .dropdown-menu {
left: auto;
right: 0;
}
html:not(.sidebar-nav-website) .navigation-holder:not(.header_style_3) .navigation .menu .sub-menu-more .dropdown-menu .dropdown-menu {
left: -100%;
right: 100%;
}
html:not(.sidebar-nav-website) .navigation-holder:not(.header_style_3) .navigation .menu .sub-menu-more .dropdown-menu li:hover > a:after {
transform: rotate(90deg) !important;
}
}
@media screen and (max-width: 1199px) {
.navigation .menu .sub-menu-more {
display: none !important;
}
.navigation .menu ul {
width: 100%;
margin-top: 20px;
}
.navigation .menu .list li {
display: block;
margin: 0;
clear: both;
width: 100%;
}
.navigation .menu .list > li > a {
color: #212121;
clear: both;
padding: 10px 30px;
text-align: left;
}
.navigation .menu a.dropdown-toggle::after {
margin-top: 0px;
}
.navigation .menu .list .dropdown span.name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: calc(100% - 20px);
display: inline-block;
}
.navigation .menu .list > li > ul a {
color: rgba(33, 33, 33, 0.7);
}
.navigation .menu .list > li > ul > li a {
padding: 8px 40px;
}
.navigation .menu .list > li > ul > li > ul > li a {
padding: 8px 50px;
}
.navigation .menu .list > li a:hover {
background-color: rgba(244, 244, 244, 0.03);
color: #212121;
}
.navigation .menu .dropdown-menu > .active > a,
.navigation .menu .dropdown-menu > .active > a:focus {
background-color: rgba(244, 244, 244, 0.03);
color: #212121;
}
.navigation .menu .list > li.active-parent > a,
.navigation .menu .list > li.active > a {
color: #0044de;
}
.navigation .menu .list > li.active li.active-parent > a {
color: #212121;
}
.navigation .menu .show > .dropdown-menu {
display: block;
position: relative;
float: none;
margin: 0 auto;
max-width: 100%;
margin-top: 0;
}
.navigation .menu .list .dropdown.show {
background: rgba(244, 244, 244, 0.5);
margin: 0 20px;
padding-bottom: 15px;
}
.navigation .menu .has-sub-menu ul.dropdown-menu {
position: static !important;
transform: unset !important;
opacity: 1;
visibility: visible;
display: none;
box-shadow: none;
-webkit-transition: none;
transition: none;
border: 0;
margin: 0;
background: transparent;
max-width: 100%;
min-width: unset;
}
.navigation .menu-overlay[class*="pl-"] {
padding: 0 !important;
}
.navigation .navbar-header .toggle {
display: block;
}
.navigation .member-nav {
flex: 1;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
justify-content: flex-end;
}
.navigation.sticky .menu .member-nav {
display: block;
}
html:not(.sidebar-nav-website) .navigation .menu-overlay {
visibility: hidden;
width: 100%;
position: fixed;
top: 0;
left: 0;
height: 100%;
padding: 0 !important;
background: rgba(33, 33, 33, 0.5);
opacity: 0;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
z-index: 10;
}
html:not(.sidebar-nav-website) .navigation .menu {
visibility: hidden;
opacity: 0;
overflow: hidden;
position: absolute;
top: 0;
right: 0;
padding: 20px 0 40px 0;
background: #f4f4f4;
min-height: calc(100vh);
transform: scaleY(1) scaleX(0) translateX(400px);
transform-origin: right 0;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
max-width: 100%;
width: 100%;
-webkit-box-shadow: 0px 35px 60px 0px rgba(0, 0, 0, 0.6);
-moz-box-shadow: 0px 35px 60px 0px rgba(0, 0, 0, 0.6);
box-shadow: 0px 35px 60px 0px rgba(0, 0, 0, 0.6);
z-index: 10;
}
html.mobile-menu-active:not(.sidebar-nav-website) .menu-overlay {
opacity: 1;
visibility: visible;
}
html.mobile-menu-active:not(.sidebar-nav-website) .menu {
visibility: visible;
overflow: auto;
opacity: 1;
transform: scaleY(1) scaleX(1) translateX(0);
max-width: 400px;
}
nav.navigation li.btn-cart a:not(.btn) {
display: inline-flex;
align-items: center;
position: relative;
}
.member-nav.main-member-nav:not(.visible-search) .search {
display: none;
}
.navigation .menu .list > li.mobile-search {
display: block;
width: 100%;
background: #ffffff;
padding: 0 15px;
background-clip: content-box;
clear: both;
margin-top: 20px;
margin-bottom: 20px;
}
.member-nav .dropdown-menu:before {
left: auto;
right: 10px;
}
/***** Sidebar navigation menu *****/
.sidebar-nav-website .navigation .menu-overlay {
visibility: visible;
width: 340px;
position: fixed;
top: 0;
left: 0;
height: 100%;
padding: 0 !important;
opacity: 1;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
z-index: 1;
margin-left: -340px;
}
.sidebar-nav-website .navigation .menu {
visibility: visible;
opacity: 1;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
padding: 0px 0 40px;
background: #f4f4f4;
height: calc(100vh);
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
max-width: 100%;
width: 340px;
z-index: 1;
}
.mobile-menu-active.sidebar-nav-website .mw-live-edit .menu-overlay {
top: 56px;
}
.mobile-menu-active.sidebar-nav-website .menu-overlay {
margin-left: 0;
}
.mobile-menu-active.sidebar-nav-website .menu {
overflow: auto;
max-width: 340px;
border-right: 1px solid #ffffff;
}
.mobile-menu-active.sidebar-nav-website .main {
width: calc(100% - 340px);
right: -340px;
}
.mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
width: calc(100%);
margin: 0;
left: 0;
}
.sidebar-nav-website .main {
width: 100%;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
position: relative;
right: 0;
}
.sidebar-nav-website .navigation .menu ul {
margin-top: 0;
}
.sidebar-nav-website .navigation .menu .module-menu .list > .has-sub-menu > ul.dropdown-menu {
padding: 0 0 1rem 0;
}
.sidebar-nav-website .navigation .menu .module-menu .list > li:not(:first-of-type) {
border-top: 1px solid #ffffff;
}
.sidebar-nav-website .navigation .menu .module-menu .list > li:last-of-type {
border-bottom: 1px solid #ffffff;
}
.sidebar-nav-website .navigation .menu .list > li > a {
padding: 1rem 2rem;
}
.sidebar-nav-website .navigation .menu .list > li > ul > li a {
padding: .5rem 2.5rem;
}
.sidebar-nav-website .navigation .menu .list > li > ul > li > ul > li a {
padding: .5rem 3rem;
}
/***** End Sidebar navigation menu *****/
}
@media (max-width: 1365px) {
html.sidebar-nav-website.mobile-menu-active,
html.sidebar-nav-website.mobile-menu-active body {
overflow: hidden;
}
.mobile-menu-active.sidebar-nav-website .main {
width: calc(100%);
}
.mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
width: calc(100%);
}
.sidebar-nav-website .navigation .menu-overlay {
width: 100%;
margin-left: 0;
visibility: hidden;
opacity: 0;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.mobile-menu-active.sidebar-nav-website .menu-overlay {
visibility: visible;
opacity: 1;
background-color: rgba(33, 33, 33, 0.5);
}
.sidebar-nav-website .navigation .menu {
margin-left: -340px;
}
.mobile-menu-active.sidebar-nav-website .navigation .menu {
margin-left: 0;
}
.sidebar-nav-website .mobile-menu-btn {
z-index: 10;
}
}
@media (max-width: 767px) {
.mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
width: calc(100%);
left: 340px;
}
.sidebar-nav-website .navigation .menu ul {
margin-top: 20px;
}
.sidebar-nav-website .navigation .menu {
min-height: calc(100vh);
}
}
@media (max-width: calc(340px + 64px)) {
.sidebar-nav-website .navigation .menu {
width: calc(100vw - 64px);
max-width: calc(100vw - 64px);
margin-left: calc(-100vw - 64px);
}
.mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
left: calc(100vw - 64px);
}
.mobile-menu-active.sidebar-nav-website .main {
right: calc(-100vw + 64px);
}
}
@media (max-width: 767px) {
html:not(.sidebar-nav-website) .navigation .menu {
padding-bottom: 220px;
}
.navigation .list li > a:after {
position: absolute;
margin-left: 0;
}
body:not([data-lang="ar"]) .navigation .list li > a:after {
right: 0;
margin-right: 25px;
}
body[data-lang="ar"] .navigation .list li > a:after {
left: 0;
margin-left: 25px;
}
.member-nav li.btn-member {
display: none;
}
.navigation .menu .list > li.mobile-profile {
display: block;
}
.navbar-header ul.socials.header-social-phone {
justify-content: center;
padding: 0 15px;
}
.navbar-header ul.socials.header-social-phone li a {
color: #212121;
background-color: #ffffff;
}
.navbar-header ul.header-contacts-list-phone {
padding: 0 15px;
}
}
@media (max-width: 575px) {
html:not(.sidebar-nav-website) .navigation .menu {
width: calc(100% - 30px);
}
.member-nav .btn-cart,
.member-nav.visible-search .search {
position: static;
}
.member-nav > .dropdown.btn-cart > .dropdown-menu,
.member-nav.visible-search > .dropdown.search > .dropdown-menu {
left: 0 !important;
right: 0 !important;
transform-origin: center top;
transform: translate3d(0px, 0px, 0px) !important;
top: 100% !important;
margin-top: 0;
min-height: 100vh;
width: 100%;
}
.member-nav.visible-search > .dropdown.search > .dropdown-menu:after {
content: '';
display: block;
position: absolute;
left: 0;
right: 0;
top: 100%;
bottom: 0;
background-color: rgba(244, 244, 244, 0.5);
height: 100vh;
z-index: 0;
width: 100%;
}
.member-nav.visible-search > .dropdown.search > .dropdown-menu {
min-height: initial;
padding: 1rem;
}
.member-nav > .dropdown > .dropdown-menu:before {
display: none;
}
.member-nav .shopping-cart-holder {
width: 100%;
}
.navbar-header ul.header-contacts-list li + li {
margin-left: 5px;
}
}
/*Secondary menu*/
.navigation .secondary-menu {
width: 100%;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
flex: 1;
}
.navigation .secondary-menu .module-menu {
width: 100%;
}
.navigation .secondary-menu .list li:hover > ul {
opacity: 1;
visibility: visible;
}
.secondary-menu > ul.dropdown-menu {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
display: block;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
top: 100%;
position: absolute;
background-color: #0044de;
}
.navigation .secondary-menu > li > a {
display: block;
/*font-size: 16px;*/
color: #282627;
text-decoration: none;
position: relative;
}
.navigation .secondary-menu > li > a,
.navigation .secondary-menu > li > ul a {
padding: 10px 30px;
text-align: right;
}
.navigation .secondary-menu .list > li.mobile-search,
.navigation .secondary-menu .list > li.mobile-profile {
display: none;
}
.navigation .secondary-menu .list > li.mobile-search form {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
align-items: center;
}
.navigation .secondary-menu .list > li.mobile-search {
background: #ffffff;
}
/* Mega DropDown Secondary menu in huge resolution */
/* Not Finished */
/*@media screen and (min-width: 992px) {
.navigation .secondary-menu.secondary-menu-open .module-menu {
margin-top: 20px;
}
.navigation .secondary-menu.secondary-menu-open .module-menu>ul{
padding-bottom: 0;
-ms-flex-direction: row;
flex-direction: row;
}
.navigation .secondary-menu.secondary-menu-open .module-menu>ul>li {
display: inline-block;
}
}*/
/* END Mega DropDown Secondary menu in huge resolution */
@media screen and (min-width: 1199px) {
.navigation .secondary-menu .small-navbar .list li a {
/*font-size: calc(14px);*/
}
.navigation .secondary-menu .list > li:hover > a {
color: #0044de;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.navigation .secondary-menu .list > li > ul li:hover > a {
color: rgba(244, 244, 244, 0.8);
background-color: rgba(244, 244, 244, 0.03);
}
/*See more icon for secondary menu*/
.navigation .secondary-menu .collapseNav-initialized {
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
align-items: center;
}
.navigation-holder:not(.header_style_3) .navigation .secondary-menu .sub-menu-more > .dropdown-menu {
left: auto;
right: 0;
}
.navigation-holder:not(.header_style_3) .navigation .secondary-menu .sub-menu-more .dropdown-menu .dropdown-menu {
left: -100%;
right: 100%;
}
.navigation-holder:not(.header_style_3) .navigation .secondary-menu .sub-menu-more .dropdown-menu li:hover > a:after {
transform: rotate(90deg) !important;
}
/*End See more icon*/
}
@media screen and (max-width: 1199px) {
.navigation .secondary-menu .sub-menu-more {
display: none !important;
}
.mobile-menu-label {
display: -webkit-inline-box;
display: -moz-inline-box;
display: ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
}
.extra-toggle {
width: 34px;
height: 30px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
align-items: center;
justify-content: center;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
cursor: pointer;
}
.navigation .secondary-menu .module-menu > ul {
margin-top: 20px;
padding-bottom: 160px;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
-ms-flex-direction: column;
flex-wrap: wrap;
flex-direction: column;
}
.navigation .secondary-menu {
position: absolute;
right: 0;
left: 0;
top: calc(-100vh);
margin-left: auto;
margin-right: auto;
padding: 0 0 20px 0;
background-color: #f4f4f4;
min-height: calc(100vh);
transform-origin: top 0;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
max-width: 100%;
width: 100%;
z-index: -1;
bottom: 0;
overflow: hidden;
visibility: hidden;
opacity: 1;
align-content: flex-start;
}
.mobile-extra-menu-active .secondary-menu {
visibility: visible;
overflow: auto;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0%, 100%, 0);
webkit-transition: 0.5s ease;
transition: 0.5s ease;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 220px;
}
.navigation .secondary-menu ul {
width: 100%;
}
.navigation .secondary-menu .list > li,
.navigation .secondary-menu .list > li li {
display: block;
margin: 0;
clear: both;
}
.navigation .secondary-menu .list > li > ul a,
.navigation .secondary-menu .list > li > a {
color: #212121;
clear: both;
padding: 10px 30px;
}
.navigation .secondary-menu .list > li > ul a {
color: rgba(33, 33, 33, 0.7);
}
.navigation .secondary-menu .list > li > ul > li a {
padding: 8px 40px;
}
.navigation .secondary-menu .list > li > ul > li > ul a {
padding: 8px 50px;
}
.navigation .secondary-menu .list > li a:hover {
background-color: rgba(244, 244, 244, 0.03);
color: #212121;
}
.navigation .secondary-menu .dropdown-menu > .active > a,
.navigation .secondary-menu .dropdown-menu > .active > a:focus {
background-color: rgba(244, 244, 244, 0.03);
color: #212121;
}
.navigation .secondary-menu .list > li.active-parent > a,
.navigation .secondary-menu .list > li.active > a {
color: #0044de;
}
.navigation .secondary-menu .list > li.active li.active-parent > a {
color: #212121;
}
.navigation .secondary-menu .has-sub-menu ul.dropdown-menu {
position: static !important;
transform: unset !important;
opacity: 1;
visibility: visible;
display: none;
box-shadow: none;
-webkit-transition: none;
transition: none;
border: 0;
margin: 0;
background: 0 0;
max-width: 100%;
min-width: unset;
}
.navigation .secondary-menu .list > li.mobile-search {
display: block;
margin-top: 20px;
}
.member-nav.secondary-member-nav:not(.visible-search) .search {
display: none;
}
}
@media screen and (max-width: 767px) {
.navigation .secondary-menu .container {
padding-left: 15px;
padding-right: 15px;
}
.navigation .secondary-menu .list > li.mobile-profile {
display: block;
margin-top: 20px;
}
}
.header-social-links {
flex: 1;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
}
.header-contacts {
flex: 1;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
}
.header-contacts ul {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.main-header,
.down-header,
.up-header {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
width: 100%;
}
.container.color-background-container:after {
content: '';
position: absolute;
width: 100%;
height: 100%;
display: block;
top: 0;
left: 0;
z-index: 0;
background-color: #0044de;
opacity: 1;
z-index: -1;
}
@media screen and (min-width: 1451px) {
.down-header {
margin-bottom: 20px;
}
}
/*Header style 1*/
.header_style_1 .navigation .navbar-header .toggle {
flex: 1;
}
@media screen and (min-width: 1200px) {
.header_style_1 .menu-overlay .module-menu .list {
justify-content: flex-end;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
body:not([data-lang="ar"]) .header_style_1 .member-nav {
padding-left: 30px;
}
body[data-lang="ar"] .header_style_1 .member-nav {
padding-right: 30px;
}
}
/*Header style 2*/
@media screen and (min-width: 1200px) {
.header_style_2 .menu-overlay .menu {
width: 100%;
}
.header_style_2 .navigation .menu .collapseNav-initialized {
justify-content: center;
}
.header_style_2 .menu-overlay {
justify-content: center;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
}
/*Header style 3*/
.header_style_3 .member-nav {
flex: 1;
}
.header_style_3 .navigation .navbar-header .toggle {
flex: 1;
}
@media (max-width: 575px) {
.mobile-menu-active .header_style_3 .menu {
width: 100%;
}
}
/*Header style 4*/
.header_style_4 .member-nav {
flex: 1;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
justify-content: flex-start;
}
.header_style_4 .navigation .navbar-header .toggle {
flex: 1;
}
@media screen and (min-width: 1200px) {
.header_style_4 .menu-overlay .module-menu .list {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
justify-content: flex-end;
}
.header_style_4 .menu-overlay .menu {
width: 100%;
}
}
@media (min-width: 576px) and (max-width: 991px) {
.header_style_4 .member-nav .dropdown-menu:before {
left: 10px;
right: auto;
}
}
@media (max-width: 767px) {
.website_member-nav .header_style_4 .navigation .navbar-header .logo {
margin: 10px;
}
}
@media (max-width: 575px) {
.mobile-menu-active .header_style_4 .menu {
width: 100%;
}
}
/*Header style 5*/
.header_style_5 .navbar-header {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
-ms-flex-direction: column;
flex-wrap: wrap;
flex-direction: column;
}
.header_style_5.not-transparent .navigation .socials li a,
.header_style_5 .navigation.sticky .socials li a {
color: #212121;
}
.header_style_5 .down-header {
margin-bottom: 0;
}
.header_style_5 .down-header .header-social-links {
margin-bottom: 0;
}
.header_style_5 .main-header {
justify-content: space-between;
align-items: center;
}
.header_style_5 .main-header .logo {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.header_style_5 .down-header {
align-items: center;
justify-content: center;
}
@media screen and (min-width: 1200px) {
.header_style_5 .menu-overlay {
text-align: center;
}
.header_style_5 .menu-overlay .module-menu .list {
justify-content: center;
}
}
@media screen and (min-width: 768px) {
.header_style_5 .main-header .logo,
.header_style_5 .main-header .member-nav {
flex: 1;
}
}
@media (max-width: 767px) {
.header_style_5 .main-header .logo {
justify-content: flex-start;
}
}
/*Header style 6*/
.header_style_6 .navbar-header {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
-ms-flex-direction: column;
flex-wrap: wrap;
flex-direction: column;
}
.header_style_6 .main-header {
justify-content: space-between;
align-items: center;
}
.header_style_6 .main-header .logo {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.header_style_6 .down-header {
align-items: center;
justify-content: center;
}
@media screen and (min-width: 1200px) {
.header_style_6 .menu-overlay {
text-align: center;
}
.header_style_6 .menu-overlay .module-menu .list {
justify-content: center;
}
}
@media screen and (min-width: 768px) {
.header_style_6 .main-header .logo {
flex: 1;
}
.header_style_6 .main-header .member-nav {
flex: 1;
}
}
@media (max-width: 767px) {
.header_style_6 .navbar-header ul.header-contacts-list {
text-align: center;
}
.header_style_6 .navbar-header ul.header-contacts-list li a {
background-color: #ffffff;
color: #212121;
width: 36px;
height: 36px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
}
/*Header style 7*/
html:not(.mobile-menu-active) .header_style_7.navigation-holder .navigation .logo.logo-dark,
html:not(.mobile-menu-active) .header_style_7.navigation-holder.not-transparent .navigation .logo.logo-dark,
html:not(.mobile-menu-active) .header_style_7.navigation-holder .navigation.sticky .logo.logo-dark,
html:not(.mobile-menu-active) .header_style_7.navigation-holder.not-transparent .navigation.sticky .logo.logo-dark {
display: none !important;
}
html:not(.mobile-menu-active) .header_style_7.navigation-holder .navigation .logo.logo-light,
html:not(.mobile-menu-active) .header_style_7.navigation-holder.not-transparent .navigation .logo.logo-light,
html:not(.mobile-menu-active) .header_style_7.navigation-holder .navigation.sticky .logo.logo-light,
html:not(.mobile-menu-active) .header_style_7.navigation-holder.not-transparent .navigation.sticky .logo.logo-light {
display: flex !important;
}
html:not(.mobile-menu-active) .header_style_7 .navigation.sticky {
border: 0 !important;
}
html:not(.mobile-menu-active) .header_style_7 .navigation .list > li > a {
color: #f4f4f4 !important;
}
html:not(.mobile-menu-active) .header_style_7 .navigation .member-nav .dropdown-toggle > i,
html:not(.mobile-menu-active) .header_style_7 .navigation .member-nav .dropdown-toggle > i,
html:not(.mobile-menu-active) .header_style_7 .navigation .member-nav .dropdown-toggle > i,
html:not(.mobile-menu-active) .header_style_7 .not-transparent .navigation .member-nav .dropdown-toggle > i,
html:not(.mobile-menu-active) .header_style_7 .navigation.sticky .member-nav .dropdown-toggle > i,
html:not(.mobile-menu-active) .header_style_7 .not-transparent .navigation .member-nav .dropdown-toggle > i,
html:not(.mobile-menu-active) .header_style_7 .navigation.sticky .member-nav .dropdown-toggle > i,
html:not(.mobile-menu-active) .header_style_7 .not-transparent .navigation .member-nav .dropdown-toggle > i {
color: #f4f4f4 !important;
}
html:not(.mobile-menu-active) .header_style_7 .member-nav .dropdown-toggle > span {
background-color: #f4f4f4 !important;
color: #0044de !important;
}
.header_style_7 .navbar-header {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
-ms-flex-direction: column;
flex-wrap: wrap;
flex-direction: column;
}
.header_style_7 .main-header {
justify-content: space-between;
align-items: center;
}
.header_style_7 .main-header .logo {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.header_style_7 .down-header {
align-items: center;
justify-content: space-between;
}
@media screen and (min-width: 768px) {
.header_style_7 .down-header {
margin-bottom: 10px;
}
}
@media screen and (max-width: 767px) {
.header_style_7 .down-header {
justify-content: flex-end;
margin-bottom: 10px;
}
}
/*Header style 8*/
.header_style_8 .navigation-holder.not-transparent .navbar-header ul.header-contacts-list li a,
.header_style_8 .navigation.sticky .navbar-header ul.header-contacts-list li a {
color: #f4f4f4;
}
.header_style_8 .toggle {
flex: 1;
}
.header_style_8 .up-header {
padding-top: 5px;
padding-bottom: 5px;
align-items: center;
}
.header_style_8 .up-header .list {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
justify-content: flex-end;
}
.header_style_8 .up-header .list li {
margin: 0;
}
.header_style_8 .up-header .list li a {
color: #f4f4f4;
}
.header_style_8 .up-header .list li a:hover {
color: #ffffff;
}
.header_style_8 .header-social-links {
justify-content: center;
flex: unset;
}
.header_style_8 .main-header {
justify-content: space-between;
align-items: center;
}
.header_style_8 .main-header .logo {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.header_style_8 .member-nav {
flex: unset;
}
@media screen and (min-width: 1200px) {
.header_style_8 .secondary-menu.secondray-menu-open {
padding: 20px 0;
}
}
@media screen and (max-width: 767px) {
.header_style_8 .up-header {
justify-content: space-between;
}
.header_style_8 .header-contacts,
.header_style_8 .header-social-links,
.header_style_8 .toggle {
flex: unset;
}
}
/*Header style 9*/
.header_style_9 .mobile-menu-btn.active:not(.blocked-toggle) span {
background: #212121;
}
@media screen and (max-width: 5000px) {
.header_style_9 .navigation .menu .sub-menu-more {
display: none !important;
}
.header_style_9 .navigation .menu ul {
width: 100%;
margin-top: 20px;
}
.header_style_9 .navigation .menu .list li {
display: block;
margin: 0;
clear: both;
width: 100%;
}
.header_style_9 .navigation .menu .list > li > a {
color: #212121;
clear: both;
padding: 10px 30px;
}
.header_style_9 .navigation .menu .list > li > ul a {
color: rgba(33, 33, 33, 0.7);
}
.header_style_9 .navigation .menu .list > li > ul > li a {
padding: 8px 40px;
}
.header_style_9 .navigation .menu .list > li > ul > li > ul > li a {
padding: 8px 50px;
}
.header_style_9 .navigation .menu .list > li a:hover {
background-color: rgba(244, 244, 244, 0.03);
color: #212121;
}
.header_style_9 .navigation .menu .dropdown-menu > .active > a,
.header_style_9 .navigation .menu .dropdown-menu > .active > a:focus {
background-color: rgba(244, 244, 244, 0.03);
color: #212121;
}
.header_style_9 .navigation .menu .list > li.active-parent > a,
.header_style_9 .navigation .menu .list > li.active > a {
color: #0044de;
}
.header_style_9 .navigation .menu .list > li.active li.active-parent > a {
color: #212121;
}
.header_style_9 .navigation .menu .show > .dropdown-menu {
display: block;
position: relative;
float: none;
margin: 0 auto;
max-width: 100%;
margin-top: 0;
}
.header_style_9 .navigation .menu .list .dropdown.show {
background: #457eff;
margin: 0 20px;
padding-bottom: 15px;
}
.header_style_9 .navigation .menu .has-sub-menu ul.dropdown-menu {
position: static !important;
transform: unset !important;
opacity: 1;
visibility: visible;
display: none;
box-shadow: none;
-webkit-transition: none;
transition: none;
border: 0;
margin: 0;
background: transparent;
max-width: 100%;
min-width: unset;
}
.header_style_9 .navigation .menu-overlay[class*="pl-"] {
padding: 0 !important;
}
.header_style_9 .navigation .navbar-header .toggle {
display: block;
margin-right: 20px;
}
.header_style_9 .navigation .member-nav {
flex: 1;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
justify-content: flex-end;
}
.header_style_9 .navigation.sticky .menu .member-nav {
display: block;
}
.header_style_9 nav.navigation li.btn-cart a:not(.btn) {
display: inline-flex;
align-items: center;
position: relative;
}
.header_style_9 .member-nav.main-member-nav:not(.visible-search) .search {
display: none;
}
.header_style_9 .navigation .menu .list > li.mobile-search {
display: block;
width: 100%;
background: #ffffff;
padding: 0 15px;
background-clip: content-box;
clear: both;
margin-top: 20px;
margin-bottom: 20px;
}
.header_style_9 .member-nav .dropdown-menu:before {
left: auto;
right: 10px;
}
/***** Sidebar navigation menu *****/
.sidebar-nav-website .header_style_9 .navigation .menu-overlay {
visibility: visible;
width: 340px;
position: fixed;
top: 0;
left: 0;
height: 100%;
padding: 0 !important;
opacity: 1;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
z-index: 1;
margin-left: -340px;
}
.sidebar-nav-website .header_style_9 .navigation .menu {
visibility: visible;
opacity: 1;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
padding: 0px 0 40px;
background: #f4f4f4;
height: calc(100vh);
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
max-width: 100%;
width: 340px;
z-index: 1;
}
.sidebar-nav-website .header_style_9 .navigation .menu ul {
margin-top: 0;
}
.sidebar-nav-website .header_style_9 .navigation .menu .module-menu .list > .has-sub-menu > ul.dropdown-menu {
padding: 0 0 1rem 0;
}
.sidebar-nav-website .header_style_9 .navigation .menu .module-menu .list > li:not(:first-of-type) {
border-top: 1px solid #f4f4f4;
}
.sidebar-nav-website .header_style_9 .navigation .menu .module-menu .list > li:last-of-type {
border-bottom: 1px solid #f4f4f4;
}
.sidebar-nav-website .header_style_9 .navigation .menu .list > li > a {
padding: 1rem 2rem;
}
.sidebar-nav-website .header_style_9 .navigation .menu .list > li > ul > li a {
padding: .5rem 2.5rem;
}
.sidebar-nav-website .header_style_9 .navigation .menu .list > li > ul > li > ul > li a {
padding: .5rem 3rem;
}
.sidebar-nav-website .header_style_9 .main {
width: 100%;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
position: relative;
right: 0;
}
.mobile-menu-active.sidebar-nav-website .header_style_9 .mw-live-edit .menu-overlay {
top: 56px;
}
.mobile-menu-active.sidebar-nav-website .header_style_9 .menu-overlay {
margin-left: 0;
}
.mobile-menu-active.sidebar-nav-website .header_style_9 .menu {
overflow: auto;
max-width: 340px;
border-right: 1px solid #f4f4f4;
}
.mobile-menu-active.sidebar-nav-website .header_style_9 .main {
width: calc(100% - 340px);
right: -340px;
}
.mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .header_style_9 .js-sidebar-nav {
width: calc(100%);
margin: 0;
left: 0;
}
/***** End Sidebar navigation menu *****/
}
.header-posts-holder .posts-menu {
z-index: 99;
display: none;
width: 100%;
height: 280px;
left: 0;
position: absolute;
background: #ffffff;
border-top: 2px solid rgba(33, 33, 33, 0.1);
}
@media screen and (min-width: 992px) and (max-width: 1439px) {
.header-posts-holder .posts-menu {
height: 560px;
}
}
.header-posts-holder .posts-menu.opened {
display: block;
}
.header-posts-holder .posts-menu .container {
position: relative;
}
.header-posts-holder .posts-menu .container:before {
content: '';
right: 30px;
border: solid rgba(33, 33, 33, 0.1);
border-width: 0 2px 2px 0;
display: inline-block;
padding: 7px;
transform: rotate(-135deg);
-webkit-transform: rotate(-135deg);
background: #fff;
position: absolute;
top: -10px;
}
.header-posts-holder .posts-menu .events {
float: right;
}
.header-posts-holder .posts-menu .events .event {
margin-bottom: 30px;
width: 140px;
float: left;
margin-left: 30px;
}
.header-posts-holder .posts-menu .events .event h5 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.header-posts-holder .posts-menu .events .event:after {
display: block;
clear: both;
content: '';
}
.header-posts-holder .posts-menu .events .event .info {
margin-top: 10px;
}
.header-posts-holder .posts-menu .events .event .image img {
max-width: 100%;
width: 140px;
height: 140px;
}
@media screen and (max-width: 767px) {
.header-posts-holder .posts-menu {
height: 100vh;
position: fixed;
top: 0;
z-index: 9;
right: 0;
width: 300px;
left: auto;
box-shadow: 0 11px 32px 0 rgba(219, 219, 219, 0.5);
}
.header-posts-holder .posts-menu .posts-title {
display: none;
}
.header-posts-holder .posts-menu .btn-posts {
margin: 30px 0;
}
.header-posts-holder .posts-menu .btn-posts .btn span.fas {
margin-top: 3px;
}
.header-posts-holder .posts-menu .events {
float: none;
}
.header-posts-holder .posts-menu .events .event {
max-width: 100%;
padding: 15px 0;
margin-left: 0;
margin-bottom: 0;
border-bottom: 2px solid rgba(33, 33, 33, 0.1);
float: none;
width: 300px;
}
.header-posts-holder .posts-menu .events .event:last-of-type {
border-bottom: 0;
}
.header-posts-holder .posts-menu .events .event .image {
margin-right: 25px;
float: left;
}
.header-posts-holder .posts-menu .events .event .image img {
width: 60px;
height: 60px;
}
}
/* *******************************************
**************** Margins *************** *
******************************************* */
.row-mx-1 {
margin-left: -1px !important;
margin-right: -1px !important;
}
.row-mx-2 {
margin-left: -2px !important;
margin-right: -2px !important;
}
.row-mx-3 {
margin-left: -3px !important;
margin-right: -3px !important;
}
.row-mx-4 {
margin-left: -4px !important;
margin-right: -4px !important;
}
.row-mx-5 {
margin-left: -5px !important;
margin-right: -5px !important;
}
.row-mx-6 {
margin-left: -6px !important;
margin-right: -6px !important;
}
.row-mx-7 {
margin-left: -7px !important;
margin-right: -7px !important;
}
.row-mx-8 {
margin-left: -8px !important;
margin-right: -8px !important;
}
.row-mx-9 {
margin-left: -9px !important;
margin-right: -9px !important;
}
.row-mx-10 {
margin-left: -10px !important;
margin-right: -10px !important;
}
.row-mx-11 {
margin-left: -11px !important;
margin-right: -11px !important;
}
.row-mx-12 {
margin-left: -12px !important;
margin-right: -12px !important;
}
.row-mx-13 {
margin-left: -13px !important;
margin-right: -13px !important;
}
.row-mx-14 {
margin-left: -14px !important;
margin-right: -14px !important;
}
.row-mx-15 {
margin-left: -15px !important;
margin-right: -15px !important;
}
.col-px-1 {
padding-left: 1px !important;
padding-right: 1px !important;
}
.col-px-2 {
padding-left: 2px !important;
padding-right: 2px !important;
}
.col-px-3 {
padding-left: 3px !important;
padding-right: 3px !important;
}
.col-px-4 {
padding-left: 4px !important;
padding-right: 4px !important;
}
.col-px-5 {
padding-left: 5px !important;
padding-right: 5px !important;
}
.col-px-6 {
padding-left: 6px !important;
padding-right: 6px !important;
}
.col-px-7 {
padding-left: 7px !important;
padding-right: 7px !important;
}
.col-px-8 {
padding-left: 8px !important;
padding-right: 8px !important;
}
.col-px-9 {
padding-left: 9px !important;
padding-right: 9px !important;
}
.col-px-10 {
padding-left: 10px !important;
padding-right: 10px !important;
}
.col-px-11 {
padding-left: 11px !important;
padding-right: 11px !important;
}
.col-px-12 {
padding-left: 12px !important;
padding-right: 12px !important;
}
.col-px-13 {
padding-left: 13px !important;
padding-right: 13px !important;
}
.col-px-14 {
padding-left: 14px !important;
padding-right: 14px !important;
}
.col-px-15 {
padding-left: 15px !important;
padding-right: 15px !important;
}
/* *******************************************
**************** Socials *************** *
******************************************* */
ul.socials.center {
text-align: center;
}
ul.socials {
margin-top: 20px;
}
ul.socials li {
display: inline-block;
color: #212121;
margin-right: 15px;
width: auto;
}
ul.socials li a {
display: block;
color: #ffffff;
text-decoration: none;
background: #0044de;
height: 40px;
width: 40px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
/*font-size: 20px;*/
padding: 9px 0;
text-align: center;
position: relative;
}
ul.socials li a:hover {
background: #212121;
color: #212121;
text-decoration: none;
}
ul.socials.labels {
margin-top: 0;
text-align: right !important;
}
ul.socials.labels li {
display: inline-block;
color: #212121;
margin-left: 5px;
margin-right: 0px !important;
width: auto;
}
ul.socials.labels li a {
display: block;
color: #f4f4f4 !important;
text-decoration: none;
background: rgba(61, 0, 180, 0.03);
height: 30px;
width: auto;
/*font-size: 14px;*/
/*line-height: 14px;*/
padding: 0px 15px;
text-align: center;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
ul.socials.labels li a i {
/*font-size: 16px;*/
margin-right: 10px;
float: left;
margin-top: 7px;
color: #f4f4f4;
}
ul.socials.labels li a span {
float: left;
display: block;
margin-top: 7px;
/*font-size: 12px;*/
/*line-height: 18px;*/
}
ul.socials.labels li a:hover {
background: #212121;
color: #ffffff;
text-decoration: none;
}
ul.socials.labels li a.facebook {
background: #3B5998;
}
ul.socials.labels li a.google-plus {
background: #d62d20;
}
ul.socials.labels li a.twitter {
background: #1dcaff;
}
ul.socials.labels li a.pinterest {
background: #cb2027;
}
ul.socials.labels li a.linkedin {
background: #0077B5;
}
ul.socials.labels li:hover a {
color: #ffffff;
background: #212121;
}
/* *******************************************
**************** Socials *************** *
******************************************* */
ul.socials-2.center {
text-align: center;
}
ul.socials-2 li {
display: inline-block;
color: #212121;
margin: 0 10px;
width: auto;
}
ul.socials-2 li a {
display: block;
color: #212121;
text-decoration: none;
/*font-size: 26px;*/
padding: 2px 0;
text-align: center;
position: relative;
}
ul.socials-2 li a:hover {
color: #457eff;
}
/* *******************************************
**************** Elements *************** *
******************************************* */
/* Google Maps */
#map {
height: 400px;
width: 100%;
}
#map img {
width: inherit;
}
#map .gmnoprint {
width: 200px;
}
/* To Top */
#to-top {
width: 40px;
height: 40px;
background-color: #0044de;
position: fixed;
bottom: 30px;
right: 30px;
cursor: pointer;
opacity: .4;
border: 0;
color: #ffffff;
padding: 0;
z-index: 99;
}
#to-top:before {
content: "\f077";
color: white;
/*font-family: 'FontAwesome';*/
position: relative;
top: -1px;
}
#to-top:hover {
opacity: 1;
}
/* Tables holder */
.div-table {
display: table;
width: 100%;
height: 100%;
}
.div-table-cell {
display: table-cell;
width: 100%;
height: 100%;
vertical-align: middle;
}
/* Buttons */
.btn {
padding-left: 25px;
padding-right: 25px;
text-align: center;
}
.btn-lg {
padding: .75rem 2.1rem;
/*font-size: 1.05rem;*/
/*font-weight: 700;*/
min-width: 250px;
}
[class*="btn-outline"] {
background: #ffffff;
border: 1px solid #ffffff;
}
.btn img {
max-width: 100%;
max-height: 30px;
}
.btn-default {
color: #f4f4f4;
background: #212121;
border: 1px solid #212121;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.btn-default:hover,
.btn-default.focus,
.btn-default:focus {
color: #f4f4f4;
background-color: #545454;
border: 1px solid #545454;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.btn-outline-default {
color: #212121;
border-color: #212121;
}
.btn-outline-default:hover {
background-color: #212121;
border-color: #212121;
color: #f4f4f4;
}
.btn-primary {
color: #f4f4f4;
background-color: #0044de;
border: 1px solid #0044de;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle,
.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus {
color: #f4f4f4;
background-color: #457eff;
border: 1px solid #457eff;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.btn-outline-primary {
border-color: #0044de;
}
.btn-outline-primary:hover {
background-color: #0044de;
border-color: #0044de;
}
.btn-outline-primary.active:hover,
.btn-outline-primary.active.focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.active {
color: #f4f4f4 !important;
background-color: #0044de !important;
border: 1px solid #0044de !important;
-webkit-border-radius: 3px !important;
-moz-border-radius: 3px !important;
border-radius: 3px !important;
}
.btn-link {
color: #0044de;
text-decoration: none;
/*font-size: 18px;*/
}
.btn-link:hover {
color: rgba(0, 68, 222, 0.7);
text-decoration: none;
}
.btn i {
margin-right: 10px;
}
.btn-play {
width: 85px;
height: 85px;
border-radius: 100% !important;
display: flex;
justify-content: center;
align-items: center;
}
.btn-play i {
margin: 0;
}
.button-1 {
height: 50px;
background: #0044de;
border: 1px solid #0044de;
cursor: pointer;
overflow: hidden;
position: relative;
text-align: center;
transition: background 5s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
user-select: none;
display: inline-block;
}
.button-1 .mask {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.5);
height: 100px;
position: absolute;
transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
width: 200px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none;
}
.button-1:hover {
background: #0044de;
border: 1px solid #0044de;
transition: background 0s;
}
.button-1:hover .mask {
background-color: #fff;
transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
}
.button-1 a,
.button-1 button {
/*font-size: 14px;*/
color: #f4f4f4;
text-align: center;
position: relative;
text-decoration: none;
text-transform: uppercase;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 0px 40px 0 40px;
transition: padding-right 0.2s linear 0s, padding-left 0.2s linear 0s;
}
.button-1 a:before,
.button-1 button:before {
content: "\f054";
/*font-family: "Font Awesome 5 Free";*/
/*font-weight: 900;*/
/*font-size: 15px;*/
position: absolute;
display: flex;
align-items: center;
justify-content: center;
right: 0;
top: 0;
opacity: 0;
height: 100%;
width: 40px;
transition: all 0.2s linear 0s;
}
.button-1 a:hover,
.button-1 button:hover {
text-indent: -20px;
padding: 0px 45px 0 35px;
}
.button-1 a:hover:before,
.button-1 button:hover:before {
opacity: 1;
text-indent: 0px;
}
.button-1.button-md {
height: 40px;
}
.button-1 button:hover {
text-indent: 0px;
}
.button-2 {
height: 50px;
background: #0044de;
border: 1px solid #0044de;
cursor: pointer;
overflow: hidden;
position: relative;
text-align: center;
transition: background 5s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
user-select: none;
display: inline-block;
}
.button-2 .mask {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.5);
height: 100px;
position: absolute;
transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
width: 200px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none;
}
.button-2:hover {
background: #0044de;
border: 1px solid #0044de;
transition: background 0s;
}
.button-2:hover .mask {
background-color: #fff;
transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
}
.button-2 a,
.button-2 button {
/*font-size: 14px;*/
color: #f4f4f4;
text-align: center;
position: relative;
text-decoration: none;
text-transform: uppercase;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 0px 70px 0 30px;
transition: padding-right 0.2s linear 0s, padding-left 0.2s linear 0s;
}
.button-2 a:before,
.button-2 button:before {
border-left: 1px solid #f4f4f4;
content: "\f054";
/*font-family: "Font Awesome 5 Free";*/
/*font-weight: 900;*/
/*font-size: 15px;*/
position: absolute;
display: flex;
align-items: center;
justify-content: center;
right: 0;
top: 0;
height: 100%;
width: 40px;
transition: all 0.2s linear 0s;
z-index: 2;
background: #0044de;
}
.button-2 a:hover,
.button-2 button:hover {
text-indent: -20px;
}
.button-2 a:hover:before,
.button-2 button:hover:before {
text-indent: 0px;
width: 50px;
}
.button-2.button-md {
height: 40px;
}
.button-2 button:hover {
text-indent: 0px;
}
.button-3 {
height: 50px;
background: #fff;
border: 1px solid #0044de;
cursor: pointer;
overflow: hidden;
position: relative;
text-align: center;
transition: background 5s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
user-select: none;
display: inline-block;
}
.button-3:hover {
background: #fff;
border: 1px solid #0044de;
transition: background 0s;
}
.button-3 a,
.button-3 button {
/*font-size: 14px;*/
color: #212121;
text-align: center;
position: relative;
text-decoration: none;
text-transform: uppercase;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 0px 40px 0 40px;
transition: padding-right 0.2s linear 0s, padding-left 0.2s linear 0s;
}
.button-3 a:before,
.button-3 button:before {
left: 130%;
position: absolute;
top: 50%;
transform: translateY(-50%);
/*font-size: 90%;*/
color: #0044de;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
display: block;
/*font-family: 'Font Awesome 5 Free';*/
content: "\f061";
/*font-weight: 900;*/
}
.button-3 a:hover,
.button-3 button:hover {
padding: 0px 45px 0 35px;
}
.button-3 a:hover:before,
.button-3 button:hover:before {
left: calc(100% - 30px);
}
.button-3.button-md {
height: 40px;
}
.button-4 {
color: #f4f4f4;
cursor: pointer;
position: relative;
text-decoration: none !important;
text-transform: uppercase;
overflow: hidden;
display: inline-block;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: transparent;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
height: 50px;
border: 1px solid #f4f4f4;
/*font-size: 14px;*/
/*font-weight: 600;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
text-align: center;
}
.button-4 span {
color: #f4f4f4;
z-index: 20;
padding: 0 40px;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.button-4:after {
background: #fff;
content: "";
height: 155px;
left: -75px;
opacity: .2;
position: absolute;
top: -50px;
-webkit-transform: rotate(35deg);
transform: rotate(35deg);
transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
width: 50px;
z-index: auto;
}
.button-4:hover:after {
left: 120%;
transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.button-4.button-md {
height: 40px;
}
.button-5 {
padding: 0px 60px 0 20px;
color: #f4f4f4;
cursor: pointer;
position: relative;
text-decoration: none !important;
text-transform: uppercase;
overflow: hidden;
display: inline-block;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: transparent;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
height: 50px;
border: 1px solid #f4f4f4;
/*font-size: 14px;*/
/*font-weight: 600;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
text-align: center;
}
.button-5 span {
color: #f4f4f4;
z-index: 20;
padding: 0 40px;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.button-5:after {
background: #fff;
content: "";
height: 155px;
left: -75px;
opacity: .2;
position: absolute;
top: -50px;
-webkit-transform: rotate(35deg);
transform: rotate(35deg);
transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
width: 50px;
z-index: auto;
}
.button-5:before {
border-left: 1px solid #f4f4f4;
content: "\f054";
/*font-family: "Font Awesome 5 Free";*/
/*font-weight: 900;*/
/*font-size: 15px;*/
position: absolute;
display: flex;
align-items: center;
justify-content: center;
right: 0;
top: 0;
height: 100%;
width: 40px;
transition: all 0.2s linear 0s;
z-index: 2;
background: transparent;
color: #f4f4f4;
}
.button-5:hover:before {
width: 50px;
}
.button-5:hover:after {
left: 120%;
transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.button-5.button-md {
height: 40px;
}
.button-6 {
height: 50px;
background: #f4f4f4;
border: 1px solid #f4f4f4;
cursor: pointer;
overflow: hidden;
position: relative;
text-align: center;
transition: background 5s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
user-select: none;
display: inline-block;
}
.button-6:hover {
background: #f4f4f4;
border: 1px solid #f4f4f4;
transition: background 0s;
opacity: 0.9;
}
.button-6 a,
.button-6 button {
/*font-size: 14px;*/
color: #212121;
text-align: center;
position: relative;
text-decoration: none;
text-transform: uppercase;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 0px 40px 0 40px;
transition: padding-right 0.2s linear 0s, padding-left 0.2s linear 0s;
}
.button-6 a:before,
.button-6 button:before {
left: 130%;
position: absolute;
top: 50%;
transform: translateY(-50%);
/*font-size: 90%;*/
color: #212121;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
display: block;
/*font-family: 'Font Awesome 5 Free';*/
content: "\f061";
/*font-weight: 900;*/
}
.button-6 a:hover,
.button-6 button:hover {
padding: 0px 45px 0 35px;
}
.button-6 a:hover:before,
.button-6 button:hover:before {
left: calc(100% - 30px);
}
.button-6.button-md {
height: 40px;
}
.button-7 {
color: #f4f4f4 !important;
text-decoration: none !important;
/*font-size: 18px;*/
/*font-weight: 600;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
position: relative;
overflow: hidden;
display: inline-block;
z-index: 1;
}
.button-7 span {
display: block;
z-index: 2;
padding-bottom: 2px;
padding-right: 30px;
transition: all .2s linear 0s;
}
.button-7 span:after {
content: "\f30b";
/*font-family: "Font Awesome 5 Free";*/
/*font-weight: 900;*/
/*font-size: 11px;*/
position: absolute;
display: flex;
align-items: center;
justify-content: center;
right: 0;
top: 0;
height: 100%;
margin-right: 5px;
z-index: 2;
background: 0 0;
color: #fff;
}
.button-7:after {
content: '';
display: block;
width: 100%;
position: absolute;
left: 0;
right: 0;
background: #0044de;
height: 7px;
bottom: 0;
z-index: -1;
}
.button-7:hover span {
padding-right: 40px;
}
.button-8 {
color: #0044de !important;
text-decoration: none !important;
/*font-size: 18px !important;*/
/*font-weight: 600;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
position: relative;
overflow: hidden;
display: inline-block;
z-index: 2;
}
.button-8 span {
/*font-size: 18px !important;*/
display: block;
z-index: 2;
padding-right: 20px;
transition: all .2s linear 0s;
color: #0044de !important;
}
.button-8 span:after {
content: "\f30b";
/*font-family: "Font Awesome 5 Free";*/
/*font-weight: 900;*/
/*font-size: 15px;*/
position: absolute;
display: flex;
align-items: center;
justify-content: center;
right: 0;
top: 0;
height: 100%;
z-index: 2;
background: 0 0;
color: #0044de;
margin-top: 2px;
}
.button-8:hover span {
padding-right: 25px;
}
.button-8.button-red {
color: #0044de !important;
}
.button-8.button-red span:after {
color: #0044de;
}
.button-1 button,
.button-2 button,
.button-3 button,
.button-4 button,
.button-5 button,
.button-6 button,
.button-7 button,
.button-8 button {
/*line-height: 1;*/
background: transparent;
border: 0;
}
/* Newsletter form */
.newsletter-form input {
width: calc(100% - 40px);
}
.newsletter-form button {
width: 40px;
padding: 6px 0 7px 0;
}
.newsletter-form button i {
float: none;
margin: 0 auto;
}
/* Tables */
.table {
width: auto;
margin: 0 auto;
}
.table th {
background: #212121;
color: #ffffff;
}
.table th,
.table td {
/*font-size: 16px;*/
}
.table td {
color: #212121;
}
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
border: 0;
padding: 10px 30px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
background: rgba(61, 0, 180, 0.05);
}
/* Tabs */
.tabs {
margin-bottom: 10px;
}
.tabs .tab-pane {
min-height: 200px;
padding: 80px 0;
}
.tabs .nav-tabs {
border-bottom: 0;
}
@media screen and (max-width: 991px) {
.tabs .tab-pane {
padding: 80px 0 20px 0;
}
}
.tabs .nav-tabs > li .icon::before {
display: block;
margin: 0 0 0.35em;
opacity: 0;
-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
transition: transform 0.2s, opacity 0.2s;
-webkit-transform: translate3d(0, -100px, 0);
transform: translate3d(0, -100px, 0);
pointer-events: none;
/*font-size: 36px;*/
}
.tabs .nav-tabs > li.active .icon::before {
color: #212121;
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.tabs .nav-tabs > li > a {
color: #212121;
/*font-size: 18px;*/
/*line-height: 1.3333333;*/
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
border: 0;
border-bottom: 3px solid transparent;
margin: 0;
padding: 10px 10px;
white-space: nowrap;
text-overflow: ellipsis;
display: inline-block;
margin: 0 auto;
width: auto;
text-align: center;
}
.tabs .nav-tabs > li > a span {
/*font-weight: 700;*/
color: #212121;
}
.tabs .nav-tabs > li.active > a span {
/*font-weight: 700;*/
color: #212121;
}
.tabs .nav-tabs > li.active > a,
.tabs .nav-tabs > li.active > a:focus,
.tabs .nav-tabs > li.active > a:hover {
color: #212121;
border: 0;
border-bottom: 3px solid #212121;
}
.tabs .nav-tabs > li > a:focus,
.tabs .nav-tabs > li > a:hover {
background: transparent;
color: #212121;
border-bottom: 3px solid #212121;
text-decoration: none;
}
@media screen and (max-width: 767px) {
.tabs .nav-tabs > li > a span {
display: none;
}
.tabs .nav-tabs > li .icon::before {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@media screen and (max-width: 480px) {
.tabs .nav-tabs > li .icon::before {
/*font-size: 30px;*/
}
}
@media screen and (max-width: 400px) {
.tabs .nav-tabs > li .icon::before {
/*font-size: 28px;*/
}
}
.tabs .nav-tabs > li {
text-align: center;
}
/* Tabs 2 */
.tabs-2 {
margin-bottom: 10px;
}
.tabs-2 .tab-pane {
min-height: 200px;
padding: 80px 0;
}
.tabs-2 .nav-tabs {
text-align: center;
border-bottom: 0;
}
@media screen and (min-width: 992px) {
.tabs-2 .nav-tabs {
border-bottom: 3px solid #212121;
height: 45px;
}
}
.tabs-2 .nav-tabs > li {
margin: 0 2px;
display: inline-block;
float: none;
}
.tabs-2 .nav-tabs > li > a {
color: #212121;
/*font-size: 16px;*/
/*font-weight: bold;*/
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
border: 0;
margin: 0;
padding: 10px 30px;
text-align: center;
background: #ffffff;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.tabs-2 .nav-tabs > li.active > a,
.tabs-2 .nav-tabs > li.active > a:focus,
.tabs-2 .nav-tabs > li.active > a:hover {
color: #ffffff;
border: 0;
background: #212121;
}
.tabs-2 .nav > li > a:focus,
.tabs-2 .nav > li > a:hover {
background: #ffffff;
color: #212121;
}
.tabs-2 .nav-tabs > li > a i {
margin-right: 10px;
/*line-height: 18px;*/
float: left;
}
.tabs-2 .nav-tabs > li > a i.material-icons {
/*font-size: 22px;*/
margin-top: 3px;
/*line-height: 10px;*/
}
@media screen and (max-width: 991px) {
.tabs-2 .nav-tabs > li {
width: 50% !important;
}
}
@media screen and (max-width: 767px) {
.tabs-2 .nav-tabs > li {
width: 100% !important;
}
}
.tabs-2 .as-buttons.nav-tabs {
border: 0;
text-align: center;
}
.tabs-2 .as-buttons.nav-tabs > li {
margin: 0 10px;
display: inline-block;
float: none;
}
.tabs-2 .as-buttons.nav-tabs > li a i {
float: left;
margin-top: 10px;
}
.tabs-2 .as-buttons.nav-tabs > li > a {
border: 1px solid #212121;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background-color: #ffffff;
color: #212121;
}
.tabs-2 .as-buttons.nav-tabs > li.active > a,
.tabs-2 .as-buttons.nav-tabs > li.active > a:focus,
.tabs-2 .as-buttons.nav-tabs > li.active > a:hover {
border: 1px solid #212121;
background-color: #212121;
color: #ffffff;
}
/* Select holder */
.field-holder {
margin-bottom: 20px;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
/*line-height: 19px;*/
}
.field-holder label {
color: #212121;
padding: 13px 15px 13px 0;
/*font-weight: bold;*/
/*font-size: 16px;*/
}
.field-holder .bootstrap-select,
.field-holder label,
.field-holder input,
.field-holder select:not(.selectpicker) {
float: left;
display: block;
width: auto !important;
}
.field-holder .btn,
.field-holder select:not(.selectpicker),
.field-holder input {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border: 1px solid #d1d1d1;
/*font-size: 18px;*/
/*font-weight: bold;*/
color: #212121;
height: 46px;
padding: 12px 12px;
background: #ffffff;
}
/* Accordions */
.accordions .panel {
border: 0;
margin-bottom: 25px;
}
.accordions .panel-heading {
background: rgba(61, 0, 180, 0.03);
padding: 0;
border-color: #f9f9f9;
border: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.accordions .panel-collapse,
.accordions .collapse {
width: 100%;
}
.accordions .panel-title {
margin-bottom: 0;
/*font-size: 20px;*/
text-align: left;
}
.accordions .panel-title > .small,
.accordions .panel-title > .small > a,
.panel-title > a,
.accordions .panel-title > small,
.accordions .panel-title > small > a {
/*font-size: 20px;*/
color: #212121;
display: block;
padding: 14px 12px;
}
.accordions .panel-title > a {
/*font-size: 20px;*/
color: #212121;
display: block;
padding: 14px 12px;
text-decoration: none;
position: relative;
}
.accordions .panel-title > a:before {
padding: 25px;
background: #212121;
display: block;
float: right;
margin-top: -14px;
margin-right: -12px;
content: '';
}
.accordions .panel-title > a:after {
/*font-family: FontAwesome;*/
/*font-size: 24px;*/
color: #ffffff;
display: block;
content: '\f105';
right: 19px;
-ms-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
position: absolute;
top: 24px;
/*line-height: 0;*/
transition: all 0.2s ease;
}
.accordions .panel-title > a.collapsed:after {
-ms-transform: rotate(0deg);
/* IE 9 */
-webkit-transform: rotate(0deg);
/* Safari 3-8 */
transform: rotate(0deg);
}
.accordions .panel-body {
padding: 15px;
border: 1px solid #f9f9f9;
border-top: 0 !important;
}
.accordions .panel-body,
.accordions .panel-body p {
text-align: left;
/*font-size: 16px;*/
color: #212121;
/*line-height: 1.5;*/
}
/* Slick slider - Testimonials */
.slick-testimonials.slick-slider {
padding-bottom: 30px;
}
.slick-testimonials.slick-slider .slick-prev:before,
.slick-testimonials.slick-slider .slick-next:before {
color: #212121;
/*font-size: 30px;*/
padding: 5px;
opacity: 1;
}
.slick-testimonials.slick-slider .slick-prev:hover:before,
.slick-testimonials.slick-slider .slick-next:hover:before {
color: #212121;
}
.slick-testimonials.slick-slider.inverse .slick-prev:before,
.slick-testimonials.slick-slider.inverse .slick-next:before {
color: #f4f4f4;
}
.slick-testimonials.slick-slider.inverse .slick-prev:hover:before,
.slick-testimonials.slick-slider.inverse .slick-next:hover:before {
color: #f4f4f4;
}
.slick-testimonials .slide-holder {
width: auto;
padding-top: 45px;
margin: 0 auto;
max-width: 820px;
text-align: center;
}
.slick-testimonials .slide .img-holder {
width: 120px;
height: 120px;
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
margin: 0 auto;
margin-bottom: 30px;
margin-top: 30px;
border: 0;
background-color: #ffffff;
}
.slick-testimonials .slide .info-holder {
text-align: center;
}
.slick-testimonials .slide .info-holder h3,
.slick-testimonials .slide .info-holder h5 {
color: #212121;
}
.slick-testimonials.inverse .slide .info-holder h3,
.slick-testimonials.inverse .slide .info-holder h5 {
color: #f4f4f4;
}
.slick-testimonials .slide .info-holder h4 {
color: #212121;
margin-bottom: 18px;
}
.slick-testimonials .slide .info-holder p {
color: #212121;
/*font-weight: 500;*/
}
.slick-testimonials.inverse .slide .info-holder h4,
.slick-testimonials.inverse .slide .info-holder p {
color: #ffffff;
}
.slick-testimonials .slide {
transition: all 0.4s ease;
}
.slick-testimonials .slick-dots {
text-align: center;
margin-top: 20px;
}
.slick-testimonials .slick-dots li {
display: inline-block;
/*font-size: 0px;*/
margin: 0 10px;
}
.slick-testimonials .slick-dots li button {
border: 0;
height: 16px;
width: 16px;
-webkit-border-radius: 14px;
-moz-border-radius: 14px;
border-radius: 14px;
background: #ffffff;
}
.slick-testimonials.inverse .slick-dots li button {
border: 0;
}
.slick-testimonials .slick-dots li.slick-active button {
background: #0044de;
}
.slick-testimonials .slick-dots li button:before {
display: none;
}
@media screen and (max-width: 1199px) {
.slick-testimonials .slide.slick-center {
margin-top: 0px;
}
.slick-testimonials .slick-dots {
margin-top: 30px;
}
}
.slick-testimonials .slick-arrow {
position: absolute;
top: 45%;
z-index: 4;
/*font-size: 0;*/
border: 0;
background: none;
}
.slick-testimonials .slick-arrow:before {
/*font-family: FontAwesome;*/
color: #f4f4f4;
display: block;
/*font-size: 20px;*/
}
.slick-testimonials .slick-next {
right: 5%;
}
.slick-testimonials .slick-next:before {
content: '\f054';
}
.slick-testimonials .slick-prev {
left: 5%;
}
.slick-testimonials .slick-prev:before {
content: '\f053';
}
/* Slick slider - Testimonials 2 */
.slick-testimonials-2.slick-slider {
padding-bottom: 30px;
}
.slick-testimonials-2 .slide-holder {
width: 100%;
margin: 0 auto;
}
.slick-testimonials-2 .slide .img-holder {
width: 105px;
height: 105px;
background-size: cover;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
margin: 0 auto;
}
.slick-testimonials-2 .slide .info-holder {
width: 100%;
padding: 30px 0px 30px 0px;
text-align: center;
}
.slick-testimonials-2 .slide .info-holder h3 {
/*font-size: 30px;*/
color: #ffffff;
/*font-weight: bold;*/
margin-bottom: 8px;
}
.slick-testimonials-2 .slide .info-holder h4 {
/*font-size: 14px;*/
color: #ffffff;
/*font-weight: bold;*/
margin-bottom: 38px;
}
.slick-testimonials-2 .slide .info-holder p {
/*font-size: 16px;*/
color: #ffffff;
}
.slick-testimonials-2 .slide {
transition: all 0.4s ease;
}
.slick-testimonials-2 .slick-dots {
text-align: center;
}
.slick-testimonials-2 .slick-dots li button:before {
display: none;
}
.slick-testimonials-2 .slick-dots li {
display: inline;
/*font-size: 0px;*/
margin: 0 5px;
}
.slick-testimonials-2 .slick-dots li button {
border: 0;
height: 14px;
width: 14px;
-webkit-border-radius: 14px;
-moz-border-radius: 14px;
border-radius: 14px;
background: transparent;
border: 1px solid #ffffff;
}
.slick-testimonials-2 .slick-dots li.slick-active button {
background: #ffffff;
border: 1px solid #ffffff;
}
@media screen and (max-width: 1199px) {
.slick-testimonials-2 .slide.slick-center {
margin-top: 0px;
}
.slick-testimonials-2 .slick-dots {
margin-top: 30px;
}
}
.slick-testimonials-2 .slick-arrow {
position: absolute;
top: 45%;
z-index: 4;
/*font-size: 0;*/
border: 0;
background: none;
display: none !important;
}
.slick-testimonials-2:hover .slick-arrow {
display: block !important;
}
.slick-testimonials-2 .slick-arrow:before {
/*font-family: FontAwesome;*/
color: #ffffff;
display: block;
/*font-size: 20px;*/
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
}
.slick-testimonials-2 .slick-next {
right: 5%;
}
.slick-testimonials-2 .slick-next:before {
content: '\f054';
}
.slick-testimonials-2 .slick-prev {
left: 5%;
}
.slick-testimonials-2 .slick-prev:before {
content: '\f053';
}
/* Slick slider 3 - Testimonials */
.slick-testimonials-3 .slick-track {
display: flex;
}
.slick-testimonials-3 .slick-track .slick-slide {
display: flex;
height: auto;
}
.slick-testimonials-3 .slick-list {
max-width: calc(100% - 100px);
margin: 0 auto;
}
.slick-testimonials-3 .slick-prev:before,
.slick-testimonials-3 .slick-next:before {
color: #212121;
/*font-size: 30px;*/
padding: 5px;
opacity: 1;
}
.slick-testimonials-3 .slick-prev:hover:before,
.slick-testimonials-3 .slick-next:hover:before {
color: #212121;
}
.slick-testimonials-3 .slide-holder {
width: auto;
margin: 0 auto;
max-width: 820px;
text-align: center;
padding: 25px;
}
.slick-testimonials-3 .img-holder {
width: 60px;
height: 60px;
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
margin: 0;
border: 0;
background-color: #ffffff;
}
.slick-testimonials-3 .slide .info-holder {
text-align: left;
}
.slick-testimonials-3 .slide .info-holder p {
color: #212121;
/*font-size: 16px;*/
}
.slick-testimonials-3 .slide {
transition: all 0.4s ease;
}
.slick-testimonials-3 .slick-dots {
text-align: center;
margin-top: 20px;
}
.slick-testimonials-3 .slick-dots li {
display: inline-block;
/*font-size: 0px;*/
margin: 0 10px;
}
.slick-testimonials-3 .slick-dots li button {
border: 0;
height: 16px;
width: 16px;
-webkit-border-radius: 14px;
-moz-border-radius: 14px;
border-radius: 14px;
background: #ffffff;
}
.slick-testimonials-3 .inverse .slick-dots li button {
border: 0;
}
.slick-testimonials-3 .slick-dots li.slick-active button {
background: #0044de;
}
.slick-testimonials-3 .slick-dots li button:before {
display: none;
}
@media screen and (max-width: 1199px) {
.slick-testimonials-3 .slide.slick-center {
margin-top: 0px;
}
.slick-testimonials-3 .slick-dots {
margin-top: 30px;
}
}
.slick-testimonials-3 .slick-arrow {
position: absolute;
top: 45%;
z-index: 4;
/*font-size: 0;*/
border: 0;
background: #fff;
-webkit-box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
width: 45px;
height: 45px;
border-radius: 100%;
}
.slick-testimonials-3 .slick-arrow:before {
/*font-family: FontAwesome;*/
color: #212121;
display: block;
/*font-size: 20px;*/
}
.slick-testimonials-3 .slick-next {
right: 0%;
}
.slick-testimonials-3 .slick-next:before {
content: '\f054';
}
.slick-testimonials-3 .slick-prev {
left: 0%;
}
.slick-testimonials-3 .slick-prev:before {
content: '\f053';
}
/* Slick brands */
.slick-brands .slide {
text-align: center;
}
.slick-brands .slide img {
max-width: 80%;
margin: 0 auto;
}
/* Paging */
.pagination > li {
margin: 5px 3px;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
/*font-weight: bold;*/
color: #f4f4f4 !important;
background-color: #0044de !important;
border: 0 !important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.pagination > li > a,
.pagination > li > span {
color: #212121 !important;
background-color: #ffffff !important;
border: 0 !important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
color: #212121 !important;
background-color: #f3f3f3 !important;
border: 0 !important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
color: #f4f4f4 !important;
background-color: #0044de !important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
/* lists */
.styled-lists li {
color: #212121;
padding: 0 30px;
margin-bottom: 55px;
}
@media screen and (max-width: 1199px) {
.styled-lists li {
margin-bottom: 45px;
}
}
@media screen and (max-width: 991px) {
.styled-lists li {
margin-bottom: 35px;
}
}
@media screen and (max-width: 767px) {
.styled-lists li {
margin-bottom: 25px;
}
}
.styled-lists li:before {
content: '\f192';
display: block;
/*font-family: 'FontAwesome';*/
position: absolute;
margin: 3px 0 0 -22px;
color: #212121;
}
.styled-lists li strong {
/*font-size: 20px;*/
/*font-weight: bold;*/
}
.styled-lists li p {
/*font-size: 16px;*/
}
/* Blog posts */
.blog-posts .slick-arrow {
display: none;
}
.blog-posts .post {
margin-bottom: 30px !important;
}
.blog-posts .post .description {
min-height: 260px;
text-align: left;
}
.blog-posts .post .description h3 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.blog-posts .post .date {
/*font-size: 16px;*/
}
.blog-posts .post .description p {
display: -webkit-box;
-webkit-line-clamp: 5;
-webkit-box-orient: vertical;
overflow: hidden;
}
.blog-posts .post .description .cats {
color: #bfbfbf;
/*font-size: 14px;*/
margin: 5px 0 5px 0;
text-decoration: none;
text-align: center;
}
.blog-posts .slick-dots {
text-align: left;
padding: 0 10px;
}
/* Blog posts 2 */
.blog-posts-2 .post {
display: block;
text-decoration: none;
margin: 0 auto;
position: relative;
height: 100%;
}
.blog-posts-2 .description h5 {
color: #212121;
/*font-weight: 600;*/
/*font-size: 14px;*/
margin: 10px 0 10px 0;
text-decoration: none;
text-align: left;
}
.blog-posts-2 a,
.blog-posts-2 a:hover {
text-decoration: none;
}
.blog-posts-2 .description {
padding: 15px 0;
}
.blog-posts-2 .description,
.blog-posts-2 .description p {
color: #bfbfbf;
/*font-size: 12px;*/
/*line-height: 1.7;*/
}
.blog-posts-2 .post .image {
width: 90px;
height: 90px;
min-width: 90px;
background-position: center center;
-webkit-background-size: 100%;
background-size: 100%;
background-repeat: no-repeat;
position: relative;
transition: all 0.3s ease-in-out;
-webkit-background-size: cover;
background-size: cover;
overflow: hidden;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
float: left;
margin-right: 20px;
}
/* Teamcard */
.teamcard .member {
margin-bottom: 25px;
}
.teamcard .description h3 {
color: #212121;
/*font-size: 24px;*/
margin: 10px 0 5px 0;
text-align: center;
/*font-weight: bold;*/
}
.teamcard .description {
padding: 15px;
text-align: center;
}
.teamcard .description,
.teamcard .description p {
color: #212121;
/*font-size: 18px;*/
/*line-height: 1.5;*/
}
.teamcard .member .image {
height: 240px;
width: 240px;
margin: 0 auto;
background-position: center center;
-webkit-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
/* Teamcard 2 */
.teamcard-2 .member {
max-width: 240px;
margin: 0 auto;
margin-bottom: 25px;
}
.teamcard-2 .description h3 {
color: #212121;
/*font-size: 18px;*/
/*line-height: 1.4;*/
margin: 10px 0 5px 0;
text-align: left;
/*font-weight: bold;*/
}
.teamcard-2 .description {
text-align: left;
}
.teamcard-2 .description span {
/*font-size: 12px;*/
display: block;
color: #bfbfbf;
}
.teamcard-2 .description,
.teamcard-2 .description p {
color: #212121;
/*font-size: 16px;*/
/*line-height: 1.4;*/
}
.teamcard-2 .member .image {
height: 290px;
margin: 0 auto;
background-position: center center;
-webkit-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
}
.teamcard-2 .member .image .hover {
visibility: hidden;
display: inline-block;
position: relative;
bottom: 0;
top: 0;
left: 0;
right: 0;
height: 100%;
width: 100%;
opacity: 0;
transition: opacity 0.25s ease-in-out;
-moz-transition: opacity 0.25s ease-in-out;
-webkit-transition: opacity 0.25s ease-in-out;
}
.teamcard-2 .member:hover .image .hover {
visibility: visible;
background-color: rgba(33, 33, 33, 0.8);
color: #ffffff;
opacity: 1;
}
.teamcard-2 .member .image .hover .socials {
padding-top: 110px;
text-align: center;
}
.teamcard-2 .member .image .hover ul.socials li {
display: inline-block;
color: #212121;
margin: 0 5px;
width: auto;
}
.teamcard-2 .member .image .hover ul.socials li a {
display: block;
color: #212121;
text-decoration: none;
background: rgba(61, 0, 180, 0.03);
height: 40px;
width: 40px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
/*font-size: 26px;*/
padding: 2px 0;
text-align: center;
position: relative;
}
.teamcard-2 .member .image .hover ul.socials li a:hover {
background: #212121;
color: #212121;
text-decoration: none;
}
/* Teamcard */
.masonry-team .teamcard .member {
min-height: 250px;
padding: 25px 10px 15px 10px;
height: 100%;
display: flex;
flex-flow: column;
margin: 0;
}
.masonry-team .teamcard .member .description h3 {
color: #212121;
/*font-size: 24px;*/
margin: 10px 0 5px 0;
text-align: center;
/*font-weight: bold;*/
}
.masonry-team .teamcard .member .description {
padding: 15px;
text-align: center;
}
.masonry-team .teamcard .member .description,
.masonry-team .teamcard .member .description p {
color: #212121;
/*font-size: 16px;*/
/*line-height: 1.5;*/
}
.masonry-team .teamcard .member .image {
height: 85px;
width: 85px;
margin: 0 auto;
background-position: center center;
-webkit-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
.masonry-team .teamcard .member .socials-holder {
position: absolute;
bottom: 20px;
left: 0;
right: 0;
}
.masonry-team .teamcard .member ul.socials {
text-align: center;
margin: 0;
}
.masonry-team .teamcard .member ul.socials li {
margin: 0;
}
.masonry-team .teamcard .member ul.socials li a {
background: transparent;
color: #212121;
/*font-size: 22px;*/
}
.masonry-team .teamcard .member ul.socials li a:hover {
background: transparent;
color: #0044de;
}
.masonry-team .masonry-grid-works {
margin: 0 -10px;
}
.masonry-team .masonry-grid-works_fullwidth {
margin: 0;
}
.masonry-team .masonry-grid-works__sizer_w-50 {
width: 50%;
}
.masonry-team .masonry-grid-works__sizer_w-33 {
width: -webkit-calc(100% / 3);
width: calc(100% / 3);
}
.masonry-team .masonry-grid-works__sizer_w-25 {
width: -webkit-calc(100% / 4);
width: calc(100% / 4);
}
.masonry-team .masonry-grid-works__item {
padding: 15px;
}
.masonry-team .masonry-grid-works__item_w-50 {
width: 50%;
}
.masonry-team .masonry-grid-works__item_w-33 {
width: -webkit-calc(100% / 3);
width: calc(100% / 3);
}
.masonry-team .masonry-grid-works__item_w-25 {
width: -webkit-calc(100% / 4);
width: calc(100% / 4);
}
.masonry-team .list-masonry-grid-works-filter {
display: block;
text-align: center;
}
.masonry-team .list-masonry-grid-works-filter__item {
display: inline-block;
padding: 0;
margin: 0;
}
.masonry-team .list-masonry-grid-works-filter__link_active .list-masonry-grid-works-filter__link-lines {
opacity: 1;
visibility: visible;
}
.masonry-team .list-masonry-grid-works-filter__link-lines {
display: inline-block;
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
opacity: 0;
visibility: hidden;
}
.masonry-team .list-masonry-grid-works-filter__link-lines:before,
.masonry-team .list-masonry-grid-works-filter__link-lines:after {
content: '';
display: block;
background-color: #212121;
position: absolute;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_top:before {
width: 1px;
height: 38px;
bottom: -9px;
left: 2px;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_top:after {
width: 1px;
height: 30px;
bottom: -9px;
left: 0px;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_bottom:before {
width: 1px;
height: 38px;
top: -9px;
right: 2px;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_bottom:after {
width: 1px;
height: 30px;
top: -9px;
right: 0px;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_left:before {
width: 60px;
height: 1px;
bottom: 2px;
left: -9px;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_left:after {
width: 50px;
height: 1px;
bottom: 0px;
left: -9px;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_right:before {
width: 60px;
height: 1px;
top: 2px;
right: -9px;
}
.masonry-team .list-masonry-grid-works-filter__link-lines_right:after {
width: 50px;
height: 1px;
top: 0px;
right: -9px;
}
@media only screen and (max-width: 991px) {
.masonry-team .masonry-grid-works__sizer_w-33,
.masonry-team .masonry-grid-works__item_w-33 {
width: 50%;
}
.masonry-team .masonry-grid-works__sizer_w-25,
.masonry-team .masonry-grid-works__item_w-25 {
width: 33.3%;
}
}
@media only screen and (max-width: 767px) {
.masonry-team .masonry-grid-works__sizer_w-50,
.masonry-team .masonry-grid-works__item_w-50 {
width: 100%;
}
}
@media only screen and (max-width: 480px) {
.masonry-team .masonry-grid-works__sizer_w-33,
.masonry-team .masonry-grid-works__item_w-33 {
width: 100%;
}
.masonry-team .masonry-grid-works__sizer_w-25,
.masonry-team .masonry-grid-works__item_w-25 {
width: 100%;
}
}
/* Shop products */
.shop-products .product {
margin-bottom: 40px;
/*
.image:hover .hover {
visibility: visible;
opacity: 1;
}
*/
}
.shop-products .product h3 {
text-decoration: none;
text-align: left;
min-height: 45px;
}
.shop-products .product .price-holder {
display: flex;
justify-content: left;
align-items: center;
}
.shop-products .product a,
.shop-products .product a:hover {
text-decoration: none;
}
.shop-products .product .image {
padding: 15px;
position: relative;
background-origin: content-box;
height: 360px;
width: 100%;
background-position: center center;
-webkit-background-size: contain;
background-size: contain;
background-repeat: no-repeat;
border: 1px solid #f3f3f3;
}
.shop-products .product:hover .image {
border: 1px solid #0044de;
-webkit-box-shadow: 0 0 10px rgba(0, 68, 222, 0.4);
box-shadow: 0 0 10px rgba(0, 68, 222, 0.4);
}
.shop-products .product:hover .image .hover {
width: 100%;
text-align: center;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(33, 33, 33, 0.15);
visibility: hidden;
opacity: 0;
transition: all .3s;
}
.shop-products .product .hover .btn {
padding: 10px;
text-align: center;
margin: 0 5px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
transform: translateY(-20px);
transition: all .3s;
}
.shop-products .product .hover .btn + .btn {
transform: translateY(20px);
}
.shop-products .product .btn.btn-primary {
background: transparent;
border-color: transparent;
color: #212121;
/*font-weight: bold;*/
}
.shop-products .product:hover .btn.btn-primary {
background: #0044de;
border-color: #0044de;
color: #f4f4f4;
}
.shop-products .product .image:hover .hover .btn {
transform: translateY(0);
}
.shop-products .product .hover .btn i {
margin: 0;
}
.shop-products .product .hover > * {
top: 45%;
position: relative;
}
.shop-products .product .heading-holder {
min-height: 50px;
}
.shop-products .product .heading-holder h5 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.shop-products .product .btn {
padding: 5px 10px;
}
.shop-products .product .btn i {
float: left;
margin-right: 5px;
/*font-size: 18px;*/
margin-top: 2px;
}
.shop-products .product .price,
.shop-products .product .price-old {
/*font-size: 16px;*/
/*font-weight: bold;*/
}
.shop-products .product .price {
color: #0044de;
}
.shop-products .product .price-old {
text-decoration: line-through;
color: #b9b9b9;
margin-right: 10px;
}
.shop-products .product .product-label {
min-width: 60px;
position: absolute;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background: #0044de;
color: #ffffff;
/*font-size: 12px;*/
text-transform: uppercase;
text-align: center;
letter-spacing: 2px;
right: 35px;
top: 20px;
/*font-weight: bold;*/
z-index: 1;
padding: 6px 10px;
}
.related-products .product .image {
height: 250px;
}
/* Pricing list */
.pricing-list > div {
max-width: 290px;
margin-bottom: 30px;
}
.pricing-list .btn {
min-width: unset;
}
.pricing-list .plan {
max-width: 290px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
-moz-box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
height: 100%;
margin: 0 auto 0px auto;
}
.pricing-list .plan .label {
/*font-size: 12px;*/
text-align: center;
min-height: 26px;
width: 100%;
display: block;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
padding: 7px;
}
.pricing-list .plan .label.bestseller {
background: #0044de;
color: #f4f4f4;
}
.pricing-list .plan .heading {
/*font-size: 16px;*/
text-align: center;
padding: 20px 10px 20px 10px;
}
.pricing-list .plan .heading .price {
position: relative;
margin-top: 10px;
}
.pricing-list .plan .heading .price .sum {
/*font-size: 75px;*/
/*font-weight: bold;*/
margin: 0 0px;
color: #212121;
}
.pricing-list .plan .heading .price small {
/*font-size: 16px;*/
/*font-weight: bold;*/
color: #212121;
}
.pricing-list .plan .heading .price .period {
/*font-size: 14px;*/
/*line-height: 14px;*/
/*font-weight: normal;*/
position: relative;
display: block;
margin-top: 20px;
color: #212121;
}
.pricing-list .plan .heading .price .period:after {
margin: 10px auto 0 auto;
display: block;
content: '';
width: 100%;
max-width: 75px;
height: 4px;
background-color: #0044de;
-webkit-mask-image: url('../img/hr.svg');
mask-image: url('../img/hr.svg');
-webkit-mask-repeat: repeat-x;
mask-repeat: repeat-x;
-webkit-mask-size: contain;
mask-size: contain;
}
.pricing-list .plan .heading p {
/*font-size: 16px;*/
color: #0044de;
/*font-weight: 600;*/
}
.pricing-list .plan .description {
text-align: center;
padding: 0 15px 45px 15px;
}
.pricing-list .plan .description p {
/*font-size: 16px;*/
text-align: center;
}
.pricing-list .plan .description p.strikethrough {
text-decoration: line-through;
color: #868686;
}
.pricing-list .plan:hover {
background: #0044de;
cursor: pointer;
}
.pricing-list .plan:hover .price .sum,
.pricing-list .plan:hover .price small,
.pricing-list .plan:hover .price .period,
.pricing-list .plan:hover p,
.pricing-list .plan:hover span {
color: #f4f4f4;
}
.pricing-list .plan:hover .price .period:after {
background-color: #ffffff;
}
/* *******************************************
************** Footer ********************* *
******************************************* */
footer {
background: #212121;
}
footer .logo {
margin-bottom: 30px;
}
footer .logo img {
max-width: 100px;
}
footer ul li {
color: #f3f3f3;
display: inline-block;
width: auto;
margin: 0 10px 0 0;
}
footer a {
color: #f4f4f4;
text-decoration: none;
}
footer a:hover {
color: #ffffff;
text-decoration: none;
}
footer ul li a {
display: block;
color: #f4f4f4;
text-decoration: none;
padding: 0px 0;
}
footer ul li a:hover {
color: #ffffff;
text-decoration: none;
}
footer,
footer p {
/*font-size: 14px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.71;*/
letter-spacing: normal;
color: #979aa6;
}
footer a,
footer p a {
/*font-size: 16px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.75;*/
letter-spacing: normal;
color: #f4f4f4;
}
footer a.underlined,
footer p a.underlined {
display: inline-block;
}
footer a.underlined:after,
footer p a.underlined:after {
content: '';
display: block;
border-bottom: 2px solid #979aa6;
}
footer .copyright {
margin-top: 30px;
}
footer .copyright ul {
/*line-height: 1;*/
}
footer .copyright ul li {
display: inline-block;
width: auto;
}
footer .copyright ul li a:after {
content: '|';
margin: 0 2px 0 3px;
}
footer .copyright a {
/*font-size: 12px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.71;*/
letter-spacing: normal;
color: #979aa6;
text-decoration: none;
}
footer .copyright li:last-of-type a:after {
content: '';
margin: 0 2px 0 3px;
}
footer .copyright p {
/*font-size: 12px;*/
/*font-weight: normal;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: 1.71;*/
letter-spacing: normal;
color: #979aa6;
}
footer h4 {
color: #f4f4f4;
display: block;
margin-bottom: 10px;
text-transform: none;
}
footer .newsletter-holder {
/*font-size: 36px;*/
/*font-weight: 600;*/
color: #f3f3f3;
}
footer ul.socials {
margin-top: 20px;
display: block;
width: 100%;
}
footer ul.socials li {
margin: 0 10px;
width: auto;
display: inline-block !important;
border: 0 !important;
}
footer ul.socials li a {
display: block;
text-decoration: none;
height: 40px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
text-align: center;
position: relative;
padding: 0 !important;
/*font-size: 20px !important;*/
background: transparent !important;
width: auto;
color: #f4f4f4;
}
footer ul.socials li a:hover {
text-decoration: none;
color: rgba(244, 244, 244, 0.5);
}
@media screen and (max-width: 991px) {
footer {
text-align: left;
}
footer .container > .edit > .row > div {
margin-bottom: 60px;
}
footer .logo-column,
footer .logo-column p {
text-align: center !important;
}
footer .newsletter-form {
max-width: 250px;
margin: 0 -15px 0 -15px;
}
}
@media screen and (max-width: 575px) {
footer {
text-align: center;
}
footer .container > .edit > .row > div {
margin-bottom: 60px;
}
footer ul li a {
padding: 7px 0;
}
footer .newsletter-form {
max-width: 250px;
margin: 0 auto;
}
footer ul.socials li a {
/*font-size: 46px !important;*/
}
}
/* Newsletter */
.newsletter-holder {
background: #292832;
width: 420px;
max-width: 100%;
height: 55px;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
padding: 5px;
}
.newsletter-holder input {
border: 0;
background: transparent;
float: left;
width: 65%;
padding: 0 20px;
height: 100%;
/*font-size: 16px;*/
}
.newsletter-holder button {
float: left;
width: 35%;
background: #212121;
color: #ffffff;
/*font-size: 16px;*/
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
border: 0;
padding: 11px;
}
.newsletter-holder button:hover {
background-color: #ffffff;
color: #212121;
}
.section-silver {
background: #f3f3f3;
}
.section-dark {
background: #0044de;
}
/* *******************************************
************** Section ************** *
******************************************* */
.section {
min-height: 100px;
padding: 30px 0;
}
/* *******************************************
************** Section 2 ************** *
******************************************* */
.section-2 {
padding: 30px 0 0 0;
}
.section-2 .background-image-holder {
min-height: 50vh;
height: 750px;
max-height: 100vh;
}
.section-2.vh-80 .background-image-holder {
min-height: 80vh;
height: 80vh;
}
.section-2 h1,
.section-2 h2,
.section-2 h3,
.section-2 h4,
.section-2 h5,
.section-2 h6,
.section-2 p,
.section-2 p.lead {
color: #ffffff;
}
.section-2 .container {
z-index: 9;
}
.section-2 .socials-holder {
z-index: 9;
right: 0;
height: 100%;
text-align: right;
color: #ffffff;
display: flex;
flex-flow: column;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}
.section-2 .socials-holder ul li {
display: block;
}
.section-2 .socials-holder ul li a {
color: #ffffff;
/*font-size: 24px;*/
margin: 35px 40px 35px 0;
}
@media screen and (max-width: 991px) {
.section-2 .socials-holder {
display: none;
}
}
/* *******************************************
************** Section 3 ************** *
******************************************* */
.section-3 {
padding: 30px 0 0 0;
}
.section-3 .background-image-holder {
min-height: 20vh;
height: 350px;
max-height: 50vh;
}
.section-3.vh-100 .background-image-holder {
min-height: 100vh;
}
.section-3 h1,
.section-3 h2,
.section-3 h3,
.section-3 h4,
.section-3 h5,
.section-3 h6,
.section-3 p,
.section-3 p.lead {
color: #ffffff;
}
.section-3 .container {
z-index: 9;
}
.section-3 .socials-holder {
z-index: 9;
right: 0;
height: 100%;
text-align: right;
color: #ffffff;
display: flex;
flex-flow: column;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}
.section-3 .socials-holder ul li {
display: block;
}
.section-3 .socials-holder ul li a {
color: #ffffff;
/*font-size: 24px;*/
margin: 35px 40px 35px 0;
}
@media screen and (max-width: 991px) {
.section-3 .socials-holder {
display: none;
}
}
/* *******************************************
************** Section 4 ************** *
******************************************* */
.section-4 .bg-secondary {
background-clip: content-box !important;
}
.section-4 * {
color: #f4f4f4;
}
@media screen and (max-width: 575px) {
.section-4 .h-100 {
height: auto;
}
.section-4 .module-btn {
bottom: 0;
position: absolute;
}
}
.section-4 .info-holder {
padding: 40px 30px;
}
@media screen and (max-width: 575px) {
.section-4 .info-holder {
height: 370px;
}
}
/* *******************************************
************** Section 5 ************** *
******************************************* */
.section-5 .picrow {
margin-bottom: 10px;
}
.section-5 .photo-container {
position: relative;
}
.section-5 .photo-container .image-thumb {
padding: 0px 5px !important;
width: calc(100% - 10px);
background: transparent;
}
/* *******************************************
************** Section 6 ************** *
******************************************* */
.section-6 {
padding: 30px 0;
/* h1,h2,h3,h4,h5,h6,p{
color: @default;
}*/
}
.section-6 .mwembed {
height: auto !important;
width: auto !important;
}
@media screen and (max-width: 1199px) {
.section-6 .info-holder {
margin-bottom: 30px;
text-align: center;
}
}
.section-6 .div-table-cell {
position: relative;
}
.section-6 .div-table-cell .button-holder {
position: absolute;
width: 100%;
height: 100%;
justify-content: center;
display: flex;
align-items: center;
}
/* *******************************************
************** Section 7 ************** *
******************************************* */
.section-7 .card {
height: 100%;
background: #ffffff;
border: 0;
padding: 40px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.section-7 .card .stamp {
margin-left: 0;
margin-bottom: 30px;
color: #f4f4f4;
/*font-size: 35px;*/
}
.section-7 .card .stamp i {
color: #212121;
}
@media screen and (max-width: 767px) {
.section-7 .card .stamp {
/*font-size: 30px;*/
width: 80px;
height: 60px;
padding: 0;
margin-bottom: 0;
}
}
.section-7 .card.dark {
background: #212121;
}
.section-7 .card.dark h1,
.section-7 .card.dark h2,
.section-7 .card.dark h3,
.section-7 .card.dark h4,
.section-7 .card.dark p {
color: #f4f4f4;
}
.section-7 .card.dark i {
color: #f4f4f4;
}
.section-7 .card:hover {
background: #0044de;
}
.section-7 .card:hover h1,
.section-7 .card:hover h2,
.section-7 .card:hover h3,
.section-7 .card:hover h4,
.section-7 .card:hover p {
color: #f4f4f4;
}
.section-7 .card:hover i {
color: #f4f4f4;
}
/* *******************************************
************** Section 8 ************** *
******************************************* */
.section-8 {
position: relative;
z-index: 9;
}
.section-8 .icon-holder {
margin-top: 50px;
margin-bottom: 50px;
}
.section-8 .icon-holder .mw-icon,
.section-8 .icon-holder .icon {
margin-bottom: 35px;
/*font-size: 65px;*/
color: #0044de;
display: block;
}
/* *******************************************
************** Section 9 ************** *
******************************************* */
.section-9 {
padding: 0;
z-index: -1;
}
.section-9 .background-image-holder {
position: relative;
height: 575px;
max-height: 100vh;
/*&:before {
content: '';
display: block;
position: absolute;
width: 100%;
left: 0;
right: 0;
top: 0;
height: 300px;
background: rgba(255, 255, 255, 1);
background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0.72) 29%, rgba(255, 255, 255, 0) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(1%, rgba(255, 255, 255, 1)), color-stop(29%, rgba(255, 255, 255, 0.72)), color-stop(100%, rgba(255, 255, 255, 0)));
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0.72) 29%, rgba(255, 255, 255, 0) 100%);
background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0.72) 29%, rgba(255, 255, 255, 0) 100%);
background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0.72) 29%, rgba(255, 255, 255, 0) 100%);
background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0.72) 29%, rgba(255, 255, 255, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
}*/
}
.section-9 .container {
padding: 160px 0 320px 0;
}
@media screen and (max-width: 1199px) {
.section-9 .container {
padding: 120px 0 240px 0;
}
}
@media screen and (max-width: 991px) {
.section-9 .container {
padding: 120px 0 240px 0;
}
}
@media screen and (max-width: 575px) {
.section-9 .container {
padding: 80px 0 160px 0;
}
}
.section-9 .blockquote-holder {
max-width: 680px;
padding-bottom: 400px;
}
@media screen and (min-width: 1441px) {
.section-9 .blockquote-holder {
padding-bottom: 600px;
}
}
.mw-live-edit .section-9 {
margin-top: 0px;
}
.section-9.no-gradient {
margin-top: 0px;
}
.section-9.no-gradient .background-image-holder {
min-height: 70vh;
}
.section-9.no-gradient .background-image-holder:before {
display: none;
}
/* *******************************************
************** Section 10 ************** *
******************************************* */
.section-10 .mwembed {
height: auto !important;
}
.section-10 .new-world-testimonials-2 .info-holder {
text-align: left !important;
}
@media screen and (min-width: 992px) {
.section-10 .video-left .video-holder {
padding-right: 4.15%;
}
}
@media screen and (max-width: 991px) {
.section-10 .video-right .left-side {
order: 1 !important;
}
.section-10 .video-right .right-side {
order: 2 !important;
}
}
@media screen and (min-width: 992px) {
.section-10 .video-right .video-holder {
padding-left: 4.15%;
}
}
/* *******************************************
************** Section 11 ************** *
******************************************* */
.section-11 i.fab {
/*font-size: 36px;*/
color: #0044de;
margin-bottom: 30px;
}
.section-11 .title-holder {
height: 250px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
/* *******************************************
************** Section 12 ************** *
******************************************* */
.section-12 {
position: relative;
z-index: 9;
}
.section-12 .icon-holder {
margin: 50px auto;
}
.section-12 .icon-holder .mw-icon,
.section-12 .icon-holder .icon {
margin-bottom: 20px;
/*font-size: 55px;*/
color: #0044de;
display: block;
}
.section-12 h6 {
/*font-size: 36px;*/
color: #212121;
margin-bottom: 10px;
/*font-weight: 500;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
}
.section-12 p {
color: #212121;
}
.section-12 .button-holder:before {
opacity: 0;
}
@media screen and (min-width: 576px) and (max-width: 991px) {
.section-12 h6 {
/*font-size: 24px;*/
}
}
@media screen and (max-width: 767px) {
.section-12 .button-holder {
margin-top: 30px;
padding: 40px 0 50px 0;
}
.section-12 .button-holder:before {
opacity: 1;
}
.section-12 .icon-holder {
margin: 20px auto;
}
}
/* *******************************************
************** Section 13 ************** *
******************************************* */
.section-13 {
position: relative;
z-index: 9;
}
.section-13 .icon-holder {
margin: 50px auto;
}
.section-13 .icon-holder .icon,
.section-13 .icon-holder .mw-icon {
margin-bottom: 30px;
/*font-size: 55px;*/
color: #ffffff;
display: block;
}
.section-13 h6 {
/*font-size: 30px;*/
color: #ffffff;
margin-bottom: 5px;
/*font-weight: 500;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
}
.section-13 p {
color: #ffffff;
}
.section-13 .button-holder:before {
opacity: 0;
}
@media screen and (min-width: 576px) and (max-width: 991px) {
.section-13 h6 {
/*font-size: 24px;*/
}
}
@media screen and (max-width: 767px) {
.section-13 .button-holder {
margin-top: 30px;
padding: 40px 0 50px 0;
}
.section-13 .button-holder:before {
opacity: 1;
}
.section-13 .icon-holder {
margin: 20px auto;
}
}
/* *******************************************
************** Section 14 ************** *
******************************************* */
.section-14 .info {
float: left;
width: calc(100% - 50px);
}
.section-14 .mw-icon,
.section-14 .icon {
display: block;
float: left;
width: 50px;
margin-bottom: 20px;
}
.section-14 .mw-icon i,
.section-14 .icon i {
/*font-size: 38px;*/
color: #f4f4f4;
opacity: 0.5;
margin-top: 5px;
}
@media screen and (max-width: 575px) {
.section-14 .info,
.section-14 .icon {
float: none;
width: 100%;
}
}
/* *******************************************
************** Section 15 ************** *
******************************************* */
.section-15 {
min-height: 100px;
padding: 30px 0;
background-color: #212121;
}
.section-15 .container {
padding: 0 10%;
text-align: center;
}
@media screen and (max-width: 991px) {
.section-15 .slider-wrapper {
max-width: 100%;
}
}
/* *******************************************
************** Section 16 ************** *
******************************************* */
.section-16 {
min-height: 100px;
padding: 30px 0;
}
.section-16 .info-holder {
z-index: 9;
background: #ffffff;
padding: 50px 70px;
border: 1px solid rgba(33, 33, 33, 0.3);
}
.section-16 .flexbox-container {
justify-content: center;
}
.section-16 .left-side {
padding: 120px 60px;
min-height: 550px;
justify-content: center;
display: flex;
flex-direction: column;
}
.section-16 h1,
.section-16 h2,
.section-16 h3,
.section-16 h4,
.section-16 h5,
.section-16 h6 {
color: #212121;
}
.section-16 p,
.section-16 span {
/*font-size: 16px;*/
/*line-height: 1.5;*/
color: #212121;
}
.section-16 p {
margin-bottom: 10px;
}
.section-16 .img-holder {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
@media screen and (max-width: 991px) {
.section-16 .left-side {
min-height: auto;
padding: 10px;
}
.section-16 p {
text-align: center;
}
.section-16 .img-holder {
padding-top: 56.25%;
/* 16:9 Aspect Ratio */
}
.section-16 .flexbox-container {
flex-direction: column-reverse;
}
.section-16 .info-holder {
padding: 50px 20px;
}
}
/* *******************************************
************** Section 17 ************** *
******************************************* */
.section-17 {
min-height: 100px;
padding: 30px 0;
}
.section-17 .info-holder {
z-index: 9;
background: #ffffff;
padding: 50px 70px;
border: 1px solid rgba(33, 33, 33, 0.3);
}
.section-17 .flexbox-container {
justify-content: center;
}
.section-17 .right-side {
padding: 120px 60px;
min-height: 550px;
justify-content: center;
display: flex;
flex-direction: column;
}
.section-17 h1,
.section-17 h2,
.section-17 h3,
.section-17 h4,
.section-17 h5,
.section-17 h6 {
color: #212121;
}
.section-17 p,
.section-17 span {
/*font-size: 16px;*/
/*line-height: 1.5;*/
color: #212121;
}
.section-17 p {
margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
.section-17 .right-side {
min-height: auto;
padding: 10px;
}
.section-17 p {
text-align: center;
}
.section-17 .flexbox-container {
flex-direction: column;
}
}
.section-17 .img-holder {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
@media screen and (max-width: 991px) {
.section-17 .img-holder {
padding-top: 56.25%;
/* 16:9 Aspect Ratio */
}
.section-17 .info-holder {
padding: 50px 20px;
}
}
/* *******************************************
************** Section 18 ************** *
******************************************* */
.section-18 .padding-holder {
padding: 50px 30px;
max-height: calc(100vh - 100px);
}
@media screen and (min-width: 1200px) {
.section-18 .padding-holder {
min-height: 680px;
height: 100%;
}
}
@media screen and (max-width: 1199px) {
.section-18 .button-holder {
margin-top: 30px !important;
}
}
@media screen and (min-width: 1200px) {
.section-18 .background-image-holder .button-holder {
bottom: 50px;
position: absolute;
}
}
.section-18 .text-white h1,
.section-18 .text-white h2,
.section-18 .text-white h3,
.section-18 .text-white h4,
.section-18 .text-white h5,
.section-18 .text-white h6,
.section-18 .text-white p {
color: #ffffff !important;
}
/* *******************************************
************** Section 19 ************** *
******************************************* */
.section-19 {
padding: 30px 0 0 0;
}
.section-19 .background-image-holder {
min-height: 400px;
height: 30.25vw;
max-height: 90vh;
/*position: relative;
&:before {
position: absolute;
left: 0;
top: 0;
background: rgba(red(@default), green(@default), blue(@default), .3);
content: '';
width: 100%;
height: 100%;
z-index: 1;
}*/
}
.section-19 .background-image-holder > div {
z-index: 2;
}
@media screen and (max-width: 1440px) {
.section-19 .background-image-holder {
height: 56.25vw;
}
}
.section-19 .text-holder {
min-height: 400px;
}
.section-19 .info-holder {
padding-left: 50px;
padding-right: 50px;
}
.section-19 .info-holder h1,
.section-19 .info-holder h2,
.section-19 .info-holder h3,
.section-19 .info-holder h4,
.section-19 .info-holder h5,
.section-19 .info-holder h6,
.section-19 .info-holder p {
color: #ffffff !important;
}
.section-19 blockquote:before,
.section-19 blockquote,
.section-19 blockquote .testimonial .name {
color: #ffffff;
text-align: left;
}
.section-19 .socials-holder {
right: 0;
height: 100%;
text-align: right;
color: #ffffff;
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
}
.section-19 .socials-holder ul li {
display: block;
}
.section-19 .socials-holder ul li a {
color: #ffffff;
/*font-size: 24px;*/
margin: 35px 40px 35px 0;
}
@media screen and (min-width: 992px) {
.section-19 .stamp {
background: transparent !important;
width: auto;
height: auto;
max-width: 450px;
}
}
@media screen and (max-width: 991px) {
.section-19 .socials-holder {
display: none;
}
.section-19 .stamp {
padding: 35px;
position: absolute;
z-index: 999;
left: 0;
right: 0;
}
.section-19 .background-image-holder.cuted {
margin-bottom: 140px;
}
.section-19 .background-image-holder.cuted:after {
display: block;
width: 100%;
position: absolute;
content: '';
background: url('../img/divider.svg');
-webkit-background-size: cover;
background-size: cover;
height: 140px;
z-index: 9;
top: calc(100% - 140px);
-moz-transform: scale(-1, 1);
-webkit-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.section-19 blockquote:before,
.section-19 blockquote,
.section-19 blockquote .testimonial .name {
text-align: center;
}
.section-19 blockquote {
/*font-size: 16px;*/
}
.section-19 blockquote:before {
/*font-size: 18px;*/
}
.section-19 .align-self-end {
align-self: flex-start !important;
text-align: center;
}
.section-19 .info-holder {
padding-bottom: 10px;
margin: 50px auto 30px auto;
}
}
@media screen and (max-width: 767px) {
.section-19 blockquote:before {
margin: 5px auto;
}
.section-19 .stamp {
margin-top: 0;
width: 280px;
height: 280px;
background-repeat: no-repeat;
}
.section-19 .info-holder {
padding-bottom: 10px;
padding-left: 0;
padding-right: 0;
margin: 30px auto 10px;
}
}
/* *******************************************
************** Section 20 ************** *
******************************************* */
.section-20 {
position: relative;
z-index: 9;
}
.section-20 h3 {
/*font-size: 30px;*/
margin: 10px 0;
}
.section-20 .text-white h1,
.section-20 .text-white h2,
.section-20 .text-white h3,
.section-20 .text-white h4,
.section-20 .text-white h5,
.section-20 .text-white h6,
.section-20 .text-white p {
color: #ffffff !important;
}
.section-20 .background-image-holder {
-webkit-background-size: cover;
background-size: cover;
padding: 15px;
margin-bottom: 30px;
position: relative;
height: 100%;
}
.section-20 .background-image-holder:before {
position: absolute;
left: 0;
top: 0;
background: rgba(33, 33, 33, 0.5);
content: '';
width: 100%;
height: 100%;
z-index: 1;
}
.section-20 .icon-holder {
color: #ffffff;
margin-top: 10px;
margin-bottom: 20px;
}
.section-20 .icon-holder i,
.section-20 .icon-holder span {
/*font-size: 45px;*/
color: #ffffff;
display: block;
}
.section-20 .square {
position: relative;
width: 100%;
z-index: 2;
align-items: center;
justify-content: center;
display: flex;
height: 100%;
}
.section-20 .square .content {
position: relative;
width: 100%;
height: 100%;
flex-flow: column;
align-items: center;
justify-content: center;
display: flex;
}
.section-20 .square:after {
content: "";
display: block;
padding-bottom: 100%;
}
.section-20 .slick-dots {
text-align: center;
margin-top: 20px;
}
.section-20 .slick-dots li {
display: inline-block;
/*font-size: 0px;*/
margin: 0 5px;
}
.section-20 .slick-dots li button {
border: 0;
height: 11px;
width: 11px;
-webkit-border-radius: 14px;
-moz-border-radius: 14px;
border-radius: 14px;
background: #c2c2c2;
}
.section-20 .slick-dots li.slick-active button {
background: #212121;
height: 16px;
width: 16px;
}
.section-20 .slick-dots li button:before {
display: none;
}
@media screen and (max-width: 1199px) {
.section-20 .slide.slick-center {
margin-top: 0px;
}
.section-20 .slick-dots {
margin-top: 30px;
}
}
/* *******************************************
************** Section 21 ************** *
******************************************* */
.section-21 .twitter-holder {
padding: 30px;
background: #0044de;
}
/* *******************************************
************** Section 22 ************** *
******************************************* */
.section-22 .box {
margin-bottom: 30px;
padding: 25px 30px;
display: flex;
flex-flow: row;
align-items: center;
}
@media screen and (max-width: 575px) {
.section-22 .box {
justify-content: center;
flex-flow: column;
align-items: start;
}
}
.section-22 .box:hover {
cursor: pointer;
background: #0044de;
}
.section-22 .box:hover * {
color: #f4f4f4;
}
.section-22 .box:after {
content: '';
display: block;
clear: both;
}
.section-22 .box .icon-holder {
float: left;
/*font-size: 35px;*/
width: 60px;
text-align: left;
}
@media screen and (max-width: 575px) {
.section-22 .box .icon-holder {
margin-bottom: 10px;
}
}
.section-22 .box .text-holder {
float: left;
width: calc(100% - 60px);
}
.section-22 .box p {
/*font-size: 16px;*/
/*line-height: 1.35;*/
}
.section-22 ul.socials {
margin: 0;
}
.section-22 ul.socials li {
margin-left: 7px;
margin-right: 0;
}
.section-22 ul.socials li a {
background: transparent;
color: #212121;
/*font-size: 20px;*/
height: 29px;
width: 29px;
}
.section-22 .socials-holder {
right: 30px;
bottom: 47px;
position: absolute;
}
/* *******************************************
************** Section 23 ************** *
******************************************* */
.section-23 p {
/*font-size: 16px;*/
/*line-height: 1.5;*/
}
.section-23 .card {
height: 100%;
background: #ffffff;
border: 0;
padding: 30px 10px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
text-align: center;
}
.section-23 .card .stamp {
margin: 0 auto;
margin-bottom: 10px;
color: #f4f4f4;
/*font-size: 55px;*/
}
.section-23 .card .stamp i {
color: #0044de;
}
@media screen and (max-width: 767px) {
.section-23 .card .stamp {
/*font-size: 30px;*/
width: 80px;
height: 80px;
padding: 26px;
}
}
.section-23 .card.dark {
background: #212121;
}
.section-23 .card.dark h1,
.section-23 .card.dark h2,
.section-23 .card.dark h3,
.section-23 .card.dark h4,
.section-23 .card.dark p {
color: #f4f4f4;
}
.section-23 .card.dark i {
color: #f4f4f4;
}
.section-23 .card:hover {
background: #0044de;
}
.section-23 .card:hover h1,
.section-23 .card:hover h2,
.section-23 .card:hover h3,
.section-23 .card:hover h4,
.section-23 .card:hover p {
color: #f4f4f4;
}
.section-23 .card:hover i {
color: #f4f4f4;
}
/* *******************************************
************** Section 24 ************** *
******************************************* */
.section-24 {
position: relative;
z-index: 9;
}
.section-24 .background-image-holder {
-webkit-background-size: cover;
background-size: cover;
padding: 15px;
margin-bottom: 30px;
position: relative;
}
.section-24 .background-image-holder:before {
position: absolute;
left: 0;
top: 0;
background: rgba(0, 68, 222, 0.8);
content: '';
width: 100%;
height: 100%;
z-index: 1;
visibility: hidden;
}
.section-24 .icon-holder {
color: #f4f4f4;
margin-top: 10px;
margin-bottom: 20px;
}
.section-24 .icon-holder i,
.section-24 .icon-holder span {
/*font-size: 45px;*/
color: #f4f4f4;
display: block;
}
.section-24 .square {
position: relative;
width: 100%;
z-index: 2;
visibility: hidden;
}
.section-24 .square .content {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
}
.section-24 .square .content p {
/*font-size: 16px;*/
}
.section-24 .square:after {
content: "";
display: block;
padding-bottom: 100%;
}
.section-24 .background-image-holder:hover {
cursor: pointer;
}
.section-24 .background-image-holder:hover .square {
visibility: visible;
}
.section-24 .background-image-holder:hover:before {
visibility: visible;
}
.section-24 ul.socials {
margin: 0 0 20px 0;
}
.section-24 ul.socials li {
margin: 0 2px;
}
.section-24 ul.socials li a,
.section-24 ul.socials li a:hover {
background: transparent;
/*font-size: 24px;*/
}
.section-24 ul.socials li a:hover {
color: rgba(244, 244, 244, 0.5);
}
.section-24 .socials-holder {
position: absolute;
bottom: 0;
}
/* *******************************************
************** Section 25 ************** *
******************************************* */
.section-25 {
min-height: 100px;
padding: 30px 0;
}
.section-25 .img-holder {
padding: 0 70px;
position: relative;
min-height: 500px;
margin-bottom: 20px;
}
.section-25 .img-holder .image-1 {
width: 80%;
height: 80%;
position: absolute;
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
top: 0;
left: 0;
}
.section-25 .img-holder .image-2 {
width: 70%;
height: 70%;
position: absolute;
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
border: 15px solid #ffffff;
bottom: 0;
right: 0;
}
/* *******************************************
************** Section 26 ************** *
******************************************* */
.section-26 {
position: relative;
z-index: 9;
}
@media screen and (max-width: 576px) {
.section-26 .features-holder > div {
margin-top: 20px;
margin-bottom: 20px;
}
}
@media screen and (min-width: 576px) {
.section-26 .features-holder > div:nth-child(odd) {
margin-top: 40px;
}
}
.section-26 .icon-holder {
padding-top: 50px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
padding-bottom: 50px;
}
.section-26 .icon-holder .mw-icon,
.section-26 .icon-holder .icon {
margin-bottom: 15px;
/*font-size: 55px;*/
color: #0044de;
display: block;
}
.section-26 .icon-holder:hover {
background-color: #0044de;
}
.section-26 .icon-holder:hover * {
color: #f4f4f4;
}
.section-26 .icon-holder:hover .mw-icon,
.section-26 .icon-holder:hover .icon {
color: #f4f4f4;
}
/* *******************************************
************** Section 27 ************** *
******************************************* */
.section-27 {
padding: 30px 0 0 0;
}
@media screen and (min-width: 1440px) {
.section-27 h1 {
/*font-size: 100px;*/
}
.section-27 h2 {
/*font-size: 46px;*/
}
}
.section-27 .background-image-holder {
min-height: 50vh;
height: 750px;
max-height: 80vh;
}
.section-27.vh-80 .background-image-holder {
min-height: 80vh;
height: 80vh;
}
.section-27 h1,
.section-27 h2,
.section-27 h3,
.section-27 h4,
.section-27 h5,
.section-27 h6,
.section-27 p,
.section-27 p.lead {
color: #ffffff;
}
.section-27 .container {
z-index: 9;
}
.section-27 .socials-holder {
z-index: 9;
right: 0;
height: 100%;
text-align: right;
color: #ffffff;
display: flex;
flex-flow: column;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}
.section-27 .socials-holder ul li {
display: block;
}
.section-27 .socials-holder ul li a {
color: #ffffff;
/*font-size: 24px;*/
margin: 35px 40px 35px 0;
}
@media screen and (max-width: 991px) {
.section-27 .socials-holder {
display: none;
}
}
/* *******************************************
**************** Pages *************** *
******************************************* */
/* Page - Blog Inner */
.blog-inner-page .padding {
max-width: 780px;
}
.blog-inner-page ul.socials li a {
color: #212121;
background: transparent;
}
.blog-inner-page ul.socials li a:hover {
color: #212121;
background: #212121;
}
.blog-inner-page .heading h1 {
/*font-size: 46px;*/
color: #212121;
/*font-weight: 600;*/
}
@media screen and (max-width: 1199px) {
.blog-inner-page .heading h1 {
/*font-size: 36px;*/
}
}
@media screen and (max-width: 767px) {
.blog-inner-page .heading h1 {
/*font-size: 24px;*/
}
}
.blog-inner-page .heading-image {
width: 100%;
}
.blog-inner-page .description img {
max-width: 100%;
}
.blog-inner-page .share-label {
/*font-size: 18px;*/
color: #212121;
/*font-weight: bold;*/
}
.blog-inner-page .comments .comment-holder {
text-align: center;
}
.blog-inner-page .comments .comment-holder .author,
.blog-inner-page .comments .comment-holder .author a,
.blog-inner-page .comments .comment-holder .author span {
/*font-size: 20px;*/
color: #212121;
/*font-weight: bold;*/
text-decoration: none;
}
.blog-inner-page .comments .comment-holder .date {
margin-bottom: 20px;
}
.blog-inner-page .comments .comment-holder .date,
.blog-inner-page .comments .comment-holder .date span {
/*font-size: 12px;*/
color: #9f9f9f;
}
.blog-inner-page .comments .comment-holder .description {
width: 80%;
margin: 0 auto;
}
.blog-inner-page .comments .comment-holder .description,
.blog-inner-page .comments .comment-holder .description p {
/*font-size: 16px;*/
color: #212121;
text-align: center;
}
@media screen and (max-width: 991px) {
.blog-inner-page .heading h1 {
/*font-size: 30px;*/
}
}
@media screen and (max-width: 767px) {
.blog-inner-page .heading-image {
width: 100%;
-webkit-background-size: contain;
background-size: contain;
background-position: center center;
background-repeat: no-repeat;
background-attachment: inherit;
}
.blog-inner-page .heading h1 {
/*font-size: 28px;*/
}
}
.blog-inner-page .reviews {
margin-top: 20px;
}
.blog-inner-page .reviews .heading h3 {
/*font-size: 16px;*/
color: #212121;
/*font-weight: bold;*/
padding: 8px 0 25px 0px;
}
.blog-inner-page .reviews .heading i {
float: left;
/*font-size: 50px;*/
color: #212121;
}
.blog-inner-page .reviews .review {
background: #f3f3f3;
padding: 15px 0;
color: #212121;
margin-bottom: 20px;
}
.blog-inner-page .reviews .review:after {
clear: both;
content: '';
display: block;
}
.blog-inner-page .reviews .review .avatar-holder {
width: 70px;
float: left;
}
.blog-inner-page .reviews .review .avatar-holder .avatar {
background: #f3f3f3;
width: 50px;
height: 50px;
background-repeat: no-repeat;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
background-size: cover;
}
.blog-inner-page .reviews .review .info {
width: calc(100% - 70px);
float: left;
}
.blog-inner-page .reviews .review .info h4 {
color: #212121;
/*font-size: 14px;*/
/*font-weight: 700;*/
margin: 10px 0 20px 0;
}
.blog-inner-page .reviews .review .info p {
color: #212121;
/*font-size: 14px;*/
}
.blog-inner-page .leave-review .left-side {
float: left;
width: 70px;
}
.blog-inner-page .leave-review .right-side {
float: left;
width: calc(100% - 70px);
}
.blog-inner-page .leave-review .left-side i {
/*font-size: 50px;*/
color: #212121;
}
.blog-inner-page .leave-review .right-side h3 {
/*font-size: 24px;*/
color: #212121;
/*font-weight: bold;*/
margin: 12px 0 25px 0;
}
.blog-inner-page .leave-review .right-side p {
/*font-size: 16px;*/
color: #212121;
}
.blog-inner-page .leave-review .form textarea {
min-height: 100px;
max-width: 100%;
}
.blog-inner-page .leave-review .form .form-group {
margin-bottom: 25px;
}
.blog-inner-page .leave-review .form .form-group label {
/*font-size: 14px;*/
color: #212121;
/*line-height: 1.4;*/
margin-bottom: 10px;
}
.blog-inner-page .leave-review .form .form-group .form-control {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border: 2px solid #ddd;
color: #212121;
/*font-size: 0.857rem;*/
padding: 12px 20px;
margin-bottom: 10px;
margin-right: 10px;
/*font-weight: 600;*/
height: auto;
}
.blog-inner-page .leave-review .form .form-group .form-control::placeholder {
/* Chrome, Firefox, Opera, Safari 10.1+ */
color: rgba(191, 191, 191, 0.8);
opacity: 1;
/* Firefox */
}
.blog-inner-page .leave-review .form .form-group .form-control:-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: rgba(191, 191, 191, 0.8);
}
.blog-inner-page .leave-review .form .form-group .form-control::-ms-input-placeholder {
/* Microsoft Edge */
color: rgba(191, 191, 191, 0.8);
}
.blog-inner-page .reviews h1,
.blog-inner-page .reviews h2,
.blog-inner-page .reviews h3,
.blog-inner-page .reviews h4,
.blog-inner-page .reviews h5,
.blog-inner-page .reviews h6,
.blog-inner-page .reviews p,
.blog-inner-page .reviews span {
color: #212121 !important;
}
/* Page - Shop Inner */
.relative {
position: relative;
}
.shop-inner-page .next-previous-content .btn {
padding: 4px 8px;
text-align: center;
}
.shop-inner-page .next-previous-content .btn i {
margin: 0;
}
.shop-inner-page .heading {
text-align: left;
margin-bottom: 20px;
border-bottom: 1px solid #ebebeb;
padding-bottom: 20px;
}
.shop-inner-page .heading h4 {
width: calc(100% - 70px);
}
.shop-inner-page .main-price {
/*font-weight: bold;*/
}
.shop-inner-page .main-price .price {
color: #0044de;
/*font-size: 24px;*/
}
.shop-inner-page .main-price .price span {
margin: 0 5px;
/*font-size: 36px;*/
}
.shop-inner-page .main-price .price-old {
color: #b9b9b9;
/*font-size: 24px;*/
text-decoration: line-through;
margin-right: 15px;
}
.shop-inner-page .mw-add-to-cart-holder .price:after {
clear: both;
display: block;
content: '';
}
.shop-inner-page .mw-price-item-value,
.shop-inner-page .mw-price-item-key {
color: #212121;
/*font-size: 16px;*/
/*font-weight: bold;*/
margin-top: 10px;
display: inline-block;
}
.shop-inner-page p.labels {
color: #212121;
/*font-size: 14px;*/
/*line-height: 1.8;*/
}
.shop-inner-page p.labels span {
color: #212121;
}
.shop-inner-page .description-short {
margin-top: 20px;
}
.shop-inner-page .description-short h1,
.shop-inner-page .description-short h2,
.shop-inner-page .description-short h3,
.shop-inner-page .description-short h4,
.shop-inner-page .description-short h5,
.shop-inner-page .description-short h6,
.shop-inner-page .description-short span,
.shop-inner-page .description-short p {
color: #212121;
}
.shop-inner-page .description {
margin-top: 20px;
}
.shop-inner-page .description h1,
.shop-inner-page .description h2,
.shop-inner-page .description h3,
.shop-inner-page .description h4,
.shop-inner-page .description h5,
.shop-inner-page .description h6 {
color: #212121;
}
.shop-inner-page .description p {
/*line-height: 1.5;*/
/*font-size: 16px;*/
color: #212121;
text-align: justify;
margin-bottom: 10px;
}
.shop-inner-page .description .table {
margin: 0;
text-align: left;
}
.shop-inner-page .description .table tr td:first-of-type {
padding-left: 0;
}
.shop-inner-page .description .table td {
/*font-size: 16px;*/
color: #212121;
/*font-weight: bold;*/
}
.shop-inner-page .product-gallery a {
display: block;
width: 100%;
background: #f3f3f3;
margin-bottom: 20px;
text-align: center;
padding: 10px;
}
.shop-inner-page .product-gallery img {
max-width: 70%;
}
.shop-inner-page .product-gallery a:last-child img {
margin-bottom: 0px;
}
.shop-inner-page .quantity input,
.shop-inner-page .quantity .minus,
.shop-inner-page .quantity .plus {
display: block;
float: left;
background: #2c6cff;
color: #fff;
border: 0;
margin: 0;
/*font-size: 18px;*/
padding: 6px 20px;
height: 46px;
}
.shop-inner-page .quantity input {
width: calc(100% - 120px);
text-align: center;
border-radius: 0;
}
.shop-inner-page .quantity .minus,
.shop-inner-page .quantity .plus {
/*font-size: 24px;*/
width: 60px;
}
.shop-inner-page .quantity .minus {
border-bottom-left-radius: 7px;
border-top-left-radius: 7px;
}
.shop-inner-page .quantity .plus {
border-bottom-right-radius: 7px;
border-top-right-radius: 7px;
}
.shop-inner-page .box .btn {
text-transform: uppercase;
}
.shop-inner-page .table-striped > tbody > tr:nth-of-type(odd) {
background: transparent;
}
.shop-inner-page .table-striped > tbody > tr:nth-of-type(even) {
background: rgba(61, 0, 180, 0.05);
}
.shop-inner-page .product-specifications .table-striped > tbody > tr td:first-of-type {
border-bottom-left-radius: 7px;
border-top-left-radius: 7px;
}
.shop-inner-page .product-specifications .table-striped > tbody > tr td:last-of-type {
border-bottom-right-radius: 7px;
border-top-right-radius: 7px;
}
.shop-inner-page .product-specifications .table-striped th {
background: transparent;
color: #212121;
text-transform: uppercase;
}
.shop-inner-page .product-specifications .table tr:hover > td {
background: #dadada;
}
.shop-inner-page .product-specifications .table {
width: 100%;
}
.shop-inner-page .product-specifications .left-side {
float: left;
width: 70px;
}
.shop-inner-page .product-specifications .right-side {
float: left;
width: calc(100% - 70px);
}
.shop-inner-page .product-specifications .left-side i {
/*font-size: 50px;*/
color: #212121;
}
.shop-inner-page .product-specifications .right-side h3 {
/*font-size: 24px;*/
color: #212121;
/*font-weight: bold;*/
margin: 12px 0 25px 0;
}
.shop-inner-page .product-specifications .right-side p {
/*font-size: 16px;*/
color: #212121;
}
.shop-inner-page .reviews {
margin-top: 20px;
}
.shop-inner-page .reviews h1,
.shop-inner-page .reviews h2,
.shop-inner-page .reviews h3,
.shop-inner-page .reviews h4,
.shop-inner-page .reviews h5,
.shop-inner-page .reviews h6,
.shop-inner-page .reviews span,
.shop-inner-page .reviews p {
color: #212121;
}
.shop-inner-page .reviews .heading h3 {
/*font-size: 16px;*/
color: #212121;
/*font-weight: bold;*/
padding: 8px 0 25px 0px;
}
.shop-inner-page .reviews .heading i {
float: left;
/*font-size: 50px;*/
color: #212121;
}
.shop-inner-page .reviews .review {
background: #f3f3f3;
padding: 15px 0;
color: #212121;
margin-bottom: 20px;
}
.shop-inner-page .reviews .review:after {
clear: both;
content: '';
display: block;
}
.shop-inner-page .reviews .review .avatar-holder {
width: 70px;
float: left;
}
.shop-inner-page .reviews .review .avatar-holder .avatar {
background: #f3f3f3;
width: 50px;
height: 50px;
background-repeat: no-repeat;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
background-size: cover;
}
.shop-inner-page .reviews .review .info {
width: calc(100% - 70px);
float: left;
}
.shop-inner-page .reviews .review .info h4 {
color: #212121;
/*font-size: 14px;*/
/*font-weight: 700;*/
margin: 0px 0 20px 0;
}
.shop-inner-page .reviews .review .info p {
color: #212121;
/*font-size: 14px;*/
}
.shop-inner-page .leave-review .left-side {
float: left;
width: 70px;
}
.shop-inner-page .leave-review .right-side {
float: left;
width: calc(100% - 70px);
}
.shop-inner-page .leave-review .left-side i {
/*font-size: 50px;*/
color: #212121;
}
.shop-inner-page .leave-review .right-side h3 {
/*font-size: 24px;*/
color: #212121;
/*font-weight: bold;*/
margin: 12px 0 25px 0;
}
.shop-inner-page .leave-review .right-side p {
/*font-size: 16px;*/
color: #212121;
}
.shop-inner-page .leave-review .form textarea {
min-height: 100px;
max-width: 100%;
}
.shop-inner-page .leave-review .form .form-group {
margin-bottom: 25px;
}
.shop-inner-page .leave-review .form .form-group label {
/*font-size: 14px;*/
color: #212121;
/*line-height: 1.4;*/
margin-bottom: 10px;
}
.shop-inner-page .leave-review .form .form-group .form-control {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border: 2px solid #ddd;
color: #212121;
/*font-size: 0.857rem;*/
padding: 12px 20px;
margin-bottom: 10px;
margin-right: 10px;
text-transform: uppercase;
/*font-weight: 600;*/
height: auto;
}
.shop-inner-page .leave-review .form .form-group .form-control::placeholder {
/* Chrome, Firefox, Opera, Safari 10.1+ */
color: rgba(191, 191, 191, 0.8);
opacity: 1;
/* Firefox */
}
.shop-inner-page .leave-review .form .form-group .form-control:-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: rgba(191, 191, 191, 0.8);
}
.shop-inner-page .leave-review .form .form-group .form-control::-ms-input-placeholder {
/* Microsoft Edge */
color: rgba(191, 191, 191, 0.8);
}
@media screen and (max-width: 991px) {
.shop-inner-page .heading h1 {
/*font-size: 30px;*/
}
.shop-inner-page p.price {
/*font-size: 30px;*/
}
.shop-inner-page .box {
padding: 30px 30px 30px 30px;
}
.shop-inner-page .box .quantity input {
margin-bottom: 10px;
}
}
@media screen and (max-width: 767px) {
.shop-inner-page p.price {
/*font-size: 28px;*/
}
}
.shop-inner-page .tabs .tab-pane {
padding: 20px 0 0 0;
}
.zoomContainer {
z-index: 3;
}
.shop-inner-page .elevatezoom {
position: relative;
margin-bottom: 40px;
}
.shop-inner-page .elevatezoom .main-image {
max-width: 100%;
}
.shop-inner-page .elevatezoom .square {
border: 1px solid #f3f3f3;
}
.shop-inner-page .elevatezoom .square .content {
padding: 20px;
}
.shop-inner-page .elevatezoom .elevatezoom-holder {
max-width: calc(100% - 100px);
height: 100%;
white-space: nowrap;
max-height: 100%;
text-align: center;
max-width: 100%;
margin: 0 auto;
align-items: center;
justify-content: center;
display: flex;
position: relative;
}
.shop-inner-page .elevatezoom .elevatezoom-holder img {
max-height: 100%;
/*position: relative !important;*/
left: 0;
right: 0;
margin: 0 auto;
}
.shop-inner-page .elevatezoom .elevatezoom-holder .helper {
display: inline-block;
height: 100%;
vertical-align: middle;
}
.shop-inner-page .elevatezoom .elevatezoom-holder .zoomWrapper {
max-height: 100%;
max-width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery {
margin-top: 20px;
position: relative;
padding: 0 25px;
width: 100%;
float: left;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-list {
margin: 0 -10px;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery a {
display: block;
height: 100px;
width: 100%;
background-size: contain;
background-repeat: no-repeat;
background-origin: content-box;
padding: 5px 10px;
margin: 0px 0 14px 0;
background-color: #fff;
background-position: center center;
border: 1px solid #ebebeb;
margin: 10px;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery a.active {
border-color: #0044de;
-webkit-box-shadow: 0 0 17px rgba(200, 200, 200, 0.5);
-moz-box-shadow: 0 0 17px rgba(200, 200, 200, 0.5);
box-shadow: 0 0 17px rgba(200, 200, 200, 0.5);
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-arrow {
top: 60px;
z-index: 4;
/*font-size: 0;*/
border: 0;
background: none;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery:hover .slick-arrow {
display: block !important;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-arrow:before {
/*font-family: FontAwesome;*/
color: #bfbfbf;
display: block;
/*font-size: 12px;*/
text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.8);
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-next {
right: 0;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-next:before {
content: '\f054';
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-prev {
left: 0;
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-prev:before {
content: '\f053';
}
.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-track {
float: left;
}
/* Slick options */
.product-gallery .slick-arrow {
position: absolute;
top: 45%;
z-index: 4;
/*font-size: 0;*/
border: 0;
background: none;
display: none !important;
}
.shop-inner-page .product-gallery:hover .slick-arrow {
display: block !important;
}
.shop-inner-page .product-gallery .slick-arrow:before {
/*font-family: FontAwesome;*/
color: #ffffff;
display: block;
/*font-size: 20px;*/
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
}
.shop-inner-page .product-gallery .slick-next {
right: 5%;
}
.shop-inner-page .product-gallery .slick-next:before {
content: '\f054';
}
.shop-inner-page .product-gallery .slick-prev {
left: 5%;
}
.shop-inner-page .product-gallery .slick-prev:before {
content: '\f053';
}
@media screen and (max-width: 991px) {
.shop-inner-page .product-holder .product-info {
margin-top: 35px;
margin-bottom: 35px;
}
.shop-inner-page .table-responsive {
border: 0;
}
}
.shop-inner-page .product-info .heading h1 {
/*font-size: 24px;*/
color: #212121;
/*font-weight: bold;*/
/*font-style: normal;*/
font-stretch: normal;
/*line-height: normal;*/
letter-spacing: normal;
}
@media screen and (max-width: 1199px) {
.shop-inner-page .product-info .heading h1 {
/*font-size: 18px;*/
}
}
/* Masonry Gallery */
.masonry-gallery .image-holder {
position: relative;
overflow: hidden;
z-index: 60;
}
.masonry-gallery .image-holder:after {
content: '';
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
border: 10px solid #ffffff;
z-index: 50;
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
-webkit-transform: scale(1.06);
-ms-transform: scale(1.06);
transform: scale(1.06);
}
.masonry-gallery .image-holder:hover:after {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.masonry-gallery .image-holder:hover .image-holder__descr {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
.masonry-gallery .image-holder:hover .image-holder__icon {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
.masonry-gallery .image-holder_dark:after {
border-color: #2b2b2b;
}
.masonry-gallery .image-holder__img {
width: 100%;
height: auto;
}
.masonry-gallery .image-holder__descr {
position: absolute;
left: 0;
bottom: 10px;
width: 100%;
background-color: #0044de;
text-align: center;
padding: 17px 0px;
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
opacity: 0;
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
}
.projects .masonry-gallery .image-holder__descr {
background-color: rgba(0, 68, 222, 0.8);
text-align: left;
padding: 15px 20px;
}
.projects .masonry-gallery .image-holder__descr .image-holder__heading {
color: #212121;
/*font-size: 16px;*/
text-transform: none;
/*font-weight: bold;*/
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.projects .masonry-gallery .image-holder__descr .image-holder__description {
color: #ffffff;
/*font-size: 16px;*/
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.masonry-gallery .image-holder__heading {
/*font-size: 1.07692rem;*/
/*font-weight: 400;*/
color: #ffffff;
text-transform: uppercase;
margin-top: 0;
margin-bottom: 0;
}
.masonry-gallery .image-holder__icon {
display: inline-block;
position: absolute;
top: 10px;
right: 10px;
width: 30px;
height: 30px;
background-color: #212121;
text-align: center;
padding: 3px;
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
opacity: 0;
-webkit-transform: translate(10px, -10px);
-ms-transform: translate(10px, -10px);
transform: translate(10px, -10px);
}
.masonry-gallery .image-holder__icon:before {
content: '\f105';
display: inline-block;
/*font-family: 'FontAwesome';*/
/*font-size: 1.23077rem;*/
color: #212121;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.masonry-gallery .masonry-grid-works {
margin: 0 -10px;
}
.masonry-gallery .masonry-grid-works_fullwidth {
margin: 0;
}
.masonry-gallery .masonry-grid-works__sizer_w-20 {
width: 20%;
}
.masonry-gallery .masonry-grid-works__sizer_w-25 {
width: 25%;
}
.masonry-gallery .masonry-grid-works__sizer_w-33 {
width: -webkit-calc(100% / 3);
width: calc(100% / 3);
}
.masonry-gallery .masonry-grid-works__item {
padding: 10px;
}
.masonry-gallery .masonry-grid-works__item_fullwidth {
padding: 0;
}
.masonry-gallery .masonry-grid-works__item_w-20 {
width: 20%;
}
.masonry-gallery .masonry-grid-works__item_w-25 {
width: 25%;
}
.masonry-gallery .masonry-grid-works__item_w-33 {
width: -webkit-calc(100% / 3);
width: calc(100% / 3);
}
.masonry-gallery .list-masonry-grid-works-filter {
display: block;
text-align: center;
}
.masonry-gallery .list-masonry-grid-works-filter__item {
display: inline-block;
}
.masonry-gallery .list-masonry-grid-works-filter__link {
margin: 0 10px;
}
.masonry-gallery .list-masonry-grid-works-filter__link_active .list-masonry-grid-works-filter__link-lines {
opacity: 1;
visibility: visible;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines {
display: inline-block;
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
opacity: 0;
visibility: hidden;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines:before,
.masonry-gallery .list-masonry-grid-works-filter__link-lines:after {
content: '';
display: block;
background-color: #212121;
position: absolute;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_top:before {
width: 1px;
height: 38px;
bottom: -9px;
left: 2px;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_top:after {
width: 1px;
height: 30px;
bottom: -9px;
left: 0px;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_bottom:before {
width: 1px;
height: 38px;
top: -9px;
right: 2px;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_bottom:after {
width: 1px;
height: 30px;
top: -9px;
right: 0px;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_left:before {
width: 60px;
height: 1px;
bottom: 2px;
left: -9px;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_left:after {
width: 50px;
height: 1px;
bottom: 0px;
left: -9px;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_right:before {
width: 60px;
height: 1px;
top: 2px;
right: -9px;
}
.masonry-gallery .list-masonry-grid-works-filter__link-lines_right:after {
width: 50px;
height: 1px;
top: 0px;
right: -9px;
}
@media only screen and (max-width: 1200px) {
.masonry-gallery .masonry-grid-works__sizer_w-20,
.masonry-gallery .masonry-grid-works__item_w-20 {
width: 50%;
}
}
@media only screen and (max-width: 991px) {
.masonry-gallery .masonry-grid-works__sizer_w-25,
.masonry-gallery .masonry-grid-works__item_w-25 {
width: 50%;
}
.masonry-gallery .masonry-grid-works__sizer_w-33,
.masonry-gallery .masonry-grid-works__item_w-33 {
width: 50%;
}
}
@media only screen and (max-width: 767px) {
.masonry-gallery .list-masonry-grid-works-filter__item {
display: block;
margin-bottom: 15px;
padding: 0px 15px;
}
.masonry-gallery .list-masonry-grid-works-filter__item:last-child {
margin-bottom: 0;
}
}
@media only screen and (max-width: 480px) {
.masonry-gallery .image-holder__descr {
opacity: 1;
}
.masonry-gallery .masonry-grid-works__sizer_w-20,
.masonry-gallery .masonry-grid-works__item_w-20 {
width: 100%;
}
.masonry-gallery .masonry-grid-works__sizer_w-25,
.masonry-gallery .masonry-grid-works__item_w-25 {
width: 100%;
}
.masonry-gallery .masonry-grid-works__sizer_w-33,
.masonry-gallery .masonry-grid-works__item_w-33 {
width: 100%;
}
}
/* Checkout Modal */
@media screen and (min-width: 1450px) {
.modal-dialog {
margin: 10% auto;
}
}
.checkout-modal .modal-content {
border: 1px solid #c3c3c3 !important;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
background: #f5f5f5;
color: #505050;
}
.checkout-modal .modal-header {
padding-bottom: 0;
border-color: #c3c3c3;
}
.checkout-modal .modal-header .close {
margin-top: -25px;
margin-right: -10px;
background: #f5f5f5;
opacity: 1;
color: #505050;
padding: 1px 5px;
border: 1px solid #c3c3c3;
border-radius: 100%;
right: 0;
position: absolute;
}
.checkout-modal .step-button {
text-align: center;
padding: 0;
}
.checkout-modal .step-button a {
text-decoration: none;
display: block;
height: 100%;
}
.checkout-modal .step-button.muted a {
opacity: 0.4;
}
.checkout-modal .step-button .active {
border-bottom: 2px solid #212121;
}
.checkout-modal .step-button i {
/*font-size: 24px;*/
color: #505050;
}
.checkout-modal .step-button span {
display: block;
/*font-size: 14px;*/
color: #505050;
/*font-weight: bold;*/
padding-bottom: 10px;
}
.checkout-modal .js-step-content {
display: none;
}
.checkout-modal .js-step-content .btn {
border-radius: 2px;
}
.checkout-modal .js-shopping-cart .products .product {
/*font-size: 14px;*/
border-bottom: 1px solid #c3c3c3;
padding: 10px 0;
}
@media screen and (max-width: 767px) {
.checkout-modal .js-shopping-cart .products .product img {
max-width: 200px;
margin: 0 auto;
display: block;
}
}
.checkout-modal .js-shopping-cart .products .product:hover {
background: #ffffff;
}
.checkout-modal .js-shopping-cart .products .product .action {
padding-left: 0;
padding-right: 0;
}
.checkout-modal .js-shopping-cart .products .product .action a {
color: #0044de;
opacity: 1;
display: inline-block;
}
.checkout-modal .js-shopping-cart .products .product .qty {
padding-left: 0;
padding-right: 0;
text-align: center;
}
.checkout-modal .js-shopping-cart .products .product .qty select {
margin-top: 25px;
}
.checkout-modal .js-shopping-cart .products .product .action .tooltip {
margin-top: 5px;
}
.checkout-modal .js-shopping-cart .products .product .title,
.checkout-modal .js-shopping-cart .products .product .price,
.checkout-modal .js-shopping-cart .products .product .action {
padding-top: 35px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.checkout-modal .js-shopping-cart .products .product .price,
.checkout-modal .js-shopping-cart .products .product .action {
text-align: center;
}
.checkout-modal .js-shopping-cart .amount .total,
.checkout-modal .js-shopping-cart .amount .promocode {
padding-top: 35px;
}
.checkout-modal .js-shopping-cart .amount .promocode .form-control {
/*font-size: 14px;*/
/*font-style: italic;*/
}
.checkout-modal .js-shopping-cart .amount .total p,
.checkout-modal .js-shopping-cart .amount .promocode p {
margin-bottom: 20px;
}
.checkout-modal .js-shopping-cart .amount .promocode .btn {
border-bottom-right-radius: 2px;
border-top-right-radius: 2px;
}
.checkout-modal .js-shopping-cart .amount .promocode .form-control {
margin: 0;
}
.checkout-modal .js-shopping-cart .amount .total {
/*font-size: 16px;*/
}
.checkout-modal .js-step-content {
/*font-size: 16px;*/
}
.checkout-modal .js-step-content .form-control {
border: 0;
margin-bottom: 10px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
/*font-size: 14px;*/
}
.checkout-modal .js-step-content .fields .field-holder {
margin-bottom: 0;
}
.checkout-modal .js-step-content .fields .field-holder .form-control,
.checkout-modal .js-step-content .fields .field-holder .bootstrap-select {
width: 100% !important;
}
.checkout-modal .js-step-content .fields .field-holder .bootstrap-select .btn {
margin-bottom: 10px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
border: 0;
}
.checkout-modal .js-step-content .fields:after {
display: block;
clear: both;
content: '';
}
.checkout-modal .js-step-content .fields.x2,
.checkout-modal .js-step-content .fields.x3 {
margin: 0 -5px;
}
.checkout-modal .js-step-content .fields.x2 .field-holder {
float: left;
width: 50%;
padding: 0 5px;
}
.checkout-modal .js-step-content .fields.x3 .field-holder {
float: left;
width: 33.3%;
padding: 0 5px;
}
@media screen and (max-width: 767px) {
.checkout-modal .js-shopping-cart .products .product .title {
text-align: center;
}
}
@media (min-width: 1450px) {
.checkout-modal .modal-dialog {
width: 700px;
}
}
/* Login Modal */
@media screen and (min-width: 1450px) {
/*.modal-dialog {*/
/*margin: 10% auto;*/
/*}*/
}
.login-modal .modal-content {
border: 1px solid #c3c3c3 !important;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
background: #f5f5f5;
color: #505050;
}
.login-modal .modal-header {
padding-bottom: 0;
border-color: #c3c3c3;
border: 0;
}
.login-modal .modal-header .close {
margin-top: -25px;
margin-right: -25px;
background: #f5f5f5;
opacity: 1;
color: #505050;
padding: 1px 5px;
border: 1px solid #c3c3c3;
border-radius: 100%;
}
.login-modal .modal-dialog {
max-width: 500px;
}
.login-modal .modal-body {
padding: 20px 60px;
}
.login-modal .modal-body .form-control {
background: #ffffff;
border: 1px solid #c3c3c3;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
color: #505050;
/*font-size: 16px;*/
}
.login-modal .modal-body p {
/*font-size: 16px;*/
color: #333;
text-align: center;
/*line-height: 1.5;*/
}
.login-modal .modal-body .icon {
text-align: center;
margin-bottom: 20px;
}
.login-modal .modal-body .icon i {
/*font-size: 45px;*/
color: #333;
}
/*
@media (min-width: 1450px) {
.login-modal .modal-dialog {
width: 700px;
}
}
*/
.login-modal .socials-login {
display: flex;
width: 100%;
margin: 20px 0 30px 0;
}
.login-modal .socials-login a {
color: #ffffff;
flex: 1;
padding: 5px 10px;
/*font-size: 24px;*/
text-align: center;
margin: 0 2px;
}
.login-modal .socials-login a:hover {
opacity: 0.8;
}
.login-modal .socials-login .facebook {
background-color: #3b5998;
}
.login-modal .socials-login .twitter {
background-color: #00aced;
}
.login-modal .socials-login .gplus {
background-color: #db4437;
}
.login-modal .socials-login .linkedin {
background-color: #0077b5;
}
.login-modal .socials-login .github {
background-color: #333333;
}
.login-modal .socials-login .microweber {
background-color: #0086db;
}
.login-modal .or {
/*line-height: 0.5;*/
text-align: center;
position: relative;
overflow: hidden;
}
.login-modal .or span {
display: inline-block;
position: relative;
}
.login-modal .or span:before,
.login-modal .or span:after {
content: "";
position: absolute;
height: 13px;
border-bottom: 1px solid #c3c3c3;
top: 0;
width: 600px;
}
.login-modal .or span:before {
right: 100%;
margin-right: 15px;
}
.login-modal .or span:after {
left: 100%;
margin-left: 15px;
}
.login-modal .act {
position: relative;
margin: 25px 0 20px 0;
text-align: center;
}
.login-modal a {
color: #505050;
/*font-size: 14px;*/
text-decoration: none;
}
.login-modal .act a {
/*font-size: 16px;*/
text-transform: uppercase;
color: #505050;
text-decoration: none;
/*font-weight: bold;*/
}
.login-modal .act a:hover {
opacity: 0.8;
}
.login-modal .act a span {
display: block;
}
.login-modal .act:after {
/*font-family: 'Material Icons';*/
display: block;
position: absolute;
top: -11px;
/*font-size: 30px;*/
}
.login-modal .act.create:after {
content: 'arrow_forward';
float: right;
right: 62px;
}
.login-modal .act.login:after {
content: 'arrow_back';
float: left;
left: 90px;
}
.login-modal .personal-data {
color: #bbbbbb !important;
text-align: justify !important;
}
@media screen and (max-width: 520px) {
.login-modal .act:after {
display: none;
}
}
/* Page - Portfolio Inner */
.portfolio-inner-page .container {
padding: 0 5%;
}
.relative {
position: relative;
}
.portfolio-inner-page .heading {
text-align: left;
}
.portfolio-inner-page .heading h1 {
/*font-size: 36px;*/
color: #212121;
/*font-weight: bold;*/
}
.portfolio-inner-page .description {
margin-top: 20px;
}
.portfolio-inner-page .description p {
/*line-height: 1.5;*/
/*font-size: 16px;*/
color: #212121;
text-align: justify;
margin-bottom: 10px;
}
.portfolio-inner-page .description .table {
margin: 0;
text-align: left;
}
.portfolio-inner-page .description .table tr td:first-of-type {
padding-left: 0;
}
.portfolio-inner-page .description .table td {
/*font-size: 16px;*/
color: #212121;
/*font-weight: bold;*/
}
.portfolio-inner-page .project-gallery img {
max-width: 100%;
margin-bottom: 20px;
}
.portfolio-inner-page .project-gallery a:last-child img {
margin-bottom: 0px;
}
/* Slick options */
.project-gallery .slick-arrow {
position: absolute;
top: 45%;
z-index: 4;
/*font-size: 0;*/
border: 0;
background: none;
display: none !important;
}
.portfolio-inner-page .project-gallery:hover .slick-arrow {
display: block !important;
}
.portfolio-inner-page .project-gallery .slick-arrow:before {
/*font-family: FontAwesome;*/
color: #ffffff;
display: block;
/*font-size: 20px;*/
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
}
.portfolio-inner-page .project-gallery .slick-next {
right: 5%;
}
.portfolio-inner-page .project-gallery .slick-next:before {
content: '\f054';
}
.portfolio-inner-page .project-gallery .slick-prev {
left: 5%;
}
.portfolio-inner-page .project-gallery .slick-prev:before {
content: '\f053';
}
@media screen and (max-width: 991px) {
/* .project-holder {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column-reverse;
}
.project-holder > div.col-md-6 {
width: 100%;
}*/
.portfolio-inner-page .project-holder .project-info {
margin-top: 35px;
margin-bottom: 35px;
}
.portfolio-inner-page .table-responsive {
border: 0;
}
}
/* Portfolio projects */
.portfolio-projects .project {
margin-bottom: 25px;
}
.portfolio-projects .project h3 {
color: #212121;
/*font-weight: bold;*/
/*font-size: 17px;*/
margin: 25px 0 15px 0;
text-decoration: none;
text-align: center;
}
.portfolio-projects .project a,
.portfolio-projects .project a:hover {
text-decoration: none;
}
.portfolio-projects .project .image {
position: relative;
background-origin: content-box;
background-color: #f0f0f0;
height: 260px;
width: 100%;
background-position: center center;
-webkit-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
-webkit-box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
-moz-box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
}
.portfolio-projects .project .image .hover {
width: 100%;
text-align: center;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(255, 32, 81, 0.15);
display: none;
}
.portfolio-projects .project .image:hover .hover {
display: inline-block;
}
.portfolio-projects .project .hover .btn {
padding: 10px;
text-align: center;
margin: 0 5px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
.portfolio-projects .project .hover .btn i {
margin: 0;
}
.portfolio-projects .project .hover > * {
top: 45%;
position: relative;
}
@media screen and (max-width: 991px) {
.portfolio-inner-page .heading h1 {
/*font-size: 30px;*/
}
}
@media screen and (max-width: 767px) {
.portfolio-inner-page .heading h1 {
/*font-size: 28px;*/
}
}
.feature-grid .img-holder {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
}
@media screen and (max-width: 991px) {
.feature-grid .img-holder {
position: static;
left: 0;
transform: translateX(0);
}
.project-info-content {
position: static !important;
-webkit-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
-o-transform: none !important;
transform: none !important;
}
}
.feature-grid:after {
display: block;
content: ' ';
/*font-size: 0;*/
clear: both;
}
.feature-grid {
position: relative;
}
.feature-grid .left-side {
float: left;
}
.feature-grid .right-side {
float: right;
}
.bootstrap-select.btn-group .dropdown-menu li.selected a span.text {
color: #ffffff;
/*font-weight: bold;*/
}
/* Effects */
.particles {
position: relative;
display: inline-block;
}
.particles-wrapper {
position: relative;
display: inline-block;
overflow: hidden;
}
.particles-canvas {
position: absolute;
pointer-events: none;
top: 50%;
left: 50%;
transform: translate3d(-50%, -50%, 0);
}
/*
.module-menu {
.dropdown-menu {
min-width: 200px;
border-radius: 0;
color: @textDark;
display: block;
opacity: 0;
visibility: hidden;
transition: all .3s;
transform: scaleY(0) scaleX(.2);
top: 100%;
transform-origin: left top;
box-shadow: 0 39px 97px 0 rgba(175, 175, 175, 0.25);
border: solid 1px #f4f4f4;
}
.dropdown-menu li {
position: relative;
}
}
.navigation li li .caret {
position: absolute;
top: 19px;
right: 10px;
}
.navigation li:hover > a .caret {
transform: rotate(-90deg);
}
.module-menu {
.dropdown-menu .dropdown-menu {
display: block;
opacity: 0;
visibility: hidden;
transition: all .3s;
transform: scaleY(0) scaleX(.2);
transform-origin: left top;
top: 0;
left: 100%;
}
.show > .dropdown-menu {
opacity: 1;
visibility: visible;
transform: scaleY(1) scaleX(1);
}
.dropdown-menu > li > a:focus {
background-color: transparent;
}
}*/
.slider-wrapper .swiper-slide {
border-radius: 7px;
overflow: hidden;
}
.slider-wrapper .swiper-slide > img {
width: 100%;
}
@media (min-width: 741px) {
.swiper-slide {
opacity: .2;
}
.swiper-slide-prev,
.swiper-slide-next {
opacity: 0.7;
}
}
.swiper-slide-active {
opacity: 1;
}
.material-icons,
.fa {
position: relative;
display: inline-block;
}
.info-block .particles {
vertical-align: middle;
}
/* /Mobilemenu */
/**
* Simple fade transition for Magnific Pop Up
*/
.mfp-fade.mfp-bg {
opacity: 0;
-webkit-transition: all 0.15s ease-out;
-moz-transition: all 0.15s ease-out;
transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
opacity: 0;
-webkit-transition: all 0.15s ease-out;
-moz-transition: all 0.15s ease-out;
transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
opacity: 0;
}
footer a {
transition: color .3s;
text-decoration: none;
}
ul.socials li a {
transition: all .3s;
}
/* *******************************************
************** Product Slider ************** *
******************************************* */
.product-slider-holder {
min-height: 100px;
padding: 0;
padding-bottom: 30px;
}
.product-slider-holder .slick-dotted.slick-slider {
margin-bottom: 0;
padding-bottom: 30px;
}
.product-slider-holder .flexbox-container {
align-items: center;
justify-content: center;
}
.product-slider-holder .left-side {
text-align: left;
}
.product-slider-holder .product-slider .slide {
padding: 70px 100px 30px 100px;
}
.product-slider-holder h1,
.product-slider-holder h2,
.product-slider-holder h3,
.product-slider-holder h4,
.product-slider-holder h5,
.product-slider-holder h6 {
/*font-size: 36px;*/
/*font-weight: 600;*/
margin-bottom: 50px;
color: #212121;
}
.product-slider-holder p,
.product-slider-holder span {
/*font-size: 16px;*/
/*line-height: 1.5;*/
color: #212121;
/*font-weight: 300;*/
}
.product-slider-holder p {
margin-bottom: 10px;
}
.product-slider-holder .btn {
min-width: 150px;
}
.product-slider-holder .img-holder img {
margin: 0 auto;
max-height: 400px;
max-width: 100%;
}
.product-slider .slick-arrow {
position: absolute;
z-index: 4;
/*font-size: 0;*/
border: 0;
background: none;
height: auto;
top: 50%;
transform: translateY(-50%);
}
.product-slider .slick-arrow:before {
/*font-family: 'Font Awesome\ 5 Free';*/
/*font-weight: 900;*/
color: #212121;
display: block;
/*font-size: 32px;*/
/*line-height: 1;*/
padding: 5px 20px;
}
.product-slider .slick-next {
right: 0;
width: auto;
transition: all .5s ease;
overflow: hidden;
}
.product-slider .slick-next:after {
content: '';
position: absolute;
right: 0;
top: 0;
display: block;
width: 100%;
height: 100%;
background-color: #212121;
transform: translateX(100%);
transition: all .5s ease;
z-index: -1;
}
.product-slider .slick-next:hover:after,
.product-slider .slick-next:focus:after {
right: auto;
left: 0;
transform: translateX(0%);
transition: all .5s ease;
}
.product-slider .slick-next:before {
content: '\f054';
}
.product-slider .slick-prev {
left: 0;
width: auto;
transition: all .5s ease;
overflow: hidden;
}
.product-slider .slick-prev:after {
content: '';
position: absolute;
left: 0;
top: 0;
display: block;
width: 100%;
height: 100%;
background-color: #212121;
transform: translateX(-100%);
transition: all .5s ease;
z-index: -1;
}
.product-slider .slick-prev:hover:after,
.product-slider .slick-prev:focus:after {
right: auto;
left: 0;
transform: translateX(0%);
transition: all .5s ease;
}
.product-slider .slick-prev:before {
content: '\f053';
}
.product-slider .slick-dots {
text-align: center;
margin: 20px;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.product-slider .slick-dots li {
display: -webkit-inline-box;
display: -moz-inline-box;
display: ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
/*font-size: 0px;*/
margin: 0 5px;
align-items: center;
justify-content: center;
}
.product-slider .slick-dots li button {
border: 0;
height: 15px;
width: 15px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
background: transparent;
padding: 3px;
border: 2px solid #212121;
}
.product-slider .slick-dots li button:before {
display: none;
}
.product-slider .slick-dots li.slick-active button {
background: #212121;
}
@media screen and (max-width: 1366px) {
.product-slider .slick-dots {
margin: 30px 0;
}
}
@media screen and (max-width: 1199px) {
.product-slider-holder .img-holder {
margin-bottom: 30px;
}
}
@media screen and (max-width: 991px) {
.product-slider-holder h1,
.product-slider-holder h2,
.product-slider-holder h3,
.product-slider-holder h4,
.product-slider-holder h5,
.product-slider-holder h6 {
text-align: center;
/*font-size: 30px;*/
}
.product-slider-holder p {
text-align: center;
}
.product-slider-holder .flexbox-container {
flex-direction: column-reverse;
}
.product-slider .slide .img-holder {
max-height: 500px;
}
}
@media screen and (max-width: 767px) {
.product-slider-holder h1,
.product-slider-holder h2,
.product-slider-holder h3,
.product-slider-holder h4,
.product-slider-holder h5,
.product-slider-holder h6 {
text-align: center;
/*font-size: 26px;*/
}
.product-slider-holder .product-slider .slide {
padding: 70px 10px 30px 10px;
}
.product-slider .slick-arrow {
display: none;
}
}
a.dropdown-toggle::after {
float: right;
display: block;
margin-top: 8px;
}
.js-red-text {
color: #0044de;
}
.module-categories-template-default .nav-list li {
width: 100%;
display: block;
margin-top: 25px;
}
.module-categories-template-default .nav-list li span.dot {
height: 16px;
display: inline-block;
position: relative;
margin-right: 20px;
background: #0044de;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
/*font-size: 12px;*/
/*font-weight: 400;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: normal;*/
letter-spacing: normal;
padding: 5px;
}
.module-categories-template-default .nav-list li span.dot:after {
content: '';
display: block;
width: 0;
height: 0;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
border-left: 8px solid #0044de;
position: absolute;
right: -8px;
top: 0;
}
.module-categories-template-default .nav-list li a {
display: block;
color: #f4f4f4;
/*font-size: 18px;*/
text-decoration: none;
position: relative;
}
.module-categories-template-default .nav-list li a span:not(.dot) {
position: relative;
}
.module-categories-template-default .nav-list li a span:not(.dot):after {
content: '';
display: none;
width: 100%;
position: absolute;
height: 2px;
background: #0044de;
left: 0;
bottom: -3px;
}
.module-categories-template-default .nav-list li a:hover span:not(.dot):after {
display: block;
}
.sidebar__widget {
margin-bottom: 30px;
}
.sidebar__widget h6 {
color: #212121;
text-transform: uppercase;
/*font-size: 14px;*/
/*font-weight: 700;*/
}
.sidebar__widget hr {
margin-top: 5px;
margin-bottom: 1rem;
border-top: 2px solid #dddddd;
}
.sidebar__widget .sidebar-search .mw-search-default-btn-holder {
width: 40px;
}
.sidebar__widget .sidebar-search .search-field {
background: #ebebeb;
border-radius: 20px;
overflow: hidden;
}
.sidebar__widget .sidebar-search .search-field input,
.sidebar__widget .sidebar-search .search-field button {
background: transparent;
border: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
outline: none !important;
}
.sidebar__widget .sidebar-search .search-field input {
padding: 0px 10px 2px 20px;
/*font-size: 14px;*/
/*font-weight: 600;*/
color: #212121;
}
.sidebar__widget .sidebar-search .search-field button {
padding: 0 5px;
}
.sidebar__widget .sidebar-search .search-field button:before {
display: inline-block;
content: '\f002';
/*font-family: "Font Awesome 5 Free" !important;*/
/*font-weight: 900;*/
/*font-size: 16px;*/
color: #212121;
}
.tags {
margin-bottom: 20px;
}
.tags:after {
clear: both;
display: block;
content: '';
}
.tags a {
border: 2px solid #ddd;
color: #212121;
/*font-size: 0.857rem;*/
padding: 8px 15px;
text-decoration: none;
float: left;
display: block;
margin-bottom: 10px;
margin-right: 10px;
text-transform: uppercase;
/*font-weight: 600;*/
}
.tags a:hover {
border: 2px solid #bfbfbf;
color: #212121;
}
/* Small Cart Modal */
.member-nav {
/* Start of .checkout-modal */
/* End of .checkout-modal */
/*Small Checkout*/
}
.member-nav .checkout-modal .modal-header {
padding: 0rem;
padding-bottom: 0;
}
.member-nav .checkout-modal .step-button {
text-align: center;
}
.member-nav .checkout-modal .js-red-text {
color: #dc3545;
margin-bottom: 0.5rem;
/*font-size: 0.9rem;*/
}
.member-nav .checkout-modal .js-green-text {
color: #28a745;
margin-bottom: 0.5rem;
/*font-size: 0.9rem;*/
}
.member-nav .checkout-modal .step-button.muted a {
opacity: 0.4;
}
.member-nav .checkout-modal .step-button a {
padding: 1.6rem 1rem;
}
.member-nav .checkout-modal .step-button .js-show-step i {
color: #212121;
}
.member-nav .checkout-modal .step-button .js-show-step span {
color: #212121;
/*font-size: 0.9rem;*/
}
.member-nav .checkout-modal .step-button .js-show-step.active {
background: #212121;
}
.member-nav .checkout-modal .step-button .js-show-step.active span,
.member-nav .checkout-modal .step-button .js-show-step.active i {
color: #f4f4f4;
}
.member-nav .checkout-modal .js-step-content {
display: none;
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-products-wrapper .checkout-modal-product-list-item {
padding: 0.75rem 0;
position: relative;
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-products-wrapper .checkout-modal-product-list-item:after {
height: 1px;
background-color: #ffffff;
display: block;
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: 0 auto;
width: calc(100% - 16px);
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-products-wrapper .checkout-modal-product-list-item:hover {
background: #f4f4f4;
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-product-list-item-action a {
color: #212121;
opacity: 1;
display: inline-block;
/*line-height: 1;*/
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-product-list-item-qty select {
margin-top: 2rem;
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-product-list-item-action .tooltip {
margin-top: 5px;
}
.member-nav .checkout-modal .checkout-modal-list-item-cell {
display: flex;
flex-direction: row;
align-items: center;
/*font-size: 0.9rem;*/
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-product-list-item-title,
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-product-list-item-title > * {
/* white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;*/
}
.member-nav .item-title a {
color: #212121 !important;
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-amount-holder .checkout-modal-promocode-holder,
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-amount-holder .checkout-modal-total-holder {
padding-top: 2.5rem;
align-items: flex-start;
align-content: flex-start;
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-amount-holder .checkout-modal-promocode-holder .form-control {
/*font-style: italic;*/
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-amount-holder .checkout-modal-promocode-holder p,
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-amount-holder .checkout-modal-total-holder p {
margin-bottom: 1rem;
}
.member-nav .checkout-modal .checkout-modal-total-price {
/*font-weight: bold;*/
}
.member-nav .checkout-modal .js-step-content .row .field-holder,
.member-nav .checkout-modal .js-step-content .form-row .field-holder {
margin-bottom: 1rem;
}
.member-nav .checkout-modal .js-step-content .row .field-holder .bootstrap-select,
.member-nav .checkout-modal .js-step-content .form-row .field-holder .bootstrap-select,
.member-nav .checkout-modal .js-step-content .row .field-holder .form-control,
.member-nav .checkout-modal .js-step-content .form-row .field-holder .form-control {
width: 100% !important;
}
.member-nav .checkout-modal .js-step-content .row .field-holder .form-control.input-md,
.member-nav .checkout-modal .js-step-content .form-row .field-holder .form-control.input-md {
padding-right: 2rem !important;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.member-nav .checkout-modal .checkout-modal-list-item-cell .form-control {
max-width: 90px;
}
.member-nav .checkout-modal .js-step-content .row:after,
.member-nav .checkout-modal .js-step-content .form-row:after {
display: block;
clear: both;
content: '';
}
.member-nav .checkout-modal .mw-ui-check input[type=checkbox] + span:after {
left: 0 !important;
width: 100% !important;
height: 100% !important;
top: 1px !important;
}
@media screen and (max-width: 991px) {
.member-nav .checkout-modal .modal-header {
padding: 0rem;
padding-bottom: 0;
}
.member-nav .checkout-modal .modal-body {
padding: 2.5rem 1.5rem;
padding-top: 1rem;
}
.member-nav .checkout-modal .step-button .js-show-step span {
/*font-size: .8rem;*/
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-amount-holder .checkout-modal-promocode-holder,
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-amount-holder .checkout-modal-total-holder {
padding-top: 1.5rem;
}
}
@media screen and (max-width: 767px) {
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-products-wrapper .row,
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-products-wrapper .form-row {
align-content: flex-start;
}
.member-nav .checkout-modal .checkout-modal-list-item-cell .form-control {
margin: .75rem 0;
}
.member-nav .checkout-modal .js-shopping-cart .checkout-modal-product-list-item-action {
align-items: flex-start;
padding-top: .5rem;
}
.member-nav .checkout-modal .step-button a {
padding: 1rem;
}
}
@media screen and (max-width: 575px) {
.member-nav .checkout-modal .modal-header {
padding: 0rem;
padding-bottom: 0;
}
.member-nav .checkout-modal .modal-body {
padding: 2.5rem 1rem;
padding-top: 1.5rem;
}
.member-nav .checkout-modal .step-button .js-show-step span {
/*font-size: .7rem;*/
}
}
@media screen and (max-width: 400px) {
.member-nav .checkout-modal .step-button a {
padding: 1rem .5rem;
}
.member-nav .coupon-col,
.member-nav .coupon-btn-col {
flex: 0 0 100%;
max-width: 100%;
}
.member-nav .coupon-btn-col {
margin-top: .5rem;
}
}
.member-nav .dropdown-menu.shopping-cart {
background-color: #f4f4f4;
padding: 0;
border: 1px solid #ffffff;
}
.member-nav .dropdown-menu.shopping-cart:before {
display: none;
}
.member-nav .dropdown-menu.shopping-cart .products,
.member-nav .dropdown-menu.shopping-cart .products-amount {
padding: 1.7rem;
}
.member-nav .dropdown-menu.shopping-cart .products {
padding-bottom: 0;
}
.member-nav .dropdown-menu.shopping-cart .product-item {
padding: 0.7rem 0;
/*font-size: .9rem;*/
border-bottom: 1px solid #ffffff;
}
.member-nav .dropdown-menu.shopping-cart a i {
color: #212121;
/*font-size: 1.2rem;*/
}
@media screen and (min-width: 576px) {
.member-nav .dropdown-menu.shopping-cart {
min-width: 25rem;
}
}
@media screen and (max-width: 575px) {
.member-nav .dropdown-menu.shopping-cart {
min-width: 25rem;
}
.member-nav .dropdown-menu.shopping-cart .total {
margin-bottom: 1rem;
}
}
/* Elements */
.new-world-news .post-holder {
margin: 20px auto;
padding: 10px;
}
.new-world-news .thumbnail-holder {
display: flex;
align-items: center;
margin-bottom: 15px;
position: relative;
overflow: hidden;
}
.new-world-news .thumbnail-holder .thumbnail {
width: 100%;
height: 285px;
position: relative;
background-size: cover !important;
background-position: center center !important;
transition: transform .2s;
/* Animation */
}
.new-world-news .thumbnail-holder .thumbnail img {
width: 100%;
position: relative;
max-height: 100%;
height: 285px;
}
.new-world-news .thumbnail-holder:hover .thumbnail {
transform: scale(1.1);
/* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.new-world-news small {
/*font-size: 14px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: 1.71;*/
letter-spacing: normal;
color: #979aa6;
margin: 10px 0;
display: block;
}
.new-world-news p {
/*line-height: 1.75;*/
}
.new-world-news .tags {
left: 0px;
position: absolute;
z-index: 9;
top: 20px;
}
.new-world-news .tags .badge {
height: 26px;
display: inline-block;
position: relative;
margin-right: 10px;
background: #0044de;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
/*font-size: 12px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: normal;*/
letter-spacing: normal;
padding: 5px 10px;
}
.new-world-news .tags .badge:after {
content: '';
display: block;
width: 0;
height: 0;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-left: 8px solid #0044de;
position: absolute;
right: -8px;
top: 0;
}
.new-world-news a:hover {
text-decoration: none;
}
.new-world-news a h3:hover {
color: #0044de !important;
text-decoration: underline;
}
.new-world-news .post-big .thumbnail {
padding: 40px;
min-height: 540px;
-webkit-background-size: cover;
background-size: cover;
}
@media screen and (max-width: 991px) {
.new-world-news .post-big .thumbnail {
min-height: 390px;
}
}
.new-world-news .post-big h2,
.new-world-news .post-big h3 {
margin-bottom: 10px;
color: #ffffff;
}
.new-world-news .post-big p {
color: #ffffff;
margin-bottom: 10px;
}
.new-world-news .post-big small {
color: #ffffff;
}
.new-world-news .post-big .button-5 span {
padding: 0 10px;
}
.new-world-news-1 .post-holder {
margin: 20px auto;
}
.new-world-news-1 .thumbnail {
padding-top: 56.25%;
/* 16:9 Aspect Ratio */
width: 100%;
position: relative;
background-size: cover !important;
background-position: center center !important;
-webkit-background-size: cover;
}
.new-world-news-1 small {
/*font-size: 14px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: 1.71;*/
letter-spacing: normal;
color: #979aa6;
margin: 10px 0;
display: block;
}
.new-world-news-1 p {
/*line-height: 1.75;*/
}
.new-world-news-1 .tags {
left: -10px;
position: absolute;
z-index: 9;
top: 20px;
}
.new-world-news-1 .tags .badge {
height: 26px;
display: inline-block;
position: relative;
margin-right: 10px;
background: #0044de;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
/*font-size: 12px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: normal;*/
letter-spacing: normal;
padding: 5px 10px;
}
.new-world-news-1 .tags .badge:after {
content: '';
display: block;
width: 0;
height: 0;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-left: 8px solid #0044de;
position: absolute;
right: -8px;
top: 0;
}
.new-world-news-1 a:hover {
text-decoration: none;
}
.new-world-news-1 .post-big small {
/*font-size: 16px;*/
}
.new-world-news-2 .post-holder {
margin: 20px auto;
}
.new-world-news-2 .thumbnail {
padding-top: 56.25%;
/* 16:9 Aspect Ratio */
width: 100%;
position: relative;
background-size: cover !important;
background-position: center center !important;
-webkit-background-size: cover;
}
.new-world-news-2 small {
/*font-size: 14px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: 1.71;*/
letter-spacing: normal;
color: #979aa6;
margin: 10px 0;
display: block;
}
.new-world-news-2 p {
/*line-height: 1.75;*/
}
.new-world-news-2 .tags {
left: -10px;
position: absolute;
z-index: 9;
top: 20px;
}
.new-world-news-2 .tags .badge {
height: 26px;
display: inline-block;
position: relative;
margin-right: 10px;
background: #0044de;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
/*font-size: 12px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: normal;*/
letter-spacing: normal;
padding: 5px 10px;
}
.new-world-news-2 .tags .badge:after {
content: '';
display: block;
width: 0;
height: 0;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-left: 8px solid #0044de;
position: absolute;
right: -8px;
top: 0;
}
.new-world-news-2 a:hover {
text-decoration: none;
}
.new-world-news-2 .post-big .thumbnail {
padding: 40px;
height: 390px;
-webkit-background-size: cover;
background-size: cover;
}
@media screen and (max-width: 991px) {
.new-world-news-2 .post-big .thumbnail {
min-height: 390px;
}
}
.new-world-news-2 .post-big h2,
.new-world-news-2 .post-big h3 {
margin-bottom: 10px;
color: #ffffff;
}
.new-world-news-2 .post-big p {
color: #ffffff;
margin-bottom: 10px;
}
.new-world-news-2 .post-big small {
color: #ffffff;
}
.new-world-news-2 .post-big .button-5 span {
padding: 0 10px;
}
.new-world-news-3 .post-holder {
margin: 15px auto;
}
.new-world-news-3 .thumbnail {
padding-top: 56.25%;
/* 16:9 Aspect Ratio */
width: 100%;
position: relative;
background-size: cover !important;
background-position: center center !important;
-webkit-background-size: cover;
}
.new-world-news-3 small {
/*font-size: 14px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: 1.71;*/
letter-spacing: normal;
color: #979aa6;
margin: 10px 0;
display: block;
}
.new-world-news-3 p {
/*line-height: 1.75;*/
}
.new-world-news-3 .tags {
left: -10px;
position: absolute;
z-index: 9;
top: 20px;
}
.new-world-news-3 .tags .badge {
height: 26px;
display: inline-block;
position: relative;
margin-right: 10px;
background: #0044de;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
/*font-size: 12px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: normal;*/
letter-spacing: normal;
padding: 5px 10px;
}
.new-world-news-3 .tags .badge:after {
content: '';
display: block;
width: 0;
height: 0;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-left: 8px solid #0044de;
position: absolute;
right: -8px;
top: 0;
}
.new-world-news-3 a:hover {
text-decoration: none;
}
.new-world-news-3 .post-big .thumbnail {
padding: 40px;
height: 390px;
-webkit-background-size: cover;
background-size: cover;
}
@media screen and (max-width: 991px) {
.new-world-news-3 .post-big .thumbnail {
min-height: 390px;
}
}
.new-world-news-3 .post-big.high .thumbnail {
height: 643px;
}
.new-world-news-3 .post-big h2,
.new-world-news-3 .post-big h3 {
margin-bottom: 10px;
color: #ffffff;
}
.new-world-news-3 .post-big p {
color: #ffffff;
margin-bottom: 10px;
}
.new-world-news-3 .post-big small {
color: #ffffff;
}
.new-world-news-3 .post-big .button-5 span {
padding: 0 10px;
}
.mw-instagram-feeds {
margin: 0 -5px;
}
.mw-instagram-feeds .feed-photo {
padding-left: 5px;
padding-right: 5px;
margin-bottom: 10px;
}
.mw-instagram-feeds .feed-photo:after {
content: "";
display: block;
padding-bottom: 100%;
}
.mw-instagram-feeds .feed-photo a {
display: block;
width: 100%;
height: 100%;
text-decoration: none !important;
position: relative;
}
.mw-instagram-feeds .feed-photo .background-holder {
height: 100%;
width: 100%;
background-size: cover;
position: absolute;
overflow: hidden;
}
.mw-instagram-feeds .feed-photo .info-holder {
opacity: 0;
-webkit-transition: opacity 0.3s ease-in;
-moz-transition: opacity 0.3s ease-in;
-o-transition: opacity 0.3s ease-in;
display: flex;
background: rgba(33, 33, 33, 0.8);
height: 100%;
color: #f4f4f4;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0 30px;
}
.mw-instagram-feeds .feed-photo .info-holder p {
color: #f4f4f4;
}
.mw-instagram-feeds .feed-photo .info-holder .counts {
width: 100%;
margin-top: 15px;
}
.mw-instagram-feeds .feed-photo .info-holder .counts span {
margin: 0 7px;
/*font-size: 12px;*/
}
.mw-instagram-feeds .feed-photo .info-holder .counts span i {
margin-right: 3px;
}
.mw-instagram-feeds .feed-photo .info-holder .counts span i.fa-heart {
color: red;
}
.mw-instagram-feeds .feed-photo:hover .info-holder {
opacity: 1;
}
.partners .partner {
height: 160px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.border-top-bottom {
border-top: solid 2px rgba(179, 183, 197, 0.5);
border-bottom: solid 2px rgba(179, 183, 197, 0.5);
}
.posts-tags .badge {
height: 26px;
display: inline-block;
position: relative;
margin-right: 10px;
background: #0044de;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
/*font-size: 12px;*/
/*font-weight: normal;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: normal;*/
letter-spacing: normal;
padding: 5px 10px;
margin-bottom: 10px;
}
.posts-tags .badge:after {
content: '';
display: block;
width: 0;
height: 0;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-left: 8px solid #0044de;
position: absolute;
right: -8px;
top: 0;
}
.stamped-img {
/*
width: 116px;
height: 116px;
min-width: 116px;
min-height: 116px;*/
padding-top: 102%;
width: 100%;
float: left;
margin-right: 20px;
position: relative;
}
.stamped-img img {
width: 100%;
max-width: max-content;
position: absolute;
z-index: 0;
left: 0;
top: 0;
right: 0;
border: 0;
height: 98%;
}
.stamped-img:before {
z-index: 2;
content: '';
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background: url('../img/shape.svg');
-webkit-background-size: contain;
background-size: contain;
}
.icons-with-label {
margin: 10px 0;
}
.icons-with-label span {
/*font-size: 18px;*/
/*font-weight: 600;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: 1.44;*/
letter-spacing: 0.23px;
color: #212121;
margin-right: 20px;
display: inline-block;
}
.icons-with-label span i {
/*font-size: 24px;*/
/*line-height: 18px;*/
color: #0044de;
float: left;
margin-right: 7px;
}
.prev-next-post {
padding: 30px;
background: url('../img/prev_next.jpg');
background-size: cover;
background-position: center center;
min-height: 212px;
}
.prev-next-post a {
text-decoration: none !important;
}
.prev-next-post h4,
.prev-next-post p {
color: #f4f4f4 !important;
}
.prev-next-post .link {
padding: 0 50px;
}
.prev-next-post .link a {
/*font-size: 36px;*/
/*font-weight: 900;*/
font-stretch: normal;
/*font-style: normal;*/
/*line-height: normal;*/
letter-spacing: 0.35px;
color: #f4f4f4;
text-decoration: none;
}
.prev-next-post .link a i {
color: #0044de;
/*font-size: 16px;*/
}
.prev-next-post .link.left-side {
text-align: right;
}
.prev-next-post .link.left-side i {
margin-right: 10px;
}
.prev-next-post .link.right-side {
text-align: left;
}
.prev-next-post .link.right-side i {
margin-left: 10px;
}
.prev-next-post img {
float: left;
margin-right: 20px;
width: 90px;
height: 90px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
.h3-icon i {
/*font-size: 38px;*/
float: left;
margin-top: -3px;
margin-right: 10px;
color: #0044de;
}
@media screen and (max-width: 1199px) {
.h3-icon i {
margin-top: -8px;
}
}
.h4-icon i {
/*font-size: 38px;*/
float: left;
margin-top: -3px;
margin-right: 10px;
color: #0044de;
}
@media screen and (max-width: 1199px) {
.h4-icon i {
margin-top: -8px;
}
}
.mwembed {
height: auto !important;
}
.vimeo-bg-wrapper {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
overflow: hidden;
}
.vimeo-bg-wrapper iframe {
width: 100vw;
height: 56.25vw;
/* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
min-height: 100vh;
min-width: 177.77vh;
/* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.play-btn {
width: 65px;
height: 65px;
background-color: #ffffff;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
.play-btn i {
float: none;
margin: 0 auto;
}
.blog-stamp {
z-index: 11;
position: absolute;
left: 0;
right: 0;
margin-top: -340px;
}
.blog-stamp blockquote {
/*font-size: 16px;*/
/*line-height: 1.75;*/
}
.blog-stamp blockquote:before {
/*font-size: 30px;*/
margin-bottom: 5px;
}
.blog-inner-2 .posts-tags {
margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
.blog-inner-2 .posts-tags {
text-align: center;
}
}
.blog-inner-2 .socials.labels.center {
margin-bottom: 20px;
text-align: left !important;
}
.blog-inner-2 .socials.labels.center li {
margin: 0 5px 0 0;
}
.post-image-slider .slider > div {
height: 70vh;
max-height: 500px;
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
}
.post-image-slider .bx-wrapper {
border: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.post-image-slider .bx-wrapper .bx-next {
right: -21.5px;
}
.post-image-slider .bx-wrapper .bx-prev {
left: -21.5px;
}
.post-image-slider .bx-wrapper .bx-next,
.post-image-slider .bx-wrapper .bx-prev {
width: 43px;
height: 43px;
background: #0044de;
/*font-size: 0px;*/
text-indent: 0;
padding: 14px 0px;
/*line-height: 1;*/
text-align: center;
}
.post-image-slider .bx-wrapper .bx-next:hover,
.post-image-slider .bx-wrapper .bx-prev:hover {
text-decoration: none !important;
}
.post-image-slider .bx-controls-direction a.bx-prev:before,
.post-image-slider .bx-controls-direction a.bx-next:before {
/*font-family: "Font Awesome 5 Free";*/
color: #f4f4f4;
display: block;
/*font-weight: 900;*/
/*font-size: 14px;*/
}
.post-image-slider .bx-controls-direction a.bx-prev:before {
content: "\f060";
margin-left: -3px;
}
.post-image-slider .bx-controls-direction a.bx-next:before {
content: "\f061";
margin-right: -3px;
}
.post-image-slider img {
width: 100%;
}
.post-image-slider .bx-pager-link {
width: 6px !important;
height: 6px !important;
opacity: 0.5 !important;
background-color: #f4f4f4 !important;
}
.post-image-slider .bx-pager-link.active {
opacity: 1 !important;
}
.post-image-slider .bx-pager-item {
margin: 0 3px;
}
.post-image-slider .bx-wrapper .bx-pager {
bottom: 25px;
}
.home-slider h1,
.home-slider h2,
.home-slider h3,
.home-slider h4,
.home-slider h5,
.home-slider h6,
.home-slider p {
color: #ffffff;
}
.home-slider p {
/*font-size: 24px;*/
}
.home-slider .slide .img-holder {
align-items: center;
justify-content: center;
display: flex;
background-size: cover;
background-position: center center;
min-height: 750px;
max-height: 100vh;
}
.home-slider .slide .img-holder:before {
position: absolute;
left: 0;
top: 0;
background: rgba(33, 33, 33, 0.2);
content: '';
width: 100%;
height: 100%;
z-index: 1;
}
.home-slider .slide .info-holder {
z-index: 2;
}
.home-slider .slide .img-holder.right {
align-items: center;
justify-content: flex-end;
}
.home-slider .slide .img-holder.left {
align-items: center;
justify-content: flex-start;
}
.home-slider .bx-wrapper {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
border: 0 !important;
}
.home-slider .bx-wrapper .bx-controls-direction {
margin: 0 auto;
left: 0;
right: 0;
top: 50%;
position: absolute;
}
.home-slider .bx-wrapper .bx-controls-direction a {
background: none;
/*font-size: 0;*/
text-indent: 0 !important;
text-decoration: none !important;
}
.home-slider .bx-wrapper .bx-controls-direction a:before {
/*font-family: FontAwesome;*/
color: #ffffff;
display: block;
/*font-size: 20px;*/
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
}
.home-slider .bx-wrapper .bx-controls-direction a.bx-next {
right: 0%;
}
.home-slider .bx-wrapper .bx-controls-direction a.bx-next:before {
content: '\f054';
}
.home-slider .bx-wrapper .bx-controls-direction a.bx-prev {
left: 0%;
text-align: right;
}
.home-slider .bx-wrapper .bx-controls-direction a.bx-prev:before {
content: '\f053';
}
.home-slider .bx-wrapper .bx-pager {
bottom: 30px;
}
.home-slider .bx-wrapper .bx-pager.bx-default-pager a {
border: 0 !important;
height: 14px !important;
width: 14px !important;
-webkit-border-radius: 14px !important;
-moz-border-radius: 14px !important;
border-radius: 14px !important;
background: #ffffff !important;
}
.home-slider .bx-wrapper .bx-pager.bx-default-pager a.active {
background: #0044de !important;
}
.icons-slider h1,
.icons-slider h2,
.icons-slider h3,
.icons-slider h4,
.icons-slider h5,
.icons-slider h6,
.icons-slider p {
color: #f4f4f4;
}
.icons-slider p {
/*font-size: 24px;*/
}
.icons-slider .slide .img-holder {
align-items: center;
justify-content: center;
display: flex;
background-size: cover;
background-position: center center;
height: 750px;
max-height: calc(100vh - 170px);
}
.icons-slider .slide .img-holder.right {
align-items: center;
justify-content: flex-end;
}
.icons-slider .slide .img-holder.left {
align-items: center;
justify-content: flex-start;
}
.icons-slider .bx-wrapper {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
border: 0 !important;
}
.icons-slider .bx-wrapper .bx-controls-direction a {
background: none;
/*font-size: 0;*/
text-indent: 0 !important;
text-decoration: none !important;
}
.icons-slider .bx-wrapper .bx-controls-direction a:before {
/*font-family: FontAwesome;*/
color: #f4f4f4;
display: block;
/*font-size: 30px;*/
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
}
.icons-slider .bx-wrapper .bx-controls-direction a.bx-next {
right: 5%;
}
.icons-slider .bx-wrapper .bx-controls-direction a.bx-next:before {
content: '\f054';
}
.icons-slider .bx-wrapper .bx-controls-direction a.bx-prev {
left: 5%;
}
.icons-slider .bx-wrapper .bx-controls-direction a.bx-prev:before {
content: '\f053';
}
.icons-slider .bx-wrapper .bx-pager {
bottom: 30px;
}
.icons-slider .bx-wrapper .bx-pager.bx-default-pager a {
border: 0 !important;
height: 14px !important;
width: 14px !important;
-webkit-border-radius: 14px !important;
-moz-border-radius: 14px !important;
border-radius: 14px !important;
background: #ffffff !important;
}
.icons-slider .bx-wrapper .bx-pager.bx-default-pager a.active {
background: #0044de !important;
}
.icons-pager {
margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
.icons-pager {
margin-bottom: 20px;
}
}
.icons-pager .icon-holder {
margin: 0 25px;
text-decoration: none;
display: inline-block;
/*font-size: 50px;*/
color: #212121;
background: #ececec;
width: 90px;
height: 90px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
border: 1px solid #ececec;
position: relative;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-ms-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
}
@media screen and (max-width: 767px) {
.icons-pager .icon-holder {
/*font-size: 40px;*/
margin: 0 10px;
width: 70px;
height: 70px;
}
}
.icons-pager .icon-holder div {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.icons-pager .icon-holder.active {
background: #ffffff;
border: 1px solid #bfbfbf;
}
.square {
position: relative;
width: 100%;
}
.square .content {
position: absolute;
width: 100%;
height: 100%;
display: flex;
}
.square:after {
content: "";
display: block;
padding-bottom: 100%;
}
.slick-dots {
text-align: center;
margin-top: 20px;
}
@media screen and (max-width: 1199px) {
.slick-dots {
margin-top: 30px;
}
.slick-dots .slide.slick-center {
margin-top: 0px;
}
}
.slick-dots li {
display: inline-block;
/*font-size: 0px;*/
margin: 0 5px;
}
.slick-dots li button {
border: 0;
height: 11px;
width: 11px;
-webkit-border-radius: 14px;
-moz-border-radius: 14px;
border-radius: 14px;
background: #c2c2c2;
}
.slick-dots li button:before {
display: none;
}
.slick-dots li.slick-active button {
background: #0044de;
height: 16px;
width: 16px;
}
.footer-newsletter {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
overflow: hidden;
}
.footer-newsletter input,
.footer-newsletter button {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.twitter-feed-skin-1 {
/*font-size: 18px;*/
color: #f4f4f4;
}
.twitter-feed-skin-1 a {
color: #f4f4f4;
}
.twitter-feed-skin-1 p {
/*line-height: 1.35;*/
}
.twitter-feed-skin-1 h4 {
/*font-weight: 300;*/
margin-bottom: 10px;
text-transform: uppercase;
}
.twitter-feed-skin-1 i {
/*font-size: 30px;*/
margin-bottom: 30px;
}
.breadcrumb {
background-color: transparent;
justify-content: center;
}
.breadcrumb a {
color: #0044de;
/*font-size: 16px;*/
/*font-weight: bold;*/
}
.small-cta {
background: #0044de;
text-align: center;
padding: 30px 70px;
position: relative;
display: flex;
flex-flow: column;
justify-content: center;
align-items: center;
width: fit-content;
}
.small-cta h1,
.small-cta h2,
.small-cta h3,
.small-cta h4,
.small-cta h5,
.small-cta h6,
.small-cta p,
.small-cta * {
color: #f4f4f4;
}
.small-cta .icon-holder {
position: absolute;
opacity: 0.5;
left: 25px;
}
.small-cta .icon-holder i {
/*font-size: 50px;*/
}
.product-custom-fields-holder {
position: relative;
margin: 0;
}
.product-custom-fields-holder .row,
.product-custom-fields-holder div[class*='col-'] {
position: static;
}
.product-custom-fields-holder .control-label,
.product-custom-fields-holder .form-check-label {
left: 0;
position: absolute;
margin-top: 10px;
}
.product-custom-fields-holder .custom-control {
margin-left: 0px !important;
margin-right: 20px;
display: inline-block;
}
.starrr {
margin-bottom: 30px;
}
.starrr .mw-icon-web-star {
color: #ececec;
/*font-size: 16px;*/
margin: 0 3px;
}
.starrr .mw-icon-web-star:before {
content: "\f005";
/*font-family: "Font Awesome 5 Free" !important;*/
/*font-weight: 900;*/
}
.starrr .mw-icon-web-star.active {
color: #0044de;
}
.product-info-content .availability {
display: inline-block;
}
.product-info-content .availability i {
display: inline-block;
margin-right: 5px;
}
.module-categories-template-horizontal-list-1 ul.mw-cats-menu {
text-align: left;
}
.module-categories-template-horizontal-list-1 ul.mw-cats-menu li {
display: block !important;
}
.module-categories-template-horizontal-list-1 ul.mw-cats-menu li a {
/*font-size: 16px;*/
/*font-weight: bold;*/
padding: 8px 10px;
color: #212121;
}
.module-categories-template-horizontal-list-1 ul.mw-cats-menu li a:hover {
color: #0044de;
}
.module-categories-template-horizontal-list-1 ul.mw-cats-menu li a:before {
display: inline-block;
content: '\f054';
/*font-family: "Font Awesome 5 Free" !important;*/
/*font-weight: 900;*/
margin-right: 13px;
/*font-size: 12px;*/
color: #b9b9b9;
}
.shop-tags a {
color: #212121;
/*font-size: 16px;*/
/*font-weight: 700;*/
margin: 0 5px 15px 0;
display: inline-block;
}
.shop-tags a:hover {
color: #0044de;
}
.module-categories-template-horizontal-list-1 ul.mw-cats-menu > li > ul {
display: block;
position: relative;
border: 0;
padding: 0;
background: transparent;
}
.module-categories-template-horizontal-list-1 ul.mw-cats-menu > li:hover > ul {
padding: 0;
}
.module-custom-fields textarea[name="Message"] {
min-height: 200px;
}
.faq-holder.styled .item {
width: 100%;
}
.module-multilanguage .mw-dropdown-default .mw-ui-btn {
background: #0044de;
border-color: #0044de;
}
.module-multilanguage .mw-dropdown-default .mw-ui-btn .flag-icon {
margin-right: 10px;
/*font-size: 13px;*/
}
.module-multilanguage .flag-icon {
margin-right: 10px;
}
.checkout-modal .modal-header .close {
/*font-size: 16px !important;*/
}
.modal-content .table th {
background: none;
color: black;
}
.modal-content .btn-lg {
min-width: auto;
} | 0.24608 | 0.035982 |
----------------------------------------------- */
body {
margin: 0;
padding: 0;
background: #d9dde2;
font: normal 75%/1.5em helvetica, arial, sans-serif;
}
/* {
margin:0;
padding:0;
text-decoration:none;
border:none;
color: #666;
list-style-type:none;
} */
/* anchors
----------------------------------------------- */
a {
color: #333;
text-decoration: none;
}
a:link, a:visited, a:active {
color: #333;
text-decoration: none;
}
a:hover,
a.current,ls -ltr
a.current:link,
a.current:hover {
color: #2A8CC8;
text-decoration: none;
}
/* image replacement
----------------------------------------------- */
em.ir, strong.ir {
display:block;
width:0;
height:0;
overflow:hidden;
font-size:0.5em;
}
/* blocks
----------------------------------------------- */
#top, #middle, #bottom {
display:block;
}
#page {
float:left;
width:100%;
}
#selected-task {
float:left;
width:100%;
background:#fff;
}
#bottom {
clear:both;
padding-top: 3em;
}
/* content
----------------------------------------------- */
#box-content {
padding:0 2em;
}
body.brands #content,
body.projects #content {
width:100%;
}
#box-details {
padding:0 2em;
}
/* body projects
----------------------------------------------- */
.body {
padding:2em;
margin-bottom:2em;
}
/* columns
----------------------------------------------- */
.content-1col,
.content-2col,
.content-3col,
.content-3col-wide {
margin-top:2em;
margin-bottom:2em;
}
.content-2col .colA {
float:left;
width: 70%;
}
.content-2col .colB {
float:left;
width: 30%;
}
.content-3col .colA {
float:left;
width: 33%;
}
.content-3col .colB {
float:left;
width: 31%;
margin-left:2%;
}
.content-3col .colC {
float:left;
width: 31%;
margin-left:2%;
}
.content-3col-wide .colA {
float:left;
width: 33%;
}
.content-3col-wide .colB {
float:left;
width: 31%;
margin-left:2%;
}
.content-3col-wide .colC {
float:left;
width: 31%;
margin-left:2%;
}
/* Reports
----------------------------------------------- */
.content-3col-split {
margin-bottom:2em;
}
.content-3col-split .colA {
float:left;
width:220px;
}
.content-3col-split .colB {
float:left;
width:340px;
margin-left:20px;
}
.content-3col-split .colC {
float:none;
margin-left:600px;
}
/* Overview
----------------------------------------------- */
.content-2col-overview {
margin-top:2em;
margin-bottom:2em;
}
.content-2col-overview .colA {
float:left;
width:504px;
}
.content-2col-overview .colB {
float:none;
margin-left:528px;
}
.content-3col-overview {
margin-top:2em;
margin-bottom:2em;
}
.content-3col-overview .colA {
float:left;
width:240px;
}
.content-3col-overview .colB {
float:left;
width:240px;
margin-left:24px;
}
.content-3col-overview .colC {
float:none;
margin-left:528px;
}
/* breadcrumbs
----------------------------------------------- */
.breadcrumbs {
float:left;
width:100%;
color:#999;
}
.breadcrumbs p {
width:auto;
padding:.5em 25px;
font-weight:normal;
color:#bbb;
}
.breadcrumbs p a {
color:#999;
font-weight:normal;
}
.breadcrumbs p a:hover {
color:#000;
}
.breadcrumbs p.login-info {
float:right;
}
/* submenu
----------------------------------------------- */
.submenu {
display:block;
clear:both;
background:#91949C url("../../images/r1/submenu_bg.gif") center bottom repeat-x;
}
.submenu ul {
padding:0;
border:0;
height:2.5em;
padding-top:12px;
padding-left:12px;
}
.submenu li {
display:inline;
height:2.5em;
border:0;
padding:0;
}
.submenu li a {
float:left;
display: block;
margin: 0;
margin-right:.2em;
line-height: 2.5em;
padding: 0 1em;
color:#000;
background: #d8dce1 url("../../images/r1/submenu_off_bg.gif") center bottom repeat-x;
border: 0;
}
.submenu li a:hover {
color:#2A8CC8;
background: #f5f9ff url("../../images/r1/submenu_hover_bg.gif") center bottom repeat-x;
}
.submenu li a:active {
color:#2A8CC8;
background:#fff url("../../images/r1/submenu_active_bg.gif") center bottom repeat-x;
}
.submenu li.current a,
.submenu li.current a:hover {
color:#2A8CC8;
background:#fff;
}
/* headings
----------------------------------------------- */
h2 {
margin-top:0;
margin-bottom:1.3em;
font-size:1.6em;
font-weight:normal;
line-height:1em;
color:#000;
}
/* columns
----------------------------------------------- */
.columns {
display:block;
clear:both;
}
.column-header h4 {
font-size:1em;
color:#666;
background:#fff url("../../images/r1/submenu_active_bg.gif") center bottom repeat-x;
border:1px solid #c1c6c9;
padding:.2em .5em;
}
/* content
-----------------------------------------------
#content p {
margin-bottom:1em;
}
#content del {
text-decoration:line-through;
}
#content h2 {
margin-top:0;
margin-bottom:1.3em;
font-size:1.6em;
font-weight:normal;
line-height:1em;
color:#000;
}
#content h2 a {
font-weight:normal;
color:#000;
}
#content h2 a:hover {
color:#2A8CC8;
}
#content h3,
#content-secondary h3,
#content h4 {
font-size:1.2em;
font-weight: normal;
}
#content h3,
#content-secondary h3 {
margin: 2em 0 1.5em 0;
padding:3px 0;
border-top:1px solid #000;
border-bottom:1px solid #ccc;
}
#content h4,
#content h4 span {color:#2A8CC8;}
#content h4,
#content h5,
#content h6 {
margin-bottom: .8em;
}
#content h5 {
font-size:1em;
color:#000;
}
----------------------------------------------- */
/* content forms
-----------------------------------------------
#content form {
background:#eee;
margin: 12px 0;
border-top:1px solid #ccc;
border-left:1px solid #ccc;
}
#content form input {
margin-right:6px;
}
#content form input#s {
width:170px;
margin-bottom:6px;
}
#content form input,
#content form select {
margin:0;
width:auto;
}
#content form input,
#content form select {
margin:0;
width:auto;
}
#box-content .content-2col form.filter {
margin-top:.3em;
}
#content form input[type="button"] {
margin-left:.5em;
border:1px solid #999;
padding:.0 .2em;
}
#content form input[type="button"]:hover {
border:1px solid #000;
background:#333;
color:#fff;
}
----------------------------------------------- */
#content form.filter {
float:right;
padding:0;
margin:0;
background:transparent;
border:0;
margin-left:1em;
}
#content form.filter select {
width:auto;
}
/* content entries
-----------------------------------------------
#content #entries form {
margin:15px 0 15px 0;
border:0;
border-top:1px solid #ccc;
border-bottom:1px solid #ccc;
}
#content #entries form li {
list-style-type:none;
margin-left:0;
}
#content #entries form label {
display:block;
font-size:.8em;
font-weight: normal;
letter-spacing:.2em;
text-transform: uppercase;
margin:5px 0;
}
#content #entries form input.text {
width:250px;
}
#content #entries form textarea {
width:400px;
}
#content #entries h3 {
margin-left:0;
padding-left:0;
}
#content h3 a.view {
letter-spacing:0;
text-transform: none;
}
----------------------------------------------- */
/* new entry form
-----------------------------------------------
#content #entries form.new-entry {
padding:2em;
border:1px solid #ccc;
}
#content #entries form.new-entry label {
display:block;
color:#333;
font-size:1em;
font-weight: normal;
letter-spacing:0;
text-transform:none;
margin-bottom:1em;
}
#content #entries form.new-entry select {
width:100%;
}
#content #entries form.new-entry input.text {
width:100%;
}
#content #entries form.new-entry label.checkbox {
float:right;
margin-top:0;
margin-bottom:0;
}
#content #entries form.new-entry textarea {
width:100%;
}
#content #entries form.new-entry small {
font-size:1em;
}
#content #entries .form .entry-body {
border-bottom:0;
}
----------------------------------------------- */
/* entries
-----------------------------------------------
#entries {
margin-right:15px;
}
#entries p {
margin-bottom:1em;
}
#entries ol,
#entries ul {
margin-left:1em;
margin-bottom:1em;
}
#entries ol li,
#entries ul li {
margin-left:1em;
list-style-type:square;
margin-bottom:.5em;
}
#entries ol li {
list-style-type:decimal-leading-zero;
}
#entries pre {
padding:15px;
margin-bottom:15px;
background:#eee;
overflow:auto;
}
#entries blockquote {
padding-left:15px;
border-left:1px dotted #999;
}
----------------------------------------------- */
/* entry
-----------------------------------------------
#content .entry {
clear:both;
border-top:1px solid #000;
margin:0 0 2em 0;
}
#content .entry .entry-data {
float:left;
width:216px;
padding-top:1.5em;
border-top:4px solid #000;
}
#content .entry .entry-body {
padding-top:1em;
margin-left:216px;
border-bottom:1px solid #ccc;
}
#content.content-2col .entry .entry-data {
float:left;
width:25%;
padding-top:1em;
border-top:4px solid #000;
}
#content.content-2col .entry .entry-body {
padding-top:.5em;
margin-left:25%;
border-bottom:1px solid #ccc;
}
#section-about #content .entry .entry-body,
#section-contact #content .entry .entry-body {
border-bottom:0;
}
#content .entry .entry-body a span {
color: #333;
text-decoration: none;
}
#content .entry .entry-body a:hover span {
color: #2A8CC8;
text-decoration: none;
}
#content .entry .entry-info {
margin:0;
padding:.5em 0 .7em 0;
border-top:1px solid #ccc;
font-size:1em;
}
#content .entry .entry-info span {
float:left;
width:162px;
font-weight:bold;
}
#content.content-2col .entry .entry-info span {
float:left;
width:108px;
font-weight:bold;
}
#content .entry .entry-cont {
float:right;
}
#content .entry blockquote {
margin-left:2em;
margin-bottom:2em;
}
#content .entry ul {
padding-left:2em;
margin-bottom:2em;
}
#section-contact #content .entry ul {
padding-left:0;
}
#content .entry ul li {
list-style-type:square;
}
#content .entry pre {
padding:15px;
margin-bottom:15px;
border:1px solid #ccc;
background:#eee;
overflow:auto;
}
----------------------------------------------- */
/* entry images
----------------------------------------------- */
#image-block {
margin: 20px;
margin-left: 2em;
padding: 0;
}
#image-block img {
float: none;
display: inline;
border: 1px solid #ccc;
margin: 7px 3px 2px 0;
padding:3px;
}
img.entry-image {
padding:9px;
border: 1px solid #ccc;
margin-bottom:12px;
}
img.left {
float:left;
margin-right:12px;
}
img.right {
float:right;
margin-left:12px;
}
/* entry 1 column
----------------------------------------------- */
.content-1col .entry .entry-body {
margin-left:216px;
}
.content-1col .entry .entry-data {
width:216px;
}
.content-1col .entry .entry-data {
float:left;
width:215px;
padding-top:.9em;
border-top:4px solid #000;
}
/* content-secondary
----------------------------------------------- */
#content-secondary {
margin-top:12px;
margin-left:108px;
padding-top:18px;
border-top:5px solid #000;
}
#content-secondary h2 {
padding-bottom:12px;
font-weight:normal;
}
#content-secondary a {
font-weight:bold;
}
/* lists
----------------------------------------------- */
.lists {
font-size:1em;
line-height:1.4em;
}
.colA .lists {
}
.colC .lists {
}
.content-2col .colB .lists {
padding-top:0;
}
.lists h3 {
margin: 0 0 1em 0;
padding:.4em 0;
color:#2A8CC8;
}
/*
.lists ul.posts li a {
list-style-image:url("../../images/r1/a_post.gif");
}
.lists ul.categories li {
list-style-image:url("../../images/r1/a_category.gif");
}
.lists ul.client-list li {
list-style-image:url("../../images/r1/a_client.gif");
}
.lists ul.project-list li {
list-style-image:url("../../images/r1/a_project.gif");
}
.lists ul.entries-list li {
list-style-image:url("../../images/r1/a_post.gif");
}
.lists ul.links li {
list-style-image:url("../../images/r1/a_link_arrow.gif");
}
.lists ul.file-download-list li {
list-style-image:url("../../images/r1/a_download.gif");
}
.lists ul.feeds li {
list-style-image:url("../../images/r1/a_feed.gif");
}
.lists ul.categories li.subcategory {
list-style-image:none;
padding-left:15px;
background:url("../../images/r1/a_subcategory.gif") left 3px no-repeat;
}
*/
.lists ul {
font-size:1em;
}
.lists ul li {
margin:0;
padding:0;
border-bottom:1px solid #eee;
list-style-type:none;
}
.lists li a {
display:block;
padding-left:24px;
}
.lists li a:hover {
color:#2A8CC8;
}
.lists li a:active {
color:#fff;
background:#1A77BD;
}
.lists li.date-small {font-size:.8em; margin:0;}
#content .lists ul li a span {
font-weight:normal;
}
/* box-header
----------------------------------------------- */
.box-header {
float:left;
width:100%;
border-top:1px solid #c1c6c9;
padding-bottom:3px;
}
.box-header h2 {
float:left;
border:none;
margin:0;
padding:.6em 0 0 0;
font-size:1.3em;
}
.box-header h3 {
float:left;
border:none;
margin:0;
padding:.6em 0 .5em 0;
font-size:1.2em;
}
.box-header h3 a {
color:#1A77BD;
font-weight:normal;
}
.box-header h3 a:hover {
color:#000;
}
.box-header ul {
float:right;
margin:0;
padding:0;
}
.box-header li,
.lists .box-header li {
float:left;
border:none;
margin:0;
padding:0;
list-style-type:none;
}
.lists .box-header li a:active {
color:#000;
background-color:transparent;
background-position:3px -192px;
}
.box-header li a {
font-weight:normal;
color:#91949c;
background-color:transparent;
display:block;
line-height:24px;
height:24px;
padding:2px 9px 3px 30px;
border-left:1px solid #c1c6c9;
border-top:3px solid #fff;
}
.box-header li.add a {background:url("../../images/r1/icon_add.gif") 3px 0 no-repeat;}
.box-header li.list a {background:url("../../images/r1/icon_next.gif") 3px 0 no-repeat;}
.box-header li.lists-view a.collapse {background:url("../../images/r1/icon_collapse.gif") 3px 0 no-repeat;}
.box-header li.lists-view a.expand {background:url("../../images/r1/icon_expand.gif") 3px 0 no-repeat;}
.box-header li.delete a {background:url("../../images/r1/icon_delete.gif") 3px 0 no-repeat;}
.box-header li.edit a {background:url("../../images/r1/icon_edit.gif") 3px 0 no-repeat;}
.box-header li.done a {background:url("../../images/r1/icon_done.gif") 3px 0 no-repeat;}
.box-header li.view a {background:url("../../images/r1/icon_view.gif") 3px 0 no-repeat;}
.box-header li.previous a {background:url("../../images/r1/icon_previous.gif") 3px 0 no-repeat;}
.box-header li.next a {background:url("../../images/r1/icon_next.gif") 3px 0 no-repeat;}
.box-header li.first a {background:url("../../images/r1/icon_rew.gif") 3px 0 no-repeat;}
.box-header li.last a {background:url("../../images/r1/icon_ff.gif") 3px 0 no-repeat;}
.box-header li.today a {background:url("../../images/r1/icon_today.gif") 3px 0 no-repeat;}
.box-header li a:hover {color:#494e55; background-position:3px -96px;}
.box-header li a:active,
.box-header li a.collapse:active,
.box-header li a.expand:active {
color:#000;
background-position:3px -192px;
border-top:3px solid #c1c6c9;
}
.box-header li a.current {
color:#000;
background-position:3px -192px;
border-top:3px solid #1a77bd;
}
.list-box {
clear:both;
height:432px;
width:238px;
border:1px solid #c1c6c9;
overflow:auto;
}
.list-box-fluid {
float:left;
height:432px;
border:1px solid #c1c6c9;
width:100%;
overflow:auto;
}
.projects-box .list-box,
.tickets-box .list-box {
height:185px;
}
.content-3col-overview .tickets-box {
margin-top:24px;
}
.collapsed .list-box {
height:66px;
}
.collapsed .list-box-fluid {
height:68px;
}
.collapsed .list-box-fluid .tasks-list {
height:66px;
}
/* table
----------------------------------------------- */
table {
width:100%;
float:left;
}
table.timesheet {
float:left;
}
tr {
padding: .3em 0;
text-align: left;
}
th {
padding: .3em 6px .2em 6px;
text-align: left;
font-size:1em;
font-weight: normal;
border-bottom: 1px solid #eee;
}
th a.current {
color:#2A8CC8;
}
thead th {
border-bottom:1px solid #c1c6c9;
background:#fff url("../../images/r1/submenu_active_bg.gif") center bottom repeat-x;
}
thead th a {
font-weight:bold;
}
tbody tr:hover {
background:#eee;
}
tbody tr.inactive{
background:#fee;
}
.list tbody tr.selected,
.list tbody tr:active {
color:#fff;
background:#1A77BD;
}
.list tbody tr.selected a,
.list tbody tr:active a {
color:#fff;
}
tbody td {
padding: 3px 0 2px 6px;
border-bottom: 1px solid #eee;
}
tbody td a {
padding: 3px 0 2px 6px;
display:block;
}
tbody th.link,
tbody td.link {
padding:0;
}
tbody th.link {
padding-left:6px;
}
tfoot td {
padding: 3px 0 2px 6px;
font-size:1em;
}
tfoot td a {
font-weight:bold;
}
tfoot tr.totals td {
font-size:1em;
font-weight:bold;
border-top: 2px solid #999;
border-bottom: 1px solid #c1c6c9;
letter-spacing:0;
text-transform:none;
padding: 3px 0 2px 6px;
}
td a {
font-weight:normal;
}
/* About page
----------------------------------------------- */
#section-about .entry ul li,
#section-contact .entry ul li {
margin-left:2em;
margin-right:48px;
list-style-type:square;
margin-bottom:1em;
font-size:.8em;
line-height:1.5em;
}
#section-about form,
#section-contact form {
background-color: #eee;
width: 500px;
font-size: 90%;
padding: 12px 12px 36px 12px;
}
form label small {
display: block;
color: #888;
font-size: 80%;
text-transform: none;
text-align: right;
margin-left: 40%;
margin-top: -1.55em;
}
form label small a:hover {
color: #666;
border-color: #888;
}
form textarea {
height: 200px;
}
form input#submit {
float: right;
display: block;
width: 120px;
}
form p.success {
color: #6cc33c;
background: #e2e4db url("../../images/r1/icon-tick.gif") left center no-repeat;
font-size: 99%;
margin: 0 0 9px;
padding-left: 24px;
}
form p.error {
color: #ff4242;
background: #e2e4db url("../../images/r1/icon-cross.gif") left center no-repeat;
font-size: 99%;
margin: 0 0 9px;
padding-left: 24px;
}
/* About page: Tumble Log
----------------------------------------------- */
dl.listing {
border-top: 1px solid #ccc;
padding-top: 10px;
margin-bottom: 20px;
font-size: .9em;
}
dl.listing dt {
float: left;
}
dl.listing dd {
background: url("../../images/r1/arrowred.gif") left 0.5em no-repeat;
padding-left: 15px;
margin: 0 0 10px 110px;
}
/* Archive page
----------------------------------------------- */
#archive a small {
color: #aaa;
font-style: italic;
font-size: 85%;
}
#archive a {
display: block;
padding: 0 10px;
}
#archive a:hover {
color: #fff;
background-color: #ccc;
}
#archive a.active {
color: #fff;
background-color: #ccc;
}
#archive ul li {
margin: 0 0 5px;
}
ul#year {
float: left;
list-style: none;
margin: 0;
}
ul#month {
float: left;
list-style: none;
}
ul#past-entries {
list-style: none;
border-left: 1px dotted #333;
padding-left: 20px;
margin-left: 216px;
}
/* Pagination
----------------------------------------------- */
.pagination {
float:right;
}
.pagination a {
float:left;
text-align:center;
border:1px solid #ddd;
width:2em;
padding:.2em 0;
margin-right:2px;
}
.pagination a.first,
.pagination a.previous,
.pagination a.next,
.pagination a.last {
width:auto;
padding:.2em .5em;
}
.pagination a.na,
.pagination a.na:hover {
color:#ddd;
border:1px solid #eee;
}
.pagination a.current {
color:#fff;
background:#000;
border:1px solid #000;
}
.pagination a:hover {
border:1px solid #000;
}
/* Projects
----------------------------------------------- */
body.projects #content .body {
border-right:0;
padding-top:0;
}
/* Time Entries
----------------------------------------------- */
.time-entries {
padding-top:10px;
margin-left:25%;
}
#content .time-entries h2 {
margin:1em 0 .5em 0;
}
#content .time-entries h3 {
margin-bottom:.5em;
color:#2A8CC8;
border-top:2px solid #000;
}
.time-entries tr {
padding: .5em 0;
text-align: left;
}
.time-entries th {
padding: .5em .5em .5em 0;
border-bottom: 1px solid #ccc;
text-align: left;
font-size:1em;
font-weight: bold;
}
.time-entries tr.project-item:hover {
background:transparent;
}
.time-entries tr.project-item th {
font-size:1.2em;
color:#000;
}
.time-entries tbody td {
padding: .5em .5em .5em 0;
border-bottom: 1px solid #ccc;
}
.time-entries tbody td a {
padding: .5em .5em .5em 0;
display:block;
}
.time-entries tbody td.link {
padding:0;
}
.time-entries tfoot td {
padding: .5em .5em .5em 0;
font-size:1em;
}
#content .time-entries tfoot tr.totals td {
padding: .5em .5em .5em 0;
}
.time-entries tr.subtotals:hover {
background:transparent;
}
.time-entries tr.subtotals td {
font-weight:bold;
}
/* Timesheet Report
----------------------------------------------- */
#content .timesheet-entries tr.client-name:hover,
#content .timesheet-entries tr.project-title:hover {
background:transparent;
}
.timesheet-entries tr.client-name th {
font-size:1.5em;
color:#000;
padding-top:1em;
padding-left:0;
border-bottom:0;
}
.timesheet-entries tr.project-title th {
font-size:1.2em;
color:#000;
padding-top:1em;
padding-left:0;
}
.timesheet-entries tr.subtotals:hover {
background:transparent;
}
.timesheet-entries tr.subtotals td {
font-weight:bold;
border-top:2px solid #ccc;
}
/* Small Calendar
----------------------------------------------- */
.calendar .box-header {
border-top:0;
padding-top:3px;
padding-bottom:0;
}
.calendar .box-header h3 {
float:left;
border:none;
margin:0;
padding:.3em 0 0 0;
color:#2A8CC8;
font-weight:normal;
font-size:1.3em;
}
.calendar .box-header li a {
padding:0;
border:0;
}
.calendar-small table {
width:240px;
margin-top:8px;
}
.calendar-small table td {
width:33px;
padding:0;
border:1px solid #ccc;
background:#fff;
height:auto;
}
.calendar-small table td.prev-mo,
.calendar-small table td.next-mo,
.calendar-small table tr:hover td.prev-mo,
.calendar-small table tr:hover td.next-mo {
background:#eee;
}
.calendar-small table td a {
padding:6px 0;
text-align:center;
border:none;
}
.calendar-small table td.selected a,
.calendar-small table td a:active {
color:#fff;
background:#1A77BD;
}
.calendar-small table th {
padding:1px 0 0 0;
border-top:1px solid #ccc;
}
.calendar-small .buttons {
float:right;
}
.calendar-small .buttons li {
float:left;
text-indent:-9999em;
}
.calendar-small .buttons li a {
display:block;
width:24px;
height:24px;
}
.calendar-small .box-header li.previous a {background:url("../../images/r1/icon_previous.gif") 0 0 no-repeat;}
.calendar-small .box-header li.next a {background:url("../../images/r1/icon_next.gif") 0 0 no-repeat;}
.calendar-small .box-header li.previous a:hover {background:url("../../images/r1/icon_previous.gif") 0 -96px no-repeat;}
.calendar-small .box-header li.next a:hover {background:url("../../images/r1/icon_next.gif") 0 -96px no-repeat;}
.calendar-small .box-header li.previous a:active {background:url("../../images/r1/icon_previous.gif") 0 -192px no-repeat;}
.calendar-small .box-header li.next a:active {background:url("../../images/r1/icon_next.gif") 0 -192px no-repeat;}
/* Project & Task Details
----------------------------------------------- */
.pane thead th {
font-weight:normal;
}
.pane th {
vertical-align:top;
font-weight:bold;
white-space:nowrap;
}
.pane td h5 {
font-weight:bold;
margin-bottom:.5em;
}
.pane td p {
margin-bottom:1em;
}
.pane td ul {
margin-left:2em;
margin-bottom:1em;
}
.pane td ul li {
list-style-type:disc;
border:none;
margin-bottom:.3em;
}
.details th {
vertical-align:top;
width:12em;
font-weight:bold;
padding-left:2em;
}
.pane td,
.details td {
padding-right:1em;
}
.item-client th {
background:url("../../images/r1/item_client.gif") 4px 3px no-repeat;
}
.item-project th {
background:url("../../images/r1/item_project.gif") 4px 3px no-repeat;
}
.item-milestone th {
background:url("../../images/r1/item_milestone.gif") 4px 3px no-repeat;
}
.item-ticket th {
background:url("../../images/r1/item_ticket.gif") 4px 3px no-repeat;
}
.item-task th {
background:url("../../images/r1/item_task.gif") 4px 3px no-repeat;
}
/* Table List Icons
----------------------------------------------- */
table.sites-list tbody tr th,
tr.site th {background:url("../../images/r1/a_link_arrow.gif") 6px 4px no-repeat; padding-left:24px;font-weight:bold}
table.clients-list tbody tr th,
tr.client th {background:url("../../images/r1/btn_client.gif") 4px 3px no-repeat; padding-left:24px; font-weight:bold}
table.clients-list tbody tr:hover th,
tr.client:hover th {background-position:4px -93px}
table.clients-list tbody tr:active th,
tr.client:active th {background-position:4px -190px}
table.clients-list tbody tr:active,
tr.client:active {background-color:#1A77BD}
table.clients-list tbody tr:active th,
table.clients-list tbody tr:active th a,
table.clients-list tbody tr:active td,
table.clients-list tbody tr:active td a,
tr.client:active th,
tr.client:active th a,
tr.client:active td,
tr.client:active td a {color:#fff;}
table.clients-list tbody th a span.task,
tr.client th a span.task {font-weight:bold}
table.projects-list tbody tr th,
tr.project th {background:url("../../images/r1/btn_project.gif") 4px 3px no-repeat; padding-left:24px; font-weight:bold}
table.projects-list tbody tr:hover th,
tr.project:hover th {background-position:4px -93px}
table.projects-list tbody tr:active th,
tr.project:active th {background-position:4px -190px}
table.projects-list tbody tr:active,
tr.project:active {background-color:#1A77BD}
table.projects-list tbody tr:active th,
table.projects-list tbody tr:active th a,
table.projects-list tbody tr:active td,
table.projects-list tbody tr:active td a,
tr.project:active th,
tr.project:active th a,
tr.project:active td,
tr.project:active td a {color:#fff;}
table.projects-list tbody tr th a span.task,
tr.project th a span.task {font-weight:bold}
tr.milestone th {background:url("../../images/r1/btn_milestone.gif") 4px 3px no-repeat; padding-left:24px; font-weight:bold}
tr.milestone:hover th {background-position:4px -93px}
tr.milestone:active th {background-position:4px -190px}
tr.milestone:active {background-color:#1A77BD}
tr.milestone:active th,
tr.milestone:active th a,
tr.milestone:active td,
tr.milestone:active td a {color:#fff;}
tr.milestone th a span.task {font-weight:bold}
table.tickets-list tbody tr th,
tr.ticket th {background:url("../../images/r1/btn_ticket.gif") 4px 3px no-repeat; padding-left:24px; font-weight:bold}
table.tickets-list tbody tr:hover th,
tr.ticket:hover th {background-position:4px -93px}
table.tickets-list tbody tr:active th,
tr.ticket:active th {background-position:4px -190px}
table.tickets-list tbody tr:active,
tr.ticket:active {background-color:#1A77BD}
table.tickets-list tbody tr:active th,
table.tickets-list tbody tr:active th a,
table.tickets-list tbody tr:active td,
table.tickets-list tbody tr:active td a,
tr.ticket:active th,
tr.ticket:active th a,
tr.ticket:active td,
tr.ticket:active td a {color:#fff;}
table.tickets-list tbody tr th a span.task,
tr.ticket th a span.task {font-weight:bold}
table.tasks-list tbody tr th,
tr.task th {background:url("../../images/r1/btn_task.gif") 22px 3px no-repeat; padding-left:42px}
table.tasks-list tbody tr:hover th,
tr.task:hover th {background-position:22px -93px}
table.tasks-list tbody tr:active th,
tr.task:active th {background-position:22px -190px}
table.tasks-list tbody tr:active,
tr.task:active {background-color:#1A77BD}
table.tasks-list tbody tr:active th,
table.tasks-list tbody tr:active th a,
table.tasks-list tbody tr:active td,
table.tasks-list tbody tr:active td a,
tr.task:active th,
tr.task:active th a,
tr.task:active td,
tr.task:active td a {color:#fff;}
tr.entry th.date,
tr.entry td.date,
tr.subtotal th {padding-left:42px}
tr.total th {padding-left:42px; text-transform:uppercase}
tr.total td,
tr.subtotal td {font-weight:bold}
#milestones-tasks-pane tr.task th,
#project-tasks-pane tr.task th {font-weight:normal}
/* currently selected table rows
----------------------------------------------- */
tr.current,
tr.current:hover {
background:#1A77BD;
}
tr.current td {
color:#fff;
}
tr.current th,
tr.current:hover th {
color:#fff;
background-position:22px -190px;
}
tr.milestone.current th,
tr.milestone.current:hover th {
color:#fff;
background-position:4px -190px;
}
tr.milestone.current th a,
tr.milestone.current:hover th a {
color:#fff;
}
/* Subsection Header
----------------------------------------------- */
.subsection-header {
float:left;
width:100%;
padding:1em 0;
}
.subsection-header h3 {
display:inline;
font-weight:normal;
padding-right:1em;
color:#2A8CC8;
}
.subsection-header h3 a {
color:#2A8CC8;
}
.subsection-header h3 a:hover {
color:#000;
}
.subsection-header p {
display:inline;
}
.subsection-header p a {
font-weight:bold;
}
/* Time Entry Form
----------------------------------------------- */
form.time-entry {
display:block;
clear:both;
border-top:1px solid #C1C6C9;
}
form.time-entry .colB,
form.time-entry .colC {
padding-top:2px;
}
form label {
display:block;
padding-top:14px;
}
form select {
width:100%;
}
form input.text {
width:100%;
}
form label.start-time,
form label.stop-time {
width:108px;
float:left;
}
form label.start-time {
margin-right:24px;
}
form textarea {
width:100%;
}
form input.start-button {
float:left;
margin-top:18px;
width:42px;
height:42px;
background: url("../../images/r1/icon_start.gif") left top no-repeat;
text-indent:-9999em;
border:none;
}
form input.start-button:hover {
background-position: 0 -42px;
}
form input.start-button:active {
background-position: 0 -84px;
}
form input.start-button-on {
float:left;
margin-top:18px;
width:42px;
height:42px;
background: url("../../images/r1/icon_start.gif") left top no-repeat;
background-position: 0 -42px;
text-indent:-9999em;
border:none;
}
form label.hours {
float:right;
width:108px;
}
form.time-entry textarea {
height:126px;
}
/* Timesheet Entry
----------------------------------------------- */
.timesheet table,
.timesheet-entry table {
border-left:1px solid #C1C6C9;
border-right:1px solid #C1C6C9;
}
.timesheet-entry th {
vertical-align:top;
width:9em;
font-weight:bold;
padding-left:.5em;
}
.timesheet-entry thead th {
font-weight:normal;
font-size:1.4em;
color:#333;
padding:1em;
}
.timesheet-entry td {
padding-right:1em;
}
.timesheet thead th {
font-weight:bold;
}
.timesheet tfoot td {
border-bottom:1px solid #C1C6C9;
font-weight:bold;
}
.timesheet tr:active td,
.timesheet tr.selected td {
color:#fff;
background:#1A77BD;
}
/* Clients
----------------------------------------------- */
.overview {
float:left;
width:100%;
height:432px;
overflow:auto;
}
/* Projects
----------------------------------------------- */
.content-2col-sidebar {
margin-top:2em;
margin-bottom:2em;
}
.content-2col-sidebar .colA {
float:right;
width:240px;
}
.content-2col-sidebar .colB {
margin-right:264px;
}
.content-2col-sidebar .column-header {
float:left;
width:100%;
}
/* Panels
----------------------------------------------- */
#tasks-pane {
height:360px;
overflow:auto;
overflow-x:hidden;
}
#tickets-pane {
height:240px;
overflow:auto;
overflow-x:hidden;
}
.panel {
float:left;
width:100%;
margin-bottom:1em;
border:1px solid #c1c6c9;
}
.content-2col-sidebar .colA .panel {
width:238px;
}
#clients-list-panel .pane,
#projects-list-panel .pane,
#tickets-list-panel .pane {
width:238px;
height:185px;
overflow:auto;
}
.panel h4 {
font-size:1em;
color:#666;
background:#fff url("../../images/r1/submenu_active_bg.gif") center bottom repeat-x;
border-bottom:1px solid #c1c6c9;
padding:.2em .5em;
}
.panel h4.toggle {
padding:0;
}
.panel h4.toggle a {
display:block;
padding:.2em .5em;
background: url("../../images/r1/icon_toggle_open.gif") right top no-repeat;
}
.panel h4.toggle a:hover {
background: url("../../images/r1/icon_toggle_closed.gif") right top no-repeat;
}
.panel ul {
margin-bottom:0;
}
.panel table {
border:none;
}
/* Contact Details Panes
----------------------------------------------- */
.contact-details h5 {
padding:8px;
}
.contact-details p {
padding:3px 8px 2px;
border-top:1px solid #eee;
}
.contact-details p span.label {
text-transform:lowercase;
font-weight:bold;
float:left;
width:66px;
}
.contact-details p .address {
float:left;
width:150px;
}
.contact {
float:left;
width:222px;
background:#eee;
padding:8px;
border-top:1px solid #ccc;
}
.full-contact-info {
background:transparent;
border-top:none;
}
.contact a.photo {
float:left;
width:66px;
}
.contact a.photo img {
float:left;
padding:3px;
border:1px solid #ccc;
}
.contact .contact-info {
float:left;
width:150px;
}
.contact .contact-info p {
line-height:1.2em;
}
.contact .contact-info p.full-name {
font-size:1.2em;
line-height:1.3em;
}
/* Manage Client Contacts
----------------------------------------------- */
#manage-client-contacts {
float:left;
width:100%;
margin-top:2px;
}
#manage-client-contacts form {
border-top:1px solid #ccc;
}
#manage-client-contacts form div {
margin:.5em 0;
}
/* Messages, Bookmarks, Notes
----------------------------------------------- */
.message,
.bookmark,
.note {
float:left;
width:222px;
padding:8px;
border-top:1px solid #ccc;
}
.message .meta {
color:#1A77BD;
}
.message .meta .date {
color:#888;
}
/* Client Details Form Fields
----------------------------------------------- */
.pane input[type="text"] {
width:98%;
border:0;
font: normal 1em/1.3em helvetica, arial, sans-serif;
}
.pane input.hours[type="text"],
.pane input.dollars[type="text"] {
width:auto;
}
.pane textarea {
width:98%;
border:0;
font: normal 1em/1.3em helvetica, arial, sans-serif;
}
.pane select {
width:98%;
}
/* Task Priority
----------------------------------------------- */
.urgent{
background:#fcc;
}
.important{
background:#ffd8b2;
}
.low{
background:#cfc;
} | workspace/assets/css/routeone/projects.css | ----------------------------------------------- */
body {
margin: 0;
padding: 0;
background: #d9dde2;
font: normal 75%/1.5em helvetica, arial, sans-serif;
}
/* {
margin:0;
padding:0;
text-decoration:none;
border:none;
color: #666;
list-style-type:none;
} */
/* anchors
----------------------------------------------- */
a {
color: #333;
text-decoration: none;
}
a:link, a:visited, a:active {
color: #333;
text-decoration: none;
}
a:hover,
a.current,ls -ltr
a.current:link,
a.current:hover {
color: #2A8CC8;
text-decoration: none;
}
/* image replacement
----------------------------------------------- */
em.ir, strong.ir {
display:block;
width:0;
height:0;
overflow:hidden;
font-size:0.5em;
}
/* blocks
----------------------------------------------- */
#top, #middle, #bottom {
display:block;
}
#page {
float:left;
width:100%;
}
#selected-task {
float:left;
width:100%;
background:#fff;
}
#bottom {
clear:both;
padding-top: 3em;
}
/* content
----------------------------------------------- */
#box-content {
padding:0 2em;
}
body.brands #content,
body.projects #content {
width:100%;
}
#box-details {
padding:0 2em;
}
/* body projects
----------------------------------------------- */
.body {
padding:2em;
margin-bottom:2em;
}
/* columns
----------------------------------------------- */
.content-1col,
.content-2col,
.content-3col,
.content-3col-wide {
margin-top:2em;
margin-bottom:2em;
}
.content-2col .colA {
float:left;
width: 70%;
}
.content-2col .colB {
float:left;
width: 30%;
}
.content-3col .colA {
float:left;
width: 33%;
}
.content-3col .colB {
float:left;
width: 31%;
margin-left:2%;
}
.content-3col .colC {
float:left;
width: 31%;
margin-left:2%;
}
.content-3col-wide .colA {
float:left;
width: 33%;
}
.content-3col-wide .colB {
float:left;
width: 31%;
margin-left:2%;
}
.content-3col-wide .colC {
float:left;
width: 31%;
margin-left:2%;
}
/* Reports
----------------------------------------------- */
.content-3col-split {
margin-bottom:2em;
}
.content-3col-split .colA {
float:left;
width:220px;
}
.content-3col-split .colB {
float:left;
width:340px;
margin-left:20px;
}
.content-3col-split .colC {
float:none;
margin-left:600px;
}
/* Overview
----------------------------------------------- */
.content-2col-overview {
margin-top:2em;
margin-bottom:2em;
}
.content-2col-overview .colA {
float:left;
width:504px;
}
.content-2col-overview .colB {
float:none;
margin-left:528px;
}
.content-3col-overview {
margin-top:2em;
margin-bottom:2em;
}
.content-3col-overview .colA {
float:left;
width:240px;
}
.content-3col-overview .colB {
float:left;
width:240px;
margin-left:24px;
}
.content-3col-overview .colC {
float:none;
margin-left:528px;
}
/* breadcrumbs
----------------------------------------------- */
.breadcrumbs {
float:left;
width:100%;
color:#999;
}
.breadcrumbs p {
width:auto;
padding:.5em 25px;
font-weight:normal;
color:#bbb;
}
.breadcrumbs p a {
color:#999;
font-weight:normal;
}
.breadcrumbs p a:hover {
color:#000;
}
.breadcrumbs p.login-info {
float:right;
}
/* submenu
----------------------------------------------- */
.submenu {
display:block;
clear:both;
background:#91949C url("../../images/r1/submenu_bg.gif") center bottom repeat-x;
}
.submenu ul {
padding:0;
border:0;
height:2.5em;
padding-top:12px;
padding-left:12px;
}
.submenu li {
display:inline;
height:2.5em;
border:0;
padding:0;
}
.submenu li a {
float:left;
display: block;
margin: 0;
margin-right:.2em;
line-height: 2.5em;
padding: 0 1em;
color:#000;
background: #d8dce1 url("../../images/r1/submenu_off_bg.gif") center bottom repeat-x;
border: 0;
}
.submenu li a:hover {
color:#2A8CC8;
background: #f5f9ff url("../../images/r1/submenu_hover_bg.gif") center bottom repeat-x;
}
.submenu li a:active {
color:#2A8CC8;
background:#fff url("../../images/r1/submenu_active_bg.gif") center bottom repeat-x;
}
.submenu li.current a,
.submenu li.current a:hover {
color:#2A8CC8;
background:#fff;
}
/* headings
----------------------------------------------- */
h2 {
margin-top:0;
margin-bottom:1.3em;
font-size:1.6em;
font-weight:normal;
line-height:1em;
color:#000;
}
/* columns
----------------------------------------------- */
.columns {
display:block;
clear:both;
}
.column-header h4 {
font-size:1em;
color:#666;
background:#fff url("../../images/r1/submenu_active_bg.gif") center bottom repeat-x;
border:1px solid #c1c6c9;
padding:.2em .5em;
}
/* content
-----------------------------------------------
#content p {
margin-bottom:1em;
}
#content del {
text-decoration:line-through;
}
#content h2 {
margin-top:0;
margin-bottom:1.3em;
font-size:1.6em;
font-weight:normal;
line-height:1em;
color:#000;
}
#content h2 a {
font-weight:normal;
color:#000;
}
#content h2 a:hover {
color:#2A8CC8;
}
#content h3,
#content-secondary h3,
#content h4 {
font-size:1.2em;
font-weight: normal;
}
#content h3,
#content-secondary h3 {
margin: 2em 0 1.5em 0;
padding:3px 0;
border-top:1px solid #000;
border-bottom:1px solid #ccc;
}
#content h4,
#content h4 span {color:#2A8CC8;}
#content h4,
#content h5,
#content h6 {
margin-bottom: .8em;
}
#content h5 {
font-size:1em;
color:#000;
}
----------------------------------------------- */
/* content forms
-----------------------------------------------
#content form {
background:#eee;
margin: 12px 0;
border-top:1px solid #ccc;
border-left:1px solid #ccc;
}
#content form input {
margin-right:6px;
}
#content form input#s {
width:170px;
margin-bottom:6px;
}
#content form input,
#content form select {
margin:0;
width:auto;
}
#content form input,
#content form select {
margin:0;
width:auto;
}
#box-content .content-2col form.filter {
margin-top:.3em;
}
#content form input[type="button"] {
margin-left:.5em;
border:1px solid #999;
padding:.0 .2em;
}
#content form input[type="button"]:hover {
border:1px solid #000;
background:#333;
color:#fff;
}
----------------------------------------------- */
#content form.filter {
float:right;
padding:0;
margin:0;
background:transparent;
border:0;
margin-left:1em;
}
#content form.filter select {
width:auto;
}
/* content entries
-----------------------------------------------
#content #entries form {
margin:15px 0 15px 0;
border:0;
border-top:1px solid #ccc;
border-bottom:1px solid #ccc;
}
#content #entries form li {
list-style-type:none;
margin-left:0;
}
#content #entries form label {
display:block;
font-size:.8em;
font-weight: normal;
letter-spacing:.2em;
text-transform: uppercase;
margin:5px 0;
}
#content #entries form input.text {
width:250px;
}
#content #entries form textarea {
width:400px;
}
#content #entries h3 {
margin-left:0;
padding-left:0;
}
#content h3 a.view {
letter-spacing:0;
text-transform: none;
}
----------------------------------------------- */
/* new entry form
-----------------------------------------------
#content #entries form.new-entry {
padding:2em;
border:1px solid #ccc;
}
#content #entries form.new-entry label {
display:block;
color:#333;
font-size:1em;
font-weight: normal;
letter-spacing:0;
text-transform:none;
margin-bottom:1em;
}
#content #entries form.new-entry select {
width:100%;
}
#content #entries form.new-entry input.text {
width:100%;
}
#content #entries form.new-entry label.checkbox {
float:right;
margin-top:0;
margin-bottom:0;
}
#content #entries form.new-entry textarea {
width:100%;
}
#content #entries form.new-entry small {
font-size:1em;
}
#content #entries .form .entry-body {
border-bottom:0;
}
----------------------------------------------- */
/* entries
-----------------------------------------------
#entries {
margin-right:15px;
}
#entries p {
margin-bottom:1em;
}
#entries ol,
#entries ul {
margin-left:1em;
margin-bottom:1em;
}
#entries ol li,
#entries ul li {
margin-left:1em;
list-style-type:square;
margin-bottom:.5em;
}
#entries ol li {
list-style-type:decimal-leading-zero;
}
#entries pre {
padding:15px;
margin-bottom:15px;
background:#eee;
overflow:auto;
}
#entries blockquote {
padding-left:15px;
border-left:1px dotted #999;
}
----------------------------------------------- */
/* entry
-----------------------------------------------
#content .entry {
clear:both;
border-top:1px solid #000;
margin:0 0 2em 0;
}
#content .entry .entry-data {
float:left;
width:216px;
padding-top:1.5em;
border-top:4px solid #000;
}
#content .entry .entry-body {
padding-top:1em;
margin-left:216px;
border-bottom:1px solid #ccc;
}
#content.content-2col .entry .entry-data {
float:left;
width:25%;
padding-top:1em;
border-top:4px solid #000;
}
#content.content-2col .entry .entry-body {
padding-top:.5em;
margin-left:25%;
border-bottom:1px solid #ccc;
}
#section-about #content .entry .entry-body,
#section-contact #content .entry .entry-body {
border-bottom:0;
}
#content .entry .entry-body a span {
color: #333;
text-decoration: none;
}
#content .entry .entry-body a:hover span {
color: #2A8CC8;
text-decoration: none;
}
#content .entry .entry-info {
margin:0;
padding:.5em 0 .7em 0;
border-top:1px solid #ccc;
font-size:1em;
}
#content .entry .entry-info span {
float:left;
width:162px;
font-weight:bold;
}
#content.content-2col .entry .entry-info span {
float:left;
width:108px;
font-weight:bold;
}
#content .entry .entry-cont {
float:right;
}
#content .entry blockquote {
margin-left:2em;
margin-bottom:2em;
}
#content .entry ul {
padding-left:2em;
margin-bottom:2em;
}
#section-contact #content .entry ul {
padding-left:0;
}
#content .entry ul li {
list-style-type:square;
}
#content .entry pre {
padding:15px;
margin-bottom:15px;
border:1px solid #ccc;
background:#eee;
overflow:auto;
}
----------------------------------------------- */
/* entry images
----------------------------------------------- */
#image-block {
margin: 20px;
margin-left: 2em;
padding: 0;
}
#image-block img {
float: none;
display: inline;
border: 1px solid #ccc;
margin: 7px 3px 2px 0;
padding:3px;
}
img.entry-image {
padding:9px;
border: 1px solid #ccc;
margin-bottom:12px;
}
img.left {
float:left;
margin-right:12px;
}
img.right {
float:right;
margin-left:12px;
}
/* entry 1 column
----------------------------------------------- */
.content-1col .entry .entry-body {
margin-left:216px;
}
.content-1col .entry .entry-data {
width:216px;
}
.content-1col .entry .entry-data {
float:left;
width:215px;
padding-top:.9em;
border-top:4px solid #000;
}
/* content-secondary
----------------------------------------------- */
#content-secondary {
margin-top:12px;
margin-left:108px;
padding-top:18px;
border-top:5px solid #000;
}
#content-secondary h2 {
padding-bottom:12px;
font-weight:normal;
}
#content-secondary a {
font-weight:bold;
}
/* lists
----------------------------------------------- */
.lists {
font-size:1em;
line-height:1.4em;
}
.colA .lists {
}
.colC .lists {
}
.content-2col .colB .lists {
padding-top:0;
}
.lists h3 {
margin: 0 0 1em 0;
padding:.4em 0;
color:#2A8CC8;
}
/*
.lists ul.posts li a {
list-style-image:url("../../images/r1/a_post.gif");
}
.lists ul.categories li {
list-style-image:url("../../images/r1/a_category.gif");
}
.lists ul.client-list li {
list-style-image:url("../../images/r1/a_client.gif");
}
.lists ul.project-list li {
list-style-image:url("../../images/r1/a_project.gif");
}
.lists ul.entries-list li {
list-style-image:url("../../images/r1/a_post.gif");
}
.lists ul.links li {
list-style-image:url("../../images/r1/a_link_arrow.gif");
}
.lists ul.file-download-list li {
list-style-image:url("../../images/r1/a_download.gif");
}
.lists ul.feeds li {
list-style-image:url("../../images/r1/a_feed.gif");
}
.lists ul.categories li.subcategory {
list-style-image:none;
padding-left:15px;
background:url("../../images/r1/a_subcategory.gif") left 3px no-repeat;
}
*/
.lists ul {
font-size:1em;
}
.lists ul li {
margin:0;
padding:0;
border-bottom:1px solid #eee;
list-style-type:none;
}
.lists li a {
display:block;
padding-left:24px;
}
.lists li a:hover {
color:#2A8CC8;
}
.lists li a:active {
color:#fff;
background:#1A77BD;
}
.lists li.date-small {font-size:.8em; margin:0;}
#content .lists ul li a span {
font-weight:normal;
}
/* box-header
----------------------------------------------- */
.box-header {
float:left;
width:100%;
border-top:1px solid #c1c6c9;
padding-bottom:3px;
}
.box-header h2 {
float:left;
border:none;
margin:0;
padding:.6em 0 0 0;
font-size:1.3em;
}
.box-header h3 {
float:left;
border:none;
margin:0;
padding:.6em 0 .5em 0;
font-size:1.2em;
}
.box-header h3 a {
color:#1A77BD;
font-weight:normal;
}
.box-header h3 a:hover {
color:#000;
}
.box-header ul {
float:right;
margin:0;
padding:0;
}
.box-header li,
.lists .box-header li {
float:left;
border:none;
margin:0;
padding:0;
list-style-type:none;
}
.lists .box-header li a:active {
color:#000;
background-color:transparent;
background-position:3px -192px;
}
.box-header li a {
font-weight:normal;
color:#91949c;
background-color:transparent;
display:block;
line-height:24px;
height:24px;
padding:2px 9px 3px 30px;
border-left:1px solid #c1c6c9;
border-top:3px solid #fff;
}
.box-header li.add a {background:url("../../images/r1/icon_add.gif") 3px 0 no-repeat;}
.box-header li.list a {background:url("../../images/r1/icon_next.gif") 3px 0 no-repeat;}
.box-header li.lists-view a.collapse {background:url("../../images/r1/icon_collapse.gif") 3px 0 no-repeat;}
.box-header li.lists-view a.expand {background:url("../../images/r1/icon_expand.gif") 3px 0 no-repeat;}
.box-header li.delete a {background:url("../../images/r1/icon_delete.gif") 3px 0 no-repeat;}
.box-header li.edit a {background:url("../../images/r1/icon_edit.gif") 3px 0 no-repeat;}
.box-header li.done a {background:url("../../images/r1/icon_done.gif") 3px 0 no-repeat;}
.box-header li.view a {background:url("../../images/r1/icon_view.gif") 3px 0 no-repeat;}
.box-header li.previous a {background:url("../../images/r1/icon_previous.gif") 3px 0 no-repeat;}
.box-header li.next a {background:url("../../images/r1/icon_next.gif") 3px 0 no-repeat;}
.box-header li.first a {background:url("../../images/r1/icon_rew.gif") 3px 0 no-repeat;}
.box-header li.last a {background:url("../../images/r1/icon_ff.gif") 3px 0 no-repeat;}
.box-header li.today a {background:url("../../images/r1/icon_today.gif") 3px 0 no-repeat;}
.box-header li a:hover {color:#494e55; background-position:3px -96px;}
.box-header li a:active,
.box-header li a.collapse:active,
.box-header li a.expand:active {
color:#000;
background-position:3px -192px;
border-top:3px solid #c1c6c9;
}
.box-header li a.current {
color:#000;
background-position:3px -192px;
border-top:3px solid #1a77bd;
}
.list-box {
clear:both;
height:432px;
width:238px;
border:1px solid #c1c6c9;
overflow:auto;
}
.list-box-fluid {
float:left;
height:432px;
border:1px solid #c1c6c9;
width:100%;
overflow:auto;
}
.projects-box .list-box,
.tickets-box .list-box {
height:185px;
}
.content-3col-overview .tickets-box {
margin-top:24px;
}
.collapsed .list-box {
height:66px;
}
.collapsed .list-box-fluid {
height:68px;
}
.collapsed .list-box-fluid .tasks-list {
height:66px;
}
/* table
----------------------------------------------- */
table {
width:100%;
float:left;
}
table.timesheet {
float:left;
}
tr {
padding: .3em 0;
text-align: left;
}
th {
padding: .3em 6px .2em 6px;
text-align: left;
font-size:1em;
font-weight: normal;
border-bottom: 1px solid #eee;
}
th a.current {
color:#2A8CC8;
}
thead th {
border-bottom:1px solid #c1c6c9;
background:#fff url("../../images/r1/submenu_active_bg.gif") center bottom repeat-x;
}
thead th a {
font-weight:bold;
}
tbody tr:hover {
background:#eee;
}
tbody tr.inactive{
background:#fee;
}
.list tbody tr.selected,
.list tbody tr:active {
color:#fff;
background:#1A77BD;
}
.list tbody tr.selected a,
.list tbody tr:active a {
color:#fff;
}
tbody td {
padding: 3px 0 2px 6px;
border-bottom: 1px solid #eee;
}
tbody td a {
padding: 3px 0 2px 6px;
display:block;
}
tbody th.link,
tbody td.link {
padding:0;
}
tbody th.link {
padding-left:6px;
}
tfoot td {
padding: 3px 0 2px 6px;
font-size:1em;
}
tfoot td a {
font-weight:bold;
}
tfoot tr.totals td {
font-size:1em;
font-weight:bold;
border-top: 2px solid #999;
border-bottom: 1px solid #c1c6c9;
letter-spacing:0;
text-transform:none;
padding: 3px 0 2px 6px;
}
td a {
font-weight:normal;
}
/* About page
----------------------------------------------- */
#section-about .entry ul li,
#section-contact .entry ul li {
margin-left:2em;
margin-right:48px;
list-style-type:square;
margin-bottom:1em;
font-size:.8em;
line-height:1.5em;
}
#section-about form,
#section-contact form {
background-color: #eee;
width: 500px;
font-size: 90%;
padding: 12px 12px 36px 12px;
}
form label small {
display: block;
color: #888;
font-size: 80%;
text-transform: none;
text-align: right;
margin-left: 40%;
margin-top: -1.55em;
}
form label small a:hover {
color: #666;
border-color: #888;
}
form textarea {
height: 200px;
}
form input#submit {
float: right;
display: block;
width: 120px;
}
form p.success {
color: #6cc33c;
background: #e2e4db url("../../images/r1/icon-tick.gif") left center no-repeat;
font-size: 99%;
margin: 0 0 9px;
padding-left: 24px;
}
form p.error {
color: #ff4242;
background: #e2e4db url("../../images/r1/icon-cross.gif") left center no-repeat;
font-size: 99%;
margin: 0 0 9px;
padding-left: 24px;
}
/* About page: Tumble Log
----------------------------------------------- */
dl.listing {
border-top: 1px solid #ccc;
padding-top: 10px;
margin-bottom: 20px;
font-size: .9em;
}
dl.listing dt {
float: left;
}
dl.listing dd {
background: url("../../images/r1/arrowred.gif") left 0.5em no-repeat;
padding-left: 15px;
margin: 0 0 10px 110px;
}
/* Archive page
----------------------------------------------- */
#archive a small {
color: #aaa;
font-style: italic;
font-size: 85%;
}
#archive a {
display: block;
padding: 0 10px;
}
#archive a:hover {
color: #fff;
background-color: #ccc;
}
#archive a.active {
color: #fff;
background-color: #ccc;
}
#archive ul li {
margin: 0 0 5px;
}
ul#year {
float: left;
list-style: none;
margin: 0;
}
ul#month {
float: left;
list-style: none;
}
ul#past-entries {
list-style: none;
border-left: 1px dotted #333;
padding-left: 20px;
margin-left: 216px;
}
/* Pagination
----------------------------------------------- */
.pagination {
float:right;
}
.pagination a {
float:left;
text-align:center;
border:1px solid #ddd;
width:2em;
padding:.2em 0;
margin-right:2px;
}
.pagination a.first,
.pagination a.previous,
.pagination a.next,
.pagination a.last {
width:auto;
padding:.2em .5em;
}
.pagination a.na,
.pagination a.na:hover {
color:#ddd;
border:1px solid #eee;
}
.pagination a.current {
color:#fff;
background:#000;
border:1px solid #000;
}
.pagination a:hover {
border:1px solid #000;
}
/* Projects
----------------------------------------------- */
body.projects #content .body {
border-right:0;
padding-top:0;
}
/* Time Entries
----------------------------------------------- */
.time-entries {
padding-top:10px;
margin-left:25%;
}
#content .time-entries h2 {
margin:1em 0 .5em 0;
}
#content .time-entries h3 {
margin-bottom:.5em;
color:#2A8CC8;
border-top:2px solid #000;
}
.time-entries tr {
padding: .5em 0;
text-align: left;
}
.time-entries th {
padding: .5em .5em .5em 0;
border-bottom: 1px solid #ccc;
text-align: left;
font-size:1em;
font-weight: bold;
}
.time-entries tr.project-item:hover {
background:transparent;
}
.time-entries tr.project-item th {
font-size:1.2em;
color:#000;
}
.time-entries tbody td {
padding: .5em .5em .5em 0;
border-bottom: 1px solid #ccc;
}
.time-entries tbody td a {
padding: .5em .5em .5em 0;
display:block;
}
.time-entries tbody td.link {
padding:0;
}
.time-entries tfoot td {
padding: .5em .5em .5em 0;
font-size:1em;
}
#content .time-entries tfoot tr.totals td {
padding: .5em .5em .5em 0;
}
.time-entries tr.subtotals:hover {
background:transparent;
}
.time-entries tr.subtotals td {
font-weight:bold;
}
/* Timesheet Report
----------------------------------------------- */
#content .timesheet-entries tr.client-name:hover,
#content .timesheet-entries tr.project-title:hover {
background:transparent;
}
.timesheet-entries tr.client-name th {
font-size:1.5em;
color:#000;
padding-top:1em;
padding-left:0;
border-bottom:0;
}
.timesheet-entries tr.project-title th {
font-size:1.2em;
color:#000;
padding-top:1em;
padding-left:0;
}
.timesheet-entries tr.subtotals:hover {
background:transparent;
}
.timesheet-entries tr.subtotals td {
font-weight:bold;
border-top:2px solid #ccc;
}
/* Small Calendar
----------------------------------------------- */
.calendar .box-header {
border-top:0;
padding-top:3px;
padding-bottom:0;
}
.calendar .box-header h3 {
float:left;
border:none;
margin:0;
padding:.3em 0 0 0;
color:#2A8CC8;
font-weight:normal;
font-size:1.3em;
}
.calendar .box-header li a {
padding:0;
border:0;
}
.calendar-small table {
width:240px;
margin-top:8px;
}
.calendar-small table td {
width:33px;
padding:0;
border:1px solid #ccc;
background:#fff;
height:auto;
}
.calendar-small table td.prev-mo,
.calendar-small table td.next-mo,
.calendar-small table tr:hover td.prev-mo,
.calendar-small table tr:hover td.next-mo {
background:#eee;
}
.calendar-small table td a {
padding:6px 0;
text-align:center;
border:none;
}
.calendar-small table td.selected a,
.calendar-small table td a:active {
color:#fff;
background:#1A77BD;
}
.calendar-small table th {
padding:1px 0 0 0;
border-top:1px solid #ccc;
}
.calendar-small .buttons {
float:right;
}
.calendar-small .buttons li {
float:left;
text-indent:-9999em;
}
.calendar-small .buttons li a {
display:block;
width:24px;
height:24px;
}
.calendar-small .box-header li.previous a {background:url("../../images/r1/icon_previous.gif") 0 0 no-repeat;}
.calendar-small .box-header li.next a {background:url("../../images/r1/icon_next.gif") 0 0 no-repeat;}
.calendar-small .box-header li.previous a:hover {background:url("../../images/r1/icon_previous.gif") 0 -96px no-repeat;}
.calendar-small .box-header li.next a:hover {background:url("../../images/r1/icon_next.gif") 0 -96px no-repeat;}
.calendar-small .box-header li.previous a:active {background:url("../../images/r1/icon_previous.gif") 0 -192px no-repeat;}
.calendar-small .box-header li.next a:active {background:url("../../images/r1/icon_next.gif") 0 -192px no-repeat;}
/* Project & Task Details
----------------------------------------------- */
.pane thead th {
font-weight:normal;
}
.pane th {
vertical-align:top;
font-weight:bold;
white-space:nowrap;
}
.pane td h5 {
font-weight:bold;
margin-bottom:.5em;
}
.pane td p {
margin-bottom:1em;
}
.pane td ul {
margin-left:2em;
margin-bottom:1em;
}
.pane td ul li {
list-style-type:disc;
border:none;
margin-bottom:.3em;
}
.details th {
vertical-align:top;
width:12em;
font-weight:bold;
padding-left:2em;
}
.pane td,
.details td {
padding-right:1em;
}
.item-client th {
background:url("../../images/r1/item_client.gif") 4px 3px no-repeat;
}
.item-project th {
background:url("../../images/r1/item_project.gif") 4px 3px no-repeat;
}
.item-milestone th {
background:url("../../images/r1/item_milestone.gif") 4px 3px no-repeat;
}
.item-ticket th {
background:url("../../images/r1/item_ticket.gif") 4px 3px no-repeat;
}
.item-task th {
background:url("../../images/r1/item_task.gif") 4px 3px no-repeat;
}
/* Table List Icons
----------------------------------------------- */
table.sites-list tbody tr th,
tr.site th {background:url("../../images/r1/a_link_arrow.gif") 6px 4px no-repeat; padding-left:24px;font-weight:bold}
table.clients-list tbody tr th,
tr.client th {background:url("../../images/r1/btn_client.gif") 4px 3px no-repeat; padding-left:24px; font-weight:bold}
table.clients-list tbody tr:hover th,
tr.client:hover th {background-position:4px -93px}
table.clients-list tbody tr:active th,
tr.client:active th {background-position:4px -190px}
table.clients-list tbody tr:active,
tr.client:active {background-color:#1A77BD}
table.clients-list tbody tr:active th,
table.clients-list tbody tr:active th a,
table.clients-list tbody tr:active td,
table.clients-list tbody tr:active td a,
tr.client:active th,
tr.client:active th a,
tr.client:active td,
tr.client:active td a {color:#fff;}
table.clients-list tbody th a span.task,
tr.client th a span.task {font-weight:bold}
table.projects-list tbody tr th,
tr.project th {background:url("../../images/r1/btn_project.gif") 4px 3px no-repeat; padding-left:24px; font-weight:bold}
table.projects-list tbody tr:hover th,
tr.project:hover th {background-position:4px -93px}
table.projects-list tbody tr:active th,
tr.project:active th {background-position:4px -190px}
table.projects-list tbody tr:active,
tr.project:active {background-color:#1A77BD}
table.projects-list tbody tr:active th,
table.projects-list tbody tr:active th a,
table.projects-list tbody tr:active td,
table.projects-list tbody tr:active td a,
tr.project:active th,
tr.project:active th a,
tr.project:active td,
tr.project:active td a {color:#fff;}
table.projects-list tbody tr th a span.task,
tr.project th a span.task {font-weight:bold}
tr.milestone th {background:url("../../images/r1/btn_milestone.gif") 4px 3px no-repeat; padding-left:24px; font-weight:bold}
tr.milestone:hover th {background-position:4px -93px}
tr.milestone:active th {background-position:4px -190px}
tr.milestone:active {background-color:#1A77BD}
tr.milestone:active th,
tr.milestone:active th a,
tr.milestone:active td,
tr.milestone:active td a {color:#fff;}
tr.milestone th a span.task {font-weight:bold}
table.tickets-list tbody tr th,
tr.ticket th {background:url("../../images/r1/btn_ticket.gif") 4px 3px no-repeat; padding-left:24px; font-weight:bold}
table.tickets-list tbody tr:hover th,
tr.ticket:hover th {background-position:4px -93px}
table.tickets-list tbody tr:active th,
tr.ticket:active th {background-position:4px -190px}
table.tickets-list tbody tr:active,
tr.ticket:active {background-color:#1A77BD}
table.tickets-list tbody tr:active th,
table.tickets-list tbody tr:active th a,
table.tickets-list tbody tr:active td,
table.tickets-list tbody tr:active td a,
tr.ticket:active th,
tr.ticket:active th a,
tr.ticket:active td,
tr.ticket:active td a {color:#fff;}
table.tickets-list tbody tr th a span.task,
tr.ticket th a span.task {font-weight:bold}
table.tasks-list tbody tr th,
tr.task th {background:url("../../images/r1/btn_task.gif") 22px 3px no-repeat; padding-left:42px}
table.tasks-list tbody tr:hover th,
tr.task:hover th {background-position:22px -93px}
table.tasks-list tbody tr:active th,
tr.task:active th {background-position:22px -190px}
table.tasks-list tbody tr:active,
tr.task:active {background-color:#1A77BD}
table.tasks-list tbody tr:active th,
table.tasks-list tbody tr:active th a,
table.tasks-list tbody tr:active td,
table.tasks-list tbody tr:active td a,
tr.task:active th,
tr.task:active th a,
tr.task:active td,
tr.task:active td a {color:#fff;}
tr.entry th.date,
tr.entry td.date,
tr.subtotal th {padding-left:42px}
tr.total th {padding-left:42px; text-transform:uppercase}
tr.total td,
tr.subtotal td {font-weight:bold}
#milestones-tasks-pane tr.task th,
#project-tasks-pane tr.task th {font-weight:normal}
/* currently selected table rows
----------------------------------------------- */
tr.current,
tr.current:hover {
background:#1A77BD;
}
tr.current td {
color:#fff;
}
tr.current th,
tr.current:hover th {
color:#fff;
background-position:22px -190px;
}
tr.milestone.current th,
tr.milestone.current:hover th {
color:#fff;
background-position:4px -190px;
}
tr.milestone.current th a,
tr.milestone.current:hover th a {
color:#fff;
}
/* Subsection Header
----------------------------------------------- */
.subsection-header {
float:left;
width:100%;
padding:1em 0;
}
.subsection-header h3 {
display:inline;
font-weight:normal;
padding-right:1em;
color:#2A8CC8;
}
.subsection-header h3 a {
color:#2A8CC8;
}
.subsection-header h3 a:hover {
color:#000;
}
.subsection-header p {
display:inline;
}
.subsection-header p a {
font-weight:bold;
}
/* Time Entry Form
----------------------------------------------- */
form.time-entry {
display:block;
clear:both;
border-top:1px solid #C1C6C9;
}
form.time-entry .colB,
form.time-entry .colC {
padding-top:2px;
}
form label {
display:block;
padding-top:14px;
}
form select {
width:100%;
}
form input.text {
width:100%;
}
form label.start-time,
form label.stop-time {
width:108px;
float:left;
}
form label.start-time {
margin-right:24px;
}
form textarea {
width:100%;
}
form input.start-button {
float:left;
margin-top:18px;
width:42px;
height:42px;
background: url("../../images/r1/icon_start.gif") left top no-repeat;
text-indent:-9999em;
border:none;
}
form input.start-button:hover {
background-position: 0 -42px;
}
form input.start-button:active {
background-position: 0 -84px;
}
form input.start-button-on {
float:left;
margin-top:18px;
width:42px;
height:42px;
background: url("../../images/r1/icon_start.gif") left top no-repeat;
background-position: 0 -42px;
text-indent:-9999em;
border:none;
}
form label.hours {
float:right;
width:108px;
}
form.time-entry textarea {
height:126px;
}
/* Timesheet Entry
----------------------------------------------- */
.timesheet table,
.timesheet-entry table {
border-left:1px solid #C1C6C9;
border-right:1px solid #C1C6C9;
}
.timesheet-entry th {
vertical-align:top;
width:9em;
font-weight:bold;
padding-left:.5em;
}
.timesheet-entry thead th {
font-weight:normal;
font-size:1.4em;
color:#333;
padding:1em;
}
.timesheet-entry td {
padding-right:1em;
}
.timesheet thead th {
font-weight:bold;
}
.timesheet tfoot td {
border-bottom:1px solid #C1C6C9;
font-weight:bold;
}
.timesheet tr:active td,
.timesheet tr.selected td {
color:#fff;
background:#1A77BD;
}
/* Clients
----------------------------------------------- */
.overview {
float:left;
width:100%;
height:432px;
overflow:auto;
}
/* Projects
----------------------------------------------- */
.content-2col-sidebar {
margin-top:2em;
margin-bottom:2em;
}
.content-2col-sidebar .colA {
float:right;
width:240px;
}
.content-2col-sidebar .colB {
margin-right:264px;
}
.content-2col-sidebar .column-header {
float:left;
width:100%;
}
/* Panels
----------------------------------------------- */
#tasks-pane {
height:360px;
overflow:auto;
overflow-x:hidden;
}
#tickets-pane {
height:240px;
overflow:auto;
overflow-x:hidden;
}
.panel {
float:left;
width:100%;
margin-bottom:1em;
border:1px solid #c1c6c9;
}
.content-2col-sidebar .colA .panel {
width:238px;
}
#clients-list-panel .pane,
#projects-list-panel .pane,
#tickets-list-panel .pane {
width:238px;
height:185px;
overflow:auto;
}
.panel h4 {
font-size:1em;
color:#666;
background:#fff url("../../images/r1/submenu_active_bg.gif") center bottom repeat-x;
border-bottom:1px solid #c1c6c9;
padding:.2em .5em;
}
.panel h4.toggle {
padding:0;
}
.panel h4.toggle a {
display:block;
padding:.2em .5em;
background: url("../../images/r1/icon_toggle_open.gif") right top no-repeat;
}
.panel h4.toggle a:hover {
background: url("../../images/r1/icon_toggle_closed.gif") right top no-repeat;
}
.panel ul {
margin-bottom:0;
}
.panel table {
border:none;
}
/* Contact Details Panes
----------------------------------------------- */
.contact-details h5 {
padding:8px;
}
.contact-details p {
padding:3px 8px 2px;
border-top:1px solid #eee;
}
.contact-details p span.label {
text-transform:lowercase;
font-weight:bold;
float:left;
width:66px;
}
.contact-details p .address {
float:left;
width:150px;
}
.contact {
float:left;
width:222px;
background:#eee;
padding:8px;
border-top:1px solid #ccc;
}
.full-contact-info {
background:transparent;
border-top:none;
}
.contact a.photo {
float:left;
width:66px;
}
.contact a.photo img {
float:left;
padding:3px;
border:1px solid #ccc;
}
.contact .contact-info {
float:left;
width:150px;
}
.contact .contact-info p {
line-height:1.2em;
}
.contact .contact-info p.full-name {
font-size:1.2em;
line-height:1.3em;
}
/* Manage Client Contacts
----------------------------------------------- */
#manage-client-contacts {
float:left;
width:100%;
margin-top:2px;
}
#manage-client-contacts form {
border-top:1px solid #ccc;
}
#manage-client-contacts form div {
margin:.5em 0;
}
/* Messages, Bookmarks, Notes
----------------------------------------------- */
.message,
.bookmark,
.note {
float:left;
width:222px;
padding:8px;
border-top:1px solid #ccc;
}
.message .meta {
color:#1A77BD;
}
.message .meta .date {
color:#888;
}
/* Client Details Form Fields
----------------------------------------------- */
.pane input[type="text"] {
width:98%;
border:0;
font: normal 1em/1.3em helvetica, arial, sans-serif;
}
.pane input.hours[type="text"],
.pane input.dollars[type="text"] {
width:auto;
}
.pane textarea {
width:98%;
border:0;
font: normal 1em/1.3em helvetica, arial, sans-serif;
}
.pane select {
width:98%;
}
/* Task Priority
----------------------------------------------- */
.urgent{
background:#fcc;
}
.important{
background:#ffd8b2;
}
.low{
background:#cfc;
} | 0.309858 | 0.052425 |
.home-content-container {
background: var(--background-color);
}
.home-content-container .home-article-list .home-article-item {
position: relative;
}
.home-content-container .home-article-list .home-article-item .top-icon {
position: absolute;
top: 10px;
right: 12px;
font-size: 1.2rem;
transform: rotate(45deg);
color: var(--third-text-color);
keep-tablet()
}
.home-content-container .home-article-list .home-article-item .home-article-title {
position: relative;
font-weight: 600;
font-size: 1.5rem;
line-height: 1.5rem;
color: var(--second-text-color);
keep-tablet()
keep-mobile()
margin: 0;
}
.home-content-container .home-article-list .home-article-item .home-article-content {
word-wrap: break-word;
text-align: justify;
margin: 20px 0;
line-height: 2rem;
color: var(--default-text-color);
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 1rem;
color: var(--third-text-color);
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container .home-article-meta-info {
letter-spacing: 0.5px;
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container .home-article-meta-info span {
margin-right: 10px;
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container .home-article-meta-info span:last-child {
margin-right: 0;
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container .home-article-meta-info span ul,
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container .home-article-meta-info span li {
display: inline;
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container hr {
border: none;
flex: 1;
height: 1px;
background: var(--border-color);
margin: 0 10px;
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container a {
color: var(--third-text-color);
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container a:hover {
color: var(--primary-color);
} | css/layout/home-content.css | .home-content-container {
background: var(--background-color);
}
.home-content-container .home-article-list .home-article-item {
position: relative;
}
.home-content-container .home-article-list .home-article-item .top-icon {
position: absolute;
top: 10px;
right: 12px;
font-size: 1.2rem;
transform: rotate(45deg);
color: var(--third-text-color);
keep-tablet()
}
.home-content-container .home-article-list .home-article-item .home-article-title {
position: relative;
font-weight: 600;
font-size: 1.5rem;
line-height: 1.5rem;
color: var(--second-text-color);
keep-tablet()
keep-mobile()
margin: 0;
}
.home-content-container .home-article-list .home-article-item .home-article-content {
word-wrap: break-word;
text-align: justify;
margin: 20px 0;
line-height: 2rem;
color: var(--default-text-color);
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 1rem;
color: var(--third-text-color);
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container .home-article-meta-info {
letter-spacing: 0.5px;
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container .home-article-meta-info span {
margin-right: 10px;
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container .home-article-meta-info span:last-child {
margin-right: 0;
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container .home-article-meta-info span ul,
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container .home-article-meta-info span li {
display: inline;
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container hr {
border: none;
flex: 1;
height: 1px;
background: var(--border-color);
margin: 0 10px;
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container a {
color: var(--third-text-color);
}
.home-content-container .home-article-list .home-article-item .home-article-meta-info-container a:hover {
color: var(--primary-color);
} | 0.265214 | 0.034717 |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
*
{
margin:0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins' ,sans-serif;
}
.redir {
background-color: rgb(243, 246, 193);
border: 2px solid black;
color: rgb(3, 41, 63);
padding: 5px 10px;
text-align: center;
display: inline-block;
font-size: 20px;
margin: 10px 850px;
cursor: pointer;
}
section
{
position: relative;
display: flex;
justify-content: center;
align-items: center;
min-height: 92vh;
/* background: rgb(80,10,60); */
}
section::before
{
content: '';
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
/* background: #a8f571; */
}
section .container
{
position:relative;
min-width: 1100px;
min-height: 550px;
display: flex;
z-index:5;
}
section .container .contactinfo
{
position: absolute;
top: 40px;
right: 50px;
width: 350px;
height: calc(100% * 80 px);
background: rgb(141, 164, 190);
z-index: 1;
padding: 40px;
display: flex;
flex-direction: column;
justify-content: space-between;
box-shadow: 0 20px 20px rgba(0,0,0,0.2);
}
section .container .contactinfo h2
{
color: #fff;
font-size: 24px;
font-weight: 500;
}
section .container .contactinfo .info
{
position: relative;
margin: 20px 0;
}
section .container .contactinfo .info li
{
position: relative;
list-style: none;
display: flex;
margin: 20px 0;
cursor: pointer;
align-items: flex-start;
}
section .container .contactinfo .info li span:nth-child(1)
{
width: 30px;
min-width: 30px;
}
section .container .contactinfo .info li span:nth-child(1) img{
max-width: 100%;
filter: invert(1);
opacity: 0.5;
}
section .container .contactinfo .info li span:nth-child(2)
{
color:#fff;
margin-left: 10px;
font-weight: 300;
opacity: 0.5;
}
section .container .contactinfo .info li:hover span:nth-child(1) img,
section .container .contactinfo .info li:hover span:nth-child(2)
{
opacity: 1;
}
section .container .contactinfo .sci
{
position: relative;
display: flex;
}
section .container .contactinfo .sci li
{
list-style: none;
margin-right: 15px;
}
section .container .contactinfo .sci li a
{
text-decoration: none;
}
section .container .contactinfo .sci li a img
{
filter: invert(1);
opacity: 0.5;
}
section .container .contactinfo .sci li:hover a img
{
opacity: 1;
}
section .container .contactForm
{
position:absolute;
padding: 70px 50px;
background: #fff;
margin-left: 150px;
padding-left: 250px;
width: calc(100% - 150px);
height:100%;
box-shadow: 0 50px 50px rgba(0,0,0,0.5);
}
section .container .contactForm h2
{
color: rgb(80,10,60);
font-size: 24px;
font-weight: 500;
}
section .container .contactForm .formBox
{
position: relative;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
padding-top: 30px;
}
section .container .contactForm .formBox .inputBox
{
position: relative;
margin: 0 0 30px 0;
}
section .container .contactForm .formBox .inputBox.w50
{
width:47%;
}
section .container .contactForm .formBox .inputBox.w100
{
width:100%;
}
/*section .container .contactForm .formBox .inputBox input,section .container .contactForm .formBox .inputBox textarea,select{
width: 100%; !important;
padding: 5px 0;
font-size: 18px;
font-weight: 300;
color: #333;
border:none;
border-bottom: 1px solid #777;
outline: none;
}*/
section .container .contactForm .formBox .inputBox textarea{
min-height: 120px;
}
section .container .contactForm .formBox .inputBox span{
position: absolute;
left: 0;
padding: 5px 0;
font-size: 18px;
font-weight: 300;
color: #333;
transition: 0.5s;
pointer-events: none;
}
.back{
position:fixed;
left: 328px;
}
input:hover[type="submit"]
{
color:white !important;
font-weight:600 !important;
background: rgb(80,10,60);
}
/*section .container .contactForm .formBox .inputBox input:focus = span
section .container .contactForm .formBox .inputBox textarea:focus = span*/ | src/css/style_con.css | @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
*
{
margin:0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins' ,sans-serif;
}
.redir {
background-color: rgb(243, 246, 193);
border: 2px solid black;
color: rgb(3, 41, 63);
padding: 5px 10px;
text-align: center;
display: inline-block;
font-size: 20px;
margin: 10px 850px;
cursor: pointer;
}
section
{
position: relative;
display: flex;
justify-content: center;
align-items: center;
min-height: 92vh;
/* background: rgb(80,10,60); */
}
section::before
{
content: '';
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
/* background: #a8f571; */
}
section .container
{
position:relative;
min-width: 1100px;
min-height: 550px;
display: flex;
z-index:5;
}
section .container .contactinfo
{
position: absolute;
top: 40px;
right: 50px;
width: 350px;
height: calc(100% * 80 px);
background: rgb(141, 164, 190);
z-index: 1;
padding: 40px;
display: flex;
flex-direction: column;
justify-content: space-between;
box-shadow: 0 20px 20px rgba(0,0,0,0.2);
}
section .container .contactinfo h2
{
color: #fff;
font-size: 24px;
font-weight: 500;
}
section .container .contactinfo .info
{
position: relative;
margin: 20px 0;
}
section .container .contactinfo .info li
{
position: relative;
list-style: none;
display: flex;
margin: 20px 0;
cursor: pointer;
align-items: flex-start;
}
section .container .contactinfo .info li span:nth-child(1)
{
width: 30px;
min-width: 30px;
}
section .container .contactinfo .info li span:nth-child(1) img{
max-width: 100%;
filter: invert(1);
opacity: 0.5;
}
section .container .contactinfo .info li span:nth-child(2)
{
color:#fff;
margin-left: 10px;
font-weight: 300;
opacity: 0.5;
}
section .container .contactinfo .info li:hover span:nth-child(1) img,
section .container .contactinfo .info li:hover span:nth-child(2)
{
opacity: 1;
}
section .container .contactinfo .sci
{
position: relative;
display: flex;
}
section .container .contactinfo .sci li
{
list-style: none;
margin-right: 15px;
}
section .container .contactinfo .sci li a
{
text-decoration: none;
}
section .container .contactinfo .sci li a img
{
filter: invert(1);
opacity: 0.5;
}
section .container .contactinfo .sci li:hover a img
{
opacity: 1;
}
section .container .contactForm
{
position:absolute;
padding: 70px 50px;
background: #fff;
margin-left: 150px;
padding-left: 250px;
width: calc(100% - 150px);
height:100%;
box-shadow: 0 50px 50px rgba(0,0,0,0.5);
}
section .container .contactForm h2
{
color: rgb(80,10,60);
font-size: 24px;
font-weight: 500;
}
section .container .contactForm .formBox
{
position: relative;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
padding-top: 30px;
}
section .container .contactForm .formBox .inputBox
{
position: relative;
margin: 0 0 30px 0;
}
section .container .contactForm .formBox .inputBox.w50
{
width:47%;
}
section .container .contactForm .formBox .inputBox.w100
{
width:100%;
}
/*section .container .contactForm .formBox .inputBox input,section .container .contactForm .formBox .inputBox textarea,select{
width: 100%; !important;
padding: 5px 0;
font-size: 18px;
font-weight: 300;
color: #333;
border:none;
border-bottom: 1px solid #777;
outline: none;
}*/
section .container .contactForm .formBox .inputBox textarea{
min-height: 120px;
}
section .container .contactForm .formBox .inputBox span{
position: absolute;
left: 0;
padding: 5px 0;
font-size: 18px;
font-weight: 300;
color: #333;
transition: 0.5s;
pointer-events: none;
}
.back{
position:fixed;
left: 328px;
}
input:hover[type="submit"]
{
color:white !important;
font-weight:600 !important;
background: rgb(80,10,60);
}
/*section .container .contactForm .formBox .inputBox input:focus = span
section .container .contactForm .formBox .inputBox textarea:focus = span*/ | 0.312895 | 0.042009 |
h3.h3{text-align:center;margin:1em;text-transform:capitalize;font-size:1.7em;}
.product-grid6,.product-grid6 .product-image6{overflow:hidden}
.product-grid6{font-family:'Open Sans',sans-serif;text-align:center;position:relative;transition:all .5s ease 0s}
.product-grid6:hover{box-shadow:0 0 0px rgba(0,0,0,.9)}
.product-grid6 .product-image6 a{display:block}
.product-grid6 .product-image6 img{width:100%;height:250px;transition:all .5s ease 0s}
.product-grid6:hover .product-image6 img{transform:scale(1.1)}
.product-grid6 .product-content{padding:12px 12px 15px;transition:all .5s ease 0s}
.product-grid6:hover .product-content{opacity:0}
.product-grid6 .title{font-size:20px;font-weight:600;text-transform:capitalize;margin:0 0 10px;transition:all .3s ease 0s}
.product-grid6 .title a{color:#000}
.product-grid6 .title a:hover{color:#2e86de}
.product-grid6 .price{font-size:18px;font-weight:600;color:#2e86de}
.product-grid6 .price span{color:#999;font-size:15px;font-weight:400;text-decoration:line-through;margin-left:7px;display:inline-block}
.product-grid6 .social{background-color:#fff;width:100%;padding:0px 0px 10px 0px;margin:0;list-style:none;opacity:0;transform:translateX(-50%);position:absolute;bottom:-50%;left:50%;z-index:1;transition:all .5s ease 0s}
.product-grid6:hover .social{opacity:1;bottom:20px}
.product-grid6 .social li{display:inline-block}
.product-grid6 .social li a{color:#909090;font-size:16px;line-height:45px;text-align:center;height:45px;width:45px;margin:0 7px;border:1px solid #909090;border-radius:50px;display:block;position:relative;transition:all .3s ease-in-out}
.product-grid6 .social li a:hover{color:#fff;background-color:#2e86de;width:80px}
.product-grid6 .social li a:after,.product-grid6 .social li a:before{content:attr(data-tip);color:#fff;background-color:#2e86de;font-size:12px;letter-spacing:1px;line-height:20px;padding:1px 5px;border-radius:5px;white-space:nowrap;opacity:0;transform:translateX(-50%);position:absolute;left:50%;top:-30px}
.product-grid6 .social li a:after{content:'';height:15px;width:15px;border-radius:0;transform:translateX(-50%) rotate(45deg);top:-20px;z-index:-1}
.product-grid6 .social li a:hover:after,.product-grid6 .social li a:hover:before{opacity:1}
@media only screen and (max-width:990px){.product-grid6{margin-bottom:30px}
}
.checked {
color: orange !important;
} | layouts/css/grid_view_style.css | h3.h3{text-align:center;margin:1em;text-transform:capitalize;font-size:1.7em;}
.product-grid6,.product-grid6 .product-image6{overflow:hidden}
.product-grid6{font-family:'Open Sans',sans-serif;text-align:center;position:relative;transition:all .5s ease 0s}
.product-grid6:hover{box-shadow:0 0 0px rgba(0,0,0,.9)}
.product-grid6 .product-image6 a{display:block}
.product-grid6 .product-image6 img{width:100%;height:250px;transition:all .5s ease 0s}
.product-grid6:hover .product-image6 img{transform:scale(1.1)}
.product-grid6 .product-content{padding:12px 12px 15px;transition:all .5s ease 0s}
.product-grid6:hover .product-content{opacity:0}
.product-grid6 .title{font-size:20px;font-weight:600;text-transform:capitalize;margin:0 0 10px;transition:all .3s ease 0s}
.product-grid6 .title a{color:#000}
.product-grid6 .title a:hover{color:#2e86de}
.product-grid6 .price{font-size:18px;font-weight:600;color:#2e86de}
.product-grid6 .price span{color:#999;font-size:15px;font-weight:400;text-decoration:line-through;margin-left:7px;display:inline-block}
.product-grid6 .social{background-color:#fff;width:100%;padding:0px 0px 10px 0px;margin:0;list-style:none;opacity:0;transform:translateX(-50%);position:absolute;bottom:-50%;left:50%;z-index:1;transition:all .5s ease 0s}
.product-grid6:hover .social{opacity:1;bottom:20px}
.product-grid6 .social li{display:inline-block}
.product-grid6 .social li a{color:#909090;font-size:16px;line-height:45px;text-align:center;height:45px;width:45px;margin:0 7px;border:1px solid #909090;border-radius:50px;display:block;position:relative;transition:all .3s ease-in-out}
.product-grid6 .social li a:hover{color:#fff;background-color:#2e86de;width:80px}
.product-grid6 .social li a:after,.product-grid6 .social li a:before{content:attr(data-tip);color:#fff;background-color:#2e86de;font-size:12px;letter-spacing:1px;line-height:20px;padding:1px 5px;border-radius:5px;white-space:nowrap;opacity:0;transform:translateX(-50%);position:absolute;left:50%;top:-30px}
.product-grid6 .social li a:after{content:'';height:15px;width:15px;border-radius:0;transform:translateX(-50%) rotate(45deg);top:-20px;z-index:-1}
.product-grid6 .social li a:hover:after,.product-grid6 .social li a:hover:before{opacity:1}
@media only screen and (max-width:990px){.product-grid6{margin-bottom:30px}
}
.checked {
color: orange !important;
} | 0.389314 | 0.073032 |
.App {
width: 100%;
height: 100%;
font-family: Roboto;
}
section{
width: 100%;
background-color: #F6F6F6;
align-items: center
}
.section-three {
padding-left: 70px;
padding-right: 70px;
padding-bottom: 100px;
}
@media screen and (max-width: 375px) {
section {
width: 100%;
}
}
@media screen and (max-width: 375px) {
.small-button {
margin-left: 35px;
margin-top: -15px;
}
}
@media screen and (max-width: 375px) {
.row {
width: 100%;
}
}
@media screen and (max-width: 375px) {
.Hero-background {
width: 100%;
}
}
@media screen and (max-width: 375px) {
.title {
font-size: 40px !important;
}
}
@media screen and (max-width: 375px) {
.section-three {
padding-left: 0px;
padding-right: 0px;
padding-bottom: 30px;
}
}
.section-Four {
background-color: #FFAA00;
padding: 32px 25%;
}
@media screen and (max-width: 375px) {
#normal-button {
position: absolute;
color: #ffffff;
background-color: transparent;
border: 2px solid #ffffff;
border-radius: 0rem;
width: 166px !important;
font-size: 15px !important;
margin-left: 2px !important;
margin-top: -22px !important;
}
}
#normal-button {
margin-left: 495px;
color: #ffffff;
background-color: transparent;
border: 2px solid #ffffff;
border-radius: 0rem;
width: 181px;
}
#button {
color: #ffffff;
background-color: #FFAA00;
width: 160px;
height: 55px;
border: none;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 0rem;
}
.title {
font-size: 4em;
color: #ffffff;
font-family: Roboto;
}
.sub-title {
font-size: 32px;
color: #ffffff;
margin-bottom: 50px;
}
.about-us {
position: relative;
font-size: 2em;
margin-top: 3em;
padding-bottom: 10px;
text-align: center;
}
.about-cotact-us {
position: relative;
margin-top: 3em;
font-size: 2em;
color: #ffffff;
margin-bottom: 38px;
text-align: center;
}
.about-us:after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: 0;
width: 80px;
margin: 0 auto;
height: 3px;
background: #FFAA00;
}
.about-cotact-us:after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: 0;
width: 80px;
margin: 0 auto;
height: 3px;
background: #ffffff;
}
.about-us-img {
border-radius: 15vh;
width: 30vh;
height: 30vh;
}
.about-us-text {
margin-top: 20px;
color: #656C6D;
width: 81%;
}
.project-img {
padding: 10px;
width: 100%;
margin-left: 10px;
margin-bottom: 10px;
}
.Hero-background {
width: 100%;
height: 100%;
object-fit: cover;
min-height: 450px;
max-height: 550px;
}
.about-us-container {
width: 100%;
text-align: -webkit-center;
padding: 20px;
}
.image-over-button {
position: absolute;
}
.style-one {
display: flex;
height: 100%;
align-items: center;
}
.style-two {
flex: 0 100% 100%;
width: 100%;
}
.style-three {
width: 100%;
position: absolute;
top: 150px;
left: 60px;
}
.input-name{
height: 40px !important;
border-radius: 0px !important;
font-size: 13px;
}
.input-message{
height: 175px !important;
border-radius: 0px !important;
margin-top: 22px;
margin-bottom: 20px;
font-size: 13px;
}
@media screen and (max-width: 375px) {
.input-message{
height: 175px !important;
border-radius: 0px !important;
margin-top: 1px;
margin-bottom: 43px;
font-size: 13px;
}
}
@media screen and (max-width: 375px) {
.input-name {
margin-bottom: 15px;
}
}
@media screen and (max-width: 375px) {
.form-control {
width: 324px !important;
margin-left: -70px;
}
} | src/App.css | .App {
width: 100%;
height: 100%;
font-family: Roboto;
}
section{
width: 100%;
background-color: #F6F6F6;
align-items: center
}
.section-three {
padding-left: 70px;
padding-right: 70px;
padding-bottom: 100px;
}
@media screen and (max-width: 375px) {
section {
width: 100%;
}
}
@media screen and (max-width: 375px) {
.small-button {
margin-left: 35px;
margin-top: -15px;
}
}
@media screen and (max-width: 375px) {
.row {
width: 100%;
}
}
@media screen and (max-width: 375px) {
.Hero-background {
width: 100%;
}
}
@media screen and (max-width: 375px) {
.title {
font-size: 40px !important;
}
}
@media screen and (max-width: 375px) {
.section-three {
padding-left: 0px;
padding-right: 0px;
padding-bottom: 30px;
}
}
.section-Four {
background-color: #FFAA00;
padding: 32px 25%;
}
@media screen and (max-width: 375px) {
#normal-button {
position: absolute;
color: #ffffff;
background-color: transparent;
border: 2px solid #ffffff;
border-radius: 0rem;
width: 166px !important;
font-size: 15px !important;
margin-left: 2px !important;
margin-top: -22px !important;
}
}
#normal-button {
margin-left: 495px;
color: #ffffff;
background-color: transparent;
border: 2px solid #ffffff;
border-radius: 0rem;
width: 181px;
}
#button {
color: #ffffff;
background-color: #FFAA00;
width: 160px;
height: 55px;
border: none;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 0rem;
}
.title {
font-size: 4em;
color: #ffffff;
font-family: Roboto;
}
.sub-title {
font-size: 32px;
color: #ffffff;
margin-bottom: 50px;
}
.about-us {
position: relative;
font-size: 2em;
margin-top: 3em;
padding-bottom: 10px;
text-align: center;
}
.about-cotact-us {
position: relative;
margin-top: 3em;
font-size: 2em;
color: #ffffff;
margin-bottom: 38px;
text-align: center;
}
.about-us:after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: 0;
width: 80px;
margin: 0 auto;
height: 3px;
background: #FFAA00;
}
.about-cotact-us:after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: 0;
width: 80px;
margin: 0 auto;
height: 3px;
background: #ffffff;
}
.about-us-img {
border-radius: 15vh;
width: 30vh;
height: 30vh;
}
.about-us-text {
margin-top: 20px;
color: #656C6D;
width: 81%;
}
.project-img {
padding: 10px;
width: 100%;
margin-left: 10px;
margin-bottom: 10px;
}
.Hero-background {
width: 100%;
height: 100%;
object-fit: cover;
min-height: 450px;
max-height: 550px;
}
.about-us-container {
width: 100%;
text-align: -webkit-center;
padding: 20px;
}
.image-over-button {
position: absolute;
}
.style-one {
display: flex;
height: 100%;
align-items: center;
}
.style-two {
flex: 0 100% 100%;
width: 100%;
}
.style-three {
width: 100%;
position: absolute;
top: 150px;
left: 60px;
}
.input-name{
height: 40px !important;
border-radius: 0px !important;
font-size: 13px;
}
.input-message{
height: 175px !important;
border-radius: 0px !important;
margin-top: 22px;
margin-bottom: 20px;
font-size: 13px;
}
@media screen and (max-width: 375px) {
.input-message{
height: 175px !important;
border-radius: 0px !important;
margin-top: 1px;
margin-bottom: 43px;
font-size: 13px;
}
}
@media screen and (max-width: 375px) {
.input-name {
margin-bottom: 15px;
}
}
@media screen and (max-width: 375px) {
.form-control {
width: 324px !important;
margin-left: -70px;
}
} | 0.395718 | 0.100569 |
*, body, html {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
}
/* --------------------------------------------------Navbar-------------------------------------------------- */
nav {
background-color: #e9c46a;
left: 0;
width: 100%;
display: block;
position: fixed;
top: 0;
}
nav ul li {
padding-right: 15px;
}
nav ul a {
font-weight: bold;
color: #264653;
}
nav ul a:hover {
color: #e76f51;
transition: 0.3s ease-in-out;
}
/* --------------------------------------------------Hamburger toggler-------------------------------------------------- */
.fa-1x {
font-size: 1.5rem;
}
.navbar-toggler .custom-toggler {
cursor: pointer;
}
.custom-toggler-color {
color: #264653;
}
/* --------------------------------------------------Carousel-------------------------------------------------- */
.carousel-item img {
filter: brightness(50%);
}
.carousel-caption {
top: 50%;
transform: translateY(-22.5%);
bottom: initial;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.carousel-caption hr {
border: 0.1px solid #ccc;
}
.carousel-caption h3 {
font-weight: bold;
}
.carousel-caption span {
color: #f4a261;
}
/* -------------------------------------------------Main-------------------------------------------------- */
.main {
margin: 80px;
}
.feature-list {
max-width: 58em;
margin-left: auto;
margin-right: auto;
position: relative;
top: 0.75em;
}
.wrapper .title {
position: absolute;
top: 0;
left: 50%;
text-align: center;
text-transform: uppercase;
display: block;
font-weight: 700;
letter-spacing: 0.25em;
font-size: 0.9em;
width: 25em;
height: 3.25em;
top: -3.25em;
line-height: 3.25em;
margin-bottom: -3.25em;
margin-left: -12.5em;
padding-top: 0.5em;
}
/* -------------------------------------------------Membership-------------------------------------------------- */
#join-member {
color: #264653;
}
#join-member img {
height: 500px;
margin: 50px 0;
}
#join-member h3 {
text-align: center;
font-weight: bold;
margin-bottom: 15px;
}
#join-member span {
color: #f4a261;
}
#join-member .btn {
background-color: #264653;
color: #e9c46a;
margin-bottom: 50px;
}
#join-member a:hover {
background-color: #e76f51;
transition: 0.3s ease-in-out;
}
/* -------------------------------------------------Footer-------------------------------------------------- */
footer {
background-color: #264653;
color: #e9c46a;
padding: 100px 0 20px 0;
}
footer a {
color: #f4a261;
}
#footer-icon {
padding-right: 5%;
}
#footer-icon a {
color: #e9c46a;
}
#footer-icon p {
font-size: 13px;
font-weight: bold;
}
footer a:hover, #footer-icon a:hover {
text-decoration: none;
color: #e76f51;
transition: 0.3s ease-in-out;
}
#slider {
position: relative;
top: 80px;
}
/* --------------------------------------------------Media queries-------------------------------------------------- */
/* Extra small devices (phones, 600px and down) *
@media only screen and (max-width: 600px) {
.carousel-caption {
top: 25%;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.carousel-caption {
top: 37.5%;
}
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.carousel-caption {
top: 45%;
}
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
.carousel-caption {
top: 52.5%;
}
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
} | HKMSA temp/css/style.css | *, body, html {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
}
/* --------------------------------------------------Navbar-------------------------------------------------- */
nav {
background-color: #e9c46a;
left: 0;
width: 100%;
display: block;
position: fixed;
top: 0;
}
nav ul li {
padding-right: 15px;
}
nav ul a {
font-weight: bold;
color: #264653;
}
nav ul a:hover {
color: #e76f51;
transition: 0.3s ease-in-out;
}
/* --------------------------------------------------Hamburger toggler-------------------------------------------------- */
.fa-1x {
font-size: 1.5rem;
}
.navbar-toggler .custom-toggler {
cursor: pointer;
}
.custom-toggler-color {
color: #264653;
}
/* --------------------------------------------------Carousel-------------------------------------------------- */
.carousel-item img {
filter: brightness(50%);
}
.carousel-caption {
top: 50%;
transform: translateY(-22.5%);
bottom: initial;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.carousel-caption hr {
border: 0.1px solid #ccc;
}
.carousel-caption h3 {
font-weight: bold;
}
.carousel-caption span {
color: #f4a261;
}
/* -------------------------------------------------Main-------------------------------------------------- */
.main {
margin: 80px;
}
.feature-list {
max-width: 58em;
margin-left: auto;
margin-right: auto;
position: relative;
top: 0.75em;
}
.wrapper .title {
position: absolute;
top: 0;
left: 50%;
text-align: center;
text-transform: uppercase;
display: block;
font-weight: 700;
letter-spacing: 0.25em;
font-size: 0.9em;
width: 25em;
height: 3.25em;
top: -3.25em;
line-height: 3.25em;
margin-bottom: -3.25em;
margin-left: -12.5em;
padding-top: 0.5em;
}
/* -------------------------------------------------Membership-------------------------------------------------- */
#join-member {
color: #264653;
}
#join-member img {
height: 500px;
margin: 50px 0;
}
#join-member h3 {
text-align: center;
font-weight: bold;
margin-bottom: 15px;
}
#join-member span {
color: #f4a261;
}
#join-member .btn {
background-color: #264653;
color: #e9c46a;
margin-bottom: 50px;
}
#join-member a:hover {
background-color: #e76f51;
transition: 0.3s ease-in-out;
}
/* -------------------------------------------------Footer-------------------------------------------------- */
footer {
background-color: #264653;
color: #e9c46a;
padding: 100px 0 20px 0;
}
footer a {
color: #f4a261;
}
#footer-icon {
padding-right: 5%;
}
#footer-icon a {
color: #e9c46a;
}
#footer-icon p {
font-size: 13px;
font-weight: bold;
}
footer a:hover, #footer-icon a:hover {
text-decoration: none;
color: #e76f51;
transition: 0.3s ease-in-out;
}
#slider {
position: relative;
top: 80px;
}
/* --------------------------------------------------Media queries-------------------------------------------------- */
/* Extra small devices (phones, 600px and down) *
@media only screen and (max-width: 600px) {
.carousel-caption {
top: 25%;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.carousel-caption {
top: 37.5%;
}
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.carousel-caption {
top: 45%;
}
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
.carousel-caption {
top: 52.5%;
}
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
} | 0.402157 | 0.074399 |
*{margin:0;padding:0}
body{min-width:1200px;margin:0 auto;font-size:14px;font-family:"Microsoft Yahei";background:#fff;text-align:left;color:#555}
h1,h2,h3{font-weight:500}
img{border:none}
a{cursor:pointer;color:#555;text-decoration:none;outline:0}
a:hover{color:#b41f22}
ul{list-style-type:none}
em{font-style:normal}
.lt{float:left}
.rt{float:right}
input.sub,label{border:none;cursor:pointer}
input,textarea{font-family:"Microsoft Yahei";outline:0}
table{border-collapse:collapse}
table td,table th{padding:0}
div.clear{font:0 Arial;line-height:0;height:0;overflow:hidden;clear:both}
.line5{font-size:1px;height:5px;width:100%;clear:both}
.line10{font-size:1px;height:10px;width:100%;clear:both}
.line20{font-size:1px;height:20px;width:100%;clear:both}
.wrapin{width:1200px;margin-left:auto;margin-right:auto}
.lh_banner{width:100%;height:500px;background:url(https://statics.05273.cn/zhuanti/2018lianghui/images/lh_banner.jpg) no-repeat top center;border-bottom:5px solid #a91f25}
.lh_tt{height:117px;border-bottom:1px solid #d2d2d2;position:relative}
.lh_tt .ico{float:left;display:block;width:87px;height:117px}
.lh_tt dl{width:1113px;float:right;padding-top:35px}
.lh_tt dt{height:46px;line-height:46px;text-align:center;font-size:34px;font-weight:700}
.lh_tt .nm1{color:#b41f22;display:inline-block;max-width:1000px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.lh_tt dd{height:26px;line-height:26px;font-size:13px;color:#999;text-align:center}
.lh_tt .xq_a{color:#b41f22}
.lh_tt .more_a{display:inline-block;height:24px;font-size:14px;line-height:24px;background:#fff;position:absolute;right:0;bottom:-12px;padding-left:3px}
.hm_banner{width:550px;height:408px;float:left;position:relative;overflow:hidden;cursor:pointer;margin-top:20px}
.hm_banner .pics li{width:550px;height:408px}
.hm_banner .pics img{display:block;width:550px;height:408px}
.hm_banner .nm{height:40px;line-height:40px;width:100%;position:absolute;left:0;bottom:0;z-index:60;background:url(https://statics.05273.cn/zhuanti/2018lianghui/images/bbg50.png);position:absolute}
.hm_banner .nm2{display:inline-block;padding-left:10px;color:#fff;max-width:420px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px}
.hm_banner .btns{height:16px;line-height:16px;font-size:1px;position:absolute;right:20px;bottom:12px;z-index:70}
.hm_banner .btns span{display:inline-block;width:16px;height:16px;background:#7d7d7d;text-align:center;color:#fff;margin-left:10px;font-size:12px}
.hm_banner .btns .hover{background:#dd1d15}
.hmt_news{width:622px;float:right;padding-top:10px;height:448px}
.hmt_news li{height:33px;line-height:33px;clear:both;vertical-align:top}
.hmt_news li a{float:left;max-width:520px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-left:13px;background:url(https://statics.05273.cn/zhuanti/2018lianghui/images/li_btn.png) no-repeat left center}
.hmt_news li a:hover{background-image:url(https://statics.05273.cn/zhuanti/2018lianghui/images/li_btnh.png)}
.hmt_news li span{color:#999;float:right}
.hmt_list{width:100%;float:right;padding-top:10px;height:448px}
.hmt_list li{height:33px;line-height:33px;clear:both;vertical-align:top}
.hmt_list li a{float:left;max-width:520px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-left:13px;background:url(https://statics.05273.cn/zhuanti/2018lianghui/images/li_btn.png) no-repeat left center}
.hmt_list li a:hover{background-image:url(https://statics.05273.cn/zhuanti/2018lianghui/images/li_btnh.png)}
.hmt_list li span{color:#999;float:right}
.hm_ts{width:1200px;position:relative;overflow:hidden;padding-bottom:27px}
.hm_title{height:53px;position:relative}
.hm_title img{display:block;width:1200px;height:53px}
.hm_title .more{display:inline-block;height:53px;line-height:53px;padding:0 5px;background:#fff;position:absolute;right:0;top:0}
.hm_ts .s_list{width:1212px}
.hm_ts .item{display:block;float:left;margin:12px 12px 0 0;position:relative}
.hm_ts .nm{height:30px;line-height:30px;width:100%;position:absolute;left:0;bottom:0;z-index:20;text-align:center;background:url(https://statics.05273.cn/zhuanti/2018lianghui/images/bbg50.png);color:#fff}
.hm_ts .nm span{display:inline-block;max-width:90%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.hm_ts .ct{width:606px;float:left}
.hm_ts .item1{width:291px;height:460px}
.hm_ts .item1 img{display:block;width:291px;height:460px}
.hm_ts .item2{width:291px;height:224px}
.hm_ts .item2 img{display:block;width:291px;height:224px}
.hm_ts .item3{width:594px;height:224px}
.hm_ts .item3 img{display:block;width:594px;height:224px}
.hm_hx{padding-bottom:30px;position:relative;overflow:hidden;width:1200px}
.hm_hx .s_list{width:1250px}
.hx_item{width:378px;float:left;margin-right:33px;margin-top:15px}
.hx_item .photo{display:block;width:378px;height:230px;margin:5px 0;position:relative}
.hx_item .photo img{display:block;width:378px;height:230px}
.hx_item .nm{height:30px;line-height:30px;width:100%;background:url(https://statics.05273.cn/zhuanti/2018lianghui/images/bbg50.png);position:absolute;left:0;bottom:0;text-align:center;color:#fff}
.hx_item .nm span{display:inline-block;max-width:350px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.hx_item .inf{line-height:30px;text-indent:1em}
.hm_mes{padding-bottom:30px}
.hm_plat{padding-bottom:30px}
.hmplat_wp{margin:37px auto 0 auto;width:756px}
.hmplat_wp dl{width:115px;float:left;margin:0 37px;text-align:center}
.hmplat_wp dd{height:46px;line-height:46px}
.hmplat_wp img{display:block;width:115px;height:115px}
.footer{text-align:center;line-height:30px;padding:18px 0 62px 0;border-top:2px solid #a91f25}
.fl_bar{width:110px;height:140px;background:#fff;position:fixed;right:0;top:50%;z-index:200;margin-top:-70px;border-radius:5px 0 0 5px}
.fl_bar img{display:block;width:100px;height:100px;margin:5px}
.fl_bar dt{height:110px}
.fl_bar dd{line-height:16px;text-align:center}
#pages{padding:14px 0 10px;font-family:"Microsoft Yahei"}
#pages a{display:inline-block;height:22px;line-height:22px;background:#F3F3F3;border:1px solid #e3e3e3;text-align:center;color:#333;padding:0 10px}
#pages a.a1{width:56px;padding:0}
#pages a:hover{background:#f1f1f1;color:#000;text-decoration:none}
#pages span{display:inline-block;height:22px;line-height:22px;background:#5a85b2;border:1px solid #5a85b2;color:#fff;text-align:center;padding:0 10px}
.page .noPage{display:inline-block;width:56px;height:22px;line-height:22px;border:1px solid #e3e3e3;text-align:center;color:#a4a4a4} | zhikunet/statics/zhuanti/2018lianghui/css/css.css | *{margin:0;padding:0}
body{min-width:1200px;margin:0 auto;font-size:14px;font-family:"Microsoft Yahei";background:#fff;text-align:left;color:#555}
h1,h2,h3{font-weight:500}
img{border:none}
a{cursor:pointer;color:#555;text-decoration:none;outline:0}
a:hover{color:#b41f22}
ul{list-style-type:none}
em{font-style:normal}
.lt{float:left}
.rt{float:right}
input.sub,label{border:none;cursor:pointer}
input,textarea{font-family:"Microsoft Yahei";outline:0}
table{border-collapse:collapse}
table td,table th{padding:0}
div.clear{font:0 Arial;line-height:0;height:0;overflow:hidden;clear:both}
.line5{font-size:1px;height:5px;width:100%;clear:both}
.line10{font-size:1px;height:10px;width:100%;clear:both}
.line20{font-size:1px;height:20px;width:100%;clear:both}
.wrapin{width:1200px;margin-left:auto;margin-right:auto}
.lh_banner{width:100%;height:500px;background:url(https://statics.05273.cn/zhuanti/2018lianghui/images/lh_banner.jpg) no-repeat top center;border-bottom:5px solid #a91f25}
.lh_tt{height:117px;border-bottom:1px solid #d2d2d2;position:relative}
.lh_tt .ico{float:left;display:block;width:87px;height:117px}
.lh_tt dl{width:1113px;float:right;padding-top:35px}
.lh_tt dt{height:46px;line-height:46px;text-align:center;font-size:34px;font-weight:700}
.lh_tt .nm1{color:#b41f22;display:inline-block;max-width:1000px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.lh_tt dd{height:26px;line-height:26px;font-size:13px;color:#999;text-align:center}
.lh_tt .xq_a{color:#b41f22}
.lh_tt .more_a{display:inline-block;height:24px;font-size:14px;line-height:24px;background:#fff;position:absolute;right:0;bottom:-12px;padding-left:3px}
.hm_banner{width:550px;height:408px;float:left;position:relative;overflow:hidden;cursor:pointer;margin-top:20px}
.hm_banner .pics li{width:550px;height:408px}
.hm_banner .pics img{display:block;width:550px;height:408px}
.hm_banner .nm{height:40px;line-height:40px;width:100%;position:absolute;left:0;bottom:0;z-index:60;background:url(https://statics.05273.cn/zhuanti/2018lianghui/images/bbg50.png);position:absolute}
.hm_banner .nm2{display:inline-block;padding-left:10px;color:#fff;max-width:420px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px}
.hm_banner .btns{height:16px;line-height:16px;font-size:1px;position:absolute;right:20px;bottom:12px;z-index:70}
.hm_banner .btns span{display:inline-block;width:16px;height:16px;background:#7d7d7d;text-align:center;color:#fff;margin-left:10px;font-size:12px}
.hm_banner .btns .hover{background:#dd1d15}
.hmt_news{width:622px;float:right;padding-top:10px;height:448px}
.hmt_news li{height:33px;line-height:33px;clear:both;vertical-align:top}
.hmt_news li a{float:left;max-width:520px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-left:13px;background:url(https://statics.05273.cn/zhuanti/2018lianghui/images/li_btn.png) no-repeat left center}
.hmt_news li a:hover{background-image:url(https://statics.05273.cn/zhuanti/2018lianghui/images/li_btnh.png)}
.hmt_news li span{color:#999;float:right}
.hmt_list{width:100%;float:right;padding-top:10px;height:448px}
.hmt_list li{height:33px;line-height:33px;clear:both;vertical-align:top}
.hmt_list li a{float:left;max-width:520px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-left:13px;background:url(https://statics.05273.cn/zhuanti/2018lianghui/images/li_btn.png) no-repeat left center}
.hmt_list li a:hover{background-image:url(https://statics.05273.cn/zhuanti/2018lianghui/images/li_btnh.png)}
.hmt_list li span{color:#999;float:right}
.hm_ts{width:1200px;position:relative;overflow:hidden;padding-bottom:27px}
.hm_title{height:53px;position:relative}
.hm_title img{display:block;width:1200px;height:53px}
.hm_title .more{display:inline-block;height:53px;line-height:53px;padding:0 5px;background:#fff;position:absolute;right:0;top:0}
.hm_ts .s_list{width:1212px}
.hm_ts .item{display:block;float:left;margin:12px 12px 0 0;position:relative}
.hm_ts .nm{height:30px;line-height:30px;width:100%;position:absolute;left:0;bottom:0;z-index:20;text-align:center;background:url(https://statics.05273.cn/zhuanti/2018lianghui/images/bbg50.png);color:#fff}
.hm_ts .nm span{display:inline-block;max-width:90%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.hm_ts .ct{width:606px;float:left}
.hm_ts .item1{width:291px;height:460px}
.hm_ts .item1 img{display:block;width:291px;height:460px}
.hm_ts .item2{width:291px;height:224px}
.hm_ts .item2 img{display:block;width:291px;height:224px}
.hm_ts .item3{width:594px;height:224px}
.hm_ts .item3 img{display:block;width:594px;height:224px}
.hm_hx{padding-bottom:30px;position:relative;overflow:hidden;width:1200px}
.hm_hx .s_list{width:1250px}
.hx_item{width:378px;float:left;margin-right:33px;margin-top:15px}
.hx_item .photo{display:block;width:378px;height:230px;margin:5px 0;position:relative}
.hx_item .photo img{display:block;width:378px;height:230px}
.hx_item .nm{height:30px;line-height:30px;width:100%;background:url(https://statics.05273.cn/zhuanti/2018lianghui/images/bbg50.png);position:absolute;left:0;bottom:0;text-align:center;color:#fff}
.hx_item .nm span{display:inline-block;max-width:350px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.hx_item .inf{line-height:30px;text-indent:1em}
.hm_mes{padding-bottom:30px}
.hm_plat{padding-bottom:30px}
.hmplat_wp{margin:37px auto 0 auto;width:756px}
.hmplat_wp dl{width:115px;float:left;margin:0 37px;text-align:center}
.hmplat_wp dd{height:46px;line-height:46px}
.hmplat_wp img{display:block;width:115px;height:115px}
.footer{text-align:center;line-height:30px;padding:18px 0 62px 0;border-top:2px solid #a91f25}
.fl_bar{width:110px;height:140px;background:#fff;position:fixed;right:0;top:50%;z-index:200;margin-top:-70px;border-radius:5px 0 0 5px}
.fl_bar img{display:block;width:100px;height:100px;margin:5px}
.fl_bar dt{height:110px}
.fl_bar dd{line-height:16px;text-align:center}
#pages{padding:14px 0 10px;font-family:"Microsoft Yahei"}
#pages a{display:inline-block;height:22px;line-height:22px;background:#F3F3F3;border:1px solid #e3e3e3;text-align:center;color:#333;padding:0 10px}
#pages a.a1{width:56px;padding:0}
#pages a:hover{background:#f1f1f1;color:#000;text-decoration:none}
#pages span{display:inline-block;height:22px;line-height:22px;background:#5a85b2;border:1px solid #5a85b2;color:#fff;text-align:center;padding:0 10px}
.page .noPage{display:inline-block;width:56px;height:22px;line-height:22px;border:1px solid #e3e3e3;text-align:center;color:#a4a4a4} | 0.451085 | 0.095013 |