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
|
---|---|---|---|---|
.model_section_container {
margin-top: 150px;
}
.grid {
display: grid;
/* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 20px;
justify-items: center;
align-items: stretch;
margin-top: 60px;
margin-left: 7%;
}
.grid > article {
border: 1px solid #ccc;
box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.3);
border-radius: 16px;
height: 200px;
width: 200px;
}
p {
line-height: 200px;
}
/* .grid > article:hover {
background-color: #1fc8db;
background-image: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
color: #fff !important;
}
.grid > article p:hover {
color: #fff !important;
} */
.red_button span {
display: block;
color: #FFFFFF;
text-transform: uppercase;
font-size: 14px;
font-weight: 500;
text-align: center;
line-height: 40px;
width: 100%;
cursor: pointer;
}
.total-a {
width: 100%;
height: 100%;
display: block;
cursor: pointer !important;
}
.text {
/* padding: 0 20px 20px; */
text-align: center;
}
.place-order-button {
/*width: 360px;*/
margin: 0 auto;
text-align: center;
}
.shop_now_button {
width: 300px;
margin: 0 auto;
margin-top: 32px;
background-color: #3F5394;
}
.payment-method-details-box {
margin-top: 50px;
}
.payment-method-details-box p {
line-height: 30px;
margin-bottom: 0px;
}
.payment-method-details-box h3 {
margin-bottom: 22px;
}
.cash-on-delivery-img {
width: 200px;
margin: 0 auto;
}
.cash-on-delivery-img img {
width: 100%;
display: block;
}
.image-upload-bank-transfer-div {
margin-top: 60px;
}
.image-upload-bank-transfer-div h3{
margin-bottom: 30px;
}
/**********************
Input type file image
**********************/
.close-image-box {
background: none;
border: 0;
box-sizing: border-box;
color: transparent;
cursor: pointer;
line-height: 40px;
outline: none;
overflow: hidden;
padding: 0;
position: relative;
text-transform: uppercase;
transition: all 0.2s ease-in;
width: 60px;
position: absolute;
top: 15px;
left: 90%;
}
.close-image-box::before,
.close-image-box::after {
background-color: red;
content: '';
display: block;
height: 1px;
left: 0;
position: absolute;
transform-origin: center left;
transition: all 0.2s ease-in;
width: 100px;
z-index: -1;
}
.close-image-box::before {
top: 0;
transform: rotate(45deg);
}
.close-image-box::after {
bottom: 0;
transform: rotate(-45deg);
}
.close-image-box:hover {
color: #fff;
}
.close-image-box:hover::before,
.close-image-box:hover::after {
height: 30px;
transform: rotate(0deg);
}
.file-input {
display: inline-block;
text-align: left;
/* background: #fff; */
box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.3);
border-radius: 16px;
padding: 16px;
width: 450px;
position: relative;
border-radius: 3px;
}
.file-input > [type='file'] {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
z-index: 10;
cursor: pointer;
}
.file-input > .button {
display: inline-block;
cursor: pointer;
background: #0BBEEB;
padding: 8px 16px;
border-radius: 2px;
margin-right: 8px;
box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.3);
}
.file-input:hover > .button {
background: dodgerblue;
color: white;
}
.file-input > .label {
color: #333;
white-space: nowrap;
opacity: .3;
}
.file-input.-chosen > .label {
opacity: 1;
}
/* Responsive CSS */
@media (min-width: 320px) and (max-width: 480px) {
.model_section_container {
margin-top: 70px;
}
.grid {
grid-template-columns: 1fr ;
}
.file-input {
width: 200px;
text-align: center;
float: left;
margin-left: 20px;
}
.close-image-box {
top: 31px;
left: 75%;
}
.grid > article {
margin-right: 10%;
border: 1px solid #ccc;
box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.3);
border-radius: 16px;
height: 200px;
width: 100%;
}
.shop_now_button {
width: 192px;
margin: 0 auto;
margin-top: 32px;
background-color: #3F5394;
text-align: center;
}
}
@media (min-width: 481px) and (max-width: 767px) {
.model_section_container {
margin-top: 100px;
}
.grid {
grid-template-columns: 1fr ;
}
.grid > article {
margin-right: 10%;
border-radius: 16px;
height: 200px;
width: 100%;
}
.file-input {
width: 200px;
text-align: center;
float: left;
margin-left: 10px;
}
.close-image-box {
top: 31px;
left: 73%;
}
.place-order-button {
border-radius: 8px;
padding: 15px 25px;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
.model_section_container {
margin-top: 100px;
}
.grid {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
} | public/front-end-assets/custom-css/payment-method.css | .model_section_container {
margin-top: 150px;
}
.grid {
display: grid;
/* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 20px;
justify-items: center;
align-items: stretch;
margin-top: 60px;
margin-left: 7%;
}
.grid > article {
border: 1px solid #ccc;
box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.3);
border-radius: 16px;
height: 200px;
width: 200px;
}
p {
line-height: 200px;
}
/* .grid > article:hover {
background-color: #1fc8db;
background-image: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
color: #fff !important;
}
.grid > article p:hover {
color: #fff !important;
} */
.red_button span {
display: block;
color: #FFFFFF;
text-transform: uppercase;
font-size: 14px;
font-weight: 500;
text-align: center;
line-height: 40px;
width: 100%;
cursor: pointer;
}
.total-a {
width: 100%;
height: 100%;
display: block;
cursor: pointer !important;
}
.text {
/* padding: 0 20px 20px; */
text-align: center;
}
.place-order-button {
/*width: 360px;*/
margin: 0 auto;
text-align: center;
}
.shop_now_button {
width: 300px;
margin: 0 auto;
margin-top: 32px;
background-color: #3F5394;
}
.payment-method-details-box {
margin-top: 50px;
}
.payment-method-details-box p {
line-height: 30px;
margin-bottom: 0px;
}
.payment-method-details-box h3 {
margin-bottom: 22px;
}
.cash-on-delivery-img {
width: 200px;
margin: 0 auto;
}
.cash-on-delivery-img img {
width: 100%;
display: block;
}
.image-upload-bank-transfer-div {
margin-top: 60px;
}
.image-upload-bank-transfer-div h3{
margin-bottom: 30px;
}
/**********************
Input type file image
**********************/
.close-image-box {
background: none;
border: 0;
box-sizing: border-box;
color: transparent;
cursor: pointer;
line-height: 40px;
outline: none;
overflow: hidden;
padding: 0;
position: relative;
text-transform: uppercase;
transition: all 0.2s ease-in;
width: 60px;
position: absolute;
top: 15px;
left: 90%;
}
.close-image-box::before,
.close-image-box::after {
background-color: red;
content: '';
display: block;
height: 1px;
left: 0;
position: absolute;
transform-origin: center left;
transition: all 0.2s ease-in;
width: 100px;
z-index: -1;
}
.close-image-box::before {
top: 0;
transform: rotate(45deg);
}
.close-image-box::after {
bottom: 0;
transform: rotate(-45deg);
}
.close-image-box:hover {
color: #fff;
}
.close-image-box:hover::before,
.close-image-box:hover::after {
height: 30px;
transform: rotate(0deg);
}
.file-input {
display: inline-block;
text-align: left;
/* background: #fff; */
box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.3);
border-radius: 16px;
padding: 16px;
width: 450px;
position: relative;
border-radius: 3px;
}
.file-input > [type='file'] {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
z-index: 10;
cursor: pointer;
}
.file-input > .button {
display: inline-block;
cursor: pointer;
background: #0BBEEB;
padding: 8px 16px;
border-radius: 2px;
margin-right: 8px;
box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.3);
}
.file-input:hover > .button {
background: dodgerblue;
color: white;
}
.file-input > .label {
color: #333;
white-space: nowrap;
opacity: .3;
}
.file-input.-chosen > .label {
opacity: 1;
}
/* Responsive CSS */
@media (min-width: 320px) and (max-width: 480px) {
.model_section_container {
margin-top: 70px;
}
.grid {
grid-template-columns: 1fr ;
}
.file-input {
width: 200px;
text-align: center;
float: left;
margin-left: 20px;
}
.close-image-box {
top: 31px;
left: 75%;
}
.grid > article {
margin-right: 10%;
border: 1px solid #ccc;
box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.3);
border-radius: 16px;
height: 200px;
width: 100%;
}
.shop_now_button {
width: 192px;
margin: 0 auto;
margin-top: 32px;
background-color: #3F5394;
text-align: center;
}
}
@media (min-width: 481px) and (max-width: 767px) {
.model_section_container {
margin-top: 100px;
}
.grid {
grid-template-columns: 1fr ;
}
.grid > article {
margin-right: 10%;
border-radius: 16px;
height: 200px;
width: 100%;
}
.file-input {
width: 200px;
text-align: center;
float: left;
margin-left: 10px;
}
.close-image-box {
top: 31px;
left: 73%;
}
.place-order-button {
border-radius: 8px;
padding: 15px 25px;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
.model_section_container {
margin-top: 100px;
}
.grid {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
} | 0.395134 | 0.111145 |
.content-2-9 {
background: #ccc;
min-height: 260px;
position: relative;
}
.content-2-9 .project {
height: 260px;
overflow: hidden;
position: relative;
padding: 0;
}
.content-2-9 .project img {
width: 100%;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translateY(-50%) translateX(-50%);
-moz-transform: translateY(-50%) translateX(-50%);
-ms-transform: translateY(-50%) translateX(-50%);
}
.content-2-9 .project .background-image-holder {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-size: cover !important;
z-index: 0;
background-position: 50% 50% !important;
-webkit-background-position: 50% 50% !important;
-moz-background-position: 50% 50% !important;
-ms-background-position: 50% 50% !important;
}
.content-2-9 .project .hover-state {
position: absolute;
width: 100%;
height: 100%;
top: 0px;
background-color: rgba(44, 62, 80, 0.6);
text-align: center;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
transition: all .5s ease;
opacity: 0;
padding: 0 25px;
}
.content-2-9 .project:hover .hover-state {
opacity: 1;
}
.content-2-9 .project .hover-state h3 {
color: #fff;
margin-top: 40px;
margin-bottom: 8px;
}
.content-2-9 .project .hover-state p {
color: #fff;
}
.content-2-9 .project .hover-state .align-vertical {
-webkit-transform: translate3d(0, 20px, 0);
-moz-transform: translate3d(0, 20px, 0);
-ms-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-ms-transition: all .5s ease;
transition: all .5s ease;
opacity: 0;
}
.content-2-9 .project:hover .align-vertical {
-webkit-transform: translate3d(0, 0px, 0);
-moz-transform: translate3d(0, 0px, 0);
transform: translate3d(0, 0px, 0);
opacity: 1;
}
/* CONTENT BLOCK 2-9 MEDIA QUERIES
/*----------------------------------------------------*/
/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
.content-2-9 {
min-height: 520px;
}
}
/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
.content-2-9 {
min-height: 260px;
}
}
/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
} | bskit-builder/elements/css/content2-9.css | .content-2-9 {
background: #ccc;
min-height: 260px;
position: relative;
}
.content-2-9 .project {
height: 260px;
overflow: hidden;
position: relative;
padding: 0;
}
.content-2-9 .project img {
width: 100%;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translateY(-50%) translateX(-50%);
-moz-transform: translateY(-50%) translateX(-50%);
-ms-transform: translateY(-50%) translateX(-50%);
}
.content-2-9 .project .background-image-holder {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-size: cover !important;
z-index: 0;
background-position: 50% 50% !important;
-webkit-background-position: 50% 50% !important;
-moz-background-position: 50% 50% !important;
-ms-background-position: 50% 50% !important;
}
.content-2-9 .project .hover-state {
position: absolute;
width: 100%;
height: 100%;
top: 0px;
background-color: rgba(44, 62, 80, 0.6);
text-align: center;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
transition: all .5s ease;
opacity: 0;
padding: 0 25px;
}
.content-2-9 .project:hover .hover-state {
opacity: 1;
}
.content-2-9 .project .hover-state h3 {
color: #fff;
margin-top: 40px;
margin-bottom: 8px;
}
.content-2-9 .project .hover-state p {
color: #fff;
}
.content-2-9 .project .hover-state .align-vertical {
-webkit-transform: translate3d(0, 20px, 0);
-moz-transform: translate3d(0, 20px, 0);
-ms-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-ms-transition: all .5s ease;
transition: all .5s ease;
opacity: 0;
}
.content-2-9 .project:hover .align-vertical {
-webkit-transform: translate3d(0, 0px, 0);
-moz-transform: translate3d(0, 0px, 0);
transform: translate3d(0, 0px, 0);
opacity: 1;
}
/* CONTENT BLOCK 2-9 MEDIA QUERIES
/*----------------------------------------------------*/
/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
.content-2-9 {
min-height: 520px;
}
}
/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
.content-2-9 {
min-height: 260px;
}
}
/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
} | 0.239705 | 0.057599 |
@charset "utf-8";
/* CSS Document */
/* 提供给Home、rename的CSS */
*{margin:0px; padding:0px; border:none;}
.q{height:1060px; width:1200px;margin:0px auto 0px auto;}
/*顶部*/
.q .q-top{height:30px; width:1200px; background:#ffffff; text-align:center; line-height:30px;font-size:16px;color:#BB9646; }
/*左边*/
.q .q-left{height:1000px; width:350px; background:#A5B2FF; float:left;}
.q .q-left .q-left-1{height:325px; width:150px;padding:175px 100px 0px 100px;background:#A3CF98;}
.q .q-left .q-left-1 .q-left-11{height:170px; width:150px;}
.q .q-left .q-left-1 .q-left-12{height:44px; width:150px; text-align:center; line-height:44px;font-size:24px;color:#ffffff;}
.q .q-left .q-left-1 .q-left-13{height:111px; width:150px; font-size:16px;color:#F8F4D6;}
.q .q-left .q-left-2{height:460px; width:350px;background:#725D5D;padding:40px 120px 0px 120px;}
.q .q-left .q-left-2 ul li{height:40px; width:110px; list-style:none; text-align:center; line-height:40px; font-size:20px; margin-bottom:40px;}
.q .q-left .q-left-2 ul li a{display:block; height:40px; width:110px; text-decoration:none; color:#ffffff;}
.q .q-left .q-left-2 ul li a:hover{background:url(images/bg.png); color:#FFE011;}
.q .q-left .q-left-2 ul .m{background:url(images/bg.png);}
/*右边*/
.q .q-right{height:980px; width:700px; background:#E8FDC4; float:left;padding:20px 75px 0px 75px;}
/*右边模块一*/
.q .q-right .q-right-1{height:140px; width:680px; background:#C1D79B;font-size:24px; margin-bottom:10px;padding:20px 0px 0px 20px;}
.q .q-right .q-right-1 .q-right-11{text-decoration:none; color:#ffffff;}
.q .q-right .q-right-1 .q-right-12{height:90px; width:680px; color:#ffffff;font-size:16px;padding-top:10px;}
/*右边模块二*/
.q .q-right .q-right-2{height:140px; width:680px; background:#C1D79B;font-size:24px; margin-bottom:10px;padding:20px 0px 0px 20px;}
.q .q-right .q-right-2 .q-right-21{text-decoration:none; color:#ffffff;}
.q .q-right .q-right-2 .q-right-22{height:90px; width:680px; color:#ffffff;font-size:16px;padding-top:10px;} | index.css | @charset "utf-8";
/* CSS Document */
/* 提供给Home、rename的CSS */
*{margin:0px; padding:0px; border:none;}
.q{height:1060px; width:1200px;margin:0px auto 0px auto;}
/*顶部*/
.q .q-top{height:30px; width:1200px; background:#ffffff; text-align:center; line-height:30px;font-size:16px;color:#BB9646; }
/*左边*/
.q .q-left{height:1000px; width:350px; background:#A5B2FF; float:left;}
.q .q-left .q-left-1{height:325px; width:150px;padding:175px 100px 0px 100px;background:#A3CF98;}
.q .q-left .q-left-1 .q-left-11{height:170px; width:150px;}
.q .q-left .q-left-1 .q-left-12{height:44px; width:150px; text-align:center; line-height:44px;font-size:24px;color:#ffffff;}
.q .q-left .q-left-1 .q-left-13{height:111px; width:150px; font-size:16px;color:#F8F4D6;}
.q .q-left .q-left-2{height:460px; width:350px;background:#725D5D;padding:40px 120px 0px 120px;}
.q .q-left .q-left-2 ul li{height:40px; width:110px; list-style:none; text-align:center; line-height:40px; font-size:20px; margin-bottom:40px;}
.q .q-left .q-left-2 ul li a{display:block; height:40px; width:110px; text-decoration:none; color:#ffffff;}
.q .q-left .q-left-2 ul li a:hover{background:url(images/bg.png); color:#FFE011;}
.q .q-left .q-left-2 ul .m{background:url(images/bg.png);}
/*右边*/
.q .q-right{height:980px; width:700px; background:#E8FDC4; float:left;padding:20px 75px 0px 75px;}
/*右边模块一*/
.q .q-right .q-right-1{height:140px; width:680px; background:#C1D79B;font-size:24px; margin-bottom:10px;padding:20px 0px 0px 20px;}
.q .q-right .q-right-1 .q-right-11{text-decoration:none; color:#ffffff;}
.q .q-right .q-right-1 .q-right-12{height:90px; width:680px; color:#ffffff;font-size:16px;padding-top:10px;}
/*右边模块二*/
.q .q-right .q-right-2{height:140px; width:680px; background:#C1D79B;font-size:24px; margin-bottom:10px;padding:20px 0px 0px 20px;}
.q .q-right .q-right-2 .q-right-21{text-decoration:none; color:#ffffff;}
.q .q-right .q-right-2 .q-right-22{height:90px; width:680px; color:#ffffff;font-size:16px;padding-top:10px;} | 0.23634 | 0.05132 |
.tab-focus {
outline: none;
}
.details {
border-top: 1px solid #eeeff2;
background-color: #f7f8fa;
}
.details .like-avatar ul {
margin: 0;
padding: 0;
list-style-type: none;
}
.details .like-avatar ul li {
display: inline-block;
padding: 10px 0 10px 10px;
}
.details .like-avatar ul li img {
border-radius: 100%;
}
.details .edit-comment {
padding: 0 10px;
padding-bottom: 10px;
}
.details .edit-comment .comment-text {
float: left;
width: 612px;
margin-right: 10px;
}
.details .edit-comment .comment-text input {
font-size: 12px;
padding: 6px 0;
text-indent: 1em;
}
.details .edit-comment .comment-operator {
overflow: hidden;
}
.details .edit-comment .comment-operator .btn {
line-height: 28px;
}
.operator {
position: absolute;
top: 0;
right: 0;
width: 50px;
opacity: 0.2;
filter: alpha(opacity=20);
border-left: 1px solid #eeeff2;
border-bottom: 1px solid #eeeff2;
background-color: white;
text-align: center;
border-bottom-left-radius: 3px;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.operator a.action {
-webkit-transition: all 0.1s ease-in-out;
-o-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
display: block;
width: 50px;
height: 50px;
font-size: 14px;
color: rgba(34, 34, 34, 0.2);
position: relative;
cursor: pointer;
}
.operator a.action i,
.operator a.action span {
position: absolute;
top: 0;
left: 0;
opacity: 1;
width: 100%;
height: 100%;
display: block;
font-size: 22px;
line-height: 48px;
text-align: center;
-webkit-transition: all 0.15s ease-in-out;
-o-transition: all 0.15s ease-in-out;
transition: all 0.15s ease-in-out;
}
.operator a.action i.icon-heart {
color: #ff4c4c;
}
.operator a.action span {
font-size: 14px;
opacity: 0;
filter: alpha(opacity=0);
top: 15px;
}
.operator a.action:hover i {
top: -15px;
opacity: 0;
filter: alpha(opacity=0);
}
.operator a.action:hover span {
top: 0px;
opacity: 1;
filter: alpha(opacity=100);
}
.author {
padding: 0px 50px 0px 10px;
margin-bottom: 12px;
}
.author p {
margin: 0;
}
.author .author-cover {
float: left;
margin-right: 10px;
}
.author .author-cover img {
border-radius: 100%;
}
.author .author-info {
overflow: hidden;
}
.author .author-info .author-name {
display: inline-block;
color: #525558;
font-size: 15px;
text-decoration: none;
line-height: 1.5;
margin-bottom: 6px;
}
.author .author-info .author-name:hover {
color: #00aaff;
}
.author .author-info .publish-tiem {
color: #8c8c8c;
font-size: 13px;
}
.post-content {
font-size: 14px;
line-height: 22px;
padding: 0 50px 8px 10px;
margin-top: -5px;
}
.post-content .post-title {
margin: 0;
padding-top: 10px;
}
.post-content .post-title a {
text-decoration: none;
color: #525558;
}
.post-content .post-title a:hover {
color: #00aaff;
}
.commenter-box {
padding: 20px 10px 10px 0;
margin-bottom: -20px;
}
.commenter-box a {
text-decoration: none;
color: #525558;
line-height: 1.5;
font-size: 12px;
}
.commenter-box a:hover {
color: #00aaff;
}
.commenter-box .commenter-list {
padding: 0px 0 0px 10px;
margin-bottom: 20px;
overflow: hidden;
}
.commenter-box .commenter-cover {
float: left;
margin-right: 10px;
}
.commenter-box .commenter-cover img {
border-radius: 100%;
}
.commenter-box .commenter-content {
overflow: hidden;
}
.commenter-box .commenter-content .commenter-meta a {
color: #00aaff;
}
.commenter-box .commenter-content .commenter-meta a.reply {
text-decoration: none;
margin-left: 10px;
font-size: 12px;
color: #0088cc;
}
.commenter-box .commenter-content .commenter-author {
position: relative;
top: -2px;
margin-bottom: 4px;
}
.commenter-box .commenter-content .commenter-author span.comment-time {
font-size: 12px;
color: #8c8c8c;
margin-left: 10px;
}
.commenter-box .commenter-content p {
margin: 0;
line-height: 1.5;
font-size: 12px;
} | ui/dist/css/index.css | .tab-focus {
outline: none;
}
.details {
border-top: 1px solid #eeeff2;
background-color: #f7f8fa;
}
.details .like-avatar ul {
margin: 0;
padding: 0;
list-style-type: none;
}
.details .like-avatar ul li {
display: inline-block;
padding: 10px 0 10px 10px;
}
.details .like-avatar ul li img {
border-radius: 100%;
}
.details .edit-comment {
padding: 0 10px;
padding-bottom: 10px;
}
.details .edit-comment .comment-text {
float: left;
width: 612px;
margin-right: 10px;
}
.details .edit-comment .comment-text input {
font-size: 12px;
padding: 6px 0;
text-indent: 1em;
}
.details .edit-comment .comment-operator {
overflow: hidden;
}
.details .edit-comment .comment-operator .btn {
line-height: 28px;
}
.operator {
position: absolute;
top: 0;
right: 0;
width: 50px;
opacity: 0.2;
filter: alpha(opacity=20);
border-left: 1px solid #eeeff2;
border-bottom: 1px solid #eeeff2;
background-color: white;
text-align: center;
border-bottom-left-radius: 3px;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.operator a.action {
-webkit-transition: all 0.1s ease-in-out;
-o-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
display: block;
width: 50px;
height: 50px;
font-size: 14px;
color: rgba(34, 34, 34, 0.2);
position: relative;
cursor: pointer;
}
.operator a.action i,
.operator a.action span {
position: absolute;
top: 0;
left: 0;
opacity: 1;
width: 100%;
height: 100%;
display: block;
font-size: 22px;
line-height: 48px;
text-align: center;
-webkit-transition: all 0.15s ease-in-out;
-o-transition: all 0.15s ease-in-out;
transition: all 0.15s ease-in-out;
}
.operator a.action i.icon-heart {
color: #ff4c4c;
}
.operator a.action span {
font-size: 14px;
opacity: 0;
filter: alpha(opacity=0);
top: 15px;
}
.operator a.action:hover i {
top: -15px;
opacity: 0;
filter: alpha(opacity=0);
}
.operator a.action:hover span {
top: 0px;
opacity: 1;
filter: alpha(opacity=100);
}
.author {
padding: 0px 50px 0px 10px;
margin-bottom: 12px;
}
.author p {
margin: 0;
}
.author .author-cover {
float: left;
margin-right: 10px;
}
.author .author-cover img {
border-radius: 100%;
}
.author .author-info {
overflow: hidden;
}
.author .author-info .author-name {
display: inline-block;
color: #525558;
font-size: 15px;
text-decoration: none;
line-height: 1.5;
margin-bottom: 6px;
}
.author .author-info .author-name:hover {
color: #00aaff;
}
.author .author-info .publish-tiem {
color: #8c8c8c;
font-size: 13px;
}
.post-content {
font-size: 14px;
line-height: 22px;
padding: 0 50px 8px 10px;
margin-top: -5px;
}
.post-content .post-title {
margin: 0;
padding-top: 10px;
}
.post-content .post-title a {
text-decoration: none;
color: #525558;
}
.post-content .post-title a:hover {
color: #00aaff;
}
.commenter-box {
padding: 20px 10px 10px 0;
margin-bottom: -20px;
}
.commenter-box a {
text-decoration: none;
color: #525558;
line-height: 1.5;
font-size: 12px;
}
.commenter-box a:hover {
color: #00aaff;
}
.commenter-box .commenter-list {
padding: 0px 0 0px 10px;
margin-bottom: 20px;
overflow: hidden;
}
.commenter-box .commenter-cover {
float: left;
margin-right: 10px;
}
.commenter-box .commenter-cover img {
border-radius: 100%;
}
.commenter-box .commenter-content {
overflow: hidden;
}
.commenter-box .commenter-content .commenter-meta a {
color: #00aaff;
}
.commenter-box .commenter-content .commenter-meta a.reply {
text-decoration: none;
margin-left: 10px;
font-size: 12px;
color: #0088cc;
}
.commenter-box .commenter-content .commenter-author {
position: relative;
top: -2px;
margin-bottom: 4px;
}
.commenter-box .commenter-content .commenter-author span.comment-time {
font-size: 12px;
color: #8c8c8c;
margin-left: 10px;
}
.commenter-box .commenter-content p {
margin: 0;
line-height: 1.5;
font-size: 12px;
} | 0.394784 | 0.073364 |
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
body,
html,
p,
blockquote,
fieldset,
input {
margin: 0;
padding: 0;
}
/* Global styles */
html {
height: 100%;
}
body {
width: 100%;
height: 100%;
background: #232323;
color: #666666;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 300;
line-height: 1.5em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
color: #2a92e5;
text-decoration: none;
}
a:hover {
color: #2180cc;
}
a img,
a:hover img {
border: none;
}
h2 {
color: #333333;
font-family: 'Raleway', serif;
font-size: 26px;
font-weight: 400;
line-height: 1.2em;
}
p {
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 300;
line-height: 30px;
}
blockquote {
font-family: 'Raleway', serif;
font-size: 20px;
font-weight: 400;
line-height: normal;
font-style: italic;
text-align: center;
}
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
color: #626262;
}
input[type="text"],
input[type="email"],
textarea {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
text-shadow: none;
}
textarea {
resize: none;
}
select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
text-indent: 0.01px;
text-overflow: '';
}
input[type="radio"],
input[type="checkbox"] {
width: 16px;
height: 16px;
border: 1px solid #cccccc !important;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
text-shadow: none;
}
input[type="radio"] {
border-radius: 8px;
}
input[type="checkbox"] {
background-color: white;
border-radius: 0;
}
input[type="radio"]:after {
display: block;
border-radius: 8px;
box-sizing: border-box;
content: "";
}
input[type="radio"]:checked:after {
background: #cccccc;
border: 2px solid #fafafa;
width: 14px;
height: 14px;
}
input[type="checkbox"]:after {
position: relative;
top: 1px;
left: 4px;
width: 3px;
height: 6px;
border: solid #cccccc;
border-width: 0 2px 2px 0;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
input[type="checkbox"]:checked:after {
display: block;
content: " ";
}
.container {
width: 960px;
margin: 0 auto;
}
/* Editor Overrides :: DO NOT REMOVE */
#icontent .wrapper .birdseye-header .logo,
#preview-iframe .landing-page .wrapper .birdseye-header .logo,
#icontent.landing-page .wrapper .birdseye-header .logo,
#icontent .wrapper .nav,
#preview-iframe .landing-page .wrapper .nav,
#icontent.landing-page .wrapper .nav,
#icontent .wrapper .banner-wrap .container,
#preview-iframe .landing-page .wrapper .banner-wrap .container,
#icontent.landing-page .wrapper .banner-wrap .container {
opacity: 1 !important;
}
/* Fade out scroll */
body.fade-on-scroll .banner {
opacity: 0;
}
/* Body class for pages with banner */
body.page-has-banner .birdseye-header {
padding: 20px 30px;
}
body.page-has-banner .logo img {
max-height: 60px;
}
body.page-has-banner .main-wrap {
padding-top: 70px;
}
/* Fixed Nav */
body.page-has-banner.affix .birdseye-header,
body.splash-page.affix .birdseye-header {
position: fixed;
top: 0;
background: rgba(35, 35, 35, 0.95);
padding: 10px 30px;
}
/* Mobile app + checkout page */
body.wsite-checkout-page .birdseye-header,
body.wsite-native-mobile-editor .birdseye-header {
position: absolute !important;
}
/* Header */
.birdseye-header {
position: fixed;
z-index: 12;
overflow-y: hidden;
width: 100%;
padding: 10px 30px;
box-sizing: border-box;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
-webkit-transition: all 250ms ease;
-moz-transition: all 250ms ease;
-ms-transition: all 250ms ease;
-o-transition: all 250ms ease;
transition: all 250ms ease;
}
.birdseye-header .container {
display: table;
overflow-y: hidden;
width: 100%;
max-height: 80px;
}
.birdseye-header label.hamburger {
display: none;
}
.birdseye-header .logo {
display: table-cell;
overflow-y: hidden;
margin-right: 30px;
padding: 0;
vertical-align: middle;
line-height: normal;
}
.birdseye-header .logo a {
display: block;
margin-right: 30px;
margin-left: 10px;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 0.03em;
font-family: 'Open Sans', sans-serif;
font-size: 24px;
font-weight: 600;
line-height: normal;
}
.birdseye-header .logo img {
display: block;
overflow: hidden;
max-width: 200px;
max-height: 40px;
}
.birdseye-header .logo #wsite-title {
display: block;
max-width: 400px;
font-family: 'Open Sans', sans-serif;
font-size: 24px;
font-weight: 600;
line-height: normal;
}
/* Nav */
.nav {
display: table-cell;
overflow-y: hidden;
padding: 0;
vertical-align: middle;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.nav ul {
float: right;
overflow: hidden;
max-width: 1115px;
}
.nav li {
display: inline-block;
margin-right: 5px;
padding: 0;
}
.nav li > a.wsite-menu-item {
display: block;
padding: 8px 12px;
border: 2px solid transparent;
border-radius: 2px;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 0.05em;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: normal;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.nav li#active > a.wsite-menu-item,
.nav li > a.wsite-menu-item:hover {
border: 2px solid #ffffff;
}
.mobile-nav {
display: none;
}
/* Subnav */
#wsite-menus .wsite-menu-wrap {
margin-top: 10px;
}
#wsite-menus .wsite-menu {
position: relative;
}
#wsite-menus .wsite-menu li a {
background: #232323;
color: white;
border: none;
text-transform: uppercase;
letter-spacing: 0.05em;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
font-weight: normal;
line-height: normal;
}
#wsite-menus .wsite-menu li a:hover {
background: #0a0a0a;
color: white;
}
#wsite-menus .wsite-menu li > .wsite-menu-wrap {
margin-top: 0;
}
#wsite-menus .wsite-menu-arrow {
color: transparent;
font-size: 0;
}
#wsite-menus .wsite-menu-arrow:before {
display: block;
color: white;
content: '\203A';
font-family: 'Open Sans', sans-serif;
font-size: 24px;
font-weight: normal;
line-height: 11px;
}
/* Mini cart */
#wsite-mini-cart {
position: fixed !important;
top: 80px !important;
overflow-y: scroll;
max-height: 600px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
#wsite-mini-cart .wsite-css-aspect {
width: 50px;
height: 50px;
margin: 10px;
}
/* Banner */
.banner-wrap {
position: relative;
z-index: 6;
overflow: hidden;
height: 100%;
background: url('default-bg.jpg') center center no-repeat;
background-size: cover;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.banner-wrap:before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.2);
content: ' ';
}
.banner-wrap .container {
position: relative;
display: table;
width: 100%;
height: 100%;
padding: 80px 0;
}
.banner-wrap .banner {
display: table-cell;
width: 100%;
vertical-align: middle;
text-align: center;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.banner-wrap .banner h2 {
padding: 0 0 10px;
color: #ffffff;
opacity: 1;
font-family: 'Raleway', serif;
font-size: 60px;
font-weight: 400;
line-height: 80px;
}
.banner-wrap .banner p {
padding: 0 0 25px;
color: #ffffff;
opacity: 1;
font-family: 'Open Sans', sans-serif;
font-size: 20px;
font-weight: 400;
line-height: 32px;
}
.banner-wrap .banner .button-wrap {
display: inline-block;
}
.banner-wrap .banner .wsite-button,
.banner-wrap .banner .wsite-button-large.wsite-button {
text-align: center !important;
}
.banner-wrap .banner .wsite-button .wsite-button-inner,
.banner-wrap .banner .wsite-button-large.wsite-button .wsite-button-inner {
background: #a1a1a1;
color: white !important;
border: 2px solid #a1a1a1;
font-weight: 600;
}
.banner-wrap .banner .wsite-button:hover .wsite-button-inner,
.banner-wrap .banner .wsite-button-large:hover .wsite-button-inner {
background: transparent;
color: #a1a1a1;
}
.banner-wrap .banner .wsite-button-highlight .wsite-button-inner,
.banner-wrap .banner .wsite-button-large.wsite-button-highlight .wsite-button-inner {
background: transparent;
color: #ffffff !important;
border: solid 2px #ffffff;
font-weight: 600;
}
.banner-wrap .banner .wsite-button-highlight:hover .wsite-button-inner,
.banner-wrap .banner .wsite-button-large.wsite-button-highlight:hover .wsite-button-inner {
background: #ffffff;
color: #232323 !important;
}
/* Content */
.main-wrap {
width: 100%;
min-height: 400px;
padding: 70px 0 50px;
background: #ffffff;
box-sizing: border-box;
}
.main-wrap h2 {
padding-bottom: 15px;
}
.main-wrap p {
font-size: 16px;
line-height: 1.5;
padding: 0 0 20px;
color: #666666;
}
.main-wrap blockquote {
font-size: 16px;
line-height: 28px;
color: #666666;
padding: 1em;
margin: 2em 0;
border-left: 0px !important;
}
/* Footer */
.footer-wrap {
width: 100%;
background-color: #262626;
color: #999999;
text-align: right;
font-size: 13px;
}
.footer-wrap .container {
width: 100%;
}
.footer-wrap .wsite-footer {
width: 960px;
margin: 0 auto;
padding: 30px 0 20px;
box-sizing: border-box;
}
.footer-wrap h2 {
margin: 20px 0 10px;
padding-bottom: 10px;
border-bottom: 1px solid #3b3b3b;
color: #ffffff;
text-transform: uppercase;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: normal;
}
.footer-wrap p {
color: #999999;
font-size: 13px;
}
.footer-wrap blockquote {
color: #999999;
font-size: 13px;
}
.footer-wrap input[type="radio"],
.footer-wrap input[type="checkbox"] {
border: none !important;
}
.footer-wrap input[type="radio"]:checked:after {
background: #2a92e5;
border: 2px solid #181818;
}
.footer-wrap input[type="checkbox"]:after {
background: #181818;
border: solid #2a92e5;
}
.footer-wrap .wsite-form-container {
margin-top: 0;
text-align: left;
}
.footer-wrap .wsite-form-input,
.footer-wrap .wsite-search-element-input {
padding: 10px 6px !important;
background: #181818;
color: #626262;
border: none;
border-radius: 5px;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: normal;
}
.footer-wrap .form-select {
padding: 10px;
background: #181818 url(select-dropdown.png) 97% center no-repeat;
color: #626262;
border: none;
border-radius: 5px;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 15px;
}
.footer-wrap .wsite-button .wsite-button-inner,
.footer-wrap .wsite-button-large .wsite-button-inner {
background: transparent;
color: #2a92e5 !important;
border: 2px solid #2a92e5;
}
.footer-wrap .wsite-button:hover .wsite-button-inner,
.footer-wrap .wsite-button-large:hover .wsite-button-inner {
background: #2a92e5;
color: #ffffff !important;
}
/* Social icons */
.wsite-social-item {
display: inline-block !important;
width: 30px !important;
height: 30px !important;
margin-right: 10px;
background: #515151;
border-radius: 15px;
text-align: center;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.wsite-social-item:before {
position: relative;
top: 0.2em;
color: #ffffff;
font-size: 16px;
}
.wsite-social-item:hover {
background: #2a92e5;
}
/* Override to hide hidden icons in editor */
.wsite-editor .wsite-social .wsite-social-item.hidden {
display: none !important;
}
/* Gallery + Images */
.imageGallery .galleryImageHolder .fullImageGalleryCaption,
.imageGallery .galleryImageHolder .partialImageGalleryCaption {
height: 100%;
}
.imageGallery .galleryImageHolder .fullImageGalleryCaption .galleryCaptionHolderInnerBg,
.imageGallery .galleryImageHolder .partialImageGalleryCaption .galleryCaptionHolderInnerBg {
background: #232323;
opacity: 0.2;
bottom: 0;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.imageGallery .galleryImageHolder .fullImageGalleryCaption .galleryCaptionHolderInner,
.imageGallery .galleryImageHolder .partialImageGalleryCaption .galleryCaptionHolderInner {
position: absolute;
top: auto;
bottom: 0;
}
.imageGallery .galleryImageHolder:hover .fullImageGalleryCaption .galleryCaptionHolderInnerBg,
.imageGallery .galleryImageHolder:hover .partialImageGalleryCaption .galleryCaptionHolderInnerBg {
opacity: 0.4;
}
.imageGallery .galleryCaptionInnerText {
color: #ffffff;
letter-spacing: normal;
text-shadow: none;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 24px;
}
.galleryImageBorder.wsite-image {
box-sizing: border-box;
}
/* Forms */
.wsite-form-label {
display: inline-block;
padding: 0 0 5px;
color: #626262;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 26px;
}
.wsite-form-sublabel {
display: none;
}
.wsite-form-radio-container {
margin-bottom: 15px;
}
.form-radio-container {
color: #626262;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: 300;
line-height: normal;
}
.wsite-form-input,
.wsite-search-element-input {
height: auto;
padding: 8px !important;
margin-bottom: 15px;
background: #fafafa;
color: #626262;
border: 1px solid #cccccc;
border-radius: 2px;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: 300;
line-height: normal;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.wsite-form-input:focus,
.wsite-search-element-input:focus {
border-color: #a1a1a1;
}
.wsite-search-element {
margin-bottom: 15px;
}
.wsite-search-element .wsite-search-element-input {
margin-bottom: 0;
}
.form-select,
.wsite-form-field select,
.wsite-com-product-option-groups select {
height: 40px;
padding: 8px;
background: #fafafa url(select-dropdown.png) 97% center no-repeat;
color: #626262;
border: 1px solid #cccccc;
border-radius: 2px;
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: 300;
line-height: normal;
}
.form-select:focus,
.wsite-form-field select:focus,
.wsite-com-product-option-groups select:focus {
border-color: #a1a1a1;
}
.formlist,
.wsite-editor .formlist {
min-height: inherit;
}
/* Form errors */
.wsite-form-container .form-input-error {
border: 1px solid red !important;
}
.form-field-error .wsite-form-radio-container {
border: none;
}
/* Buttons */
.wsite-button,
.wsite-editor .wsite-button {
display: inline-block;
height: auto;
padding: 0;
background: none;
}
.wsite-button:focus,
.wsite-editor .wsite-button:focus {
outline: none;
}
.wsite-button .wsite-button-inner,
.wsite-editor .wsite-button .wsite-button-inner {
display: inline-block;
height: auto;
padding: 8px 16px;
background: #a1a1a1;
color: white !important;
border: 2px solid #a1a1a1;
border-radius: 2px;
text-transform: uppercase;
letter-spacing: 0.05em;
white-space: normal;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
font-weight: 400;
line-height: normal;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.wsite-button-large,
.wsite-editor .wsite-button-large {
display: inline-block;
height: auto;
padding: 0;
background: none;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.wsite-button-large .wsite-button-inner,
.wsite-editor .wsite-button-large .wsite-button-inner {
display: inline-block;
height: auto;
padding: 12px 24px;
background: #a1a1a1;
color: white !important;
border: 2px solid #a1a1a1;
border-radius: 2px;
text-transform: uppercase;
letter-spacing: 0.05em;
white-space: normal;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: normal;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.wsite-button:hover .wsite-button-inner,
.wsite-button-large:hover .wsite-button-inner {
background: transparent;
color: #a1a1a1 !important;
}
.wsite-button-highlight,
.wsite-button-large.wsite-button-highlight,
.wsite-editor .wsite-button-highlight,
.wsite-editor .wsite-button-large.wsite-button-highlight {
background: none;
}
.wsite-button-highlight .wsite-button-inner,
.wsite-button-large.wsite-button-highlight .wsite-button-inner,
.wsite-editor .wsite-button-highlight .wsite-button-inner,
.wsite-editor .wsite-button-large.wsite-button-highlight .wsite-button-inner {
background: transparent;
color: #2a92e5 !important;
border: 2px solid #2a92e5;
}
.wsite-button-highlight:hover .wsite-button-inner,
.wsite-button-large.wsite-button-highlight:hover .wsite-button-inner {
background: #2a92e5;
color: white !important;
}
/* Checkout */
.wsite-com-checkout-section .wsite-form-field select,
.wsite-com-checkout-section .wsite-form-field input,
.wsite-com-checkout-section .wsite-form-field .select2-container {
height: auto;
}
/* Fancybox overrides */
.fancybox-skin {
background: transparent !important;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
}
.fancybox-title {
color: white;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: normal;
line-height: normal;
}
.fancybox-close,
.fancybox-next span,
.fancybox-prev span {
background: none !important;
width: auto;
height: auto;
}
.fancybox-close:before,
.fancybox-next span:before,
.fancybox-prev span:before {
color: white !important;
font-family: 'Open Sans', sans-serif;
font-size: 45px;
font-weight: 400;
line-height: 0.75em;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.fancybox-close:hover:before,
.fancybox-next:hover span:before,
.fancybox-prev:hover span:before {
color: #2a92e5 !important;
}
.fancybox-prev span:before {
position: relative;
left: -10px;
content: '\3008';
}
.fancybox-next span:before {
position: relative;
right: -10px;
content: '\3009';
}
.fancybox-close {
top: 20px;
right: 20px;
}
.fancybox-close:before {
content: '\00D7';
}
/* Landing page */
.landing-page.fade-in .logo,
.landing-page.fade-in .desktop-nav,
.landing-page.fade-in .banner-wrap .container {
opacity: 1;
}
.landing-page.fade-on-scroll .banner {
opacity: 0;
}
.landing-page .logo {
opacity: 0;
-webkit-transition: all 1000ms ease-in;
-moz-transition: all 1000ms ease-in;
-ms-transition: all 1000ms ease-in;
-o-transition: all 1000ms ease-in;
transition: all 1000ms ease-in;
}
.landing-page .desktop-nav {
opacity: 0;
-webkit-transition: all 1000ms ease-in;
-moz-transition: all 1000ms ease-in;
-ms-transition: all 1000ms ease-in;
-o-transition: all 1000ms ease-in;
transition: all 1000ms ease-in;
}
.landing-page .banner-wrap {
min-height: 630px;
}
.landing-page .banner-wrap .container {
overflow-y: hidden;
height: 470px;
opacity: 0;
-webkit-transition: all 1000ms ease-in;
-moz-transition: all 1000ms ease-in;
-ms-transition: all 1000ms ease-in;
-o-transition: all 1000ms ease-in;
transition: all 1000ms ease-in;
}
.landing-page .banner {
margin-top: 40px;
}
/* Tall Header page */
.tall-header-page .banner-wrap {
min-height: 450px;
-webkit-transition: all 250ms ease-in-out;
-moz-transition: all 250ms ease-in-out;
-ms-transition: all 250ms ease-in-out;
-o-transition: all 250ms ease-in-out;
transition: all 250ms ease-in-out;
}
.tall-header-page .banner-wrap .container {
overflow-y: hidden;
height: 290px;
}
.tall-header-page .banner h2 {
font-size: 50px;
line-height: 64px;
padding-bottom: 0;
}
/* Short Header page */
.short-header-page .banner-wrap {
min-height: 240px;
-webkit-transition: all 250ms ease-in-out;
-moz-transition: all 250ms ease-in-out;
-ms-transition: all 250ms ease-in-out;
-o-transition: all 250ms ease-in-out;
transition: all 250ms ease-in-out;
}
.short-header-page .banner-wrap .container {
overflow-y: hidden;
padding: 80px 0 60px;
height: 100px;
}
.short-header-page .banner h2 {
font-size: 40px;
line-height: 52px;
padding-bottom: 0;
}
/* No Header page */
body.page-has-banner.no-header-page .birdseye-header {
position: relative;
top: 0;
padding-top: 10px;
padding-bottom: 10px;
background: rgba(35, 35, 35, 0.95);
background-image: none !important;
}
body.page-has-banner.no-header-page.affix .birdseye-header {
position: fixed;
}
/* Splash page */
.splash-page {
position: relative;
top: 0;
left: 0;
width: 100%;
height: 100%;
min-height: 100vh;
background: none;
color: #ffffff;
box-sizing: border-box;
}
.splash-page .wrapper {
height: 100%;
}
.splash-page .birdseye-header {
padding-top: 20px;
padding-bottom: 20px;
background: none;
background-image: none !important;
box-sizing: border-box;
}
.splash-page .main-wrap {
position: relative;
display: table;
width: 100%;
height: 100%;
min-height: 100vh;
background: url(default-bg.jpg) no-repeat;
background-attachment: fixed !important;
background-size: cover;
box-sizing: border-box;
}
.splash-page .main-wrap:before {
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.2);
content: ' ';
}
.splash-page .main-wrap > .container {
position: relative;
display: table;
height: 100%;
box-sizing: border-box;
}
.splash-page .main-wrap .content-wrap {
display: table-cell;
vertical-align: middle;
}
.splash-page .main-wrap .splash-content {
margin: 0 auto;
}
.splash-page .main-wrap h2 {
color: #ffffff;
font-size: 60px;
}
.splash-page .main-wrap p,
.splash-page .main-wrap div.paragraph {
color: #ffffff;
font-size: 20px;
}
.splash-page .main-wrap .wsite-button .wsite-button-inner,
.splash-page .main-wrap .wsite-button-large.wsite-button .wsite-button-inner {
background: #a1a1a1;
color: white !important;
border: 2px solid #a1a1a1;
font-weight: 600;
}
.splash-page .main-wrap .wsite-button:hover .wsite-button-inner,
.splash-page .main-wrap .wsite-button-large:hover .wsite-button-inner {
background: transparent;
color: #a1a1a1;
}
.splash-page .main-wrap .wsite-button-highlight .wsite-button-inner,
.splash-page .main-wrap .wsite-button-large.wsite-button-highlight .wsite-button-inner {
background: transparent;
color: #ffffff !important;
border: solid 2px #ffffff;
font-weight: 600;
}
.splash-page .main-wrap .wsite-button-highlight:hover .wsite-button-inner,
.splash-page .main-wrap .wsite-button-large.wsite-button-highlight:hover .wsite-button-inner {
background: #ffffff;
color: #232323 !important;
}
.splash-page .footer-wrap,
.splash-page .wsite-footer {
display: none;
}
#blogTable .blog-post .blog-header h2.blog-title {
margin-bottom: 20px !important;
}
#blogTable .blog-post .blog-header h2.blog-title a {
color: #333333;
}
#blogTable .blog-sidebar h2 {
font-size: 18px;
margin-bottom: 10px;
}
#blogTable .blog-sidebar p {
margin-bottom: 20px;
}
.blogCommentReplyWrapper iframe {
height: 560px !important;
}
#commentPostDiv .field input[type=text],
#commentPostDiv .field textarea {
height: auto;
padding: 8px 12px;
background: transparent;
box-sizing: border-box;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
#commentPostDiv .field input[type=text]:focus,
#commentPostDiv .field textarea:focus {
border: 1px solid #2a92e5;
}
#commentSubmit {
height: auto;
padding: 8px 12px;
background: #a1a1a1;
color: white;
border: 2px solid #a1a1a1;
border-radius: 1px;
text-transform: uppercase;
white-space: normal;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: 700;
line-height: normal;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
#commentSubmit span {
background: none;
}
#commentSubmit:hover {
background: transparent;
color: #a1a1a1 !important;
}
#commentArea {
border-top: solid 1px #dadada;
padding-top: 20px;
}
#wsite-content #commentAreaTitle,
#wsite-content #commentReplyTitle,
#commentArea .blogCommentText p,
.main-wrap .blog-sidebar h2 {
padding: 0;
}
#commentAreaTitle,
.blogCommentHeading,
.blogCommentText p {
font-family: inherit;
}
.blogCommentWrap {
padding: 20px;
border: solid 1px #ccc;
border-radius: 6px;
background: none;
}
.blogCommentWrap .blogCommentHeading,
.blogCommentWrap .blogCommentHeadingInner,
.blogCommentWrap .blogCommentAuthor {
background: none !important;
}
.blogCommentHeading .blogCommentAuthor span.name,
.blogCommentHeading .blogCommentAuthor span.email {
color: #2a92e5 !important;
float: none;
line-height: 1;
}
.blogCommentHeading .blogCommentAuthor {
margin-bottom: 10px;
}
.blogCommentHeading {
padding: 0;
margin-bottom: 20px;
}
.blogCommentHeading .blogCommentHeadingInner {
height: auto;
}
.blogCommentHeading .blogCommentAuthor,
.blogCommentHeading .blogCommentDate {
float: none;
text-align: left;
height: auto;
line-height: 1;
padding: 0;
}
.blogCommentHeading .blogCommentAuthor {
text-transform: uppercase;
}
.blogCommentHeading .blogCommentDate {
color: #333;
}
.blogCommentText {
padding: 0;
}
.blogCommentText p {
color: #666;
font-size: 14px;
}
.blogCommentOptions .blog-button {
height: auto;
padding: 8px 12px;
background: #a1a1a1;
color: white;
border: 2px solid #a1a1a1;
border-radius: 1px;
text-transform: uppercase;
white-space: normal;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: 700;
line-height: normal;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.blogCommentOptions .blog-button span {
background: none;
}
.blogCommentOptions .blog-button:hover {
background: transparent;
color: #a1a1a1 !important;
}
/* Store */
#wsite-com-store .wsite-com-category-subcategory-image-wrap {
height: 100%;
border: none;
}
#wsite-com-store .wsite-com-category-subcategory-name {
top: 0;
}
#wsite-com-store .wsite-com-category-subcategory-name-bg {
background-color: rgba(0, 0, 0, 0.2);
background-image: linear-gradient(top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}
#wsite-com-store .wsite-com-category-subcategory-name-text {
position: absolute;
bottom: 0;
width: 100%;
background: none;
box-sizing: border-box;
text-shadow: none;
font-weight: 400;
}
#wsite-com-store #wsite-com-product-title {
font-weight: inherit;
}
#wsite-com-store .wsite-com-category-subcategory-link .wsite-com-category-subcategory-image-wrap,
#wsite-com-store .wsite-com-category-product-link .wsite-com-category-product-image-wrap,
#wsite-com-store .wsite-com-category-product-link-featured .wsite-com-category-product-featured-image-wrap {
opacity: 1;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
#wsite-com-store .wsite-com-category-subcategory-link:hover .wsite-com-category-subcategory-image-wrap,
#wsite-com-store .wsite-com-category-product-link:hover .wsite-com-category-product-image-wrap,
#wsite-com-store .wsite-com-category-product-link-featured:hover .wsite-com-category-product-featured-image-wrap {
opacity: .7;
}
#wsite-com-store #wsite-com-hierarchy ul {
font-size: 16px;
}
#wsite-com-store #wsite-com-hierarchy ul .wsite-link-unselected {
color: #2a92e5;
}
#wsite-com-store #wsite-com-hierarchy ul .wsite-link-unselected:hover {
color: #2180cc;
}
/* Product */
.wsite-product {
border-radius: 0;
box-shadow: none;
}
h2#wsite-com-product-title {
display: block;
clear: both;
font-weight: 400;
}
.wsite-com-product-title {
font-weight: 400;
}
#wsite-com-breadcrumbs.wsite-com-product-breadcrumbs,
#wsite-com-breadcrumbs.wsite-com-category-breadcrumbs {
padding-bottom: 25px;
}
.wsite-com-category-product-group .wsite-com-category-product-wrap,
.wsite-com-category-product-featured-group .wsite-com-category-product-wrap,
.wsite-com-category-product-featured-group .wsite-com-category-product-featured-wrap,
.wsite-com-category-subcategory-group .wsite-com-category-subcategory-wrap {
font-size: 1em;
}
#wsite-com-product-info {
float: left;
width: 50%;
margin-left: 30px;
}
.wsite-product-button-wrap {
display: block;
text-align: left;
}
/* Checkout */
.wsite-com-checkout-section .wsite-form-field select,
.wsite-com-checkout-section .wsite-form-field input,
.wsite-com-checkout-section .wsite-form-field .select2-container {
height: 40px;
}
.wsite-com-checkout-section .wsite-form-field input[type="radio"] {
display: inline-block;
margin: 0 5px 0 0;
width: 16px;
height: 16px;
}
.wsite-com-checkout-section .wsite-form-field select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
/* Media Queries */
@media screen and (max-width: 992px) {
body.page-has-banner .birdseye-header,
body.page-has-banner.affix .birdseye-header,
body.splash-page.affix .birdseye-header {
padding: 5px 20px;
}
body.page-has-banner .birdseye-header .logo,
body.page-has-banner.affix .birdseye-header .logo,
body.splash-page.affix .birdseye-header .logo {
max-height: 40px;
}
body.page-has-banner .birdseye-header .logo img,
body.page-has-banner.affix .birdseye-header .logo img,
body.splash-page.affix .birdseye-header .logo img {
max-height: 40px;
}
body.page-has-banner .main-wrap,
body.page-has-banner.affix .main-wrap,
body.splash-page.affix .main-wrap {
padding-top: 40px;
}
body.cart-full #wsite-mini-cart {
display: block !important;
}
body.cart-full .wsite-footer {
padding-bottom: 70px;
}
.container {
width: 100%;
}
/* Open nav styles */
body.nav-open .mobile-nav {
padding: 50px 0;
max-height: 100vh;
}
body.nav-open .birdseye-header label.hamburger span {
background: transparent;
}
body.nav-open .birdseye-header label.hamburger span:before {
top: 1px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
body.nav-open .birdseye-header label.hamburger span:after {
top: -1px;
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-ms-transform: rotate(135deg);
-o-transform: rotate(135deg);
transform: rotate(135deg);
}
body.splash-page.nav-open .wrapper .main-wrap {
position: relative;
}
/* Header */
.birdseye-header {
min-height: 50px;
padding: 5px 20px;
background: rgba(35, 35, 35, 0.95);
}
.birdseye-header .logo {
overflow: hidden;
padding-right: 25px;
}
.birdseye-header .logo a {
margin-left: 0;
margin-right: 0;
font-size: 1.1em;
line-height: 1.4em;
}
.birdseye-header .logo img {
max-height: 40px;
}
.birdseye-header .logo #wsite-title {
display: block;
max-width: 100%;
font-size: 1.1em !important;
line-height: 1.4em !important;
}
.birdseye-header .container {
min-height: 40px;
max-height: inherit;
}
.birdseye-header label.hamburger {
display: table-cell;
vertical-align: middle;
}
label.hamburger {
position: absolute;
top: 0;
right: 0;
width: 30px;
height: 30px;
padding: 10px;
cursor: pointer;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
label.hamburger span,
label.hamburger span:before,
label.hamburger span:after {
position: relative;
display: block;
width: 22px;
height: 2px;
background: #ffffff;
content: '';
-webkit-transition: all 200ms ease-in-out;
-moz-transition: all 200ms ease-in-out;
-ms-transition: all 200ms ease-in-out;
-o-transition: all 200ms ease-in-out;
transition: all 200ms ease-in-out;
}
label.hamburger span {
top: 9px;
left: 4px;
margin: 5px 0;
}
label.hamburger span:before {
top: -8px;
}
label.hamburger span:after {
bottom: -6px;
}
.desktop-nav {
display: none;
}
.mobile-nav {
position: fixed;
top: 0;
left: 0;
z-index: 12;
display: block;
overflow-x: hidden;
overflow-y: auto;
width: 100%;
height: 100%;
max-height: 0;
padding: 0;
background: rgba(35, 35, 35, 0.95);
box-sizing: border-box;
-webkit-transition: all 300ms cubic-bezier(0, 0.085, 0.68, 0.53);
-moz-transition: all 300ms cubic-bezier(0, 0.085, 0.68, 0.53);
-ms-transition: all 300ms cubic-bezier(0, 0.085, 0.68, 0.53);
-o-transition: all 300ms cubic-bezier(0, 0.085, 0.68, 0.53);
transition: all 300ms cubic-bezier(0, 0.085, 0.68, 0.53);
}
.mobile-nav label.hamburger span {
background: transparent;
}
.mobile-nav label.hamburger span:before {
top: 1px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.mobile-nav label.hamburger span:after {
top: -1px;
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-ms-transform: rotate(135deg);
-o-transform: rotate(135deg);
transform: rotate(135deg);
}
.mobile-nav ul {
float: none;
height: auto;
}
.mobile-nav li {
position: relative;
display: block !important;
margin: 0;
border: none;
text-align: center;
}
.mobile-nav li .wsite-menu-link-styles {
position: relative;
padding: 10px 0;
border: none;
}
.mobile-nav li > a.wsite-menu-item {
position: relative;
padding: 10px 0;
border: none;
}
.mobile-nav li > a.wsite-menu-subitem {
display: block;
position: relative;
padding: 10px 0;
border: none;
color: #a1a1a1;
text-transform: none;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: normal;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.mobile-nav li .wsite-menu-wrap {
display: block !important;
overflow: hidden;
max-height: 0;
-webkit-transition: all 500ms ease-in-out 250ms;
-moz-transition: all 500ms ease-in-out 250ms;
-ms-transition: all 500ms ease-in-out 250ms;
-o-transition: all 500ms ease-in-out 250ms;
transition: all 500ms ease-in-out 250ms;
}
.mobile-nav li .wsite-menu-wrap li.wsite-nav-current > a.wsite-menu-subitem {
background: rgba(0, 0, 0, 0.95);
border: none;
}
.mobile-nav li .wsite-menu-wrap .wsite-menu-arrow {
display: none;
}
.mobile-nav li.wsite-menu-item-wrap#active > a.wsite-menu-item,
.mobile-nav li.wsite-menu-item-wrap > a.wsite-menu-item:hover,
.mobile-nav li.wsite-menu-subitem-wrap > a.wsite-menu-subitem:hover {
background: rgba(0, 0, 0, 0.95);
border: none;
}
.mobile-nav li.has-submenu > span.icon-caret {
position: absolute;
top: 0;
right: 0;
display: block;
width: 20px;
height: 20px;
padding: 10px 20px;
cursor: pointer;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.mobile-nav li.has-submenu > span.icon-caret:before {
position: relative;
display: block;
color: white;
font-size: 24px;
content: '\203A';
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
.mobile-nav li.has-submenu .wsite-menu-wrap.open {
max-height: 1000px;
}
.mobile-nav li.wsite-nav-more {
display: none !important;
}
/* Banner */
.banner-wrap {
padding: 0 40px;
}
.banner-wrap .container {
padding: 110px 0 60px;
}
.banner-wrap .banner h2 {
font-family: 'Raleway', serif;
font-size: 50px;
font-weight: 400;
line-height: 60px;
}
.main-wrap {
padding: 30px 20px;
}
/* Footer */
.footer-wrap .wsite-footer {
width: 100%;
padding: 10px 20px 20px;
box-sizing: border-box;
}
.footer-wrap td.wsite-multicol-col {
margin-bottom: 25px !important;
}
.footer-wrap td.wsite-multicol-col:last-child {
width: 100% !important;
}
/* Mini cart */
#wsite-mini-cart {
position: fixed !important;
top: initial !important;
bottom: 0px;
left: 0 !important;
z-index: 9;
width: 100%;
border: none;
border-top: 1px solid $LinkText;
border-radius: 0;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
#wsite-mini-cart.arrow-top:before,
#wsite-mini-cart.arrow-top:after,
#wsite-mini-cart.arrow-left:before,
#wsite-mini-cart.arrow-left:after {
border: none !important;
}
#wsite-mini-cart .wsite-product-list {
display: none;
}
/* Landing page */
.landing-page .banner-wrap {
min-height: 400px;
max-height: 630px;
}
/* No Header page */
.no-header-page .birdseye-header {
padding: 5px 20px;
}
.no-header-page .main-wrap {
padding-top: 80px;
}
/* Splash page */
.splash-page .birdseye-header {
padding: 5px 20px;
background: rgba(35, 35, 35, 0.95);
}
.splash-page .main-wrap {
padding: 4em 1.5em;
}
.splash-page .main-wrap .splash-content {
width: 100%;
}
.splash-page .main-wrap h2 {
font-family: 'Raleway', serif;
font-size: 2.5em;
font-weight: 400;
line-height: 1.3em;
}
.splash-page .main-wrap p,
.splash-page .main-wrap div.paragraph {
font-size: 16px;
line-height: 26px;
}
}
@media screen and (max-width: 767px) {
.container {
width: 100%;
}
/* Banner */
.banner-wrap {
padding: 0 20px;
box-sizing: border-box;
}
.banner-wrap .container {
padding: 80px 0 30px;
}
.banner-wrap .banner h2 {
padding-bottom: 20px;
font-family: 'Raleway', serif;
font-size: 2.5em;
font-weight: 400;
line-height: 1.25em;
}
/* Headline overrides*/
.banner h2 span,
.banner h2 font,
.banner p span,
.banner p font,
h2 .wsite-headline,
p .wsite-headline-paragraph {
font-size: inherit !important;
line-height: inherit !important;
}
/* Gallery */
.galleryCaptionHolder {
display: none;
}
.fullwidth-mobile {
width: 100% !important;
}
.fullwidth-mobile .galleryCaptionHolder {
display: block !important;
}
/* Table override */
td.wsite-multicol-col {
float: none;
display: block;
width: 100% !important;
box-sizing: border-box;
}
/* Blog */
#blogTable td {
float: none;
display: block;
width: 100%;
margin: 0;
padding: 0;
}
#blogTable td.blog-sidebar {
width: 100%;
}
#blogTable td.blog-sidebar p {
margin-bottom: 0;
}
#blogTable td .blog-body {
float: none !important;
}
#blogTable td .column-blog {
width: 100%;
float: none;
}
#blogTable td .blog-sidebar-separator {
padding: 0;
}
/* Store */
#wsite-com-store {
/* Category Dropdown */
}
#wsite-com-store .wsite-com-category-subcategory-group .wsite-com-column,
#wsite-com-store .wsite-com-category-product-featured-group .wsite-com-column,
#wsite-com-store .wsite-com-category-product-group .wsite-com-column {
float: left;
width: 50% !important;
}
#wsite-com-store .wsite-com-sidebar {
position: relative;
float: none !important;
z-index: 6;
width: 100%;
min-height: 35px;
margin: 0 auto 15px;
padding: 0;
text-align: center;
}
#wsite-com-store .wsite-com-sidebar:before {
display: block;
width: 100%;
padding: 10px 18px;
box-sizing: border-box;
text-align: center;
text-transform: uppercase;
content: 'VIEW ALL CATEGORIES\00a0\00a0\25be';
font-weight: 700;
cursor: pointer;
}
#wsite-com-store .wsite-com-sidebar #wsite-com-hierarchy {
position: relative;
display: block;
overflow: hidden;
width: 100%;
max-height: 0px;
padding: 0;
background: white;
box-sizing: border-box;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
#wsite-com-store .wsite-com-sidebar #wsite-com-hierarchy > ul {
width: 100%;
padding: 0;
}
#wsite-com-store .wsite-com-sidebar #wsite-com-hierarchy > ul li {
margin-bottom: 15px;
}
#wsite-com-store .wsite-com-sidebar.sidebar-expanded {
cursor: default !important;
}
#wsite-com-store .wsite-com-sidebar.sidebar-expanded:before {
content: 'CLOSE\00a0\00a0\25b4';
}
#wsite-com-store .wsite-com-sidebar.sidebar-expanded #wsite-com-hierarchy {
max-height: 100vh;
padding: 10px 0;
}
#wsite-com-store .wsite-com-content-with-sidebar {
margin-left: 0;
}
/* Product */
div.wsite-product-image-wrap {
width: 100% !important;
}
.wsite-product .wsite-product-top {
width: 100%;
}
.wsite-product .wsite-product-button-wrap {
width: auto;
}
#wsite-com-product-images {
float: none;
width: 100%;
margin-bottom: 20px;
}
#wsite-com-product-info {
width: 100%;
margin-left: 0;
}
#wsite-com-product-images-strip .wsite-com-product-images-secondary-outer {
margin-bottom: 10px;
}
/* Search */
#wsite-search-sidebar {
position: relative;
z-index: 6;
overflow-y: hidden;
width: 100%;
max-height: 35px;
padding: 0;
box-sizing: border-box;
-webkit-transition: all 500ms ease-in-out;
-moz-transition: all 500ms ease-in-out;
-ms-transition: all 500ms ease-in-out;
-o-transition: all 500ms ease-in-out;
transition: all 500ms ease-in-out;
}
#wsite-search-sidebar::before {
display: block;
width: 100%;
padding: 10px 18px;
box-sizing: border-box;
text-align: center;
text-transform: uppercase;
content: 'VIEW SEARCH FILTERS\00a0\00a0\25be';
font-weight: 700;
cursor: pointer;
}
#wsite-search-sidebar.sidebar-expanded {
max-height: 1000px;
cursor: default !important;
}
#wsite-search-sidebar.sidebar-expanded:before {
content: 'CLOSE\00a0\00a0\25b4';
}
#wsite-search-header h2 {
width: 100%;
margin-bottom: 10px;
font-size: 1.6em;
}
#wsite-search-form-container {
float: none;
width: 100%;
}
#wsite-search-query {
padding: 2px 10px;
}
#wsite-search-sidebar .wsite-search-facet-price input {
width: 100%;
margin: 10px 0;
padding: 6px!important;
}
#wsite-search-results {
width: 100%;
}
0 #wsite-search-product-results .wsite-search-product-result {
width: 100%;
padding-right: 0;
}
/* Checkout */
#wsite-com-checkout-list .wsite-form-input,
#wsite-com-checkout-summary-list .wsite-form-input {
width: 20px;
}
#wsite-com-checkout-list .wsite-form-input.wsite-coupon-input,
#wsite-com-checkout-summary-list .wsite-form-input.wsite-coupon-input {
width: 95px;
}
#wsite-com-checkout-list td {
padding: 10px 0 20px;
}
#wsite-com-checkout-list .wsite-remove-button,
#wsite-com-checkout-summary-list .wsite-remove-button {
top: 44px;
left: -10px;
}
.wsite-com-continue-shopping .caret {
display: inline-block;
margin-top: 2px;
}
/* Secure Checkout */
.wsite-com-checkout-payment-column,
.wsite-com-checkout-summary-column {
float: none;
width: 100%;
}
}
@media screen and (max-width: 480px) {
/* Store */
#wsite-com-store .wsite-com-category-subcategory-group .wsite-com-column,
#wsite-com-store .wsite-com-category-product-featured-group .wsite-com-column,
#wsite-com-store .wsite-com-category-product-group .wsite-com-column {
float: none;
width: 100% !important;
}
#wsite-com-checkout-list .wsite-com-checkout-item-image,
#wsite-com-checkout-summary-list .wsite-com-checkout-item-image {
display: none;
}
#wsite-com-checkout-list tbody td:first-child,
#wsite-com-checkout-summary-list tbody td:first-child {
width: 0;
padding: 0;
}
#wsite-com-checkout-list .wsite-com-checkout-item-details-inner,
#wsite-com-checkout-summary-list .wsite-com-checkout-item-details-inner {
padding-left: 0;
}
} | files/theme/main_style.css | ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
body,
html,
p,
blockquote,
fieldset,
input {
margin: 0;
padding: 0;
}
/* Global styles */
html {
height: 100%;
}
body {
width: 100%;
height: 100%;
background: #232323;
color: #666666;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 300;
line-height: 1.5em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
color: #2a92e5;
text-decoration: none;
}
a:hover {
color: #2180cc;
}
a img,
a:hover img {
border: none;
}
h2 {
color: #333333;
font-family: 'Raleway', serif;
font-size: 26px;
font-weight: 400;
line-height: 1.2em;
}
p {
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 300;
line-height: 30px;
}
blockquote {
font-family: 'Raleway', serif;
font-size: 20px;
font-weight: 400;
line-height: normal;
font-style: italic;
text-align: center;
}
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
color: #626262;
}
input[type="text"],
input[type="email"],
textarea {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
text-shadow: none;
}
textarea {
resize: none;
}
select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
text-indent: 0.01px;
text-overflow: '';
}
input[type="radio"],
input[type="checkbox"] {
width: 16px;
height: 16px;
border: 1px solid #cccccc !important;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
text-shadow: none;
}
input[type="radio"] {
border-radius: 8px;
}
input[type="checkbox"] {
background-color: white;
border-radius: 0;
}
input[type="radio"]:after {
display: block;
border-radius: 8px;
box-sizing: border-box;
content: "";
}
input[type="radio"]:checked:after {
background: #cccccc;
border: 2px solid #fafafa;
width: 14px;
height: 14px;
}
input[type="checkbox"]:after {
position: relative;
top: 1px;
left: 4px;
width: 3px;
height: 6px;
border: solid #cccccc;
border-width: 0 2px 2px 0;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
input[type="checkbox"]:checked:after {
display: block;
content: " ";
}
.container {
width: 960px;
margin: 0 auto;
}
/* Editor Overrides :: DO NOT REMOVE */
#icontent .wrapper .birdseye-header .logo,
#preview-iframe .landing-page .wrapper .birdseye-header .logo,
#icontent.landing-page .wrapper .birdseye-header .logo,
#icontent .wrapper .nav,
#preview-iframe .landing-page .wrapper .nav,
#icontent.landing-page .wrapper .nav,
#icontent .wrapper .banner-wrap .container,
#preview-iframe .landing-page .wrapper .banner-wrap .container,
#icontent.landing-page .wrapper .banner-wrap .container {
opacity: 1 !important;
}
/* Fade out scroll */
body.fade-on-scroll .banner {
opacity: 0;
}
/* Body class for pages with banner */
body.page-has-banner .birdseye-header {
padding: 20px 30px;
}
body.page-has-banner .logo img {
max-height: 60px;
}
body.page-has-banner .main-wrap {
padding-top: 70px;
}
/* Fixed Nav */
body.page-has-banner.affix .birdseye-header,
body.splash-page.affix .birdseye-header {
position: fixed;
top: 0;
background: rgba(35, 35, 35, 0.95);
padding: 10px 30px;
}
/* Mobile app + checkout page */
body.wsite-checkout-page .birdseye-header,
body.wsite-native-mobile-editor .birdseye-header {
position: absolute !important;
}
/* Header */
.birdseye-header {
position: fixed;
z-index: 12;
overflow-y: hidden;
width: 100%;
padding: 10px 30px;
box-sizing: border-box;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
-webkit-transition: all 250ms ease;
-moz-transition: all 250ms ease;
-ms-transition: all 250ms ease;
-o-transition: all 250ms ease;
transition: all 250ms ease;
}
.birdseye-header .container {
display: table;
overflow-y: hidden;
width: 100%;
max-height: 80px;
}
.birdseye-header label.hamburger {
display: none;
}
.birdseye-header .logo {
display: table-cell;
overflow-y: hidden;
margin-right: 30px;
padding: 0;
vertical-align: middle;
line-height: normal;
}
.birdseye-header .logo a {
display: block;
margin-right: 30px;
margin-left: 10px;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 0.03em;
font-family: 'Open Sans', sans-serif;
font-size: 24px;
font-weight: 600;
line-height: normal;
}
.birdseye-header .logo img {
display: block;
overflow: hidden;
max-width: 200px;
max-height: 40px;
}
.birdseye-header .logo #wsite-title {
display: block;
max-width: 400px;
font-family: 'Open Sans', sans-serif;
font-size: 24px;
font-weight: 600;
line-height: normal;
}
/* Nav */
.nav {
display: table-cell;
overflow-y: hidden;
padding: 0;
vertical-align: middle;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.nav ul {
float: right;
overflow: hidden;
max-width: 1115px;
}
.nav li {
display: inline-block;
margin-right: 5px;
padding: 0;
}
.nav li > a.wsite-menu-item {
display: block;
padding: 8px 12px;
border: 2px solid transparent;
border-radius: 2px;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 0.05em;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: normal;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.nav li#active > a.wsite-menu-item,
.nav li > a.wsite-menu-item:hover {
border: 2px solid #ffffff;
}
.mobile-nav {
display: none;
}
/* Subnav */
#wsite-menus .wsite-menu-wrap {
margin-top: 10px;
}
#wsite-menus .wsite-menu {
position: relative;
}
#wsite-menus .wsite-menu li a {
background: #232323;
color: white;
border: none;
text-transform: uppercase;
letter-spacing: 0.05em;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
font-weight: normal;
line-height: normal;
}
#wsite-menus .wsite-menu li a:hover {
background: #0a0a0a;
color: white;
}
#wsite-menus .wsite-menu li > .wsite-menu-wrap {
margin-top: 0;
}
#wsite-menus .wsite-menu-arrow {
color: transparent;
font-size: 0;
}
#wsite-menus .wsite-menu-arrow:before {
display: block;
color: white;
content: '\203A';
font-family: 'Open Sans', sans-serif;
font-size: 24px;
font-weight: normal;
line-height: 11px;
}
/* Mini cart */
#wsite-mini-cart {
position: fixed !important;
top: 80px !important;
overflow-y: scroll;
max-height: 600px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
#wsite-mini-cart .wsite-css-aspect {
width: 50px;
height: 50px;
margin: 10px;
}
/* Banner */
.banner-wrap {
position: relative;
z-index: 6;
overflow: hidden;
height: 100%;
background: url('default-bg.jpg') center center no-repeat;
background-size: cover;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.banner-wrap:before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.2);
content: ' ';
}
.banner-wrap .container {
position: relative;
display: table;
width: 100%;
height: 100%;
padding: 80px 0;
}
.banner-wrap .banner {
display: table-cell;
width: 100%;
vertical-align: middle;
text-align: center;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.banner-wrap .banner h2 {
padding: 0 0 10px;
color: #ffffff;
opacity: 1;
font-family: 'Raleway', serif;
font-size: 60px;
font-weight: 400;
line-height: 80px;
}
.banner-wrap .banner p {
padding: 0 0 25px;
color: #ffffff;
opacity: 1;
font-family: 'Open Sans', sans-serif;
font-size: 20px;
font-weight: 400;
line-height: 32px;
}
.banner-wrap .banner .button-wrap {
display: inline-block;
}
.banner-wrap .banner .wsite-button,
.banner-wrap .banner .wsite-button-large.wsite-button {
text-align: center !important;
}
.banner-wrap .banner .wsite-button .wsite-button-inner,
.banner-wrap .banner .wsite-button-large.wsite-button .wsite-button-inner {
background: #a1a1a1;
color: white !important;
border: 2px solid #a1a1a1;
font-weight: 600;
}
.banner-wrap .banner .wsite-button:hover .wsite-button-inner,
.banner-wrap .banner .wsite-button-large:hover .wsite-button-inner {
background: transparent;
color: #a1a1a1;
}
.banner-wrap .banner .wsite-button-highlight .wsite-button-inner,
.banner-wrap .banner .wsite-button-large.wsite-button-highlight .wsite-button-inner {
background: transparent;
color: #ffffff !important;
border: solid 2px #ffffff;
font-weight: 600;
}
.banner-wrap .banner .wsite-button-highlight:hover .wsite-button-inner,
.banner-wrap .banner .wsite-button-large.wsite-button-highlight:hover .wsite-button-inner {
background: #ffffff;
color: #232323 !important;
}
/* Content */
.main-wrap {
width: 100%;
min-height: 400px;
padding: 70px 0 50px;
background: #ffffff;
box-sizing: border-box;
}
.main-wrap h2 {
padding-bottom: 15px;
}
.main-wrap p {
font-size: 16px;
line-height: 1.5;
padding: 0 0 20px;
color: #666666;
}
.main-wrap blockquote {
font-size: 16px;
line-height: 28px;
color: #666666;
padding: 1em;
margin: 2em 0;
border-left: 0px !important;
}
/* Footer */
.footer-wrap {
width: 100%;
background-color: #262626;
color: #999999;
text-align: right;
font-size: 13px;
}
.footer-wrap .container {
width: 100%;
}
.footer-wrap .wsite-footer {
width: 960px;
margin: 0 auto;
padding: 30px 0 20px;
box-sizing: border-box;
}
.footer-wrap h2 {
margin: 20px 0 10px;
padding-bottom: 10px;
border-bottom: 1px solid #3b3b3b;
color: #ffffff;
text-transform: uppercase;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: normal;
}
.footer-wrap p {
color: #999999;
font-size: 13px;
}
.footer-wrap blockquote {
color: #999999;
font-size: 13px;
}
.footer-wrap input[type="radio"],
.footer-wrap input[type="checkbox"] {
border: none !important;
}
.footer-wrap input[type="radio"]:checked:after {
background: #2a92e5;
border: 2px solid #181818;
}
.footer-wrap input[type="checkbox"]:after {
background: #181818;
border: solid #2a92e5;
}
.footer-wrap .wsite-form-container {
margin-top: 0;
text-align: left;
}
.footer-wrap .wsite-form-input,
.footer-wrap .wsite-search-element-input {
padding: 10px 6px !important;
background: #181818;
color: #626262;
border: none;
border-radius: 5px;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: normal;
}
.footer-wrap .form-select {
padding: 10px;
background: #181818 url(select-dropdown.png) 97% center no-repeat;
color: #626262;
border: none;
border-radius: 5px;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 15px;
}
.footer-wrap .wsite-button .wsite-button-inner,
.footer-wrap .wsite-button-large .wsite-button-inner {
background: transparent;
color: #2a92e5 !important;
border: 2px solid #2a92e5;
}
.footer-wrap .wsite-button:hover .wsite-button-inner,
.footer-wrap .wsite-button-large:hover .wsite-button-inner {
background: #2a92e5;
color: #ffffff !important;
}
/* Social icons */
.wsite-social-item {
display: inline-block !important;
width: 30px !important;
height: 30px !important;
margin-right: 10px;
background: #515151;
border-radius: 15px;
text-align: center;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.wsite-social-item:before {
position: relative;
top: 0.2em;
color: #ffffff;
font-size: 16px;
}
.wsite-social-item:hover {
background: #2a92e5;
}
/* Override to hide hidden icons in editor */
.wsite-editor .wsite-social .wsite-social-item.hidden {
display: none !important;
}
/* Gallery + Images */
.imageGallery .galleryImageHolder .fullImageGalleryCaption,
.imageGallery .galleryImageHolder .partialImageGalleryCaption {
height: 100%;
}
.imageGallery .galleryImageHolder .fullImageGalleryCaption .galleryCaptionHolderInnerBg,
.imageGallery .galleryImageHolder .partialImageGalleryCaption .galleryCaptionHolderInnerBg {
background: #232323;
opacity: 0.2;
bottom: 0;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.imageGallery .galleryImageHolder .fullImageGalleryCaption .galleryCaptionHolderInner,
.imageGallery .galleryImageHolder .partialImageGalleryCaption .galleryCaptionHolderInner {
position: absolute;
top: auto;
bottom: 0;
}
.imageGallery .galleryImageHolder:hover .fullImageGalleryCaption .galleryCaptionHolderInnerBg,
.imageGallery .galleryImageHolder:hover .partialImageGalleryCaption .galleryCaptionHolderInnerBg {
opacity: 0.4;
}
.imageGallery .galleryCaptionInnerText {
color: #ffffff;
letter-spacing: normal;
text-shadow: none;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 24px;
}
.galleryImageBorder.wsite-image {
box-sizing: border-box;
}
/* Forms */
.wsite-form-label {
display: inline-block;
padding: 0 0 5px;
color: #626262;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 26px;
}
.wsite-form-sublabel {
display: none;
}
.wsite-form-radio-container {
margin-bottom: 15px;
}
.form-radio-container {
color: #626262;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: 300;
line-height: normal;
}
.wsite-form-input,
.wsite-search-element-input {
height: auto;
padding: 8px !important;
margin-bottom: 15px;
background: #fafafa;
color: #626262;
border: 1px solid #cccccc;
border-radius: 2px;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: 300;
line-height: normal;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.wsite-form-input:focus,
.wsite-search-element-input:focus {
border-color: #a1a1a1;
}
.wsite-search-element {
margin-bottom: 15px;
}
.wsite-search-element .wsite-search-element-input {
margin-bottom: 0;
}
.form-select,
.wsite-form-field select,
.wsite-com-product-option-groups select {
height: 40px;
padding: 8px;
background: #fafafa url(select-dropdown.png) 97% center no-repeat;
color: #626262;
border: 1px solid #cccccc;
border-radius: 2px;
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: 300;
line-height: normal;
}
.form-select:focus,
.wsite-form-field select:focus,
.wsite-com-product-option-groups select:focus {
border-color: #a1a1a1;
}
.formlist,
.wsite-editor .formlist {
min-height: inherit;
}
/* Form errors */
.wsite-form-container .form-input-error {
border: 1px solid red !important;
}
.form-field-error .wsite-form-radio-container {
border: none;
}
/* Buttons */
.wsite-button,
.wsite-editor .wsite-button {
display: inline-block;
height: auto;
padding: 0;
background: none;
}
.wsite-button:focus,
.wsite-editor .wsite-button:focus {
outline: none;
}
.wsite-button .wsite-button-inner,
.wsite-editor .wsite-button .wsite-button-inner {
display: inline-block;
height: auto;
padding: 8px 16px;
background: #a1a1a1;
color: white !important;
border: 2px solid #a1a1a1;
border-radius: 2px;
text-transform: uppercase;
letter-spacing: 0.05em;
white-space: normal;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
font-weight: 400;
line-height: normal;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.wsite-button-large,
.wsite-editor .wsite-button-large {
display: inline-block;
height: auto;
padding: 0;
background: none;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.wsite-button-large .wsite-button-inner,
.wsite-editor .wsite-button-large .wsite-button-inner {
display: inline-block;
height: auto;
padding: 12px 24px;
background: #a1a1a1;
color: white !important;
border: 2px solid #a1a1a1;
border-radius: 2px;
text-transform: uppercase;
letter-spacing: 0.05em;
white-space: normal;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: normal;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.wsite-button:hover .wsite-button-inner,
.wsite-button-large:hover .wsite-button-inner {
background: transparent;
color: #a1a1a1 !important;
}
.wsite-button-highlight,
.wsite-button-large.wsite-button-highlight,
.wsite-editor .wsite-button-highlight,
.wsite-editor .wsite-button-large.wsite-button-highlight {
background: none;
}
.wsite-button-highlight .wsite-button-inner,
.wsite-button-large.wsite-button-highlight .wsite-button-inner,
.wsite-editor .wsite-button-highlight .wsite-button-inner,
.wsite-editor .wsite-button-large.wsite-button-highlight .wsite-button-inner {
background: transparent;
color: #2a92e5 !important;
border: 2px solid #2a92e5;
}
.wsite-button-highlight:hover .wsite-button-inner,
.wsite-button-large.wsite-button-highlight:hover .wsite-button-inner {
background: #2a92e5;
color: white !important;
}
/* Checkout */
.wsite-com-checkout-section .wsite-form-field select,
.wsite-com-checkout-section .wsite-form-field input,
.wsite-com-checkout-section .wsite-form-field .select2-container {
height: auto;
}
/* Fancybox overrides */
.fancybox-skin {
background: transparent !important;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
}
.fancybox-title {
color: white;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: normal;
line-height: normal;
}
.fancybox-close,
.fancybox-next span,
.fancybox-prev span {
background: none !important;
width: auto;
height: auto;
}
.fancybox-close:before,
.fancybox-next span:before,
.fancybox-prev span:before {
color: white !important;
font-family: 'Open Sans', sans-serif;
font-size: 45px;
font-weight: 400;
line-height: 0.75em;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.fancybox-close:hover:before,
.fancybox-next:hover span:before,
.fancybox-prev:hover span:before {
color: #2a92e5 !important;
}
.fancybox-prev span:before {
position: relative;
left: -10px;
content: '\3008';
}
.fancybox-next span:before {
position: relative;
right: -10px;
content: '\3009';
}
.fancybox-close {
top: 20px;
right: 20px;
}
.fancybox-close:before {
content: '\00D7';
}
/* Landing page */
.landing-page.fade-in .logo,
.landing-page.fade-in .desktop-nav,
.landing-page.fade-in .banner-wrap .container {
opacity: 1;
}
.landing-page.fade-on-scroll .banner {
opacity: 0;
}
.landing-page .logo {
opacity: 0;
-webkit-transition: all 1000ms ease-in;
-moz-transition: all 1000ms ease-in;
-ms-transition: all 1000ms ease-in;
-o-transition: all 1000ms ease-in;
transition: all 1000ms ease-in;
}
.landing-page .desktop-nav {
opacity: 0;
-webkit-transition: all 1000ms ease-in;
-moz-transition: all 1000ms ease-in;
-ms-transition: all 1000ms ease-in;
-o-transition: all 1000ms ease-in;
transition: all 1000ms ease-in;
}
.landing-page .banner-wrap {
min-height: 630px;
}
.landing-page .banner-wrap .container {
overflow-y: hidden;
height: 470px;
opacity: 0;
-webkit-transition: all 1000ms ease-in;
-moz-transition: all 1000ms ease-in;
-ms-transition: all 1000ms ease-in;
-o-transition: all 1000ms ease-in;
transition: all 1000ms ease-in;
}
.landing-page .banner {
margin-top: 40px;
}
/* Tall Header page */
.tall-header-page .banner-wrap {
min-height: 450px;
-webkit-transition: all 250ms ease-in-out;
-moz-transition: all 250ms ease-in-out;
-ms-transition: all 250ms ease-in-out;
-o-transition: all 250ms ease-in-out;
transition: all 250ms ease-in-out;
}
.tall-header-page .banner-wrap .container {
overflow-y: hidden;
height: 290px;
}
.tall-header-page .banner h2 {
font-size: 50px;
line-height: 64px;
padding-bottom: 0;
}
/* Short Header page */
.short-header-page .banner-wrap {
min-height: 240px;
-webkit-transition: all 250ms ease-in-out;
-moz-transition: all 250ms ease-in-out;
-ms-transition: all 250ms ease-in-out;
-o-transition: all 250ms ease-in-out;
transition: all 250ms ease-in-out;
}
.short-header-page .banner-wrap .container {
overflow-y: hidden;
padding: 80px 0 60px;
height: 100px;
}
.short-header-page .banner h2 {
font-size: 40px;
line-height: 52px;
padding-bottom: 0;
}
/* No Header page */
body.page-has-banner.no-header-page .birdseye-header {
position: relative;
top: 0;
padding-top: 10px;
padding-bottom: 10px;
background: rgba(35, 35, 35, 0.95);
background-image: none !important;
}
body.page-has-banner.no-header-page.affix .birdseye-header {
position: fixed;
}
/* Splash page */
.splash-page {
position: relative;
top: 0;
left: 0;
width: 100%;
height: 100%;
min-height: 100vh;
background: none;
color: #ffffff;
box-sizing: border-box;
}
.splash-page .wrapper {
height: 100%;
}
.splash-page .birdseye-header {
padding-top: 20px;
padding-bottom: 20px;
background: none;
background-image: none !important;
box-sizing: border-box;
}
.splash-page .main-wrap {
position: relative;
display: table;
width: 100%;
height: 100%;
min-height: 100vh;
background: url(default-bg.jpg) no-repeat;
background-attachment: fixed !important;
background-size: cover;
box-sizing: border-box;
}
.splash-page .main-wrap:before {
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.2);
content: ' ';
}
.splash-page .main-wrap > .container {
position: relative;
display: table;
height: 100%;
box-sizing: border-box;
}
.splash-page .main-wrap .content-wrap {
display: table-cell;
vertical-align: middle;
}
.splash-page .main-wrap .splash-content {
margin: 0 auto;
}
.splash-page .main-wrap h2 {
color: #ffffff;
font-size: 60px;
}
.splash-page .main-wrap p,
.splash-page .main-wrap div.paragraph {
color: #ffffff;
font-size: 20px;
}
.splash-page .main-wrap .wsite-button .wsite-button-inner,
.splash-page .main-wrap .wsite-button-large.wsite-button .wsite-button-inner {
background: #a1a1a1;
color: white !important;
border: 2px solid #a1a1a1;
font-weight: 600;
}
.splash-page .main-wrap .wsite-button:hover .wsite-button-inner,
.splash-page .main-wrap .wsite-button-large:hover .wsite-button-inner {
background: transparent;
color: #a1a1a1;
}
.splash-page .main-wrap .wsite-button-highlight .wsite-button-inner,
.splash-page .main-wrap .wsite-button-large.wsite-button-highlight .wsite-button-inner {
background: transparent;
color: #ffffff !important;
border: solid 2px #ffffff;
font-weight: 600;
}
.splash-page .main-wrap .wsite-button-highlight:hover .wsite-button-inner,
.splash-page .main-wrap .wsite-button-large.wsite-button-highlight:hover .wsite-button-inner {
background: #ffffff;
color: #232323 !important;
}
.splash-page .footer-wrap,
.splash-page .wsite-footer {
display: none;
}
#blogTable .blog-post .blog-header h2.blog-title {
margin-bottom: 20px !important;
}
#blogTable .blog-post .blog-header h2.blog-title a {
color: #333333;
}
#blogTable .blog-sidebar h2 {
font-size: 18px;
margin-bottom: 10px;
}
#blogTable .blog-sidebar p {
margin-bottom: 20px;
}
.blogCommentReplyWrapper iframe {
height: 560px !important;
}
#commentPostDiv .field input[type=text],
#commentPostDiv .field textarea {
height: auto;
padding: 8px 12px;
background: transparent;
box-sizing: border-box;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
#commentPostDiv .field input[type=text]:focus,
#commentPostDiv .field textarea:focus {
border: 1px solid #2a92e5;
}
#commentSubmit {
height: auto;
padding: 8px 12px;
background: #a1a1a1;
color: white;
border: 2px solid #a1a1a1;
border-radius: 1px;
text-transform: uppercase;
white-space: normal;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: 700;
line-height: normal;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
#commentSubmit span {
background: none;
}
#commentSubmit:hover {
background: transparent;
color: #a1a1a1 !important;
}
#commentArea {
border-top: solid 1px #dadada;
padding-top: 20px;
}
#wsite-content #commentAreaTitle,
#wsite-content #commentReplyTitle,
#commentArea .blogCommentText p,
.main-wrap .blog-sidebar h2 {
padding: 0;
}
#commentAreaTitle,
.blogCommentHeading,
.blogCommentText p {
font-family: inherit;
}
.blogCommentWrap {
padding: 20px;
border: solid 1px #ccc;
border-radius: 6px;
background: none;
}
.blogCommentWrap .blogCommentHeading,
.blogCommentWrap .blogCommentHeadingInner,
.blogCommentWrap .blogCommentAuthor {
background: none !important;
}
.blogCommentHeading .blogCommentAuthor span.name,
.blogCommentHeading .blogCommentAuthor span.email {
color: #2a92e5 !important;
float: none;
line-height: 1;
}
.blogCommentHeading .blogCommentAuthor {
margin-bottom: 10px;
}
.blogCommentHeading {
padding: 0;
margin-bottom: 20px;
}
.blogCommentHeading .blogCommentHeadingInner {
height: auto;
}
.blogCommentHeading .blogCommentAuthor,
.blogCommentHeading .blogCommentDate {
float: none;
text-align: left;
height: auto;
line-height: 1;
padding: 0;
}
.blogCommentHeading .blogCommentAuthor {
text-transform: uppercase;
}
.blogCommentHeading .blogCommentDate {
color: #333;
}
.blogCommentText {
padding: 0;
}
.blogCommentText p {
color: #666;
font-size: 14px;
}
.blogCommentOptions .blog-button {
height: auto;
padding: 8px 12px;
background: #a1a1a1;
color: white;
border: 2px solid #a1a1a1;
border-radius: 1px;
text-transform: uppercase;
white-space: normal;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: 700;
line-height: normal;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.blogCommentOptions .blog-button span {
background: none;
}
.blogCommentOptions .blog-button:hover {
background: transparent;
color: #a1a1a1 !important;
}
/* Store */
#wsite-com-store .wsite-com-category-subcategory-image-wrap {
height: 100%;
border: none;
}
#wsite-com-store .wsite-com-category-subcategory-name {
top: 0;
}
#wsite-com-store .wsite-com-category-subcategory-name-bg {
background-color: rgba(0, 0, 0, 0.2);
background-image: linear-gradient(top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}
#wsite-com-store .wsite-com-category-subcategory-name-text {
position: absolute;
bottom: 0;
width: 100%;
background: none;
box-sizing: border-box;
text-shadow: none;
font-weight: 400;
}
#wsite-com-store #wsite-com-product-title {
font-weight: inherit;
}
#wsite-com-store .wsite-com-category-subcategory-link .wsite-com-category-subcategory-image-wrap,
#wsite-com-store .wsite-com-category-product-link .wsite-com-category-product-image-wrap,
#wsite-com-store .wsite-com-category-product-link-featured .wsite-com-category-product-featured-image-wrap {
opacity: 1;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
#wsite-com-store .wsite-com-category-subcategory-link:hover .wsite-com-category-subcategory-image-wrap,
#wsite-com-store .wsite-com-category-product-link:hover .wsite-com-category-product-image-wrap,
#wsite-com-store .wsite-com-category-product-link-featured:hover .wsite-com-category-product-featured-image-wrap {
opacity: .7;
}
#wsite-com-store #wsite-com-hierarchy ul {
font-size: 16px;
}
#wsite-com-store #wsite-com-hierarchy ul .wsite-link-unselected {
color: #2a92e5;
}
#wsite-com-store #wsite-com-hierarchy ul .wsite-link-unselected:hover {
color: #2180cc;
}
/* Product */
.wsite-product {
border-radius: 0;
box-shadow: none;
}
h2#wsite-com-product-title {
display: block;
clear: both;
font-weight: 400;
}
.wsite-com-product-title {
font-weight: 400;
}
#wsite-com-breadcrumbs.wsite-com-product-breadcrumbs,
#wsite-com-breadcrumbs.wsite-com-category-breadcrumbs {
padding-bottom: 25px;
}
.wsite-com-category-product-group .wsite-com-category-product-wrap,
.wsite-com-category-product-featured-group .wsite-com-category-product-wrap,
.wsite-com-category-product-featured-group .wsite-com-category-product-featured-wrap,
.wsite-com-category-subcategory-group .wsite-com-category-subcategory-wrap {
font-size: 1em;
}
#wsite-com-product-info {
float: left;
width: 50%;
margin-left: 30px;
}
.wsite-product-button-wrap {
display: block;
text-align: left;
}
/* Checkout */
.wsite-com-checkout-section .wsite-form-field select,
.wsite-com-checkout-section .wsite-form-field input,
.wsite-com-checkout-section .wsite-form-field .select2-container {
height: 40px;
}
.wsite-com-checkout-section .wsite-form-field input[type="radio"] {
display: inline-block;
margin: 0 5px 0 0;
width: 16px;
height: 16px;
}
.wsite-com-checkout-section .wsite-form-field select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
/* Media Queries */
@media screen and (max-width: 992px) {
body.page-has-banner .birdseye-header,
body.page-has-banner.affix .birdseye-header,
body.splash-page.affix .birdseye-header {
padding: 5px 20px;
}
body.page-has-banner .birdseye-header .logo,
body.page-has-banner.affix .birdseye-header .logo,
body.splash-page.affix .birdseye-header .logo {
max-height: 40px;
}
body.page-has-banner .birdseye-header .logo img,
body.page-has-banner.affix .birdseye-header .logo img,
body.splash-page.affix .birdseye-header .logo img {
max-height: 40px;
}
body.page-has-banner .main-wrap,
body.page-has-banner.affix .main-wrap,
body.splash-page.affix .main-wrap {
padding-top: 40px;
}
body.cart-full #wsite-mini-cart {
display: block !important;
}
body.cart-full .wsite-footer {
padding-bottom: 70px;
}
.container {
width: 100%;
}
/* Open nav styles */
body.nav-open .mobile-nav {
padding: 50px 0;
max-height: 100vh;
}
body.nav-open .birdseye-header label.hamburger span {
background: transparent;
}
body.nav-open .birdseye-header label.hamburger span:before {
top: 1px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
body.nav-open .birdseye-header label.hamburger span:after {
top: -1px;
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-ms-transform: rotate(135deg);
-o-transform: rotate(135deg);
transform: rotate(135deg);
}
body.splash-page.nav-open .wrapper .main-wrap {
position: relative;
}
/* Header */
.birdseye-header {
min-height: 50px;
padding: 5px 20px;
background: rgba(35, 35, 35, 0.95);
}
.birdseye-header .logo {
overflow: hidden;
padding-right: 25px;
}
.birdseye-header .logo a {
margin-left: 0;
margin-right: 0;
font-size: 1.1em;
line-height: 1.4em;
}
.birdseye-header .logo img {
max-height: 40px;
}
.birdseye-header .logo #wsite-title {
display: block;
max-width: 100%;
font-size: 1.1em !important;
line-height: 1.4em !important;
}
.birdseye-header .container {
min-height: 40px;
max-height: inherit;
}
.birdseye-header label.hamburger {
display: table-cell;
vertical-align: middle;
}
label.hamburger {
position: absolute;
top: 0;
right: 0;
width: 30px;
height: 30px;
padding: 10px;
cursor: pointer;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
label.hamburger span,
label.hamburger span:before,
label.hamburger span:after {
position: relative;
display: block;
width: 22px;
height: 2px;
background: #ffffff;
content: '';
-webkit-transition: all 200ms ease-in-out;
-moz-transition: all 200ms ease-in-out;
-ms-transition: all 200ms ease-in-out;
-o-transition: all 200ms ease-in-out;
transition: all 200ms ease-in-out;
}
label.hamburger span {
top: 9px;
left: 4px;
margin: 5px 0;
}
label.hamburger span:before {
top: -8px;
}
label.hamburger span:after {
bottom: -6px;
}
.desktop-nav {
display: none;
}
.mobile-nav {
position: fixed;
top: 0;
left: 0;
z-index: 12;
display: block;
overflow-x: hidden;
overflow-y: auto;
width: 100%;
height: 100%;
max-height: 0;
padding: 0;
background: rgba(35, 35, 35, 0.95);
box-sizing: border-box;
-webkit-transition: all 300ms cubic-bezier(0, 0.085, 0.68, 0.53);
-moz-transition: all 300ms cubic-bezier(0, 0.085, 0.68, 0.53);
-ms-transition: all 300ms cubic-bezier(0, 0.085, 0.68, 0.53);
-o-transition: all 300ms cubic-bezier(0, 0.085, 0.68, 0.53);
transition: all 300ms cubic-bezier(0, 0.085, 0.68, 0.53);
}
.mobile-nav label.hamburger span {
background: transparent;
}
.mobile-nav label.hamburger span:before {
top: 1px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.mobile-nav label.hamburger span:after {
top: -1px;
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-ms-transform: rotate(135deg);
-o-transform: rotate(135deg);
transform: rotate(135deg);
}
.mobile-nav ul {
float: none;
height: auto;
}
.mobile-nav li {
position: relative;
display: block !important;
margin: 0;
border: none;
text-align: center;
}
.mobile-nav li .wsite-menu-link-styles {
position: relative;
padding: 10px 0;
border: none;
}
.mobile-nav li > a.wsite-menu-item {
position: relative;
padding: 10px 0;
border: none;
}
.mobile-nav li > a.wsite-menu-subitem {
display: block;
position: relative;
padding: 10px 0;
border: none;
color: #a1a1a1;
text-transform: none;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: normal;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.mobile-nav li .wsite-menu-wrap {
display: block !important;
overflow: hidden;
max-height: 0;
-webkit-transition: all 500ms ease-in-out 250ms;
-moz-transition: all 500ms ease-in-out 250ms;
-ms-transition: all 500ms ease-in-out 250ms;
-o-transition: all 500ms ease-in-out 250ms;
transition: all 500ms ease-in-out 250ms;
}
.mobile-nav li .wsite-menu-wrap li.wsite-nav-current > a.wsite-menu-subitem {
background: rgba(0, 0, 0, 0.95);
border: none;
}
.mobile-nav li .wsite-menu-wrap .wsite-menu-arrow {
display: none;
}
.mobile-nav li.wsite-menu-item-wrap#active > a.wsite-menu-item,
.mobile-nav li.wsite-menu-item-wrap > a.wsite-menu-item:hover,
.mobile-nav li.wsite-menu-subitem-wrap > a.wsite-menu-subitem:hover {
background: rgba(0, 0, 0, 0.95);
border: none;
}
.mobile-nav li.has-submenu > span.icon-caret {
position: absolute;
top: 0;
right: 0;
display: block;
width: 20px;
height: 20px;
padding: 10px 20px;
cursor: pointer;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.mobile-nav li.has-submenu > span.icon-caret:before {
position: relative;
display: block;
color: white;
font-size: 24px;
content: '\203A';
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
.mobile-nav li.has-submenu .wsite-menu-wrap.open {
max-height: 1000px;
}
.mobile-nav li.wsite-nav-more {
display: none !important;
}
/* Banner */
.banner-wrap {
padding: 0 40px;
}
.banner-wrap .container {
padding: 110px 0 60px;
}
.banner-wrap .banner h2 {
font-family: 'Raleway', serif;
font-size: 50px;
font-weight: 400;
line-height: 60px;
}
.main-wrap {
padding: 30px 20px;
}
/* Footer */
.footer-wrap .wsite-footer {
width: 100%;
padding: 10px 20px 20px;
box-sizing: border-box;
}
.footer-wrap td.wsite-multicol-col {
margin-bottom: 25px !important;
}
.footer-wrap td.wsite-multicol-col:last-child {
width: 100% !important;
}
/* Mini cart */
#wsite-mini-cart {
position: fixed !important;
top: initial !important;
bottom: 0px;
left: 0 !important;
z-index: 9;
width: 100%;
border: none;
border-top: 1px solid $LinkText;
border-radius: 0;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
#wsite-mini-cart.arrow-top:before,
#wsite-mini-cart.arrow-top:after,
#wsite-mini-cart.arrow-left:before,
#wsite-mini-cart.arrow-left:after {
border: none !important;
}
#wsite-mini-cart .wsite-product-list {
display: none;
}
/* Landing page */
.landing-page .banner-wrap {
min-height: 400px;
max-height: 630px;
}
/* No Header page */
.no-header-page .birdseye-header {
padding: 5px 20px;
}
.no-header-page .main-wrap {
padding-top: 80px;
}
/* Splash page */
.splash-page .birdseye-header {
padding: 5px 20px;
background: rgba(35, 35, 35, 0.95);
}
.splash-page .main-wrap {
padding: 4em 1.5em;
}
.splash-page .main-wrap .splash-content {
width: 100%;
}
.splash-page .main-wrap h2 {
font-family: 'Raleway', serif;
font-size: 2.5em;
font-weight: 400;
line-height: 1.3em;
}
.splash-page .main-wrap p,
.splash-page .main-wrap div.paragraph {
font-size: 16px;
line-height: 26px;
}
}
@media screen and (max-width: 767px) {
.container {
width: 100%;
}
/* Banner */
.banner-wrap {
padding: 0 20px;
box-sizing: border-box;
}
.banner-wrap .container {
padding: 80px 0 30px;
}
.banner-wrap .banner h2 {
padding-bottom: 20px;
font-family: 'Raleway', serif;
font-size: 2.5em;
font-weight: 400;
line-height: 1.25em;
}
/* Headline overrides*/
.banner h2 span,
.banner h2 font,
.banner p span,
.banner p font,
h2 .wsite-headline,
p .wsite-headline-paragraph {
font-size: inherit !important;
line-height: inherit !important;
}
/* Gallery */
.galleryCaptionHolder {
display: none;
}
.fullwidth-mobile {
width: 100% !important;
}
.fullwidth-mobile .galleryCaptionHolder {
display: block !important;
}
/* Table override */
td.wsite-multicol-col {
float: none;
display: block;
width: 100% !important;
box-sizing: border-box;
}
/* Blog */
#blogTable td {
float: none;
display: block;
width: 100%;
margin: 0;
padding: 0;
}
#blogTable td.blog-sidebar {
width: 100%;
}
#blogTable td.blog-sidebar p {
margin-bottom: 0;
}
#blogTable td .blog-body {
float: none !important;
}
#blogTable td .column-blog {
width: 100%;
float: none;
}
#blogTable td .blog-sidebar-separator {
padding: 0;
}
/* Store */
#wsite-com-store {
/* Category Dropdown */
}
#wsite-com-store .wsite-com-category-subcategory-group .wsite-com-column,
#wsite-com-store .wsite-com-category-product-featured-group .wsite-com-column,
#wsite-com-store .wsite-com-category-product-group .wsite-com-column {
float: left;
width: 50% !important;
}
#wsite-com-store .wsite-com-sidebar {
position: relative;
float: none !important;
z-index: 6;
width: 100%;
min-height: 35px;
margin: 0 auto 15px;
padding: 0;
text-align: center;
}
#wsite-com-store .wsite-com-sidebar:before {
display: block;
width: 100%;
padding: 10px 18px;
box-sizing: border-box;
text-align: center;
text-transform: uppercase;
content: 'VIEW ALL CATEGORIES\00a0\00a0\25be';
font-weight: 700;
cursor: pointer;
}
#wsite-com-store .wsite-com-sidebar #wsite-com-hierarchy {
position: relative;
display: block;
overflow: hidden;
width: 100%;
max-height: 0px;
padding: 0;
background: white;
box-sizing: border-box;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
#wsite-com-store .wsite-com-sidebar #wsite-com-hierarchy > ul {
width: 100%;
padding: 0;
}
#wsite-com-store .wsite-com-sidebar #wsite-com-hierarchy > ul li {
margin-bottom: 15px;
}
#wsite-com-store .wsite-com-sidebar.sidebar-expanded {
cursor: default !important;
}
#wsite-com-store .wsite-com-sidebar.sidebar-expanded:before {
content: 'CLOSE\00a0\00a0\25b4';
}
#wsite-com-store .wsite-com-sidebar.sidebar-expanded #wsite-com-hierarchy {
max-height: 100vh;
padding: 10px 0;
}
#wsite-com-store .wsite-com-content-with-sidebar {
margin-left: 0;
}
/* Product */
div.wsite-product-image-wrap {
width: 100% !important;
}
.wsite-product .wsite-product-top {
width: 100%;
}
.wsite-product .wsite-product-button-wrap {
width: auto;
}
#wsite-com-product-images {
float: none;
width: 100%;
margin-bottom: 20px;
}
#wsite-com-product-info {
width: 100%;
margin-left: 0;
}
#wsite-com-product-images-strip .wsite-com-product-images-secondary-outer {
margin-bottom: 10px;
}
/* Search */
#wsite-search-sidebar {
position: relative;
z-index: 6;
overflow-y: hidden;
width: 100%;
max-height: 35px;
padding: 0;
box-sizing: border-box;
-webkit-transition: all 500ms ease-in-out;
-moz-transition: all 500ms ease-in-out;
-ms-transition: all 500ms ease-in-out;
-o-transition: all 500ms ease-in-out;
transition: all 500ms ease-in-out;
}
#wsite-search-sidebar::before {
display: block;
width: 100%;
padding: 10px 18px;
box-sizing: border-box;
text-align: center;
text-transform: uppercase;
content: 'VIEW SEARCH FILTERS\00a0\00a0\25be';
font-weight: 700;
cursor: pointer;
}
#wsite-search-sidebar.sidebar-expanded {
max-height: 1000px;
cursor: default !important;
}
#wsite-search-sidebar.sidebar-expanded:before {
content: 'CLOSE\00a0\00a0\25b4';
}
#wsite-search-header h2 {
width: 100%;
margin-bottom: 10px;
font-size: 1.6em;
}
#wsite-search-form-container {
float: none;
width: 100%;
}
#wsite-search-query {
padding: 2px 10px;
}
#wsite-search-sidebar .wsite-search-facet-price input {
width: 100%;
margin: 10px 0;
padding: 6px!important;
}
#wsite-search-results {
width: 100%;
}
0 #wsite-search-product-results .wsite-search-product-result {
width: 100%;
padding-right: 0;
}
/* Checkout */
#wsite-com-checkout-list .wsite-form-input,
#wsite-com-checkout-summary-list .wsite-form-input {
width: 20px;
}
#wsite-com-checkout-list .wsite-form-input.wsite-coupon-input,
#wsite-com-checkout-summary-list .wsite-form-input.wsite-coupon-input {
width: 95px;
}
#wsite-com-checkout-list td {
padding: 10px 0 20px;
}
#wsite-com-checkout-list .wsite-remove-button,
#wsite-com-checkout-summary-list .wsite-remove-button {
top: 44px;
left: -10px;
}
.wsite-com-continue-shopping .caret {
display: inline-block;
margin-top: 2px;
}
/* Secure Checkout */
.wsite-com-checkout-payment-column,
.wsite-com-checkout-summary-column {
float: none;
width: 100%;
}
}
@media screen and (max-width: 480px) {
/* Store */
#wsite-com-store .wsite-com-category-subcategory-group .wsite-com-column,
#wsite-com-store .wsite-com-category-product-featured-group .wsite-com-column,
#wsite-com-store .wsite-com-category-product-group .wsite-com-column {
float: none;
width: 100% !important;
}
#wsite-com-checkout-list .wsite-com-checkout-item-image,
#wsite-com-checkout-summary-list .wsite-com-checkout-item-image {
display: none;
}
#wsite-com-checkout-list tbody td:first-child,
#wsite-com-checkout-summary-list tbody td:first-child {
width: 0;
padding: 0;
}
#wsite-com-checkout-list .wsite-com-checkout-item-details-inner,
#wsite-com-checkout-summary-list .wsite-com-checkout-item-details-inner {
padding-left: 0;
}
} | 0.263599 | 0.045163 |
@font-face {
font-family: 'notera';
src: url("../vendors/notera/notera_personaluseonly-webfont.woff2") format("woff2"), url("../vendors/notera/notera_personaluseonly-webfont.woff") format("woff");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'autograph';
src: url("../vendors/autograph/autograf_personaluseonly-webfont.woff2") format("woff2"), url("../vendors/autograph/autograf_personaluseonly-webfont.woff") format("woff");
font-weight: normal;
font-style: normal; }
/*Color List*/
/*--------------------------------------------------------------------------------------------*/
/*Prefix Styles*/
.btn.light {
border-color: rgba(0, 0, 0, 0.1); }
.btn.light:hover, .btn.light:focus {
border-color: #2b2e4a; }
.btn-primary {
background: #f77d0a; }
.btn-primary:hover, .btn-primary:focus {
background: #1c1e32; }
.btn-primary.dark {
background: #1c1e32; }
.btn-primary.dark:hover, .btn-primary.dark:focus {
background: #f77d0a; }
.btn-primary.light {
color: #2b2e4a;
background-color: transparent; }
.btn-primary.light:hover, .btn-primary.light:focus {
background: #2b2e4a;
color: #fff; }
.btn-outline {
border-color: #f77d0a;
color: #f77d0a; }
.btn-outline:hover, .btn-outline:focus {
background: #f77d0a;
color: #fff; }
/*--------------------------------------------------------------------------------------------*/
/*Section Title*/
.section-title .this-top {
color: #f77d0a; }
.section-title .this-main {
color: #2b2e4a; }
.section-title p {
color: rgba(43, 46, 74, 0.75); }
.section-title p a {
color: #1ccc8b; }
.section-title.white .this-main {
color: #fff; }
.section-title.white p {
color: #fff; }
/*--------------------------------------------------------------------------------------------*/
/*Top Bar*/
.top-bar {
background: #1c1e32; }
.welcome-texts {
color: #d66200; }
.social-lists-wSearch li:first-child {
border-color: rgba(255, 255, 255, 0.15); }
.social-lists-wSearch li a {
color: #fff; }
.social-lists-wSearch li a:hover, .social-lists-wSearch li a:focus {
background: none;
color: #d66200; }
/*--------------------------------------------------------------------------------------------*/
.info-bar {
background: #22243b; }
.info-media {
color: #fff; }
.info-media .media-left {
color: #d66200; }
.info-media .this-bottom {
color: #1ccc8b; }
.cart-count {
color: #fff; }
.cart-count .badge {
background: #d66200; }
.nav-hider {
color: #fff; }
.nav-hider[aria-expanded="true"] {
color: #d66200; }
/*--------------------------------------------------------------------------------------------*/
.main-navigation {
border-color: #f77d0a;
background: none; }
.main-navigation #main-nav .navbar-nav {
background: #f77d0a; }
.main-navigation #main-nav .navbar-nav li a {
color: #292c45; }
.main-navigation #main-nav .navbar-nav li a:hover, .main-navigation #main-nav .navbar-nav li a:focus {
color: #fff; }
.main-navigation #main-nav .navbar-nav .dropdown-menu {
background: #f77d0a; }
.main-navigation #main-nav .navbar-nav .dropdown-menu li + li {
border-color: #d66200; }
.main-navigation #main-nav .navbar-nav .dropdown-menu li a:hover, .main-navigation #main-nav .navbar-nav .dropdown-menu li a:focus {
background: none; }
.main-navigation #main-nav .navbar-nav .active a {
color: #fff;
background: none; }
.main-navigation #main-nav .navbar-nav .active a span {
border-top-color: #fff; }
.main-navigation #main-nav .navbar-nav .active .dropdown-menu li a {
color: #292c45; }
/*--------------------------------------------------------------------------------------------*/
.slide-banner {
color: #FFF; }
.slide-banner .this-cursive span {
color: #1ccc8b; }
/*--------------------------------------------------------------------------------------------*/
.fold-banner .inner {
margin: 0;
position: relative; }
.fold-banner .top-text {
color: #2b2e4a; }
.fold-banner .bottom-text {
color: #f77d0a; }
/*--------------------------------------------------------------------------------------------*/
.car-finder-form .inner {
background: #fff; }
.car-finder-form .form-title {
color: #2b2e4a; }
.car-finder-form .form-control {
background: #f5f6f7; }
.car-finder-form .form-control.placeholder {
color: rgba(43, 46, 74, 0.3); }
.car-finder-form .form-control:-moz-placeholder {
color: rgba(43, 46, 74, 0.3); }
.car-finder-form .form-control::-moz-placeholder {
color: rgba(43, 46, 74, 0.3); }
.car-finder-form .form-control::-webkit-input-placeholder {
color: rgba(43, 46, 74, 0.3); }
.car-finder-form .input-group-addon button {
color: #2b2e4a;
background: #f5f6f7; }
.car-finder-form .return {
color: #2b2e4a; }
.car-finder-form .this-foot .col-xs-4 + .col-xs-4 {
border-color: #eee; }
.car-finder-form .date .this-hd {
color: rgba(43, 46, 74, 0.3); }
.car-finder-form .day-month .btn {
color: #2b2e4a; }
.car-finder-form .month-year .month .btn {
border-color: #f5f6f7; }
.car-finder-form .month-year .btn {
color: rgba(43, 46, 74, 0.3); }
.car-finder-form .time {
color: #2b2e4a; }
.car-finder-form .time .btn {
color: #2b2e4a; }
.car-finder-form #driver + label {
color: #2b2e4a; }
/*--------------------------------------------------------------------------------------------*/
.feature {
color: #2b2e4a; }
.feature p {
color: rgba(43, 46, 74, 0.75); }
/*--------------------------------------------------------------------------------------------*/
.fleets2 {
background: #2b2e4a; }
.fleets2:after {
background: #f8f8f8; }
.fleet.sale-offer .inner {
border-top-color: #f77d0a; }
.fleet .rent {
color: #f77d0a; }
.fleet .rent small {
color: #ccc; }
.fleet .reviews {
color: #767785; }
.fleet .reviews i {
color: #ccc; }
.fleet .reviews i.starred {
color: #1ccc8b; }
.fleet .vehicle-title {
color: rgba(43, 46, 74, 0.75); }
.fleet2 .inner {
background: #fff;
border-top-color: #fff; }
.fleet2 .vehicle-title:after {
background: #eee; }
.fleet2 .specification {
border-color: #eee;
background: #f8f8f8; }
.fleet2 .specification ul li {
color: rgba(43, 46, 74, 0.75); }
.fleet2 .details-page {
color: #fff;
background: #f77d0a; }
/*--------------------------------------------------------------------------------------------*/
.update-partners {
background: #f8f8f8; }
.updates .stars {
color: #1ccc8b; }
.updates .update-text {
color: #232323; }
.updates .update-text .this-title {
color: #fb8516;
border-color: #fb8516; }
.updates .update-text .price {
color: #fb8516; }
.updates .update-text .save {
color: #1ccc8b; }
/*--------------------------------------------------------------------------------------------*/
.service-offer .inner:after {
background: rgba(0, 0, 0, 0.6); }
.service-offer .inner:hover:after, .service-offer .inner:focus:after {
background: rgba(247, 125, 10, 0.8); }
.service-offer .text-holder {
color: #fff; }
.service-offer .this-area {
color: rgba(255, 255, 255, 0.6); }
/*--------------------------------------------------------------------------------------------*/
.funfacts .inner {
background: #2b2e4a;
background: -webkit-linear-gradient(top, #2a2d49 0%, #2b2e4a 3px) 0 3px;
background: -moz-linear-gradient(top, #2a2d49 0%, #2b2e4a 3px) 0 3px;
background: linear-gradient(top, #2a2d49 0%, #2b2e4a 3px) 0 3px; }
.fact {
color: #f77d0a; }
.fact .this-about {
color: #fff; }
/*--------------------------------------------------------------------------------------------*/
.banner01.row {
color: #fff; }
.banner01.row:after {
background: #2b2e4a; }
.banner01.row .this-cursive {
color: #1ccc8b; }
.banner01.row .this-deliver u {
color: #f77d0a; }
/*--------------------------------------------------------------------------------------------*/
/*2 Banner Prefolder*/
.banner2-prefolder:after {
background: #1a1b2e; }
.banner2-prefolder .inner {
background-image: -moz-linear-gradient(0deg, white 0%, white 100%);
background-image: -webkit-linear-gradient(0deg, white 0%, white 100%);
background-image: -ms-linear-gradient(0deg, white 0%, white 100%); }
.banner2-prefolder .this-left:before {
background-image: -moz-linear-gradient(0deg, #0b0e2c 0%, #0b0e2c 1%, rgba(34, 36, 59, 0.61961) 100%);
background-image: -webkit-linear-gradient(0deg, #0b0e2c 0%, #0b0e2c 1%, rgba(34, 36, 59, 0.61961) 100%);
background-image: -ms-linear-gradient(0deg, #0b0e2c 0%, #0b0e2c 1%, rgba(34, 36, 59, 0.61961) 100%); }
.banner2-prefolder .this-right:before {
background-image: -moz-linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.7) 60%, rgba(34, 36, 59, 0.50196) 100%);
background-image: -webkit-linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.7) 60%, rgba(34, 36, 59, 0.50196) 100%);
background-image: -ms-linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.7) 60%, rgba(34, 36, 59, 0.50196) 100%); }
.banner2-prefolder .this-right .this-texts .this-title2 {
color: #22243b; }
.banner2-prefolder .this-right .this-texts p {
color: rgba(34, 36, 59, 0.75); }
.banner2-prefolder .this-title {
color: #f77d0a; }
.banner2-prefolder .this-title2 {
color: #fff; }
.banner2-prefolder p {
color: rgba(255, 255, 255, 0.5); }
.read-more {
color: #f77d0a; }
/*--------------------------------------------------------------------------------------------*/
.site-footer {
background: #1a1b2e; }
.top-footer {
border-color: #131422; }
.top-footer .widget-about p {
color: rgba(255, 255, 255, 0.25); }
.top-footer .widget-title {
color: #fff; }
.social-nav li a {
color: #fff; }
.social-nav li:nth-child(1) a {
background: #3b5998; }
.social-nav li:nth-child(1) a + .tooltip .tooltip-arrow {
border-top-color: #3b5998; }
.social-nav li:nth-child(1) a + .tooltip .tooltip-inner {
background: #3b5998; }
.social-nav li:nth-child(2) a {
background: #00aced; }
.social-nav li:nth-child(2) a + .tooltip .tooltip-arrow {
border-top-color: #00aced; }
.social-nav li:nth-child(2) a + .tooltip .tooltip-inner {
background: #00aced; }
.social-nav li:nth-child(3) a {
background: #dd4b39; }
.social-nav li:nth-child(3) a + .tooltip .tooltip-arrow {
border-top-color: #dd4b39; }
.social-nav li:nth-child(3) a + .tooltip .tooltip-inner {
background: #dd4b39; }
.social-nav li:nth-child(4) a {
background: #007bb5; }
.social-nav li:nth-child(4) a + .tooltip .tooltip-arrow {
border-top-color: #007bb5; }
.social-nav li:nth-child(4) a + .tooltip .tooltip-inner {
background: #007bb5; }
.social-nav li:nth-child(5) a {
background: #32506d; }
.social-nav li:nth-child(5) a + .tooltip .tooltip-arrow {
border-top-color: #32506d; }
.social-nav li:nth-child(5) a + .tooltip .tooltip-inner {
background: #32506d; }
.bottom-footer {
border-color: #242643;
color: #fff; }
.bottom-footer a {
color: #1ccc8b; }
.bottom-footer a:last-child {
color: #f77d0a; }
.foot-nav li {
color: rgba(255, 255, 255, 0.25); }
.foot-nav li i {
color: #f77d0a; }
.foot-nav li a {
color: rgba(255, 255, 255, 0.25); }
.foot-nav li a:hover, .foot-nav li a:focus {
color: #f77d0a; }
.foot-nav.style3 li {
color: rgba(26, 27, 46, 0.75); }
.foot-nav.style3 li i {
color: #f77d0a; }
.foot-nav.style3 li a {
color: rgba(26, 27, 46, 0.75); }
.foot-nav.style3 li a:hover, .foot-nav.style3 li a:focus {
color: #f77d0a; }
/*--------------------------------------------------------------------------------------------*/
.page-cover {
background-color: #22243b; }
.page-cover .breadcrumb li {
color: #f77d0a; }
.page-cover .breadcrumb li + li:before {
color: #f77d0a; }
.page-cover .breadcrumb li a {
color: #fff; }
.page-title {
color: #fff; }
/*--------------------------------------------------------------------------------------------*/
.wrapper-404 .this-message {
color: #2b2e4a; }
.wrapper-404 .this-desc {
color: rgba(43, 46, 74, 0.75); }
.wrapper-404 .this-desc a {
color: #f77d0a; }
/*--------------------------------------------------------------------------------------------*/
.contactForm .input-group {
color: rgba(204, 204, 204, 0.1); }
.contactForm .form-control {
color: #fff; }
.contactForm .form-control.placeholder {
color: rgba(255, 255, 255, 0.25); }
.contactForm .form-control:-moz-placeholder {
color: rgba(255, 255, 255, 0.25); }
.contactForm .form-control::-moz-placeholder {
color: rgba(255, 255, 255, 0.25); }
.contactForm .form-control::-webkit-input-placeholder {
color: rgba(255, 255, 255, 0.25); }
.contactForm .input-group-addon {
color: #f77d0a; }
.contactForm .contact-checkbox + label {
color: #fff; }
.contactForm .contact-checkbox + label:before {
color: #f77d0a; }
.foot-contct-form .foot-msg {
color: rgba(255, 255, 255, 0.2); }
.foot-contct-form .foot-msg span {
color: #1ccc8b; }
.contct-form .form-control {
color: rgba(255, 255, 255, 0.75); }
.contct-form .form-control.placeholder {
color: rgba(255, 255, 255, 0.75); }
.contct-form .form-control:-moz-placeholder {
color: rgba(255, 255, 255, 0.75); }
.contct-form .form-control::-moz-placeholder {
color: rgba(255, 255, 255, 0.75); }
.contct-form .form-control::-webkit-input-placeholder {
color: rgba(255, 255, 255, 0.75); }
.contct-form .textarea-label {
color: rgba(255, 255, 255, 0.75); }
.contct-form .textarea-label i {
color: #f77d0a; }
.contct-form .contact-checkbox + label:before {
color: #1ccc8b; }
.contct-form textarea.form-control {
border-color: rgba(255, 255, 255, 0.06); }
.contact-form-info .error {
color: rgba(255, 255, 255, 0.2); }
#success, #error {
background: rgba(28, 30, 50, 0.5); }
#success span, #error span {
color: #fff; }
.contact-form-area {
background: rgba(26, 27, 46, 0.95); }
.form-area .this-inner {
border-color: rgba(255, 255, 255, 0.06); }
.form-area .this-title {
color: #fff; }
.contact-addresses .media-left .hover-box {
background: rgba(26, 27, 46, 0.7); }
.contact-addresses .this-title {
color: #232323; }
/*--------------------------------------------------------------------------------------------*/
.popular-fleets-tabs {
background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%); }
.popular-fleets-tabs li a {
color: #ccc; }
.popular-fleets-tabs li a:hover, .popular-fleets-tabs li a:focus {
color: #2b2e4a; }
.popular-fleets-tabs li.active a {
color: #2b2e4a; }
.popular-fleets-tabs li.active a:hover, .popular-fleets-tabs li.active a:focus {
color: #2b2e4a; }
.tab-switcher li {
color: #2b2e4a; }
.tab-switcher li:hover, .tab-switcher li:focus {
color: #f77d0a; }
/*Popular Fleet*/
.popular-fleet .inner {
border-top-color: #fbfbfb; }
.popular-fleet .media {
background: #fbfbfb; }
.popular-fleet .vehicle-title:before {
background: rgba(28, 204, 139, 0.05); }
/*--------------------------------------------------------------------------------------------*/
/*Banner*/
.banner3 {
background-color: #fb8516; }
.banner3 .inner {
border-color: rgba(255, 255, 255, 0.5);
color: #fff; }
/*--------------------------------------------------------------------------------------------*/
.testimonial-row {
background: #f9f9f9; }
.testimonial-carousel .owl-dot span {
background: rgba(43, 46, 74, 0.1); }
.testimonial-carousel .owl-dot.active {
background: rgba(247, 125, 10, 0.3); }
.testimonial-carousel .owl-dot.active span {
background: #f77d0a; }
.testimonial .inner {
background: #fff; }
.testimonial p {
color: rgba(43, 46, 74, 0.75); }
.testimonial p span {
color: #1ccc8b; }
.testimonial .stars {
color: #1ccc8b; }
.testimonial .client {
color: #f77d0a; }
.testimonial .client small {
color: #c7c7c7; }
.testimonial .client-img {
background: #f9f9f9; }
/*--------------------------------------------------------------------------------------------*/
.post-title {
color: #2b2e4a; }
.post-title:hover, .post-title:focus {
color: #f77d0a; }
.post-meta a {
color: #f77d0a; }
.post-meta a + a {
border-left-color: rgba(221, 221, 221, 0.75); }
.post-meta .date {
color: rgba(43, 46, 74, 0.35); }
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*# sourceMappingURL=theme.css.map */ | user_assets/front_end_assets/css/theme.css | @font-face {
font-family: 'notera';
src: url("../vendors/notera/notera_personaluseonly-webfont.woff2") format("woff2"), url("../vendors/notera/notera_personaluseonly-webfont.woff") format("woff");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'autograph';
src: url("../vendors/autograph/autograf_personaluseonly-webfont.woff2") format("woff2"), url("../vendors/autograph/autograf_personaluseonly-webfont.woff") format("woff");
font-weight: normal;
font-style: normal; }
/*Color List*/
/*--------------------------------------------------------------------------------------------*/
/*Prefix Styles*/
.btn.light {
border-color: rgba(0, 0, 0, 0.1); }
.btn.light:hover, .btn.light:focus {
border-color: #2b2e4a; }
.btn-primary {
background: #f77d0a; }
.btn-primary:hover, .btn-primary:focus {
background: #1c1e32; }
.btn-primary.dark {
background: #1c1e32; }
.btn-primary.dark:hover, .btn-primary.dark:focus {
background: #f77d0a; }
.btn-primary.light {
color: #2b2e4a;
background-color: transparent; }
.btn-primary.light:hover, .btn-primary.light:focus {
background: #2b2e4a;
color: #fff; }
.btn-outline {
border-color: #f77d0a;
color: #f77d0a; }
.btn-outline:hover, .btn-outline:focus {
background: #f77d0a;
color: #fff; }
/*--------------------------------------------------------------------------------------------*/
/*Section Title*/
.section-title .this-top {
color: #f77d0a; }
.section-title .this-main {
color: #2b2e4a; }
.section-title p {
color: rgba(43, 46, 74, 0.75); }
.section-title p a {
color: #1ccc8b; }
.section-title.white .this-main {
color: #fff; }
.section-title.white p {
color: #fff; }
/*--------------------------------------------------------------------------------------------*/
/*Top Bar*/
.top-bar {
background: #1c1e32; }
.welcome-texts {
color: #d66200; }
.social-lists-wSearch li:first-child {
border-color: rgba(255, 255, 255, 0.15); }
.social-lists-wSearch li a {
color: #fff; }
.social-lists-wSearch li a:hover, .social-lists-wSearch li a:focus {
background: none;
color: #d66200; }
/*--------------------------------------------------------------------------------------------*/
.info-bar {
background: #22243b; }
.info-media {
color: #fff; }
.info-media .media-left {
color: #d66200; }
.info-media .this-bottom {
color: #1ccc8b; }
.cart-count {
color: #fff; }
.cart-count .badge {
background: #d66200; }
.nav-hider {
color: #fff; }
.nav-hider[aria-expanded="true"] {
color: #d66200; }
/*--------------------------------------------------------------------------------------------*/
.main-navigation {
border-color: #f77d0a;
background: none; }
.main-navigation #main-nav .navbar-nav {
background: #f77d0a; }
.main-navigation #main-nav .navbar-nav li a {
color: #292c45; }
.main-navigation #main-nav .navbar-nav li a:hover, .main-navigation #main-nav .navbar-nav li a:focus {
color: #fff; }
.main-navigation #main-nav .navbar-nav .dropdown-menu {
background: #f77d0a; }
.main-navigation #main-nav .navbar-nav .dropdown-menu li + li {
border-color: #d66200; }
.main-navigation #main-nav .navbar-nav .dropdown-menu li a:hover, .main-navigation #main-nav .navbar-nav .dropdown-menu li a:focus {
background: none; }
.main-navigation #main-nav .navbar-nav .active a {
color: #fff;
background: none; }
.main-navigation #main-nav .navbar-nav .active a span {
border-top-color: #fff; }
.main-navigation #main-nav .navbar-nav .active .dropdown-menu li a {
color: #292c45; }
/*--------------------------------------------------------------------------------------------*/
.slide-banner {
color: #FFF; }
.slide-banner .this-cursive span {
color: #1ccc8b; }
/*--------------------------------------------------------------------------------------------*/
.fold-banner .inner {
margin: 0;
position: relative; }
.fold-banner .top-text {
color: #2b2e4a; }
.fold-banner .bottom-text {
color: #f77d0a; }
/*--------------------------------------------------------------------------------------------*/
.car-finder-form .inner {
background: #fff; }
.car-finder-form .form-title {
color: #2b2e4a; }
.car-finder-form .form-control {
background: #f5f6f7; }
.car-finder-form .form-control.placeholder {
color: rgba(43, 46, 74, 0.3); }
.car-finder-form .form-control:-moz-placeholder {
color: rgba(43, 46, 74, 0.3); }
.car-finder-form .form-control::-moz-placeholder {
color: rgba(43, 46, 74, 0.3); }
.car-finder-form .form-control::-webkit-input-placeholder {
color: rgba(43, 46, 74, 0.3); }
.car-finder-form .input-group-addon button {
color: #2b2e4a;
background: #f5f6f7; }
.car-finder-form .return {
color: #2b2e4a; }
.car-finder-form .this-foot .col-xs-4 + .col-xs-4 {
border-color: #eee; }
.car-finder-form .date .this-hd {
color: rgba(43, 46, 74, 0.3); }
.car-finder-form .day-month .btn {
color: #2b2e4a; }
.car-finder-form .month-year .month .btn {
border-color: #f5f6f7; }
.car-finder-form .month-year .btn {
color: rgba(43, 46, 74, 0.3); }
.car-finder-form .time {
color: #2b2e4a; }
.car-finder-form .time .btn {
color: #2b2e4a; }
.car-finder-form #driver + label {
color: #2b2e4a; }
/*--------------------------------------------------------------------------------------------*/
.feature {
color: #2b2e4a; }
.feature p {
color: rgba(43, 46, 74, 0.75); }
/*--------------------------------------------------------------------------------------------*/
.fleets2 {
background: #2b2e4a; }
.fleets2:after {
background: #f8f8f8; }
.fleet.sale-offer .inner {
border-top-color: #f77d0a; }
.fleet .rent {
color: #f77d0a; }
.fleet .rent small {
color: #ccc; }
.fleet .reviews {
color: #767785; }
.fleet .reviews i {
color: #ccc; }
.fleet .reviews i.starred {
color: #1ccc8b; }
.fleet .vehicle-title {
color: rgba(43, 46, 74, 0.75); }
.fleet2 .inner {
background: #fff;
border-top-color: #fff; }
.fleet2 .vehicle-title:after {
background: #eee; }
.fleet2 .specification {
border-color: #eee;
background: #f8f8f8; }
.fleet2 .specification ul li {
color: rgba(43, 46, 74, 0.75); }
.fleet2 .details-page {
color: #fff;
background: #f77d0a; }
/*--------------------------------------------------------------------------------------------*/
.update-partners {
background: #f8f8f8; }
.updates .stars {
color: #1ccc8b; }
.updates .update-text {
color: #232323; }
.updates .update-text .this-title {
color: #fb8516;
border-color: #fb8516; }
.updates .update-text .price {
color: #fb8516; }
.updates .update-text .save {
color: #1ccc8b; }
/*--------------------------------------------------------------------------------------------*/
.service-offer .inner:after {
background: rgba(0, 0, 0, 0.6); }
.service-offer .inner:hover:after, .service-offer .inner:focus:after {
background: rgba(247, 125, 10, 0.8); }
.service-offer .text-holder {
color: #fff; }
.service-offer .this-area {
color: rgba(255, 255, 255, 0.6); }
/*--------------------------------------------------------------------------------------------*/
.funfacts .inner {
background: #2b2e4a;
background: -webkit-linear-gradient(top, #2a2d49 0%, #2b2e4a 3px) 0 3px;
background: -moz-linear-gradient(top, #2a2d49 0%, #2b2e4a 3px) 0 3px;
background: linear-gradient(top, #2a2d49 0%, #2b2e4a 3px) 0 3px; }
.fact {
color: #f77d0a; }
.fact .this-about {
color: #fff; }
/*--------------------------------------------------------------------------------------------*/
.banner01.row {
color: #fff; }
.banner01.row:after {
background: #2b2e4a; }
.banner01.row .this-cursive {
color: #1ccc8b; }
.banner01.row .this-deliver u {
color: #f77d0a; }
/*--------------------------------------------------------------------------------------------*/
/*2 Banner Prefolder*/
.banner2-prefolder:after {
background: #1a1b2e; }
.banner2-prefolder .inner {
background-image: -moz-linear-gradient(0deg, white 0%, white 100%);
background-image: -webkit-linear-gradient(0deg, white 0%, white 100%);
background-image: -ms-linear-gradient(0deg, white 0%, white 100%); }
.banner2-prefolder .this-left:before {
background-image: -moz-linear-gradient(0deg, #0b0e2c 0%, #0b0e2c 1%, rgba(34, 36, 59, 0.61961) 100%);
background-image: -webkit-linear-gradient(0deg, #0b0e2c 0%, #0b0e2c 1%, rgba(34, 36, 59, 0.61961) 100%);
background-image: -ms-linear-gradient(0deg, #0b0e2c 0%, #0b0e2c 1%, rgba(34, 36, 59, 0.61961) 100%); }
.banner2-prefolder .this-right:before {
background-image: -moz-linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.7) 60%, rgba(34, 36, 59, 0.50196) 100%);
background-image: -webkit-linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.7) 60%, rgba(34, 36, 59, 0.50196) 100%);
background-image: -ms-linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.7) 60%, rgba(34, 36, 59, 0.50196) 100%); }
.banner2-prefolder .this-right .this-texts .this-title2 {
color: #22243b; }
.banner2-prefolder .this-right .this-texts p {
color: rgba(34, 36, 59, 0.75); }
.banner2-prefolder .this-title {
color: #f77d0a; }
.banner2-prefolder .this-title2 {
color: #fff; }
.banner2-prefolder p {
color: rgba(255, 255, 255, 0.5); }
.read-more {
color: #f77d0a; }
/*--------------------------------------------------------------------------------------------*/
.site-footer {
background: #1a1b2e; }
.top-footer {
border-color: #131422; }
.top-footer .widget-about p {
color: rgba(255, 255, 255, 0.25); }
.top-footer .widget-title {
color: #fff; }
.social-nav li a {
color: #fff; }
.social-nav li:nth-child(1) a {
background: #3b5998; }
.social-nav li:nth-child(1) a + .tooltip .tooltip-arrow {
border-top-color: #3b5998; }
.social-nav li:nth-child(1) a + .tooltip .tooltip-inner {
background: #3b5998; }
.social-nav li:nth-child(2) a {
background: #00aced; }
.social-nav li:nth-child(2) a + .tooltip .tooltip-arrow {
border-top-color: #00aced; }
.social-nav li:nth-child(2) a + .tooltip .tooltip-inner {
background: #00aced; }
.social-nav li:nth-child(3) a {
background: #dd4b39; }
.social-nav li:nth-child(3) a + .tooltip .tooltip-arrow {
border-top-color: #dd4b39; }
.social-nav li:nth-child(3) a + .tooltip .tooltip-inner {
background: #dd4b39; }
.social-nav li:nth-child(4) a {
background: #007bb5; }
.social-nav li:nth-child(4) a + .tooltip .tooltip-arrow {
border-top-color: #007bb5; }
.social-nav li:nth-child(4) a + .tooltip .tooltip-inner {
background: #007bb5; }
.social-nav li:nth-child(5) a {
background: #32506d; }
.social-nav li:nth-child(5) a + .tooltip .tooltip-arrow {
border-top-color: #32506d; }
.social-nav li:nth-child(5) a + .tooltip .tooltip-inner {
background: #32506d; }
.bottom-footer {
border-color: #242643;
color: #fff; }
.bottom-footer a {
color: #1ccc8b; }
.bottom-footer a:last-child {
color: #f77d0a; }
.foot-nav li {
color: rgba(255, 255, 255, 0.25); }
.foot-nav li i {
color: #f77d0a; }
.foot-nav li a {
color: rgba(255, 255, 255, 0.25); }
.foot-nav li a:hover, .foot-nav li a:focus {
color: #f77d0a; }
.foot-nav.style3 li {
color: rgba(26, 27, 46, 0.75); }
.foot-nav.style3 li i {
color: #f77d0a; }
.foot-nav.style3 li a {
color: rgba(26, 27, 46, 0.75); }
.foot-nav.style3 li a:hover, .foot-nav.style3 li a:focus {
color: #f77d0a; }
/*--------------------------------------------------------------------------------------------*/
.page-cover {
background-color: #22243b; }
.page-cover .breadcrumb li {
color: #f77d0a; }
.page-cover .breadcrumb li + li:before {
color: #f77d0a; }
.page-cover .breadcrumb li a {
color: #fff; }
.page-title {
color: #fff; }
/*--------------------------------------------------------------------------------------------*/
.wrapper-404 .this-message {
color: #2b2e4a; }
.wrapper-404 .this-desc {
color: rgba(43, 46, 74, 0.75); }
.wrapper-404 .this-desc a {
color: #f77d0a; }
/*--------------------------------------------------------------------------------------------*/
.contactForm .input-group {
color: rgba(204, 204, 204, 0.1); }
.contactForm .form-control {
color: #fff; }
.contactForm .form-control.placeholder {
color: rgba(255, 255, 255, 0.25); }
.contactForm .form-control:-moz-placeholder {
color: rgba(255, 255, 255, 0.25); }
.contactForm .form-control::-moz-placeholder {
color: rgba(255, 255, 255, 0.25); }
.contactForm .form-control::-webkit-input-placeholder {
color: rgba(255, 255, 255, 0.25); }
.contactForm .input-group-addon {
color: #f77d0a; }
.contactForm .contact-checkbox + label {
color: #fff; }
.contactForm .contact-checkbox + label:before {
color: #f77d0a; }
.foot-contct-form .foot-msg {
color: rgba(255, 255, 255, 0.2); }
.foot-contct-form .foot-msg span {
color: #1ccc8b; }
.contct-form .form-control {
color: rgba(255, 255, 255, 0.75); }
.contct-form .form-control.placeholder {
color: rgba(255, 255, 255, 0.75); }
.contct-form .form-control:-moz-placeholder {
color: rgba(255, 255, 255, 0.75); }
.contct-form .form-control::-moz-placeholder {
color: rgba(255, 255, 255, 0.75); }
.contct-form .form-control::-webkit-input-placeholder {
color: rgba(255, 255, 255, 0.75); }
.contct-form .textarea-label {
color: rgba(255, 255, 255, 0.75); }
.contct-form .textarea-label i {
color: #f77d0a; }
.contct-form .contact-checkbox + label:before {
color: #1ccc8b; }
.contct-form textarea.form-control {
border-color: rgba(255, 255, 255, 0.06); }
.contact-form-info .error {
color: rgba(255, 255, 255, 0.2); }
#success, #error {
background: rgba(28, 30, 50, 0.5); }
#success span, #error span {
color: #fff; }
.contact-form-area {
background: rgba(26, 27, 46, 0.95); }
.form-area .this-inner {
border-color: rgba(255, 255, 255, 0.06); }
.form-area .this-title {
color: #fff; }
.contact-addresses .media-left .hover-box {
background: rgba(26, 27, 46, 0.7); }
.contact-addresses .this-title {
color: #232323; }
/*--------------------------------------------------------------------------------------------*/
.popular-fleets-tabs {
background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%); }
.popular-fleets-tabs li a {
color: #ccc; }
.popular-fleets-tabs li a:hover, .popular-fleets-tabs li a:focus {
color: #2b2e4a; }
.popular-fleets-tabs li.active a {
color: #2b2e4a; }
.popular-fleets-tabs li.active a:hover, .popular-fleets-tabs li.active a:focus {
color: #2b2e4a; }
.tab-switcher li {
color: #2b2e4a; }
.tab-switcher li:hover, .tab-switcher li:focus {
color: #f77d0a; }
/*Popular Fleet*/
.popular-fleet .inner {
border-top-color: #fbfbfb; }
.popular-fleet .media {
background: #fbfbfb; }
.popular-fleet .vehicle-title:before {
background: rgba(28, 204, 139, 0.05); }
/*--------------------------------------------------------------------------------------------*/
/*Banner*/
.banner3 {
background-color: #fb8516; }
.banner3 .inner {
border-color: rgba(255, 255, 255, 0.5);
color: #fff; }
/*--------------------------------------------------------------------------------------------*/
.testimonial-row {
background: #f9f9f9; }
.testimonial-carousel .owl-dot span {
background: rgba(43, 46, 74, 0.1); }
.testimonial-carousel .owl-dot.active {
background: rgba(247, 125, 10, 0.3); }
.testimonial-carousel .owl-dot.active span {
background: #f77d0a; }
.testimonial .inner {
background: #fff; }
.testimonial p {
color: rgba(43, 46, 74, 0.75); }
.testimonial p span {
color: #1ccc8b; }
.testimonial .stars {
color: #1ccc8b; }
.testimonial .client {
color: #f77d0a; }
.testimonial .client small {
color: #c7c7c7; }
.testimonial .client-img {
background: #f9f9f9; }
/*--------------------------------------------------------------------------------------------*/
.post-title {
color: #2b2e4a; }
.post-title:hover, .post-title:focus {
color: #f77d0a; }
.post-meta a {
color: #f77d0a; }
.post-meta a + a {
border-left-color: rgba(221, 221, 221, 0.75); }
.post-meta .date {
color: rgba(43, 46, 74, 0.35); }
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*# sourceMappingURL=theme.css.map */ | 0.292494 | 0.058105 |
.backend-section{
position: relative;
}
.backend-wrapper{
position: absolute;
top:0;
left:0;
right:0;
bottom:0;
margin: auto;
width: 80%;
height: 715px;
/*background: #47D3E5;*/
}
.backend-content-list{
width: 68%;
height: 715px;
/*background: #ab7aad;*/
float:left;
}
.backend-content-list ul{
width: 98%;
height: 700px;
/*background: #db8992;*/
margin-top: 8px;
overflow: hidden;
}
.backend-content-list ul li{
width: 100%;
height: 140px;
border-bottom: 1px solid rgb(238,238,238);
margin-bottom: 38px;
}
.backend-content-list ul li a{
display: inline-block;
width: 70%;
height: 40px;
/*background: blue;*/
line-height: 40px;
float: left;
color:#000000;
font-size: 25px;
font-family: Georgia,Times New Roman,Times,Songti SC,serif;
border-bottom:1px solid #FFFFFF;
}
.backend-content-list ul li a:hover{
border-bottom:1px solid black;
}
.backend-content-list ul li .content{
width: 70%;
height: 60px;
/*background: cornsilk;*/
float:left;
text-overflow:ellipsis;
word-break:break-all;
word-wrap:break-word;
overflow: hidden;
font-family: Georgia,Times New Roman,Times,Songti SC,serif;
font-size: 18px;
color:#999;
margin-top: 10px;
line-height: 30px;
}
.backend-content-list ul li .date{
width: 70%;
height: 30px;
float: left;
line-height: 30px;
text-align: right;
color:#999;
font-size: 20px;
font-family: Georgia,Times New Roman,Times,Songti SC,serif;
}
.backend-content-list ul li .img{
width: 28%;
height: 140px;
/*background: cyan;*/
float: right;
margin-top:-110px;
}
.backend-content-list ul li .img img{
width: 100%;
height: 140px;
}
.backend-navigation{
width: 30%;
height: 715px;
float: right;
}
.backend-navigation .date-box{
width: 100%;
height: 200px;
background: #6ba78c;
margin-bottom: 5px;
}
.backend-navigation .link-list{
width: 100%;
height: 400px;
/*background: #db8992;*/
margin-bottom: 5px;
}
.backend-navigation .link-list li{
margin: 0 0 20px 20px;
text-overflow:ellipsis;
word-break:break-all;
word-wrap:break-word;
overflow: hidden;
}
.backend-navigation .link-list li span{
font-size: 20px;
color:#000;
}
.backend-navigation .link-list li a{
font-family: Georgia,Times New Roman,Times,Songti SC,serif;
font-size: 20px;
color:black;
}
.backend-navigation .link-more{
position: relative;
width: 100%;
height: 100px;
border-radius: 2%;
}
.link-more-box{
position: absolute;
top:0;
left:0;
right:0;
bottom:0;
margin: auto;
width: 100%;
height: 50px;
background: #eeeeee;
text-align: center;
border-radius: 4%;
}
.link-more-box a{
width: 80px;
height: 50px;
font-size: 20px;
font-family: Georgia,Times New Roman,Times,Songti SC,serif;
}
.link-more-box >a>span:nth-child(1){
display: inline-block;
font-size: 25px;
color:#000;
margin:15px 0 0 100px;
float: left;
}
.link-more-box>a>div{
float: right;
margin: 5px 127px 0 0;
}
.link-more-box>a>div>span{
font-size: 40px;
color:#7794ce;
} | assets/css/backend/index.css | .backend-section{
position: relative;
}
.backend-wrapper{
position: absolute;
top:0;
left:0;
right:0;
bottom:0;
margin: auto;
width: 80%;
height: 715px;
/*background: #47D3E5;*/
}
.backend-content-list{
width: 68%;
height: 715px;
/*background: #ab7aad;*/
float:left;
}
.backend-content-list ul{
width: 98%;
height: 700px;
/*background: #db8992;*/
margin-top: 8px;
overflow: hidden;
}
.backend-content-list ul li{
width: 100%;
height: 140px;
border-bottom: 1px solid rgb(238,238,238);
margin-bottom: 38px;
}
.backend-content-list ul li a{
display: inline-block;
width: 70%;
height: 40px;
/*background: blue;*/
line-height: 40px;
float: left;
color:#000000;
font-size: 25px;
font-family: Georgia,Times New Roman,Times,Songti SC,serif;
border-bottom:1px solid #FFFFFF;
}
.backend-content-list ul li a:hover{
border-bottom:1px solid black;
}
.backend-content-list ul li .content{
width: 70%;
height: 60px;
/*background: cornsilk;*/
float:left;
text-overflow:ellipsis;
word-break:break-all;
word-wrap:break-word;
overflow: hidden;
font-family: Georgia,Times New Roman,Times,Songti SC,serif;
font-size: 18px;
color:#999;
margin-top: 10px;
line-height: 30px;
}
.backend-content-list ul li .date{
width: 70%;
height: 30px;
float: left;
line-height: 30px;
text-align: right;
color:#999;
font-size: 20px;
font-family: Georgia,Times New Roman,Times,Songti SC,serif;
}
.backend-content-list ul li .img{
width: 28%;
height: 140px;
/*background: cyan;*/
float: right;
margin-top:-110px;
}
.backend-content-list ul li .img img{
width: 100%;
height: 140px;
}
.backend-navigation{
width: 30%;
height: 715px;
float: right;
}
.backend-navigation .date-box{
width: 100%;
height: 200px;
background: #6ba78c;
margin-bottom: 5px;
}
.backend-navigation .link-list{
width: 100%;
height: 400px;
/*background: #db8992;*/
margin-bottom: 5px;
}
.backend-navigation .link-list li{
margin: 0 0 20px 20px;
text-overflow:ellipsis;
word-break:break-all;
word-wrap:break-word;
overflow: hidden;
}
.backend-navigation .link-list li span{
font-size: 20px;
color:#000;
}
.backend-navigation .link-list li a{
font-family: Georgia,Times New Roman,Times,Songti SC,serif;
font-size: 20px;
color:black;
}
.backend-navigation .link-more{
position: relative;
width: 100%;
height: 100px;
border-radius: 2%;
}
.link-more-box{
position: absolute;
top:0;
left:0;
right:0;
bottom:0;
margin: auto;
width: 100%;
height: 50px;
background: #eeeeee;
text-align: center;
border-radius: 4%;
}
.link-more-box a{
width: 80px;
height: 50px;
font-size: 20px;
font-family: Georgia,Times New Roman,Times,Songti SC,serif;
}
.link-more-box >a>span:nth-child(1){
display: inline-block;
font-size: 25px;
color:#000;
margin:15px 0 0 100px;
float: left;
}
.link-more-box>a>div{
float: right;
margin: 5px 127px 0 0;
}
.link-more-box>a>div>span{
font-size: 40px;
color:#7794ce;
} | 0.395251 | 0.047847 |
/* width */
::-webkit-scrollbar {
width: 7px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background : #888;
/* background : goldenrod; */
border-radius: 4px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* ==================================== */
textarea {
min-height: 400px;
}
/* bs overrwite */
.badge{
vertical-align: text-bottom;
}
.tab-content {
min-height: 100%;
/* max-height: 100vh; */
overflow-y: auto;
}
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
background-color: var(--bs-dark);
}
.nav-pills .nav-link:not(.active) {
color: var(--bs-danger);
}
.nav-pills .nav-link:not(.active) i {
color: var(--bs-dark);
}
.nav-pills .nav-link#v-pills-compose-tab.active {
background-color: var(--bs-primary);
}
.nav-pills .nav-link#v-pills-compose-tab:not(.active) {
background-color: transparent;
color : var(--bs-gray);
border : 3px solid cornflowerblue;
}
.nav-pills .nav-link:not(.active):hover {
background-color: var(--bs-gray-200);
}
.toast,
.toast-container {
z-index: 99991;
}
/* ================================ */
/* email items */
/* dropdown triangle */
.email-item .dropdown-toggle::after {
display: none;
}
.email-item {
border-bottom: 1px solid rgba(0, 0, 0, .15) !important;
border-left : 3px solid var(--bs-light);
transition : box-shadow 0.2s ease;
}
.list-group .email-item.unread {
background-color: var(--bs-white);
}
.list-group .email-item:hover {
background-color: var(--bs-gray-100);
box-shadow : 0rem .1rem 0.2rem 0.1rem rgba(0, 0, 0, .15) !important;
border-left : 3px solid var(--bs-danger);
}
.list-group .email-item.read {
background-color: var(--bs-gray-200);
}
.list-group .email-item:last-child {
border-bottom: 0 !important;
}
/* simple animation */
.slide-out {
animation: slideout 0.3s ease 0s forwards;
}
@keyframes slideout {
from {
opacity : 1;
transform: translate(0);
}
to {
opacity : 0;
transform: translate(100%);
}
}
.slide-in {
animation: slidein 0.3s ease 0s forwards;
}
@keyframes slidein {
from {
opacity : 0;
transform: translate(100%);
}
to {
opacity : 1;
transform: translate(0);
}
} | mail/static/mail/styles.css |
/* width */
::-webkit-scrollbar {
width: 7px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background : #888;
/* background : goldenrod; */
border-radius: 4px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* ==================================== */
textarea {
min-height: 400px;
}
/* bs overrwite */
.badge{
vertical-align: text-bottom;
}
.tab-content {
min-height: 100%;
/* max-height: 100vh; */
overflow-y: auto;
}
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
background-color: var(--bs-dark);
}
.nav-pills .nav-link:not(.active) {
color: var(--bs-danger);
}
.nav-pills .nav-link:not(.active) i {
color: var(--bs-dark);
}
.nav-pills .nav-link#v-pills-compose-tab.active {
background-color: var(--bs-primary);
}
.nav-pills .nav-link#v-pills-compose-tab:not(.active) {
background-color: transparent;
color : var(--bs-gray);
border : 3px solid cornflowerblue;
}
.nav-pills .nav-link:not(.active):hover {
background-color: var(--bs-gray-200);
}
.toast,
.toast-container {
z-index: 99991;
}
/* ================================ */
/* email items */
/* dropdown triangle */
.email-item .dropdown-toggle::after {
display: none;
}
.email-item {
border-bottom: 1px solid rgba(0, 0, 0, .15) !important;
border-left : 3px solid var(--bs-light);
transition : box-shadow 0.2s ease;
}
.list-group .email-item.unread {
background-color: var(--bs-white);
}
.list-group .email-item:hover {
background-color: var(--bs-gray-100);
box-shadow : 0rem .1rem 0.2rem 0.1rem rgba(0, 0, 0, .15) !important;
border-left : 3px solid var(--bs-danger);
}
.list-group .email-item.read {
background-color: var(--bs-gray-200);
}
.list-group .email-item:last-child {
border-bottom: 0 !important;
}
/* simple animation */
.slide-out {
animation: slideout 0.3s ease 0s forwards;
}
@keyframes slideout {
from {
opacity : 1;
transform: translate(0);
}
to {
opacity : 0;
transform: translate(100%);
}
}
.slide-in {
animation: slidein 0.3s ease 0s forwards;
}
@keyframes slidein {
from {
opacity : 0;
transform: translate(100%);
}
to {
opacity : 1;
transform: translate(0);
}
} | 0.397471 | 0.051726 |
*{
box-sizing: border-box;
}
body {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 1em;
font-weight: 300;
line-height: 1.5;
position: relative;
}
.row {
margin: 0px;
padding: 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
}
.row-middle {
align-items: center;
}
.days-column {
flex-grow: 1;
flex-basis: 0;
max-width: 100%;
}
.calendar {
display: block;
position: relative;
width: 75%;
background: white;
border: 3px solid darkred;
height: auto;
margin:0 auto;
}
.calendar .days {
text-transform: uppercase;
font-weight: 800;
color: darkred;
font-size: 80%;
padding: .75em 0;
border-top: 6px solid darkred;
border-bottom: 3px solid darkred;
cursor: default;
}
.calendar .body .cell {
position: relative;
height: 5em;
border-right: 1px solid darkred;
overflow: hidden;
cursor: pointer;
background: whitesmoke;
transition: 0.25s ease-out;
}
.calendar .body .cell:hover {
background: rgb(255, 165, 0);
transition: 0.5s ease-out;
}
.calendar .body .selected {
border-right: 3px solid darkred;
border-left: 3px solid darkred;
border-top: 3px solid darkred;
border-bottom: 6px solid darkred;
border-image-slice: 1;
}
.calendar .body .row {
border-bottom: 1px solid darkred;
}
.calendar .body .cell .date-number {
position: absolute;
font-size: 90%;
line-height: 1;
top: .75em;
right: .75em;
font-weight: 700;
}
.calendar .body .cell:hover .date-number, .calendar .body .selected .date-number {
visibility:hidden;
}
.calendar .body .disabled {
color: rgba(194, 111, 9, 0.541);
pointer-events: none;
}
.calendar .body .cell .large-date {
font-weight: 950;
line-height: 1.2;
color: darkred;
opacity: 0;
transition: .5s ease-in;
font-size: 3.5em;
position: absolute;
right: 0.5em;
letter-spacing: -.07em;
}
.calendar .body .cell:hover .large-date, .calendar .body .selected .large-date {
opacity: 0.2;
transition: .5s ease-in;
}
.calendar .body .column {
flex-grow: 0;
flex-basis: calc(100%/7);
width: calc(100%/7);
} | src/CalApp.css | *{
box-sizing: border-box;
}
body {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 1em;
font-weight: 300;
line-height: 1.5;
position: relative;
}
.row {
margin: 0px;
padding: 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
}
.row-middle {
align-items: center;
}
.days-column {
flex-grow: 1;
flex-basis: 0;
max-width: 100%;
}
.calendar {
display: block;
position: relative;
width: 75%;
background: white;
border: 3px solid darkred;
height: auto;
margin:0 auto;
}
.calendar .days {
text-transform: uppercase;
font-weight: 800;
color: darkred;
font-size: 80%;
padding: .75em 0;
border-top: 6px solid darkred;
border-bottom: 3px solid darkred;
cursor: default;
}
.calendar .body .cell {
position: relative;
height: 5em;
border-right: 1px solid darkred;
overflow: hidden;
cursor: pointer;
background: whitesmoke;
transition: 0.25s ease-out;
}
.calendar .body .cell:hover {
background: rgb(255, 165, 0);
transition: 0.5s ease-out;
}
.calendar .body .selected {
border-right: 3px solid darkred;
border-left: 3px solid darkred;
border-top: 3px solid darkred;
border-bottom: 6px solid darkred;
border-image-slice: 1;
}
.calendar .body .row {
border-bottom: 1px solid darkred;
}
.calendar .body .cell .date-number {
position: absolute;
font-size: 90%;
line-height: 1;
top: .75em;
right: .75em;
font-weight: 700;
}
.calendar .body .cell:hover .date-number, .calendar .body .selected .date-number {
visibility:hidden;
}
.calendar .body .disabled {
color: rgba(194, 111, 9, 0.541);
pointer-events: none;
}
.calendar .body .cell .large-date {
font-weight: 950;
line-height: 1.2;
color: darkred;
opacity: 0;
transition: .5s ease-in;
font-size: 3.5em;
position: absolute;
right: 0.5em;
letter-spacing: -.07em;
}
.calendar .body .cell:hover .large-date, .calendar .body .selected .large-date {
opacity: 0.2;
transition: .5s ease-in;
}
.calendar .body .column {
flex-grow: 0;
flex-basis: calc(100%/7);
width: calc(100%/7);
} | 0.697815 | 0.079997 |
:root {
--color-main: #ffca28;
--color-menu:#fdd835;
--color-light: #fffeac;
--color-dark: #c79a00;
--color-app-background: white;
--color-text: #000000;
}
/*reset all elements*/
*, html, body {
padding: 0;
border: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
.app-body {
background-color: var(--color-app-background);
padding: 0;
border: 0;
margin: 0 auto;
}
@media screen and (min-width: 960px) {
.app-body {
width: 90%;
}
}
/*header section*/
.app-header {
background-color: var(--color-main);
}
.app-header-title {
font-family: 'Lobster', cursive;
text-align: center;
padding: 1em 0 .5em .5em;
font-size: 40px;
}
.app-header-title span {
font-family: 'Italianno', cursive;
font-size: .6em;
display:none;
font-weight: normal;
}
@media screen and (min-width: 450px) {
.app-header-title span {
display:inline;
}
}
/*navbar section*/
.app-navbar {
background-color: var(--color-menu);
width: 100%;
}
.app-navbar ul {
list-style: none;
width: 100%;
text-align: left;
}
.app-navbar li {
text-transform: uppercase;
padding: 1.5em 2em;
font-size: 0.85em;
width: 100%;
}
.app-navbar li:hover {
background-color: var(--color-light);
}
li.selected {
border-bottom: 6px solid black;
}
@media screen and (min-width: 450px) {
.app-navbar li {
display: inline-block;
width: auto;
}
}
/*footer*/
footer {
background-color: var(--color-main);
padding: 4em 0.2em 0.2em 0.2em;
}
footer a {
color:black;
font-size:0.8em;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
footer a::after {
content: '\25B4';
}
/*main section */
.main-app {
background-color: var(--color-light);
padding: 3em;
}
.main-app h2 {
font-family: 'Lobster', cursive;
text-align: center;
font-size: 2.2em;
margin-bottom: 1em;
}
.main-app img {
display: block;
width: 45%;
height: auto;
margin: 0 auto;
background-color: white;
border: 1px solid var(--color-dark);
} | styles/style.css | :root {
--color-main: #ffca28;
--color-menu:#fdd835;
--color-light: #fffeac;
--color-dark: #c79a00;
--color-app-background: white;
--color-text: #000000;
}
/*reset all elements*/
*, html, body {
padding: 0;
border: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
.app-body {
background-color: var(--color-app-background);
padding: 0;
border: 0;
margin: 0 auto;
}
@media screen and (min-width: 960px) {
.app-body {
width: 90%;
}
}
/*header section*/
.app-header {
background-color: var(--color-main);
}
.app-header-title {
font-family: 'Lobster', cursive;
text-align: center;
padding: 1em 0 .5em .5em;
font-size: 40px;
}
.app-header-title span {
font-family: 'Italianno', cursive;
font-size: .6em;
display:none;
font-weight: normal;
}
@media screen and (min-width: 450px) {
.app-header-title span {
display:inline;
}
}
/*navbar section*/
.app-navbar {
background-color: var(--color-menu);
width: 100%;
}
.app-navbar ul {
list-style: none;
width: 100%;
text-align: left;
}
.app-navbar li {
text-transform: uppercase;
padding: 1.5em 2em;
font-size: 0.85em;
width: 100%;
}
.app-navbar li:hover {
background-color: var(--color-light);
}
li.selected {
border-bottom: 6px solid black;
}
@media screen and (min-width: 450px) {
.app-navbar li {
display: inline-block;
width: auto;
}
}
/*footer*/
footer {
background-color: var(--color-main);
padding: 4em 0.2em 0.2em 0.2em;
}
footer a {
color:black;
font-size:0.8em;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
footer a::after {
content: '\25B4';
}
/*main section */
.main-app {
background-color: var(--color-light);
padding: 3em;
}
.main-app h2 {
font-family: 'Lobster', cursive;
text-align: center;
font-size: 2.2em;
margin-bottom: 1em;
}
.main-app img {
display: block;
width: 45%;
height: auto;
margin: 0 auto;
background-color: white;
border: 1px solid var(--color-dark);
} | 0.460289 | 0.151938 |
height: 40vh;
border-bottom: solid 1px;
background: rgba(168, 28, 3, 0.507);
}
#cover-letter-card {
min-height: 36vh;
background: rgba(168, 28, 3, 0.507);
}
#npm-resume-card {
min-height: 36vh;
border-left: solid 1px;
background: rgba(168, 28, 3, 0.507);
}
#resume-card-content {
min-height: 32vh;
display: flex;
flex-direction: column;
}
#cover-letter-content {
min-height: 28vh;
display: flex;
flex-direction: column;
}
#npm-resume-content {
min-height: 28vh;
display: flex;
flex-direction: column;
}
.image-pointer{
cursor: pointer;
}
.docs-card-footer {
flex: 1;
}
.card-footer {
border-top: none;
color: white;
}
.card-footer-item:not(:last-child) {
border-right: none;
}
/*Hover Effect*/
/* https://tympanus.net/Development/HoverEffectIdeas/index.html https://github.com/codrops/HoverEffectIdeas */
figure {
position: relative;
overflow: hidden;
min-width: 320px;
text-align: center;
cursor: pointer;
}
figure figcaption {
padding: 2em;
color: #fff;
text-transform: uppercase;
font-size: 1.25em;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
figure figcaption::before,
figure figcaption::after {
pointer-events: none;
}
figure figcaption,
figure figcaption > a {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
figure figcaption > a {
z-index: 1000;
text-indent: 200%;
white-space: nowrap;
font-size: 0;
opacity: 0;
}
figure .doc-group-font{
word-spacing: -0.15em;
font-weight: 300;
font-size: 2em;
}
figure h2 span {
font-weight: 800;
}
figure h2,
figure p {
margin: 0;
}
figure p {
letter-spacing: 1px;
margin: 1.5em;
}
figure.effect-oscar {
background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
background: linear-gradient(45deg, #22682a 0%,#9b4a1b 40%,#3a342a 100%);
}
figure.effect-oscar figcaption {
padding: 3em;
background-color: rgba(161, 159, 159, 0.349);
-webkit-transition: background-color 0.35s;
transition: background-color 0.35s;
}
figure.effect-oscar figcaption::before {
position: absolute;
top: 30px;
right: 30px;
bottom: 30px;
left: 30px;
border: 1px solid #fff;
content: '';
}
figure.effect-oscar h2 {
margin: 0% 0 10px 0;
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0);
}
figure.effect-oscar figcaption::before,
figure.effect-oscar p {
opacity: 0;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: scale(0);
transform: scale(0);
}
figure.effect-oscar:hover .doc-group-font {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
figure.effect-oscar:hover figcaption::before,
figure.effect-oscar:hover p {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
figure.effect-oscar:hover figcaption {
background-color: rgba(58,52,42,0);
} | src/components/doc-group.css | height: 40vh;
border-bottom: solid 1px;
background: rgba(168, 28, 3, 0.507);
}
#cover-letter-card {
min-height: 36vh;
background: rgba(168, 28, 3, 0.507);
}
#npm-resume-card {
min-height: 36vh;
border-left: solid 1px;
background: rgba(168, 28, 3, 0.507);
}
#resume-card-content {
min-height: 32vh;
display: flex;
flex-direction: column;
}
#cover-letter-content {
min-height: 28vh;
display: flex;
flex-direction: column;
}
#npm-resume-content {
min-height: 28vh;
display: flex;
flex-direction: column;
}
.image-pointer{
cursor: pointer;
}
.docs-card-footer {
flex: 1;
}
.card-footer {
border-top: none;
color: white;
}
.card-footer-item:not(:last-child) {
border-right: none;
}
/*Hover Effect*/
/* https://tympanus.net/Development/HoverEffectIdeas/index.html https://github.com/codrops/HoverEffectIdeas */
figure {
position: relative;
overflow: hidden;
min-width: 320px;
text-align: center;
cursor: pointer;
}
figure figcaption {
padding: 2em;
color: #fff;
text-transform: uppercase;
font-size: 1.25em;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
figure figcaption::before,
figure figcaption::after {
pointer-events: none;
}
figure figcaption,
figure figcaption > a {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
figure figcaption > a {
z-index: 1000;
text-indent: 200%;
white-space: nowrap;
font-size: 0;
opacity: 0;
}
figure .doc-group-font{
word-spacing: -0.15em;
font-weight: 300;
font-size: 2em;
}
figure h2 span {
font-weight: 800;
}
figure h2,
figure p {
margin: 0;
}
figure p {
letter-spacing: 1px;
margin: 1.5em;
}
figure.effect-oscar {
background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
background: linear-gradient(45deg, #22682a 0%,#9b4a1b 40%,#3a342a 100%);
}
figure.effect-oscar figcaption {
padding: 3em;
background-color: rgba(161, 159, 159, 0.349);
-webkit-transition: background-color 0.35s;
transition: background-color 0.35s;
}
figure.effect-oscar figcaption::before {
position: absolute;
top: 30px;
right: 30px;
bottom: 30px;
left: 30px;
border: 1px solid #fff;
content: '';
}
figure.effect-oscar h2 {
margin: 0% 0 10px 0;
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0);
}
figure.effect-oscar figcaption::before,
figure.effect-oscar p {
opacity: 0;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: scale(0);
transform: scale(0);
}
figure.effect-oscar:hover .doc-group-font {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
figure.effect-oscar:hover figcaption::before,
figure.effect-oscar:hover p {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
figure.effect-oscar:hover figcaption {
background-color: rgba(58,52,42,0);
} | 0.588298 | 0.11304 |
@import url("https://use.fontawesome.com/releases/v5.15.2/css/all.css");
body {
margin: 0;
padding: 0;
font-family: 'Helvetica', sans-serif;
}
.container {
width: 1200px;
margin: 0 auto;
}
header {
display: flex;
height: 50px;
max-width: 1200px;
padding: 5px;
margin: 0 auto;
justify-content: space-between;
}
.header {
-webkit-box-shadow: 4px 1px 17px 4px rgba(0, 0, 0, 0.44);
box-shadow: 4px 1px 17px 4px rgba(0, 0, 0, 0.44);
position: relative;
z-index: 1;
background: #4ac5b6;
}
.logo-wrapper {
display: flex;
align-items: center;
height: 100%;
}
.logo-wrapper img {
height: 70%;
}
nav ul {
display: flex;
list-style: none;
}
nav li {
margin-right: 20px;
}
nav li a {
color: white;
font-size: 14px;
text-decoration: none;
}
.lecturer {
color: white;
background: #ffbc02;
text-align: center;
padding: 40px 0 60px;
margin-bottom: 50px;
}
.lecturer h2 {
margin: 0 0 20px;
font-size: 32px;
}
.lecturer p {
font-size: 14px;
width: 30%;
margin: 0 auto;
}
.directors {
padding: 20px 300px;
display: flex;
max-width: 1200px;
margin: 0 auto;
}
.director-info h3 {
margin: 0;
color: #5bccc4
}
.director-title {
font-size: 12px;
margin: 0;
}
.director-info p {
margin-bottom: 0;
color: gray;
}
.director {
margin-right: 50px;
display: flex;
flex-basis: 50%;
}
.image-wrapper {
margin-right: 20px;
}
.image-wrapper img {
width: 150px;
height: 150px;
border-radius: 50%;
border: 5px solid #4ac5b6;
}
.lecturers {
display: flex;
flex-direction: row;
width: 80%;
margin: 100px auto 0 auto;
justify-content: center;
}
.lecture-picture {
margin-right: 100px;
}
.lecture-picture h3 {
text-align: center;
color: #4ac5b6;
margin-bottom: 2px;
}
.lecture-picture p {
font-size: 14px;
color: gray;
margin: 0;
text-align: center;
}
.softuni-team {
background: #71c1f9;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
margin-top: 50px;
padding-bottom: 100px;
}
.softuni-team input {
background: transparent;
color: white;
padding: 12px;
border: 1px solid white;
border-radius: 8px;
}
input::placeholder {
color: white;
}
form button {
background: #ff9c00;
border: none;
border-radius: 12px;
color: white;
text-transform: uppercase;
padding: 10px;
-webkit-box-shadow: 4px 5px 17px 1px rgba(0, 0, 0, 0.62);
box-shadow: 4px 5px 17px 1px rgba(0, 0, 0, 0.62);
}
.softuni-team h2 {
margin-top: 40px;
}
.softuni-team::before {
background: #9dd3fc;
content: '';
width: 100%;
height: 10px;
}
.softuni-team::after {
background: #9c9c9c;
content: '';
width: 100%;
height: 10px;
position: relative;
top: 100px;
}
.footer-wrapper {
background: #616161;
}
footer {
display: flex;
color: white;
max-width: 1200px;
margin: 0 auto;
justify-content: space-between;
padding: 15px 0 15px 0;
}
footer ul {
list-style: none;
padding-left: 0;
}
footer li {
margin-bottom: 5px;
}
footer li a {
color: white;
text-decoration: none;
font-size: 12px;
}
footer i {
font-size: 20px;
margin-right: 5px;
} | HTML&CSS/exam 28/03. Kids Trainers/style.css | @import url("https://use.fontawesome.com/releases/v5.15.2/css/all.css");
body {
margin: 0;
padding: 0;
font-family: 'Helvetica', sans-serif;
}
.container {
width: 1200px;
margin: 0 auto;
}
header {
display: flex;
height: 50px;
max-width: 1200px;
padding: 5px;
margin: 0 auto;
justify-content: space-between;
}
.header {
-webkit-box-shadow: 4px 1px 17px 4px rgba(0, 0, 0, 0.44);
box-shadow: 4px 1px 17px 4px rgba(0, 0, 0, 0.44);
position: relative;
z-index: 1;
background: #4ac5b6;
}
.logo-wrapper {
display: flex;
align-items: center;
height: 100%;
}
.logo-wrapper img {
height: 70%;
}
nav ul {
display: flex;
list-style: none;
}
nav li {
margin-right: 20px;
}
nav li a {
color: white;
font-size: 14px;
text-decoration: none;
}
.lecturer {
color: white;
background: #ffbc02;
text-align: center;
padding: 40px 0 60px;
margin-bottom: 50px;
}
.lecturer h2 {
margin: 0 0 20px;
font-size: 32px;
}
.lecturer p {
font-size: 14px;
width: 30%;
margin: 0 auto;
}
.directors {
padding: 20px 300px;
display: flex;
max-width: 1200px;
margin: 0 auto;
}
.director-info h3 {
margin: 0;
color: #5bccc4
}
.director-title {
font-size: 12px;
margin: 0;
}
.director-info p {
margin-bottom: 0;
color: gray;
}
.director {
margin-right: 50px;
display: flex;
flex-basis: 50%;
}
.image-wrapper {
margin-right: 20px;
}
.image-wrapper img {
width: 150px;
height: 150px;
border-radius: 50%;
border: 5px solid #4ac5b6;
}
.lecturers {
display: flex;
flex-direction: row;
width: 80%;
margin: 100px auto 0 auto;
justify-content: center;
}
.lecture-picture {
margin-right: 100px;
}
.lecture-picture h3 {
text-align: center;
color: #4ac5b6;
margin-bottom: 2px;
}
.lecture-picture p {
font-size: 14px;
color: gray;
margin: 0;
text-align: center;
}
.softuni-team {
background: #71c1f9;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
margin-top: 50px;
padding-bottom: 100px;
}
.softuni-team input {
background: transparent;
color: white;
padding: 12px;
border: 1px solid white;
border-radius: 8px;
}
input::placeholder {
color: white;
}
form button {
background: #ff9c00;
border: none;
border-radius: 12px;
color: white;
text-transform: uppercase;
padding: 10px;
-webkit-box-shadow: 4px 5px 17px 1px rgba(0, 0, 0, 0.62);
box-shadow: 4px 5px 17px 1px rgba(0, 0, 0, 0.62);
}
.softuni-team h2 {
margin-top: 40px;
}
.softuni-team::before {
background: #9dd3fc;
content: '';
width: 100%;
height: 10px;
}
.softuni-team::after {
background: #9c9c9c;
content: '';
width: 100%;
height: 10px;
position: relative;
top: 100px;
}
.footer-wrapper {
background: #616161;
}
footer {
display: flex;
color: white;
max-width: 1200px;
margin: 0 auto;
justify-content: space-between;
padding: 15px 0 15px 0;
}
footer ul {
list-style: none;
padding-left: 0;
}
footer li {
margin-bottom: 5px;
}
footer li a {
color: white;
text-decoration: none;
font-size: 12px;
}
footer i {
font-size: 20px;
margin-right: 5px;
} | 0.415254 | 0.108142 |
.simple_allcaps { text-transform: uppercase; }
.simple_blackletter { font-family: fantasy; }
.simple_bold { font-weight: bold; }
.simple_bottombraced { padding-bottom: 2pt; border-bottom: dashed gray 2pt; }
.simple_block { display:block; }
.simple_boxed { padding: 2pt; border: solid black 1pt; }
.simple_centre { text-align: center; }
.simple_cursive { font-family: cursive; }
.simple_doublestrikethrough { text-decoration: line-through; color: red; }
.simple_doubleunderline { text-decoration: underline; color: red; }
.simple_dropcap { font-size : 6em; font-family: cursive; font-weight : bold; vertical-align: top; height: 1em; line-height: 1em; float : left; width : 1em; color : #c00; margin: 0em; padding: 0px; }
.simple_float { float:right; display: block; font-size: smaller; clear: right; padding: 4pt; width: 15%; }
.simple_hyphen { }
.simple_inline { display:inline; }
.simple_italic { font-style: italic; }
.simple_justify { text-align: justify; }
.simple_larger { font-size: larger; }
.simple_left { text-align: left; }
.simple_leftbraced { padding-left: 2pt; border-left: dotted gray 2pt; }
.simple_letterspace { letter-spacing: 0.5em; }
.simple_literal { font-family:monospace; white-space:pre; }
.simple_normalstyle { font-style:roman; }
.simple_normalweight { font-weight:normal; }
.simple_right { text-align: right; }
.simple_rightbraced { padding-right: 2pt; border-right: dotted gray 2pt; }
.simple_rotateleft { -webkit-transform: rotate(90deg); transform: rotate(90deg); }
.simple_rotateright { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); }
.simple_rules { border: 1px solid black; padding: 2px;border-collapse:collapse;border-spacing:0; }
.simple_smallcaps { font-variant: small-caps; }
.simple_smaller { font-size: smaller; }
.simple_strikethrough { text-decoration: line-through; }
.simple_subscript { vertical-align: bottom; font-size: smaller; }
.simple_superscript { vertical-align: super; font-size: smaller; }
.simple_topbraced { padding-top: 2pt; border-top: dotted gray 2pt; }
.simple_typewriter { font-family:monospace; }
.simple_underline { text-decoration: underline; }
.simple_wavyunderline { text-decoration: underline; text-decoration-style: wavy; }
/* Model rendition styles */
.tei-supplied2:before { content:"<"; }
.tei-supplied2:after { content:">"; }
.tei-supplied3:before { content:"["; }
.tei-supplied3:after { content:"]"; }
.tei-supplied4:before { content:"("; }
.tei-supplied4:after { content:")"; }
.tei-supplied5:before { content:"{"; }
.tei-supplied5:after { content:"}"; }
.tei-signed1 { text-align: right; }
.tei-signed2 { font-style: italic; }
.tei-pb1 { color: #CCC; }
.tei-hi1 { font-style: italic; }
.tei-hi2 { font-style: italic; }
.tei-code { font-family:monospace }
.tei-note2 { margin-left: 10px;margin-right: 10px; font-size:smaller; }
.tei-note3:before { content:" ["; }
.tei-note3:after { content:"] "; }
.tei-note3 { font-size:small; }
.tei-del { text-decoration: line-through; }
.tei-trailer { color: green; }
.tei-speaker { font-style:italic; }
.tei-figDesc:before { content: '[..'; }
.tei-figDesc:after { content: '..]'; }
.tei-figDesc { color: grey;font-style:italic; }
.tei-foreign { font-style:italic; }
.tei-email { font-family:monospace }
.tei-floatingText { margin: 6pt; border: solid black 1pt; }
.tei-table { font-size: smaller; background-color: #F0F0F0; }
.tei-address { margin-top: 2em; margin-left: 2em; margin-right: 2em; margin-bottom: 2em; }
.tei-author1:before { content: 'By '; }
.tei-castList { list-style: ordered; }
.tei-l { margin-left: 1em; }
.tei-closer { margin-top: 1em; margin-left: 1em; margin-left: 1em; }
.tei-p { text-align: justify; }
.tei-q1 { margin-left: 10px; margin-right: 10px; }
.tei-q2:before { content: '‘'; }
.tei-q2:after { content: '’'; }
.tei-q3 { margin-left: 10px; margin-right: 10px; }
.tei-docTitle { font-size: larger; }
.tei-stage { font-style: italic; }
.tei-titlePage { text-align: center; }
.tei-edition:before { content: 'Edition: '; }
.tei-div1 { border: 1px solid black; padding: 5px; }
.tei-add { color: green; text-decoration: underline; }
.tei-head2 { font-style: italic; }
.tei-head3 { font-style: italic; }
.tei-head4 { font-style: italic; }
.tei-head5 { font-weight: bold; }
.tei-unclear:after { content: ' [?] '; }
.tei-argument { margin-bottom: 0.5em; }
.tei-title5 { font-style: italic; }
.tei-title7 { font-style: italic; }
.tei-title9 { font-style: italic; }
.tei-title11 { font-style: italic; }
.tei-corr2:before { content: '['; }
.tei-corr2:after { content: ']'; }
.tei-sic2:before { content: '{'; }
.tei-sic2:after { content: '}'; }
.tei-fw1 { display: inline-block; margin-top: .5em; margin-bottom: 1em; color: #CCC; }
.tei-fw2 { margin-top: 1em; color: #A0A0A0; text-align: left; }
.tei-fw3 { margin-left: 20em; color: #A0A0A0; }
.tei-addrLine { white-space: nowrap; }
.tei-gap1 { color: grey; }
.tei-gap2:before { content: '[..'; }
.tei-gap2:after { content: '..]'; }
.tei-gap2 { color: grey; }
.tei-gap3:before { content: '[...]'; }
.tei-quote1:before { content: '‘'; }
.tei-quote1:after { content: '’'; }
.tei-quote2 { margin-left: 10px; margin-right: 10px; }
.tei-row1 { font-weight: bold; } | generators/app/templates/exist-teipub/transform/dta.css | .simple_allcaps { text-transform: uppercase; }
.simple_blackletter { font-family: fantasy; }
.simple_bold { font-weight: bold; }
.simple_bottombraced { padding-bottom: 2pt; border-bottom: dashed gray 2pt; }
.simple_block { display:block; }
.simple_boxed { padding: 2pt; border: solid black 1pt; }
.simple_centre { text-align: center; }
.simple_cursive { font-family: cursive; }
.simple_doublestrikethrough { text-decoration: line-through; color: red; }
.simple_doubleunderline { text-decoration: underline; color: red; }
.simple_dropcap { font-size : 6em; font-family: cursive; font-weight : bold; vertical-align: top; height: 1em; line-height: 1em; float : left; width : 1em; color : #c00; margin: 0em; padding: 0px; }
.simple_float { float:right; display: block; font-size: smaller; clear: right; padding: 4pt; width: 15%; }
.simple_hyphen { }
.simple_inline { display:inline; }
.simple_italic { font-style: italic; }
.simple_justify { text-align: justify; }
.simple_larger { font-size: larger; }
.simple_left { text-align: left; }
.simple_leftbraced { padding-left: 2pt; border-left: dotted gray 2pt; }
.simple_letterspace { letter-spacing: 0.5em; }
.simple_literal { font-family:monospace; white-space:pre; }
.simple_normalstyle { font-style:roman; }
.simple_normalweight { font-weight:normal; }
.simple_right { text-align: right; }
.simple_rightbraced { padding-right: 2pt; border-right: dotted gray 2pt; }
.simple_rotateleft { -webkit-transform: rotate(90deg); transform: rotate(90deg); }
.simple_rotateright { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); }
.simple_rules { border: 1px solid black; padding: 2px;border-collapse:collapse;border-spacing:0; }
.simple_smallcaps { font-variant: small-caps; }
.simple_smaller { font-size: smaller; }
.simple_strikethrough { text-decoration: line-through; }
.simple_subscript { vertical-align: bottom; font-size: smaller; }
.simple_superscript { vertical-align: super; font-size: smaller; }
.simple_topbraced { padding-top: 2pt; border-top: dotted gray 2pt; }
.simple_typewriter { font-family:monospace; }
.simple_underline { text-decoration: underline; }
.simple_wavyunderline { text-decoration: underline; text-decoration-style: wavy; }
/* Model rendition styles */
.tei-supplied2:before { content:"<"; }
.tei-supplied2:after { content:">"; }
.tei-supplied3:before { content:"["; }
.tei-supplied3:after { content:"]"; }
.tei-supplied4:before { content:"("; }
.tei-supplied4:after { content:")"; }
.tei-supplied5:before { content:"{"; }
.tei-supplied5:after { content:"}"; }
.tei-signed1 { text-align: right; }
.tei-signed2 { font-style: italic; }
.tei-pb1 { color: #CCC; }
.tei-hi1 { font-style: italic; }
.tei-hi2 { font-style: italic; }
.tei-code { font-family:monospace }
.tei-note2 { margin-left: 10px;margin-right: 10px; font-size:smaller; }
.tei-note3:before { content:" ["; }
.tei-note3:after { content:"] "; }
.tei-note3 { font-size:small; }
.tei-del { text-decoration: line-through; }
.tei-trailer { color: green; }
.tei-speaker { font-style:italic; }
.tei-figDesc:before { content: '[..'; }
.tei-figDesc:after { content: '..]'; }
.tei-figDesc { color: grey;font-style:italic; }
.tei-foreign { font-style:italic; }
.tei-email { font-family:monospace }
.tei-floatingText { margin: 6pt; border: solid black 1pt; }
.tei-table { font-size: smaller; background-color: #F0F0F0; }
.tei-address { margin-top: 2em; margin-left: 2em; margin-right: 2em; margin-bottom: 2em; }
.tei-author1:before { content: 'By '; }
.tei-castList { list-style: ordered; }
.tei-l { margin-left: 1em; }
.tei-closer { margin-top: 1em; margin-left: 1em; margin-left: 1em; }
.tei-p { text-align: justify; }
.tei-q1 { margin-left: 10px; margin-right: 10px; }
.tei-q2:before { content: '‘'; }
.tei-q2:after { content: '’'; }
.tei-q3 { margin-left: 10px; margin-right: 10px; }
.tei-docTitle { font-size: larger; }
.tei-stage { font-style: italic; }
.tei-titlePage { text-align: center; }
.tei-edition:before { content: 'Edition: '; }
.tei-div1 { border: 1px solid black; padding: 5px; }
.tei-add { color: green; text-decoration: underline; }
.tei-head2 { font-style: italic; }
.tei-head3 { font-style: italic; }
.tei-head4 { font-style: italic; }
.tei-head5 { font-weight: bold; }
.tei-unclear:after { content: ' [?] '; }
.tei-argument { margin-bottom: 0.5em; }
.tei-title5 { font-style: italic; }
.tei-title7 { font-style: italic; }
.tei-title9 { font-style: italic; }
.tei-title11 { font-style: italic; }
.tei-corr2:before { content: '['; }
.tei-corr2:after { content: ']'; }
.tei-sic2:before { content: '{'; }
.tei-sic2:after { content: '}'; }
.tei-fw1 { display: inline-block; margin-top: .5em; margin-bottom: 1em; color: #CCC; }
.tei-fw2 { margin-top: 1em; color: #A0A0A0; text-align: left; }
.tei-fw3 { margin-left: 20em; color: #A0A0A0; }
.tei-addrLine { white-space: nowrap; }
.tei-gap1 { color: grey; }
.tei-gap2:before { content: '[..'; }
.tei-gap2:after { content: '..]'; }
.tei-gap2 { color: grey; }
.tei-gap3:before { content: '[...]'; }
.tei-quote1:before { content: '‘'; }
.tei-quote1:after { content: '’'; }
.tei-quote2 { margin-left: 10px; margin-right: 10px; }
.tei-row1 { font-weight: bold; } | 0.631026 | 0.305451 |
#nav-bar-2 {
background-color: #374148;
height: 50px;
margin-top: 30px;
border-radius: 8px 8px 0 0;
list-style-type: none;
}
#nav-bar-2 h2 {
color: #eee;
margin-top: 16px;
padding-left: 10px;
font-size: 16px;
float: left;
}
#navodila {
float: left;
margin-top: 11px;
margin-left: 40px;
}
#pop-up {
background-color: #26ae90;
border: 1px solid #26ae90;
color: #eee;
font-size: 16px;
height: 30px;
width: 110px;
border-radius: 4px;
-webkit-box-shadow: 0 2px 2px rgba(0,0,0,.2);
-moz-box-shadow: 0 2px 2px rgba(0,0,0,.2);
box-shadow: 0 2px 2px rgba(0,0,0,.2);
}
#pop-up:hover {
background-color: #3bb69b;
cursor: pointer;
}
/* body */
.container {
border: 1px solid #ccc;
border-bottom: none;
background-color: #fff;
height: auto;
}
.container2 {
border: 1px solid #ccc;
border-bottom: none;
background-color: #fff;
height: auto;
}
#custom {
margin: auto;
display: block;
width: 290px;
margin-top: 50px;
}
.file-upload-wrapper {
width: 260px;
margin: auto auto 40px auto;
}
.file-upload-input {
width: 140px;
color: #000;
font-size: 14px;
font-family: "Open Sans", sans-serif;
padding: 7px 15px;
border: 1px solid #2e8698;
background-color: #eee;
border-radius: 0 4px 4px 0;
}
.file-upload-input:hover {
background-color: #dddddd;
outline: none;
}
.file-upload-input:focus {
background-color: #dddddd;
outline: none;
}
.file-upload-button {
cursor: pointer;
width: 120px;
display: inline-block;
color: #fff;
font-size: 14px;
font-family: "Open Sans", sans-serif;
font-weight: bold;
padding: 7px 20px;
border: 1px solid #4c5a65;
border-radius: 4px 0 0 4px;
background-color: #4c5a65;
float: left;
}
.file-upload-button:hover {
background-color: #607382;
}
#no-msg {
margin-left: 50px;
margin-top: 30px;
}
#img {
margin: auto;
display: block;
min-height: 180px;
max-width: 1000px;
margin-bottom: 40px;
}
textarea {
color: #444;
padding: 18px;
margin:auto;
margin-top: 20px;
display: block;
}
textarea:hover {
border: 1px solid #467892;
}
textarea:focus, input:focus, .uneditable-input:focus {
border-color: #2e8698!important;
box-shadow: 0px 0px 0px #eee inset, 0 0 6px #467892!important;
outline: 0 none !important;
border: 1px solid #467892 !important;
}
.txtstuff {
resize: none;
overflow: hidden;
}
.hiddendiv {
display: none;
white-space: pre-wrap;
word-wrap: break-word;
overflow-wrap: break-word;
}
.common {
width: 400px;
min-height: 80px;
font-family: Arial, sans-serif;
font-size: 16px;
overflow: hidden;
}
#buttons {
margin: auto;
height: 35px;
width: 328px;
padding-bottom: 20px;
}
#hide, #read {
border-radius: 4px;
height: 35px;
width: 150px;
font-weight: bold;
text-shadow: 0 1px 1px rgba(0,0,0,.1);
-webkit-box-shadow: 0 2px 2px rgba(0,0,0,.2);
-moz-box-shadow: 0 2px 2px rgba(0,0,0,.2);
box-shadow: 0 2px 2px rgba(0,0,0,.2);
color: #ffffff;
background-color: #467892;
border: 1px solid #467892;
}
#read {
margin-left: 20px;
}
#hide:hover, #read:hover, #diff:hover, #download:hover {
color: #fff;
background-color: #396277;
border: 1px solid #396277;
}
#img{
height:100%;
}
#cover{
margin-top:20px;
max-width: 1000px;
}
#result {
position:relative;
display:inline-block;
margin-top: 40px;
max-height: auto;
}
#diff {
height: 400px;
max-height: auto;
}
#diff {
border-radius: 4px;
height: 35px;
width: 150px;
font-weight: bold;
text-shadow: 0 1px 1px rgba(0,0,0,.1);
-webkit-box-shadow: 0 2px 2px rgba(0,0,0,.2);
-moz-box-shadow: 0 2px 2px rgba(0,0,0,.2);
box-shadow: 0 2px 2px rgba(0,0,0,.2);
color: #fff;
background-color: #467892;
border: 1px solid #467892;
margin-bottom: 20px;
margin-top: 20px;
display: block;
}
#diffH h4 {
margin-top: 20px;
margin-bottom: 20px;
}
#coded{
margin: auto;
width: 37%;
padding: 10px;
}
/* download button */
.btns {
margin-top:15px;
margin-bottom:10px;
padding: 0 40px;
}
.btn-center {
margin: auto;
height: 35px;
width: 150px;
margin-bottom: 20px;
}
#myCanvas3{
border-style: solid;
border-width: 3px;
border-color: #467892;
}
#download {
border-radius: 4px;
height: 35px;
width: 150px;
font-weight: bold;
text-shadow: 0 1px 1px rgba(0,0,0,.1);
-webkit-box-shadow: 0 2px 2px rgba(0,0,0,.2);
-moz-box-shadow: 0 2px 2px rgba(0,0,0,.2);
box-shadow: 0 2px 2px rgba(0,0,0,.2);
background-color: #467892;
border: 1px solid #467892;
margin-bottom: 20px;
margin-top: 20px;
display: block;
}
#download a {
color: #fff;
}
/* pop-upi */
.modal {
display: none;
position: fixed;
z-index: 1;
padding-top: 200px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.3);
}
/* Modal Content */
.modal-content {
position: relative;
background-color: #fefefe;
text-align: center;
font-family: "Open Sans";
margin: auto;
padding: 0;
border: 1px solid #888;
width: 35%;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
-webkit-animation-name: animatetop;
-webkit-animation-duration: 0.4s;
animation-name: animatetop;
animation-duration: 0.4s
}
/* Add Animation */
@-webkit-keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
@keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
/* The Close Button */
.close, .close1, .close2 {
color: #fff;
float: right;
font-size: 28px;
font-weight: bold;
margin-top: -10px;
}
.close:hover,.close:focus,
.close1:hover,.close1:focus,
.close2:hover,.close2:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.modal-header {
padding: 20px 16px;
background-color: #FA6B5C;
color: white;
}
.modal-body {
padding: 30px 16px;
}
#header {
padding: 20px 16px;
background-color: #467892;
color: white;
}
#body-navodila {
text-align: left;
padding: 30px 40px;
}
#border-top {
margin-top: 30px;
border-top: 1px solid #ccc;
width: 100%;
clear: both;
}
.clear {
height: 30px;
clear: both;
}
#hidden {
text-align: center;
} | static/css/steganography.css |
#nav-bar-2 {
background-color: #374148;
height: 50px;
margin-top: 30px;
border-radius: 8px 8px 0 0;
list-style-type: none;
}
#nav-bar-2 h2 {
color: #eee;
margin-top: 16px;
padding-left: 10px;
font-size: 16px;
float: left;
}
#navodila {
float: left;
margin-top: 11px;
margin-left: 40px;
}
#pop-up {
background-color: #26ae90;
border: 1px solid #26ae90;
color: #eee;
font-size: 16px;
height: 30px;
width: 110px;
border-radius: 4px;
-webkit-box-shadow: 0 2px 2px rgba(0,0,0,.2);
-moz-box-shadow: 0 2px 2px rgba(0,0,0,.2);
box-shadow: 0 2px 2px rgba(0,0,0,.2);
}
#pop-up:hover {
background-color: #3bb69b;
cursor: pointer;
}
/* body */
.container {
border: 1px solid #ccc;
border-bottom: none;
background-color: #fff;
height: auto;
}
.container2 {
border: 1px solid #ccc;
border-bottom: none;
background-color: #fff;
height: auto;
}
#custom {
margin: auto;
display: block;
width: 290px;
margin-top: 50px;
}
.file-upload-wrapper {
width: 260px;
margin: auto auto 40px auto;
}
.file-upload-input {
width: 140px;
color: #000;
font-size: 14px;
font-family: "Open Sans", sans-serif;
padding: 7px 15px;
border: 1px solid #2e8698;
background-color: #eee;
border-radius: 0 4px 4px 0;
}
.file-upload-input:hover {
background-color: #dddddd;
outline: none;
}
.file-upload-input:focus {
background-color: #dddddd;
outline: none;
}
.file-upload-button {
cursor: pointer;
width: 120px;
display: inline-block;
color: #fff;
font-size: 14px;
font-family: "Open Sans", sans-serif;
font-weight: bold;
padding: 7px 20px;
border: 1px solid #4c5a65;
border-radius: 4px 0 0 4px;
background-color: #4c5a65;
float: left;
}
.file-upload-button:hover {
background-color: #607382;
}
#no-msg {
margin-left: 50px;
margin-top: 30px;
}
#img {
margin: auto;
display: block;
min-height: 180px;
max-width: 1000px;
margin-bottom: 40px;
}
textarea {
color: #444;
padding: 18px;
margin:auto;
margin-top: 20px;
display: block;
}
textarea:hover {
border: 1px solid #467892;
}
textarea:focus, input:focus, .uneditable-input:focus {
border-color: #2e8698!important;
box-shadow: 0px 0px 0px #eee inset, 0 0 6px #467892!important;
outline: 0 none !important;
border: 1px solid #467892 !important;
}
.txtstuff {
resize: none;
overflow: hidden;
}
.hiddendiv {
display: none;
white-space: pre-wrap;
word-wrap: break-word;
overflow-wrap: break-word;
}
.common {
width: 400px;
min-height: 80px;
font-family: Arial, sans-serif;
font-size: 16px;
overflow: hidden;
}
#buttons {
margin: auto;
height: 35px;
width: 328px;
padding-bottom: 20px;
}
#hide, #read {
border-radius: 4px;
height: 35px;
width: 150px;
font-weight: bold;
text-shadow: 0 1px 1px rgba(0,0,0,.1);
-webkit-box-shadow: 0 2px 2px rgba(0,0,0,.2);
-moz-box-shadow: 0 2px 2px rgba(0,0,0,.2);
box-shadow: 0 2px 2px rgba(0,0,0,.2);
color: #ffffff;
background-color: #467892;
border: 1px solid #467892;
}
#read {
margin-left: 20px;
}
#hide:hover, #read:hover, #diff:hover, #download:hover {
color: #fff;
background-color: #396277;
border: 1px solid #396277;
}
#img{
height:100%;
}
#cover{
margin-top:20px;
max-width: 1000px;
}
#result {
position:relative;
display:inline-block;
margin-top: 40px;
max-height: auto;
}
#diff {
height: 400px;
max-height: auto;
}
#diff {
border-radius: 4px;
height: 35px;
width: 150px;
font-weight: bold;
text-shadow: 0 1px 1px rgba(0,0,0,.1);
-webkit-box-shadow: 0 2px 2px rgba(0,0,0,.2);
-moz-box-shadow: 0 2px 2px rgba(0,0,0,.2);
box-shadow: 0 2px 2px rgba(0,0,0,.2);
color: #fff;
background-color: #467892;
border: 1px solid #467892;
margin-bottom: 20px;
margin-top: 20px;
display: block;
}
#diffH h4 {
margin-top: 20px;
margin-bottom: 20px;
}
#coded{
margin: auto;
width: 37%;
padding: 10px;
}
/* download button */
.btns {
margin-top:15px;
margin-bottom:10px;
padding: 0 40px;
}
.btn-center {
margin: auto;
height: 35px;
width: 150px;
margin-bottom: 20px;
}
#myCanvas3{
border-style: solid;
border-width: 3px;
border-color: #467892;
}
#download {
border-radius: 4px;
height: 35px;
width: 150px;
font-weight: bold;
text-shadow: 0 1px 1px rgba(0,0,0,.1);
-webkit-box-shadow: 0 2px 2px rgba(0,0,0,.2);
-moz-box-shadow: 0 2px 2px rgba(0,0,0,.2);
box-shadow: 0 2px 2px rgba(0,0,0,.2);
background-color: #467892;
border: 1px solid #467892;
margin-bottom: 20px;
margin-top: 20px;
display: block;
}
#download a {
color: #fff;
}
/* pop-upi */
.modal {
display: none;
position: fixed;
z-index: 1;
padding-top: 200px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.3);
}
/* Modal Content */
.modal-content {
position: relative;
background-color: #fefefe;
text-align: center;
font-family: "Open Sans";
margin: auto;
padding: 0;
border: 1px solid #888;
width: 35%;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
-webkit-animation-name: animatetop;
-webkit-animation-duration: 0.4s;
animation-name: animatetop;
animation-duration: 0.4s
}
/* Add Animation */
@-webkit-keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
@keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
/* The Close Button */
.close, .close1, .close2 {
color: #fff;
float: right;
font-size: 28px;
font-weight: bold;
margin-top: -10px;
}
.close:hover,.close:focus,
.close1:hover,.close1:focus,
.close2:hover,.close2:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.modal-header {
padding: 20px 16px;
background-color: #FA6B5C;
color: white;
}
.modal-body {
padding: 30px 16px;
}
#header {
padding: 20px 16px;
background-color: #467892;
color: white;
}
#body-navodila {
text-align: left;
padding: 30px 40px;
}
#border-top {
margin-top: 30px;
border-top: 1px solid #ccc;
width: 100%;
clear: both;
}
.clear {
height: 30px;
clear: both;
}
#hidden {
text-align: center;
} | 0.225161 | 0.104752 |
@font-face {
font-family: 'Bitter';
font-style: normal;
font-weight: 400;
src: local('Bitter-Regular'), url('http://themes.googleusercontent.com/static/fonts/bitter/v3/2PcBT6-VmYhQCus-O11S5-vvDin1pK8aKteLpeZ5c0A.woff') format('woff');
}
body,
.SiteTitle,
h1, h2, h3, h4, h5 {
font-family: Bitter, 'lucida grande','Lucida Sans Unicode',tahoma,sans-serif;
}
a {
color: #1D5689;
}
a:hover {
color: #003467;
}
/** Custom Master View Stuff **/
#Frame > .Top {
background: #000;
padding: 0 20px;
text-align: left;
line-height: 2.4;
}
.TopMenu a {
padding: 8px;
font-size: 13px;
font-weight: 400;
color: #ddd;
}
.TopMenu a:hover {
background: #333;
}
.Banner {
position: relative;
min-height: 98px;
text-align: left;
padding: 20px;
}
.SiteTitle {
font-size: 40px;
font-weight: bold;
line-height: 100px;
}
.SiteTitle a {
color: #000;
}
.Banner .Row {
position: relative;
}
.AdSpace {
position: absolute;
top: 0;
right: 0;
height: 90px;
line-height: 90px;
width: 728px;
background: #ddd;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) inset;
-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) inset;
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) inset;
border: 4px solid #eee;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
text-align: center;
color: #777;
}
#Head {
color: #000;
box-shadow: inset 0 5px 5px 0 #EEE,
inset 0 -5px 5px 0 #EEE;
background: #F7F7F7;
border: 1px solid #D0D0D0;
border-width: 1px 0;
padding: 0;
}
#Head .SiteMenu a {
font-size: 13px;
font-weight: 400;
color: #777;
padding: 15px 0;
margin: 0 30px;
display: inline-block;
}
#Head .SiteMenu a:first-child {
margin-left: 0;
}
#Head .SiteMenu a:hover {
color: #222;
}
#Head .SiteSearch {
top: 12px;
right: 0;
}
#Head .SiteSearch .InputBox {
border: 1px solid #fff;
box-shadow: inset 0 0 2px #aaa;
font-size: 13px;
}
#Head .SiteSearch .Button {
top: 6px;
}
.BreadcrumbsWrapper {
font-size: 11px;
border-bottom: 1px dotted #eee;
padding: 6px 0;
margin-bottom: 20px;
color: #aaa;
}
.Breadcrumbs a {
color: #777;
}
/** Vanilla Contents **/
.PageDescription {
color: #888;
margin: 8px;
}
.CategoryBox h2 {
margin: 20px 8px 8px;
}
.CategoryBox h2 a {
color: #aaa;
}
.HomepageTitle {
margin: 0 8px;
}
.HomepageTitle .AdminCheck {
padding: 0;
}
.Pager {
font-size: 18px;
}
.ProfileOptions {
font-weight: bold;
}
.DataTable td {
border-style: dotted;
}
.DataList > .Item {
border-style: dotted !important;
padding: 12px 8px;
}
.DataList .Item .Item {
border: none !important;
}
.DataList .Title,
.DataList .Title a {
font-size: 18px;
color: #333;
}
.DataList .Title {
color: #777;
}
.Meta,
.MItem,
.MItem a {
color: #ccc;
}
.DataList .Title a:hover {
text-decoration: underline;
}
.MItem {
margin: 0 8px;
padding: 0;
}
.MItem:last-child {
border: none;
}
/* Big Button */
.ButtonGroup .Button,
#Content input.Button,
.Button {
background: #cc3300;
background-image: linear-gradient(bottom, rgb(170,17,0) 25%, rgb(204,51,0) 63%);
background-image: -o-linear-gradient(bottom, rgb(170,17,0) 25%, rgb(204,51,0) 63%);
background-image: -moz-linear-gradient(bottom, rgb(170,17,0) 25%, rgb(204,51,0) 63%);
background-image: -webkit-linear-gradient(bottom, rgb(170,17,0) 25%, rgb(204,51,0) 63%);
background-image: -ms-linear-gradient(bottom, rgb(170,17,0) 25%, rgb(204,51,0) 63%);
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.25, rgb(170,17,0)),
color-stop(0.63, rgb(204,51,0))
);
text-shadow: 0 -1px 0 #880000;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 2px rgba(0,0,0,0.3);
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 2px rgba(0,0,0,0.3);
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 2px rgba(0,0,0,0.3);
border-color: #763407;
color: #fff;
}
.ButtonGroup.Open .Button.Handle,
#Content input.Button:hover,
#Content input.Button:focus,
#Content input.Button:active,
.Button:hover,
.Button:focus,
.Button:active {
color: #fff;
border-color: #6f0b00;
}
.ButtonGroup.Open .Button.Handle,
#Content input.Button:focus,
#Content input.Button:active,
.Button:focus,
.Button:active {
background: #aa1100;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
}
#Panel .BigButton {
margin: 20px 0;
}
input.Button {
padding: 6px 12px;
}
.BoxFilter {
margin: 20px 0;
}
.Box {
color: #888;
margin: 0 0 30px;
}
.Box h4 {
color: #333;
font-size: 18px;
text-transform: uppercase;
margin: 6px 0;
}
.PanelInfo li {
font-weight: bold;
background: #f7f7f7;
padding: 2px 4px;
border-style: dotted !important;
}
.PanelInfo a {
color: #555;
}
.PanelInfo a:hover {
text-decoration: underline;
}
body.Profile .PanelInfo .Active,
.PanelInfo .Active {
background: #fff;
}
.PanelInfo .Active a {
color: #333;
}
.Bullet {
color: #aaa;
} | forum/themes/bittersweet/design/custom.css | @font-face {
font-family: 'Bitter';
font-style: normal;
font-weight: 400;
src: local('Bitter-Regular'), url('http://themes.googleusercontent.com/static/fonts/bitter/v3/2PcBT6-VmYhQCus-O11S5-vvDin1pK8aKteLpeZ5c0A.woff') format('woff');
}
body,
.SiteTitle,
h1, h2, h3, h4, h5 {
font-family: Bitter, 'lucida grande','Lucida Sans Unicode',tahoma,sans-serif;
}
a {
color: #1D5689;
}
a:hover {
color: #003467;
}
/** Custom Master View Stuff **/
#Frame > .Top {
background: #000;
padding: 0 20px;
text-align: left;
line-height: 2.4;
}
.TopMenu a {
padding: 8px;
font-size: 13px;
font-weight: 400;
color: #ddd;
}
.TopMenu a:hover {
background: #333;
}
.Banner {
position: relative;
min-height: 98px;
text-align: left;
padding: 20px;
}
.SiteTitle {
font-size: 40px;
font-weight: bold;
line-height: 100px;
}
.SiteTitle a {
color: #000;
}
.Banner .Row {
position: relative;
}
.AdSpace {
position: absolute;
top: 0;
right: 0;
height: 90px;
line-height: 90px;
width: 728px;
background: #ddd;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) inset;
-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) inset;
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) inset;
border: 4px solid #eee;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
text-align: center;
color: #777;
}
#Head {
color: #000;
box-shadow: inset 0 5px 5px 0 #EEE,
inset 0 -5px 5px 0 #EEE;
background: #F7F7F7;
border: 1px solid #D0D0D0;
border-width: 1px 0;
padding: 0;
}
#Head .SiteMenu a {
font-size: 13px;
font-weight: 400;
color: #777;
padding: 15px 0;
margin: 0 30px;
display: inline-block;
}
#Head .SiteMenu a:first-child {
margin-left: 0;
}
#Head .SiteMenu a:hover {
color: #222;
}
#Head .SiteSearch {
top: 12px;
right: 0;
}
#Head .SiteSearch .InputBox {
border: 1px solid #fff;
box-shadow: inset 0 0 2px #aaa;
font-size: 13px;
}
#Head .SiteSearch .Button {
top: 6px;
}
.BreadcrumbsWrapper {
font-size: 11px;
border-bottom: 1px dotted #eee;
padding: 6px 0;
margin-bottom: 20px;
color: #aaa;
}
.Breadcrumbs a {
color: #777;
}
/** Vanilla Contents **/
.PageDescription {
color: #888;
margin: 8px;
}
.CategoryBox h2 {
margin: 20px 8px 8px;
}
.CategoryBox h2 a {
color: #aaa;
}
.HomepageTitle {
margin: 0 8px;
}
.HomepageTitle .AdminCheck {
padding: 0;
}
.Pager {
font-size: 18px;
}
.ProfileOptions {
font-weight: bold;
}
.DataTable td {
border-style: dotted;
}
.DataList > .Item {
border-style: dotted !important;
padding: 12px 8px;
}
.DataList .Item .Item {
border: none !important;
}
.DataList .Title,
.DataList .Title a {
font-size: 18px;
color: #333;
}
.DataList .Title {
color: #777;
}
.Meta,
.MItem,
.MItem a {
color: #ccc;
}
.DataList .Title a:hover {
text-decoration: underline;
}
.MItem {
margin: 0 8px;
padding: 0;
}
.MItem:last-child {
border: none;
}
/* Big Button */
.ButtonGroup .Button,
#Content input.Button,
.Button {
background: #cc3300;
background-image: linear-gradient(bottom, rgb(170,17,0) 25%, rgb(204,51,0) 63%);
background-image: -o-linear-gradient(bottom, rgb(170,17,0) 25%, rgb(204,51,0) 63%);
background-image: -moz-linear-gradient(bottom, rgb(170,17,0) 25%, rgb(204,51,0) 63%);
background-image: -webkit-linear-gradient(bottom, rgb(170,17,0) 25%, rgb(204,51,0) 63%);
background-image: -ms-linear-gradient(bottom, rgb(170,17,0) 25%, rgb(204,51,0) 63%);
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.25, rgb(170,17,0)),
color-stop(0.63, rgb(204,51,0))
);
text-shadow: 0 -1px 0 #880000;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 2px rgba(0,0,0,0.3);
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 2px rgba(0,0,0,0.3);
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 2px rgba(0,0,0,0.3);
border-color: #763407;
color: #fff;
}
.ButtonGroup.Open .Button.Handle,
#Content input.Button:hover,
#Content input.Button:focus,
#Content input.Button:active,
.Button:hover,
.Button:focus,
.Button:active {
color: #fff;
border-color: #6f0b00;
}
.ButtonGroup.Open .Button.Handle,
#Content input.Button:focus,
#Content input.Button:active,
.Button:focus,
.Button:active {
background: #aa1100;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
}
#Panel .BigButton {
margin: 20px 0;
}
input.Button {
padding: 6px 12px;
}
.BoxFilter {
margin: 20px 0;
}
.Box {
color: #888;
margin: 0 0 30px;
}
.Box h4 {
color: #333;
font-size: 18px;
text-transform: uppercase;
margin: 6px 0;
}
.PanelInfo li {
font-weight: bold;
background: #f7f7f7;
padding: 2px 4px;
border-style: dotted !important;
}
.PanelInfo a {
color: #555;
}
.PanelInfo a:hover {
text-decoration: underline;
}
body.Profile .PanelInfo .Active,
.PanelInfo .Active {
background: #fff;
}
.PanelInfo .Active a {
color: #333;
}
.Bullet {
color: #aaa;
} | 0.505371 | 0.091058 |
background-image: url(../img/spritesheet-types_30x30.png);
background-repeat: no-repeat;
display: inline-block;
margin: auto
}
.type_30x30-bug {
width: 30px;
height: 30px;
background-position: -5px -5px;
}
.type_30x30-dark {
width: 30px;
height: 30px;
background-position: -45px -5px;
}
.type_30x30-dragon {
width: 30px;
height: 30px;
background-position: -85px -5px;
}
.type_30x30-electric {
width: 30px;
height: 30px;
background-position: -125px -5px;
}
.type_30x30-fairy {
width: 30px;
height: 30px;
background-position: -5px -45px;
}
.type_30x30-fighting {
width: 30px;
height: 30px;
background-position: -45px -45px;
}
.type_30x30-fire {
width: 30px;
height: 30px;
background-position: -85px -45px;
}
.type_30x30-flying {
width: 30px;
height: 30px;
background-position: -125px -45px;
}
.type_30x30-ghost {
width: 30px;
height: 30px;
background-position: -5px -85px;
}
.type_30x30-grass {
width: 30px;
height: 30px;
background-position: -45px -85px;
}
.type_30x30-ground {
width: 30px;
height: 30px;
background-position: -85px -85px;
}
.type_30x30-ice {
width: 30px;
height: 30px;
background-position: -125px -85px;
}
.type_30x30-normal {
width: 30px;
height: 30px;
background-position: -5px -125px;
}
.type_30x30-poison {
width: 30px;
height: 30px;
background-position: -45px -125px;
}
.type_30x30-psychic {
width: 30px;
height: 30px;
background-position: -85px -125px;
}
.type_30x30-random {
width: 30px;
height: 30px;
background-position: -125px -125px;
}
.type_30x30-rock {
width: 30px;
height: 30px;
background-position: -165px -5px;
}
.type_30x30-steel {
width: 30px;
height: 30px;
background-position: -165px -45px;
}
.type_30x30-unknown {
width: 30px;
height: 30px;
background-position: -165px -85px;
}
.type_30x30-water {
width: 30px;
height: 30px;
background-position: -165px -125px;
} | monocle/static/css/stylesheet-types_30x30.css | background-image: url(../img/spritesheet-types_30x30.png);
background-repeat: no-repeat;
display: inline-block;
margin: auto
}
.type_30x30-bug {
width: 30px;
height: 30px;
background-position: -5px -5px;
}
.type_30x30-dark {
width: 30px;
height: 30px;
background-position: -45px -5px;
}
.type_30x30-dragon {
width: 30px;
height: 30px;
background-position: -85px -5px;
}
.type_30x30-electric {
width: 30px;
height: 30px;
background-position: -125px -5px;
}
.type_30x30-fairy {
width: 30px;
height: 30px;
background-position: -5px -45px;
}
.type_30x30-fighting {
width: 30px;
height: 30px;
background-position: -45px -45px;
}
.type_30x30-fire {
width: 30px;
height: 30px;
background-position: -85px -45px;
}
.type_30x30-flying {
width: 30px;
height: 30px;
background-position: -125px -45px;
}
.type_30x30-ghost {
width: 30px;
height: 30px;
background-position: -5px -85px;
}
.type_30x30-grass {
width: 30px;
height: 30px;
background-position: -45px -85px;
}
.type_30x30-ground {
width: 30px;
height: 30px;
background-position: -85px -85px;
}
.type_30x30-ice {
width: 30px;
height: 30px;
background-position: -125px -85px;
}
.type_30x30-normal {
width: 30px;
height: 30px;
background-position: -5px -125px;
}
.type_30x30-poison {
width: 30px;
height: 30px;
background-position: -45px -125px;
}
.type_30x30-psychic {
width: 30px;
height: 30px;
background-position: -85px -125px;
}
.type_30x30-random {
width: 30px;
height: 30px;
background-position: -125px -125px;
}
.type_30x30-rock {
width: 30px;
height: 30px;
background-position: -165px -5px;
}
.type_30x30-steel {
width: 30px;
height: 30px;
background-position: -165px -45px;
}
.type_30x30-unknown {
width: 30px;
height: 30px;
background-position: -165px -85px;
}
.type_30x30-water {
width: 30px;
height: 30px;
background-position: -165px -125px;
} | 0.347648 | 0.125386 |
.calendar-container {
max-width: 65vw;
border: 1px solid black;
box-sizing: border-box;
height: 700px;
margin: 0 auto;
display: flex;
justify-content: space-between;
}
section {
border: 1px solid rgb(147, 6, 241);
display: flex;
box-sizing: border-box;
}
.week {
width: 50vw;
display: flex;
flex-wrap: wrap;
box-sizing: border-box;
justify-content: space-between;
}
.week section {
width: 50vw;
display: flex;
box-sizing: border-box;
justify-content: center;
background-color: hotpink;
border: 1px solid black;
}
span {
border: 1px solid black;
box-sizing: border-box;
}
.notes {
width: 15vw;
flex-direction: column;
align-content: center;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
background-color: maroon;
}
.reminder {
width: 15vw;
height: 350px;
display: flex;
justify-content: center;
box-sizing: border-box;
background-color: magenta;
}
.special-dates {
width: 15vw;
height: 350px;
display: flex;
justify-content: center;
box-sizing: border-box;
}
.Box-1 {
display: flex;
width: 50vw;
background-color: blueviolet;
box-sizing: border-box;
justify-content: center;
}
.Box-2 {
display: flex;
width: 10vw;
box-sizing: border-box;
background-color: chocolate;
justify-content: center;
}
.Box-3 {
display: flex;
width: 10vw;
box-sizing: border-box;
background-color: chocolate;
justify-content: center;
}
.Box-4 {
display: flex;
width: 10vw;
box-sizing: border-box;
background-color: chocolate;
justify-content: center;
}
.Box-5 {
display: flex;
width: calc(50vw / 5);
box-sizing: border-box;
background-color: chocolate;
justify-content: center;
}
.Box-6 {
display: flex;
width: 10vw;
box-sizing: border-box;
background-color: chocolate;
justify-content: center;
}
.Box-7 {
display: flex;
width: 50vw;
background-color: blue;
box-sizing: border-box;
justify-content: center;
}
.Box-8 {
display: flex;
width: 25vw;
box-sizing: border-box;
background-color: green;
justify-content: center;
}
.Box-9 {
display: flex;
width: 25vw;
box-sizing: border-box;
background-color: green;
justify-content: center;
} | FourtExercise/4/style.css | .calendar-container {
max-width: 65vw;
border: 1px solid black;
box-sizing: border-box;
height: 700px;
margin: 0 auto;
display: flex;
justify-content: space-between;
}
section {
border: 1px solid rgb(147, 6, 241);
display: flex;
box-sizing: border-box;
}
.week {
width: 50vw;
display: flex;
flex-wrap: wrap;
box-sizing: border-box;
justify-content: space-between;
}
.week section {
width: 50vw;
display: flex;
box-sizing: border-box;
justify-content: center;
background-color: hotpink;
border: 1px solid black;
}
span {
border: 1px solid black;
box-sizing: border-box;
}
.notes {
width: 15vw;
flex-direction: column;
align-content: center;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
background-color: maroon;
}
.reminder {
width: 15vw;
height: 350px;
display: flex;
justify-content: center;
box-sizing: border-box;
background-color: magenta;
}
.special-dates {
width: 15vw;
height: 350px;
display: flex;
justify-content: center;
box-sizing: border-box;
}
.Box-1 {
display: flex;
width: 50vw;
background-color: blueviolet;
box-sizing: border-box;
justify-content: center;
}
.Box-2 {
display: flex;
width: 10vw;
box-sizing: border-box;
background-color: chocolate;
justify-content: center;
}
.Box-3 {
display: flex;
width: 10vw;
box-sizing: border-box;
background-color: chocolate;
justify-content: center;
}
.Box-4 {
display: flex;
width: 10vw;
box-sizing: border-box;
background-color: chocolate;
justify-content: center;
}
.Box-5 {
display: flex;
width: calc(50vw / 5);
box-sizing: border-box;
background-color: chocolate;
justify-content: center;
}
.Box-6 {
display: flex;
width: 10vw;
box-sizing: border-box;
background-color: chocolate;
justify-content: center;
}
.Box-7 {
display: flex;
width: 50vw;
background-color: blue;
box-sizing: border-box;
justify-content: center;
}
.Box-8 {
display: flex;
width: 25vw;
box-sizing: border-box;
background-color: green;
justify-content: center;
}
.Box-9 {
display: flex;
width: 25vw;
box-sizing: border-box;
background-color: green;
justify-content: center;
} | 0.551091 | 0.065815 |
[class*='PageHeader-module--page-header'] {
height: auto !important;
min-height: 13rem;
max-height: 15rem;
padding-top: 1rem;
}
@media (min-width: 99rem) {
[class*='PageHeader-module--text'] {
font-size: 4rem !important;
}
}
.bx--inline-notification__subtitle .bx--list--unordered {
width: 100%;
}
.bx--inline-notification__subtitle .bx--list--unordered .bx--list__item {
font-size: 0.875rem;
line-height: 1.2rem;
}
[class*='Tabs-module--panel'] {
padding-bottom: 1rem;
max-width: calc(67% + 1rem);
}
[class*='Tabs-module--panel'] ul.bx--list--unordered {
width: 100%;
}
[class*='Tabs-module--panel'] ul.bx--list--unordered li,
[class*='Tabs-module--panel'] div.bx--row p {
font-size: 14px;
}
[class*='Tabs-module--panel'] ul + pre {
margin-top: 1rem;
}
@media (min-width: 66rem) {
[class*='Tabs-module--panel'] {
padding-bottom: 1rem;
max-width: 75%;
}
[class*='Markdown-module--list'] {
max-width: 90%;
margin-bottom: 10px;
}
[class*='Tabs-module--panel'] .Code-module--row--3_5cm {
width: 100%;
}
[class*='Markdown-module--list'].bx--list--nested {
width: calc(100% - 1rem);
margin-bottom: 10px;
}
.page-table__container.bx--col-lg-8 {
display: block;
flex: 0 0 90%;
max-width: 90%;
}
.bx--no-gutter-sm.bx--col-lg-8 {
display: block;
flex: 0 0 90%;
max-width: 90%;
}
li [class*='InlineNotification-module--notification'].bx--col-md-6.bx--col-lg-8 {
display: block;
flex: 0 0 100%;
max-width: 100%;
}
h3#global-properties + div.bx--row table.page-table tbody tr td:nth-child(1),
h3#liberty-runtime + div.bx--row + div.bx--row table.page-table tbody tr td:nth-child(1),
h3#batch-jobs + div.bx--row + div.bx--row table.page-table tbody tr td:nth-child(1) {
width: 35%;
}
h3#ibm-mq + div.bx--row + div.bx--row table.page-table tbody tr td:nth-child(1),
h3#static-content-server + div.bx--row table.page-table tbody tr td:nth-child(1),
h3#xml-server + div.bx--row table.page-table tbody tr td:nth-child(1),
h3#universal-access-react-app-optional + div.bx--row table.page-table tbody tr td:nth-child(1) {
width: 30%;
}
}
@media (max-width: 66rem) {
[class*='Tabs-module--panel'] {
max-width: 100%;
}
[class*='Tabs-module--panel'] .Code-module--row--3_5cm {
width: 100%;
}
}
// Hide SideBar and Footer when printing
@media print {
[class*='LeftNavWrapper-module--expanded'] {
display: none;
}
[class*='Footer-module--footer'] {
display: none;
}
}
.Code-module--row--3_5cm {
width: 70%;
}
[class*='Markdown-module--list'] {
width: 77.5%;
}
li [class*='Code-module--container'] {
width: 100%;
}
.bx--inline-notification.bx--inline-notification--low-contrast.bx--inline-notification--hide-close-button {
width: 86%;
}
[class*='InlineNotification-module--notification'].bx--col-md-6.bx--col-lg-8 {
display: block;
flex: 0 0 80%;
max-width: 80%;
}
[class*='Markdown-module--list-item'] .bx--row {
max-width: 100%;
}
[class*='Caption-module--caption'] {
max-width: 75%;
} | stylesheets/index.css |
[class*='PageHeader-module--page-header'] {
height: auto !important;
min-height: 13rem;
max-height: 15rem;
padding-top: 1rem;
}
@media (min-width: 99rem) {
[class*='PageHeader-module--text'] {
font-size: 4rem !important;
}
}
.bx--inline-notification__subtitle .bx--list--unordered {
width: 100%;
}
.bx--inline-notification__subtitle .bx--list--unordered .bx--list__item {
font-size: 0.875rem;
line-height: 1.2rem;
}
[class*='Tabs-module--panel'] {
padding-bottom: 1rem;
max-width: calc(67% + 1rem);
}
[class*='Tabs-module--panel'] ul.bx--list--unordered {
width: 100%;
}
[class*='Tabs-module--panel'] ul.bx--list--unordered li,
[class*='Tabs-module--panel'] div.bx--row p {
font-size: 14px;
}
[class*='Tabs-module--panel'] ul + pre {
margin-top: 1rem;
}
@media (min-width: 66rem) {
[class*='Tabs-module--panel'] {
padding-bottom: 1rem;
max-width: 75%;
}
[class*='Markdown-module--list'] {
max-width: 90%;
margin-bottom: 10px;
}
[class*='Tabs-module--panel'] .Code-module--row--3_5cm {
width: 100%;
}
[class*='Markdown-module--list'].bx--list--nested {
width: calc(100% - 1rem);
margin-bottom: 10px;
}
.page-table__container.bx--col-lg-8 {
display: block;
flex: 0 0 90%;
max-width: 90%;
}
.bx--no-gutter-sm.bx--col-lg-8 {
display: block;
flex: 0 0 90%;
max-width: 90%;
}
li [class*='InlineNotification-module--notification'].bx--col-md-6.bx--col-lg-8 {
display: block;
flex: 0 0 100%;
max-width: 100%;
}
h3#global-properties + div.bx--row table.page-table tbody tr td:nth-child(1),
h3#liberty-runtime + div.bx--row + div.bx--row table.page-table tbody tr td:nth-child(1),
h3#batch-jobs + div.bx--row + div.bx--row table.page-table tbody tr td:nth-child(1) {
width: 35%;
}
h3#ibm-mq + div.bx--row + div.bx--row table.page-table tbody tr td:nth-child(1),
h3#static-content-server + div.bx--row table.page-table tbody tr td:nth-child(1),
h3#xml-server + div.bx--row table.page-table tbody tr td:nth-child(1),
h3#universal-access-react-app-optional + div.bx--row table.page-table tbody tr td:nth-child(1) {
width: 30%;
}
}
@media (max-width: 66rem) {
[class*='Tabs-module--panel'] {
max-width: 100%;
}
[class*='Tabs-module--panel'] .Code-module--row--3_5cm {
width: 100%;
}
}
// Hide SideBar and Footer when printing
@media print {
[class*='LeftNavWrapper-module--expanded'] {
display: none;
}
[class*='Footer-module--footer'] {
display: none;
}
}
.Code-module--row--3_5cm {
width: 70%;
}
[class*='Markdown-module--list'] {
width: 77.5%;
}
li [class*='Code-module--container'] {
width: 100%;
}
.bx--inline-notification.bx--inline-notification--low-contrast.bx--inline-notification--hide-close-button {
width: 86%;
}
[class*='InlineNotification-module--notification'].bx--col-md-6.bx--col-lg-8 {
display: block;
flex: 0 0 80%;
max-width: 80%;
}
[class*='Markdown-module--list-item'] .bx--row {
max-width: 100%;
}
[class*='Caption-module--caption'] {
max-width: 75%;
} | 0.347426 | 0.066751 |
.textIcon {
display: inline-flex;
align-items: center;
justify-content: flex-start;
vertical-align: middle;
user-select: none;
}
.text {
display: inline-flex;
line-height: 1;
}
/* placement */
.placement {
&.bottom {
flex-direction: column;
}
}
/* size */
.size {
&.xs {
& .text {
font-size: var(--font-size-xs);
}
}
&.sm {
& .text {
font-size: var(--font-size-sm);
}
}
&.smS {
& .text {
font-size: var(--font-size-sm-s);
}
}
&.md {
& .text {
font-size: var(--font-size-md);
}
}
&.mdS {
& .text {
font-size: var(--font-size-md-s);
}
}
&.xm {
& .text {
font-size: var(--font-size-xm);
}
}
&.lg {
& .text {
font-size: var(--font-size-lg);
}
}
&.xl {
& .text {
font-size: var(--font-size-xl);
}
}
}
/* Colors */
.color {
&.gold {
color: var(--color-matters-gold);
}
&.red {
color: var(--color-error);
}
&.black {
color: var(--color-black);
}
&.greyDarker {
color: var(--color-grey-darker);
}
&.greyDark {
color: var(--color-grey-dark);
}
&.grey {
color: var(--color-grey);
}
&.greyLight {
color: var(--color-grey-light);
}
&.greyLighter {
color: var(--color-grey-lighter);
}
&.greenLighter {
color: var(--color-green-lighter);
}
&.white {
color: var(--color-white);
}
&.noir {
color: var(--color-noir);
}
&.blueGreen {
@mixin text-fill-gradient-color;
background-color: var(--color-blue-green);
background-image: var(--color-blue-green);
}
&.blueGreenDarker {
@mixin text-fill-gradient-color;
background-color: var(--color-blue-green-darker);
background-image: var(--color-blue-green-darker);
}
&.heavyMetal {
@mixin text-fill-gradient-color;
background-color: var(--color-heavy-metal);
background-image: var(--color-heavy-metal);
}
&.heavyMetalHover {
@mixin text-fill-gradient-color;
background-color: var(--color-heavy-metal-hover);
background-image: var(--color-heavy-metal-hover);
}
}
/* spacing */
.spacing {
&.xxxTight.hasIcon {
&.right > .text {
padding-left: var(--spacing-xxx-tight);
}
&.left > .text {
padding-right: var(--spacing-xxx-tight);
}
&.bottom > .text {
padding-top: var(--spacing-xxx-tight);
}
}
&.xxTight.hasIcon {
&.right > .text {
padding-left: var(--spacing-xx-tight);
}
&.left > .text {
padding-right: var(--spacing-xx-tight);
}
&.bottom > .text {
padding-top: var(--spacing-xx-tight);
}
}
&.xTight.hasIcon {
&.right > .text {
padding-left: var(--spacing-x-tight);
}
&.left > .text {
padding-right: var(--spacing-x-tight);
}
&.bottom > .text {
padding-top: var(--spacing-x-tight);
}
}
&.tight.hasIcon {
&.right > .text {
padding-left: var(--spacing-tight);
}
&.left > .text {
padding-right: var(--spacing-tight);
}
&.bottom > .text {
padding-top: var(--spacing-tight);
}
}
&.base.hasIcon {
&.right > .text {
padding-left: var(--spacing-base);
}
&.left > .text {
padding-right: var(--spacing-base);
}
&.bottom > .text {
padding-top: var(--spacing-base);
}
}
&.loose.hasIcon {
&.right > .text {
padding-left: var(--spacing-loose);
}
&.left > .text {
padding-right: var(--spacing-loose);
}
&.bottom > .text {
padding-top: var(--spacing-loose);
}
}
}
/* weight */
.weight {
&.light {
font-weight: var(--font-weight-light);
}
&.normal {
font-weight: var(--font-weight-normal);
}
&.medium {
font-weight: var(--font-weight-medium);
}
&.bold {
font-weight: var(--font-weight-bold);
}
}
.underline {
text-decoration: underline;
} | src/components/TextIcon/styles.module.css | .textIcon {
display: inline-flex;
align-items: center;
justify-content: flex-start;
vertical-align: middle;
user-select: none;
}
.text {
display: inline-flex;
line-height: 1;
}
/* placement */
.placement {
&.bottom {
flex-direction: column;
}
}
/* size */
.size {
&.xs {
& .text {
font-size: var(--font-size-xs);
}
}
&.sm {
& .text {
font-size: var(--font-size-sm);
}
}
&.smS {
& .text {
font-size: var(--font-size-sm-s);
}
}
&.md {
& .text {
font-size: var(--font-size-md);
}
}
&.mdS {
& .text {
font-size: var(--font-size-md-s);
}
}
&.xm {
& .text {
font-size: var(--font-size-xm);
}
}
&.lg {
& .text {
font-size: var(--font-size-lg);
}
}
&.xl {
& .text {
font-size: var(--font-size-xl);
}
}
}
/* Colors */
.color {
&.gold {
color: var(--color-matters-gold);
}
&.red {
color: var(--color-error);
}
&.black {
color: var(--color-black);
}
&.greyDarker {
color: var(--color-grey-darker);
}
&.greyDark {
color: var(--color-grey-dark);
}
&.grey {
color: var(--color-grey);
}
&.greyLight {
color: var(--color-grey-light);
}
&.greyLighter {
color: var(--color-grey-lighter);
}
&.greenLighter {
color: var(--color-green-lighter);
}
&.white {
color: var(--color-white);
}
&.noir {
color: var(--color-noir);
}
&.blueGreen {
@mixin text-fill-gradient-color;
background-color: var(--color-blue-green);
background-image: var(--color-blue-green);
}
&.blueGreenDarker {
@mixin text-fill-gradient-color;
background-color: var(--color-blue-green-darker);
background-image: var(--color-blue-green-darker);
}
&.heavyMetal {
@mixin text-fill-gradient-color;
background-color: var(--color-heavy-metal);
background-image: var(--color-heavy-metal);
}
&.heavyMetalHover {
@mixin text-fill-gradient-color;
background-color: var(--color-heavy-metal-hover);
background-image: var(--color-heavy-metal-hover);
}
}
/* spacing */
.spacing {
&.xxxTight.hasIcon {
&.right > .text {
padding-left: var(--spacing-xxx-tight);
}
&.left > .text {
padding-right: var(--spacing-xxx-tight);
}
&.bottom > .text {
padding-top: var(--spacing-xxx-tight);
}
}
&.xxTight.hasIcon {
&.right > .text {
padding-left: var(--spacing-xx-tight);
}
&.left > .text {
padding-right: var(--spacing-xx-tight);
}
&.bottom > .text {
padding-top: var(--spacing-xx-tight);
}
}
&.xTight.hasIcon {
&.right > .text {
padding-left: var(--spacing-x-tight);
}
&.left > .text {
padding-right: var(--spacing-x-tight);
}
&.bottom > .text {
padding-top: var(--spacing-x-tight);
}
}
&.tight.hasIcon {
&.right > .text {
padding-left: var(--spacing-tight);
}
&.left > .text {
padding-right: var(--spacing-tight);
}
&.bottom > .text {
padding-top: var(--spacing-tight);
}
}
&.base.hasIcon {
&.right > .text {
padding-left: var(--spacing-base);
}
&.left > .text {
padding-right: var(--spacing-base);
}
&.bottom > .text {
padding-top: var(--spacing-base);
}
}
&.loose.hasIcon {
&.right > .text {
padding-left: var(--spacing-loose);
}
&.left > .text {
padding-right: var(--spacing-loose);
}
&.bottom > .text {
padding-top: var(--spacing-loose);
}
}
}
/* weight */
.weight {
&.light {
font-weight: var(--font-weight-light);
}
&.normal {
font-weight: var(--font-weight-normal);
}
&.medium {
font-weight: var(--font-weight-medium);
}
&.bold {
font-weight: var(--font-weight-bold);
}
}
.underline {
text-decoration: underline;
} | 0.630116 | 0.151812 |
@charset 'utf-8';
html,body{background:#030c1a;}
.bl-top-box{background:#2d174f;height:60px;}
.bl-top-con{width:960px;background:#2d174f;margin:0 auto;}
.bl-logo-box{width:313px;height:60px;background:#eb2520;position:relative;}
.bl-icon{background-image:url(../img/bl_icon.png);background-position:-10000px -10000px;background-repeat:no-repeat;}
.bl-logo{width:191px;height:36px;position:absolute;background-position:-36px -2px;left:18px;top:10px;}
.bl-logo-apart-line{position:absolute;width:1px;height:19px;top:24px;left:219px;background:#aa1a16;}
.bl-logo-txt{position:absolute;width:70px;height:26px;text-align:center;line-height:24px;font-size:20px;color:#fff;top:20px;right:20px;}
.bl-logo-arrow-bg,.bl-enter-arrow-bg{position:absolute;width:14px;height:14px;right:0;bottom:0;}
.bl-logo-arrow-bg{background-position:-38px -82px;}
.bl-enter-box{width:172px;height:60px;background:#fecb45;position:relative;}
.bl-enter-box:hover{background:#ffd870;}
.bl-enter-arrow-bg{background-position:-54px -82px;}
.bl-enter-icon{position:absolute;width:24px;height:32px;top:17px;left:24px;background-position:-38px -46px;}
.bl-enter-txt{position:absolute;font-size:22px;color:#eb2520;top:17px;right:24px;line-height:26px;}
.bl-enter-txt:hover{color:#eb2520;text-decoration:none;}
.bl-connect-box{color:#9d8fb2;text-align:right;padding-top:10px;line-height:20px;}
.bl-banner-box{background:url(../img/brand_life_bg.jpg) center top #020916 no-repeat;margin:0 auto;}
.bl-banner-con{width:960px;height:700px;position:relative;margin:0 auto;}
.bl-mid-land-box{width:960px;top:20px;left:0;position:absolute;}
.bl-mid-land-con{height:680px;position:relative;background:url(../img/mid_land_bg.png) -10px -24px no-repeat;}
.bl-left-land-box{width:320px;height:250px;position:absolute;top:350px;left:-350px;background:url(../img/left_land_bg.png) -25px -30px no-repeat;}
.bl-right-land-box{width:230px;height:190px;position:absolute;top:340px;right:-300px;background:url(../img/right_land_bg.png) -70px -30px no-repeat;}
.bl-house-icon{position:absolute;background-image:url(../img/house.png);background-position:-10000px -10000px;background-repeat:no-repeat;}
.bl-mid-land-con .bl-icon{position:absolute;}
.bl-house-1{width:180px;height:180px;left:62px;top:168px;z-index:66;background-position:3px 0;}
.bl-house-1:hover{background-position:-276px -3px;}
.bl-house-2{width:210px;height:215px;left:215px;top:225px;z-index:70;background-position:0 -209px;}
.bl-house-2:hover{background-position:-248px -213px;}
.bl-house-3{width:210px;height:220px;left:408px;bottom:123px;z-index:80;background-position:5px -440px;}
.bl-house-3:hover{background-position:-238px -450px; }
.bl-house-4{width:240px;height:180px;left:187px;top:102px;z-index:25;background-position:5px -670px;}
.bl-house-4:hover{background-position:-240px -675px;}
.bl-house-5{width:235px;height:170px;left:378px;top:194px;z-index:61;background-position:5px -855px;}
.bl-house-5:hover{background-position:-240px -864px;}
.bl-house-6{width:215px;height:190px;left:599px;top:237px;z-index:62;background-position:5px -1055px;}
.bl-house-6:hover{background-position:-240px -1060px;}
.bl-house-7{width:150px;height:155px;left:350px;top:65px;z-index:20;background-position:5px -1260px;}
.bl-house-7:hover{background-position:-232px -1266px;}
.bl-house-8{width:150px;height:180px;left:450px;top:7px;z-index:15;background-position:5px -1415px;}
.bl-house-8:hover{background-position:-235px -1425px;}
.bl-house-9{width:200px;height:195px;right:217px;top:50px;z-index:60;background-position:-10px -1640px;}
.bl-house-9:hover{background-position:-275px -1615px;}
.bl-house-10{width:160px;height:160px;right:130px;top:114px;z-index:60;background-position:5px -1844px;}
.bl-house-10:hover{background-position:-243px -1855px;}
.bl-house-11{width:165px;height:110px;right:19px;top:236px;z-index:60;background-position:5px -2025px;}
.bl-people-1{width:25px;height:35px;left:208px;top:374px;z-index:100;background-position:-185px -48px;}
.bl-people-2{width:28px;height:40px;z-index:63;left:655px;bottom:243px;background-position:-185px -95px;}
.bl-people-3{width:30px;height:38px;z-index:60;right:118px;top:272px;background-position:-185px -150px;}
.bl-tree-box{width:44px;height:57px;background-position:-78px -45px;}
.bl-tree-1{left:300px;bottom:217px;z-index:76;}
.bl-tree-2{left:335px;bottom:235px;z-index:77;}
.bl-tree-3{left:367px;bottom:254px;z-index:78;}
.bl-tree-4{left:220px;top:248px;z-index:67;}
.bl-tree-5{left:586px;bottom:240px;z-index:63;}
.bl-tree-6{left:620px;bottom:225px;z-index:63;}
.bl-tree-7{right:310px;top:195px;z-index:60;}
.bl-tree-8{right:285px;top:205px;z-index:60;}
.bl-tree-9{right:90px;top:295px;z-index:60;}
.bl-tree-10{right:117px;top:308px;z-index:60;}
.bl-tree-11{right:294px;top:195px;z-index:60;}
.bl-tree-12{right:272px;top:206px;z-index:60;}
.bl-basketball-box{width:110px;height:105px;left:347px;bottom:185px;z-index:79;background-position:-45px -166px;}
.bl-pool-1{width:84px;height:52px;right:220px;bottom:230px;background-position:-35px -110px;}
.bl-pool-2{width:50px;height:60px;right:130px;top:280px;background-position:-131px -44px;z-index:60;}
.bl-bottom-box{background:#eee;}
.bl-bottom-con{height:200px;width:970px;margin:0 auto;}
.bl-bottom-img-box{float:left;background:#fff;padding:5px;*display:inline;margin:25px 0 0 30px;}
.bl-bottom-img-box:hover{box-shadow:0 0 3px 3px rgba(217,217,217,0.8);}
.bl-bottom-img-box,.bl-bottom-img-box img{width:290px;height:140px;}
.bl-bottom-img-first{margin-left:5px;}
.bl-sidebar-btn-box{position:absolute;right:0;top:40px;background:#ebebeb;border-radius:3px 0 0 3px;}
.bl-sidebar-btn{display:block;width:25px;height:50px;position:relative;}
.bl-sidebar-arrow{border-width:9px;position:absolute;left:9px;top:17px;border-left-color:#eb2520;}
.bl-sidebar-box{position:absolute;width:200px;height:614px;background:#fff;top:0;right:0;padding:18px 20px 10px;display:none;}
.bl-sidebar-btn:hover .bl-sidebar-box{display:block;}
.bl-sidebar-top{height:55px;position:relative;}
.bl-sidebar-user-img{position:absolute;left:0;top:0;background:#ccc;}
.bl-sidebar-user-img, .bl-sidebar-user-img img{width:50px;height:50px;}
.bl-sidebar-name-box{
width:150px;
height:30px;
position:absolute;
right:0;
top:-5px;
}
.bl-sidebar-name{max-width:90px;_width:90px;display:inline-block;*display:inline;zoom:1;font-size:18px;}
.bl-sidebar-user-grade{width:50px;height:18px;display:inline-block;*display:inline;zoom:1;background-position:0 -281px;vertical-align:top;padding:6px 0 0 5px;font-size:12px;color:#fff;}
.bl-sidebar-bean-box{
width:140px;
height:30px;
position:absolute;
right:0;
bottom:0;
}
.bl-inline-block{display:inline-block;*display:inline;zoom:1;}
.bl-sidebar-bean-count{color:#fa7d5f;padding-right:5px;}
.bl-sidebar-bean-txt{padding-right:5px;}
.bl-sidebar-bean-tip-box{width:13px;height:13px;text-align:center;line-height:13px;position:relative;color:#fff;border-radius:50%;background:#fa7d5f;cursor:default;}
.bl-sidebar-bean-tip-box:hover .bl-sidebar-bean-tip-con{display:initial;}
.bl-sidebar-bean-tip-con{width:88px;height:37px;padding-left:3px;background:#fff;border:1px solid #d1d1d1;position:absolute;top:19px;right:-15px;color:#333;text-align:left;line-height:17px;display:none;z-index:200;}
.bl-sidebar-bean-tip-con a{color:#eb2520;}
.bl-sidebar-bean-tip-con .arrow{position:absolute;border-width:5px;right:15px;}
.bl-tip-arrow-white{border-bottom-color:#fff;top:-9px;}
.bl-tip-arrow-gray{border-bottom-color:#d1d1d1;top:-10px;}
.bl-sidebar-dl{margin-top:30px;}
.bl-sidebar-dl dt{color:#eb2520;font-size:14px;}
.bl-sidebar-dl dd{margin-top:2px;}
.bl-sidebar-dl dd a{display:block;color:#a9a9a9;}
.bl-sidebar-dl dd a:hover{color:#333;}
.bl-sidebar-tab-nav{margin-top:25px;}
.bl-sidebar-tab-nav a{float:left;width:100px;height:32px;line-height:32px;text-align:center;font-size:14px;border-bottom:1px solid #ccc;}
.bl-sidebar-tab-nav a.act{height:30px;border-bottom:3px solid #eb2520;margin-bottom:-1px;color:#eb2520;}
.bl-sidebar-tab-wrap{display:none;}
.bl-sidebar-tab .show{display:block;}
.bl-sidebar-tab-box,.bl-sidebar-prize-box{height:246px;position:relative;overflow:hidden;margin-top:20px;}
.bl-sidebar-prize-box{overflow-y:auto;overflow-x:hidden;}
.bl-sidebar-prize-title{font-weight:bold;line-height:30px;color:#000;}
.bl-sidebar-prize-dl{text-align:center;}
.bl-sidebar-prize-dl dd img{width:150px;height:150px;vertical-align:top;}
.bl-sidebar-prize-dl dt{height:30px;line-height:30px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;color:#333;}
.bl-sidebar-prize-btn{display:inline-block;*display:inline;zoom:1;width:100px;height:30px;border-radius:6px;line-height:30px;background:#fa7d5f;color:#fff;}
.bl-sidebar-prize-btn:hover{text-decoration:none;background:#ffa28c;color:#fff;}
.bl-sidebar-tab-con{position:absolute;width:100%;left:0;top:0;
transition: top 1s;
-moz-transition: top 1s;
-webkit-transition: top 1s;
-o-transition: top 1s;
-ms-transition: top 1s;
}
.bl-sidebar-tab-unit{height:82px;}
.bl-sidebar-tab-unit .unit-img-box{float:left;position:relative;border-radius:18px;overflow:hidden;}
.bl-sidebar-tab-unit .unit-img-box,.bl-sidebar-tab-unit .unit-img-box img{width:60px;height:60px;}
.bl-sidebar-tab-unit .unit-img-box img{background:#f00;}
.bl-sidebar-tab-unit .unit-content-box{float:right;width:125px;}
.bl-sidebar-tab-unit .unit-content-title{height:18px;line-height:18px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}
.bl-sidebar-tab-unit .unit-content-title a{color:#333;}
.bl-sidebar-tab-unit .unit-content-line{color:#999;}
.bl-sidebar-tab-unit .unit-content-line a{color:#eb2520;}
.bl-sidebar-tab-con-btn-box{height:30px;position:relative;}
.bl-sidebar-tab-con-btn-box .arrow{border-width:10px;position:absolute;left:50%;margin-left:-10px;}
.bl-btn-arrow-up{top:0;border-bottom-color:#eb2520;}
.bl-btn-arrow-bottom{top:10px;border-top-color:#eb2520;}
.bl-btn-arrow-box{width:30px;height:30px;position:relative;*display:inline;}
.bl-btn-arrow-box:hover{border:1px solid #e9e9e9;border-radius:50%;}
.bl-btn-up{margin-left:30px;}
.bl-btn-bottom{margin-right:30px;}
.un-up-btn,.un-bottom-btn{cursor:default;}
.un-up-btn:hover,.un-bottom-btn:hover{border:none;}
.un-up-btn .bl-btn-arrow-up{border-bottom-color:#ddd;}
.un-bottom-btn .bl-btn-arrow-bottom{border-top-color:#ddd;}
/* 勋章 */
.bl-sidebar-medal-carousel{position:relative;margin-top:10px;}
.bl-sidebar-medal-box{margin-left:26px;width:160px;height:30px;position:relative;overflow:hidden;}
.medal-btn-box{width:20px;height:20px;position:absolute;top:5px;font-size:18px;line-height:20px;text-align:center;font-family:"宋体";font-weight:bold;}
.medal-prev-btn{left:0;}
.medal-next-btn{right:0;}
.medal-btn-box:hover{text-decoration:none;}
.bl-sidebar-medal-con{position:absolute;left:0;top:0;width:10000px;
transition: left 1s;
-moz-transition: left 1s;
-webkit-transition: left 1s;
-o-transition: left 1s;
-ms-transition: left 1s;
}
.medal-img-box{float:left;width:40px;}
.medal-img-box img{width:30px;height:30px;vertical-align:top;background:#f00;}
.un-ca-btn, .un-ca-btn:hover{color:#ddd;cursor:default;}
/* CSS3动画 */
.set-origin{/*设置变换中心位置*/
-webkit-transform-origin:0 0;
-moz-transform-origin:0 0;
-ms-transform-origin:0 0;
-o-transform-origin:0 0;
transform-origin:0 0;
}
.ani-land{
/*-webkit-animation-name:'ani-land';
-webkit-animation-duration: 2s;
-webkit-animation-delay: .2s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: alternate;
-webkit-animation-fill-mode: backwards;*/
animation:ani-land 2.5s linear 0.2s infinite alternate backwards;
-webkit-animation:'ani-land' 2.5s linear 0.2s infinite alternate backwards;
-moz-animation:'ani-land' 2.5s linear 0.2s infinite alternate backwards;
-o-animation:'ani-land' 2.5s linear 0.2s infinite alternate backwards;
-ms-animation:ani-land 2.5s linear 0.2s infinite alternate backwards;
}
.bl-left-land-box{
-webkit-animation-duration: 2s;
-moz-animation-duration: 2s;
-o-animation-duration: 2s;
-ms-animation-duration: 2s;
animation-duration: 2s;
}
.bl-right-land-box{
-webkit-animation-duration: 1.6s;
-moz-animation-duration: 1.6s;
-o-animation-duration: 1.6s;
-ms-animation-duration: 1.6s;
animation-duration: 1.6s;
}
.bl-car-box{
width:35px;
height:30px;
/*-webkit-animation-duration: 20s;
-webkit-animation-delay: .2s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: normal;
-webkit-animation-fill-mode: backwards;*/
-webkit-animation:'travel' 20s linear 0.2s infinite normal backwards;
-moz-animation:'travel' 20s linear 0.2s infinite normal backwards;
-o-animation:'travel' 20s linear 0.2s infinite normal backwards;
-ms-animation:travel 20s linear 0.2s infinite normal backwards;
animation:travel 20s linear 0.2s infinite normal backwards;
}
.bl-car-1{left:235px;top:257px;z-index:66;
-webkit-animation-name:'travel-1';
-moz-animation-name:'travel-1';
-o-animation-name:'travel-1';
-ms-animation-name:travel-1;
animation-name:travel-1;
background-position:0 0;
}
.bl-car-2{left:408px;top:338px;z-index:65;
-webkit-animation:'travel-2' 16s linear 0.2s infinite normal backwards;
-moz-animation:'travel-2' 16s linear 0.2s infinite normal backwards;
-o-animation:'travel-2' 16s linear 0.2s infinite normal backwards;
-ms-animation:travel-2 16s linear 0.2s infinite normal backwards;
animation:travel-2 16s linear 0.2s infinite normal backwards;
background-position:0 -35px;
}
.bl-car-3{left:595px;top:450px;z-index:65;
-webkit-animation-name:'travel-3';
-moz-animation-name:'travel-3';
-o-animation-name:'travel-3';
-ms-animation-name:travel-3;
animation-name:travel-3;
background-position:0 -70px;
}
.bl-car-4{left:480px;top:155px;z-index:66;
-webkit-animation-name:'travel-4';
-moz-animation-name:'travel-4';
-o-animation-name:'travel-4';
-ms-animation-name:travel-4;
animation-name:travel-4;
background-position:0 -98px;
}
/* 黄色小车 */
@-webkit-keyframes travel-1 {
0% {-webkit-transform: translate(0,0);}
100% {-webkit-transform: translate(370px,200px);}
}
@-moz-keyframes travel-1 {
0% {-moz-transform: translate(0,0);}
100% {-moz-transform: translate(370px,200px);}
}
@-ms-keyframes travel-1 {
0% {-ms-transform: translate(0,0);}
100% {-ms-transform: translate(370px,200px);}
}
@-o-keyframes travel-1 {
0% {-o-transform: translate(0,0);}
100% {-o-transform: translate(370px,200px);}
}
@keyframes travel-1 {
0% {transform: translate(0,0);}
100% {transform: translate(370px,200px);}
}
/* 红色小车 */
@-webkit-keyframes travel-2 {
0% {-webkit-transform: translate(0,0);}
100% {-webkit-transform: translate(-220px,-120px);}
}
@-moz-keyframes travel-2 {
0% {-moz-transform: translate(0,0);}
100% {-moz-transform: translate(-220px,-120px);}
}
@-ms-keyframes travel-2 {
0% {-ms-transform: translate(0,0);}
100% {-ms-transform: translate(-220px,-120px);}
}
@-o-keyframes travel-2 {
0% {-o-transform: translate(0,0);}
100% {-o-transform: translate(-220px,-120px);}
}
@keyframes travel-2 {
0% {transform: translate(0,0);}
100% {transform: translate(-220px,-120px);}
}
/* 白色小车 */
@-webkit-keyframes travel-3 {
0% {-webkit-transform: translate(0,0);}
100% {-webkit-transform: translate(-400px,-230px);}
}
@-moz-keyframes travel-3 {
0% {-moz-transform: translate(0,0);}
100% {-moz-transform: translate(-400px,-230px);}
}
@-o-keyframes travel-3 {
0% {-o-transform: translate(0,0);}
100% {-o-transform: translate(-400px,-230px);}
}
@-ms-keyframes travel-3 {
0% {-ms-transform: translate(0,0);}
100% {-ms-transform: translate(-400px,-230px);}
}
@keyframes travel-3 {
0% {transform: translate(0,0);}
100% {transform: translate(-400px,-230px);}
}
/* 紫色小车 */
@-webkit-keyframes travel-4 {
0% {-webkit-transform: translate(0,0);}
100% {-webkit-transform: translate(-340px,195px);}
}
@-moz-keyframes travel-4 {
0% {-moz-transform: translate(0,0);}
100% {-moz-transform: translate(-340px,195px);}
}
@-o-keyframes travel-4 {
0% {-o-transform: translate(0,0);}
100% {-o-transform: translate(-340px,195px);}
}
@-ms-keyframes travel-4 {
0% {-ms-transform: translate(0,0);}
100% {-ms-transform: translate(-340px,195px);}
}
@keyframes travel-4 {
0% {transform: translate(0,0);}
100% {transform: translate(-340px,195px);}
}
/* 陆地 */
@-webkit-keyframes ani-land {
0% {-webkit-transform: translateY(0);}
100% {-webkit-transform: translateY(-25px);}
}
@-moz-keyframes ani-land {
0% {-moz-transform: translateY(0);}
100% {-moz-transform: translateY(-25px);}
}
@-o-keyframes ani-land {
0% {-o-transform: translateY(0);}
100% {-o-transform: translateY(-25px);}
}
@-ms-keyframes ani-land {
0% {-ms-transform: translateY(0);}
100% {-ms-transform: translateY(-25px);}
}
@keyframes ani-land {
0% {transform: translateY(0);}
100% {transform: translateY(-25px);}
} | css/brandlife.css | @charset 'utf-8';
html,body{background:#030c1a;}
.bl-top-box{background:#2d174f;height:60px;}
.bl-top-con{width:960px;background:#2d174f;margin:0 auto;}
.bl-logo-box{width:313px;height:60px;background:#eb2520;position:relative;}
.bl-icon{background-image:url(../img/bl_icon.png);background-position:-10000px -10000px;background-repeat:no-repeat;}
.bl-logo{width:191px;height:36px;position:absolute;background-position:-36px -2px;left:18px;top:10px;}
.bl-logo-apart-line{position:absolute;width:1px;height:19px;top:24px;left:219px;background:#aa1a16;}
.bl-logo-txt{position:absolute;width:70px;height:26px;text-align:center;line-height:24px;font-size:20px;color:#fff;top:20px;right:20px;}
.bl-logo-arrow-bg,.bl-enter-arrow-bg{position:absolute;width:14px;height:14px;right:0;bottom:0;}
.bl-logo-arrow-bg{background-position:-38px -82px;}
.bl-enter-box{width:172px;height:60px;background:#fecb45;position:relative;}
.bl-enter-box:hover{background:#ffd870;}
.bl-enter-arrow-bg{background-position:-54px -82px;}
.bl-enter-icon{position:absolute;width:24px;height:32px;top:17px;left:24px;background-position:-38px -46px;}
.bl-enter-txt{position:absolute;font-size:22px;color:#eb2520;top:17px;right:24px;line-height:26px;}
.bl-enter-txt:hover{color:#eb2520;text-decoration:none;}
.bl-connect-box{color:#9d8fb2;text-align:right;padding-top:10px;line-height:20px;}
.bl-banner-box{background:url(../img/brand_life_bg.jpg) center top #020916 no-repeat;margin:0 auto;}
.bl-banner-con{width:960px;height:700px;position:relative;margin:0 auto;}
.bl-mid-land-box{width:960px;top:20px;left:0;position:absolute;}
.bl-mid-land-con{height:680px;position:relative;background:url(../img/mid_land_bg.png) -10px -24px no-repeat;}
.bl-left-land-box{width:320px;height:250px;position:absolute;top:350px;left:-350px;background:url(../img/left_land_bg.png) -25px -30px no-repeat;}
.bl-right-land-box{width:230px;height:190px;position:absolute;top:340px;right:-300px;background:url(../img/right_land_bg.png) -70px -30px no-repeat;}
.bl-house-icon{position:absolute;background-image:url(../img/house.png);background-position:-10000px -10000px;background-repeat:no-repeat;}
.bl-mid-land-con .bl-icon{position:absolute;}
.bl-house-1{width:180px;height:180px;left:62px;top:168px;z-index:66;background-position:3px 0;}
.bl-house-1:hover{background-position:-276px -3px;}
.bl-house-2{width:210px;height:215px;left:215px;top:225px;z-index:70;background-position:0 -209px;}
.bl-house-2:hover{background-position:-248px -213px;}
.bl-house-3{width:210px;height:220px;left:408px;bottom:123px;z-index:80;background-position:5px -440px;}
.bl-house-3:hover{background-position:-238px -450px; }
.bl-house-4{width:240px;height:180px;left:187px;top:102px;z-index:25;background-position:5px -670px;}
.bl-house-4:hover{background-position:-240px -675px;}
.bl-house-5{width:235px;height:170px;left:378px;top:194px;z-index:61;background-position:5px -855px;}
.bl-house-5:hover{background-position:-240px -864px;}
.bl-house-6{width:215px;height:190px;left:599px;top:237px;z-index:62;background-position:5px -1055px;}
.bl-house-6:hover{background-position:-240px -1060px;}
.bl-house-7{width:150px;height:155px;left:350px;top:65px;z-index:20;background-position:5px -1260px;}
.bl-house-7:hover{background-position:-232px -1266px;}
.bl-house-8{width:150px;height:180px;left:450px;top:7px;z-index:15;background-position:5px -1415px;}
.bl-house-8:hover{background-position:-235px -1425px;}
.bl-house-9{width:200px;height:195px;right:217px;top:50px;z-index:60;background-position:-10px -1640px;}
.bl-house-9:hover{background-position:-275px -1615px;}
.bl-house-10{width:160px;height:160px;right:130px;top:114px;z-index:60;background-position:5px -1844px;}
.bl-house-10:hover{background-position:-243px -1855px;}
.bl-house-11{width:165px;height:110px;right:19px;top:236px;z-index:60;background-position:5px -2025px;}
.bl-people-1{width:25px;height:35px;left:208px;top:374px;z-index:100;background-position:-185px -48px;}
.bl-people-2{width:28px;height:40px;z-index:63;left:655px;bottom:243px;background-position:-185px -95px;}
.bl-people-3{width:30px;height:38px;z-index:60;right:118px;top:272px;background-position:-185px -150px;}
.bl-tree-box{width:44px;height:57px;background-position:-78px -45px;}
.bl-tree-1{left:300px;bottom:217px;z-index:76;}
.bl-tree-2{left:335px;bottom:235px;z-index:77;}
.bl-tree-3{left:367px;bottom:254px;z-index:78;}
.bl-tree-4{left:220px;top:248px;z-index:67;}
.bl-tree-5{left:586px;bottom:240px;z-index:63;}
.bl-tree-6{left:620px;bottom:225px;z-index:63;}
.bl-tree-7{right:310px;top:195px;z-index:60;}
.bl-tree-8{right:285px;top:205px;z-index:60;}
.bl-tree-9{right:90px;top:295px;z-index:60;}
.bl-tree-10{right:117px;top:308px;z-index:60;}
.bl-tree-11{right:294px;top:195px;z-index:60;}
.bl-tree-12{right:272px;top:206px;z-index:60;}
.bl-basketball-box{width:110px;height:105px;left:347px;bottom:185px;z-index:79;background-position:-45px -166px;}
.bl-pool-1{width:84px;height:52px;right:220px;bottom:230px;background-position:-35px -110px;}
.bl-pool-2{width:50px;height:60px;right:130px;top:280px;background-position:-131px -44px;z-index:60;}
.bl-bottom-box{background:#eee;}
.bl-bottom-con{height:200px;width:970px;margin:0 auto;}
.bl-bottom-img-box{float:left;background:#fff;padding:5px;*display:inline;margin:25px 0 0 30px;}
.bl-bottom-img-box:hover{box-shadow:0 0 3px 3px rgba(217,217,217,0.8);}
.bl-bottom-img-box,.bl-bottom-img-box img{width:290px;height:140px;}
.bl-bottom-img-first{margin-left:5px;}
.bl-sidebar-btn-box{position:absolute;right:0;top:40px;background:#ebebeb;border-radius:3px 0 0 3px;}
.bl-sidebar-btn{display:block;width:25px;height:50px;position:relative;}
.bl-sidebar-arrow{border-width:9px;position:absolute;left:9px;top:17px;border-left-color:#eb2520;}
.bl-sidebar-box{position:absolute;width:200px;height:614px;background:#fff;top:0;right:0;padding:18px 20px 10px;display:none;}
.bl-sidebar-btn:hover .bl-sidebar-box{display:block;}
.bl-sidebar-top{height:55px;position:relative;}
.bl-sidebar-user-img{position:absolute;left:0;top:0;background:#ccc;}
.bl-sidebar-user-img, .bl-sidebar-user-img img{width:50px;height:50px;}
.bl-sidebar-name-box{
width:150px;
height:30px;
position:absolute;
right:0;
top:-5px;
}
.bl-sidebar-name{max-width:90px;_width:90px;display:inline-block;*display:inline;zoom:1;font-size:18px;}
.bl-sidebar-user-grade{width:50px;height:18px;display:inline-block;*display:inline;zoom:1;background-position:0 -281px;vertical-align:top;padding:6px 0 0 5px;font-size:12px;color:#fff;}
.bl-sidebar-bean-box{
width:140px;
height:30px;
position:absolute;
right:0;
bottom:0;
}
.bl-inline-block{display:inline-block;*display:inline;zoom:1;}
.bl-sidebar-bean-count{color:#fa7d5f;padding-right:5px;}
.bl-sidebar-bean-txt{padding-right:5px;}
.bl-sidebar-bean-tip-box{width:13px;height:13px;text-align:center;line-height:13px;position:relative;color:#fff;border-radius:50%;background:#fa7d5f;cursor:default;}
.bl-sidebar-bean-tip-box:hover .bl-sidebar-bean-tip-con{display:initial;}
.bl-sidebar-bean-tip-con{width:88px;height:37px;padding-left:3px;background:#fff;border:1px solid #d1d1d1;position:absolute;top:19px;right:-15px;color:#333;text-align:left;line-height:17px;display:none;z-index:200;}
.bl-sidebar-bean-tip-con a{color:#eb2520;}
.bl-sidebar-bean-tip-con .arrow{position:absolute;border-width:5px;right:15px;}
.bl-tip-arrow-white{border-bottom-color:#fff;top:-9px;}
.bl-tip-arrow-gray{border-bottom-color:#d1d1d1;top:-10px;}
.bl-sidebar-dl{margin-top:30px;}
.bl-sidebar-dl dt{color:#eb2520;font-size:14px;}
.bl-sidebar-dl dd{margin-top:2px;}
.bl-sidebar-dl dd a{display:block;color:#a9a9a9;}
.bl-sidebar-dl dd a:hover{color:#333;}
.bl-sidebar-tab-nav{margin-top:25px;}
.bl-sidebar-tab-nav a{float:left;width:100px;height:32px;line-height:32px;text-align:center;font-size:14px;border-bottom:1px solid #ccc;}
.bl-sidebar-tab-nav a.act{height:30px;border-bottom:3px solid #eb2520;margin-bottom:-1px;color:#eb2520;}
.bl-sidebar-tab-wrap{display:none;}
.bl-sidebar-tab .show{display:block;}
.bl-sidebar-tab-box,.bl-sidebar-prize-box{height:246px;position:relative;overflow:hidden;margin-top:20px;}
.bl-sidebar-prize-box{overflow-y:auto;overflow-x:hidden;}
.bl-sidebar-prize-title{font-weight:bold;line-height:30px;color:#000;}
.bl-sidebar-prize-dl{text-align:center;}
.bl-sidebar-prize-dl dd img{width:150px;height:150px;vertical-align:top;}
.bl-sidebar-prize-dl dt{height:30px;line-height:30px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;color:#333;}
.bl-sidebar-prize-btn{display:inline-block;*display:inline;zoom:1;width:100px;height:30px;border-radius:6px;line-height:30px;background:#fa7d5f;color:#fff;}
.bl-sidebar-prize-btn:hover{text-decoration:none;background:#ffa28c;color:#fff;}
.bl-sidebar-tab-con{position:absolute;width:100%;left:0;top:0;
transition: top 1s;
-moz-transition: top 1s;
-webkit-transition: top 1s;
-o-transition: top 1s;
-ms-transition: top 1s;
}
.bl-sidebar-tab-unit{height:82px;}
.bl-sidebar-tab-unit .unit-img-box{float:left;position:relative;border-radius:18px;overflow:hidden;}
.bl-sidebar-tab-unit .unit-img-box,.bl-sidebar-tab-unit .unit-img-box img{width:60px;height:60px;}
.bl-sidebar-tab-unit .unit-img-box img{background:#f00;}
.bl-sidebar-tab-unit .unit-content-box{float:right;width:125px;}
.bl-sidebar-tab-unit .unit-content-title{height:18px;line-height:18px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}
.bl-sidebar-tab-unit .unit-content-title a{color:#333;}
.bl-sidebar-tab-unit .unit-content-line{color:#999;}
.bl-sidebar-tab-unit .unit-content-line a{color:#eb2520;}
.bl-sidebar-tab-con-btn-box{height:30px;position:relative;}
.bl-sidebar-tab-con-btn-box .arrow{border-width:10px;position:absolute;left:50%;margin-left:-10px;}
.bl-btn-arrow-up{top:0;border-bottom-color:#eb2520;}
.bl-btn-arrow-bottom{top:10px;border-top-color:#eb2520;}
.bl-btn-arrow-box{width:30px;height:30px;position:relative;*display:inline;}
.bl-btn-arrow-box:hover{border:1px solid #e9e9e9;border-radius:50%;}
.bl-btn-up{margin-left:30px;}
.bl-btn-bottom{margin-right:30px;}
.un-up-btn,.un-bottom-btn{cursor:default;}
.un-up-btn:hover,.un-bottom-btn:hover{border:none;}
.un-up-btn .bl-btn-arrow-up{border-bottom-color:#ddd;}
.un-bottom-btn .bl-btn-arrow-bottom{border-top-color:#ddd;}
/* 勋章 */
.bl-sidebar-medal-carousel{position:relative;margin-top:10px;}
.bl-sidebar-medal-box{margin-left:26px;width:160px;height:30px;position:relative;overflow:hidden;}
.medal-btn-box{width:20px;height:20px;position:absolute;top:5px;font-size:18px;line-height:20px;text-align:center;font-family:"宋体";font-weight:bold;}
.medal-prev-btn{left:0;}
.medal-next-btn{right:0;}
.medal-btn-box:hover{text-decoration:none;}
.bl-sidebar-medal-con{position:absolute;left:0;top:0;width:10000px;
transition: left 1s;
-moz-transition: left 1s;
-webkit-transition: left 1s;
-o-transition: left 1s;
-ms-transition: left 1s;
}
.medal-img-box{float:left;width:40px;}
.medal-img-box img{width:30px;height:30px;vertical-align:top;background:#f00;}
.un-ca-btn, .un-ca-btn:hover{color:#ddd;cursor:default;}
/* CSS3动画 */
.set-origin{/*设置变换中心位置*/
-webkit-transform-origin:0 0;
-moz-transform-origin:0 0;
-ms-transform-origin:0 0;
-o-transform-origin:0 0;
transform-origin:0 0;
}
.ani-land{
/*-webkit-animation-name:'ani-land';
-webkit-animation-duration: 2s;
-webkit-animation-delay: .2s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: alternate;
-webkit-animation-fill-mode: backwards;*/
animation:ani-land 2.5s linear 0.2s infinite alternate backwards;
-webkit-animation:'ani-land' 2.5s linear 0.2s infinite alternate backwards;
-moz-animation:'ani-land' 2.5s linear 0.2s infinite alternate backwards;
-o-animation:'ani-land' 2.5s linear 0.2s infinite alternate backwards;
-ms-animation:ani-land 2.5s linear 0.2s infinite alternate backwards;
}
.bl-left-land-box{
-webkit-animation-duration: 2s;
-moz-animation-duration: 2s;
-o-animation-duration: 2s;
-ms-animation-duration: 2s;
animation-duration: 2s;
}
.bl-right-land-box{
-webkit-animation-duration: 1.6s;
-moz-animation-duration: 1.6s;
-o-animation-duration: 1.6s;
-ms-animation-duration: 1.6s;
animation-duration: 1.6s;
}
.bl-car-box{
width:35px;
height:30px;
/*-webkit-animation-duration: 20s;
-webkit-animation-delay: .2s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: normal;
-webkit-animation-fill-mode: backwards;*/
-webkit-animation:'travel' 20s linear 0.2s infinite normal backwards;
-moz-animation:'travel' 20s linear 0.2s infinite normal backwards;
-o-animation:'travel' 20s linear 0.2s infinite normal backwards;
-ms-animation:travel 20s linear 0.2s infinite normal backwards;
animation:travel 20s linear 0.2s infinite normal backwards;
}
.bl-car-1{left:235px;top:257px;z-index:66;
-webkit-animation-name:'travel-1';
-moz-animation-name:'travel-1';
-o-animation-name:'travel-1';
-ms-animation-name:travel-1;
animation-name:travel-1;
background-position:0 0;
}
.bl-car-2{left:408px;top:338px;z-index:65;
-webkit-animation:'travel-2' 16s linear 0.2s infinite normal backwards;
-moz-animation:'travel-2' 16s linear 0.2s infinite normal backwards;
-o-animation:'travel-2' 16s linear 0.2s infinite normal backwards;
-ms-animation:travel-2 16s linear 0.2s infinite normal backwards;
animation:travel-2 16s linear 0.2s infinite normal backwards;
background-position:0 -35px;
}
.bl-car-3{left:595px;top:450px;z-index:65;
-webkit-animation-name:'travel-3';
-moz-animation-name:'travel-3';
-o-animation-name:'travel-3';
-ms-animation-name:travel-3;
animation-name:travel-3;
background-position:0 -70px;
}
.bl-car-4{left:480px;top:155px;z-index:66;
-webkit-animation-name:'travel-4';
-moz-animation-name:'travel-4';
-o-animation-name:'travel-4';
-ms-animation-name:travel-4;
animation-name:travel-4;
background-position:0 -98px;
}
/* 黄色小车 */
@-webkit-keyframes travel-1 {
0% {-webkit-transform: translate(0,0);}
100% {-webkit-transform: translate(370px,200px);}
}
@-moz-keyframes travel-1 {
0% {-moz-transform: translate(0,0);}
100% {-moz-transform: translate(370px,200px);}
}
@-ms-keyframes travel-1 {
0% {-ms-transform: translate(0,0);}
100% {-ms-transform: translate(370px,200px);}
}
@-o-keyframes travel-1 {
0% {-o-transform: translate(0,0);}
100% {-o-transform: translate(370px,200px);}
}
@keyframes travel-1 {
0% {transform: translate(0,0);}
100% {transform: translate(370px,200px);}
}
/* 红色小车 */
@-webkit-keyframes travel-2 {
0% {-webkit-transform: translate(0,0);}
100% {-webkit-transform: translate(-220px,-120px);}
}
@-moz-keyframes travel-2 {
0% {-moz-transform: translate(0,0);}
100% {-moz-transform: translate(-220px,-120px);}
}
@-ms-keyframes travel-2 {
0% {-ms-transform: translate(0,0);}
100% {-ms-transform: translate(-220px,-120px);}
}
@-o-keyframes travel-2 {
0% {-o-transform: translate(0,0);}
100% {-o-transform: translate(-220px,-120px);}
}
@keyframes travel-2 {
0% {transform: translate(0,0);}
100% {transform: translate(-220px,-120px);}
}
/* 白色小车 */
@-webkit-keyframes travel-3 {
0% {-webkit-transform: translate(0,0);}
100% {-webkit-transform: translate(-400px,-230px);}
}
@-moz-keyframes travel-3 {
0% {-moz-transform: translate(0,0);}
100% {-moz-transform: translate(-400px,-230px);}
}
@-o-keyframes travel-3 {
0% {-o-transform: translate(0,0);}
100% {-o-transform: translate(-400px,-230px);}
}
@-ms-keyframes travel-3 {
0% {-ms-transform: translate(0,0);}
100% {-ms-transform: translate(-400px,-230px);}
}
@keyframes travel-3 {
0% {transform: translate(0,0);}
100% {transform: translate(-400px,-230px);}
}
/* 紫色小车 */
@-webkit-keyframes travel-4 {
0% {-webkit-transform: translate(0,0);}
100% {-webkit-transform: translate(-340px,195px);}
}
@-moz-keyframes travel-4 {
0% {-moz-transform: translate(0,0);}
100% {-moz-transform: translate(-340px,195px);}
}
@-o-keyframes travel-4 {
0% {-o-transform: translate(0,0);}
100% {-o-transform: translate(-340px,195px);}
}
@-ms-keyframes travel-4 {
0% {-ms-transform: translate(0,0);}
100% {-ms-transform: translate(-340px,195px);}
}
@keyframes travel-4 {
0% {transform: translate(0,0);}
100% {transform: translate(-340px,195px);}
}
/* 陆地 */
@-webkit-keyframes ani-land {
0% {-webkit-transform: translateY(0);}
100% {-webkit-transform: translateY(-25px);}
}
@-moz-keyframes ani-land {
0% {-moz-transform: translateY(0);}
100% {-moz-transform: translateY(-25px);}
}
@-o-keyframes ani-land {
0% {-o-transform: translateY(0);}
100% {-o-transform: translateY(-25px);}
}
@-ms-keyframes ani-land {
0% {-ms-transform: translateY(0);}
100% {-ms-transform: translateY(-25px);}
}
@keyframes ani-land {
0% {transform: translateY(0);}
100% {transform: translateY(-25px);}
} | 0.207536 | 0.057229 |
page {
background-color: #f4f4f4;
color: #333;
}
/* 头部菜单 */
.title-content{
height:100rpx;
background-color: #fff;
position: fixed;
top: 0rpx;
display: flex;
z-index: 999;
width: 100%;
height: 100rpx;
border-bottom: 2rpx solid #f4f4f4;
}
.topage{
margin-top: 15px;
margin-left:20px;
width:60rpx;
height:60rpx;
z-index:999;
/* background-color: #B4282D; */
}
.title {
margin-top: 15px;
margin-left:90px;
font-family: STKaiti;
font-size: 30px;
text-align:center;
/* background-color: #000000; */
}
.order-tit {
position: fixed;
top: 100rpx;
display: flex;
justify-content: space-around;
z-index: 999;
width: 100%;
height: 100rpx;
line-height: 100rpx;
background-color: #fff;
border-bottom: 2rpx solid #f4f4f4;
}
.order-tit text {
display: block;
font-size: 28rpx;
color: 999;
width: 100rpx;
text-align: center;
}
.order-tit text.on {
border-bottom: 4rpx solid #eb2444;
color: #eb2444;
}
/* end 头部菜单 */
.main {
margin-top: 200rpx;
}
/* 商品列表 */
.prod-item {
background-color: #fff;
margin-top: 15rpx;
font-size: 28rpx;
}
.prod-item .item-cont .prod-pic image {
width: 180rpx;
height: 180rpx;
}
.prod-item .order-num {
padding: 20rpx 30rpx;
display: flex;
justify-content: space-between;
font-size: 28rpx;
}
.order-state {
display: flex;
align-items: center;
font-size: 24rpx;
}
.prod-item .item-cont .categories {
white-space: nowrap;
}
.prod-item .item-cont {
display: flex;
align-items: center;
padding: 20rpx 30rpx;
border-radius: 10rpx;
display: -webkit-flex;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
background: #fafafa;
}
.prod-item .order-num .clear-btn {
width: 32rpx;
height: 32rpx;
font-size: 0;
vertical-align: top;
margin-left: 42rpx;
position: relative;
}
.prod-item .order-num .clear-btn::after {
content: " ";
display: block;
position: absolute;
left: -10px;
top: 0rpx;
width: 1px;
height: 32rpx;
background: #ddd;
}
.prod-item .order-num .clear-btn .clear-list-btn {
width: 100%;
height: 100%;
vertical-align: middle;
}
.prod-item .item-cont .prod-pic {
font-size: 0;
display: inline-block;
width: 160rpx;
height: 160rpx;
overflow: hidden;
background: #fff;
margin-right: 16rpx;
}
.prod-item .item-cont .prod-pic image {
width: 100%;
height: 100%;
}
.prod-item .item-cont .prod-info {
margin-left: 10rpx;
font-size: 28rpx;
width: 100%;
position: relative;
height: 160rpx;
-webkit-flex: 1;
-ms-flex: 1;
-webkit-box-flex: 1;
-moz-box-flex: 1;
flex: 1;
}
.prod-item .item-cont .prod-info .prodname {
font-size: 28rpx;
line-height: 36rpx;
max-height: 86rpx;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
word-break: break-all;
}
.prod-item .item-cont .prod-info .prod-info-cont {
color: #999;
line-height: 40rpx;
margin-top: 10rpx;
font-size: 22rpx;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
word-break: break-all;
}
.prod-item .total-num {
text-align: right;
padding: 20rpx 30rpx;
font-size: 28rpx;
}
.prod-item .price-nums .prodprice {
color: #333;
position: absolute;
bottom: 0;
}
.prod-item .price-nums .prodcount {
position: absolute;
bottom: 5rpx;
right: 0;
color: #999;
font-family: verdana;
}
.prod-item .total-num .prodprice {
display: inline-block;
color: #333;
}
.prod-item .total-num .prodcount {
margin-right: 20rpx;
}
.prod-item .prod-foot {
padding: 20rpx 30rpx;
border-top: 2rpx solid #e6e6e6;
}
.prod-item .prod-foot .total {
font-size: 25rpx;
margin-bottom: 20rpx;
padding-bottom: 20rpx;
border-bottom: 2rpx solid #e9eaec;
}
.prod-item .prod-foot .btn {
display: flex;
align-items: center;
justify-content: flex-end;
}
.other-button-hover {
background-color: blue;
}
.button-hover {
background-color: red;
}
/** 添加自定义button点击态样式类**/
.button-hover {
background-color: blue;
}
.button {
margin-left: 10px;
font-size: 26rpx;
background: #fff;
padding: 10rpx 30rpx;
border-radius: 80rpx;
border: 2rpx solid #e1e1e1;
}
.button.warn {
color: #eb2444;
border-color: #eb2444;
}
/* end 商品列表 */
.empty {
font-size: 24rpx;
margin-top: 100rpx;
text-align: center;
color: #999;
height: 300rpx;
line-height: 300rpx;
}
/* 根据状态显示不同的颜色 */
.order-state .order-sts.red {
color: #eb2444;
}
.order-state .order-sts.gray {
color: #999;
} | mall4uni/pages/orderList/orderList.css |
page {
background-color: #f4f4f4;
color: #333;
}
/* 头部菜单 */
.title-content{
height:100rpx;
background-color: #fff;
position: fixed;
top: 0rpx;
display: flex;
z-index: 999;
width: 100%;
height: 100rpx;
border-bottom: 2rpx solid #f4f4f4;
}
.topage{
margin-top: 15px;
margin-left:20px;
width:60rpx;
height:60rpx;
z-index:999;
/* background-color: #B4282D; */
}
.title {
margin-top: 15px;
margin-left:90px;
font-family: STKaiti;
font-size: 30px;
text-align:center;
/* background-color: #000000; */
}
.order-tit {
position: fixed;
top: 100rpx;
display: flex;
justify-content: space-around;
z-index: 999;
width: 100%;
height: 100rpx;
line-height: 100rpx;
background-color: #fff;
border-bottom: 2rpx solid #f4f4f4;
}
.order-tit text {
display: block;
font-size: 28rpx;
color: 999;
width: 100rpx;
text-align: center;
}
.order-tit text.on {
border-bottom: 4rpx solid #eb2444;
color: #eb2444;
}
/* end 头部菜单 */
.main {
margin-top: 200rpx;
}
/* 商品列表 */
.prod-item {
background-color: #fff;
margin-top: 15rpx;
font-size: 28rpx;
}
.prod-item .item-cont .prod-pic image {
width: 180rpx;
height: 180rpx;
}
.prod-item .order-num {
padding: 20rpx 30rpx;
display: flex;
justify-content: space-between;
font-size: 28rpx;
}
.order-state {
display: flex;
align-items: center;
font-size: 24rpx;
}
.prod-item .item-cont .categories {
white-space: nowrap;
}
.prod-item .item-cont {
display: flex;
align-items: center;
padding: 20rpx 30rpx;
border-radius: 10rpx;
display: -webkit-flex;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
background: #fafafa;
}
.prod-item .order-num .clear-btn {
width: 32rpx;
height: 32rpx;
font-size: 0;
vertical-align: top;
margin-left: 42rpx;
position: relative;
}
.prod-item .order-num .clear-btn::after {
content: " ";
display: block;
position: absolute;
left: -10px;
top: 0rpx;
width: 1px;
height: 32rpx;
background: #ddd;
}
.prod-item .order-num .clear-btn .clear-list-btn {
width: 100%;
height: 100%;
vertical-align: middle;
}
.prod-item .item-cont .prod-pic {
font-size: 0;
display: inline-block;
width: 160rpx;
height: 160rpx;
overflow: hidden;
background: #fff;
margin-right: 16rpx;
}
.prod-item .item-cont .prod-pic image {
width: 100%;
height: 100%;
}
.prod-item .item-cont .prod-info {
margin-left: 10rpx;
font-size: 28rpx;
width: 100%;
position: relative;
height: 160rpx;
-webkit-flex: 1;
-ms-flex: 1;
-webkit-box-flex: 1;
-moz-box-flex: 1;
flex: 1;
}
.prod-item .item-cont .prod-info .prodname {
font-size: 28rpx;
line-height: 36rpx;
max-height: 86rpx;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
word-break: break-all;
}
.prod-item .item-cont .prod-info .prod-info-cont {
color: #999;
line-height: 40rpx;
margin-top: 10rpx;
font-size: 22rpx;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
word-break: break-all;
}
.prod-item .total-num {
text-align: right;
padding: 20rpx 30rpx;
font-size: 28rpx;
}
.prod-item .price-nums .prodprice {
color: #333;
position: absolute;
bottom: 0;
}
.prod-item .price-nums .prodcount {
position: absolute;
bottom: 5rpx;
right: 0;
color: #999;
font-family: verdana;
}
.prod-item .total-num .prodprice {
display: inline-block;
color: #333;
}
.prod-item .total-num .prodcount {
margin-right: 20rpx;
}
.prod-item .prod-foot {
padding: 20rpx 30rpx;
border-top: 2rpx solid #e6e6e6;
}
.prod-item .prod-foot .total {
font-size: 25rpx;
margin-bottom: 20rpx;
padding-bottom: 20rpx;
border-bottom: 2rpx solid #e9eaec;
}
.prod-item .prod-foot .btn {
display: flex;
align-items: center;
justify-content: flex-end;
}
.other-button-hover {
background-color: blue;
}
.button-hover {
background-color: red;
}
/** 添加自定义button点击态样式类**/
.button-hover {
background-color: blue;
}
.button {
margin-left: 10px;
font-size: 26rpx;
background: #fff;
padding: 10rpx 30rpx;
border-radius: 80rpx;
border: 2rpx solid #e1e1e1;
}
.button.warn {
color: #eb2444;
border-color: #eb2444;
}
/* end 商品列表 */
.empty {
font-size: 24rpx;
margin-top: 100rpx;
text-align: center;
color: #999;
height: 300rpx;
line-height: 300rpx;
}
/* 根据状态显示不同的颜色 */
.order-state .order-sts.red {
color: #eb2444;
}
.order-state .order-sts.gray {
color: #999;
} | 0.304972 | 0.063337 |
.event {
display: flex;
flex-direction: column;
align-items: flex-start;
margin: 0vw 8vw 0vw 8vw;
border-top: 1px solid white;
}
#last {
border-bottom: 1px solid white;
padding-bottom: 4vw;
}
.data {
margin-bottom: 8vw;
}
h1 {
cursor: default;
}
.data h2 {
font-size: 20px;
line-height: 20px;
-webkit-text-fill-color: white;
margin-top: 8vw;
}
.data h1 {
font-size: 30px;
line-height: 30px;
margin: 0vw;
margin-top: 8vw;
position: inherit;
}
.event .wrapper {
flex-direction: column;
margin-bottom: 8vw;
width: 84vw;
}
.event .wrapper .button {
margin-top: 0px;
font-size: 20px;
width: 78vw;
margin-bottom: 2vw;
}
.event img {
width: 84vw;
border: 1px solid #FFFFFF;
margin-bottom: 8vw;
}
img:hover {
-webkit-filter: invert(100%);
}
.event p {
margin-bottom: 8vw;
}
.moreinfo {
display: none;
transition: all 1s linear;
opacity:0;
transition: 1s;
animation: show 1.5s 1;
animation-fill-mode: forwards;
animation-delay: 0.2s;
}
@keyframes show {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
.tabletevent {
display: none;
}
.desktopevent {
display: none;
}
.tickets {
width: 90vw;
height: 100vw;
background: #9F57FF;
position: fixed;
z-index: 1;
top: 0vw;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
display: none;
justify-content: center;
align-items: center;
border: 1px solid #FFFFFF;
}
.tickets p {
margin-bottom: 0vw;
}
.tickets img {
position: absolute;
top: 1.5vw;
right: 1.5vw;
cursor: pointer;
}
@media (min-width: 768px) {
.tabletevent {
display: block;
border-top: 1px solid white;
margin: 0vw 4vw;
margin-bottom: 4vw;
}
.event {
display: none;
}
.data h2 {
margin-top: 4vw;
font-size: 40px;
line-height: 40px;
}
h1 {
font-size: 50px;
line-height: 50px;
margin-top: 0px;
position: inherit;
margin-left: 0vw;
}
.tabletevent .button {
margin-top: 0px;
font-size: 20px;
width: 200px;
margin-bottom: 10px;
}
.data {
margin-bottom: 4vw;
}
.tabletevent .wrapper {
flex-direction: column;
margin-bottom: 4vw;
width: 220px;
}
.datablock {
display: flex;
align-items: flex-start;
justify-content: space-between;
}
.tabletevent img {
width: 208px;
border: 1px solid #FFFFFF;
margin-right: 20px;
}
.tabletevent p {
font-size: 15px;
line-height: 20px;
}
.tabletmoreinfo {
display: none;
justify-content: space-between;
}
.text {
margin-right: 20vw;
}
.tickets {
width: 55vw;
height: 40vw;
}
.tickets p {
width: 45vw;
}
}
@media (min-width: 1024px) {
.tabletevent {
display: none;
}
.desktopevent {
display: block;
border-top: 1px solid white;
margin: 0vw 5vw;
margin-bottom: 4vw;
}
h2 {
margin-left: 8vw;
-webkit-text-fill-color: white;
font-size: 40px;
line-height: 40px;
width: 60vw;
}
.desktopevent .wrapper {
flex-direction: column;
margin-bottom: 0vw;
}
.desktopevent .button {
margin-top: 0px;
font-size: 20px;
width: 200px;
margin-bottom: 10px;
}
.datablock {
margin-top: 4vw;
align-items: center;
}
.desktopevent img {
width: 208px;
border: 1px solid #FFFFFF;
margin-right: 8vw;
}
.desktopevent p {
font-size: 15px;
line-height: 20px;
}
.moreinfo {
margin-top: 2vw;
}
.desktopevent p {
width: 38vw;
}
.tickets {
width: 35vw;
height: 15vw;
}
.tickets p {
width: 30vw;
}
} | css/events.css | .event {
display: flex;
flex-direction: column;
align-items: flex-start;
margin: 0vw 8vw 0vw 8vw;
border-top: 1px solid white;
}
#last {
border-bottom: 1px solid white;
padding-bottom: 4vw;
}
.data {
margin-bottom: 8vw;
}
h1 {
cursor: default;
}
.data h2 {
font-size: 20px;
line-height: 20px;
-webkit-text-fill-color: white;
margin-top: 8vw;
}
.data h1 {
font-size: 30px;
line-height: 30px;
margin: 0vw;
margin-top: 8vw;
position: inherit;
}
.event .wrapper {
flex-direction: column;
margin-bottom: 8vw;
width: 84vw;
}
.event .wrapper .button {
margin-top: 0px;
font-size: 20px;
width: 78vw;
margin-bottom: 2vw;
}
.event img {
width: 84vw;
border: 1px solid #FFFFFF;
margin-bottom: 8vw;
}
img:hover {
-webkit-filter: invert(100%);
}
.event p {
margin-bottom: 8vw;
}
.moreinfo {
display: none;
transition: all 1s linear;
opacity:0;
transition: 1s;
animation: show 1.5s 1;
animation-fill-mode: forwards;
animation-delay: 0.2s;
}
@keyframes show {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
.tabletevent {
display: none;
}
.desktopevent {
display: none;
}
.tickets {
width: 90vw;
height: 100vw;
background: #9F57FF;
position: fixed;
z-index: 1;
top: 0vw;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
display: none;
justify-content: center;
align-items: center;
border: 1px solid #FFFFFF;
}
.tickets p {
margin-bottom: 0vw;
}
.tickets img {
position: absolute;
top: 1.5vw;
right: 1.5vw;
cursor: pointer;
}
@media (min-width: 768px) {
.tabletevent {
display: block;
border-top: 1px solid white;
margin: 0vw 4vw;
margin-bottom: 4vw;
}
.event {
display: none;
}
.data h2 {
margin-top: 4vw;
font-size: 40px;
line-height: 40px;
}
h1 {
font-size: 50px;
line-height: 50px;
margin-top: 0px;
position: inherit;
margin-left: 0vw;
}
.tabletevent .button {
margin-top: 0px;
font-size: 20px;
width: 200px;
margin-bottom: 10px;
}
.data {
margin-bottom: 4vw;
}
.tabletevent .wrapper {
flex-direction: column;
margin-bottom: 4vw;
width: 220px;
}
.datablock {
display: flex;
align-items: flex-start;
justify-content: space-between;
}
.tabletevent img {
width: 208px;
border: 1px solid #FFFFFF;
margin-right: 20px;
}
.tabletevent p {
font-size: 15px;
line-height: 20px;
}
.tabletmoreinfo {
display: none;
justify-content: space-between;
}
.text {
margin-right: 20vw;
}
.tickets {
width: 55vw;
height: 40vw;
}
.tickets p {
width: 45vw;
}
}
@media (min-width: 1024px) {
.tabletevent {
display: none;
}
.desktopevent {
display: block;
border-top: 1px solid white;
margin: 0vw 5vw;
margin-bottom: 4vw;
}
h2 {
margin-left: 8vw;
-webkit-text-fill-color: white;
font-size: 40px;
line-height: 40px;
width: 60vw;
}
.desktopevent .wrapper {
flex-direction: column;
margin-bottom: 0vw;
}
.desktopevent .button {
margin-top: 0px;
font-size: 20px;
width: 200px;
margin-bottom: 10px;
}
.datablock {
margin-top: 4vw;
align-items: center;
}
.desktopevent img {
width: 208px;
border: 1px solid #FFFFFF;
margin-right: 8vw;
}
.desktopevent p {
font-size: 15px;
line-height: 20px;
}
.moreinfo {
margin-top: 2vw;
}
.desktopevent p {
width: 38vw;
}
.tickets {
width: 35vw;
height: 15vw;
}
.tickets p {
width: 30vw;
}
} | 0.459561 | 0.097048 |
.dark-bg,
.style-box h2 {
background-color: #FF9800;
}
.style-box {
border-color: #FF9800;
}
.light-bg {
background-color: #FFE0B2;
}
/* ====== General formatting options ====== */
html, body {
height: 100%;
margin: 0px;
}
body {
font-size: 100%; /* Needed for IE. */
}
p, h1, h2, h3, li, table, button, label, span {
color: black;
text-align: left;
font-family: Helvetica, Arial, sans-serif;
}
p {
margin: 12px auto 10px auto;
}
h1 {
font-size: 2.5em;
color: #212121;
margin: 0px;
}
h2 {
font-size: 1.2em;
color: #212121;
margin: 0px;
padding: 5px;
width: 100%;
}
h3 {
font-size: 1.0em;
text-decoration: underline;
margin: 16px auto 0px auto;
}
p, li, table, label {
font-size: 1.0em;
}
ul {
list-style: none;
}
button {
font-size: 0.9em;
margin: 2px auto 5px auto;
}
label {
margin-right: 15px;
}
thead {
/*font-size: 1.0em;*/
color: black;
text-align: left;
font-weight: bold;
background-color: inherit;
cursor: default;
}
td {
padding: 0px;
text-align: center;
}
table label, table select {
text-align: right;
float: right;
margin-right: 0px;
}
.speciesDot {
font-size: 1.4em;
line-height: 10px;
/*May not work in IE or Opera.*/
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}
#pageDiv {
padding: 0px;
min-height: 100%;
position: relative;
text-align: center; /* To center mainBody */
}
#mainBody {
/*overflow-y: auto;*/
margin: 0px auto 0px auto;
padding: 0px 0px 70px 5px;
display: inline-block;
text-align: left; /* To return to default. */
width: -moz-min-content;
width: -webkit-min-content;
width: min-content;
}
#footerDiv {
position: absolute;
width: 100%;
height: 50px;
padding: 0px;
bottom: 5px;
z-index: -1;
}
#footerDiv p {
text-align: center;
margin: 16px auto 16px auto;
color: white;
}
/* ====== The header and navigation bar ====== */
#header, #navBar {
width: 100%;
min-width: 675px;
margin: 0px;
padding: 0px;
text-align: center;
}
#headerContainer {
display: inline-block;
margin: 10px auto 10px auto;
}
#headerImg {
height: 75px;
display: inline-block;
vertical-align: middle;
}
#headerSubtitle {
line-height: 75px;
vertical-align: middle;
display: inline;
}
#navBar {
background-color: black;
border-top: 2px solid black;
border-bottom: 2px solid black;
box-shadow: 1px 1px 2px #555555;
}
#navMenu {
margin: 3px 100px 3px 0px;
padding: 0px;
display: inline-block;
vertical-align: middle;
}
#navMenu li {
float:left;
margin: 0px 30px;
}
#navMenu li a {
font-size:16px;
color:#fff;
text-decoration:none;
padding:0px 15px;
}
#navMenu li a:hover{
background-color: #FFFFFF;
color: black;
}
/* ====== The main style of box ====== */
.style-box {
background-color: white;
border-width: 4px; border-style: solid;
box-shadow: 1px 1px 2px #555555;
padding: 0px 8px 8px 8px;
margin-top: 10px;
margin-right: 15px;
margin-bottom: 5px;
float: left;
}
.style-box h2 {
margin-top: 10px;
margin-bottom: 2px;
}
.style-box > *:not(svg):not(p):not(h2):not(h3) {
margin-top: 6px;
margin-bottom: 4px;
}
.style-box table {
font-size: 0.9em;
width: 100%;
margin-bottom: 0px;
border-collapse: collapse;
}
table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after {
content: " \25B4\25BE"
}
table.sortable th.sorttable_sorted:after {
content: "\25B4"
}
table.sortable th.sorttable_sorted_reverse:after {
content: "\25BE"
}
.clearfix {
clear: both;
} | miphy_resources/resources/static/css/core.css | .dark-bg,
.style-box h2 {
background-color: #FF9800;
}
.style-box {
border-color: #FF9800;
}
.light-bg {
background-color: #FFE0B2;
}
/* ====== General formatting options ====== */
html, body {
height: 100%;
margin: 0px;
}
body {
font-size: 100%; /* Needed for IE. */
}
p, h1, h2, h3, li, table, button, label, span {
color: black;
text-align: left;
font-family: Helvetica, Arial, sans-serif;
}
p {
margin: 12px auto 10px auto;
}
h1 {
font-size: 2.5em;
color: #212121;
margin: 0px;
}
h2 {
font-size: 1.2em;
color: #212121;
margin: 0px;
padding: 5px;
width: 100%;
}
h3 {
font-size: 1.0em;
text-decoration: underline;
margin: 16px auto 0px auto;
}
p, li, table, label {
font-size: 1.0em;
}
ul {
list-style: none;
}
button {
font-size: 0.9em;
margin: 2px auto 5px auto;
}
label {
margin-right: 15px;
}
thead {
/*font-size: 1.0em;*/
color: black;
text-align: left;
font-weight: bold;
background-color: inherit;
cursor: default;
}
td {
padding: 0px;
text-align: center;
}
table label, table select {
text-align: right;
float: right;
margin-right: 0px;
}
.speciesDot {
font-size: 1.4em;
line-height: 10px;
/*May not work in IE or Opera.*/
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}
#pageDiv {
padding: 0px;
min-height: 100%;
position: relative;
text-align: center; /* To center mainBody */
}
#mainBody {
/*overflow-y: auto;*/
margin: 0px auto 0px auto;
padding: 0px 0px 70px 5px;
display: inline-block;
text-align: left; /* To return to default. */
width: -moz-min-content;
width: -webkit-min-content;
width: min-content;
}
#footerDiv {
position: absolute;
width: 100%;
height: 50px;
padding: 0px;
bottom: 5px;
z-index: -1;
}
#footerDiv p {
text-align: center;
margin: 16px auto 16px auto;
color: white;
}
/* ====== The header and navigation bar ====== */
#header, #navBar {
width: 100%;
min-width: 675px;
margin: 0px;
padding: 0px;
text-align: center;
}
#headerContainer {
display: inline-block;
margin: 10px auto 10px auto;
}
#headerImg {
height: 75px;
display: inline-block;
vertical-align: middle;
}
#headerSubtitle {
line-height: 75px;
vertical-align: middle;
display: inline;
}
#navBar {
background-color: black;
border-top: 2px solid black;
border-bottom: 2px solid black;
box-shadow: 1px 1px 2px #555555;
}
#navMenu {
margin: 3px 100px 3px 0px;
padding: 0px;
display: inline-block;
vertical-align: middle;
}
#navMenu li {
float:left;
margin: 0px 30px;
}
#navMenu li a {
font-size:16px;
color:#fff;
text-decoration:none;
padding:0px 15px;
}
#navMenu li a:hover{
background-color: #FFFFFF;
color: black;
}
/* ====== The main style of box ====== */
.style-box {
background-color: white;
border-width: 4px; border-style: solid;
box-shadow: 1px 1px 2px #555555;
padding: 0px 8px 8px 8px;
margin-top: 10px;
margin-right: 15px;
margin-bottom: 5px;
float: left;
}
.style-box h2 {
margin-top: 10px;
margin-bottom: 2px;
}
.style-box > *:not(svg):not(p):not(h2):not(h3) {
margin-top: 6px;
margin-bottom: 4px;
}
.style-box table {
font-size: 0.9em;
width: 100%;
margin-bottom: 0px;
border-collapse: collapse;
}
table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after {
content: " \25B4\25BE"
}
table.sortable th.sorttable_sorted:after {
content: "\25B4"
}
table.sortable th.sorttable_sorted_reverse:after {
content: "\25BE"
}
.clearfix {
clear: both;
} | 0.396886 | 0.090977 |
body {
background: white;
margin: 0px;
}
a h1, h2, h3 {
color: black;
text-align: center;
}
a{
color:black;
text-decoration: none;
}
.color-matrix{
color: green;
}
.content{
/*float:right;*/
width: 50%;
margin:auto;
text-align: center;
}
.content-item{
height: 200px;
margin-left: 20px;
margin-right: 20px;
border: 2px solid #c3c3c3;
margin-bottom: 10px;
}
.content-item h2{
border-bottom: 2px solid c3c3c3;
background-color: lightgray;
margin: 0;
}
.content h1,h2,h3{
text-align: left;
}
.horiz-nav-bar{
text-align: center;
border-bottom: 2px solid lightgray;
}
.horiz-nav-bar div{
width: 100%;
background-color: green;
border-radius: 10px;
padding: 10px 20px;
margin: 15px auto;
}
.horiz-nav-bar a{
text-decoration: none;
font-size: xx-large;
font-weight: 900;
color: white;
}
/* Util */
#fav{
border:none;
filter:saturate(4);
outline:0;
background:none;
}
#fav.favorite-neg img{
filter:saturate(0);
}
.collapsible{
width:100%;
}
.collapsible .collapse-control{
float: right;
}
.collapsible .collapse-controll button{
}
.tooltip-parent{
position: relative;
}
.tooltip-parent:hover .tooltip{
visibility: visible;
opacity: 1;
}
.tooltip{
visibility: hidden;
text-align: center;
position: absolute;
z-index: 1;
opacity: 0;
transition: opacity .5s;
background-color: #555555;
color: white;
padding: 3px;
min-width: fit-content;
left: 0;
bottom: 125%;
}
.spacer{
/*width:100%;*/
border-bottom: 1px solid gray;
margin: 35px 0 35px 0;
-webkit-border-image:-webkit-gradient(linear, left bottom, right bottom, color-stop(.1, #000), color-stop(.5, #FFF), color-stop(.9, #000)) 100;
}
.switch{
position: relative;
display: inline-block;
width: 50px;
height: 26px;
}
.switch input{
display:none;
}
.slider{
position: absolute;
top:0;
left:0;
right:0;
bottom: 0;
-webkit-transition: .4s;
transition: .4s;
}
input:not(checked) + .slider{
background-color: red;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(12px);
-ms-transform: translateX(12px);
transform: translateX(12px);
}
.hover-react-color:hover{
background-color: lime;
-webkit-transition: background-color 200ms linear;
-ms-transition: background-color 200ms linear;
transition: background-color 200ms linear;
}
.error{
color:red;
font-weight: bold;
}
/* Displays */
.data-table{
padding: 30px;
background-color: darkgray;
border: 3px groove gray;
width:100%;
}
.data-table thead tr{
text-align: center;
}
.data-table tr{
border-bottom: 2px solid black;
text-align: right;
background-color:lightgray;
}
table .element-td-dark{
background-color: darkgray;
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
.slider::before{
position: absolute;
content: "";
height: 18px;
width: 18px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
.container-side-by-side{
width: 100%;
height: 100%;
margin: auto;
padding: 10px;
}
.container-left{
height: 100%;
width: 50%;
float: left;
}
.container-left div{
/*margin: 20px 0;*/
padding: 5px;
/*background-color: lightgray;*/
}
.container-right{
height: 100%;
width: 48%;
float: right;
}
.container-right h1,h2,h3{
text-align: center;
}
.container-right div{
/*margin: 20px 0;*/
padding: 5px;
/*background-color: lightgray;*/
}
.underlined{
border-bottom: 2px solid lightgray;
}
/* Common */
#header{
width:100%;
border-bottom: 15px inset #009c9c;
overflow: hidden;
}
#header a{
float:right;
padding: 10px 10px;
text-decoration: none;
}
#header-logo{
display: inline-flex;
margin-left: 20%;
}
#header-logo a{
background: none;
border:none;
padding: 0;
}
#search-bar{
float:left;
padding:10px;
}
#search-bar ::placeholder{
font-style: italic;
opacity: .5;
}
#link-box{
margin-top: 60px;
flex-wrap: wrap;
}
#link-box span{
margin: 12px;
display:inline-block;
}
#link-box a{
text-decoration: none;
margin: 4px 15px 4px 15px;
font-weight:bold;
}
/* Account */
.btn-submit{
width:100%;
background-color:green;
color:white;
border-radius: 10px;
height: 50px;
font-size: x-large;
}
.btn-vlist div{
margin: 5px 0px;
}
.btn-vlist div button{
width: 90%;
height: 30px;
}
.favorites-list{
background-color: lightgray;
}
.favorites-list button{
}
/* Forms */
.login{
width: 50%;
display:inline-block;
text-align:center;
margin-top: 20px;
padding: 20px;
background-color: lightgray;
min-width: 190px;
}
.login form input:not([name=-token]){
margin-top:10px;
border:thin transparent solid;
padding: 8px;
border-radius: 9px;
color:white;
background-color: darkgrey;
width: 50%;
max-width: 350px;
min-width: 180px;
}
.login form label:not(.switch){
float: left;
font-weight: bold;
margin-top:10px;
padding-top: 9px;
width:100%;
text-align: center;
}
.login form input.form-submit{
width: 80%;
}
#password-toggle-container{
display:inline-flex;
margin: 8px;
}
#password-toggle-container label:not(.switch){
margin:0;
}
/* Home */
.home-header{
background-image: url("/images/banner.png");
background-repeat: no-repeat;
height: 500px;
padding: 20px;
}
.home-header h1,h3{
color:black;
margin: 5px;
padding:5px;
}
.home-header div{
background-color: #00f3ff;
margin: auto;
}
.home-header nav div{
max-width: 600px;
padding: 0px 30px;
margin: auto;
border-radius: 20px;
}
.home-header div a, h1{
color:#7b7b7b;
font-family: monospace, sans-serif;
background: none;
text-decoration: none;
}
#getting-started button{
width:100%;
border:none;
padding:10px;
background-color: #ccc71c;
}
#getting-started p{
padding: 20px;
}
#popular-slider{
width:100%;
min-height: 220px;
background-color: #cc451c;
flex: 100%;
order: 3;
}
.home-content-link div{
background-color: lightgray;
margin: 5px;
}
/* Account */
.left-container{
min-width: 316px;
height: 100%;
float:left;
flex: 1 1 0;
}
.right-container{
border: 8px groove #8a8a8a;
min-width: 200px;
width:inherit;
float:right;
background-color: rgb(180, 180, 180);
flex: 1 1 0;
}
.upper-container{
border-bottom: 3px groove white;
}
.lower-container{
border-bottom: 3px groove white;
}
.upper-container img{
margin: 30px;
}
#profile-header{
margin-bottom: 40px;
}
#favorites-panel{
}
.fav-item{
height: 50px;
background: green;
margin: 5px;
}
.submitted-item{
height: 150px;
background:blue;
margin:5px;
}
.blog-item{
height: 150px;
background:red;
margin:5px;
}
/* Management */
.manage-content{
}
#manage-sidebar{
min-width: 200px;
width:100%;
border: 3px groove darkgray;
background-color: lightgray;
color:black;
height:-webkit-fill-available;
flex: .1;
}
#manage-sidebar button{
text-decoration: none;
color:black;
font-weight: bold;
margin:5px;
width:90%;
}
.manage-sidebar-title, .manage-sidebar-item{
border: 4px groove darkgray;
min-height:40px;
}
#manage-main{
background-color:lightgray;
width:100%;
flex: 1;
border: 3px groove darkgray;
}
.manage-main-block{
border: 3px groove darkgray;
}
.terminal{
width:100%;
max-width: -webkit-fill-available;
height: -webkit-fill-available;
padding:20px;
}
.terminal textarea{
width: -webkit-fill-available;
height: -webkit-fill-available;
resize:none;
background-color: black;
}
/* Topics */
.slot-entry{
margin: 0 10px;
background-color: gray;
text-align: left;
font-size: xx-large;
color: white;
margin: 20px;
}
.slot-entry a{
display: inline-block;
width: 100%;
height: 100%;
color: white;
margin: 10px 3px;
padding-left: 5%;
}
#tutorial-space{
width: 90%;
margin: auto;
}
#tutorial-space .tutorial-block{
border-left: 3px double gray;
border-right: 3px double gray;
}
.tutorial-block .tutorial-body{
width: 90%;
margin: auto;
/*color: white;*/
}
.tutorial-block span{
float: right;
padding-right: 10%;
}
.tutorial-block .tutorial-title{
text-align: center;
}
/* Component Themes */
.gadget-panel{
width:90%;
margin:auto;
display: flex;
}
.gadget-panel .gadget-container{
}
.gadget-container.gadget-right{
}
/* Responsive */
@media only screen and (max-width: 1400px){
.home-header{
background-image: url("/images/banner_1400.png");
height: 350px;
}
.home-header nav{
float:right;
max-width: 300px;
}
}
@media only screen and (max-width: 640px){
.home-header{
background-image: url("/images/banner_600.png");
height: 200px;
}
.content{
width:100%;
}
} | modulearn/public/css/site.css | body {
background: white;
margin: 0px;
}
a h1, h2, h3 {
color: black;
text-align: center;
}
a{
color:black;
text-decoration: none;
}
.color-matrix{
color: green;
}
.content{
/*float:right;*/
width: 50%;
margin:auto;
text-align: center;
}
.content-item{
height: 200px;
margin-left: 20px;
margin-right: 20px;
border: 2px solid #c3c3c3;
margin-bottom: 10px;
}
.content-item h2{
border-bottom: 2px solid c3c3c3;
background-color: lightgray;
margin: 0;
}
.content h1,h2,h3{
text-align: left;
}
.horiz-nav-bar{
text-align: center;
border-bottom: 2px solid lightgray;
}
.horiz-nav-bar div{
width: 100%;
background-color: green;
border-radius: 10px;
padding: 10px 20px;
margin: 15px auto;
}
.horiz-nav-bar a{
text-decoration: none;
font-size: xx-large;
font-weight: 900;
color: white;
}
/* Util */
#fav{
border:none;
filter:saturate(4);
outline:0;
background:none;
}
#fav.favorite-neg img{
filter:saturate(0);
}
.collapsible{
width:100%;
}
.collapsible .collapse-control{
float: right;
}
.collapsible .collapse-controll button{
}
.tooltip-parent{
position: relative;
}
.tooltip-parent:hover .tooltip{
visibility: visible;
opacity: 1;
}
.tooltip{
visibility: hidden;
text-align: center;
position: absolute;
z-index: 1;
opacity: 0;
transition: opacity .5s;
background-color: #555555;
color: white;
padding: 3px;
min-width: fit-content;
left: 0;
bottom: 125%;
}
.spacer{
/*width:100%;*/
border-bottom: 1px solid gray;
margin: 35px 0 35px 0;
-webkit-border-image:-webkit-gradient(linear, left bottom, right bottom, color-stop(.1, #000), color-stop(.5, #FFF), color-stop(.9, #000)) 100;
}
.switch{
position: relative;
display: inline-block;
width: 50px;
height: 26px;
}
.switch input{
display:none;
}
.slider{
position: absolute;
top:0;
left:0;
right:0;
bottom: 0;
-webkit-transition: .4s;
transition: .4s;
}
input:not(checked) + .slider{
background-color: red;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(12px);
-ms-transform: translateX(12px);
transform: translateX(12px);
}
.hover-react-color:hover{
background-color: lime;
-webkit-transition: background-color 200ms linear;
-ms-transition: background-color 200ms linear;
transition: background-color 200ms linear;
}
.error{
color:red;
font-weight: bold;
}
/* Displays */
.data-table{
padding: 30px;
background-color: darkgray;
border: 3px groove gray;
width:100%;
}
.data-table thead tr{
text-align: center;
}
.data-table tr{
border-bottom: 2px solid black;
text-align: right;
background-color:lightgray;
}
table .element-td-dark{
background-color: darkgray;
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
.slider::before{
position: absolute;
content: "";
height: 18px;
width: 18px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
.container-side-by-side{
width: 100%;
height: 100%;
margin: auto;
padding: 10px;
}
.container-left{
height: 100%;
width: 50%;
float: left;
}
.container-left div{
/*margin: 20px 0;*/
padding: 5px;
/*background-color: lightgray;*/
}
.container-right{
height: 100%;
width: 48%;
float: right;
}
.container-right h1,h2,h3{
text-align: center;
}
.container-right div{
/*margin: 20px 0;*/
padding: 5px;
/*background-color: lightgray;*/
}
.underlined{
border-bottom: 2px solid lightgray;
}
/* Common */
#header{
width:100%;
border-bottom: 15px inset #009c9c;
overflow: hidden;
}
#header a{
float:right;
padding: 10px 10px;
text-decoration: none;
}
#header-logo{
display: inline-flex;
margin-left: 20%;
}
#header-logo a{
background: none;
border:none;
padding: 0;
}
#search-bar{
float:left;
padding:10px;
}
#search-bar ::placeholder{
font-style: italic;
opacity: .5;
}
#link-box{
margin-top: 60px;
flex-wrap: wrap;
}
#link-box span{
margin: 12px;
display:inline-block;
}
#link-box a{
text-decoration: none;
margin: 4px 15px 4px 15px;
font-weight:bold;
}
/* Account */
.btn-submit{
width:100%;
background-color:green;
color:white;
border-radius: 10px;
height: 50px;
font-size: x-large;
}
.btn-vlist div{
margin: 5px 0px;
}
.btn-vlist div button{
width: 90%;
height: 30px;
}
.favorites-list{
background-color: lightgray;
}
.favorites-list button{
}
/* Forms */
.login{
width: 50%;
display:inline-block;
text-align:center;
margin-top: 20px;
padding: 20px;
background-color: lightgray;
min-width: 190px;
}
.login form input:not([name=-token]){
margin-top:10px;
border:thin transparent solid;
padding: 8px;
border-radius: 9px;
color:white;
background-color: darkgrey;
width: 50%;
max-width: 350px;
min-width: 180px;
}
.login form label:not(.switch){
float: left;
font-weight: bold;
margin-top:10px;
padding-top: 9px;
width:100%;
text-align: center;
}
.login form input.form-submit{
width: 80%;
}
#password-toggle-container{
display:inline-flex;
margin: 8px;
}
#password-toggle-container label:not(.switch){
margin:0;
}
/* Home */
.home-header{
background-image: url("/images/banner.png");
background-repeat: no-repeat;
height: 500px;
padding: 20px;
}
.home-header h1,h3{
color:black;
margin: 5px;
padding:5px;
}
.home-header div{
background-color: #00f3ff;
margin: auto;
}
.home-header nav div{
max-width: 600px;
padding: 0px 30px;
margin: auto;
border-radius: 20px;
}
.home-header div a, h1{
color:#7b7b7b;
font-family: monospace, sans-serif;
background: none;
text-decoration: none;
}
#getting-started button{
width:100%;
border:none;
padding:10px;
background-color: #ccc71c;
}
#getting-started p{
padding: 20px;
}
#popular-slider{
width:100%;
min-height: 220px;
background-color: #cc451c;
flex: 100%;
order: 3;
}
.home-content-link div{
background-color: lightgray;
margin: 5px;
}
/* Account */
.left-container{
min-width: 316px;
height: 100%;
float:left;
flex: 1 1 0;
}
.right-container{
border: 8px groove #8a8a8a;
min-width: 200px;
width:inherit;
float:right;
background-color: rgb(180, 180, 180);
flex: 1 1 0;
}
.upper-container{
border-bottom: 3px groove white;
}
.lower-container{
border-bottom: 3px groove white;
}
.upper-container img{
margin: 30px;
}
#profile-header{
margin-bottom: 40px;
}
#favorites-panel{
}
.fav-item{
height: 50px;
background: green;
margin: 5px;
}
.submitted-item{
height: 150px;
background:blue;
margin:5px;
}
.blog-item{
height: 150px;
background:red;
margin:5px;
}
/* Management */
.manage-content{
}
#manage-sidebar{
min-width: 200px;
width:100%;
border: 3px groove darkgray;
background-color: lightgray;
color:black;
height:-webkit-fill-available;
flex: .1;
}
#manage-sidebar button{
text-decoration: none;
color:black;
font-weight: bold;
margin:5px;
width:90%;
}
.manage-sidebar-title, .manage-sidebar-item{
border: 4px groove darkgray;
min-height:40px;
}
#manage-main{
background-color:lightgray;
width:100%;
flex: 1;
border: 3px groove darkgray;
}
.manage-main-block{
border: 3px groove darkgray;
}
.terminal{
width:100%;
max-width: -webkit-fill-available;
height: -webkit-fill-available;
padding:20px;
}
.terminal textarea{
width: -webkit-fill-available;
height: -webkit-fill-available;
resize:none;
background-color: black;
}
/* Topics */
.slot-entry{
margin: 0 10px;
background-color: gray;
text-align: left;
font-size: xx-large;
color: white;
margin: 20px;
}
.slot-entry a{
display: inline-block;
width: 100%;
height: 100%;
color: white;
margin: 10px 3px;
padding-left: 5%;
}
#tutorial-space{
width: 90%;
margin: auto;
}
#tutorial-space .tutorial-block{
border-left: 3px double gray;
border-right: 3px double gray;
}
.tutorial-block .tutorial-body{
width: 90%;
margin: auto;
/*color: white;*/
}
.tutorial-block span{
float: right;
padding-right: 10%;
}
.tutorial-block .tutorial-title{
text-align: center;
}
/* Component Themes */
.gadget-panel{
width:90%;
margin:auto;
display: flex;
}
.gadget-panel .gadget-container{
}
.gadget-container.gadget-right{
}
/* Responsive */
@media only screen and (max-width: 1400px){
.home-header{
background-image: url("/images/banner_1400.png");
height: 350px;
}
.home-header nav{
float:right;
max-width: 300px;
}
}
@media only screen and (max-width: 640px){
.home-header{
background-image: url("/images/banner_600.png");
height: 200px;
}
.content{
width:100%;
}
} | 0.489015 | 0.073963 |
body {
font-size: 11pt;
font-family: serif;
color: rgb(0, 0, 0); /* this is necessary for clear printing */
line-height: 1.6;
text-align: justify;
/*background: #C3C3C3;*/
-webkit-text-size-adjust: 100%; /* for android */
max-height: 100%; /* for android */
}
div#backbox{
position: fixed;
/* for GPU acceleration */
-webkit-transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
-webkit-perspective: 1000;
top: 0px;
left: 0px;
bottom: 0px;
margin: 0mm;
padding: 0mm;
width: 100%;
overflow: auto;
background: #c3c3c3;
}
div#modal1{
display: none;
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
z-index: 9999;
background: #c0dcff;
padding: 12px;
/*padding-top: 32pt;*/
}
div.modaltext{
position: absolute;
top: 48px;
bottom: 24px;
left: 24px;
right: 24px;
padding: 0;
margin: 0;
}
div.modaltext textarea{
width: 100%;
height: 100%;
overflow: auto;
white-space: pre-wrap;
font-family: monospace;
}
.modalbutton{
height:32px;
background: #67c8f5;
font-size: 16pt;
font-family: sans-serif;
font-weight: bold;
text-align: center;
text-decoration: none;
padding-left: 10px;
padding-right: 10px;
border-radius: 10px;
border: solid 1px #000000;
cursor: pointer;
}
div#findbox{
display: none;
position: fixed;
top: 0px;
/*left: 0px;*/
right: 16px;
/*bottom: 0px;*/
width: 272px;
height: 34px;
z-index: 9999;
background: #c0dcff;
padding: 6px;
font-size: 14pt;
font-family: sans-serif;
/*padding-top: 32pt;*/
}
div#findbox #findbox_input{
position: relative;
display: inline-block;
top: 0px;
/*left: 0px;*/
left: 0px;
/*bottom: 0px;*/
width: 160px;
margin: 0px;
padding: 0px;
font-size: 14pt;
font-family: sans-serif;
}
div#findbox .findbox_btn{
position: relative;
display: inline-block;
/*top: 8px;*/
/*left: 0px;*/
/*left: 180px; */
/*bottom: 0px;*/
width: 32px;
margin: 0px;
padding: 0px;
font-size: 14pt;
font-family: sans-serif;
}
.savebar{
position: fixed; bottom: 0px; left: 0px; margin: 0; width: 0%; z-index: 9998; background: #ffcc44; text-align:left;
transition: all 300ms 0s ease;
}
.savesign{
width: 100%;
}
.savesign:before{
content: "save";
}
.infobar{
position: fixed; bottom: 0px; left: 0px; margin: auto; z-index: 9998; background: #ffcc44; text-align:left;
transition: all 300ms 0s ease;
display: none;
}
.pdfwait{
/*width: 100%;*/
display: block;
} | style/nt.ele.css |
body {
font-size: 11pt;
font-family: serif;
color: rgb(0, 0, 0); /* this is necessary for clear printing */
line-height: 1.6;
text-align: justify;
/*background: #C3C3C3;*/
-webkit-text-size-adjust: 100%; /* for android */
max-height: 100%; /* for android */
}
div#backbox{
position: fixed;
/* for GPU acceleration */
-webkit-transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
-webkit-perspective: 1000;
top: 0px;
left: 0px;
bottom: 0px;
margin: 0mm;
padding: 0mm;
width: 100%;
overflow: auto;
background: #c3c3c3;
}
div#modal1{
display: none;
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
z-index: 9999;
background: #c0dcff;
padding: 12px;
/*padding-top: 32pt;*/
}
div.modaltext{
position: absolute;
top: 48px;
bottom: 24px;
left: 24px;
right: 24px;
padding: 0;
margin: 0;
}
div.modaltext textarea{
width: 100%;
height: 100%;
overflow: auto;
white-space: pre-wrap;
font-family: monospace;
}
.modalbutton{
height:32px;
background: #67c8f5;
font-size: 16pt;
font-family: sans-serif;
font-weight: bold;
text-align: center;
text-decoration: none;
padding-left: 10px;
padding-right: 10px;
border-radius: 10px;
border: solid 1px #000000;
cursor: pointer;
}
div#findbox{
display: none;
position: fixed;
top: 0px;
/*left: 0px;*/
right: 16px;
/*bottom: 0px;*/
width: 272px;
height: 34px;
z-index: 9999;
background: #c0dcff;
padding: 6px;
font-size: 14pt;
font-family: sans-serif;
/*padding-top: 32pt;*/
}
div#findbox #findbox_input{
position: relative;
display: inline-block;
top: 0px;
/*left: 0px;*/
left: 0px;
/*bottom: 0px;*/
width: 160px;
margin: 0px;
padding: 0px;
font-size: 14pt;
font-family: sans-serif;
}
div#findbox .findbox_btn{
position: relative;
display: inline-block;
/*top: 8px;*/
/*left: 0px;*/
/*left: 180px; */
/*bottom: 0px;*/
width: 32px;
margin: 0px;
padding: 0px;
font-size: 14pt;
font-family: sans-serif;
}
.savebar{
position: fixed; bottom: 0px; left: 0px; margin: 0; width: 0%; z-index: 9998; background: #ffcc44; text-align:left;
transition: all 300ms 0s ease;
}
.savesign{
width: 100%;
}
.savesign:before{
content: "save";
}
.infobar{
position: fixed; bottom: 0px; left: 0px; margin: auto; z-index: 9998; background: #ffcc44; text-align:left;
transition: all 300ms 0s ease;
display: none;
}
.pdfwait{
/*width: 100%;*/
display: block;
} | 0.349089 | 0.04879 |
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym,
address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt,
var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot,
thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu,
nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0;
font-size: 100%; font: inherit; vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
body {background-image: url("back.jpg"); margin: 0 auto; width: 800px; font-family: Consolas, monaco, monospace;
font-size: 100%; text-align: left; margin-top: 1%; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%;}
pre {}
.holder {width: 800px; padding: 0; float: left;}
header {width: 100%; height: auto; float: left; margin-bottom: 10px;}
article { height: auto; float: left;}
#dugme {float: right; width: 76px; height: 76px; border-left: 1px solid #414141; border-top: 1px solid #414141; border-bottom: 1px solid #414141;
opacity:0.7; filter:alpha(opacity=300); background-color: #212121; float: left;}
#dugme:hover {opacity:0.7; filter:alpha(opacity=300); background-color: #313131; }
footer {width: 100%; float: left; color: palegoldenrod; text-shadow: 2px 5px 15px black; text-align: left; margin-top: 4%;
border-top: 1px solid #414141; opacity:0.7; filter:alpha(opacity=300); background-color: #212121; }
footer p {font-size: 13px; width: 98%; padding: 1%;}
.hightech {width: 96%; padding: 2%; float: left; background: #212121;}
.hightech img {-moz-box-shadow: 0px 0px 15px #17f118;
-webkit-box-shadow: 0px 0px 15px #17f118;
box-shadow: 0px 0px 15px #17f118;
border:none 1px #000000;
-moz-border-radius: 20px;
-webkit-border-radius:20px;
-o-border-radius:20px;
border-radius: 20px;
}
.hightech img:hover {-moz-box-shadow: 0px 0px 20px orange;
-webkit-box-shadow: 0px 0px 20px orange;
box-shadow: 0px 0px 20px orange;}
.blog { width: 100%; float: left; border-top: 1px solid #313131; margin-top:1%;}
.blog h3 {width: 100%; float: left; padding: 0;}
.blog h4 {width: 98%; padding: 1%; float: left; margin-top: 3px; margin-bottom: 3px; color: lightblue;}
.blog marquee {width: 100%; float: left; padding: 0; color: #17f118;}
li { color: white; padding: 0%; font-size: 0.7em;}
.hr {border-bottom: 1px solid #414141; } | SALATA/mini/css/stil.css | html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym,
address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt,
var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot,
thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu,
nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0;
font-size: 100%; font: inherit; vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
body {background-image: url("back.jpg"); margin: 0 auto; width: 800px; font-family: Consolas, monaco, monospace;
font-size: 100%; text-align: left; margin-top: 1%; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%;}
pre {}
.holder {width: 800px; padding: 0; float: left;}
header {width: 100%; height: auto; float: left; margin-bottom: 10px;}
article { height: auto; float: left;}
#dugme {float: right; width: 76px; height: 76px; border-left: 1px solid #414141; border-top: 1px solid #414141; border-bottom: 1px solid #414141;
opacity:0.7; filter:alpha(opacity=300); background-color: #212121; float: left;}
#dugme:hover {opacity:0.7; filter:alpha(opacity=300); background-color: #313131; }
footer {width: 100%; float: left; color: palegoldenrod; text-shadow: 2px 5px 15px black; text-align: left; margin-top: 4%;
border-top: 1px solid #414141; opacity:0.7; filter:alpha(opacity=300); background-color: #212121; }
footer p {font-size: 13px; width: 98%; padding: 1%;}
.hightech {width: 96%; padding: 2%; float: left; background: #212121;}
.hightech img {-moz-box-shadow: 0px 0px 15px #17f118;
-webkit-box-shadow: 0px 0px 15px #17f118;
box-shadow: 0px 0px 15px #17f118;
border:none 1px #000000;
-moz-border-radius: 20px;
-webkit-border-radius:20px;
-o-border-radius:20px;
border-radius: 20px;
}
.hightech img:hover {-moz-box-shadow: 0px 0px 20px orange;
-webkit-box-shadow: 0px 0px 20px orange;
box-shadow: 0px 0px 20px orange;}
.blog { width: 100%; float: left; border-top: 1px solid #313131; margin-top:1%;}
.blog h3 {width: 100%; float: left; padding: 0;}
.blog h4 {width: 98%; padding: 1%; float: left; margin-top: 3px; margin-bottom: 3px; color: lightblue;}
.blog marquee {width: 100%; float: left; padding: 0; color: #17f118;}
li { color: white; padding: 0%; font-size: 0.7em;}
.hr {border-bottom: 1px solid #414141; } | 0.379953 | 0.126273 |
body {
font-family: "Helvetica Neue", Helvetica, Microsoft Yahei,
Hiragino Sans GB, WenQuanYi Micro Hei, sans-serif;
}
/* ҳ�涥�� */
.page-top {
height: 122px;
padding: 0px;
margin: 0px;
width: 100%;
color: #fff;
font-size: 12px;
}
.page-top .site, .page-top .crumb {
height: 36px;
line-height: 36px;
}
.page-top .site {
background: #1a2228;
}
.site span {
display: inline-block;
padding: 0 10px;
}
.site .user {
display: inline-block;
float: right;
}
.user a {
color: #fff;
text-decoration: none;
display: inline-block;
padding: 0 15px;
}
.user a:hover {
background: #3e4652;
}
.page-top .menu {
height: 50px;
background: #3e4652;
line-height: 50px;
}
.menu .logo {
font-size: 18px;
font-weight: bold;
padding: 0 10px;
display: inline-block;
}
.menu .menu-list {
clear: right;
display: inline-block;
float: right;
padding-right: 20px;
}
.menu-list>ul {
margin: 0;
padding: 0;
list-style: none;
}
.menu-list>ul>li {
font-size: 14px;
display: inline-block;
}
.menu-list ul li a {
text-decoration: none;
color: #FFF;
}
.menu-list>ul>li>a {
padding: 0 20px;
display: inline-block;
}
.menu-list ul li a:hover {
color: #00ce9b;
}
.dropdown-menu-list {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 10px;
padding: 0px;
padding-bottom: 8px;
margin: 0px;
font-size: 12px;
text-align: left;
list-style: none;
background-color: #3e4652;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: none;
border-radius: 0px;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu-list li {
padding-top: 3px;
}
.dropdown-menu-list li a {
padding: 0px 20px;
line-height: 30px;
}
.dropdown-menu-list li a:hover {
background-color: #707070;
}
.menu-list i {
font-size: 18px;
margin-right: 2px;
}
.page-top .crumb {
background: #2c343e;
}
.crumb .breadcrumb {
background-color: transparent;
padding: 0px;
padding-left: 10px;
margin: 0px;
}
.crumb .breadcrumb a {
color: #FFF;
}
.crumb .breadcrumb a:hover {
color: #00ce9b;
}
.crumb .breadcrumb .active {
color: #00ce9b;
}
.page-content {
position: fixed;
top: 122px;
left: 0px;
bottom: 0px;
right: 0px;
}
.main-body {
padding: 0px;
margin: 0px;
overflow: auto;
overflow-x: hidden;
}
.main-body::-webkit-scrollbar {
width: 10px;
}
.main-body::-webkit-scrollbar-track {
background-color: transparent;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
.main-body::-webkit-scrollbar-track:hover {
background-color: #BBBBBB;
}
.main-body::-webkit-scrollbar-thumb {
background-color: #999999;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
.main-body::-webkit-scrollbar-thumb:hover {
background-color: #666666;
}
.main-body-padding {
padding: 15px 0;
}
.main-body-all {
position: fixed;
top: 0px;
left: 0px;
bottom: 0px;
right: 0px;
}
.loading-center-absolute {
position: absolute;
z-index: 100;
left: 50%;
top: 50%;
height: 150px;
width: 150px;
margin-top: -75px;
margin-left: -75px;
-ms-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.object {
width: 20px;
height: 20px;
background-color: #dc3522;
position: absolute;
left: 65px;
top: 65px;
-moz-border-radius: 50% 50% 50% 50%;
-webkit-border-radius: 50% 50% 50% 50%;
border-radius: 50% 50% 50% 50%;
}
.object:nth-child(2n+0) {
margin-right: 0px;
}
#object_one {
-webkit-animation: object_one 2s infinite;
animation: object_one 2s infinite;
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
#object_two {
-webkit-animation: object_two 2s infinite;
animation: object_two 2s infinite;
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
#object_three {
-webkit-animation: object_three 2s infinite;
animation: object_three 2s infinite;
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
}
#object_four {
-webkit-animation: object_four 2s infinite;
animation: object_four 2s infinite;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
#object_five {
-webkit-animation: object_five 2s infinite;
animation: object_five 2s infinite;
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
}
#object_six {
-webkit-animation: object_six 2s infinite;
animation: object_six 2s infinite;
-webkit-animation-delay: 0.7s;
animation-delay: 0.7s;
}
#object_seven {
-webkit-animation: object_seven 2s infinite;
animation: object_seven 2s infinite;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#object_eight {
-webkit-animation: object_eight 2s infinite;
animation: object_eight 2s infinite;
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
}
#object_big {
position: absolute;
width: 50px;
height: 50px;
left: 50px;
top: 50px;
-webkit-animation: object_big 2s infinite;
animation: object_big 2s infinite;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
@
-webkit-keyframes object_big { 50% {
-webkit-transform: scale(0.5);
}
}
@
keyframes object_big { 50% {
transform: scale(0.5);
-webkit-transform: scale(0.5);
}
}
@
-webkit-keyframes object_one { 50% {
-webkit-transform: translate(-65px, -65px);
}
}
@
keyframes object_one { 50% {
transform: translate(-65px, -65px);
-webkit-transform: translate(-65px, -65px);
}
}
@
-webkit-keyframes object_two { 50% {
-webkit-transform: translate(0, -65px);
}
}
@
keyframes object_two { 50% {
transform: translate(0, -65px);
-webkit-transform: translate(0, -65px);
}
}
@
-webkit-keyframes object_three { 50% {
-webkit-transform: translate(65px, -65px);
}
}
@
keyframes object_three { 50% {
transform: translate(65px, -65px);
-webkit-transform: translate(65px, -65px);
}
}
@
-webkit-keyframes object_four { 50% {
-webkit-transform: translate(65px, 0);
}
}
@
keyframes object_four { 50% {
transform: translate(65px, 0);
-webkit-transform: translate(65px, 0);
}
}
@
-webkit-keyframes object_five { 50% {
-webkit-transform: translate(65px, 65px);
}
}
@
keyframes object_five { 50% {
transform: translate(65px, 65px);
-webkit-transform: translate(65px, 65px);
}
}
@
-webkit-keyframes object_six { 50% {
-webkit-transform: translate(0, 65px);
}
}
@
keyframes object_six { 50% {
transform: translate(0, 65px);
-webkit-transform: translate(0, 65px);
}
}
@
-webkit-keyframes object_seven { 50% {
-webkit-transform: translate(-65px, 65px);
}
}
@
keyframes object_seven { 50% {
transform: translate(-65px, 65px);
-webkit-transform: translate(-65px, 65px);
}
}
@
-webkit-keyframes object_eight { 50% {
-webkit-transform: translate(-65px, 0);
}
}
@
keyframes object_eight { 50% {
transform: translate(-65px, 0);
-webkit-transform: translate(-65px, 0);
}
}
textarea {
resize: none;
}
.bs-scroll {
padding: 0px;
margin: 0px;
overflow: auto;
overflow-x: hidden;
}
.bs-scroll::-webkit-scrollbar {
width: 10px;
}
.bs-scroll::-webkit-scrollbar-track {
background-color: transparent;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
.bs-scroll::-webkit-scrollbar-track:hover {
background-color: #BBBBBB;
}
.bs-scroll::-webkit-scrollbar-thumb {
background-color: #999999;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
.bs-scroll::-webkit-scrollbar-thumb:hover {
background-color: #666666;
}
.search-item {
border: none;
border-top-color: rgb(221, 221, 221);
border-top-style: solid;
border-top-width: 1px;
border-left-style: solid;
border-left-width: 2px;
}
.cross-unbind {
border-left-color: #777;
}
.cross-check {
border-left-color: #FFCC33;
}
.cross-normal {
border-left-color: #5cb85c;
}
.cross-fault {
border-left-color: #d9534f;
}
.search-item:first-child {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
.search-item:last-child {
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
.search-item-empty {
border: none;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
#loading-indicator {
position: absolute;
left: 10px;
top: 10px;
} | src/main/resources/management/css/style.css | body {
font-family: "Helvetica Neue", Helvetica, Microsoft Yahei,
Hiragino Sans GB, WenQuanYi Micro Hei, sans-serif;
}
/* ҳ�涥�� */
.page-top {
height: 122px;
padding: 0px;
margin: 0px;
width: 100%;
color: #fff;
font-size: 12px;
}
.page-top .site, .page-top .crumb {
height: 36px;
line-height: 36px;
}
.page-top .site {
background: #1a2228;
}
.site span {
display: inline-block;
padding: 0 10px;
}
.site .user {
display: inline-block;
float: right;
}
.user a {
color: #fff;
text-decoration: none;
display: inline-block;
padding: 0 15px;
}
.user a:hover {
background: #3e4652;
}
.page-top .menu {
height: 50px;
background: #3e4652;
line-height: 50px;
}
.menu .logo {
font-size: 18px;
font-weight: bold;
padding: 0 10px;
display: inline-block;
}
.menu .menu-list {
clear: right;
display: inline-block;
float: right;
padding-right: 20px;
}
.menu-list>ul {
margin: 0;
padding: 0;
list-style: none;
}
.menu-list>ul>li {
font-size: 14px;
display: inline-block;
}
.menu-list ul li a {
text-decoration: none;
color: #FFF;
}
.menu-list>ul>li>a {
padding: 0 20px;
display: inline-block;
}
.menu-list ul li a:hover {
color: #00ce9b;
}
.dropdown-menu-list {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 10px;
padding: 0px;
padding-bottom: 8px;
margin: 0px;
font-size: 12px;
text-align: left;
list-style: none;
background-color: #3e4652;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: none;
border-radius: 0px;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu-list li {
padding-top: 3px;
}
.dropdown-menu-list li a {
padding: 0px 20px;
line-height: 30px;
}
.dropdown-menu-list li a:hover {
background-color: #707070;
}
.menu-list i {
font-size: 18px;
margin-right: 2px;
}
.page-top .crumb {
background: #2c343e;
}
.crumb .breadcrumb {
background-color: transparent;
padding: 0px;
padding-left: 10px;
margin: 0px;
}
.crumb .breadcrumb a {
color: #FFF;
}
.crumb .breadcrumb a:hover {
color: #00ce9b;
}
.crumb .breadcrumb .active {
color: #00ce9b;
}
.page-content {
position: fixed;
top: 122px;
left: 0px;
bottom: 0px;
right: 0px;
}
.main-body {
padding: 0px;
margin: 0px;
overflow: auto;
overflow-x: hidden;
}
.main-body::-webkit-scrollbar {
width: 10px;
}
.main-body::-webkit-scrollbar-track {
background-color: transparent;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
.main-body::-webkit-scrollbar-track:hover {
background-color: #BBBBBB;
}
.main-body::-webkit-scrollbar-thumb {
background-color: #999999;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
.main-body::-webkit-scrollbar-thumb:hover {
background-color: #666666;
}
.main-body-padding {
padding: 15px 0;
}
.main-body-all {
position: fixed;
top: 0px;
left: 0px;
bottom: 0px;
right: 0px;
}
.loading-center-absolute {
position: absolute;
z-index: 100;
left: 50%;
top: 50%;
height: 150px;
width: 150px;
margin-top: -75px;
margin-left: -75px;
-ms-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.object {
width: 20px;
height: 20px;
background-color: #dc3522;
position: absolute;
left: 65px;
top: 65px;
-moz-border-radius: 50% 50% 50% 50%;
-webkit-border-radius: 50% 50% 50% 50%;
border-radius: 50% 50% 50% 50%;
}
.object:nth-child(2n+0) {
margin-right: 0px;
}
#object_one {
-webkit-animation: object_one 2s infinite;
animation: object_one 2s infinite;
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
#object_two {
-webkit-animation: object_two 2s infinite;
animation: object_two 2s infinite;
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
#object_three {
-webkit-animation: object_three 2s infinite;
animation: object_three 2s infinite;
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
}
#object_four {
-webkit-animation: object_four 2s infinite;
animation: object_four 2s infinite;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
#object_five {
-webkit-animation: object_five 2s infinite;
animation: object_five 2s infinite;
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
}
#object_six {
-webkit-animation: object_six 2s infinite;
animation: object_six 2s infinite;
-webkit-animation-delay: 0.7s;
animation-delay: 0.7s;
}
#object_seven {
-webkit-animation: object_seven 2s infinite;
animation: object_seven 2s infinite;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#object_eight {
-webkit-animation: object_eight 2s infinite;
animation: object_eight 2s infinite;
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
}
#object_big {
position: absolute;
width: 50px;
height: 50px;
left: 50px;
top: 50px;
-webkit-animation: object_big 2s infinite;
animation: object_big 2s infinite;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
@
-webkit-keyframes object_big { 50% {
-webkit-transform: scale(0.5);
}
}
@
keyframes object_big { 50% {
transform: scale(0.5);
-webkit-transform: scale(0.5);
}
}
@
-webkit-keyframes object_one { 50% {
-webkit-transform: translate(-65px, -65px);
}
}
@
keyframes object_one { 50% {
transform: translate(-65px, -65px);
-webkit-transform: translate(-65px, -65px);
}
}
@
-webkit-keyframes object_two { 50% {
-webkit-transform: translate(0, -65px);
}
}
@
keyframes object_two { 50% {
transform: translate(0, -65px);
-webkit-transform: translate(0, -65px);
}
}
@
-webkit-keyframes object_three { 50% {
-webkit-transform: translate(65px, -65px);
}
}
@
keyframes object_three { 50% {
transform: translate(65px, -65px);
-webkit-transform: translate(65px, -65px);
}
}
@
-webkit-keyframes object_four { 50% {
-webkit-transform: translate(65px, 0);
}
}
@
keyframes object_four { 50% {
transform: translate(65px, 0);
-webkit-transform: translate(65px, 0);
}
}
@
-webkit-keyframes object_five { 50% {
-webkit-transform: translate(65px, 65px);
}
}
@
keyframes object_five { 50% {
transform: translate(65px, 65px);
-webkit-transform: translate(65px, 65px);
}
}
@
-webkit-keyframes object_six { 50% {
-webkit-transform: translate(0, 65px);
}
}
@
keyframes object_six { 50% {
transform: translate(0, 65px);
-webkit-transform: translate(0, 65px);
}
}
@
-webkit-keyframes object_seven { 50% {
-webkit-transform: translate(-65px, 65px);
}
}
@
keyframes object_seven { 50% {
transform: translate(-65px, 65px);
-webkit-transform: translate(-65px, 65px);
}
}
@
-webkit-keyframes object_eight { 50% {
-webkit-transform: translate(-65px, 0);
}
}
@
keyframes object_eight { 50% {
transform: translate(-65px, 0);
-webkit-transform: translate(-65px, 0);
}
}
textarea {
resize: none;
}
.bs-scroll {
padding: 0px;
margin: 0px;
overflow: auto;
overflow-x: hidden;
}
.bs-scroll::-webkit-scrollbar {
width: 10px;
}
.bs-scroll::-webkit-scrollbar-track {
background-color: transparent;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
.bs-scroll::-webkit-scrollbar-track:hover {
background-color: #BBBBBB;
}
.bs-scroll::-webkit-scrollbar-thumb {
background-color: #999999;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
.bs-scroll::-webkit-scrollbar-thumb:hover {
background-color: #666666;
}
.search-item {
border: none;
border-top-color: rgb(221, 221, 221);
border-top-style: solid;
border-top-width: 1px;
border-left-style: solid;
border-left-width: 2px;
}
.cross-unbind {
border-left-color: #777;
}
.cross-check {
border-left-color: #FFCC33;
}
.cross-normal {
border-left-color: #5cb85c;
}
.cross-fault {
border-left-color: #d9534f;
}
.search-item:first-child {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
.search-item:last-child {
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
.search-item-empty {
border: none;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
#loading-indicator {
position: absolute;
left: 10px;
top: 10px;
} | 0.295535 | 0.064801 |
body {
font-family: 'Source Sans Pro', sans-serif !important;
color: #9b9b9b;
font-size: 14px;
background: #292929;
}
h1,h2,h3,h4,h5,h6 {
font-family: 'Yanone Kaffeesatz', sans-serif;
font-weight: 400;
color: #fff;
}
.theme-logo {
margin: 80px auto;
text-align: center;
}
.theme-logo .fa {
color: #00AEC8;
font-size: 4em;
}
.theme-text {
font-size: 56px;
margin-bottom: 30px;
font-family: 'Yanone Kaffeesatz', sans-serif;
color: #fff;
font-weight: 600;
}
.theme-text h1 {
font-size: 56px;
font-weight: 600;
}
.theme-text h2 {
font-weight: 600;
}
.theme-logo .btn-success {
font-size: 18px;
font-weight: 600;
margin-right: 10px;
width: 220px;
line-height: 30px;
}
.bot-line {
display: block;
height: 4px;
margin: 7px 0 -11px;
width: 70px;
background: #00AEC8;
}
.has-warning .fa {
color: #EE7E2A;
}
.has-error .fa {
color: #E64141;
}
.has-success .fa {
color: #0FB492;
}
.right-inner-icon {
position: relative;
}
.right-inner-icon i {
padding: 12px 12px;
pointer-events: none;
position: absolute;
right: 0;
font-size: 18px;
}
.left-inner-icon {
position: relative;
}
.left-inner-icon i {
color: #ccc;
padding: 12px 15px;
pointer-events: none;
position: absolute;
font-size: 16px;
}
.btn-anchor {
margin: 5px 3px;
background: rgba(255,255,255,0.09);
}
.btn-anchor:hover,
.btn-anchor:focus,
.btn-anchor:active,
.btn-anchor.active,
.open > .dropdown-toggle.btn-success {
color: #fff;
background: #0DA283;
}
.btn-group .btn {
margin-bottom: 5px;
}
#source-button {
position: absolute;
top: 0;
right: 0;
z-index: 100;
font-weight: 700;
}
.bs-example {
position: relative;
}
.flat-form {
background: rgba(255, 255, 255, 0.04);
padding: 20px;
}
.flat-form .header {
color: #222;
font-weight: 200;
margin-bottom: 20px;
border-bottom: 1px solid #ccc;
padding-bottom: 20px;
}
.flat-form .header h3 {
margin-top: 0;
margin-bottom: 0;
font-weight: 200;
}
.flat-form .header label {
font-weight: 400;
}
.display-wizard {
background: none repeat scroll 0 0 #fff;
border-bottom: 1px solid #e2e2e2;
border-left: 1px solid #efefef;
border-radius: 3px;
border-right: 1px solid #efefef;
box-shadow: 0 1px 0 0 rgba(0,0,0,0.04);
margin-bottom: 40px;
padding: 20px;
position: relative;
transition: padding 500ms ease 0;
}
.alert-bg-white {
background: rgba(255, 255, 255, 0.04) !important;
border-color: #404040 !important;
color: #9b9b9b !important;
padding-left: 61px;
position: relative;
}
.alert-bg-white .alert-link {
color: #9b9b9b !important;
}
.alert-link {
color: #fff;
}
.alert-bg-white .icon {
border: 1px solid #bdbdbd;
height: 103%;
left: -1px;
padding-top: 15px;
position: absolute;
text-align: center;
top: -1px;
width: 45px;
}
.alert-bg-white .icon i {
color: #fff;
font-size: 20px;
left: 12px;
margin-top: -10px;
position: absolute;
top: 50%;
}
.alert-bg-white.alert-primary .icon,.alert-bg-white.alert-primary .icon:after {
background: #00AEC8;
border-color: #00AEC8;
}
.alert-bg-white.alert-success .icon,.alert-bg-white.alert-success .icon:after {
background: #0FB492;
border-color: #0FB492;
}
.alert-bg-white.alert-info .icon,.alert-bg-white.alert-info .icon:after {
background: #81519C;
border-color: #81519C;
}
.alert-bg-white.alert-warning .icon,.alert-bg-white.alert-warning .icon:after {
background: #EE7E2A;
border-color: #EE7E2A;
}
.alert-bg-white.alert-danger .icon,.alert-bg-white.alert-danger .icon:after {
background: #E64141;
border-color: #E64141;
}
.alert .icon-sign {
color: rgba(0,0,0,0.2);
display: inline-block;
font-size: 20px;
margin-right: 5px;
text-align: center;
vertical-align: middle;
width: 25px;
}
.alert-primary {
background: #00AEC8;
color: #fff;
border-color: #00AEC8;
}
.btn-label {
background: none repeat scroll 0 0 rgba(0,0,0,0.15);
border-radius: 3px 0 0 3px;
display: inline-block;
left: -18px;
padding: 8px 10px;
position: relative;
}
.btn-labeled {
padding-bottom: 0;
padding-top: 0;
}
.btn-circle {
border-radius: 15px !important;
font-size: 12px;
height: 30px;
line-height: 1.42857;
padding: 6px 0;
text-align: center;
width: 30px;
}
.btn-circle.btn-lg {
border-radius: 25px !important;
font-size: 18px;
height: 50px;
line-height: 1.33;
padding: 10px 16px;
width: 50px;
}
.btn-circle.btn-xl {
border-radius: 35px !important;
font-size: 24px;
height: 70px;
line-height: 1.33;
padding: 10px 16px;
width: 70px;
}
.ds-btn .fa {
font-size: 47px;
}
.navbar-nav .fa {
font-size: 16px;
padding-right: 5px;
}
.navbar-success {
background-color: #0FB492;
border: medium none;
}
.tab-content {
background: rgba(255,255,255,0.05);
padding: 10px;
}
.multiple-select .bs-example {
padding-bottom: 10px;
clear: both;
}
.multiple-select .row {
margin-bottom: 5px;
padding-bottom: 5px;
border-bottom: 1px solid #404040;
height: 80px;
padding-top: 10px;
}
.multiselect {
margin-bottom: 10px;
}
.date-time-picker .form-control-dr {
border-radius: 4px;
border: 1px solid #ccc;
padding: 5px;
width: 60%;
}
/* Fuelux Design */
.fuelux #source-button {
z-index: 5000;
}
.fuelux .wizard {
background: rgba(255, 255, 255, 0.04) !important;
border: 1px solid #404040 !important;
}
.fuelux .wizard .steps li {
background: #404040 !important;
}
.fuelux .wizard .steps li .chevron {
border-color: transparent -moz-use-text-color transparent #6B6A6A !important;
}
.fuelux .wizard .steps li .chevron:before {
border-color: transparent -moz-use-text-color transparent #404040 !important;
}
.fuelux .wizard .step-content {
border-top: 1px solid #404040 !important;
}
.fuelux .wizard .steps li:first-child {
border-radius: 0px !important;
}
.fuelux .wizard .steps li.active .badge {
background-color: #00AEC8 !important;
}
.fuelux .wizard .steps li.complete {
background: #292929 !important;
color: #0fb492 !important;
}
.fuelux .wizard .steps li .badge-success {
background: #0FB492 !important;
}
.fuelux .wizard .steps li.complete .chevron:before {
border-left: 14px solid #292929 !important;
}
.fuelux .wizard .steps li.active {
color: #fff !important;
background: #6B6A6A !important;
}
.fuelux .wizard .steps li.active .chevron:before {
border-left: 14px solid #6B6A6A !important;
}
.wizard .btn {
border: none !important;
padding: 7px 15px;
margin-bottom: 3px;
}
.fuelux .wizard .actions {
background: #404040 !important;
border-left: none !important;
}
.btn-labeled {
margin-bottom: 5px;
}
.navmenu-inverse .navmenu-nav > li > a {
background: #222 !important;
}
.navmenu-inverse .navmenu-nav .active > a {
background: #000 !important;
}
.masking-input .form-group {
overflow: hidden;
}
.left-inner-icon .form-control {
padding-left: 35px;
}
.btn-label {
left: -19px !important;
}
.btn-label.btn-label-right {
right: -19px !important;
left: auto !important;
}
.bootstrap-switch {
border-radius: 20px !important;
min-width: 70px !important;
border: 1px solid #404040 !important;
}
.bootstrap-switch.bootstrap-switch-small {
min-width: 55px !important;
font-size: 11px !important;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
background: #00AEC8 !important;
border-radius: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
background: #81519C !important;
border-radius: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
background: #0FB492 !important;
border-radius: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
background: #EE7E2A !important;
border-radius: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
background: #E64141 !important;
border-radius: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
border-radius: 20px;
}
.bootstrap-switch .bootstrap-switch-label {
background: none !important;
}
.bootstrap-switch.bootstrap-switch-large {
min-width: 90px !important;
}
.input-group-addon.primary {
color: #fff;
background-color: #00AEC8;
border-color: #00AEC8;
}
.input-group-addon.success {
color: #fff;
background-color: #0FB492;
border-color: #0FB492;
}
.input-group-addon.info {
color: #fff;
background-color: #EE7E2A;
border-color: #EE7E2A;
}
.input-group-addon.warning {
color: #fff;
background-color: #EE7E2A;
border-color: #EE7E2A;
}
.input-group-addon.danger {
color: #fff;
background-color: #E64141;
border-color: #E64141;
}
.shape {
border-style: solid;
border-width: 0 40px 40px 0;
float: right;
height: 0;
width: 0;
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
.shape-text {
color: #fff;
font-size: 12px;
font-weight: 700;
position: relative;
right: -22px;
top: -3px;
white-space: nowrap;
-ms-transform: rotate(30deg);
-o-transform: rotate(360deg);
-webkit-transform: rotate(46deg);
transform: rotate(46deg);
}
.offer {
background: rgba(255, 255, 255, 0.04);
border: 1px solid #ddd;
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
margin: 15px 0;
overflow: hidden;
}
.shape {
border-color: rgba(255,255,255,0) #E64141 rgba(255,255,255,0) rgba(255,255,255,0);
}
.offer-radius {
border-radius: 7px;
}
.offer-danger {
border-color: #E64141;
}
.offer-danger .shape {
border-color: transparent #E64141 transparent transparent;
}
.offer-success {
border-color: #0FB492;
}
.offer-success .shape {
border-color: transparent #0FB492 transparent transparent;
}
.offer-default {
border-color: #ccc;
}
.offer-default .shape {
border-color: transparent #ccc transparent transparent;
}
.offer-primary {
border-color: #00AEC8;
}
.offer-primary .shape {
border-color: transparent #00AEC8 transparent transparent;
}
.offer-info {
border-color: #81519C;
}
.offer-info .shape {
border-color: transparent #81519C transparent transparent;
}
.offer-warning {
border-color: #EE7E2A;
}
.offer-warning .shape {
border-color: transparent #EE7E2A transparent transparent;
}
.offer-content {
padding: 0 20px 10px;
}
.pager li a, .breadcrumb li a {
color: #9b9b9b;
}
.navmenu-inverse, .navbar-inverse .navbar-offcanvas {
border-color: #404040 !important;
}
.navmenu-inverse .navmenu-nav > .active > a, .navbar-inverse .navbar-offcanvas .navmenu-nav > .active > a, .navmenu-inverse .navmenu-nav > .active > a:hover, .navbar-inverse .navbar-offcanvas .navmenu-nav > .active > a:hover, .navmenu-inverse .navmenu-nav > .active > a:focus, .navbar-inverse .navbar-offcanvas .navmenu-nav > .active > a:focus {
background-color: #404040 !important;
}
/* Calender CSS */
[class*=" datetimepicker-dropdown"]:after {
border-bottom: 6px solid #313131 !important;
}
.date-time-picker .form-control-dr {
background: #3e3e3e;
border: 1px solid #555555;
height: 42px;
padding: 8px 12px;
border-radius: 0px;
}
/* Image upload*/
.fileinput .input-group-addon {
}
/* Alertify CSS */
.alertify-log {
}
.alertify-log-custom {
background: #3498DB !important;
color: #fff !important;
text-shadow: none !important;
border: 1px solid #2E86C1 !important;
}
.list{
color: #ccc;
text-align: left;
padding-left: 10px;
box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.3) inset, 0 2px 5px 0 rgba(0, 0, 0, 0.5);
text-align: left;
}
td.head{
border-collapse: collapse;
background-repeat: repeat-x;
background-position: top;
line-height: 26px;
height: 30px;
padding: 0px 0px 2px 5px;
margin: 0px 4px 0px 4px;
color: #E5E5E5;
font-weight: normal;
text-align: center;
box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.3) inset, 0 2px 5px 0 rgba(0, 0, 0, 0.5);
background-color: rgba(100, 100, 100, 0.6);
} | assets/css/custom.css | body {
font-family: 'Source Sans Pro', sans-serif !important;
color: #9b9b9b;
font-size: 14px;
background: #292929;
}
h1,h2,h3,h4,h5,h6 {
font-family: 'Yanone Kaffeesatz', sans-serif;
font-weight: 400;
color: #fff;
}
.theme-logo {
margin: 80px auto;
text-align: center;
}
.theme-logo .fa {
color: #00AEC8;
font-size: 4em;
}
.theme-text {
font-size: 56px;
margin-bottom: 30px;
font-family: 'Yanone Kaffeesatz', sans-serif;
color: #fff;
font-weight: 600;
}
.theme-text h1 {
font-size: 56px;
font-weight: 600;
}
.theme-text h2 {
font-weight: 600;
}
.theme-logo .btn-success {
font-size: 18px;
font-weight: 600;
margin-right: 10px;
width: 220px;
line-height: 30px;
}
.bot-line {
display: block;
height: 4px;
margin: 7px 0 -11px;
width: 70px;
background: #00AEC8;
}
.has-warning .fa {
color: #EE7E2A;
}
.has-error .fa {
color: #E64141;
}
.has-success .fa {
color: #0FB492;
}
.right-inner-icon {
position: relative;
}
.right-inner-icon i {
padding: 12px 12px;
pointer-events: none;
position: absolute;
right: 0;
font-size: 18px;
}
.left-inner-icon {
position: relative;
}
.left-inner-icon i {
color: #ccc;
padding: 12px 15px;
pointer-events: none;
position: absolute;
font-size: 16px;
}
.btn-anchor {
margin: 5px 3px;
background: rgba(255,255,255,0.09);
}
.btn-anchor:hover,
.btn-anchor:focus,
.btn-anchor:active,
.btn-anchor.active,
.open > .dropdown-toggle.btn-success {
color: #fff;
background: #0DA283;
}
.btn-group .btn {
margin-bottom: 5px;
}
#source-button {
position: absolute;
top: 0;
right: 0;
z-index: 100;
font-weight: 700;
}
.bs-example {
position: relative;
}
.flat-form {
background: rgba(255, 255, 255, 0.04);
padding: 20px;
}
.flat-form .header {
color: #222;
font-weight: 200;
margin-bottom: 20px;
border-bottom: 1px solid #ccc;
padding-bottom: 20px;
}
.flat-form .header h3 {
margin-top: 0;
margin-bottom: 0;
font-weight: 200;
}
.flat-form .header label {
font-weight: 400;
}
.display-wizard {
background: none repeat scroll 0 0 #fff;
border-bottom: 1px solid #e2e2e2;
border-left: 1px solid #efefef;
border-radius: 3px;
border-right: 1px solid #efefef;
box-shadow: 0 1px 0 0 rgba(0,0,0,0.04);
margin-bottom: 40px;
padding: 20px;
position: relative;
transition: padding 500ms ease 0;
}
.alert-bg-white {
background: rgba(255, 255, 255, 0.04) !important;
border-color: #404040 !important;
color: #9b9b9b !important;
padding-left: 61px;
position: relative;
}
.alert-bg-white .alert-link {
color: #9b9b9b !important;
}
.alert-link {
color: #fff;
}
.alert-bg-white .icon {
border: 1px solid #bdbdbd;
height: 103%;
left: -1px;
padding-top: 15px;
position: absolute;
text-align: center;
top: -1px;
width: 45px;
}
.alert-bg-white .icon i {
color: #fff;
font-size: 20px;
left: 12px;
margin-top: -10px;
position: absolute;
top: 50%;
}
.alert-bg-white.alert-primary .icon,.alert-bg-white.alert-primary .icon:after {
background: #00AEC8;
border-color: #00AEC8;
}
.alert-bg-white.alert-success .icon,.alert-bg-white.alert-success .icon:after {
background: #0FB492;
border-color: #0FB492;
}
.alert-bg-white.alert-info .icon,.alert-bg-white.alert-info .icon:after {
background: #81519C;
border-color: #81519C;
}
.alert-bg-white.alert-warning .icon,.alert-bg-white.alert-warning .icon:after {
background: #EE7E2A;
border-color: #EE7E2A;
}
.alert-bg-white.alert-danger .icon,.alert-bg-white.alert-danger .icon:after {
background: #E64141;
border-color: #E64141;
}
.alert .icon-sign {
color: rgba(0,0,0,0.2);
display: inline-block;
font-size: 20px;
margin-right: 5px;
text-align: center;
vertical-align: middle;
width: 25px;
}
.alert-primary {
background: #00AEC8;
color: #fff;
border-color: #00AEC8;
}
.btn-label {
background: none repeat scroll 0 0 rgba(0,0,0,0.15);
border-radius: 3px 0 0 3px;
display: inline-block;
left: -18px;
padding: 8px 10px;
position: relative;
}
.btn-labeled {
padding-bottom: 0;
padding-top: 0;
}
.btn-circle {
border-radius: 15px !important;
font-size: 12px;
height: 30px;
line-height: 1.42857;
padding: 6px 0;
text-align: center;
width: 30px;
}
.btn-circle.btn-lg {
border-radius: 25px !important;
font-size: 18px;
height: 50px;
line-height: 1.33;
padding: 10px 16px;
width: 50px;
}
.btn-circle.btn-xl {
border-radius: 35px !important;
font-size: 24px;
height: 70px;
line-height: 1.33;
padding: 10px 16px;
width: 70px;
}
.ds-btn .fa {
font-size: 47px;
}
.navbar-nav .fa {
font-size: 16px;
padding-right: 5px;
}
.navbar-success {
background-color: #0FB492;
border: medium none;
}
.tab-content {
background: rgba(255,255,255,0.05);
padding: 10px;
}
.multiple-select .bs-example {
padding-bottom: 10px;
clear: both;
}
.multiple-select .row {
margin-bottom: 5px;
padding-bottom: 5px;
border-bottom: 1px solid #404040;
height: 80px;
padding-top: 10px;
}
.multiselect {
margin-bottom: 10px;
}
.date-time-picker .form-control-dr {
border-radius: 4px;
border: 1px solid #ccc;
padding: 5px;
width: 60%;
}
/* Fuelux Design */
.fuelux #source-button {
z-index: 5000;
}
.fuelux .wizard {
background: rgba(255, 255, 255, 0.04) !important;
border: 1px solid #404040 !important;
}
.fuelux .wizard .steps li {
background: #404040 !important;
}
.fuelux .wizard .steps li .chevron {
border-color: transparent -moz-use-text-color transparent #6B6A6A !important;
}
.fuelux .wizard .steps li .chevron:before {
border-color: transparent -moz-use-text-color transparent #404040 !important;
}
.fuelux .wizard .step-content {
border-top: 1px solid #404040 !important;
}
.fuelux .wizard .steps li:first-child {
border-radius: 0px !important;
}
.fuelux .wizard .steps li.active .badge {
background-color: #00AEC8 !important;
}
.fuelux .wizard .steps li.complete {
background: #292929 !important;
color: #0fb492 !important;
}
.fuelux .wizard .steps li .badge-success {
background: #0FB492 !important;
}
.fuelux .wizard .steps li.complete .chevron:before {
border-left: 14px solid #292929 !important;
}
.fuelux .wizard .steps li.active {
color: #fff !important;
background: #6B6A6A !important;
}
.fuelux .wizard .steps li.active .chevron:before {
border-left: 14px solid #6B6A6A !important;
}
.wizard .btn {
border: none !important;
padding: 7px 15px;
margin-bottom: 3px;
}
.fuelux .wizard .actions {
background: #404040 !important;
border-left: none !important;
}
.btn-labeled {
margin-bottom: 5px;
}
.navmenu-inverse .navmenu-nav > li > a {
background: #222 !important;
}
.navmenu-inverse .navmenu-nav .active > a {
background: #000 !important;
}
.masking-input .form-group {
overflow: hidden;
}
.left-inner-icon .form-control {
padding-left: 35px;
}
.btn-label {
left: -19px !important;
}
.btn-label.btn-label-right {
right: -19px !important;
left: auto !important;
}
.bootstrap-switch {
border-radius: 20px !important;
min-width: 70px !important;
border: 1px solid #404040 !important;
}
.bootstrap-switch.bootstrap-switch-small {
min-width: 55px !important;
font-size: 11px !important;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
background: #00AEC8 !important;
border-radius: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
background: #81519C !important;
border-radius: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
background: #0FB492 !important;
border-radius: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
background: #EE7E2A !important;
border-radius: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
background: #E64141 !important;
border-radius: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
border-radius: 20px;
}
.bootstrap-switch .bootstrap-switch-label {
background: none !important;
}
.bootstrap-switch.bootstrap-switch-large {
min-width: 90px !important;
}
.input-group-addon.primary {
color: #fff;
background-color: #00AEC8;
border-color: #00AEC8;
}
.input-group-addon.success {
color: #fff;
background-color: #0FB492;
border-color: #0FB492;
}
.input-group-addon.info {
color: #fff;
background-color: #EE7E2A;
border-color: #EE7E2A;
}
.input-group-addon.warning {
color: #fff;
background-color: #EE7E2A;
border-color: #EE7E2A;
}
.input-group-addon.danger {
color: #fff;
background-color: #E64141;
border-color: #E64141;
}
.shape {
border-style: solid;
border-width: 0 40px 40px 0;
float: right;
height: 0;
width: 0;
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
.shape-text {
color: #fff;
font-size: 12px;
font-weight: 700;
position: relative;
right: -22px;
top: -3px;
white-space: nowrap;
-ms-transform: rotate(30deg);
-o-transform: rotate(360deg);
-webkit-transform: rotate(46deg);
transform: rotate(46deg);
}
.offer {
background: rgba(255, 255, 255, 0.04);
border: 1px solid #ddd;
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
margin: 15px 0;
overflow: hidden;
}
.shape {
border-color: rgba(255,255,255,0) #E64141 rgba(255,255,255,0) rgba(255,255,255,0);
}
.offer-radius {
border-radius: 7px;
}
.offer-danger {
border-color: #E64141;
}
.offer-danger .shape {
border-color: transparent #E64141 transparent transparent;
}
.offer-success {
border-color: #0FB492;
}
.offer-success .shape {
border-color: transparent #0FB492 transparent transparent;
}
.offer-default {
border-color: #ccc;
}
.offer-default .shape {
border-color: transparent #ccc transparent transparent;
}
.offer-primary {
border-color: #00AEC8;
}
.offer-primary .shape {
border-color: transparent #00AEC8 transparent transparent;
}
.offer-info {
border-color: #81519C;
}
.offer-info .shape {
border-color: transparent #81519C transparent transparent;
}
.offer-warning {
border-color: #EE7E2A;
}
.offer-warning .shape {
border-color: transparent #EE7E2A transparent transparent;
}
.offer-content {
padding: 0 20px 10px;
}
.pager li a, .breadcrumb li a {
color: #9b9b9b;
}
.navmenu-inverse, .navbar-inverse .navbar-offcanvas {
border-color: #404040 !important;
}
.navmenu-inverse .navmenu-nav > .active > a, .navbar-inverse .navbar-offcanvas .navmenu-nav > .active > a, .navmenu-inverse .navmenu-nav > .active > a:hover, .navbar-inverse .navbar-offcanvas .navmenu-nav > .active > a:hover, .navmenu-inverse .navmenu-nav > .active > a:focus, .navbar-inverse .navbar-offcanvas .navmenu-nav > .active > a:focus {
background-color: #404040 !important;
}
/* Calender CSS */
[class*=" datetimepicker-dropdown"]:after {
border-bottom: 6px solid #313131 !important;
}
.date-time-picker .form-control-dr {
background: #3e3e3e;
border: 1px solid #555555;
height: 42px;
padding: 8px 12px;
border-radius: 0px;
}
/* Image upload*/
.fileinput .input-group-addon {
}
/* Alertify CSS */
.alertify-log {
}
.alertify-log-custom {
background: #3498DB !important;
color: #fff !important;
text-shadow: none !important;
border: 1px solid #2E86C1 !important;
}
.list{
color: #ccc;
text-align: left;
padding-left: 10px;
box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.3) inset, 0 2px 5px 0 rgba(0, 0, 0, 0.5);
text-align: left;
}
td.head{
border-collapse: collapse;
background-repeat: repeat-x;
background-position: top;
line-height: 26px;
height: 30px;
padding: 0px 0px 2px 5px;
margin: 0px 4px 0px 4px;
color: #E5E5E5;
font-weight: normal;
text-align: center;
box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.3) inset, 0 2px 5px 0 rgba(0, 0, 0, 0.5);
background-color: rgba(100, 100, 100, 0.6);
} | 0.357792 | 0.050471 |
@media only screen and (max-width: 500px) {
.container--narrow {
max-width: 100%;
}
#index-banner {
display: none;
}
nav .nav-wrapper {
display: flex;
justify-content: space-between;
margin: 0 30px;
}
}
@media only screen and (max-width: 425px) {
.container--narrow {
max-width: 100%;
}
nav .nav-wrapper {
display: flex;
justify-content: space-between;
margin: 0 30px;
}
#index-banner {
display: none;
}
.post-title {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.hero-banner {
width: 100%;
}
.brand-logo {
text-align: center;
}
nav .brand-logo {
width: 100%;
}
.logo-footer {
text-align: center;
}
}
@media (min-width: 1000px) {
.footer-even {
display: flex;
justify-content: end;
}
}
.green-btn {
background-color: #134733;
}
/* only put ths when using image as logo */
/* .brand-logo {
margin-top: 10px;
} */
.training-log {
background-color: #f2f2f2;
padding: 25px;
}
.badge {
background-color: #115339;
}
.render-line-break {
white-space: pre-line;
}
.video-container {
width: 100%;
height: 100%;
padding-bottom: 0px;
}
.video-container video {
/* Make video to at least 100% wide and tall */
min-width: 100%;
min-height: 100%;
/* Setting width & height to auto prevents the browser from stretching or squishing the video */
width: 100%;
height: auto;
}
#post-author-videos {
display: flex;
text-transform: lowercase;
}
#post-author-videos a {
text-transform: none;
}
.post-author-chip-left {
padding-right: 15px;
width: min-content;
text-transform: lowercase;
}
.cmt-msg {
margin-top: 22px;
}
#slide-out a:hover {
background-color: #144733;
}
html {
font-family: sans-serif;
}
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
.chip-right {
padding: 6px;
}
.post-title {
font-size: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding: 10px;
}
form#edit-video,
form#delete-video {
font-size: 1px;
padding-top: 4px;
width: min-content;
}
#delete-video {
display: flex;
}
nav {
z-index: 999;
position: fixed;
}
#index-banner {
margin-top: 56px;
margin-bottom: -56px;
}
main {
margin-top: 56px;
}
nav ul a:hover {
color: white !important;
background-color: #0d5338;
}
.auth-font-siize {
font-size: 2.1rem;
}
/* .dropdown-trigger { */
/* color: #212121; */
/* background-color: #ffffff; */
/* border-radius: 50%; */
/* width: 100%; */
/* height: 100%; */
/* position: absolute; */
/* } */
.hide-on-med-and-down {
display: flex;
justify-content: center;
align-items: center;
}
.dropdown-trigger-img {
border: 2px solid white;
border-radius: 50%;
margin-left: -30px;
top: 25%;
max-width: 50%;
max-height: 50%;
position: absolute;
}
.dropdown-content {
overflow-y: hidden;
top: 100% !important;
min-width: max-content;
left: 50px;
}
.dropdown-content li > a,
.dropdown-content li > span {
color: white !important;
background-color: #0d5338;
}
.dropdown-content li > a:hover {
background-color: #114732 !important;
}
.modal-trigger a,
.modal-trigger {
margin-right: 0px !important;
vertical-align: sub;
}
.container--narrow {
max-width: 70%;
}
.nav-font {
font-size: 1.64rem;
}
nav ul {
margin-right: -15px;
}
nav .nav-wrapper {
display: flex;
justify-content: space-between;
margin: 0 auto;
max-width: 1280px;
} | src/public/css/custom.css | @media only screen and (max-width: 500px) {
.container--narrow {
max-width: 100%;
}
#index-banner {
display: none;
}
nav .nav-wrapper {
display: flex;
justify-content: space-between;
margin: 0 30px;
}
}
@media only screen and (max-width: 425px) {
.container--narrow {
max-width: 100%;
}
nav .nav-wrapper {
display: flex;
justify-content: space-between;
margin: 0 30px;
}
#index-banner {
display: none;
}
.post-title {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.hero-banner {
width: 100%;
}
.brand-logo {
text-align: center;
}
nav .brand-logo {
width: 100%;
}
.logo-footer {
text-align: center;
}
}
@media (min-width: 1000px) {
.footer-even {
display: flex;
justify-content: end;
}
}
.green-btn {
background-color: #134733;
}
/* only put ths when using image as logo */
/* .brand-logo {
margin-top: 10px;
} */
.training-log {
background-color: #f2f2f2;
padding: 25px;
}
.badge {
background-color: #115339;
}
.render-line-break {
white-space: pre-line;
}
.video-container {
width: 100%;
height: 100%;
padding-bottom: 0px;
}
.video-container video {
/* Make video to at least 100% wide and tall */
min-width: 100%;
min-height: 100%;
/* Setting width & height to auto prevents the browser from stretching or squishing the video */
width: 100%;
height: auto;
}
#post-author-videos {
display: flex;
text-transform: lowercase;
}
#post-author-videos a {
text-transform: none;
}
.post-author-chip-left {
padding-right: 15px;
width: min-content;
text-transform: lowercase;
}
.cmt-msg {
margin-top: 22px;
}
#slide-out a:hover {
background-color: #144733;
}
html {
font-family: sans-serif;
}
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
.chip-right {
padding: 6px;
}
.post-title {
font-size: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding: 10px;
}
form#edit-video,
form#delete-video {
font-size: 1px;
padding-top: 4px;
width: min-content;
}
#delete-video {
display: flex;
}
nav {
z-index: 999;
position: fixed;
}
#index-banner {
margin-top: 56px;
margin-bottom: -56px;
}
main {
margin-top: 56px;
}
nav ul a:hover {
color: white !important;
background-color: #0d5338;
}
.auth-font-siize {
font-size: 2.1rem;
}
/* .dropdown-trigger { */
/* color: #212121; */
/* background-color: #ffffff; */
/* border-radius: 50%; */
/* width: 100%; */
/* height: 100%; */
/* position: absolute; */
/* } */
.hide-on-med-and-down {
display: flex;
justify-content: center;
align-items: center;
}
.dropdown-trigger-img {
border: 2px solid white;
border-radius: 50%;
margin-left: -30px;
top: 25%;
max-width: 50%;
max-height: 50%;
position: absolute;
}
.dropdown-content {
overflow-y: hidden;
top: 100% !important;
min-width: max-content;
left: 50px;
}
.dropdown-content li > a,
.dropdown-content li > span {
color: white !important;
background-color: #0d5338;
}
.dropdown-content li > a:hover {
background-color: #114732 !important;
}
.modal-trigger a,
.modal-trigger {
margin-right: 0px !important;
vertical-align: sub;
}
.container--narrow {
max-width: 70%;
}
.nav-font {
font-size: 1.64rem;
}
nav ul {
margin-right: -15px;
}
nav .nav-wrapper {
display: flex;
justify-content: space-between;
margin: 0 auto;
max-width: 1280px;
} | 0.395951 | 0.097691 |
body {
background-image: url("../img/bg.png");
background-size: cover;
}
.container {
margin-top: 2%;
}
.header h1 {
text-align: center;
padding-top: 2%;
padding-bottom: 15px;
box-shadow: 0px 1px 15px #888888;
}
.header h4 {
text-align: center;
padding-top: 3%;
padding-bottom: .5%;
}
.header h6 {
padding-bottom: 5px;
text-decoration: underline;
}
#programselector {
box-shadow: 0px 1px 15px #888888;
}
.question1 {
color: black;
background-color: lightblue;
padding-top: 10px;
}
#fashionstyle {
color: #00AAC3;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.question1 option {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.question2 {
color: black;
background-color: lightgreen;
padding-top: 10px;
}
#preference {
color: #009E4F;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.question2 option {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.question3 {
color: black;
background-color: rgb(250, 222, 65);
padding-top: 10px;
}
#fantasycreature {
color: black;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.question3 option {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.question4 {
color: black;
background-color: rgb(248, 134, 58);
padding-top: 10px;
}
#music {
color: rgb(248, 134, 58);
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.question4 option {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.question5 {
color: black;
background-color: rgb(241, 66, 66);
padding-top: 10px;
}
#pickcolor {
color: rgb(241, 66, 66);
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.question5 option {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.bluebg {
color: black;
background-color: lightblue;
}
.yellowbg {
color: black;
background-color: rgb(250, 250, 146);
}
.purplebg {
color: black;
background-color: rgb(167, 167, 204);
}
#outputjs {
display: none;
margin-top: 3%;
margin-bottom: 1%;
padding-top: 1%;
padding-bottom: 1%;
padding-left: 1%;
box-shadow: 0px 1px 15px #888888;
}
#outputjs img {
width: 15%;
height: auto;
margin-top: 15px;
}
#outputpython {
display: none;
margin-top: 3%;
margin-bottom: 1%;
padding-top: 1%;
padding-bottom: 1%;
padding-left: 1%;
box-shadow: 0px 1px 15px #888888;
}
#outputpython img {
width: 15%;
height: auto;
margin-top: 15px;
}
#outputcsharp {
display: none;
margin-top: 3%;
margin-bottom: 1%;
padding-top: 1%;
padding-bottom: 1%;
padding-left: 1%;
box-shadow: 0px 1px 15px #888888;
}
#outputcsharp img {
width: 15%;
height: auto;
margin-top: 15px;
}
#error {
display: none;
background-image: url(../img/warning.png);
background-repeat: no-repeat;
background-size: contain;
margin-top: 2%;
}
#error h2 {
padding-left: 5%;
}
.btn {
color:black;
width:calc(9vw + 6px);
height:calc(3vw + 6px);
background-image: linear-gradient(90deg, #00C0FF 0%, #FFCF00 49%, #FC4F4F 80%, #00C0FF 100%);
border-radius:5px;
display:flex;
align-items:center;
justify-content:center;
text-transform:uppercase;
font-size:2vw;
font-weight:bold;
margin-top: 13px;
border: 2px solid black;
}
.btn:after {
color: black;
content:attr(alt);
width:20vw;
height:8vw;
display:flex;
align-items:center;
justify-content:center;
}
.btn:hover {
animation:slidebg 3s linear infinite;
color: black;
}
@keyframes slidebg {
to {
background-position:20vw;
}
} | css/styles.css | body {
background-image: url("../img/bg.png");
background-size: cover;
}
.container {
margin-top: 2%;
}
.header h1 {
text-align: center;
padding-top: 2%;
padding-bottom: 15px;
box-shadow: 0px 1px 15px #888888;
}
.header h4 {
text-align: center;
padding-top: 3%;
padding-bottom: .5%;
}
.header h6 {
padding-bottom: 5px;
text-decoration: underline;
}
#programselector {
box-shadow: 0px 1px 15px #888888;
}
.question1 {
color: black;
background-color: lightblue;
padding-top: 10px;
}
#fashionstyle {
color: #00AAC3;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.question1 option {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.question2 {
color: black;
background-color: lightgreen;
padding-top: 10px;
}
#preference {
color: #009E4F;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.question2 option {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.question3 {
color: black;
background-color: rgb(250, 222, 65);
padding-top: 10px;
}
#fantasycreature {
color: black;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.question3 option {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.question4 {
color: black;
background-color: rgb(248, 134, 58);
padding-top: 10px;
}
#music {
color: rgb(248, 134, 58);
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.question4 option {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.question5 {
color: black;
background-color: rgb(241, 66, 66);
padding-top: 10px;
}
#pickcolor {
color: rgb(241, 66, 66);
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.question5 option {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.bluebg {
color: black;
background-color: lightblue;
}
.yellowbg {
color: black;
background-color: rgb(250, 250, 146);
}
.purplebg {
color: black;
background-color: rgb(167, 167, 204);
}
#outputjs {
display: none;
margin-top: 3%;
margin-bottom: 1%;
padding-top: 1%;
padding-bottom: 1%;
padding-left: 1%;
box-shadow: 0px 1px 15px #888888;
}
#outputjs img {
width: 15%;
height: auto;
margin-top: 15px;
}
#outputpython {
display: none;
margin-top: 3%;
margin-bottom: 1%;
padding-top: 1%;
padding-bottom: 1%;
padding-left: 1%;
box-shadow: 0px 1px 15px #888888;
}
#outputpython img {
width: 15%;
height: auto;
margin-top: 15px;
}
#outputcsharp {
display: none;
margin-top: 3%;
margin-bottom: 1%;
padding-top: 1%;
padding-bottom: 1%;
padding-left: 1%;
box-shadow: 0px 1px 15px #888888;
}
#outputcsharp img {
width: 15%;
height: auto;
margin-top: 15px;
}
#error {
display: none;
background-image: url(../img/warning.png);
background-repeat: no-repeat;
background-size: contain;
margin-top: 2%;
}
#error h2 {
padding-left: 5%;
}
.btn {
color:black;
width:calc(9vw + 6px);
height:calc(3vw + 6px);
background-image: linear-gradient(90deg, #00C0FF 0%, #FFCF00 49%, #FC4F4F 80%, #00C0FF 100%);
border-radius:5px;
display:flex;
align-items:center;
justify-content:center;
text-transform:uppercase;
font-size:2vw;
font-weight:bold;
margin-top: 13px;
border: 2px solid black;
}
.btn:after {
color: black;
content:attr(alt);
width:20vw;
height:8vw;
display:flex;
align-items:center;
justify-content:center;
}
.btn:hover {
animation:slidebg 3s linear infinite;
color: black;
}
@keyframes slidebg {
to {
background-position:20vw;
}
} | 0.462716 | 0.101322 |
:root {
--scarlet: #ff2400;
--negative-scarlet: #00ffff;
}
body, html {
color: #000;
background: #fff;
}
a:link {
background: inherit;
color: #00f;
text-decoration: underline;
}
a:visited {
background: inherit;
color: #400860;
text-decoration: underline;
}
h1 {
color: var(--scarlet);
background: white;
border-bottom: solid 0.05em var(--scarlet);
padding: 0;
margin: 0;
font-style: normal;
font-weight: normal;
}
p.lastupdated {
font-size: 70%;
font-style: italic;
margin-bottom: 0;
}
p.contact {
margin-top: 0;
font-size: 70%;
}
#topnavbar ul {
width: 100%;
float: left;
margin: 0;
padding: 0;
text-align: center;
white-space: nowrap;
color: #000;
font-family: Arial, Helvetica, sans-serif;
background-color: white;
border-bottom: solid 2px var(--scarlet);
clear: right;
margin-bottom: .5em;
}
#topnavbar ul li {
display: inline;
padding-left: 0;
padding-right: 0;
}
#topnavbar ul li a {
padding: 3px 10px;
text-decoration: none;
color: #000;
background-color: white;
float: left;
border-right: 1px solid black;
}
#topnavbar ul li a:hover {
background-color: var(--scarlet);
color: white;
}
#topnavbar div {
clear: both;
}
div#news {
width: 30%;
float: right;
margin-left: 2em;
padding-left: 1em;
background-color: #fcc;
margin-bottom: 0.5em;
border: 1px solid var(--scarlet);
}
dl.idealist dt {
font-weight: bold;
}
dl.idealist dt {
margin-top: 0.5em;
}
dl.newslist {
margin: 0;
padding: 0;
}
dl.newslist dt {
// display: inline;
padding-left: 0;
color: #000055;
font-weight: bold;
margin-bottom: 0.2em;
}
dl.newslist dd {
padding-bottom: 1em;
margin-bottom: 0;
margin-left: 1em;
padding-left: 0;
margin-right: 1em;
}
div#news p {
margin-top: 0;
padding-top: 0;
}
#announcements p {
color: var(--scarlet);
}
#announcements h1 {
color: #ffffff;
text-align: center;
font-size: 110%;
text-decoration: underline;
}
/* The alternating announcement colors */
#announcements p.one { color: #ff0000; }
#announcements p.two { color: #00ff00; }
#announcements p.three { color: #3333ff; }
.announce_date { font-weight: bold; }
table.people {
margin-left: 10px;
padding: 2px;
border-collapse: collapse;
border: none;
}
table.people th {
font-weight: bold;
text-align: center;
border: 0;
border-bottom: solid 2px;
}
table.people td {
border: none;
border-bottom: 1px solid #888;
padding-right: 1em;
padding-left: 1em;
}
table.assignments {
width: 98%;
margin-left: 1%;
margin-right: 1%;
border-collapse: collapse;
}
table.assignments th {
background: maroon;
color: white;
/* color: var(--negative-scarlet); */
}
table.assignments tr,td,th {
padding: 3px;
border-width: 1px;
border-style: solid;
border-color: black;
border-spacing: 0px;
}
table.schedule th {
background: maroon;
color: white;
/* color: var(--negative-scarlet); */
}
table.schedule {
width: 98%;
margin-left: 1%;
margin-right: 1%;
border-collapse: collapse;
}
table.Schedule tr,th,td {
padding: 3px;
border-width: 1px;
border-spacing: 0px;
border-style: solid;
border-color: black;
}
/* Presentation: No underlines on links in schedule unless you're
* moving the mouse over it. */
table.schedule tr.lecture { background: white; }
table.schedule tr.lecture.alt { background: #ddd; }
table.schedule tr.noclass { background: lime; }
table.schedule tr.exam { background: yellow; }
table.schedule tr.recitation { background: #ccf; }
table.schedule tr.recitation.alt { background: #ccf; }
table.schedule tr.lechead { font-weight: bold; text-align: center; }
div#textbooks {
/* position: relative; */
/* vertical-align: top; */
/* float: left; */
/* width: 45%; */
/* padding-left: 1em; */
/* padding-right: 1em; */
/* margin-right: 1em; */
}
div#Grading {
position: relative;
vertical-align: top;
/* float: right; */
padding-left: 0;
padding-right: 1em;
width: 800px; /* was 45% */
}
div#overview_main {
width: 800px;
}
div#syllabus_main {
}
div#textbooks {
width: 800px;
}
#Schedule h2 { text-align: center; }
div#Schedule {
/* border-top: 1px solid maroon; */
clear: both;
/* margin-top: 5em; */
float: none;
width: 100%;
}
div#prerequisites, div#staff, div#policies, div#resources {
clear: left;
border-top: 1px solid var(--scarlet);
}
ul.announcements li {
padding-top: 0.5em;
}
div#announce_main {
width: 800px;
}
span.email {
font-family: Courier, monospace;
font-size: 85%;
}
div.clear {
clear: both;
} | ex/previous-offerings/352-S19/style.css | :root {
--scarlet: #ff2400;
--negative-scarlet: #00ffff;
}
body, html {
color: #000;
background: #fff;
}
a:link {
background: inherit;
color: #00f;
text-decoration: underline;
}
a:visited {
background: inherit;
color: #400860;
text-decoration: underline;
}
h1 {
color: var(--scarlet);
background: white;
border-bottom: solid 0.05em var(--scarlet);
padding: 0;
margin: 0;
font-style: normal;
font-weight: normal;
}
p.lastupdated {
font-size: 70%;
font-style: italic;
margin-bottom: 0;
}
p.contact {
margin-top: 0;
font-size: 70%;
}
#topnavbar ul {
width: 100%;
float: left;
margin: 0;
padding: 0;
text-align: center;
white-space: nowrap;
color: #000;
font-family: Arial, Helvetica, sans-serif;
background-color: white;
border-bottom: solid 2px var(--scarlet);
clear: right;
margin-bottom: .5em;
}
#topnavbar ul li {
display: inline;
padding-left: 0;
padding-right: 0;
}
#topnavbar ul li a {
padding: 3px 10px;
text-decoration: none;
color: #000;
background-color: white;
float: left;
border-right: 1px solid black;
}
#topnavbar ul li a:hover {
background-color: var(--scarlet);
color: white;
}
#topnavbar div {
clear: both;
}
div#news {
width: 30%;
float: right;
margin-left: 2em;
padding-left: 1em;
background-color: #fcc;
margin-bottom: 0.5em;
border: 1px solid var(--scarlet);
}
dl.idealist dt {
font-weight: bold;
}
dl.idealist dt {
margin-top: 0.5em;
}
dl.newslist {
margin: 0;
padding: 0;
}
dl.newslist dt {
// display: inline;
padding-left: 0;
color: #000055;
font-weight: bold;
margin-bottom: 0.2em;
}
dl.newslist dd {
padding-bottom: 1em;
margin-bottom: 0;
margin-left: 1em;
padding-left: 0;
margin-right: 1em;
}
div#news p {
margin-top: 0;
padding-top: 0;
}
#announcements p {
color: var(--scarlet);
}
#announcements h1 {
color: #ffffff;
text-align: center;
font-size: 110%;
text-decoration: underline;
}
/* The alternating announcement colors */
#announcements p.one { color: #ff0000; }
#announcements p.two { color: #00ff00; }
#announcements p.three { color: #3333ff; }
.announce_date { font-weight: bold; }
table.people {
margin-left: 10px;
padding: 2px;
border-collapse: collapse;
border: none;
}
table.people th {
font-weight: bold;
text-align: center;
border: 0;
border-bottom: solid 2px;
}
table.people td {
border: none;
border-bottom: 1px solid #888;
padding-right: 1em;
padding-left: 1em;
}
table.assignments {
width: 98%;
margin-left: 1%;
margin-right: 1%;
border-collapse: collapse;
}
table.assignments th {
background: maroon;
color: white;
/* color: var(--negative-scarlet); */
}
table.assignments tr,td,th {
padding: 3px;
border-width: 1px;
border-style: solid;
border-color: black;
border-spacing: 0px;
}
table.schedule th {
background: maroon;
color: white;
/* color: var(--negative-scarlet); */
}
table.schedule {
width: 98%;
margin-left: 1%;
margin-right: 1%;
border-collapse: collapse;
}
table.Schedule tr,th,td {
padding: 3px;
border-width: 1px;
border-spacing: 0px;
border-style: solid;
border-color: black;
}
/* Presentation: No underlines on links in schedule unless you're
* moving the mouse over it. */
table.schedule tr.lecture { background: white; }
table.schedule tr.lecture.alt { background: #ddd; }
table.schedule tr.noclass { background: lime; }
table.schedule tr.exam { background: yellow; }
table.schedule tr.recitation { background: #ccf; }
table.schedule tr.recitation.alt { background: #ccf; }
table.schedule tr.lechead { font-weight: bold; text-align: center; }
div#textbooks {
/* position: relative; */
/* vertical-align: top; */
/* float: left; */
/* width: 45%; */
/* padding-left: 1em; */
/* padding-right: 1em; */
/* margin-right: 1em; */
}
div#Grading {
position: relative;
vertical-align: top;
/* float: right; */
padding-left: 0;
padding-right: 1em;
width: 800px; /* was 45% */
}
div#overview_main {
width: 800px;
}
div#syllabus_main {
}
div#textbooks {
width: 800px;
}
#Schedule h2 { text-align: center; }
div#Schedule {
/* border-top: 1px solid maroon; */
clear: both;
/* margin-top: 5em; */
float: none;
width: 100%;
}
div#prerequisites, div#staff, div#policies, div#resources {
clear: left;
border-top: 1px solid var(--scarlet);
}
ul.announcements li {
padding-top: 0.5em;
}
div#announce_main {
width: 800px;
}
span.email {
font-family: Courier, monospace;
font-size: 85%;
}
div.clear {
clear: both;
} | 0.453504 | 0.220196 |
.drama-sub-club-main {
position: relative;
}
.drama-sub-club-title {
position: absolute;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.drama-sub-club-main-image {
height: 100vh;
}
.drama-sub-club-image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
overflow: hidden;
}
.drama-sub-club-block {
display: flex;
flex-direction: column;
}
.block-text-container {
min-height: 70vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: min(5vw, 120px);
}
.drama-sub-club-header {
inline-size: min(500px, 80%);
}
.block-text-wrapper {
width: min(700px, 90%);
}
.drama-sub-club-block-content {
margin-top: min(2vh, 15px);
}
.drama-sub-club-block-image {
overflow: hidden;
height: 100vh;
}
/* layouts end */
/* Font sizes, colors and friends*/
::-webkit-scrollbar {
width: 3px;
}
::-webkit-scrollbar-track {
background-color: #333;
}
::-webkit-scrollbar-thumb {
background-color: aliceblue;
}
.drama-sub-club-main {
background-color: #aa3030;
}
.first-half-color {
color: white;
}
.second-half-color {
color: white;
}
.drama-sub-club-title {
font-weight: 500;
}
.drama-sub-club-title-wrapper {
font-size: min(15vw, 5rem);
padding: min(15vh, 150px) min(1vw, 90px);
font-weight: 700;
border-radius: 4vw;
/* Shadows */
box-shadow: 2px 1px 4px 2px rgba(0, 0, 0, 0.42);
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.25));
left: 0;
-webkit-backdrop-filter: blur(5px);
backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
.drama-sub-club-title-box{
background-color: #aa3030;
padding: min(4vw, 20px) min(6vw, 20px);
margin: 0 0;
}
}
section.drama-sub-club-block {
background-color: #ff9683;
color: #000000;
}
section.drama-sub-club-block:nth-of-type(2n) {
background-color: #cf514c;
color: #FFFFFF;
}
.drama-sub-club-header {
font-size: min(2.2rem, 8vw);
font-weight: 350;
}
.drama-sub-club-block-content {
font-size: min(1.4rem, 5vw);
font-weight: lighter;
}
/* Font sizes, colors end*/
@media screen and (min-width:768px) {
.drama-sub-club-main {
display: flex;
flex-direction: column;
}
.drama-sub-club-title {
right: 20%;
}
.drama-sub-club-title-wrapper {
padding-inline: min(1vw, 10px);
}
.drama-sub-club-main-image {
width: 70%;
align-self: flex-end;
}
section.drama-sub-club-block {
flex-direction: row-reverse;
}
section.drama-sub-club-block:nth-of-type(2n) {
flex-direction: row;
}
.block-text-container {
width: 50%;
}
.drama-sub-club-block-image>img {
height: 70vh;
flex-grow: 1;
}
.drama-sub-club-block-image {
display: flex;
flex-direction: column;
height: auto;
width: 50%;
}
}
@media screen and (min-width:1200px) {
.drama-sub-club-title-wrapper {
font-size: min(18vw, 6rem);
padding-inline: min(4vw, 90px);
font-weight: 700;
}
.block-text-container {
width: 65%;
}
.drama-sub-club-block-image {
width: 35%;
}
}
/* Adjustments */
.main-image-adjustments {
object-position: top;
}
.drama-sub-club-block:nth-of-type(1) .drama-sub-club-block-image .drama-sub-club-image {
object-position: -50px 0px;
}
@media screen and (min-width:400px) {
.drama-sub-club-block:nth-of-type(1) .drama-sub-club-block-image .drama-sub-club-image {
object-position: 0px 0px;
}
}
/* Adjustments end */
/*elminating glassmorphic effect and decentering the title */
.drama-sub-club-title-wrapper {
padding: 0;
box-shadow: none;
background: none;
left: 0;
-webkit-backdrop-filter: blur(0px);
backdrop-filter: blur(0px);
display: flex;
flex-direction: row;
gap: min(3vw, 10px);
/*flex-wrap: wrap;
justify-content: center; */
}
@media screen and (min-width:768px) {
.drama-sub-club-main {
display: flex;
flex-direction: row;
align-items: center;
}
.drama-sub-club-title {
width: 30%;
position: static;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.drama-sub-club-title-wrapper {
display: block;
}
} | src/components/Drama/Drama.css |
.drama-sub-club-main {
position: relative;
}
.drama-sub-club-title {
position: absolute;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.drama-sub-club-main-image {
height: 100vh;
}
.drama-sub-club-image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
overflow: hidden;
}
.drama-sub-club-block {
display: flex;
flex-direction: column;
}
.block-text-container {
min-height: 70vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: min(5vw, 120px);
}
.drama-sub-club-header {
inline-size: min(500px, 80%);
}
.block-text-wrapper {
width: min(700px, 90%);
}
.drama-sub-club-block-content {
margin-top: min(2vh, 15px);
}
.drama-sub-club-block-image {
overflow: hidden;
height: 100vh;
}
/* layouts end */
/* Font sizes, colors and friends*/
::-webkit-scrollbar {
width: 3px;
}
::-webkit-scrollbar-track {
background-color: #333;
}
::-webkit-scrollbar-thumb {
background-color: aliceblue;
}
.drama-sub-club-main {
background-color: #aa3030;
}
.first-half-color {
color: white;
}
.second-half-color {
color: white;
}
.drama-sub-club-title {
font-weight: 500;
}
.drama-sub-club-title-wrapper {
font-size: min(15vw, 5rem);
padding: min(15vh, 150px) min(1vw, 90px);
font-weight: 700;
border-radius: 4vw;
/* Shadows */
box-shadow: 2px 1px 4px 2px rgba(0, 0, 0, 0.42);
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.25));
left: 0;
-webkit-backdrop-filter: blur(5px);
backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
.drama-sub-club-title-box{
background-color: #aa3030;
padding: min(4vw, 20px) min(6vw, 20px);
margin: 0 0;
}
}
section.drama-sub-club-block {
background-color: #ff9683;
color: #000000;
}
section.drama-sub-club-block:nth-of-type(2n) {
background-color: #cf514c;
color: #FFFFFF;
}
.drama-sub-club-header {
font-size: min(2.2rem, 8vw);
font-weight: 350;
}
.drama-sub-club-block-content {
font-size: min(1.4rem, 5vw);
font-weight: lighter;
}
/* Font sizes, colors end*/
@media screen and (min-width:768px) {
.drama-sub-club-main {
display: flex;
flex-direction: column;
}
.drama-sub-club-title {
right: 20%;
}
.drama-sub-club-title-wrapper {
padding-inline: min(1vw, 10px);
}
.drama-sub-club-main-image {
width: 70%;
align-self: flex-end;
}
section.drama-sub-club-block {
flex-direction: row-reverse;
}
section.drama-sub-club-block:nth-of-type(2n) {
flex-direction: row;
}
.block-text-container {
width: 50%;
}
.drama-sub-club-block-image>img {
height: 70vh;
flex-grow: 1;
}
.drama-sub-club-block-image {
display: flex;
flex-direction: column;
height: auto;
width: 50%;
}
}
@media screen and (min-width:1200px) {
.drama-sub-club-title-wrapper {
font-size: min(18vw, 6rem);
padding-inline: min(4vw, 90px);
font-weight: 700;
}
.block-text-container {
width: 65%;
}
.drama-sub-club-block-image {
width: 35%;
}
}
/* Adjustments */
.main-image-adjustments {
object-position: top;
}
.drama-sub-club-block:nth-of-type(1) .drama-sub-club-block-image .drama-sub-club-image {
object-position: -50px 0px;
}
@media screen and (min-width:400px) {
.drama-sub-club-block:nth-of-type(1) .drama-sub-club-block-image .drama-sub-club-image {
object-position: 0px 0px;
}
}
/* Adjustments end */
/*elminating glassmorphic effect and decentering the title */
.drama-sub-club-title-wrapper {
padding: 0;
box-shadow: none;
background: none;
left: 0;
-webkit-backdrop-filter: blur(0px);
backdrop-filter: blur(0px);
display: flex;
flex-direction: row;
gap: min(3vw, 10px);
/*flex-wrap: wrap;
justify-content: center; */
}
@media screen and (min-width:768px) {
.drama-sub-club-main {
display: flex;
flex-direction: row;
align-items: center;
}
.drama-sub-club-title {
width: 30%;
position: static;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.drama-sub-club-title-wrapper {
display: block;
}
} | 0.417153 | 0.125574 |
:root {
/* 主色 */
--b3-theme-primary: #22BCF2;
--b3-theme-primary-light: #2A74DB;
--b3-theme-primary-lighter: #1e6661;
--b3-theme-primary-lightest: #2b2e4996;
--b3-theme-secondary: #fff7cd;
--b3-theme-background: #1e1e1e;
--b3-theme-background-light: #1e1e1e;
--b3-theme-surface: #1e1e1e;
--b3-theme-error: #d23f31;
/* 文字颜色 */
--b3-theme-on-primary: #fff;
--b3-theme-on-secondary: #fff;
--b3-theme-on-background: #c9d1d9;
--b3-theme-on-surface: #9aa0a6;
--b3-theme-on-error: #fff;
/* 字体 */
--b3-font-family: 'HarmonyOS', 'Helvetica Neue', 'Luxi Sans', 'DejaVu Sans', 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'Win11 Emoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols';
--b3-font-family-code: 'FiraCode', mononoki, Consolas, 'Liberation Mono', Menlo, Courier, monospace, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols';
--b3-font-family-graph: mononoki;
--b3-font-family-math: KaTeX_Math;
/* 线条 */
/* --b3-border-color: #363f49; */
/* --b3-border-color: rgba(230, 230, 230, .08); */
--b3-border-color: #1e1e1e;
/* 滚动条 */
--b3-scroll-color: #0a546e;
/* 列表 */
--b3-list-hover: rgba(230, 230, 230, 0.05);
/* 页签 */
--b3-tab-background: #0b0c0d;
--b3-tab-background-hover: #25294e;
/* 菜单 */
--b3-menu-background: #0b0c0d;
/* 提示 */
--b3-tooltips-color: #0067ac;
/* 卡片背景 */
--b3-card-error-color: rgb(243, 153, 147);
--b3-card-error-background: #cc352d3d;
--b3-card-warning-color: rgb(255, 213, 153);
--b3-card-warning-background: #be8b585d;
--b3-card-info-color: rgb(166, 213, 250);
--b3-card-info-background: rgba(0, 153, 255, 0.288);
--b3-card-success-color: rgb(183, 223, 185);
--b3-card-success-background: #85d0a34d;
/* 自定义文字 */
--b3-font-color1: var(--b3-card-error-color);
--b3-font-color2: var(--b3-card-warning-color);
--b3-font-color3: #7ac4ff;
--b3-font-color4: #9bfbb7;
--b3-font-color5: var(--b3-theme-on-surface);
--b3-font-color6: #6cf9ee;
--b3-font-color7: var(--b3-theme-secondary);
--b3-font-color8: #eb5042;
--b3-font-color9: #899fff;
--b3-font-color10: #ca98ff;
--b3-font-color11: #18fbc6;
--b3-font-color12: #f5822e;
--b3-font-color13: var(--b3-theme-background);
--b3-font-background1: #ff8f89c9;
--b3-font-background2: #ffd599c0;
--b3-font-background3: rgba(54, 171, 248, 0.521);
--b3-font-background4: #8fe7b277;
--b3-font-background5: #6f8ca38f;
--b3-font-background6: #09a1b873;
--b3-font-background7: #f3a82fbd;
--b3-font-background8: #eb5042d3;
--b3-font-background9: #5667bb9d;
--b3-font-background10: #9164bb83;
--b3-font-background11: #00ffe562;
--b3-font-background12: #f5812ece;
--b3-font-background13: var(--b3-theme-on-background);
/* PDF */
--b3-pdf-sidebar-width: 200px;
--b3-pdf-offset: 0;
--b3-pdf-background1: #f4eba3;
--b3-pdf-background2: #9af997;
--b3-pdf-background3: #59c6ff;
--b3-pdf-background4: #fd7472;
--b3-pdf-background5: #faad14;
--b3-pdf-background6: #b9b7b7;
--b3-pdf-background7: #52d4ca;
/* 动画效果 */
--b3-transition: all 0.15s cubic-bezier(0, 0, 0.2, 1) 0ms;
/* 阴影 */
--b3-point-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
--b3-dialog-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.4);
/* diff */
--b3-diff-add: #133a1c;
--b3-diff-add-surface: #28853e;
--b3-diff-del: #440c10;
--b3-diff-del-surface: #b1202d;
/* 图表颜色 */
--b3-graph-p-point: #076f7e;
--b3-graph-heading-point: #9876aa;
--b3-graph-math-point: #80ffa5;
--b3-graph-code-point: #00ddff;
--b3-graph-table-point: #37a2ff;
--b3-graph-list-point: #ff0087;
--b3-graph-todo-point: #ffbf00;
--b3-graph-olist-point: #b3005f;
--b3-graph-listitem-point: #f65b00;
--b3-graph-bq-point: #8d48e3;
--b3-graph-super-point: #dd79ff;
--b3-graph-doc-point: #e8eaed;
--b3-graph-tag-point: #dbf32f;
--b3-graph-asset-point: #05c091;
--b3-graph-line: #9aa0a6;
--b3-graph-ref-line: #d23f31;
--b3-graph-tag-line: #5f6b06;
--b3-graph-tag-tag-line: #dbf32f;
--b3-graph-asset-line: #037457;
--b3-graph-hl-point: #f3a92f;
--b3-graph-hl-line: #4285f4;
/* 分隔线搜索颜色 */
--b3-protyle-search-background: #32593c;
--b3-protyle-search-border-color: #486a51;
--b3-protyle-search-current-background: #204282;
/* 代码片段背景 */
--b3-protyle-code-background: #1e1e1e;
/* 所见即所得行内元素颜色 */
--b3-protyle-inline-strong-color: #e8eaed;
--b3-protyle-inline-em-color: #e8eaed;
--b3-protyle-inline-s-color: #c9d1d991;
--b3-protyle-inline-link-color: #57a2d4;
--b3-protyle-inline-link-hover-color: #2acdff;
--b3-protyle-inline-mark-background: #4b817c;
--b3-protyle-inline-mark-color: #cdd1d6;
--b3-protyle-inline-tag-background: #65c8eccc;
--b3-protyle-inline-tag-color: #f8f9fa;
--b3-protyle-inline-code-color: #b9bcbc;
--b3-protyle-inline-code-background: #225764;
--b3-protyle-inline-blockref-color: #31c8ff;
--b3-protyle-inline-blockref-hover-color: #22BCF2;
--blockquote-border-color: #6d9a9a;
/* 表格 */
--b3-table-border-color: #313d49;
--b3-table-th-color: #13242c;
--b3-table-trn-color: #222d38;
--b3-table-tr2n-color: #1a2734;
/* 高亮 */
--b3-menu-highlight-color: #2b6969f1;
--b3-menu-highlight-focus-color: #2b6969f1;
/* 文件树背景高亮颜色 */
--b3-menu-highlight-background: #293241;
--b3-tab-custom-background: #19232c;
/* 标题颜色 */
--custom-h1-color: #f8f9fa;
--custom-h2-color: #0070c0;
--custom-h3-color: #0064ac;
--custom-h4-color: #004b81;
--custom-h5-color: #4c728d;
--custom-h6-color: #768794;
} | css_module/base.css | :root {
/* 主色 */
--b3-theme-primary: #22BCF2;
--b3-theme-primary-light: #2A74DB;
--b3-theme-primary-lighter: #1e6661;
--b3-theme-primary-lightest: #2b2e4996;
--b3-theme-secondary: #fff7cd;
--b3-theme-background: #1e1e1e;
--b3-theme-background-light: #1e1e1e;
--b3-theme-surface: #1e1e1e;
--b3-theme-error: #d23f31;
/* 文字颜色 */
--b3-theme-on-primary: #fff;
--b3-theme-on-secondary: #fff;
--b3-theme-on-background: #c9d1d9;
--b3-theme-on-surface: #9aa0a6;
--b3-theme-on-error: #fff;
/* 字体 */
--b3-font-family: 'HarmonyOS', 'Helvetica Neue', 'Luxi Sans', 'DejaVu Sans', 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'Win11 Emoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols';
--b3-font-family-code: 'FiraCode', mononoki, Consolas, 'Liberation Mono', Menlo, Courier, monospace, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols';
--b3-font-family-graph: mononoki;
--b3-font-family-math: KaTeX_Math;
/* 线条 */
/* --b3-border-color: #363f49; */
/* --b3-border-color: rgba(230, 230, 230, .08); */
--b3-border-color: #1e1e1e;
/* 滚动条 */
--b3-scroll-color: #0a546e;
/* 列表 */
--b3-list-hover: rgba(230, 230, 230, 0.05);
/* 页签 */
--b3-tab-background: #0b0c0d;
--b3-tab-background-hover: #25294e;
/* 菜单 */
--b3-menu-background: #0b0c0d;
/* 提示 */
--b3-tooltips-color: #0067ac;
/* 卡片背景 */
--b3-card-error-color: rgb(243, 153, 147);
--b3-card-error-background: #cc352d3d;
--b3-card-warning-color: rgb(255, 213, 153);
--b3-card-warning-background: #be8b585d;
--b3-card-info-color: rgb(166, 213, 250);
--b3-card-info-background: rgba(0, 153, 255, 0.288);
--b3-card-success-color: rgb(183, 223, 185);
--b3-card-success-background: #85d0a34d;
/* 自定义文字 */
--b3-font-color1: var(--b3-card-error-color);
--b3-font-color2: var(--b3-card-warning-color);
--b3-font-color3: #7ac4ff;
--b3-font-color4: #9bfbb7;
--b3-font-color5: var(--b3-theme-on-surface);
--b3-font-color6: #6cf9ee;
--b3-font-color7: var(--b3-theme-secondary);
--b3-font-color8: #eb5042;
--b3-font-color9: #899fff;
--b3-font-color10: #ca98ff;
--b3-font-color11: #18fbc6;
--b3-font-color12: #f5822e;
--b3-font-color13: var(--b3-theme-background);
--b3-font-background1: #ff8f89c9;
--b3-font-background2: #ffd599c0;
--b3-font-background3: rgba(54, 171, 248, 0.521);
--b3-font-background4: #8fe7b277;
--b3-font-background5: #6f8ca38f;
--b3-font-background6: #09a1b873;
--b3-font-background7: #f3a82fbd;
--b3-font-background8: #eb5042d3;
--b3-font-background9: #5667bb9d;
--b3-font-background10: #9164bb83;
--b3-font-background11: #00ffe562;
--b3-font-background12: #f5812ece;
--b3-font-background13: var(--b3-theme-on-background);
/* PDF */
--b3-pdf-sidebar-width: 200px;
--b3-pdf-offset: 0;
--b3-pdf-background1: #f4eba3;
--b3-pdf-background2: #9af997;
--b3-pdf-background3: #59c6ff;
--b3-pdf-background4: #fd7472;
--b3-pdf-background5: #faad14;
--b3-pdf-background6: #b9b7b7;
--b3-pdf-background7: #52d4ca;
/* 动画效果 */
--b3-transition: all 0.15s cubic-bezier(0, 0, 0.2, 1) 0ms;
/* 阴影 */
--b3-point-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
--b3-dialog-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.4);
/* diff */
--b3-diff-add: #133a1c;
--b3-diff-add-surface: #28853e;
--b3-diff-del: #440c10;
--b3-diff-del-surface: #b1202d;
/* 图表颜色 */
--b3-graph-p-point: #076f7e;
--b3-graph-heading-point: #9876aa;
--b3-graph-math-point: #80ffa5;
--b3-graph-code-point: #00ddff;
--b3-graph-table-point: #37a2ff;
--b3-graph-list-point: #ff0087;
--b3-graph-todo-point: #ffbf00;
--b3-graph-olist-point: #b3005f;
--b3-graph-listitem-point: #f65b00;
--b3-graph-bq-point: #8d48e3;
--b3-graph-super-point: #dd79ff;
--b3-graph-doc-point: #e8eaed;
--b3-graph-tag-point: #dbf32f;
--b3-graph-asset-point: #05c091;
--b3-graph-line: #9aa0a6;
--b3-graph-ref-line: #d23f31;
--b3-graph-tag-line: #5f6b06;
--b3-graph-tag-tag-line: #dbf32f;
--b3-graph-asset-line: #037457;
--b3-graph-hl-point: #f3a92f;
--b3-graph-hl-line: #4285f4;
/* 分隔线搜索颜色 */
--b3-protyle-search-background: #32593c;
--b3-protyle-search-border-color: #486a51;
--b3-protyle-search-current-background: #204282;
/* 代码片段背景 */
--b3-protyle-code-background: #1e1e1e;
/* 所见即所得行内元素颜色 */
--b3-protyle-inline-strong-color: #e8eaed;
--b3-protyle-inline-em-color: #e8eaed;
--b3-protyle-inline-s-color: #c9d1d991;
--b3-protyle-inline-link-color: #57a2d4;
--b3-protyle-inline-link-hover-color: #2acdff;
--b3-protyle-inline-mark-background: #4b817c;
--b3-protyle-inline-mark-color: #cdd1d6;
--b3-protyle-inline-tag-background: #65c8eccc;
--b3-protyle-inline-tag-color: #f8f9fa;
--b3-protyle-inline-code-color: #b9bcbc;
--b3-protyle-inline-code-background: #225764;
--b3-protyle-inline-blockref-color: #31c8ff;
--b3-protyle-inline-blockref-hover-color: #22BCF2;
--blockquote-border-color: #6d9a9a;
/* 表格 */
--b3-table-border-color: #313d49;
--b3-table-th-color: #13242c;
--b3-table-trn-color: #222d38;
--b3-table-tr2n-color: #1a2734;
/* 高亮 */
--b3-menu-highlight-color: #2b6969f1;
--b3-menu-highlight-focus-color: #2b6969f1;
/* 文件树背景高亮颜色 */
--b3-menu-highlight-background: #293241;
--b3-tab-custom-background: #19232c;
/* 标题颜色 */
--custom-h1-color: #f8f9fa;
--custom-h2-color: #0070c0;
--custom-h3-color: #0064ac;
--custom-h4-color: #004b81;
--custom-h5-color: #4c728d;
--custom-h6-color: #768794;
} | 0.220342 | 0.090414 |
body, html {
height: 10000px;
overflow-x: hidden !important; }
}
#canvas{
width:1920px;
height:1000px;
margin:0 auto;
position:relative;
cursor:url(https://img.pokemondb.net/sprites/black-white/anim/normal/alomomola.gif), auto;
}
#counter{
display: none;
}
#popup {
width:300px;
height: 150px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup1 10s infinite;
}
@keyframes popup1
{ 0% {left:50px; top:200px;}
25% {left:50px; top:150px;}
50% {left: 50px; top: 200px;}
75% {left:50px; top: 150px;}
100% {left:50px; top:200px;}
}
.intro{
top: 800px;
left: 0px;
position: absolute;
text-align: center;
height:200px;
width: 1920px;
background-color:white;
display: flex;
}
p.molaintro{
font-size: 120px;
font-family: 'Chela One', cursive;
margin-left: 190px;
}
p.molasubintro{
font-size: 40px;
margin-top: 10px;
text-align: center;
font-family: 'Oswald', sans-serif;
}
.parallax1 {
/* The image used */
background-image: url('../img/start.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.parallax2 {
/* The image used */
background-image: url('../img/mola sun bathing.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.parallax2{
animation: wavey 15s infinite;
}
@keyframes wavey
{ 0% {background-position: 20% 20%;}
25% {background-position: 80% 80%;}
50% {background-position: 20% 20%;}
75% {background-position: 80% 80%;}
100% { background-position: 20% 20%;}
}
.panel1{
top: 1900px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle1{
font-size: 120px;
margin-left: 275px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext1{
font-size: 20px;
text-align: center;
margin-top: 35px;
font-family: 'Oswald', sans-serif;
}
#popup2 {
width:300px;
height: 150px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup2 10s infinite;
}
@keyframes popup2
{ 0% {left:1510px; top:1200px;}
25% {left:1510px; top:1150px;}
50% {left: 1510px; top: 1200px;}
75% {left:1510px; top: 1150px;}
100% {left:1510px; top:1200px;}
}
.parallax3 {
/* The image used */
background-image: url('../img/baby mola.jpeg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.panel2{
top: 3000px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle2{
font-size: 120px;
margin-left: 500px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext2{
font-size: 20px;
text-align: center;
margin-top: 35px;
font-family: 'Oswald', sans-serif;
}
#popup3 {
width:300px;
height: 150px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup3 10s infinite;
}
@keyframes popup3
{ 0% {left:50px; top:2200px;}
25% {left:50px; top:2150px;}
50% {left: 50px; top: 2200px;}
75% {left:50px; top: 2150px;}
100% {left:50px; top:2200px;}
}
.parallax4 {
/* The image used */
background-image: url('../img/sea lion eating mola.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.panel3{
top: 4000px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle3{
font-size: 120px;
margin-left: 400px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext3{
font-size: 20px;
text-align: center;
margin-top: 35px;
font-family: 'Oswald', sans-serif;
}
#popup4 {
width:300px;
height: 100px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup4 10s infinite;
}
@keyframes popup4
{ 0% {left:1510px; top:3700px;}
25% {left:1510px; top:3750px;}
50% {left: 1510px; top: 3700px;}
75% {left:1510px; top: 3750px;}
100% {left:1510px; top:3700px;}
}
.parallax5 {
/* The image used */
background-image: url('../img/closeup mola.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.parallax5{
animation: side 15s infinite;
}
@keyframes side
{ 0% {background-position: 80% 20%;}
25% {background-position: 20% 80%;}
50% {background-position: 80% 20%;}
75% {background-position: 20% 80%;}
100% { background-position: 80% 20%;}
}
.panel4{
top: 5000px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle4{
font-size: 120px;
margin-left: 400px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext4{
font-size: 20px;
text-align: center;
margin-top: 35px;
font-family: 'Oswald', sans-serif;
}
#popup5 {
width:300px;
height: 100px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup5 10s infinite;
}
@keyframes popup5
{ 0% {left:50px; top:4500px;}
25% {left:50px; top:4550px;}
50% {left: 50px; top: 4500px;}
75% {left:50px; top: 4550px;}
100% {left:50px; top:4500px;}
}
.parallax6 {
/* The image used */
background-image: url('../img/manridingmola.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: top;
background-repeat: no-repeat;
background-size: cover;
}
.panel5{
top: 6000px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle5{
font-size: 120px;
margin-left: 400px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext5{
font-size: 25px;
font-weight: bolder;
text-align: center;
margin-top: 25px;
font-family: 'Oswald', sans-serif;
}
#popup6 {
width:300px;
height: 100px;
background-color: red;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup6 2s infinite;
}
@keyframes popup6
{ 0% {left:1510px; top:5700px;}
25% {left:1510px; top:5750px;}
50% {left: 1510px; top: 5700px;}
75% {left:1510px; top: 5750px;}
100% {left:1510px; top:5700px;}
}
.parallax7 {
/* The image used */
background-image: url('../img/historicalmola.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: bottom;
background-repeat: no-repeat;
background-size: cover;
}
.panel6{
top: 7000px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle6{
font-size: 120px;
margin-left: 450px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext6{
font-size: 20px;
text-align: center;
margin-top: 15px;
font-family: 'Oswald', sans-serif;
}
#popup7 {
width:300px;
height: 100px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup7 10s infinite;
}
@keyframes popup7
{ 0% {left:50px; top:6500px;}
25% {left:50px; top:6550px;}
50% {left: 50px; top: 6500px;}
75% {left:50px; top: 6550px;}
100% {left:50px; top:6500px;}
}
.parallax8 {
/* The image used */
background-image: url('../img/parasiteonmola.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.panel7{
top: 8000px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle7{
font-size: 120px;
margin-left: 500px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext7{
font-size: 20px;
text-align: center;
margin-top: 15px;
font-family: 'Oswald', sans-serif;
}
#popup8 {
width:300px;
height: 100px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup8 4s infinite;
}
@keyframes popup8
{ 0% {left:1510px; top:7700px;}
25% {left:1510px; top:7750px;}
50% {left: 1510px; top: 7700px;}
75% {left:1510px; top: 7750px;}
100% {left:1510px; top:7700px;}
}
.parallax9 {
/* The image used */
background-image: url('../img/molaparasites.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: top;
background-repeat: no-repeat;
background-size: cover;
}
.panel8{
top: 9000px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle8{
font-size: 100px;
margin-left: 550px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext8{
font-size: 20px;
text-align: center;
margin-top: 15px;
font-family: 'Oswald', sans-serif;
}
#popup9 {
width:300px;
height: 100px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup9 10s infinite;
}
@keyframes popup9
{ 0% {left:50px; top:8500px;}
25% {left:50px; top:8550px;}
50% {left: 50px; top: 8500px;}
75% {left:50px; top: 8550px;}
100% {left:50px; top:8500px;}
}
.parallax10 {
/* The image used */
background-image: url('../img/molagame.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: bottom;
background-repeat: no-repeat;
background-size: cover;
}
.panel9{
top: 10000px;
left: 0px;
position: absolute;
height:100px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle9{
font-size: 80px;
margin-left: 600px;
margin-bottom: 50px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext9{
font-size: 20px;
text-align: center;
margin-top: 15px;
font-family: 'Oswald', sans-serif;
}
#popup10 {
width:300px;
height: 100px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup10 10s infinite;
}
@keyframes popup10
{ 0% {left:1575px; top:9700px;}
25% {left:1575px; top:9750px;}
50% {left: 1575px; top: 9700px;}
75% {left:1575px; top: 9750px;}
100% {left:1575px; top:9700px;}
}
/* relative, absolute, fixed, static
http://www.barelyfitz.com/screencast/html-training/css/positioning/
http://jsbin.com/yicata/2/
*/ | css/app.css | body, html {
height: 10000px;
overflow-x: hidden !important; }
}
#canvas{
width:1920px;
height:1000px;
margin:0 auto;
position:relative;
cursor:url(https://img.pokemondb.net/sprites/black-white/anim/normal/alomomola.gif), auto;
}
#counter{
display: none;
}
#popup {
width:300px;
height: 150px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup1 10s infinite;
}
@keyframes popup1
{ 0% {left:50px; top:200px;}
25% {left:50px; top:150px;}
50% {left: 50px; top: 200px;}
75% {left:50px; top: 150px;}
100% {left:50px; top:200px;}
}
.intro{
top: 800px;
left: 0px;
position: absolute;
text-align: center;
height:200px;
width: 1920px;
background-color:white;
display: flex;
}
p.molaintro{
font-size: 120px;
font-family: 'Chela One', cursive;
margin-left: 190px;
}
p.molasubintro{
font-size: 40px;
margin-top: 10px;
text-align: center;
font-family: 'Oswald', sans-serif;
}
.parallax1 {
/* The image used */
background-image: url('../img/start.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.parallax2 {
/* The image used */
background-image: url('../img/mola sun bathing.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.parallax2{
animation: wavey 15s infinite;
}
@keyframes wavey
{ 0% {background-position: 20% 20%;}
25% {background-position: 80% 80%;}
50% {background-position: 20% 20%;}
75% {background-position: 80% 80%;}
100% { background-position: 20% 20%;}
}
.panel1{
top: 1900px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle1{
font-size: 120px;
margin-left: 275px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext1{
font-size: 20px;
text-align: center;
margin-top: 35px;
font-family: 'Oswald', sans-serif;
}
#popup2 {
width:300px;
height: 150px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup2 10s infinite;
}
@keyframes popup2
{ 0% {left:1510px; top:1200px;}
25% {left:1510px; top:1150px;}
50% {left: 1510px; top: 1200px;}
75% {left:1510px; top: 1150px;}
100% {left:1510px; top:1200px;}
}
.parallax3 {
/* The image used */
background-image: url('../img/baby mola.jpeg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.panel2{
top: 3000px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle2{
font-size: 120px;
margin-left: 500px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext2{
font-size: 20px;
text-align: center;
margin-top: 35px;
font-family: 'Oswald', sans-serif;
}
#popup3 {
width:300px;
height: 150px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup3 10s infinite;
}
@keyframes popup3
{ 0% {left:50px; top:2200px;}
25% {left:50px; top:2150px;}
50% {left: 50px; top: 2200px;}
75% {left:50px; top: 2150px;}
100% {left:50px; top:2200px;}
}
.parallax4 {
/* The image used */
background-image: url('../img/sea lion eating mola.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.panel3{
top: 4000px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle3{
font-size: 120px;
margin-left: 400px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext3{
font-size: 20px;
text-align: center;
margin-top: 35px;
font-family: 'Oswald', sans-serif;
}
#popup4 {
width:300px;
height: 100px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup4 10s infinite;
}
@keyframes popup4
{ 0% {left:1510px; top:3700px;}
25% {left:1510px; top:3750px;}
50% {left: 1510px; top: 3700px;}
75% {left:1510px; top: 3750px;}
100% {left:1510px; top:3700px;}
}
.parallax5 {
/* The image used */
background-image: url('../img/closeup mola.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.parallax5{
animation: side 15s infinite;
}
@keyframes side
{ 0% {background-position: 80% 20%;}
25% {background-position: 20% 80%;}
50% {background-position: 80% 20%;}
75% {background-position: 20% 80%;}
100% { background-position: 80% 20%;}
}
.panel4{
top: 5000px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle4{
font-size: 120px;
margin-left: 400px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext4{
font-size: 20px;
text-align: center;
margin-top: 35px;
font-family: 'Oswald', sans-serif;
}
#popup5 {
width:300px;
height: 100px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup5 10s infinite;
}
@keyframes popup5
{ 0% {left:50px; top:4500px;}
25% {left:50px; top:4550px;}
50% {left: 50px; top: 4500px;}
75% {left:50px; top: 4550px;}
100% {left:50px; top:4500px;}
}
.parallax6 {
/* The image used */
background-image: url('../img/manridingmola.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: top;
background-repeat: no-repeat;
background-size: cover;
}
.panel5{
top: 6000px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle5{
font-size: 120px;
margin-left: 400px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext5{
font-size: 25px;
font-weight: bolder;
text-align: center;
margin-top: 25px;
font-family: 'Oswald', sans-serif;
}
#popup6 {
width:300px;
height: 100px;
background-color: red;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup6 2s infinite;
}
@keyframes popup6
{ 0% {left:1510px; top:5700px;}
25% {left:1510px; top:5750px;}
50% {left: 1510px; top: 5700px;}
75% {left:1510px; top: 5750px;}
100% {left:1510px; top:5700px;}
}
.parallax7 {
/* The image used */
background-image: url('../img/historicalmola.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: bottom;
background-repeat: no-repeat;
background-size: cover;
}
.panel6{
top: 7000px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle6{
font-size: 120px;
margin-left: 450px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext6{
font-size: 20px;
text-align: center;
margin-top: 15px;
font-family: 'Oswald', sans-serif;
}
#popup7 {
width:300px;
height: 100px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup7 10s infinite;
}
@keyframes popup7
{ 0% {left:50px; top:6500px;}
25% {left:50px; top:6550px;}
50% {left: 50px; top: 6500px;}
75% {left:50px; top: 6550px;}
100% {left:50px; top:6500px;}
}
.parallax8 {
/* The image used */
background-image: url('../img/parasiteonmola.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.panel7{
top: 8000px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle7{
font-size: 120px;
margin-left: 500px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext7{
font-size: 20px;
text-align: center;
margin-top: 15px;
font-family: 'Oswald', sans-serif;
}
#popup8 {
width:300px;
height: 100px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup8 4s infinite;
}
@keyframes popup8
{ 0% {left:1510px; top:7700px;}
25% {left:1510px; top:7750px;}
50% {left: 1510px; top: 7700px;}
75% {left:1510px; top: 7750px;}
100% {left:1510px; top:7700px;}
}
.parallax9 {
/* The image used */
background-image: url('../img/molaparasites.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: top;
background-repeat: no-repeat;
background-size: cover;
}
.panel8{
top: 9000px;
left: 0px;
position: absolute;
height:150px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle8{
font-size: 100px;
margin-left: 550px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext8{
font-size: 20px;
text-align: center;
margin-top: 15px;
font-family: 'Oswald', sans-serif;
}
#popup9 {
width:300px;
height: 100px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup9 10s infinite;
}
@keyframes popup9
{ 0% {left:50px; top:8500px;}
25% {left:50px; top:8550px;}
50% {left: 50px; top: 8500px;}
75% {left:50px; top: 8550px;}
100% {left:50px; top:8500px;}
}
.parallax10 {
/* The image used */
background-image: url('../img/molagame.jpg');
/* Full height */
height: 1000px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: bottom;
background-repeat: no-repeat;
background-size: cover;
}
.panel9{
top: 10000px;
left: 0px;
position: absolute;
height:100px;
width: 1920px;
background-color:white;
display: flex;
}
p.molatitle9{
font-size: 80px;
margin-left: 600px;
margin-bottom: 50px;
line-height: 150px;
font-family: 'Chela One', cursive;
}
p.molatext9{
font-size: 20px;
text-align: center;
margin-top: 15px;
font-family: 'Oswald', sans-serif;
}
#popup10 {
width:300px;
height: 100px;
background-color: white;
border:1px solid black;
border-radius: 15px;
position:absolute;
top:200px;
left:50px;
display:block;
transition: .2s ease-in-out;
animation: popup10 10s infinite;
}
@keyframes popup10
{ 0% {left:1575px; top:9700px;}
25% {left:1575px; top:9750px;}
50% {left: 1575px; top: 9700px;}
75% {left:1575px; top: 9750px;}
100% {left:1575px; top:9700px;}
}
/* relative, absolute, fixed, static
http://www.barelyfitz.com/screencast/html-training/css/positioning/
http://jsbin.com/yicata/2/
*/ | 0.389779 | 0.057071 |
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap");
.main-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-pack: distribute;
justify-content: space-around;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 5rem;
background-color: #090b1a;
min-height: 100vh;
padding: 5rem;
}
.main-container .cards-wrapper {
background-color: #1b1938;
max-width: -webkit-max-content;
max-width: -moz-max-content;
max-width: max-content;
margin: auto;
border-radius: 6px;
}
@media (min-width: 767px) {
.main-container .cards-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
}
.image-card {
position: relative;
}
.image-card::before {
position: absolute;
content: "";
inset: 0 0 2px 0;
background-color: rgba(170, 92, 219, 0.5);
border-radius: 6px 6px 0 0;
}
@media (min-width: 767px) {
.image-card::before {
border-radius: 0 6px 6px 0;
inset: 0;
}
}
.image-card .image {
border-radius: 6px 6px 0 0;
width: 100%;
height: 100%;
}
@media (min-width: 767px) {
.image-card .image {
border-radius: 0 6px 6px 0;
}
}
.image-card .desktop-image {
display: none;
}
@media (min-width: 767px) {
.image-card {
max-width: 45rem;
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
}
.stats-card {
padding: 2rem 1rem;
}
.stats-card > * {
max-width: 23rem;
margin: auto;
text-align: center;
}
@media (min-width: 767px) {
.stats-card > * {
max-width: 45rem;
text-align: left;
}
}
@media (min-width: 767px) {
.stats-card {
padding: 4rem 4rem;
}
}
.stats-card .main-heading {
font-size: 2rem;
font-family: "Inter", sans-serif;
font-weight: 700;
color: white;
letter-spacing: 0.1rem;
margin-bottom: 1rem;
}
.stats-card .main-heading .link {
color: #aa5cdb;
}
@media (min-width: 767px) {
.stats-card .main-heading {
font-size: 3.5rem;
}
}
.stats-card .description {
color: rgba(255, 255, 255, 0.75);
font-size: 0.9rem;
font-family: "Lexend Deca", sans-serif;
letter-spacing: 0.1rem;
line-height: 1.6rem;
margin-bottom: 2rem;
}
@media (min-width: 767px) {
.stats-card .description {
font-size: 1.2rem;
padding: 2rem 8rem 0 0;
line-height: 1.7;
}
}
.stats-card .stats-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 1rem;
}
@media (min-width: 767px) {
.stats-card .stats-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: unset;
padding: 3rem 9rem 0 0;
max-width: 45rem;
}
}
.stats-card .stats-container .stats .stats-count {
color: white;
font-size: 1.5rem;
font-family: "Inter", sans-serif;
}
@media (min-width: 767px) {
.stats-card .stats-container .stats .stats-count {
font-size: 2rem;
}
}
.stats-card .stats-container .stats .stats-for {
color: rgba(255, 255, 255, 0.6);
font-family: "Lexend Deca", sans-serif;
text-transform: uppercase;
}
@media (min-width: 767px) {
.stats-card .stats-container .stats .stats-for {
font-size: 1.2rem;
}
}
.attribution {
font-size: 1.5rem;
color: rgba(255, 255, 255, 0.75);
text-align: center;
-ms-flex-line-pack: center;
align-content: center;
}
.attribution .footer-link {
color: #aa5cdb;
}
html {
font-size: 62.5%;
}
*,
*::after,
*::before {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
margin: 0;
}
h1,
h2,
p {
margin: 0;
}
.hide {
display: none;
}
/*# sourceMappingURL=index.css.map */ | styles/index.css | @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap");
.main-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-pack: distribute;
justify-content: space-around;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 5rem;
background-color: #090b1a;
min-height: 100vh;
padding: 5rem;
}
.main-container .cards-wrapper {
background-color: #1b1938;
max-width: -webkit-max-content;
max-width: -moz-max-content;
max-width: max-content;
margin: auto;
border-radius: 6px;
}
@media (min-width: 767px) {
.main-container .cards-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
}
.image-card {
position: relative;
}
.image-card::before {
position: absolute;
content: "";
inset: 0 0 2px 0;
background-color: rgba(170, 92, 219, 0.5);
border-radius: 6px 6px 0 0;
}
@media (min-width: 767px) {
.image-card::before {
border-radius: 0 6px 6px 0;
inset: 0;
}
}
.image-card .image {
border-radius: 6px 6px 0 0;
width: 100%;
height: 100%;
}
@media (min-width: 767px) {
.image-card .image {
border-radius: 0 6px 6px 0;
}
}
.image-card .desktop-image {
display: none;
}
@media (min-width: 767px) {
.image-card {
max-width: 45rem;
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
}
.stats-card {
padding: 2rem 1rem;
}
.stats-card > * {
max-width: 23rem;
margin: auto;
text-align: center;
}
@media (min-width: 767px) {
.stats-card > * {
max-width: 45rem;
text-align: left;
}
}
@media (min-width: 767px) {
.stats-card {
padding: 4rem 4rem;
}
}
.stats-card .main-heading {
font-size: 2rem;
font-family: "Inter", sans-serif;
font-weight: 700;
color: white;
letter-spacing: 0.1rem;
margin-bottom: 1rem;
}
.stats-card .main-heading .link {
color: #aa5cdb;
}
@media (min-width: 767px) {
.stats-card .main-heading {
font-size: 3.5rem;
}
}
.stats-card .description {
color: rgba(255, 255, 255, 0.75);
font-size: 0.9rem;
font-family: "Lexend Deca", sans-serif;
letter-spacing: 0.1rem;
line-height: 1.6rem;
margin-bottom: 2rem;
}
@media (min-width: 767px) {
.stats-card .description {
font-size: 1.2rem;
padding: 2rem 8rem 0 0;
line-height: 1.7;
}
}
.stats-card .stats-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 1rem;
}
@media (min-width: 767px) {
.stats-card .stats-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: unset;
padding: 3rem 9rem 0 0;
max-width: 45rem;
}
}
.stats-card .stats-container .stats .stats-count {
color: white;
font-size: 1.5rem;
font-family: "Inter", sans-serif;
}
@media (min-width: 767px) {
.stats-card .stats-container .stats .stats-count {
font-size: 2rem;
}
}
.stats-card .stats-container .stats .stats-for {
color: rgba(255, 255, 255, 0.6);
font-family: "Lexend Deca", sans-serif;
text-transform: uppercase;
}
@media (min-width: 767px) {
.stats-card .stats-container .stats .stats-for {
font-size: 1.2rem;
}
}
.attribution {
font-size: 1.5rem;
color: rgba(255, 255, 255, 0.75);
text-align: center;
-ms-flex-line-pack: center;
align-content: center;
}
.attribution .footer-link {
color: #aa5cdb;
}
html {
font-size: 62.5%;
}
*,
*::after,
*::before {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
margin: 0;
}
h1,
h2,
p {
margin: 0;
}
.hide {
display: none;
}
/*# sourceMappingURL=index.css.map */ | 0.362405 | 0.061115 |
.chart-viz {
background-color:hsla(270, 30%, 99%, 1);
border-left: solid 1px #ccc;
border-right: solid 1px #ccc;
border-top: solid 1px #ccc;
}
.chart-header {
/* border: solid 1px #ccc; */
border-bottom-width: 0px;
padding: 0px;
}
.chart-header h2 {
text-align: left;
font-family: 'Roboto', sans-serif;
font-size: 1.5em;
font-weight: bold;
padding: 0px;
}
.chart-footer {
background-color:hsla(270, 30%, 99%, 1);
border: solid 1px #ccc;
padding: 5px;
}
.axis text {
font-weight: bold;
font-family: 'Montserrat', sans-serif;
}
.axis-title {
font-size: 14px;
font-weight: bold;
font-family: 'Montserrat', sans-serif;
}
.grid {
stroke-opacity: 0.15;
color:hsla(270, 30%, 50%, 1);
}
.tip-country {
font-weight: bold;
border-bottom: solid 1px black;
}
.tip-details {
font-size: 12px;
}
.text-credits {
opacity: 0.3;
font-weight: bold;
font-size: 12px;
font-family: 'Montserrat', sans-serif;
}
.label-country {
font-size: 10px;
font-weight: bold;
font-family: 'Montserrat', sans-serif;
}
/* == https://rawgit.com/Caged/d3-tip/master/examples/example-styles.css == */
.d3-tip {
line-height: 1;
padding: 4px;
background: rgba(255, 255, 255, 0.9);
color: #000;
border-radius: 2px;
pointer-events: none;
border: solid 1px black;
margin-bottom: 200px;
width: 200px;
text-align: center;
}
/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
box-sizing: border-box;
display: inline;
font-size: 10px;
width: 100%;
line-height: 1;
color: rgba(0, 0, 0, 0.8);
position: absolute;
pointer-events: none;
}
.d3-tip.n:after {
content: "\25BC";
margin: -1px 0 0 0;
top: 100%;
left: 0;
text-align: center;
}
/* Eastward tooltips */
.d3-tip.e:after {
content: "\25C0";
margin: -4px 0 0 0;
top: 50%;
left: -8px;
}
/* Southward tooltips */
.d3-tip.s:after {
content: "\25B2";
margin: 0 0 1px 0;
top: -8px;
left: 0;
text-align: center;
}
/* Westward tooltips */
.d3-tip.w:after {
content: "\25B6";
margin: -4px 0 0 -1px;
top: 50%;
left: 100%;
} | _site/assets/css/css.css | .chart-viz {
background-color:hsla(270, 30%, 99%, 1);
border-left: solid 1px #ccc;
border-right: solid 1px #ccc;
border-top: solid 1px #ccc;
}
.chart-header {
/* border: solid 1px #ccc; */
border-bottom-width: 0px;
padding: 0px;
}
.chart-header h2 {
text-align: left;
font-family: 'Roboto', sans-serif;
font-size: 1.5em;
font-weight: bold;
padding: 0px;
}
.chart-footer {
background-color:hsla(270, 30%, 99%, 1);
border: solid 1px #ccc;
padding: 5px;
}
.axis text {
font-weight: bold;
font-family: 'Montserrat', sans-serif;
}
.axis-title {
font-size: 14px;
font-weight: bold;
font-family: 'Montserrat', sans-serif;
}
.grid {
stroke-opacity: 0.15;
color:hsla(270, 30%, 50%, 1);
}
.tip-country {
font-weight: bold;
border-bottom: solid 1px black;
}
.tip-details {
font-size: 12px;
}
.text-credits {
opacity: 0.3;
font-weight: bold;
font-size: 12px;
font-family: 'Montserrat', sans-serif;
}
.label-country {
font-size: 10px;
font-weight: bold;
font-family: 'Montserrat', sans-serif;
}
/* == https://rawgit.com/Caged/d3-tip/master/examples/example-styles.css == */
.d3-tip {
line-height: 1;
padding: 4px;
background: rgba(255, 255, 255, 0.9);
color: #000;
border-radius: 2px;
pointer-events: none;
border: solid 1px black;
margin-bottom: 200px;
width: 200px;
text-align: center;
}
/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
box-sizing: border-box;
display: inline;
font-size: 10px;
width: 100%;
line-height: 1;
color: rgba(0, 0, 0, 0.8);
position: absolute;
pointer-events: none;
}
.d3-tip.n:after {
content: "\25BC";
margin: -1px 0 0 0;
top: 100%;
left: 0;
text-align: center;
}
/* Eastward tooltips */
.d3-tip.e:after {
content: "\25C0";
margin: -4px 0 0 0;
top: 50%;
left: -8px;
}
/* Southward tooltips */
.d3-tip.s:after {
content: "\25B2";
margin: 0 0 1px 0;
top: -8px;
left: 0;
text-align: center;
}
/* Westward tooltips */
.d3-tip.w:after {
content: "\25B6";
margin: -4px 0 0 -1px;
top: 50%;
left: 100%;
} | 0.433742 | 0.132711 |
body{
margin:0;
padding:0;
}
.logo-header{
/*border:1px solid #680000;*/
width:80px;
height:98%;
}
.logo{
font-family: "Courier New";
font-size: 25px;
font-weight:bold;
margin-top: 9px;
margin-left:9px;
}
div.inner-header{
display:flex;
/*border:1px solid red;*/
height:48px;
width:100%;
margin:0;
/*background-color:#024972;*/
background-color:#fafafa;
}
span.blue{
color:#12458c;
/*font-size:35px;*/
}
.header-container{
width:100%;
margin:0;
border-bottom: 1px solid #ddd;
}
div.search-container{
width:65%;
margin:auto;
height:100%;
/*background-color:#c3d3e0;*/
}
div.ask-questions-container{
margin-left:40px;
margin-right:40px;
/* background-color:#024972;; */
height:95%;
}
div.inner-header div input{
width:100%;
height:80%;
margin-top:5px;
}
div.nav-rightSide{
display:flex;
width:30%;
/*border:5px solid green;*/
margin-left:20px;
}
div.tools-container{
margin-right:70px;
width:120px;
/*background-color:#a9bdcc;*/
height:95%;
}
span#tools-icon:after{
position:relative;
bottom:30px;
left:84px;
content: "\f0ad";
font-family: FontAwesome;
font-size:20px;
}
/*input#tools{
padding-right:12px;
}*/
div.sign-up-container{
margin-right:23px;
width:100px;
/* height:20px;*/
margin-top:7px;
border: 0px solid #f7f8f9;
/*background-color:#a9bdcc;*/
height:32px;
padding:0;
text-align:center;
line-height:30px;
font-weight:bold;
}
div.login-container{
/*margin-left:auto;*/
margin-right:16px;
width:100px;
/*background-color:#a9bdcc;*/
height:94%;
padding:0;
text-align: center;
border: 0px solid #f7f8f9;
}
div{
/*border:0px solid #680000;*/
}
input{
border: 0px solid #f7f8f9;
margin: 0 auto;
background-color:#c2cbd1;
/*line-height:25px;*/
color:black;
font-family: Arial, Helvetica, sans-serif;
font-size:14px;
}
a#sign-up-anchor{
display:block;
/*text-align:center;*/
background-color:#c2cbd1;
/*line-height:25px;*/
color:black;
font-family: Arial, Helvetica, sans-serif;
font-size:14px;
text-decoration:none;
width:100%;
height:100%;
}
}
input#search-box{
background-color:white;
border:0.8px solid #b6c9d8;
padding-left:8px;
}
input#tools{
/* background-color:#b6c9d8; */
padding-right:70px;
font-weight:500;
}
div.nav-rightSide input[type="button"]{
font-size:14px;
font-weight:bolder;
}
input#sign-up{
/* background-color:#b6c9d8; */
}
input#login{
/* background-color:#b6c9d8; */
}
/*.connector{
display:block;
border:2px solid black;
margin-top:%;
width:60%;
vertical-align:middle;
}*/
/*login form*/
div.login-box form {border: 3px solid #f1f1f1;
width:300px;
position:relative;
left:72%;}
div.container1 input[type=text], input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
button.login-button1 {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
}
button:hover {
opacity: 0.8;
}
.cancelbtn {
width: auto;
padding: 10px 18px;
background-color: #f44336;
}
.imgcontainer {
text-align: center;
margin: 24px 0 12px 0;
}
img.avatar {
width: 40%;
border-radius: 50%;
}
.container1 {
padding: 16px;
}
span.psw {
float: right;
padding-top: 16px;
}
footer {
position:relative;
bottom:0;
left:0;
width: 100%;
height: 200px;
background-color: black;
color: white;
}
div.footer-content{
display:flex;
}
div .footer-right{
margin-left:50px;
}
ul.info{
line-height:29px;
margin-left: 10px;
list-style-type: none;
}
ol.list{
list-style-type: none;
/*overflow: hidden;
margin: 0;
padding: 0;*/
color: white;
}
/*.list li{float: right;*/
/* padding: 20px;
/* background-color: black;
margin-left: -5px;*/
/* direction: rtl;*/
/* color: white;
}*/
/*a {
color: white;
text-decoration: none;
}*/
/*li:hover{background-color: gray;
opacity: 60;
}
li:hover{text-decoration: underline;}
.cover{
margin-top: -15px;
position: relative;
text-align: center;
color: white;
margin-bottom: 13px;
}*/
.logo-footer{
font-family: "Courier New";
font-size: 25px;
font-weight:bold;
margin-top: 9px;
margin-left:9px;
} | style1.css | body{
margin:0;
padding:0;
}
.logo-header{
/*border:1px solid #680000;*/
width:80px;
height:98%;
}
.logo{
font-family: "Courier New";
font-size: 25px;
font-weight:bold;
margin-top: 9px;
margin-left:9px;
}
div.inner-header{
display:flex;
/*border:1px solid red;*/
height:48px;
width:100%;
margin:0;
/*background-color:#024972;*/
background-color:#fafafa;
}
span.blue{
color:#12458c;
/*font-size:35px;*/
}
.header-container{
width:100%;
margin:0;
border-bottom: 1px solid #ddd;
}
div.search-container{
width:65%;
margin:auto;
height:100%;
/*background-color:#c3d3e0;*/
}
div.ask-questions-container{
margin-left:40px;
margin-right:40px;
/* background-color:#024972;; */
height:95%;
}
div.inner-header div input{
width:100%;
height:80%;
margin-top:5px;
}
div.nav-rightSide{
display:flex;
width:30%;
/*border:5px solid green;*/
margin-left:20px;
}
div.tools-container{
margin-right:70px;
width:120px;
/*background-color:#a9bdcc;*/
height:95%;
}
span#tools-icon:after{
position:relative;
bottom:30px;
left:84px;
content: "\f0ad";
font-family: FontAwesome;
font-size:20px;
}
/*input#tools{
padding-right:12px;
}*/
div.sign-up-container{
margin-right:23px;
width:100px;
/* height:20px;*/
margin-top:7px;
border: 0px solid #f7f8f9;
/*background-color:#a9bdcc;*/
height:32px;
padding:0;
text-align:center;
line-height:30px;
font-weight:bold;
}
div.login-container{
/*margin-left:auto;*/
margin-right:16px;
width:100px;
/*background-color:#a9bdcc;*/
height:94%;
padding:0;
text-align: center;
border: 0px solid #f7f8f9;
}
div{
/*border:0px solid #680000;*/
}
input{
border: 0px solid #f7f8f9;
margin: 0 auto;
background-color:#c2cbd1;
/*line-height:25px;*/
color:black;
font-family: Arial, Helvetica, sans-serif;
font-size:14px;
}
a#sign-up-anchor{
display:block;
/*text-align:center;*/
background-color:#c2cbd1;
/*line-height:25px;*/
color:black;
font-family: Arial, Helvetica, sans-serif;
font-size:14px;
text-decoration:none;
width:100%;
height:100%;
}
}
input#search-box{
background-color:white;
border:0.8px solid #b6c9d8;
padding-left:8px;
}
input#tools{
/* background-color:#b6c9d8; */
padding-right:70px;
font-weight:500;
}
div.nav-rightSide input[type="button"]{
font-size:14px;
font-weight:bolder;
}
input#sign-up{
/* background-color:#b6c9d8; */
}
input#login{
/* background-color:#b6c9d8; */
}
/*.connector{
display:block;
border:2px solid black;
margin-top:%;
width:60%;
vertical-align:middle;
}*/
/*login form*/
div.login-box form {border: 3px solid #f1f1f1;
width:300px;
position:relative;
left:72%;}
div.container1 input[type=text], input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
button.login-button1 {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
}
button:hover {
opacity: 0.8;
}
.cancelbtn {
width: auto;
padding: 10px 18px;
background-color: #f44336;
}
.imgcontainer {
text-align: center;
margin: 24px 0 12px 0;
}
img.avatar {
width: 40%;
border-radius: 50%;
}
.container1 {
padding: 16px;
}
span.psw {
float: right;
padding-top: 16px;
}
footer {
position:relative;
bottom:0;
left:0;
width: 100%;
height: 200px;
background-color: black;
color: white;
}
div.footer-content{
display:flex;
}
div .footer-right{
margin-left:50px;
}
ul.info{
line-height:29px;
margin-left: 10px;
list-style-type: none;
}
ol.list{
list-style-type: none;
/*overflow: hidden;
margin: 0;
padding: 0;*/
color: white;
}
/*.list li{float: right;*/
/* padding: 20px;
/* background-color: black;
margin-left: -5px;*/
/* direction: rtl;*/
/* color: white;
}*/
/*a {
color: white;
text-decoration: none;
}*/
/*li:hover{background-color: gray;
opacity: 60;
}
li:hover{text-decoration: underline;}
.cover{
margin-top: -15px;
position: relative;
text-align: center;
color: white;
margin-bottom: 13px;
}*/
.logo-footer{
font-family: "Courier New";
font-size: 25px;
font-weight:bold;
margin-top: 9px;
margin-left:9px;
} | 0.203075 | 0.044932 |
@font-face {
font-family: "Sen-Bold";
src: url("./assets/fonts/sen/Sen-Bold.woff2") format("woff2"), url("./assets/fonts/sen/Sen-Bold.woff") format("woff");
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "Sen-Regular";
src: url("./assets/fonts/sen/Sen-Regular.woff2") format("woff2"), url("./assets/fonts/sen/Sen-Regular.woff") format("woff");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Source-San-Pro_Bold";
src: url("./assets/fonts/Source-Pro/SourceSansPro-Bold.ttf") format("ttf");
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "pacifico-regular";
src: url("./assets/fonts/pacifico/Pacifico-Regular.ttf") format("ttf");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "playfairdisplay-regular";
src: url("./assets/fonts/playfairdisplay/PlayfairDisplay-Regular.ttf") format("ttf");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "raleway-regular";
src: url("./assets/fonts/raleway/Raleway-Regular.ttf") format("ttf");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "roboto-regular";
src: url("./assets/fonts/roboto/Roboto-Regular.ttf") format("ttf");
font-weight: 400;
font-style: normal;
}
:root {
--bs-blue: #0d6efd;
--bs-indigo: #6610f2;
--bs-purple: #6f42c1;
--bs-pink: #d63384;
--bs-red: #dc3545;
--bs-orange: #fd7e14;
--bs-yellow: #ffc107;
--bs-green: #198754;
--bs-teal: #20c997;
--bs-cyan: #0dcaf0;
--bs-white: #fff;
--bs-gray: #6c757d;
--bs-gray-dark: #343a40;
--bs-gray-100: #f8f9fa;
--bs-gray-200: #e9ecef;
--bs-gray-300: #dee2e6;
--bs-gray-400: #ced4da;
--bs-gray-500: #adb5bd;
--bs-gray-600: #6c757d;
--bs-gray-700: #495057;
--bs-gray-800: #343a40;
--bs-gray-900: #212529;
--bs-primary: #0d6efd;
--bs-secondary: #6c757d;
--bs-success: #198754;
--bs-info: #0dcaf0;
--bs-warning: #ffc107;
--bs-danger: #dc3545;
--bs-light: #f8f9fa;
--bs-dark: #212529;
--bs-primary-rgb: 13, 110, 253;
--bs-secondary-rgb: 108, 117, 125;
--bs-success-rgb: 25, 135, 84;
--bs-info-rgb: 13, 202, 240;
--bs-warning-rgb: 255, 193, 7;
--bs-danger-rgb: 220, 53, 69;
--bs-light-rgb: 248, 249, 250;
--bs-dark-rgb: 33, 37, 41;
--bs-white-rgb: 255, 255, 255;
--bs-black-rgb: 0, 0, 0;
--bs-body-color-rgb: 33, 37, 41;
--bs-body-bg-rgb: 255, 255, 255;
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
--bs-body-font-family: var(--bs-font-sans-serif);
--bs-body-font-size: 1rem;
--bs-body-font-weight: 400;
--bs-body-line-height: 1.5;
--bs-body-color: #212529;
--bs-body-bg: #fff;
}
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
:root {
scroll-behavior: smooth;
}
}
body {
margin: 0;
font-family: var(--bs-body-font-family);
font-size: var(--bs-body-font-size);
font-weight: var(--bs-body-font-weight);
line-height: var(--bs-body-line-height);
color: var(--bs-body-color);
text-align: var(--bs-body-text-align);
background-color: var(--bs-body-bg);
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
margin: 1rem 0;
color: inherit;
background-color: currentColor;
border: 0;
opacity: 0.25;
}
hr:not([size]) {
height: 1px;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: 0.5rem;
font-weight: 500;
line-height: 1.2;
}
h1 {
font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
h1 {
font-size: 2.5rem;
}
}
h2 {
font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
h2 {
font-size: 2rem;
}
}
h3 {
font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
h3 {
font-size: 1.75rem;
}
}
h4 {
font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
h4 {
font-size: 1.5rem;
}
}
h5 {
font-size: 1.25rem;
}
h6 {
font-size: 1rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
abbr[title],
abbr[data-bs-original-title] {
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
text-decoration-skip-ink: none;
}
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
ol,
ul {
padding-left: 2rem;
}
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0;
}
dt {
font-weight: 700;
}
dd {
margin-bottom: .5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
b,
strong {
font-weight: bolder;
}
small {
font-size: 0.875em;
}
mark {
padding: 0.2em;
background-color: #fcf8e3;
}
sub,
sup {
position: relative;
font-size: 0.75em;
line-height: 0;
vertical-align: baseline;
}
sub {
bottom: -.25em;
}
sup {
top: -.5em;
}
a {
color: #0d6efd;
text-decoration: underline;
}
a:hover {
color: #0a58ca;
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
color: inherit;
text-decoration: none;
}
pre,
code,
kbd,
samp {
font-family: var(--bs-font-monospace);
font-size: 1em;
direction: ltr /* rtl:ignore */;
unicode-bidi: bidi-override;
}
pre {
display: block;
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
font-size: 0.875em;
}
pre code {
font-size: inherit;
color: inherit;
word-break: normal;
}
code {
font-size: 0.875em;
color: #d63384;
word-wrap: break-word;
}
a > code {
color: inherit;
}
kbd {
padding: 0.2rem 0.4rem;
font-size: 0.875em;
color: #fff;
background-color: #212529;
border-radius: 0.2rem;
}
kbd kbd {
padding: 0;
font-size: 1em;
font-weight: 700;
}
figure {
margin: 0 0 1rem;
}
img,
svg {
vertical-align: middle;
}
table {
caption-side: bottom;
border-collapse: collapse;
}
caption {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
color: #6c757d;
text-align: left;
}
th {
text-align: inherit;
text-align: -webkit-match-parent;
}
thead,
tbody,
tfoot,
tr,
td,
th {
border-color: inherit;
border-style: solid;
border-width: 0;
}
label {
display: inline-block;
}
button {
border-radius: 0;
}
button:focus:not(:focus-visible) {
outline: 0;
}
input,
button,
select,
optgroup,
textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
button,
select {
text-transform: none;
}
[role="button"] {
cursor: pointer;
}
select {
word-wrap: normal;
}
select:disabled {
opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
display: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
cursor: pointer;
}
::-moz-focus-inner {
padding: 0;
border-style: none;
}
textarea {
resize: vertical;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
float: left;
width: 100%;
padding: 0;
margin-bottom: 0.5rem;
font-size: calc(1.275rem + 0.3vw);
line-height: inherit;
}
@media (min-width: 1200px) {
legend {
font-size: 1.5rem;
}
}
legend + * {
clear: left;
}
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
padding: 0;
}
::-webkit-inner-spin-button {
height: auto;
}
[type="search"] {
outline-offset: -2px;
-webkit-appearance: textfield;
}
/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
direction: ltr;
}
*/
::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
padding: 0;
}
::file-selector-button {
font: inherit;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
output {
display: inline-block;
}
iframe {
border: 0;
}
summary {
display: list-item;
cursor: pointer;
}
progress {
vertical-align: baseline;
}
[hidden] {
display: none !important;
}
.row {
--bs-gutter-x: 1.5rem;
--bs-gutter-y: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: calc(var(--bs-gutter-y) * -1);
margin-right: calc(var(--bs-gutter-x) * -.5);
margin-left: calc(var(--bs-gutter-x) * -.5);
}
.row > * {
-ms-flex-negative: 0;
flex-shrink: 0;
width: 100%;
max-width: 100%;
padding-right: calc(var(--bs-gutter-x) * .5);
padding-left: calc(var(--bs-gutter-x) * .5);
margin-top: var(--bs-gutter-y);
}
.col {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-1 {
margin-left: 8.33333%;
}
.offset-2 {
margin-left: 16.66667%;
}
.offset-3 {
margin-left: 25%;
}
.offset-4 {
margin-left: 33.33333%;
}
.offset-5 {
margin-left: 41.66667%;
}
.offset-6 {
margin-left: 50%;
}
.offset-7 {
margin-left: 58.33333%;
}
.offset-8 {
margin-left: 66.66667%;
}
.offset-9 {
margin-left: 75%;
}
.offset-10 {
margin-left: 83.33333%;
}
.offset-11 {
margin-left: 91.66667%;
}
.g-0,
.gx-0 {
--bs-gutter-x: 0;
}
.g-0,
.gy-0 {
--bs-gutter-y: 0;
}
.g-1,
.gx-1 {
--bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
--bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
--bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
--bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
--bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
--bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
--bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
--bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
--bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
--bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
.col-sm {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-sm-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-sm-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-sm-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-sm-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-sm-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-sm-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-sm-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-sm-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-sm-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-sm-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-sm-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-sm-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-sm-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-sm-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-sm-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-sm-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-sm-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-sm-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-sm-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-sm-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-sm-0 {
margin-left: 0;
}
.offset-sm-1 {
margin-left: 8.33333%;
}
.offset-sm-2 {
margin-left: 16.66667%;
}
.offset-sm-3 {
margin-left: 25%;
}
.offset-sm-4 {
margin-left: 33.33333%;
}
.offset-sm-5 {
margin-left: 41.66667%;
}
.offset-sm-6 {
margin-left: 50%;
}
.offset-sm-7 {
margin-left: 58.33333%;
}
.offset-sm-8 {
margin-left: 66.66667%;
}
.offset-sm-9 {
margin-left: 75%;
}
.offset-sm-10 {
margin-left: 83.33333%;
}
.offset-sm-11 {
margin-left: 91.66667%;
}
.g-sm-0,
.gx-sm-0 {
--bs-gutter-x: 0;
}
.g-sm-0,
.gy-sm-0 {
--bs-gutter-y: 0;
}
.g-sm-1,
.gx-sm-1 {
--bs-gutter-x: 0.25rem;
}
.g-sm-1,
.gy-sm-1 {
--bs-gutter-y: 0.25rem;
}
.g-sm-2,
.gx-sm-2 {
--bs-gutter-x: 0.5rem;
}
.g-sm-2,
.gy-sm-2 {
--bs-gutter-y: 0.5rem;
}
.g-sm-3,
.gx-sm-3 {
--bs-gutter-x: 1rem;
}
.g-sm-3,
.gy-sm-3 {
--bs-gutter-y: 1rem;
}
.g-sm-4,
.gx-sm-4 {
--bs-gutter-x: 1.5rem;
}
.g-sm-4,
.gy-sm-4 {
--bs-gutter-y: 1.5rem;
}
.g-sm-5,
.gx-sm-5 {
--bs-gutter-x: 3rem;
}
.g-sm-5,
.gy-sm-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 768px) {
.col-md {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-md-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-md-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-md-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-md-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-md-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-md-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-md-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-md-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-md-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-md-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-md-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-md-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-md-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-md-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-md-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-md-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-md-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-md-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-md-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-md-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-md-0 {
margin-left: 0;
}
.offset-md-1 {
margin-left: 8.33333%;
}
.offset-md-2 {
margin-left: 16.66667%;
}
.offset-md-3 {
margin-left: 25%;
}
.offset-md-4 {
margin-left: 33.33333%;
}
.offset-md-5 {
margin-left: 41.66667%;
}
.offset-md-6 {
margin-left: 50%;
}
.offset-md-7 {
margin-left: 58.33333%;
}
.offset-md-8 {
margin-left: 66.66667%;
}
.offset-md-9 {
margin-left: 75%;
}
.offset-md-10 {
margin-left: 83.33333%;
}
.offset-md-11 {
margin-left: 91.66667%;
}
.g-md-0,
.gx-md-0 {
--bs-gutter-x: 0;
}
.g-md-0,
.gy-md-0 {
--bs-gutter-y: 0;
}
.g-md-1,
.gx-md-1 {
--bs-gutter-x: 0.25rem;
}
.g-md-1,
.gy-md-1 {
--bs-gutter-y: 0.25rem;
}
.g-md-2,
.gx-md-2 {
--bs-gutter-x: 0.5rem;
}
.g-md-2,
.gy-md-2 {
--bs-gutter-y: 0.5rem;
}
.g-md-3,
.gx-md-3 {
--bs-gutter-x: 1rem;
}
.g-md-3,
.gy-md-3 {
--bs-gutter-y: 1rem;
}
.g-md-4,
.gx-md-4 {
--bs-gutter-x: 1.5rem;
}
.g-md-4,
.gy-md-4 {
--bs-gutter-y: 1.5rem;
}
.g-md-5,
.gx-md-5 {
--bs-gutter-x: 3rem;
}
.g-md-5,
.gy-md-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 992px) {
.col-lg {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-lg-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-lg-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-lg-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-lg-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-lg-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-lg-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-lg-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-lg-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-lg-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-lg-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-lg-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-lg-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-lg-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-lg-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-lg-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-lg-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-lg-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-lg-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-lg-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-lg-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-lg-0 {
margin-left: 0;
}
.offset-lg-1 {
margin-left: 8.33333%;
}
.offset-lg-2 {
margin-left: 16.66667%;
}
.offset-lg-3 {
margin-left: 25%;
}
.offset-lg-4 {
margin-left: 33.33333%;
}
.offset-lg-5 {
margin-left: 41.66667%;
}
.offset-lg-6 {
margin-left: 50%;
}
.offset-lg-7 {
margin-left: 58.33333%;
}
.offset-lg-8 {
margin-left: 66.66667%;
}
.offset-lg-9 {
margin-left: 75%;
}
.offset-lg-10 {
margin-left: 83.33333%;
}
.offset-lg-11 {
margin-left: 91.66667%;
}
.g-lg-0,
.gx-lg-0 {
--bs-gutter-x: 0;
}
.g-lg-0,
.gy-lg-0 {
--bs-gutter-y: 0;
}
.g-lg-1,
.gx-lg-1 {
--bs-gutter-x: 0.25rem;
}
.g-lg-1,
.gy-lg-1 {
--bs-gutter-y: 0.25rem;
}
.g-lg-2,
.gx-lg-2 {
--bs-gutter-x: 0.5rem;
}
.g-lg-2,
.gy-lg-2 {
--bs-gutter-y: 0.5rem;
}
.g-lg-3,
.gx-lg-3 {
--bs-gutter-x: 1rem;
}
.g-lg-3,
.gy-lg-3 {
--bs-gutter-y: 1rem;
}
.g-lg-4,
.gx-lg-4 {
--bs-gutter-x: 1.5rem;
}
.g-lg-4,
.gy-lg-4 {
--bs-gutter-y: 1.5rem;
}
.g-lg-5,
.gx-lg-5 {
--bs-gutter-x: 3rem;
}
.g-lg-5,
.gy-lg-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1200px) {
.col-xl {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-xl-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-xl-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-xl-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-xl-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-xl-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-xl-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-xl-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xl-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-xl-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-xl-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xl-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-xl-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-xl-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-xl-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-xl-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-xl-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-xl-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-xl-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-xl-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-xl-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-xl-0 {
margin-left: 0;
}
.offset-xl-1 {
margin-left: 8.33333%;
}
.offset-xl-2 {
margin-left: 16.66667%;
}
.offset-xl-3 {
margin-left: 25%;
}
.offset-xl-4 {
margin-left: 33.33333%;
}
.offset-xl-5 {
margin-left: 41.66667%;
}
.offset-xl-6 {
margin-left: 50%;
}
.offset-xl-7 {
margin-left: 58.33333%;
}
.offset-xl-8 {
margin-left: 66.66667%;
}
.offset-xl-9 {
margin-left: 75%;
}
.offset-xl-10 {
margin-left: 83.33333%;
}
.offset-xl-11 {
margin-left: 91.66667%;
}
.g-xl-0,
.gx-xl-0 {
--bs-gutter-x: 0;
}
.g-xl-0,
.gy-xl-0 {
--bs-gutter-y: 0;
}
.g-xl-1,
.gx-xl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xl-1,
.gy-xl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xl-2,
.gx-xl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xl-2,
.gy-xl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xl-3,
.gx-xl-3 {
--bs-gutter-x: 1rem;
}
.g-xl-3,
.gy-xl-3 {
--bs-gutter-y: 1rem;
}
.g-xl-4,
.gx-xl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xl-4,
.gy-xl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xl-5,
.gx-xl-5 {
--bs-gutter-x: 3rem;
}
.g-xl-5,
.gy-xl-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1400px) {
.col-xxl {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-xxl-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-xxl-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-xxl-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-xxl-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-xxl-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-xxl-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-xxl-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xxl-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-xxl-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-xxl-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xxl-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-xxl-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-xxl-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-xxl-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-xxl-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-xxl-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-xxl-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-xxl-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-xxl-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-xxl-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-xxl-0 {
margin-left: 0;
}
.offset-xxl-1 {
margin-left: 8.33333%;
}
.offset-xxl-2 {
margin-left: 16.66667%;
}
.offset-xxl-3 {
margin-left: 25%;
}
.offset-xxl-4 {
margin-left: 33.33333%;
}
.offset-xxl-5 {
margin-left: 41.66667%;
}
.offset-xxl-6 {
margin-left: 50%;
}
.offset-xxl-7 {
margin-left: 58.33333%;
}
.offset-xxl-8 {
margin-left: 66.66667%;
}
.offset-xxl-9 {
margin-left: 75%;
}
.offset-xxl-10 {
margin-left: 83.33333%;
}
.offset-xxl-11 {
margin-left: 91.66667%;
}
.g-xxl-0,
.gx-xxl-0 {
--bs-gutter-x: 0;
}
.g-xxl-0,
.gy-xxl-0 {
--bs-gutter-y: 0;
}
.g-xxl-1,
.gx-xxl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xxl-1,
.gy-xxl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xxl-2,
.gx-xxl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xxl-2,
.gy-xxl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xxl-3,
.gx-xxl-3 {
--bs-gutter-x: 1rem;
}
.g-xxl-3,
.gy-xxl-3 {
--bs-gutter-y: 1rem;
}
.g-xxl-4,
.gx-xxl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xxl-4,
.gy-xxl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xxl-5,
.gx-xxl-5 {
--bs-gutter-x: 3rem;
}
.g-xxl-5,
.gy-xxl-5 {
--bs-gutter-y: 3rem;
}
}
/********************************* Core ******************************/
[data-tooltip] {
position: relative;
display: inline-block;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
[data-tooltip]:before, [data-tooltip]:after {
position: absolute;
visibility: hidden;
opacity: 0;
z-index: 999999;
-webkit-box-sizing: content-box;
box-sizing: content-box;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
[data-tooltip]:before {
content: '';
border: 6px solid transparent;
}
[data-tooltip]:after {
height: 22px;
padding: 11px 11px 0 11px;
font-size: 13px;
line-height: 11px;
content: attr(data-tooltip);
white-space: nowrap;
}
[data-tooltip].simptip-position-top:before {
border-top-color: #323232;
}
[data-tooltip].simptip-position-top:after {
background-color: #323232;
color: #ecf0f1;
}
[data-tooltip].simptip-position-bottom:before {
border-bottom-color: #323232;
}
[data-tooltip].simptip-position-bottom:after {
background-color: #323232;
color: #ecf0f1;
}
[data-tooltip].simptip-position-left:before {
border-left-color: #323232;
}
[data-tooltip].simptip-position-left:after {
background-color: #323232;
color: #ecf0f1;
}
[data-tooltip].simptip-position-right:before {
border-right-color: #323232;
}
[data-tooltip].simptip-position-right:after {
background-color: #323232;
color: #ecf0f1;
}
[data-tooltip].simptip-position-top.half-arrow:before {
border-right: 7px solid #323232;
}
[data-tooltip].simptip-position-bottom.half-arrow:before {
border-right: 7px solid #323232;
}
[data-tooltip]:hover, [data-tooltip]:focus {
background-color: transparent;
}
[data-tooltip]:hover:before, [data-tooltip]:hover:after, [data-tooltip]:focus:before, [data-tooltip]:focus:after {
opacity: 1;
visibility: visible;
}
/******************************* Position ****************************/
.simptip-position-right:before, .simptip-position-left:before, .simptip-position-right:after, .simptip-position-left:after {
bottom: 50%;
}
.simptip-position-right:before, .simptip-position-left:before {
margin-bottom: -5px;
}
.simptip-position-right:after, .simptip-position-left:after {
margin-bottom: -14.66667px;
}
.half-arrow.simptip-position-right:before, .half-arrow.simptip-position-left:before {
bottom: 16px;
border-style: none;
border-top: 7px solid transparent;
}
.simptip-multiline.simptip-position-right:before, .simptip-multiline.simptip-position-left:before, .simptip-multiline.simptip-position-right:after, .simptip-multiline.simptip-position-left:after {
-webkit-transform: translateY(50%);
transform: translateY(50%);
-webkit-filter: blur(0px);
filter: blur(0px);
margin-bottom: 0;
}
.simptip-multiline.simptip-position-right:before, .simptip-multiline.simptip-position-left:before {
margin-bottom: 0;
}
.simptip-multiline.half-arrow.simptip-position-right:before, .simptip-multiline.half-arrow.simptip-position-left:before {
margin-bottom: -2px;
}
.simptip-position-right:before, .simptip-position-right:after {
left: 100%;
}
.simptip-position-right:before {
margin-left: -2px;
}
.simptip-position-right:after {
margin-left: 10px;
}
.simptip-position-right.simptip-movable:before {
margin-left: -10px;
}
.simptip-position-right.simptip-movable:after {
margin-left: 2px;
}
.simptip-position-right.simptip-movable:hover:before, .simptip-position-right.simptip-movable:hover:after {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
.simptip-position-right.simptip-movable.half-arrow:before {
margin-left: -5px;
}
.simptip-position-right.simptip-movable.simptip-multiline:hover:before, .simptip-position-right.simptip-movable.simptip-multiline:hover:after {
-webkit-transform: translate(10px, 50%);
transform: translate(10px, 50%);
}
.simptip-position-right.half-arrow:before {
margin-left: 3px;
border-right: 7px solid #323232;
}
.simptip-position-left:before, .simptip-position-left:after {
right: 100%;
}
.simptip-position-left:before {
margin-right: -2px;
}
.simptip-position-left:after {
margin-right: 10px;
}
.simptip-position-left.simptip-movable:before {
margin-right: -10px;
}
.simptip-position-left.simptip-movable:after {
margin-right: 2px;
}
.simptip-position-left.simptip-movable:hover:before, .simptip-position-left.simptip-movable:hover:after {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
.simptip-position-left.simptip-movable.half-arrow:before {
margin-right: -5px;
}
.simptip-position-left.simptip-movable.simptip-multiline:hover:before, .simptip-position-left.simptip-movable.simptip-multiline:hover:after {
-webkit-transform: translate(-10px, 50%);
transform: translate(-10px, 50%);
}
.simptip-position-left.half-arrow:before {
margin-right: 3px;
border-left: 7px solid #323232;
}
.simptip-position-bottom:before, .simptip-position-top:before, .simptip-position-bottom:after, .simptip-position-top:after {
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.simptip-position-bottom:after, .simptip-position-top:after {
width: auto;
}
.half-arrow.simptip-position-bottom:before, .half-arrow.simptip-position-top:before {
border-style: none;
border-right: 7px solid #323232;
}
.simptip-position-bottom:before, .simptip-position-bottom:after {
top: 100%;
}
.simptip-position-bottom:before {
margin-top: -5px;
}
.simptip-position-bottom:after {
margin-top: 7px;
}
.simptip-position-bottom:hover:before, .simptip-position-bottom:hover:after {
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
.simptip-position-bottom.simptip-movable:before {
margin-top: -15px;
}
.simptip-position-bottom.simptip-movable:after {
margin-top: -3px;
}
.simptip-position-bottom.simptip-movable:hover:before, .simptip-position-bottom.simptip-movable:hover:after {
-webkit-transform: translate(-50%, 10px);
transform: translate(-50%, 10px);
}
.simptip-position-bottom.simptip-movable.half-arrow:before {
margin-top: -10px;
}
.simptip-position-bottom.half-arrow:before {
margin-top: 0;
border-top: 7px solid transparent;
}
.simptip-position-top:before, .simptip-position-top:after {
bottom: 100%;
}
.simptip-position-top:before {
margin-bottom: -5px;
}
.simptip-position-top:after {
margin-bottom: 7px;
}
.simptip-position-top:hover:before, .simptip-position-top:hover:after {
-webkit-transform: translate(-50%, 0px);
transform: translate(-50%, 0px);
}
.simptip-position-top.simptip-movable:before {
margin-bottom: -15px;
}
.simptip-position-top.simptip-movable:after {
margin-bottom: -3px;
}
.simptip-position-top.simptip-movable:hover:before, .simptip-position-top.simptip-movable:hover:after {
-webkit-transform: translate(-50%, -10px);
transform: translate(-50%, -10px);
}
.simptip-position-top.simptip-movable.half-arrow:before {
margin-bottom: -10px;
}
.simptip-position-top.half-arrow:before {
margin-bottom: 0;
border-bottom: 7px solid transparent;
}
/******************************* Features ****************************/
.simptip-movable:before, .simptip-movable:after {
-webkit-transition: all 0.1s linear;
transition: all 0.1s linear;
}
.simptip-smooth:after {
border-radius: 4px;
}
.simptip-fade:before, .simptip-fade:after {
-webkit-transition: opacity 0.2s linear, visibility 0.2s linear;
transition: opacity 0.2s linear, visibility 0.2s linear;
}
.simptip-multiline:after {
height: auto;
width: 150px;
padding: 11px;
line-height: 19px;
white-space: normal;
text-align: left;
}
/**************************** Diverse Colors *************************/
.simptip-success.simptip-position-top:before {
border-top-color: #62c462;
}
.simptip-success.simptip-position-top:after {
background-color: #62c462;
color: #ecf0f1;
}
.simptip-success.simptip-position-bottom:before {
border-bottom-color: #62c462;
}
.simptip-success.simptip-position-bottom:after {
background-color: #62c462;
color: #ecf0f1;
}
.simptip-success.simptip-position-left:before {
border-left-color: #62c462;
}
.simptip-success.simptip-position-left:after {
background-color: #62c462;
color: #ecf0f1;
}
.simptip-success.simptip-position-right:before {
border-right-color: #62c462;
}
.simptip-success.simptip-position-right:after {
background-color: #62c462;
color: #ecf0f1;
}
.simptip-success.simptip-position-top.half-arrow:before {
border-right: 7px solid #62c462;
}
.simptip-success.simptip-position-bottom.half-arrow:before {
border-right: 7px solid #62c462;
}
.simptip-info.simptip-position-top:before {
border-top-color: #5bc0de;
}
.simptip-info.simptip-position-top:after {
background-color: #5bc0de;
color: #ecf0f1;
}
.simptip-info.simptip-position-bottom:before {
border-bottom-color: #5bc0de;
}
.simptip-info.simptip-position-bottom:after {
background-color: #5bc0de;
color: #ecf0f1;
}
.simptip-info.simptip-position-left:before {
border-left-color: #5bc0de;
}
.simptip-info.simptip-position-left:after {
background-color: #5bc0de;
color: #ecf0f1;
}
.simptip-info.simptip-position-right:before {
border-right-color: #5bc0de;
}
.simptip-info.simptip-position-right:after {
background-color: #5bc0de;
color: #ecf0f1;
}
.simptip-info.simptip-position-top.half-arrow:before {
border-right: 7px solid #5bc0de;
}
.simptip-info.simptip-position-bottom.half-arrow:before {
border-right: 7px solid #5bc0de;
}
.simptip-danger.simptip-position-top:before {
border-top-color: #e74c3c;
}
.simptip-danger.simptip-position-top:after {
background-color: #e74c3c;
color: #ecf0f1;
}
.simptip-danger.simptip-position-bottom:before {
border-bottom-color: #e74c3c;
}
.simptip-danger.simptip-position-bottom:after {
background-color: #e74c3c;
color: #ecf0f1;
}
.simptip-danger.simptip-position-left:before {
border-left-color: #e74c3c;
}
.simptip-danger.simptip-position-left:after {
background-color: #e74c3c;
color: #ecf0f1;
}
.simptip-danger.simptip-position-right:before {
border-right-color: #e74c3c;
}
.simptip-danger.simptip-position-right:after {
background-color: #e74c3c;
color: #ecf0f1;
}
.simptip-danger.simptip-position-top.half-arrow:before {
border-right: 7px solid #e74c3c;
}
.simptip-danger.simptip-position-bottom.half-arrow:before {
border-right: 7px solid #e74c3c;
}
.simptip-warning.simptip-position-top:before {
border-top-color: #e67e22;
}
.simptip-warning.simptip-position-top:after {
background-color: #e67e22;
color: #ecf0f1;
}
.simptip-warning.simptip-position-bottom:before {
border-bottom-color: #e67e22;
}
.simptip-warning.simptip-position-bottom:after {
background-color: #e67e22;
color: #ecf0f1;
}
.simptip-warning.simptip-position-left:before {
border-left-color: #e67e22;
}
.simptip-warning.simptip-position-left:after {
background-color: #e67e22;
color: #ecf0f1;
}
.simptip-warning.simptip-position-right:before {
border-right-color: #e67e22;
}
.simptip-warning.simptip-position-right:after {
background-color: #e67e22;
color: #ecf0f1;
}
.simptip-warning.simptip-position-top.half-arrow:before {
border-right: 7px solid #e67e22;
}
.simptip-warning.simptip-position-bottom.half-arrow:before {
border-right: 7px solid #e67e22;
}
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
margin: 0;
scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
padding: 0;
margin: 0;
}
body {
background-color: #fff;
font-size: 16px;
font-family: "Sen-Regular", sans-serif;
color: #fff;
}
.icon {
display: inline-block;
width: 1em;
height: 1em;
stroke: currentColor;
fill: currentColor;
}
.icon:not(.has-stroke) {
stroke-width: 0;
}
*::-moz-selection {
background-color: rgba(242, 82, 82, 0.3);
}
*::selection {
background-color: rgba(242, 82, 82, 0.3);
}
*::-webkit-scrollbar {
border-radius: 10px;
position: relative;
z-index: 999;
width: 6px;
}
*::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 3px rgba(242, 82, 82, 0);
box-shadow: inset 0 0 3px rgba(242, 82, 82, 0);
background-color: rgba(38, 38, 38, 0.6);
}
*::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 3px #262626;
box-shadow: inset 0 0 3px #262626;
background-color: #262626;
outline: none;
}
.wrapper {
max-width: 1300px;
padding: 0 50px;
margin: 0 auto;
width: 100%;
}
@media (max-width: 479px) {
.wrapper {
padding: 0 20px;
}
}
a {
text-decoration: none;
}
a:hover {
color: #fff;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
img,
svg {
width: 100%;
height: 100%;
}
.l-common {
padding-top: 75px;
}
.e-logo {
width: 100%;
height: 100%;
color: #fff;
}
.e-logo__wrapper {
height: 100%;
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.e-logo__wrapper:hover > svg {
-webkit-animation: rotate 20s infinite linear;
animation: rotate 20s infinite linear;
}
.e-logo__text {
font-family: "Sen-Bold", sans-serif;
font-size: 0.75em;
letter-spacing: 4px;
}
.e-logo__svg {
min-width: 75px;
width: 100%;
height: 100%;
-webkit-animation: spin-reverse 300ms;
animation: spin-reverse 300ms;
}
.e-icon {
width: 100%;
height: 100%;
}
.e-icon__svg {
width: 100%;
height: 100%;
}
.e-link {
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
display: inline-block;
}
.e-link--lighter-text {
padding: 5px 12px;
color: #fff;
}
.e-link--lighter-text:hover {
border-radius: 5px;
background-color: #262626;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
color: #fff;
}
.e-link--banner-style {
background-color: transparent;
border: 1px solid #fff;
border-radius: 5px;
}
.e-link--banner-style:hover {
background-color: #fff;
color: #000;
}
.e-link--banner-style-red {
background-color: #fff;
color: #000;
}
.e-link--banner-style-red:hover {
background-color: #f2505d;
border-color: #f2505d;
color: #fff;
}
.e-link--button-red {
background-color: #f25252;
border-radius: 5px;
padding: 5px 25px;
font-size: 0.875em;
color: #fff;
}
.e-link--button-red:hover {
background-color: #262626;
}
.e-link--display-none {
display: none;
}
.e-burger-menu {
display: none;
}
.e-burger-menu__bar {
background-color: #fff;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 20px;
margin: 5px auto;
display: block;
height: 3px;
width: 25px;
}
@media (max-width: 767px) {
.e-burger-menu {
cursor: pointer;
display: block;
}
.e-burger-menu.active .e-burger-menu__bar:nth-child(1) {
-webkit-transform: translateY(8px) rotate(45deg);
transform: translateY(8px) rotate(45deg);
}
.e-burger-menu.active .e-burger-menu__bar:nth-child(2) {
opacity: 0;
}
.e-burger-menu.active .e-burger-menu__bar:nth-child(3) {
-webkit-transform: translateY(-8px) rotate(-45deg);
transform: translateY(-8px) rotate(-45deg);
}
}
.e-social-link {
width: 35px;
height: 35px;
margin: 25px 10px;
color: #fff;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.e-social-link__link {
font-size: 30px;
}
.e-social-link:hover {
color: #f2505d;
}
.e-photocard {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin: 30px 5px;
cursor: pointer;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
-webkit-box-flex: 0;
-ms-flex: 0 0 30%;
flex: 0 0 30%;
}
.e-photocard:hover > .e-photocard__photo {
-webkit-transform: perspective(300px) rotateY(-180deg);
transform: perspective(300px) rotateY(-180deg);
}
.e-photocard:hover > .e-photocard__rear-photo {
-webkit-transform: perspective(300px) rotateY(0deg);
transform: perspective(300px) rotateY(0deg);
}
.e-photocard__name {
font-family: "Sen-Regular", sans-serif;
font-size: 1.125em;
margin-top: 12px;
text-align: center;
}
@media (max-width: 767px) {
.e-photocard__name {
max-width: 100px;
}
}
.e-photocard__photo {
width: 300px;
height: 300px;
overflow: hidden;
max-width: 300px;
border-radius: 50%;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: perspective(300px) rotateY(0deg);
transform: perspective(300px) rotateY(0deg);
}
.e-photocard__rear-photo {
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 300px;
height: 300px;
position: absolute;
border-radius: 50%;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: perspective(300px) rotateY(-180deg);
transform: perspective(300px) rotateY(-180deg);
background-image: url(./assets/photos/Beetroot-Logo.png);
}
.e-advantage-item__wrapper {
padding: 0 20px;
}
.e-advantage-item__icon {
width: 40px;
height: 40px;
margin-bottom: 10px;
}
.e-advantage-item__title {
font-weight: 600;
font-size: 1.5em;
margin-bottom: 15px;
}
.e-advantage-item__text {
font-weight: 100;
line-height: 26px;
}
.e-advantage-item__svg {
width: 100%;
height: 100%;
}
.e-advantage-item__svg--black {
fill: #000;
}
.e-advantage-item__svg--red {
fill: #f20707;
}
.e-advantage-item__svg--light-grey {
fill: #404040;
}
.e-advantage-item__svg--light-pink {
fill: #f2505d;
}
.c-header {
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
height: 75px;
background-color: #f25252;
z-index: 800;
}
.c-header__wrapper {
height: 100%;
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin: 0 auto;
}
.c-header__logo {
width: 200px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.c-header__navigation {
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
height: 50px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.c-footer {
min-height: 200px;
background-color: #222222;
}
.c-footer__logo {
width: 200px;
height: 75px;
}
.c-footer__top {
padding-top: 25px;
}
@media (max-width: 479px) {
.c-footer__top {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
}
.c-navigation__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.c-navigation__item {
min-width: 70px;
text-align: center;
font-size: 0.9375em;
padding-left: 50px;
}
@media (max-width: 767px) {
.c-navigation__list {
width: 100%;
height: 100%;
padding: 10px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
position: fixed;
z-index: 1000;
right: -100%;
top: 75px;
background-color: #f25252;
text-align: center;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-navigation__list.active {
right: 0;
}
.c-navigation__item {
font-size: 1em;
padding-left: 0;
margin-bottom: 15px;
}
}
.c-banner {
background-size: cover;
background-position: center center;
min-height: 550px;
}
.c-banner__wrapper {
margin: 130px auto 0 auto;
}
@media (max-width: 479px) {
.c-banner__wrapper {
margin: 230px auto 50px auto;
padding: 0 20px;
}
}
.c-banner__wrapper--logo-mode {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
@media (max-width: 767px) {
.c-banner__wrapper--logo-mode {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
}
.c-banner__wrapper--width-mode .c-banner__info {
max-width: 535px;
}
.c-banner__wrapper--width-mode .c-banner__title {
font-size: 2.8125em;
}
@media (max-width: 479px) {
.c-banner__wrapper--width-mode .c-banner__title {
font-size: 1.875em;
max-width: 100%;
}
}
.c-banner__wrapper--width-mode .c-banner__sub-title {
max-width: 425px;
}
.c-banner__info {
max-width: 420px;
}
.c-banner__title {
font-family: "Sen-Bold", sans-serif;
font-size: 3.875em;
line-height: 1.3;
margin: 0 0 20px;
}
@media (max-width: 479px) {
.c-banner__title {
font-size: 1.875em;
max-width: 160px;
}
}
.c-banner__title--display-none {
display: none;
}
.c-banner__sub-title {
font-family: "Sen-Regular", sans-serif;
font-size: 1.125em;
display: inline-block;
line-height: 1.5;
margin-bottom: 30px;
}
.c-banner__sub-title--display-none {
display: none;
}
.c-banner__img {
width: 200px;
height: 200px;
}
@media (max-width: 767px) {
.c-banner__img {
margin: 10px auto;
}
}
@media (max-width: 479px) {
.c-banner__img {
display: none;
}
}
.c-banner__img--display-none {
display: none;
}
.c-section-services {
font-family: "Sen-Regular", sans-serif;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: #000;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
}
.c-section-services__wrapper {
margin: 65px 0;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding: 0 15px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
}
@media (max-width: 1023px) {
.c-section-services__wrapper {
text-align: center;
}
}
.c-section-services__info {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-bottom: 50px;
padding: 0 10px;
}
@media (max-width: 1023px) {
.c-section-services__info {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
max-width: 700px;
margin: 0 auto;
}
}
.c-section-services__info__title {
margin-right: 50px;
line-height: 1.3;
max-width: 600px;
}
.c-section-services__info__title > h2 {
font-size: 2.8125em;
}
@media (max-width: 1023px) {
.c-section-services__info__title {
margin-right: 0;
max-width: 700px;
margin-bottom: 20px;
}
}
.c-section-services__info__subtitle {
max-width: 450px;
}
@media (max-width: 1023px) {
.c-section-services__info__subtitle {
max-width: 700px;
}
}
.c-section-services__cards {
width: 100%;
}
.c-section-services__cards__wrapper {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
}
@media (max-width: 1023px) {
.c-section-services__cards__wrapper {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
}
.type-animation {
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
font-family: "Source-San-Pro_Bold", monospace;
position: relative;
}
@media (max-width: 1023px) {
.type-animation {
left: 35%;
}
}
@media (max-width: 479px) {
.type-animation {
left: 25%;
}
}
.type-animation::before,
.type-animation::after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.type-animation::before {
background: var(--bg-color);
-webkit-animation: typewriter var(--typewriterSpeed) steps(var(--typewriterCharacters)) 1s forwards;
animation: typewriter var(--typewriterSpeed) steps(var(--typewriterCharacters)) 1s forwards;
}
.type-animation::after {
width: 0.125em;
background: black;
-webkit-animation: typewriter var(--typewriterSpeed) steps(var(--typewriterCharacters)) 1s forwards, blink 750ms steps(var(--typewriterCharacters)) infinite;
animation: typewriter var(--typewriterSpeed) steps(var(--typewriterCharacters)) 1s forwards, blink 750ms steps(var(--typewriterCharacters)) infinite;
}
.c-section-about-us {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-top: 50px;
color: #000;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
}
.c-section-about-us__wrapper {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.c-section-advantages {
color: #000;
}
.c-section-advantages__wrapper {
max-width: 1095px;
margin: 20px auto;
}
.c-section-advantages__header {
position: relative;
margin-bottom: 55px;
}
.c-section-advantages__title {
margin-top: 30px;
font-weight: bold;
font-size: 1.875em;
text-align: center;
}
.c-section-advantages__subtitle {
font-size: 1em;
margin-top: 20px;
text-align: center;
}
.c-section-advantages__content {
display: -ms-grid;
display: grid;
-ms-grid-columns: (1fr)[4];
grid-template-columns: repeat(4, 1fr);
grid-gap: 35px;
}
@media (max-width: 1023px) {
.c-section-advantages__content {
-ms-grid-columns: (1fr)[2];
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 479px) {
.c-section-advantages__content {
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
}
}
.section-establishment {
padding: 65px 0;
}
@media (max-width: 1023px) {
.section-establishment {
padding: 0;
}
}
@media (max-width: 1023px) {
.section-establishment__wrapper {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
}
@media (max-width: 479px) {
.section-establishment__wrapper {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding: 0;
}
}
.section-establishment__media {
border-radius: 5px;
margin: 50px 0;
padding: 15px;
z-index: 2;
}
@media (max-width: 1023px) {
.section-establishment__media {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 10px 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin: 0;
}
.section-establishment__media iframe,
.section-establishment__media video {
width: 100%;
}
.section-establishment__media iframe[poster],
.section-establishment__media video[poster] {
height: 100%;
width: 100%;
}
}
@media (max-width: 1023px) and (max-width: 479px) {
.section-establishment__media video {
height: 100%;
}
}
.section-establishment__media-text {
padding: 20px 0 10px;
}
.section-establishment__audio {
max-width: 320px;
}
.section-establishment__meet {
padding: 85px 50px 85px 225px;
margin-left: -175px;
border-radius: 5px;
z-index: 1;
}
@media (max-width: 1023px) {
.section-establishment__meet {
padding: 85px 45px;
margin-left: 0;
}
}
@media (max-width: 479px) {
.section-establishment__meet {
padding: 50px 25px;
margin-left: 0;
}
}
.section-establishment__meet-title {
font-family: "Sen-Bold", sans-serif;
font-size: 1.875em;
}
.section-establishment__meet-text {
padding-bottom: 10px;
}
.section-recommendation {
padding: 65px 0;
overflow-x: hidden;
}
@media (max-width: 1023px) {
.section-recommendation {
padding: 0;
}
}
@media (max-width: 1023px) {
.section-recommendation__wrapper {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-bottom: 50px;
}
}
@media (max-width: 479px) {
.section-recommendation__wrapper {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-bottom: 20px;
}
}
.section-recommendation__photo {
border-radius: 10px;
overflow: hidden;
margin: auto 0;
z-index: 2;
}
.section-recommendation__info {
padding: 85px 50px 85px 225px;
margin-left: -165px;
border-radius: 10px;
z-index: 1;
}
@media (max-width: 1023px) {
.section-recommendation__info {
padding: 85px 40px;
margin-left: 0;
}
}
@media (max-width: 479px) {
.section-recommendation__info {
padding: 50px 25px;
margin-left: 0;
}
}
.section-recommendation__client {
font-family: "Sen-Bold", sans-serif;
font-size: 2.8125em;
}
:root {
--typewriterSpeed: 6s;
--typewriterCharacters: 15;
--bg-color: white;
}
.c-service-card {
background-color: #262626;
font-family: "Sen-Bold", sans-serif;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
font-size: 2.8125em;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 10px;
margin-bottom: 50px;
position: relative;
min-height: 300px;
overflow: hidden;
color: #fff;
cursor: pointer;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
}
.c-service-card__item {
width: 100%;
padding: 0 10px;
max-width: 320px;
}
@media (max-width: 1023px) {
.c-service-card__item {
width: 100%;
margin-bottom: 40px;
max-width: 700px;
}
}
.c-service-card__number {
position: absolute;
font-size: 0.875em;
left: 30px;
top: 30px;
opacity: 0;
-webkit-transform: translateY(3rem);
transform: translateY(3rem);
-webkit-animation: fadeInUp 2s ease calc(var(--typewriterSpeed) + 2s) forwards;
animation: fadeInUp 2s ease calc(var(--typewriterSpeed) + 2s) forwards;
}
.c-service-card__title {
font-size: 0.875em;
text-align: center;
}
.c-service-card__icon {
width: 150px;
height: 150px;
padding: 5px;
position: absolute;
right: -40px;
bottom: -60px;
}
#icon-rectangle {
fill: none;
}
.loading {
background: #141414;
text-transform: uppercase;
font-family: "Cabin Condensed", sans-serif;
font-weight: bold;
font-size: 100pt;
text-align: center;
height: 120px;
line-height: 110px;
vertical-align: bottom;
position: absolute;
left: 0;
right: 0;
top: 45%;
bottom: 0;
display: block;
}
@media (max-width: 767px) {
.loading {
font-size: 60pt;
height: 90px;
}
}
@media (max-width: 479px) {
.loading {
font-size: 40pt;
height: 80px;
}
}
.loading-2 {
top: 300px;
width: 473px;
height: 97px;
font-size: 0;
background: rgba(255, 255, 255, 0.06);
margin: 0 auto;
}
.ff {
position: absolute;
font-size: 12pt;
top: -20px;
color: white;
line-height: 12pt;
}
.loading-2-text {
background-image: url("./assets/images/red.jpeg");
width: 473px;
height: 97px;
display: inline-block;
}
@-webkit-keyframes wave-animation {
0% {
background-position: 0 bottom;
}
100% {
background-position: 200px bottom;
}
}
@keyframes wave-animation {
0% {
background-position: 0 bottom;
}
100% {
background-position: 200px bottom;
}
}
@-webkit-keyframes loading-animation {
0% {
background-size: 200px 0px;
}
100% {
background-size: 200px 200px;
}
}
@keyframes loading-animation {
0% {
background-size: 200px 0px;
}
100% {
background-size: 200px 200px;
}
}
.wave {
background-image: url("./assets/images/red.jpeg");
-webkit-background-clip: text;
background-clip: text;
color: rgba(0, 0, 0, 0);
text-shadow: 0px 0px rgba(255, 255, 255, 0.06);
-webkit-animation: wave-animation 2s infinite linear, loading-animation 3s infinite linear alternate;
animation: wave-animation 2s infinite linear, loading-animation 3s infinite linear alternate;
background-size: 200px 100px;
background-repeat: repeat-x;
opacity: 1;
}
@media (max-width: 767px) {
.wave {
-webkit-animation: wave-animation 2s infinite linear, loading-animation 5s infinite linear alternate;
animation: wave-animation 2s infinite linear, loading-animation 5s infinite linear alternate;
}
}
@media (max-width: 479px) {
.wave {
-webkit-animation: wave-animation 2s infinite linear, loading-animation 7s infinite linear alternate;
animation: wave-animation 2s infinite linear, loading-animation 7s infinite linear alternate;
}
}
.wave-2 {
background-clip: initial;
display: inline-block;
}
.c-banner-contact {
background-image: -webkit-gradient(linear, left bottom, left top, from(#222222), to(rgba(34, 34, 34, 0))), url("./assets/images/banner-contact.jpeg");
background-image: linear-gradient(360deg, #222222, rgba(34, 34, 34, 0)), url("./assets/images/banner-contact.jpeg");
background-size: cover;
background-position: center center;
font-family: "Sen-Bold";
min-height: 550px;
}
.c-banner-contact__wrapper {
margin: 0 auto;
}
@media (max-width: 1023px) {
.c-banner-contact__wrapper {
margin: 50px auto 20px;
}
}
.c-banner-contact__title {
width: 100%;
font-size: 2.375em;
line-height: 1.3;
margin: 0 0 20px;
}
@media (max-width: 767px) {
.c-banner-contact__title {
font-size: 2.125em;
text-align: center;
}
}
@media (max-width: 479px) {
.c-banner-contact__title {
display: none;
}
}
@media (max-width: 767px) {
.c-banner-contact__tiles {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
}
.c-banner-contact__item {
background-color: #fff;
color: #262626;
border-radius: 5px;
padding: 40px;
max-width: 350px;
margin-right: 20px;
}
@media (max-width: 767px) {
.c-banner-contact__item {
margin-bottom: 20px;
padding: 20px;
max-width: 280px;
margin-right: 0;
}
}
.c-banner-contact__item__icon {
margin-bottom: 30px;
color: #f25252;
width: 40px;
height: 40px;
}
.c-banner-contact__item__title {
font-weight: 900;
font-size: 1.875em;
margin-bottom: 10px;
}
.c-banner-contact__item__text {
font-family: "Sen-Regular";
font-size: 0.875em;
max-width: 240px;
font-weight: 300;
text-align: center;
min-height: 50px;
}
.c-section-form {
color: #262626;
font-family: "Sen-Regular", sans-serif;
margin: 80px;
}
@media (max-width: 767px) {
.c-section-form {
margin: 30px;
}
}
@media (max-width: 1023px) {
.c-section-form__wrapper {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
}
.c-section-form__contact-info {
font-size: 0.875em;
}
.c-section-form__title {
font-size: 2em;
font-family: "Sen-Bold", sans-serif;
margin-bottom: 10px;
white-space: nowrap;
}
@media (max-width: 479px) {
.c-section-form__title {
font-size: 1.625em;
}
}
.c-section-form__text {
margin-bottom: 40px;
}
.c-section-form__form {
width: 100%;
margin-left: 150px;
}
@media (max-width: 1023px) {
.c-section-form__form {
margin-top: 50px;
margin-left: 0;
}
}
.c-form-contact {
font-family: "Sen-Regular", sans-serif;
color: #262626;
width: 100%;
}
.c-form-contact__title {
font-family: "Sen-Bold", sans-serif;
margin-bottom: 10px;
font-size: 1.75em;
}
@media (max-width: 479px) {
.c-form-contact__title {
font-size: 1.375em;
}
}
.c-form-contact__text {
margin-bottom: 10px;
font-size: 0.875em;
}
.c-form-contact__item {
margin-bottom: 10px;
}
.c-form-contact__label {
margin-bottom: 5px;
font-size: 0.875em;
width: 100%;
}
.c-form-contact__input {
border: 1px solid #262626;
padding: 8px 12px;
border-radius: 3px;
font-size: 0.75em;
width: 100%;
outline: none;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
color: #262626;
min-height: 30px;
}
.c-form-contact__input:focus, .c-form-contact__input:hover {
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
border-color: #f25252;
}
.c-form-contact__button {
max-width: -webkit-fit-content;
max-width: -moz-fit-content;
max-width: fit-content;
color: #fff;
font-family: "Sen-Bold", sans-serif;
background-color: #f25252;
border-radius: 5px;
padding: 5px 25px;
font-size: 0.875em;
border: none;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-form-contact__button:hover {
background-color: #262626;
}
@-webkit-keyframes rotate {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes rotate {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes spin-reverse {
from {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
to {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
@keyframes spin-reverse {
from {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
to {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
@-webkit-keyframes typewriter {
to {
left: 100%;
}
}
@keyframes typewriter {
to {
left: 100%;
}
}
@-webkit-keyframes blink {
to {
background: transparent;
}
}
@keyframes blink {
to {
background: transparent;
}
}
@-webkit-keyframes fadeInUp {
to {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInUp {
to {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
} | index.css | @font-face {
font-family: "Sen-Bold";
src: url("./assets/fonts/sen/Sen-Bold.woff2") format("woff2"), url("./assets/fonts/sen/Sen-Bold.woff") format("woff");
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "Sen-Regular";
src: url("./assets/fonts/sen/Sen-Regular.woff2") format("woff2"), url("./assets/fonts/sen/Sen-Regular.woff") format("woff");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Source-San-Pro_Bold";
src: url("./assets/fonts/Source-Pro/SourceSansPro-Bold.ttf") format("ttf");
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "pacifico-regular";
src: url("./assets/fonts/pacifico/Pacifico-Regular.ttf") format("ttf");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "playfairdisplay-regular";
src: url("./assets/fonts/playfairdisplay/PlayfairDisplay-Regular.ttf") format("ttf");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "raleway-regular";
src: url("./assets/fonts/raleway/Raleway-Regular.ttf") format("ttf");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "roboto-regular";
src: url("./assets/fonts/roboto/Roboto-Regular.ttf") format("ttf");
font-weight: 400;
font-style: normal;
}
:root {
--bs-blue: #0d6efd;
--bs-indigo: #6610f2;
--bs-purple: #6f42c1;
--bs-pink: #d63384;
--bs-red: #dc3545;
--bs-orange: #fd7e14;
--bs-yellow: #ffc107;
--bs-green: #198754;
--bs-teal: #20c997;
--bs-cyan: #0dcaf0;
--bs-white: #fff;
--bs-gray: #6c757d;
--bs-gray-dark: #343a40;
--bs-gray-100: #f8f9fa;
--bs-gray-200: #e9ecef;
--bs-gray-300: #dee2e6;
--bs-gray-400: #ced4da;
--bs-gray-500: #adb5bd;
--bs-gray-600: #6c757d;
--bs-gray-700: #495057;
--bs-gray-800: #343a40;
--bs-gray-900: #212529;
--bs-primary: #0d6efd;
--bs-secondary: #6c757d;
--bs-success: #198754;
--bs-info: #0dcaf0;
--bs-warning: #ffc107;
--bs-danger: #dc3545;
--bs-light: #f8f9fa;
--bs-dark: #212529;
--bs-primary-rgb: 13, 110, 253;
--bs-secondary-rgb: 108, 117, 125;
--bs-success-rgb: 25, 135, 84;
--bs-info-rgb: 13, 202, 240;
--bs-warning-rgb: 255, 193, 7;
--bs-danger-rgb: 220, 53, 69;
--bs-light-rgb: 248, 249, 250;
--bs-dark-rgb: 33, 37, 41;
--bs-white-rgb: 255, 255, 255;
--bs-black-rgb: 0, 0, 0;
--bs-body-color-rgb: 33, 37, 41;
--bs-body-bg-rgb: 255, 255, 255;
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
--bs-body-font-family: var(--bs-font-sans-serif);
--bs-body-font-size: 1rem;
--bs-body-font-weight: 400;
--bs-body-line-height: 1.5;
--bs-body-color: #212529;
--bs-body-bg: #fff;
}
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
:root {
scroll-behavior: smooth;
}
}
body {
margin: 0;
font-family: var(--bs-body-font-family);
font-size: var(--bs-body-font-size);
font-weight: var(--bs-body-font-weight);
line-height: var(--bs-body-line-height);
color: var(--bs-body-color);
text-align: var(--bs-body-text-align);
background-color: var(--bs-body-bg);
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
margin: 1rem 0;
color: inherit;
background-color: currentColor;
border: 0;
opacity: 0.25;
}
hr:not([size]) {
height: 1px;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: 0.5rem;
font-weight: 500;
line-height: 1.2;
}
h1 {
font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
h1 {
font-size: 2.5rem;
}
}
h2 {
font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
h2 {
font-size: 2rem;
}
}
h3 {
font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
h3 {
font-size: 1.75rem;
}
}
h4 {
font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
h4 {
font-size: 1.5rem;
}
}
h5 {
font-size: 1.25rem;
}
h6 {
font-size: 1rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
abbr[title],
abbr[data-bs-original-title] {
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
text-decoration-skip-ink: none;
}
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
ol,
ul {
padding-left: 2rem;
}
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0;
}
dt {
font-weight: 700;
}
dd {
margin-bottom: .5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
b,
strong {
font-weight: bolder;
}
small {
font-size: 0.875em;
}
mark {
padding: 0.2em;
background-color: #fcf8e3;
}
sub,
sup {
position: relative;
font-size: 0.75em;
line-height: 0;
vertical-align: baseline;
}
sub {
bottom: -.25em;
}
sup {
top: -.5em;
}
a {
color: #0d6efd;
text-decoration: underline;
}
a:hover {
color: #0a58ca;
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
color: inherit;
text-decoration: none;
}
pre,
code,
kbd,
samp {
font-family: var(--bs-font-monospace);
font-size: 1em;
direction: ltr /* rtl:ignore */;
unicode-bidi: bidi-override;
}
pre {
display: block;
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
font-size: 0.875em;
}
pre code {
font-size: inherit;
color: inherit;
word-break: normal;
}
code {
font-size: 0.875em;
color: #d63384;
word-wrap: break-word;
}
a > code {
color: inherit;
}
kbd {
padding: 0.2rem 0.4rem;
font-size: 0.875em;
color: #fff;
background-color: #212529;
border-radius: 0.2rem;
}
kbd kbd {
padding: 0;
font-size: 1em;
font-weight: 700;
}
figure {
margin: 0 0 1rem;
}
img,
svg {
vertical-align: middle;
}
table {
caption-side: bottom;
border-collapse: collapse;
}
caption {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
color: #6c757d;
text-align: left;
}
th {
text-align: inherit;
text-align: -webkit-match-parent;
}
thead,
tbody,
tfoot,
tr,
td,
th {
border-color: inherit;
border-style: solid;
border-width: 0;
}
label {
display: inline-block;
}
button {
border-radius: 0;
}
button:focus:not(:focus-visible) {
outline: 0;
}
input,
button,
select,
optgroup,
textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
button,
select {
text-transform: none;
}
[role="button"] {
cursor: pointer;
}
select {
word-wrap: normal;
}
select:disabled {
opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
display: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
cursor: pointer;
}
::-moz-focus-inner {
padding: 0;
border-style: none;
}
textarea {
resize: vertical;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
float: left;
width: 100%;
padding: 0;
margin-bottom: 0.5rem;
font-size: calc(1.275rem + 0.3vw);
line-height: inherit;
}
@media (min-width: 1200px) {
legend {
font-size: 1.5rem;
}
}
legend + * {
clear: left;
}
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
padding: 0;
}
::-webkit-inner-spin-button {
height: auto;
}
[type="search"] {
outline-offset: -2px;
-webkit-appearance: textfield;
}
/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
direction: ltr;
}
*/
::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
padding: 0;
}
::file-selector-button {
font: inherit;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
output {
display: inline-block;
}
iframe {
border: 0;
}
summary {
display: list-item;
cursor: pointer;
}
progress {
vertical-align: baseline;
}
[hidden] {
display: none !important;
}
.row {
--bs-gutter-x: 1.5rem;
--bs-gutter-y: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: calc(var(--bs-gutter-y) * -1);
margin-right: calc(var(--bs-gutter-x) * -.5);
margin-left: calc(var(--bs-gutter-x) * -.5);
}
.row > * {
-ms-flex-negative: 0;
flex-shrink: 0;
width: 100%;
max-width: 100%;
padding-right: calc(var(--bs-gutter-x) * .5);
padding-left: calc(var(--bs-gutter-x) * .5);
margin-top: var(--bs-gutter-y);
}
.col {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-1 {
margin-left: 8.33333%;
}
.offset-2 {
margin-left: 16.66667%;
}
.offset-3 {
margin-left: 25%;
}
.offset-4 {
margin-left: 33.33333%;
}
.offset-5 {
margin-left: 41.66667%;
}
.offset-6 {
margin-left: 50%;
}
.offset-7 {
margin-left: 58.33333%;
}
.offset-8 {
margin-left: 66.66667%;
}
.offset-9 {
margin-left: 75%;
}
.offset-10 {
margin-left: 83.33333%;
}
.offset-11 {
margin-left: 91.66667%;
}
.g-0,
.gx-0 {
--bs-gutter-x: 0;
}
.g-0,
.gy-0 {
--bs-gutter-y: 0;
}
.g-1,
.gx-1 {
--bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
--bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
--bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
--bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
--bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
--bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
--bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
--bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
--bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
--bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
.col-sm {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-sm-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-sm-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-sm-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-sm-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-sm-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-sm-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-sm-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-sm-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-sm-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-sm-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-sm-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-sm-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-sm-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-sm-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-sm-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-sm-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-sm-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-sm-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-sm-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-sm-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-sm-0 {
margin-left: 0;
}
.offset-sm-1 {
margin-left: 8.33333%;
}
.offset-sm-2 {
margin-left: 16.66667%;
}
.offset-sm-3 {
margin-left: 25%;
}
.offset-sm-4 {
margin-left: 33.33333%;
}
.offset-sm-5 {
margin-left: 41.66667%;
}
.offset-sm-6 {
margin-left: 50%;
}
.offset-sm-7 {
margin-left: 58.33333%;
}
.offset-sm-8 {
margin-left: 66.66667%;
}
.offset-sm-9 {
margin-left: 75%;
}
.offset-sm-10 {
margin-left: 83.33333%;
}
.offset-sm-11 {
margin-left: 91.66667%;
}
.g-sm-0,
.gx-sm-0 {
--bs-gutter-x: 0;
}
.g-sm-0,
.gy-sm-0 {
--bs-gutter-y: 0;
}
.g-sm-1,
.gx-sm-1 {
--bs-gutter-x: 0.25rem;
}
.g-sm-1,
.gy-sm-1 {
--bs-gutter-y: 0.25rem;
}
.g-sm-2,
.gx-sm-2 {
--bs-gutter-x: 0.5rem;
}
.g-sm-2,
.gy-sm-2 {
--bs-gutter-y: 0.5rem;
}
.g-sm-3,
.gx-sm-3 {
--bs-gutter-x: 1rem;
}
.g-sm-3,
.gy-sm-3 {
--bs-gutter-y: 1rem;
}
.g-sm-4,
.gx-sm-4 {
--bs-gutter-x: 1.5rem;
}
.g-sm-4,
.gy-sm-4 {
--bs-gutter-y: 1.5rem;
}
.g-sm-5,
.gx-sm-5 {
--bs-gutter-x: 3rem;
}
.g-sm-5,
.gy-sm-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 768px) {
.col-md {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-md-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-md-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-md-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-md-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-md-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-md-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-md-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-md-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-md-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-md-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-md-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-md-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-md-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-md-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-md-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-md-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-md-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-md-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-md-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-md-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-md-0 {
margin-left: 0;
}
.offset-md-1 {
margin-left: 8.33333%;
}
.offset-md-2 {
margin-left: 16.66667%;
}
.offset-md-3 {
margin-left: 25%;
}
.offset-md-4 {
margin-left: 33.33333%;
}
.offset-md-5 {
margin-left: 41.66667%;
}
.offset-md-6 {
margin-left: 50%;
}
.offset-md-7 {
margin-left: 58.33333%;
}
.offset-md-8 {
margin-left: 66.66667%;
}
.offset-md-9 {
margin-left: 75%;
}
.offset-md-10 {
margin-left: 83.33333%;
}
.offset-md-11 {
margin-left: 91.66667%;
}
.g-md-0,
.gx-md-0 {
--bs-gutter-x: 0;
}
.g-md-0,
.gy-md-0 {
--bs-gutter-y: 0;
}
.g-md-1,
.gx-md-1 {
--bs-gutter-x: 0.25rem;
}
.g-md-1,
.gy-md-1 {
--bs-gutter-y: 0.25rem;
}
.g-md-2,
.gx-md-2 {
--bs-gutter-x: 0.5rem;
}
.g-md-2,
.gy-md-2 {
--bs-gutter-y: 0.5rem;
}
.g-md-3,
.gx-md-3 {
--bs-gutter-x: 1rem;
}
.g-md-3,
.gy-md-3 {
--bs-gutter-y: 1rem;
}
.g-md-4,
.gx-md-4 {
--bs-gutter-x: 1.5rem;
}
.g-md-4,
.gy-md-4 {
--bs-gutter-y: 1.5rem;
}
.g-md-5,
.gx-md-5 {
--bs-gutter-x: 3rem;
}
.g-md-5,
.gy-md-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 992px) {
.col-lg {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-lg-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-lg-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-lg-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-lg-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-lg-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-lg-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-lg-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-lg-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-lg-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-lg-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-lg-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-lg-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-lg-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-lg-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-lg-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-lg-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-lg-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-lg-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-lg-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-lg-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-lg-0 {
margin-left: 0;
}
.offset-lg-1 {
margin-left: 8.33333%;
}
.offset-lg-2 {
margin-left: 16.66667%;
}
.offset-lg-3 {
margin-left: 25%;
}
.offset-lg-4 {
margin-left: 33.33333%;
}
.offset-lg-5 {
margin-left: 41.66667%;
}
.offset-lg-6 {
margin-left: 50%;
}
.offset-lg-7 {
margin-left: 58.33333%;
}
.offset-lg-8 {
margin-left: 66.66667%;
}
.offset-lg-9 {
margin-left: 75%;
}
.offset-lg-10 {
margin-left: 83.33333%;
}
.offset-lg-11 {
margin-left: 91.66667%;
}
.g-lg-0,
.gx-lg-0 {
--bs-gutter-x: 0;
}
.g-lg-0,
.gy-lg-0 {
--bs-gutter-y: 0;
}
.g-lg-1,
.gx-lg-1 {
--bs-gutter-x: 0.25rem;
}
.g-lg-1,
.gy-lg-1 {
--bs-gutter-y: 0.25rem;
}
.g-lg-2,
.gx-lg-2 {
--bs-gutter-x: 0.5rem;
}
.g-lg-2,
.gy-lg-2 {
--bs-gutter-y: 0.5rem;
}
.g-lg-3,
.gx-lg-3 {
--bs-gutter-x: 1rem;
}
.g-lg-3,
.gy-lg-3 {
--bs-gutter-y: 1rem;
}
.g-lg-4,
.gx-lg-4 {
--bs-gutter-x: 1.5rem;
}
.g-lg-4,
.gy-lg-4 {
--bs-gutter-y: 1.5rem;
}
.g-lg-5,
.gx-lg-5 {
--bs-gutter-x: 3rem;
}
.g-lg-5,
.gy-lg-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1200px) {
.col-xl {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-xl-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-xl-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-xl-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-xl-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-xl-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-xl-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-xl-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xl-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-xl-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-xl-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xl-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-xl-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-xl-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-xl-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-xl-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-xl-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-xl-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-xl-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-xl-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-xl-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-xl-0 {
margin-left: 0;
}
.offset-xl-1 {
margin-left: 8.33333%;
}
.offset-xl-2 {
margin-left: 16.66667%;
}
.offset-xl-3 {
margin-left: 25%;
}
.offset-xl-4 {
margin-left: 33.33333%;
}
.offset-xl-5 {
margin-left: 41.66667%;
}
.offset-xl-6 {
margin-left: 50%;
}
.offset-xl-7 {
margin-left: 58.33333%;
}
.offset-xl-8 {
margin-left: 66.66667%;
}
.offset-xl-9 {
margin-left: 75%;
}
.offset-xl-10 {
margin-left: 83.33333%;
}
.offset-xl-11 {
margin-left: 91.66667%;
}
.g-xl-0,
.gx-xl-0 {
--bs-gutter-x: 0;
}
.g-xl-0,
.gy-xl-0 {
--bs-gutter-y: 0;
}
.g-xl-1,
.gx-xl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xl-1,
.gy-xl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xl-2,
.gx-xl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xl-2,
.gy-xl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xl-3,
.gx-xl-3 {
--bs-gutter-x: 1rem;
}
.g-xl-3,
.gy-xl-3 {
--bs-gutter-y: 1rem;
}
.g-xl-4,
.gx-xl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xl-4,
.gy-xl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xl-5,
.gx-xl-5 {
--bs-gutter-x: 3rem;
}
.g-xl-5,
.gy-xl-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1400px) {
.col-xxl {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-xxl-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-xxl-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-xxl-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-xxl-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-xxl-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-xxl-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-xxl-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xxl-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-xxl-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-xxl-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xxl-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-xxl-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-xxl-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-xxl-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-xxl-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-xxl-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-xxl-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-xxl-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-xxl-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-xxl-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-xxl-0 {
margin-left: 0;
}
.offset-xxl-1 {
margin-left: 8.33333%;
}
.offset-xxl-2 {
margin-left: 16.66667%;
}
.offset-xxl-3 {
margin-left: 25%;
}
.offset-xxl-4 {
margin-left: 33.33333%;
}
.offset-xxl-5 {
margin-left: 41.66667%;
}
.offset-xxl-6 {
margin-left: 50%;
}
.offset-xxl-7 {
margin-left: 58.33333%;
}
.offset-xxl-8 {
margin-left: 66.66667%;
}
.offset-xxl-9 {
margin-left: 75%;
}
.offset-xxl-10 {
margin-left: 83.33333%;
}
.offset-xxl-11 {
margin-left: 91.66667%;
}
.g-xxl-0,
.gx-xxl-0 {
--bs-gutter-x: 0;
}
.g-xxl-0,
.gy-xxl-0 {
--bs-gutter-y: 0;
}
.g-xxl-1,
.gx-xxl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xxl-1,
.gy-xxl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xxl-2,
.gx-xxl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xxl-2,
.gy-xxl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xxl-3,
.gx-xxl-3 {
--bs-gutter-x: 1rem;
}
.g-xxl-3,
.gy-xxl-3 {
--bs-gutter-y: 1rem;
}
.g-xxl-4,
.gx-xxl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xxl-4,
.gy-xxl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xxl-5,
.gx-xxl-5 {
--bs-gutter-x: 3rem;
}
.g-xxl-5,
.gy-xxl-5 {
--bs-gutter-y: 3rem;
}
}
/********************************* Core ******************************/
[data-tooltip] {
position: relative;
display: inline-block;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
[data-tooltip]:before, [data-tooltip]:after {
position: absolute;
visibility: hidden;
opacity: 0;
z-index: 999999;
-webkit-box-sizing: content-box;
box-sizing: content-box;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
[data-tooltip]:before {
content: '';
border: 6px solid transparent;
}
[data-tooltip]:after {
height: 22px;
padding: 11px 11px 0 11px;
font-size: 13px;
line-height: 11px;
content: attr(data-tooltip);
white-space: nowrap;
}
[data-tooltip].simptip-position-top:before {
border-top-color: #323232;
}
[data-tooltip].simptip-position-top:after {
background-color: #323232;
color: #ecf0f1;
}
[data-tooltip].simptip-position-bottom:before {
border-bottom-color: #323232;
}
[data-tooltip].simptip-position-bottom:after {
background-color: #323232;
color: #ecf0f1;
}
[data-tooltip].simptip-position-left:before {
border-left-color: #323232;
}
[data-tooltip].simptip-position-left:after {
background-color: #323232;
color: #ecf0f1;
}
[data-tooltip].simptip-position-right:before {
border-right-color: #323232;
}
[data-tooltip].simptip-position-right:after {
background-color: #323232;
color: #ecf0f1;
}
[data-tooltip].simptip-position-top.half-arrow:before {
border-right: 7px solid #323232;
}
[data-tooltip].simptip-position-bottom.half-arrow:before {
border-right: 7px solid #323232;
}
[data-tooltip]:hover, [data-tooltip]:focus {
background-color: transparent;
}
[data-tooltip]:hover:before, [data-tooltip]:hover:after, [data-tooltip]:focus:before, [data-tooltip]:focus:after {
opacity: 1;
visibility: visible;
}
/******************************* Position ****************************/
.simptip-position-right:before, .simptip-position-left:before, .simptip-position-right:after, .simptip-position-left:after {
bottom: 50%;
}
.simptip-position-right:before, .simptip-position-left:before {
margin-bottom: -5px;
}
.simptip-position-right:after, .simptip-position-left:after {
margin-bottom: -14.66667px;
}
.half-arrow.simptip-position-right:before, .half-arrow.simptip-position-left:before {
bottom: 16px;
border-style: none;
border-top: 7px solid transparent;
}
.simptip-multiline.simptip-position-right:before, .simptip-multiline.simptip-position-left:before, .simptip-multiline.simptip-position-right:after, .simptip-multiline.simptip-position-left:after {
-webkit-transform: translateY(50%);
transform: translateY(50%);
-webkit-filter: blur(0px);
filter: blur(0px);
margin-bottom: 0;
}
.simptip-multiline.simptip-position-right:before, .simptip-multiline.simptip-position-left:before {
margin-bottom: 0;
}
.simptip-multiline.half-arrow.simptip-position-right:before, .simptip-multiline.half-arrow.simptip-position-left:before {
margin-bottom: -2px;
}
.simptip-position-right:before, .simptip-position-right:after {
left: 100%;
}
.simptip-position-right:before {
margin-left: -2px;
}
.simptip-position-right:after {
margin-left: 10px;
}
.simptip-position-right.simptip-movable:before {
margin-left: -10px;
}
.simptip-position-right.simptip-movable:after {
margin-left: 2px;
}
.simptip-position-right.simptip-movable:hover:before, .simptip-position-right.simptip-movable:hover:after {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
.simptip-position-right.simptip-movable.half-arrow:before {
margin-left: -5px;
}
.simptip-position-right.simptip-movable.simptip-multiline:hover:before, .simptip-position-right.simptip-movable.simptip-multiline:hover:after {
-webkit-transform: translate(10px, 50%);
transform: translate(10px, 50%);
}
.simptip-position-right.half-arrow:before {
margin-left: 3px;
border-right: 7px solid #323232;
}
.simptip-position-left:before, .simptip-position-left:after {
right: 100%;
}
.simptip-position-left:before {
margin-right: -2px;
}
.simptip-position-left:after {
margin-right: 10px;
}
.simptip-position-left.simptip-movable:before {
margin-right: -10px;
}
.simptip-position-left.simptip-movable:after {
margin-right: 2px;
}
.simptip-position-left.simptip-movable:hover:before, .simptip-position-left.simptip-movable:hover:after {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
.simptip-position-left.simptip-movable.half-arrow:before {
margin-right: -5px;
}
.simptip-position-left.simptip-movable.simptip-multiline:hover:before, .simptip-position-left.simptip-movable.simptip-multiline:hover:after {
-webkit-transform: translate(-10px, 50%);
transform: translate(-10px, 50%);
}
.simptip-position-left.half-arrow:before {
margin-right: 3px;
border-left: 7px solid #323232;
}
.simptip-position-bottom:before, .simptip-position-top:before, .simptip-position-bottom:after, .simptip-position-top:after {
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.simptip-position-bottom:after, .simptip-position-top:after {
width: auto;
}
.half-arrow.simptip-position-bottom:before, .half-arrow.simptip-position-top:before {
border-style: none;
border-right: 7px solid #323232;
}
.simptip-position-bottom:before, .simptip-position-bottom:after {
top: 100%;
}
.simptip-position-bottom:before {
margin-top: -5px;
}
.simptip-position-bottom:after {
margin-top: 7px;
}
.simptip-position-bottom:hover:before, .simptip-position-bottom:hover:after {
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
.simptip-position-bottom.simptip-movable:before {
margin-top: -15px;
}
.simptip-position-bottom.simptip-movable:after {
margin-top: -3px;
}
.simptip-position-bottom.simptip-movable:hover:before, .simptip-position-bottom.simptip-movable:hover:after {
-webkit-transform: translate(-50%, 10px);
transform: translate(-50%, 10px);
}
.simptip-position-bottom.simptip-movable.half-arrow:before {
margin-top: -10px;
}
.simptip-position-bottom.half-arrow:before {
margin-top: 0;
border-top: 7px solid transparent;
}
.simptip-position-top:before, .simptip-position-top:after {
bottom: 100%;
}
.simptip-position-top:before {
margin-bottom: -5px;
}
.simptip-position-top:after {
margin-bottom: 7px;
}
.simptip-position-top:hover:before, .simptip-position-top:hover:after {
-webkit-transform: translate(-50%, 0px);
transform: translate(-50%, 0px);
}
.simptip-position-top.simptip-movable:before {
margin-bottom: -15px;
}
.simptip-position-top.simptip-movable:after {
margin-bottom: -3px;
}
.simptip-position-top.simptip-movable:hover:before, .simptip-position-top.simptip-movable:hover:after {
-webkit-transform: translate(-50%, -10px);
transform: translate(-50%, -10px);
}
.simptip-position-top.simptip-movable.half-arrow:before {
margin-bottom: -10px;
}
.simptip-position-top.half-arrow:before {
margin-bottom: 0;
border-bottom: 7px solid transparent;
}
/******************************* Features ****************************/
.simptip-movable:before, .simptip-movable:after {
-webkit-transition: all 0.1s linear;
transition: all 0.1s linear;
}
.simptip-smooth:after {
border-radius: 4px;
}
.simptip-fade:before, .simptip-fade:after {
-webkit-transition: opacity 0.2s linear, visibility 0.2s linear;
transition: opacity 0.2s linear, visibility 0.2s linear;
}
.simptip-multiline:after {
height: auto;
width: 150px;
padding: 11px;
line-height: 19px;
white-space: normal;
text-align: left;
}
/**************************** Diverse Colors *************************/
.simptip-success.simptip-position-top:before {
border-top-color: #62c462;
}
.simptip-success.simptip-position-top:after {
background-color: #62c462;
color: #ecf0f1;
}
.simptip-success.simptip-position-bottom:before {
border-bottom-color: #62c462;
}
.simptip-success.simptip-position-bottom:after {
background-color: #62c462;
color: #ecf0f1;
}
.simptip-success.simptip-position-left:before {
border-left-color: #62c462;
}
.simptip-success.simptip-position-left:after {
background-color: #62c462;
color: #ecf0f1;
}
.simptip-success.simptip-position-right:before {
border-right-color: #62c462;
}
.simptip-success.simptip-position-right:after {
background-color: #62c462;
color: #ecf0f1;
}
.simptip-success.simptip-position-top.half-arrow:before {
border-right: 7px solid #62c462;
}
.simptip-success.simptip-position-bottom.half-arrow:before {
border-right: 7px solid #62c462;
}
.simptip-info.simptip-position-top:before {
border-top-color: #5bc0de;
}
.simptip-info.simptip-position-top:after {
background-color: #5bc0de;
color: #ecf0f1;
}
.simptip-info.simptip-position-bottom:before {
border-bottom-color: #5bc0de;
}
.simptip-info.simptip-position-bottom:after {
background-color: #5bc0de;
color: #ecf0f1;
}
.simptip-info.simptip-position-left:before {
border-left-color: #5bc0de;
}
.simptip-info.simptip-position-left:after {
background-color: #5bc0de;
color: #ecf0f1;
}
.simptip-info.simptip-position-right:before {
border-right-color: #5bc0de;
}
.simptip-info.simptip-position-right:after {
background-color: #5bc0de;
color: #ecf0f1;
}
.simptip-info.simptip-position-top.half-arrow:before {
border-right: 7px solid #5bc0de;
}
.simptip-info.simptip-position-bottom.half-arrow:before {
border-right: 7px solid #5bc0de;
}
.simptip-danger.simptip-position-top:before {
border-top-color: #e74c3c;
}
.simptip-danger.simptip-position-top:after {
background-color: #e74c3c;
color: #ecf0f1;
}
.simptip-danger.simptip-position-bottom:before {
border-bottom-color: #e74c3c;
}
.simptip-danger.simptip-position-bottom:after {
background-color: #e74c3c;
color: #ecf0f1;
}
.simptip-danger.simptip-position-left:before {
border-left-color: #e74c3c;
}
.simptip-danger.simptip-position-left:after {
background-color: #e74c3c;
color: #ecf0f1;
}
.simptip-danger.simptip-position-right:before {
border-right-color: #e74c3c;
}
.simptip-danger.simptip-position-right:after {
background-color: #e74c3c;
color: #ecf0f1;
}
.simptip-danger.simptip-position-top.half-arrow:before {
border-right: 7px solid #e74c3c;
}
.simptip-danger.simptip-position-bottom.half-arrow:before {
border-right: 7px solid #e74c3c;
}
.simptip-warning.simptip-position-top:before {
border-top-color: #e67e22;
}
.simptip-warning.simptip-position-top:after {
background-color: #e67e22;
color: #ecf0f1;
}
.simptip-warning.simptip-position-bottom:before {
border-bottom-color: #e67e22;
}
.simptip-warning.simptip-position-bottom:after {
background-color: #e67e22;
color: #ecf0f1;
}
.simptip-warning.simptip-position-left:before {
border-left-color: #e67e22;
}
.simptip-warning.simptip-position-left:after {
background-color: #e67e22;
color: #ecf0f1;
}
.simptip-warning.simptip-position-right:before {
border-right-color: #e67e22;
}
.simptip-warning.simptip-position-right:after {
background-color: #e67e22;
color: #ecf0f1;
}
.simptip-warning.simptip-position-top.half-arrow:before {
border-right: 7px solid #e67e22;
}
.simptip-warning.simptip-position-bottom.half-arrow:before {
border-right: 7px solid #e67e22;
}
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
margin: 0;
scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
padding: 0;
margin: 0;
}
body {
background-color: #fff;
font-size: 16px;
font-family: "Sen-Regular", sans-serif;
color: #fff;
}
.icon {
display: inline-block;
width: 1em;
height: 1em;
stroke: currentColor;
fill: currentColor;
}
.icon:not(.has-stroke) {
stroke-width: 0;
}
*::-moz-selection {
background-color: rgba(242, 82, 82, 0.3);
}
*::selection {
background-color: rgba(242, 82, 82, 0.3);
}
*::-webkit-scrollbar {
border-radius: 10px;
position: relative;
z-index: 999;
width: 6px;
}
*::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 3px rgba(242, 82, 82, 0);
box-shadow: inset 0 0 3px rgba(242, 82, 82, 0);
background-color: rgba(38, 38, 38, 0.6);
}
*::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 3px #262626;
box-shadow: inset 0 0 3px #262626;
background-color: #262626;
outline: none;
}
.wrapper {
max-width: 1300px;
padding: 0 50px;
margin: 0 auto;
width: 100%;
}
@media (max-width: 479px) {
.wrapper {
padding: 0 20px;
}
}
a {
text-decoration: none;
}
a:hover {
color: #fff;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
img,
svg {
width: 100%;
height: 100%;
}
.l-common {
padding-top: 75px;
}
.e-logo {
width: 100%;
height: 100%;
color: #fff;
}
.e-logo__wrapper {
height: 100%;
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.e-logo__wrapper:hover > svg {
-webkit-animation: rotate 20s infinite linear;
animation: rotate 20s infinite linear;
}
.e-logo__text {
font-family: "Sen-Bold", sans-serif;
font-size: 0.75em;
letter-spacing: 4px;
}
.e-logo__svg {
min-width: 75px;
width: 100%;
height: 100%;
-webkit-animation: spin-reverse 300ms;
animation: spin-reverse 300ms;
}
.e-icon {
width: 100%;
height: 100%;
}
.e-icon__svg {
width: 100%;
height: 100%;
}
.e-link {
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
display: inline-block;
}
.e-link--lighter-text {
padding: 5px 12px;
color: #fff;
}
.e-link--lighter-text:hover {
border-radius: 5px;
background-color: #262626;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
color: #fff;
}
.e-link--banner-style {
background-color: transparent;
border: 1px solid #fff;
border-radius: 5px;
}
.e-link--banner-style:hover {
background-color: #fff;
color: #000;
}
.e-link--banner-style-red {
background-color: #fff;
color: #000;
}
.e-link--banner-style-red:hover {
background-color: #f2505d;
border-color: #f2505d;
color: #fff;
}
.e-link--button-red {
background-color: #f25252;
border-radius: 5px;
padding: 5px 25px;
font-size: 0.875em;
color: #fff;
}
.e-link--button-red:hover {
background-color: #262626;
}
.e-link--display-none {
display: none;
}
.e-burger-menu {
display: none;
}
.e-burger-menu__bar {
background-color: #fff;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 20px;
margin: 5px auto;
display: block;
height: 3px;
width: 25px;
}
@media (max-width: 767px) {
.e-burger-menu {
cursor: pointer;
display: block;
}
.e-burger-menu.active .e-burger-menu__bar:nth-child(1) {
-webkit-transform: translateY(8px) rotate(45deg);
transform: translateY(8px) rotate(45deg);
}
.e-burger-menu.active .e-burger-menu__bar:nth-child(2) {
opacity: 0;
}
.e-burger-menu.active .e-burger-menu__bar:nth-child(3) {
-webkit-transform: translateY(-8px) rotate(-45deg);
transform: translateY(-8px) rotate(-45deg);
}
}
.e-social-link {
width: 35px;
height: 35px;
margin: 25px 10px;
color: #fff;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.e-social-link__link {
font-size: 30px;
}
.e-social-link:hover {
color: #f2505d;
}
.e-photocard {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin: 30px 5px;
cursor: pointer;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
-webkit-box-flex: 0;
-ms-flex: 0 0 30%;
flex: 0 0 30%;
}
.e-photocard:hover > .e-photocard__photo {
-webkit-transform: perspective(300px) rotateY(-180deg);
transform: perspective(300px) rotateY(-180deg);
}
.e-photocard:hover > .e-photocard__rear-photo {
-webkit-transform: perspective(300px) rotateY(0deg);
transform: perspective(300px) rotateY(0deg);
}
.e-photocard__name {
font-family: "Sen-Regular", sans-serif;
font-size: 1.125em;
margin-top: 12px;
text-align: center;
}
@media (max-width: 767px) {
.e-photocard__name {
max-width: 100px;
}
}
.e-photocard__photo {
width: 300px;
height: 300px;
overflow: hidden;
max-width: 300px;
border-radius: 50%;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: perspective(300px) rotateY(0deg);
transform: perspective(300px) rotateY(0deg);
}
.e-photocard__rear-photo {
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 300px;
height: 300px;
position: absolute;
border-radius: 50%;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: perspective(300px) rotateY(-180deg);
transform: perspective(300px) rotateY(-180deg);
background-image: url(./assets/photos/Beetroot-Logo.png);
}
.e-advantage-item__wrapper {
padding: 0 20px;
}
.e-advantage-item__icon {
width: 40px;
height: 40px;
margin-bottom: 10px;
}
.e-advantage-item__title {
font-weight: 600;
font-size: 1.5em;
margin-bottom: 15px;
}
.e-advantage-item__text {
font-weight: 100;
line-height: 26px;
}
.e-advantage-item__svg {
width: 100%;
height: 100%;
}
.e-advantage-item__svg--black {
fill: #000;
}
.e-advantage-item__svg--red {
fill: #f20707;
}
.e-advantage-item__svg--light-grey {
fill: #404040;
}
.e-advantage-item__svg--light-pink {
fill: #f2505d;
}
.c-header {
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
height: 75px;
background-color: #f25252;
z-index: 800;
}
.c-header__wrapper {
height: 100%;
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin: 0 auto;
}
.c-header__logo {
width: 200px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.c-header__navigation {
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
height: 50px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.c-footer {
min-height: 200px;
background-color: #222222;
}
.c-footer__logo {
width: 200px;
height: 75px;
}
.c-footer__top {
padding-top: 25px;
}
@media (max-width: 479px) {
.c-footer__top {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
}
.c-navigation__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.c-navigation__item {
min-width: 70px;
text-align: center;
font-size: 0.9375em;
padding-left: 50px;
}
@media (max-width: 767px) {
.c-navigation__list {
width: 100%;
height: 100%;
padding: 10px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
position: fixed;
z-index: 1000;
right: -100%;
top: 75px;
background-color: #f25252;
text-align: center;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-navigation__list.active {
right: 0;
}
.c-navigation__item {
font-size: 1em;
padding-left: 0;
margin-bottom: 15px;
}
}
.c-banner {
background-size: cover;
background-position: center center;
min-height: 550px;
}
.c-banner__wrapper {
margin: 130px auto 0 auto;
}
@media (max-width: 479px) {
.c-banner__wrapper {
margin: 230px auto 50px auto;
padding: 0 20px;
}
}
.c-banner__wrapper--logo-mode {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
@media (max-width: 767px) {
.c-banner__wrapper--logo-mode {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
}
.c-banner__wrapper--width-mode .c-banner__info {
max-width: 535px;
}
.c-banner__wrapper--width-mode .c-banner__title {
font-size: 2.8125em;
}
@media (max-width: 479px) {
.c-banner__wrapper--width-mode .c-banner__title {
font-size: 1.875em;
max-width: 100%;
}
}
.c-banner__wrapper--width-mode .c-banner__sub-title {
max-width: 425px;
}
.c-banner__info {
max-width: 420px;
}
.c-banner__title {
font-family: "Sen-Bold", sans-serif;
font-size: 3.875em;
line-height: 1.3;
margin: 0 0 20px;
}
@media (max-width: 479px) {
.c-banner__title {
font-size: 1.875em;
max-width: 160px;
}
}
.c-banner__title--display-none {
display: none;
}
.c-banner__sub-title {
font-family: "Sen-Regular", sans-serif;
font-size: 1.125em;
display: inline-block;
line-height: 1.5;
margin-bottom: 30px;
}
.c-banner__sub-title--display-none {
display: none;
}
.c-banner__img {
width: 200px;
height: 200px;
}
@media (max-width: 767px) {
.c-banner__img {
margin: 10px auto;
}
}
@media (max-width: 479px) {
.c-banner__img {
display: none;
}
}
.c-banner__img--display-none {
display: none;
}
.c-section-services {
font-family: "Sen-Regular", sans-serif;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: #000;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
}
.c-section-services__wrapper {
margin: 65px 0;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding: 0 15px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
}
@media (max-width: 1023px) {
.c-section-services__wrapper {
text-align: center;
}
}
.c-section-services__info {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-bottom: 50px;
padding: 0 10px;
}
@media (max-width: 1023px) {
.c-section-services__info {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
max-width: 700px;
margin: 0 auto;
}
}
.c-section-services__info__title {
margin-right: 50px;
line-height: 1.3;
max-width: 600px;
}
.c-section-services__info__title > h2 {
font-size: 2.8125em;
}
@media (max-width: 1023px) {
.c-section-services__info__title {
margin-right: 0;
max-width: 700px;
margin-bottom: 20px;
}
}
.c-section-services__info__subtitle {
max-width: 450px;
}
@media (max-width: 1023px) {
.c-section-services__info__subtitle {
max-width: 700px;
}
}
.c-section-services__cards {
width: 100%;
}
.c-section-services__cards__wrapper {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
}
@media (max-width: 1023px) {
.c-section-services__cards__wrapper {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
}
.type-animation {
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
font-family: "Source-San-Pro_Bold", monospace;
position: relative;
}
@media (max-width: 1023px) {
.type-animation {
left: 35%;
}
}
@media (max-width: 479px) {
.type-animation {
left: 25%;
}
}
.type-animation::before,
.type-animation::after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.type-animation::before {
background: var(--bg-color);
-webkit-animation: typewriter var(--typewriterSpeed) steps(var(--typewriterCharacters)) 1s forwards;
animation: typewriter var(--typewriterSpeed) steps(var(--typewriterCharacters)) 1s forwards;
}
.type-animation::after {
width: 0.125em;
background: black;
-webkit-animation: typewriter var(--typewriterSpeed) steps(var(--typewriterCharacters)) 1s forwards, blink 750ms steps(var(--typewriterCharacters)) infinite;
animation: typewriter var(--typewriterSpeed) steps(var(--typewriterCharacters)) 1s forwards, blink 750ms steps(var(--typewriterCharacters)) infinite;
}
.c-section-about-us {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-top: 50px;
color: #000;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
}
.c-section-about-us__wrapper {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.c-section-advantages {
color: #000;
}
.c-section-advantages__wrapper {
max-width: 1095px;
margin: 20px auto;
}
.c-section-advantages__header {
position: relative;
margin-bottom: 55px;
}
.c-section-advantages__title {
margin-top: 30px;
font-weight: bold;
font-size: 1.875em;
text-align: center;
}
.c-section-advantages__subtitle {
font-size: 1em;
margin-top: 20px;
text-align: center;
}
.c-section-advantages__content {
display: -ms-grid;
display: grid;
-ms-grid-columns: (1fr)[4];
grid-template-columns: repeat(4, 1fr);
grid-gap: 35px;
}
@media (max-width: 1023px) {
.c-section-advantages__content {
-ms-grid-columns: (1fr)[2];
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 479px) {
.c-section-advantages__content {
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
}
}
.section-establishment {
padding: 65px 0;
}
@media (max-width: 1023px) {
.section-establishment {
padding: 0;
}
}
@media (max-width: 1023px) {
.section-establishment__wrapper {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
}
@media (max-width: 479px) {
.section-establishment__wrapper {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding: 0;
}
}
.section-establishment__media {
border-radius: 5px;
margin: 50px 0;
padding: 15px;
z-index: 2;
}
@media (max-width: 1023px) {
.section-establishment__media {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 10px 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin: 0;
}
.section-establishment__media iframe,
.section-establishment__media video {
width: 100%;
}
.section-establishment__media iframe[poster],
.section-establishment__media video[poster] {
height: 100%;
width: 100%;
}
}
@media (max-width: 1023px) and (max-width: 479px) {
.section-establishment__media video {
height: 100%;
}
}
.section-establishment__media-text {
padding: 20px 0 10px;
}
.section-establishment__audio {
max-width: 320px;
}
.section-establishment__meet {
padding: 85px 50px 85px 225px;
margin-left: -175px;
border-radius: 5px;
z-index: 1;
}
@media (max-width: 1023px) {
.section-establishment__meet {
padding: 85px 45px;
margin-left: 0;
}
}
@media (max-width: 479px) {
.section-establishment__meet {
padding: 50px 25px;
margin-left: 0;
}
}
.section-establishment__meet-title {
font-family: "Sen-Bold", sans-serif;
font-size: 1.875em;
}
.section-establishment__meet-text {
padding-bottom: 10px;
}
.section-recommendation {
padding: 65px 0;
overflow-x: hidden;
}
@media (max-width: 1023px) {
.section-recommendation {
padding: 0;
}
}
@media (max-width: 1023px) {
.section-recommendation__wrapper {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-bottom: 50px;
}
}
@media (max-width: 479px) {
.section-recommendation__wrapper {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-bottom: 20px;
}
}
.section-recommendation__photo {
border-radius: 10px;
overflow: hidden;
margin: auto 0;
z-index: 2;
}
.section-recommendation__info {
padding: 85px 50px 85px 225px;
margin-left: -165px;
border-radius: 10px;
z-index: 1;
}
@media (max-width: 1023px) {
.section-recommendation__info {
padding: 85px 40px;
margin-left: 0;
}
}
@media (max-width: 479px) {
.section-recommendation__info {
padding: 50px 25px;
margin-left: 0;
}
}
.section-recommendation__client {
font-family: "Sen-Bold", sans-serif;
font-size: 2.8125em;
}
:root {
--typewriterSpeed: 6s;
--typewriterCharacters: 15;
--bg-color: white;
}
.c-service-card {
background-color: #262626;
font-family: "Sen-Bold", sans-serif;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
font-size: 2.8125em;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 10px;
margin-bottom: 50px;
position: relative;
min-height: 300px;
overflow: hidden;
color: #fff;
cursor: pointer;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
}
.c-service-card__item {
width: 100%;
padding: 0 10px;
max-width: 320px;
}
@media (max-width: 1023px) {
.c-service-card__item {
width: 100%;
margin-bottom: 40px;
max-width: 700px;
}
}
.c-service-card__number {
position: absolute;
font-size: 0.875em;
left: 30px;
top: 30px;
opacity: 0;
-webkit-transform: translateY(3rem);
transform: translateY(3rem);
-webkit-animation: fadeInUp 2s ease calc(var(--typewriterSpeed) + 2s) forwards;
animation: fadeInUp 2s ease calc(var(--typewriterSpeed) + 2s) forwards;
}
.c-service-card__title {
font-size: 0.875em;
text-align: center;
}
.c-service-card__icon {
width: 150px;
height: 150px;
padding: 5px;
position: absolute;
right: -40px;
bottom: -60px;
}
#icon-rectangle {
fill: none;
}
.loading {
background: #141414;
text-transform: uppercase;
font-family: "Cabin Condensed", sans-serif;
font-weight: bold;
font-size: 100pt;
text-align: center;
height: 120px;
line-height: 110px;
vertical-align: bottom;
position: absolute;
left: 0;
right: 0;
top: 45%;
bottom: 0;
display: block;
}
@media (max-width: 767px) {
.loading {
font-size: 60pt;
height: 90px;
}
}
@media (max-width: 479px) {
.loading {
font-size: 40pt;
height: 80px;
}
}
.loading-2 {
top: 300px;
width: 473px;
height: 97px;
font-size: 0;
background: rgba(255, 255, 255, 0.06);
margin: 0 auto;
}
.ff {
position: absolute;
font-size: 12pt;
top: -20px;
color: white;
line-height: 12pt;
}
.loading-2-text {
background-image: url("./assets/images/red.jpeg");
width: 473px;
height: 97px;
display: inline-block;
}
@-webkit-keyframes wave-animation {
0% {
background-position: 0 bottom;
}
100% {
background-position: 200px bottom;
}
}
@keyframes wave-animation {
0% {
background-position: 0 bottom;
}
100% {
background-position: 200px bottom;
}
}
@-webkit-keyframes loading-animation {
0% {
background-size: 200px 0px;
}
100% {
background-size: 200px 200px;
}
}
@keyframes loading-animation {
0% {
background-size: 200px 0px;
}
100% {
background-size: 200px 200px;
}
}
.wave {
background-image: url("./assets/images/red.jpeg");
-webkit-background-clip: text;
background-clip: text;
color: rgba(0, 0, 0, 0);
text-shadow: 0px 0px rgba(255, 255, 255, 0.06);
-webkit-animation: wave-animation 2s infinite linear, loading-animation 3s infinite linear alternate;
animation: wave-animation 2s infinite linear, loading-animation 3s infinite linear alternate;
background-size: 200px 100px;
background-repeat: repeat-x;
opacity: 1;
}
@media (max-width: 767px) {
.wave {
-webkit-animation: wave-animation 2s infinite linear, loading-animation 5s infinite linear alternate;
animation: wave-animation 2s infinite linear, loading-animation 5s infinite linear alternate;
}
}
@media (max-width: 479px) {
.wave {
-webkit-animation: wave-animation 2s infinite linear, loading-animation 7s infinite linear alternate;
animation: wave-animation 2s infinite linear, loading-animation 7s infinite linear alternate;
}
}
.wave-2 {
background-clip: initial;
display: inline-block;
}
.c-banner-contact {
background-image: -webkit-gradient(linear, left bottom, left top, from(#222222), to(rgba(34, 34, 34, 0))), url("./assets/images/banner-contact.jpeg");
background-image: linear-gradient(360deg, #222222, rgba(34, 34, 34, 0)), url("./assets/images/banner-contact.jpeg");
background-size: cover;
background-position: center center;
font-family: "Sen-Bold";
min-height: 550px;
}
.c-banner-contact__wrapper {
margin: 0 auto;
}
@media (max-width: 1023px) {
.c-banner-contact__wrapper {
margin: 50px auto 20px;
}
}
.c-banner-contact__title {
width: 100%;
font-size: 2.375em;
line-height: 1.3;
margin: 0 0 20px;
}
@media (max-width: 767px) {
.c-banner-contact__title {
font-size: 2.125em;
text-align: center;
}
}
@media (max-width: 479px) {
.c-banner-contact__title {
display: none;
}
}
@media (max-width: 767px) {
.c-banner-contact__tiles {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
}
.c-banner-contact__item {
background-color: #fff;
color: #262626;
border-radius: 5px;
padding: 40px;
max-width: 350px;
margin-right: 20px;
}
@media (max-width: 767px) {
.c-banner-contact__item {
margin-bottom: 20px;
padding: 20px;
max-width: 280px;
margin-right: 0;
}
}
.c-banner-contact__item__icon {
margin-bottom: 30px;
color: #f25252;
width: 40px;
height: 40px;
}
.c-banner-contact__item__title {
font-weight: 900;
font-size: 1.875em;
margin-bottom: 10px;
}
.c-banner-contact__item__text {
font-family: "Sen-Regular";
font-size: 0.875em;
max-width: 240px;
font-weight: 300;
text-align: center;
min-height: 50px;
}
.c-section-form {
color: #262626;
font-family: "Sen-Regular", sans-serif;
margin: 80px;
}
@media (max-width: 767px) {
.c-section-form {
margin: 30px;
}
}
@media (max-width: 1023px) {
.c-section-form__wrapper {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
}
.c-section-form__contact-info {
font-size: 0.875em;
}
.c-section-form__title {
font-size: 2em;
font-family: "Sen-Bold", sans-serif;
margin-bottom: 10px;
white-space: nowrap;
}
@media (max-width: 479px) {
.c-section-form__title {
font-size: 1.625em;
}
}
.c-section-form__text {
margin-bottom: 40px;
}
.c-section-form__form {
width: 100%;
margin-left: 150px;
}
@media (max-width: 1023px) {
.c-section-form__form {
margin-top: 50px;
margin-left: 0;
}
}
.c-form-contact {
font-family: "Sen-Regular", sans-serif;
color: #262626;
width: 100%;
}
.c-form-contact__title {
font-family: "Sen-Bold", sans-serif;
margin-bottom: 10px;
font-size: 1.75em;
}
@media (max-width: 479px) {
.c-form-contact__title {
font-size: 1.375em;
}
}
.c-form-contact__text {
margin-bottom: 10px;
font-size: 0.875em;
}
.c-form-contact__item {
margin-bottom: 10px;
}
.c-form-contact__label {
margin-bottom: 5px;
font-size: 0.875em;
width: 100%;
}
.c-form-contact__input {
border: 1px solid #262626;
padding: 8px 12px;
border-radius: 3px;
font-size: 0.75em;
width: 100%;
outline: none;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
color: #262626;
min-height: 30px;
}
.c-form-contact__input:focus, .c-form-contact__input:hover {
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
border-color: #f25252;
}
.c-form-contact__button {
max-width: -webkit-fit-content;
max-width: -moz-fit-content;
max-width: fit-content;
color: #fff;
font-family: "Sen-Bold", sans-serif;
background-color: #f25252;
border-radius: 5px;
padding: 5px 25px;
font-size: 0.875em;
border: none;
-webkit-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-form-contact__button:hover {
background-color: #262626;
}
@-webkit-keyframes rotate {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes rotate {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes spin-reverse {
from {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
to {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
@keyframes spin-reverse {
from {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
to {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
@-webkit-keyframes typewriter {
to {
left: 100%;
}
}
@keyframes typewriter {
to {
left: 100%;
}
}
@-webkit-keyframes blink {
to {
background: transparent;
}
}
@keyframes blink {
to {
background: transparent;
}
}
@-webkit-keyframes fadeInUp {
to {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInUp {
to {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
} | 0.370795 | 0.061763 |
* {
padding: 0;
margin: 0;
}
body {
background-color: aliceblue;
font-size: 18px;
margin: 0 auto;
color: black;
font-family: -apple-system, BlinkMacSystemFont,
Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans,
Droid Sans, Helvetica Neue, sans-serif;
scroll-behavior: smooth;
}
a {
text-decoration: none;
}
header {
display: flex;
height: 100px;
justify-content: center;
align-items: center;
background-color: rgb(235, 233, 233);
}
.logo {
margin-left: 100px;
width: 50%;
}
.banner {
background-image: url(./img/home.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
height: 500px;
display: flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
padding: 0 50px;
}
.content-banner {
width: 50%;
color: #4CAC33;
padding-top: 40px;
}
.content-banner p {
color: black;
font-weight: bold;
}
.title-banner {
margin: 0;
font-weight: 700;
font-size: 65px;
}
.cards {
margin-top: 30px;
}
.card-img {
width: 20%;
min-width: 100px;
}
.box {
width: 360px;
height: 400px;
background-color: rgb(21, 159, 90);
/* backdrop-filter: blur(10px); */
border-radius: 20px;
display: flex;
flex-direction: column;
align-items: center;
color: white;
padding: 0 20px;
}
.box .title {
text-align: center;
margin: 20px;
}
.options-box {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-bottom: 20px;
}
.options-box>div {
width: 140px;
border: 5px solid #4CAC33;
border-radius: 20px;
padding: 10px;
margin-bottom: 10px;
cursor: pointer;
}
.optionSelect {
background-color: #4cc72e;
}
.icon-option {
font-size: 30px;
display: flex;
justify-content: center;
color: white;
}
.subtitle-option {
text-align: center;
font-weight: bold;
color: white;
}
.more-detail {
text-align: center;
cursor: pointer;
color: white;
transition: .3s;
}
.more-detail:hover {
text-decoration: underline;
}
.btn-box {
margin-top: 20px;
background-color: #4CAC33;
outline: none;
cursor: pointer;
border: none;
font-size: 16px;
border-radius: 20px;
padding: 10px;
font-weight: bold;
transition: .3s;
}
.btn-box a {
color: white;
}
.btn-box:hover {
background-color: #60ff38;
}
.info {
background-color: white;
padding: 2% 15%;
text-align: center;
}
@media (max-width:930px) {
.banner {
height: 800px;
}
.content-banner {
width: 100%;
text-align: center;
}
.content-banner p {
color: wheat;
text-shadow: 1px 1px 1px black;
font-weight: bold;
}
.box {
width: 90vw;
height: 380px;
}
.options-box {
flex-direction: row;
}
.info {
padding: 20px 10%;
}
}
@media (max-width:500px) {
.banner {
height: 1200px;
}
.banner p {
color: wheat;
font-weight: bold;
}
.box {
height: 650px;
}
.options-box{
padding: 20px;
}
.info {
padding: 20px 5%;
}
}
@media (max-width:300px) {
.logo {
margin-left: 70px;
}
.title-banner {
font-size: 45px;
}
.banner {
height: 1400px;
}
.box {
height: 650px;
}
.info {
height: 350px;
}
} | style.css | * {
padding: 0;
margin: 0;
}
body {
background-color: aliceblue;
font-size: 18px;
margin: 0 auto;
color: black;
font-family: -apple-system, BlinkMacSystemFont,
Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans,
Droid Sans, Helvetica Neue, sans-serif;
scroll-behavior: smooth;
}
a {
text-decoration: none;
}
header {
display: flex;
height: 100px;
justify-content: center;
align-items: center;
background-color: rgb(235, 233, 233);
}
.logo {
margin-left: 100px;
width: 50%;
}
.banner {
background-image: url(./img/home.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
height: 500px;
display: flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
padding: 0 50px;
}
.content-banner {
width: 50%;
color: #4CAC33;
padding-top: 40px;
}
.content-banner p {
color: black;
font-weight: bold;
}
.title-banner {
margin: 0;
font-weight: 700;
font-size: 65px;
}
.cards {
margin-top: 30px;
}
.card-img {
width: 20%;
min-width: 100px;
}
.box {
width: 360px;
height: 400px;
background-color: rgb(21, 159, 90);
/* backdrop-filter: blur(10px); */
border-radius: 20px;
display: flex;
flex-direction: column;
align-items: center;
color: white;
padding: 0 20px;
}
.box .title {
text-align: center;
margin: 20px;
}
.options-box {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-bottom: 20px;
}
.options-box>div {
width: 140px;
border: 5px solid #4CAC33;
border-radius: 20px;
padding: 10px;
margin-bottom: 10px;
cursor: pointer;
}
.optionSelect {
background-color: #4cc72e;
}
.icon-option {
font-size: 30px;
display: flex;
justify-content: center;
color: white;
}
.subtitle-option {
text-align: center;
font-weight: bold;
color: white;
}
.more-detail {
text-align: center;
cursor: pointer;
color: white;
transition: .3s;
}
.more-detail:hover {
text-decoration: underline;
}
.btn-box {
margin-top: 20px;
background-color: #4CAC33;
outline: none;
cursor: pointer;
border: none;
font-size: 16px;
border-radius: 20px;
padding: 10px;
font-weight: bold;
transition: .3s;
}
.btn-box a {
color: white;
}
.btn-box:hover {
background-color: #60ff38;
}
.info {
background-color: white;
padding: 2% 15%;
text-align: center;
}
@media (max-width:930px) {
.banner {
height: 800px;
}
.content-banner {
width: 100%;
text-align: center;
}
.content-banner p {
color: wheat;
text-shadow: 1px 1px 1px black;
font-weight: bold;
}
.box {
width: 90vw;
height: 380px;
}
.options-box {
flex-direction: row;
}
.info {
padding: 20px 10%;
}
}
@media (max-width:500px) {
.banner {
height: 1200px;
}
.banner p {
color: wheat;
font-weight: bold;
}
.box {
height: 650px;
}
.options-box{
padding: 20px;
}
.info {
padding: 20px 5%;
}
}
@media (max-width:300px) {
.logo {
margin-left: 70px;
}
.title-banner {
font-size: 45px;
}
.banner {
height: 1400px;
}
.box {
height: 650px;
}
.info {
height: 350px;
}
} | 0.510496 | 0.112405 |
.hide {
visibility: hidden;
font-size: 1px;
}
/******************************************
/* BASE STYLES
/*******************************************/
html{
height: 100vh;
}
body {
color: #000;
font-size: 10px;
line-height: 1.4;
font-family: "Lato", Arial, sans-serif;
background: linear-gradient(360deg, rgba(25,13,41,1) 39%, rgba(33,14,59,1) 80%, rgba(38,27,99,1) 100%);
margin: 0;
}
/******************************************
/* LAYOUT
/*******************************************/
/******************************************
/* HEADER
/*******************************************/
header{
display: flex;
align-items: center;
border-bottom: 1px solid rgb(181,176,255, .15);
height: 10vh;
background: rgb(25, 25, 25, .2);
justify-content: space-between;
}
#logo img{
height: 10vh;
}
#dropdown {
display: flex;
font-size: 1.1vw;
font-family: "Playfair Display";
/* flex: 1; */
}
#dropdown div {
display: flex;
justify-content: space-between;
align-items: center;
}
#dropdown a, #dropdown input{
background: transparent;
border-radius: 30px;
margin-right: 20px;
}
#dropdown input{
background: rgb(121, 90, 140, .2);
box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
border: none;
font-size: 2vh;
font-family: "Lato";
padding: 7px 20px;
color: lightgrey;
}
#dropdown input:hover, .fave:hover{
background-color:rgb(209, 160, 238);
}
i:hover{
color:rgb(209, 160, 238);
}
h1{
color: white;
font-size: 2vw;
font-family: "Playfair Display";
}
/******************************************
/* HERO SECTION
/*******************************************/
#hero{
display: flex;
flex-flow: column;
align-content: center;
justify-content: space-evenly;
}
#eachBook {
display: flex;
align-items: center;
justify-content: space-evenly;
background: linear-gradient(#352d5740, rgba(0, 0, 0, 0));
list-style: none;
margin: 2vh 10vw;
color: white;
font-size: 2.3vw;
padding: 20px;
border-radius: 20px;
}
#title, #author{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 20vw;
}
#author{
font-size: 1.7vw;
color: pink;
}
li img {
margin-right: 15px;
border-radius: 15px;
} | public/fave.css | .hide {
visibility: hidden;
font-size: 1px;
}
/******************************************
/* BASE STYLES
/*******************************************/
html{
height: 100vh;
}
body {
color: #000;
font-size: 10px;
line-height: 1.4;
font-family: "Lato", Arial, sans-serif;
background: linear-gradient(360deg, rgba(25,13,41,1) 39%, rgba(33,14,59,1) 80%, rgba(38,27,99,1) 100%);
margin: 0;
}
/******************************************
/* LAYOUT
/*******************************************/
/******************************************
/* HEADER
/*******************************************/
header{
display: flex;
align-items: center;
border-bottom: 1px solid rgb(181,176,255, .15);
height: 10vh;
background: rgb(25, 25, 25, .2);
justify-content: space-between;
}
#logo img{
height: 10vh;
}
#dropdown {
display: flex;
font-size: 1.1vw;
font-family: "Playfair Display";
/* flex: 1; */
}
#dropdown div {
display: flex;
justify-content: space-between;
align-items: center;
}
#dropdown a, #dropdown input{
background: transparent;
border-radius: 30px;
margin-right: 20px;
}
#dropdown input{
background: rgb(121, 90, 140, .2);
box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
border: none;
font-size: 2vh;
font-family: "Lato";
padding: 7px 20px;
color: lightgrey;
}
#dropdown input:hover, .fave:hover{
background-color:rgb(209, 160, 238);
}
i:hover{
color:rgb(209, 160, 238);
}
h1{
color: white;
font-size: 2vw;
font-family: "Playfair Display";
}
/******************************************
/* HERO SECTION
/*******************************************/
#hero{
display: flex;
flex-flow: column;
align-content: center;
justify-content: space-evenly;
}
#eachBook {
display: flex;
align-items: center;
justify-content: space-evenly;
background: linear-gradient(#352d5740, rgba(0, 0, 0, 0));
list-style: none;
margin: 2vh 10vw;
color: white;
font-size: 2.3vw;
padding: 20px;
border-radius: 20px;
}
#title, #author{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 20vw;
}
#author{
font-size: 1.7vw;
color: pink;
}
li img {
margin-right: 15px;
border-radius: 15px;
} | 0.36139 | 0.157817 |
.sheet-TavernTalesSystemContainer {
background-color: sienna;
margin-top: -28px;
margin-left: -30px;
}
div.sheet-TavernTalesSystemContainer ul {
font-size: small;
}
/* ---------------------------------------------------*/
div.sheet-NewHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"] {
width: calc(100%);
height: 20px;
/* left: -36px; */
/*
top: -2px;
margin: 0px;
*/
position: relative;
cursor: pointer;
z-index: 1;
display: block;
padding: 2px;
}
div.sheet-NewHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"]:not(:checked)::before {
display: block;
content: "▲" attr(title);
/* margin-left: 25px; */
background-color: wheat;
padding: 2px;
padding-left: 4px;
height: 1.5em;
width: calc(100% - 5px);
/* left: -64px; */
border-top-left-radius: 8px;
border-top-right-radius: 8px;
font-size: 1.1em;
}
div.sheet-NewHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"][name="attr_showSidebar"]:not(:checked)::before {
display: inherit;
background-color: burlywood;
content: "►" attr(title);
}
div.sheet-NewHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"][name="attr_showSidebar"]:checked::before {
/* display: inherit; */
background-color: burlywood;
}
div.sheet-NewHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"]:checked::before {
display: block;
content: "▼" attr(title);
margin-left: 1px;
background: #fcf4e8;
padding: 2px;
padding-left: 4px;
height: 1.5em;
width: calc(100% - 8px);
/* left: -72px; */
border-top-left-radius: 8px;
border-top-right-radius: 8px;
font-size: 1.1em;
}
div.sheet-HideableSection > input.sheet-hiddenSectionToggle:checked + span + div,
div.sheet-NewHideableSection > input.sheet-hiddenSectionToggle:checked + div
{
display: block;
width: calc(100% - 21px);
padding: 5px;
margin: 5px;
}
div.sheet-HideableSection > input.sheet-hiddenSectionToggle:not(:checked) + span + div
{
display: none;
}
div.sheet-NewHideableSection > input.sheet-hiddenSectionToggle:not(:checked) + div {
background-color: burlywood;
/* height: 22px; */
display: none;
}
/* ---------------------------------------------------*/
div.sheet-statName {
width: 33px;
display: inline-block;
}
div.sheet-TavernTalesSystemSidebar {
display: inline-block;
position: sticky;
width: 110px;
height: 200px;
top: 69px;
background-color: burlywood;
vertical-align: top;
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
}
div.sheet-rollButtonsContainer {
position: sticky;
}
input.sheet-HiddenCheckbox[name="attr_showSidebar"]:not(:checked) ~* div.sheet-TavernTalesSystemSidebar div.sheet-sidebarStats {
display: none;
}
input.sheet-HiddenCheckbox[name="attr_showSidebar"]:not(:checked) ~* div.sheet-TavernTalesSystemSidebar {
width: 15px;
}
input.sheet-HiddenCheckbox[name="attr_showSidebar"]:not(:checked) ~* div.sheet-TavernTalesSheetBody {
margin-left: 30px;
width: calc(100% - 100px);
}
.sheet-sidebarHiderWidget {
right: 0;
}
.sheet-TavernTalesSheetBody {
display: inline-block;
color: black;
font-family: "Times New Roman", Times, serif;
/*background-color: #B8B894;*/
padding:15px;
/*
width: 85%;
margin-left: 105px;
margin-top: -200px;
*/
width: calc(100% - 156px);
}
img.sheet-logo {
width:50%;
}
.sheet-TavernTalesSheetBody .sheet-col h3 {
font-size: 3.0em;
color: black;
font-size: 1.5em;
}
.sheet-TavernTalesHeader {
display: block;
width: 100%;
}
.sheet-TavernTalesContent {
display: block;
width: 100%;
}
.sheet-TavernTalesColumn {
display: inline-block;
vertical-align: top;
width: 43%;
padding-right: 5%;
}
.sheet-ColumnThirds {
display: inline-block;
width: calc(33% - 21px);
vertical-align: top;
}
.sheet-TavernTalesFooter {
display: block;
width: 100%;
}
.sheet-Attributes th {
color: black;
font-size: 1.0em;
width: 50px;
padding-top: 10px;
padding-right: 0px;
padding-bottom: 10px;
padding-left: 0px;
}
.sheet-TTStatsTable {
/* width: 90%; */
}
.sheet-stats {
text-align: center;
position: relative;
}
.sheet-traitXP{
position: absolute;
right: 5px;
top: 5px;
font-size: 0.5em;
}
.sheet-traitXP input{
height: 2em;
font-size: 1em;
padding: 0;
vertical-align: text-bottom;
-moz-appearance: textfield;
}
.sheet-TTConditions{
margin-left:20px;
width:90%;
}
.sheet-TTConditions checkbox{
margin: 4px;
padding: 4px;
}
.sheet-TTConditions input[type="text"]{
width: 80%;
}
.sheet-TTConditions textarea{
width: 80%;
height: 60px;
}
button[type="roll"].sheet-TTInfoButton {
font-size: smaller;
display: inline-block;
}
button[type="roll"].sheet-TTInfoButton::before {
content: none;
}
input.sheet-TTResourceName {
width: 110px;
margin: 0;
padding: 0;
padding-left: 3px;
}
div.sheet-TTResourceCheckboxes {
text-align: center;
}
div.sheet-Resources {
width: calc(100% - 21px);
margin-left: 20px;
}
select.sheet-ResourcesMaxCheckboxes {
width: 35px;
margin: 0;
padding: 0;
font-size: 1em;
height: auto;
}
input.sheet-TTcheckbox {
}
input[type="checkbox"].sheet-HiddenCheckbox {
display: none;
}
div.sheet-TTResourceCheckboxes input[type="checkbox"] {
display: none;
margin: -2px;
padding: 0;
width: 14px;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="1"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="2"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="2"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="3"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="3"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="3"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="4"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="4"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="4"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="4"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse4"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="5"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="5"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="5"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="5"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse4"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="5"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse5"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="6"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="6"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="6"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="6"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse4"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="6"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse5"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="6"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse6"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="7"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="7"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="7"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="7"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse4"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="7"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse5"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="7"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse6"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="7"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse7"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse4"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse5"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse6"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse7"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse8"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse4"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse5"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse6"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse7"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse8"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse9"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse4"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse5"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse6"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse7"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse8"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse9"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse10"] {
display: inline-block;
}
.sheet-combatDamage select {
margin: 0px;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
width:90px;
}
.sheet-combatDamage .sheet-dieTypeSelect {
margin: 0px;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
width:50px;
}
.sheet-TTTraitType {
margin: 0px;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
width:50px;
}
.sheet-TTitemName {
width:30%;
display:inline-block;
}
.sheet-TTitemDesc {
width:65%;
display:inline-block;
margin: 0;
padding: 0;
padding-left: 3px;
}
.sheet-BuffEntryField {
width:100%;
height:100px;
}
div.sheet-sidebar {
display: inline-block;
width: 93px;
vertical-align: top;
margin-left: 8px;
}
div.sheet-versionInfo {
float: right;
background-color: rgba(255,255,255, 0.3);
padding-left: 5px;
padding-right: 5px;
}
input[name="attr_version"][value="0.9"]:not(:checked) ~* div.sheet-version09content,
input[name="attr_version"][value="1.0"]:not(:checked) ~* div.sheet-version10content,
input[name="attr_version"][value="2.0"]:not(:checked) ~* div.sheet-version20content {
display: none;
}
input[name="attr_version"][value="2.0"]:checked ~* div.sheet-version20content,
input[name="attr_version"][value="1.0"]:checked ~* div.sheet-version10content,
input[name="attr_version"][value="0.9"]:checked ~* div.sheet-version09content {
display: block;
}
div.sheet-ExampleFeats09, div.sheet-ExampleFeats10, div.sheet-ExampleFeats20 {
display: none;
}
input[name="attr_version"][value="2.0"]:checked ~* div.sheet-ExampleFeats20,
input[name="attr_version"][value="0.9"]:checked ~* div.sheet-ExampleFeats09,
input[name="attr_version"][value="1.0"]:checked ~* div.sheet-ExampleFeats10 {
display: inline-block;
width: calc(100% - 115px);
}
.sheet-feats {
margin: 0px;
padding: 10px;
}
div.sheet-traits input[type="text"].sheet-TTtraitName,
div.sheet-notes input[type="text"].sheet-TTnoteDesc,
div.sheet-Contacts input[type="text"].sheet-TTcontactName {
padding:0px;
margin:0px;
display: block;
}
.sheet-TTcharacterName {
width: 100%;
}
.sheet-TTXPTreasureTable {
width: 100%;
margin: auto;
}
.sheet-TTbioDesc {
height: 75px;
width: 100%
}
/* Make traits appear in columns (inline-block) instead of a vertical list (block) */
div.sheet-traits div,
div.sheet-notes div,
div.sheet-Contacts div {
display: inline-block;
padding: 0;
margin: 0;
}
div.sheet-traits textarea.sheet-TTtraitDesc,
div.sheet-Contacts textarea.sheet-TTcontactDesc,
div.sheet-notes textarea.sheet-TTnoteDesc,
div.sheet-notes textarea.sheet-TTnoteDesc p,
div.sheet-notes textarea.sheet-TTnoteDesc div,
div.sheet-notes textarea.sheet-TTnoteDesc ul,
div.sheet-notes textarea.sheet-TTnoteDesc ol, {
padding:0px;
/* margin:0px; */
width:100%;
height: 130px;
font-size: x-small;
}
.sheet-artistCredit {
text-align: right;
}
.sheet-TTBIGTitles {
font-family: "Times New Roman", Times, serif;
text-align:right;
font-size: 1.0em;
font-weight: bold;
width:100%;
}
.sheet-TTBIGs {
margin-left:auto;
margin-right:0%;
width:75%;
height:100px;
height:1em;
}
input[type="number"] {
width: 30px;
}
/* lists and definitions */
.sheet-definitions {
display: block;
margin-top: 1em;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
}
.sheet-dt, .sheet-traitName, .sheet-traitType {
display: block;
padding: 3px;
}
.sheet-traitName {
user-select: text;
font-weight: bold;
margin-top: 5px;
}
.sheet-traitType {
font-weight: bold;
/* margin-left: 12px; */
font-size: 0.75em;
margin-top: 0;
padding-top: 0;
line-height: 1em;
}
div.sheet-traitDescription,
div.sheet-traitDescription p,
div.sheet-traitDescription ul,
div.sheet-traitDescription ul li,
div.sheet-traitDescription ol,
div.sheet-traitDescription ol li {
user-select: text;
/* width: 80%; */
font-size: 10px;
line-height: 1.2;
/* margin: 0; */
padding: 0;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
div.sheet-traitDescription {
margin-left: 5%;
margin-right: 5%;
}
div.sheet-traitDescription div.sheet-traitNotes {
border: 1px solid;
border-radius: 8px;
padding: 10px;
margin: 10px;
box-shadow: 0px 1px 3px;
background-color: rgba(196,196,196,0.33);
}
.sheet-dd, .sheet-def {
display: block;
margin-left: 16px;
font-weight: normal;
padding: 2px;
}
.sheet-traitMechanic {}
.sheet-traitExample {
border: 0;
border-radius: 8px;
padding-left: 5px;
padding-right: 5px;
margin-left: 5px;
margin-right: 5px;
margin-top: 3px;
background-color: rgba(222, 184, 135, 0.15);
}
.sheet-def::before {
font-weight: bold;
margin-left: -16px;
content: attr(title);
display: block;
}
.sheet-definition:nth-of-type(odd), .sheet-exampleTrait:nth-of-type(odd) {
background-color: beige;
}
.sheet-NewspaperColumns {
/* Newspaper-like columns with automatic text flow across regions */
-webkit-column-count: 2; /* Chrome, Safari, Opera */
-moz-column-count: 2; /* Firefox */
column-count: 2;
-webkit-column-gap: 40px; /* Chrome, Safari, Opera */
-moz-column-gap: 40px; /* Firefox */
column-gap: 40px;
-webkit-column-rule: 4px outset BlanchedAlmond; /* Chrome, Safari, Opera */
-moz-column-rule: 4px outset BlanchedAlmond; /* Firefox */
column-rule: 4px outset BlanchedAlmond;
overflow:auto;
text-align: justify;
}
/*
ooooo ooooo oooo
`888' `888' `888
888 888 .ooooo. 888 oo.ooooo.
888ooooo888 d88' `88b 888 888' `88b
888 888 888ooo888 888 888 888
888 888 888 .o 888 888 888
o888o o888o `Y8bod8P' o888o 888bod8P'
888
o888o
*/
/* Popup Help */
.sheet-showHelpTipsToggle {
/* float: right; */
}
.sheet-popupHelp span, .sheet-popupHelpSmall span, .sheet-popupHelpLarge span {
display:none;
z-index:10;
padding:14px 20px;
left:33%;
}
/*
input[name="attr_showHelpTipsToggle"]:not(:checked) ~* div.sheet-popupHelp,
input[name="attr_showHelpTipsToggle"]:not(:checked) ~* div.sheet-popupHelpSmall,
input[name="attr_showHelpTipsToggle"]:not(:checked) ~* div.sheet-popupHelpLarge {
display: inline-block;
}
*/
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelp:hover span,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpSmall:hover span,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpLarge:hover span
{
display:inline;
position:absolute;
color:#111;
border:1px solid #DCA;
background:#fffAF0;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
font-size: 8pt;
line-height: 1;
font-weight: normal;
border-radius:4px;
box-shadow: 5px 5px 8px #CCC;
float: none;
width:66%;
left: 12.5%;
top: 0%;
overflow: auto;
padding: 5px;
margin: 0px;
}
.sheet-popupHelp span{
height: 100px;
}
.sheet-popupHelpSmall span {
height: 35px;
}
.sheet-popupHelpLarge span {
height: auto;
}
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelp:hover span p,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpSmall:hover span p,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpLarge:hover span p {
font-size: 8pt;
line-height: 1;
font-weight: normal;
text-align: left;
}
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelp,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpSmall,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpLarge {
display: inline;
}
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelp::after,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpSmall::after,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpLarge::after {
background-color:black;
color: white;
border-radius: 8px;
font-size: 8pt;
line-height: 1.66;
font-weight: normal;
vertical-align: top;
border: 1px;
display: inline-block;
padding-left: 6px;
padding-right: 6px;
margin-left: 4px;
content: "?";
}
input[name="attr_showHelpTipsToggle"]:not(:checked) ~* .sheet-popupHelp,
input[name="attr_showHelpTipsToggle"]:not(:checked) ~* .sheet-popupHelpSmall,
input[name="attr_showHelpTipsToggle"]:not(:checked) ~* .sheet-popupHelpLarge {
background:none;
display:inline-block;
}
/* Tooltips related to game balance */
.sheet-gameBalance, .sheet-traitSkins, .sheet-references, .sheet-drillDeeper {
display: inline;
float:right;
width: 32px;
height: 32px;
}
.sheet-gameBalance::before {
content: url(http://i.imgur.com/FpBUPXX.png);
}
.sheet-traitSkins::before {
content: url(http://i.imgur.com/MDUllv0.png);
}
.sheet-references::before {
content: url(http://i.imgur.com/N9TQaWD.png);
}
.sheet-drillDeeper:before {
content: url(http://i.imgur.com/Hh2zVdd.png);
}
.sheet-gameBalance > span,
.sheet-traitSkins > span,
.sheet-references > span,
.sheet-drillDeeper > span {
display:none;
z-index:10;
padding:14px 20px;
left:33%;
}
.sheet-gameBalance:hover > span,
.sheet-traitSkins:hover > span,
.sheet-references:hover > span,
.sheet-drillDeeper:hover > span {
display:inline;
position:absolute;
color:cornsilk;
background:DimGrey;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
font-size: 1em;
border:1px solid #DCA;
border-radius:4px;
box-shadow: 5px 5px 8px #CCC;
float: none;
width:33%;
left: 27.5%;
overflow: auto;
}
/*
ooooo ooooo o8o .o8 .o8
`888' `888' `"' "888 "888
888 888 oooo .oooo888 .oooo888 .ooooo. ooo. .oo.
888ooooo888 `888 d88' `888 d88' `888 d88' `88b `888P"Y88b
888 888 888 888 888 888 888 888ooo888 888 888
888 888 888 888 888 888 888 888 .o 888 888
o888o o888o o888o `Y8bod88P" `Y8bod88P" `Y8bod8P' o888o o888o
*/
input.sheet-hiddenSectionToggle
{
/* float: left; */
}
/* Hide actual checkbox */
div.sheet-TavernTalesHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"]
{
opacity: 0;
width: 16px;
height: 16px;
position: relative;
top: 5px;
left: 6px;
margin: -7px;
cursor: pointer;
z-index: 1;
}
/* Fake checkbox */
div.sheet-TavernTalesHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"] + span::before
{
margin-right: 4px;
line-height: 14px;
text-align: center;
display: inline;
vertical-align: middle;
content: "►";
width: 14px;
height: 14px;
font-size: 12px;
}
div.sheet-TavernTalesHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"]:checked + span::before
{
content: "▼";
}
input.sheet-hiddenSectionToggle:checked + span + div
{
display: block;
width: 90%;
padding: 5px;
margin: 5px;
}
input.sheet-hiddenSectionToggle:not(:checked) + span + div
{
display: none;
}
.sheet-TavernTalesHideableSection, .sheet-NewHideableSection {
position: relative;
border-color: black;
border-width: 3px;
border-style: solid;
border-radius: 8px;
background-color: #fcf4e8;
}
.sheet-TavernTalesSystemSidebar {
border-radius: 0;
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
border-color: burlywood;
border-width: 2px;
box-shadow: 5px 0px 5px -2px rgba(0,0,0,0.8);
}
div.sheet-exampleTrait {
display:none;
}
input[name|="attr_traitTags"][value="all"]:checked ~* div.sheet-exampleTrait,
input[name|="attr_traitTags"][value="Arcane"]:checked ~* div.sheet-exampleTrait[title*="arcane"],
input[name|="attr_traitTags"][value="Artifice"]:checked ~* div.sheet-exampleTrait[title*="artifice"],
input[name|="attr_traitTags"][value="Alchemy"]:checked ~* div.sheet-exampleTrait[title*="alchemy"],
input[name|="attr_traitTags"][value="Beast"]:checked ~* div.sheet-exampleTrait[title*="beast"],
input[name|="attr_traitTags"][value="Elements"]:checked ~* div.sheet-exampleTrait[title*="elements"],
input[name|="attr_traitTags"][value="BardicLore"]:checked ~* div.sheet-exampleTrait[title*="bardic lore"],
input[name|="attr_traitTags"][value="Command"]:checked ~* div.sheet-exampleTrait[title*="command"],
input[name|="attr_traitTags"][value="Dragon"]:checked ~* div.sheet-exampleTrait[title*="dragon"],
input[name|="attr_traitTags"][value="Faith"]:checked ~* div.sheet-exampleTrait[title*="faith"],
input[name|="attr_traitTags"][value="Heritage"]:checked ~* div.sheet-exampleTrait[title*="heritage"],
input[name|="attr_traitTags"][value="Nature"]:checked ~* div.sheet-exampleTrait[title*="nature"],
input[name|="attr_traitTags"][value="MartialArts"]:checked ~* div.sheet-exampleTrait[title*="martial arts"],
input[name|="attr_traitTags"][value="Occultism"]:checked ~* div.sheet-exampleTrait[title*="occultism"],
input[name|="attr_traitTags"][value="Psionics"]:checked ~* div.sheet-exampleTrait[title*="psionics"],
input[name|="attr_traitTags"][value="Savagery"]:checked ~* div.sheet-exampleTrait[title*="savagery"],
input[name|="attr_traitTags"][value="Thievery"]:checked ~* div.sheet-exampleTrait[title*="thievery"],
input[name|="attr_traitTags"][value="Tracking"]:checked ~* div.sheet-exampleTrait[title*="tracking"],
input[name|="attr_traitTags"][value="Transformation"]:checked ~* div.sheet-exampleTrait[title*="transformation"],
input[name|="attr_traitTags"][value="Undeath"]:checked ~* div.sheet-exampleTrait[title*="undeath"],
input[name|="attr_traitTags"][value="Warfare"]:checked ~* div.sheet-exampleTrait[title*="warfare"],
input[name|="attr_traitTags"][value="Heritage"]:checked ~* div.sheet-exampleTrait[title*="heritage"],
input[name|="attr_traitTags"][value="Arcane"]:checked ~* div.sheet-exampleTrait[title*="Arcane"],
input[name|="attr_traitTags"][value="Artifice"]:checked ~* div.sheet-exampleTrait[title*="Artifice"],
input[name|="attr_traitTags"][value="Alchemy"]:checked ~* div.sheet-exampleTrait[title*="Alchemy"],
input[name|="attr_traitTags"][value="Beast"]:checked ~* div.sheet-exampleTrait[title*="Beast"],
input[name|="attr_traitTags"][value="Elements"]:checked ~* div.sheet-exampleTrait[title*="Elements"],
input[name|="attr_traitTags"][value="BardicLore"]:checked ~* div.sheet-exampleTrait[title*="Bardic Lore"],
input[name|="attr_traitTags"][value="Command"]:checked ~* div.sheet-exampleTrait[title*="Command"],
input[name|="attr_traitTags"][value="Dragon"]:checked ~* div.sheet-exampleTrait[title*="Dragon"],
input[name|="attr_traitTags"][value="Faith"]:checked ~* div.sheet-exampleTrait[title*="Faith"],
input[name|="attr_traitTags"][value="Heritage"]:checked ~* div.sheet-exampleTrait[title*="Heritage"],
input[name|="attr_traitTags"][value="Nature"]:checked ~* div.sheet-exampleTrait[title*="Nature"],
input[name|="attr_traitTags"][value="MartialArts"]:checked ~* div.sheet-exampleTrait[title*="Martial Arts"],
input[name|="attr_traitTags"][value="Occultism"]:checked ~* div.sheet-exampleTrait[title*="Occultism"],
input[name|="attr_traitTags"][value="Psionics"]:checked ~* div.sheet-exampleTrait[title*="Psionics"],
input[name|="attr_traitTags"][value="Savagery"]:checked ~* div.sheet-exampleTrait[title*="Savagery"],
input[name|="attr_traitTags"][value="Thievery"]:checked ~* div.sheet-exampleTrait[title*="Thievery"],
input[name|="attr_traitTags"][value="Tracking"]:checked ~* div.sheet-exampleTrait[title*="Tracking"],
input[name|="attr_traitTags"][value="Transformation"]:checked ~* div.sheet-exampleTrait[title*="Transformation"],
input[name|="attr_traitTags"][value="Undeath"]:checked ~* div.sheet-exampleTrait[title*="Undeath"],
input[name|="attr_traitTags"][value="Warfare"]:checked ~* div.sheet-exampleTrait[title*="Warfare"],
input[name|="attr_traitTags"][value="Heritage"]:checked ~* div.sheet-exampleTrait[title*="Heritage"]
{
display:block;
break-inside: avoid-column;
-webkit-column-break-inside:avoid;
}
div.sheet-traitRequirements::before {
background-size: 24px 24px;
display: inline-block;
width: 24px;
height: 24px;
content: "";
float: right;
margin-left: 8px;
border-radius: 8px;
}
div.sheet-traitRequirements[title*="roll"]::before {
background-image: url(https://i.imgur.com/tkoVkTl.png);
}
div.sheet-traitRequirements[title*="resource"]::before {
background-image: url(https://i.imgur.com/7Yu1ab5.png);
}
div.sheet-traitRequirements[title*="scope"]::before {
background-image: url(https://i.imgur.com/i92pPhL.png);
}
div.sheet-traitRequirements[title*="tradeoff"]::before {
background-image: url(https://i.imgur.com/piggFNs.png);
}
/*
_/_/_/_/_/ _/_/ _/_/_/ _/_/_/
_/ _/ _/ _/ _/ _/
_/ _/_/_/_/ _/_/_/ _/_/
_/ _/ _/ _/ _/ _/
_/ _/ _/ _/_/_/ _/_/_/
*/
.sheet-traitsTabAllContent,
.sheet-traitsTabCombatContent,
.sheet-traitsTabExplorationContent,
.sheet-traitsTabInteractionContent,
.sheet-traitsTabGeneralContent,
.sheet-traitsTabExamplesContent,
.sheet-pageTabCharacterSheetContent,
.sheet-pageTabPlayerGuideContent,
.sheet-pageTabGMGuideContent
{
display:none;
}
div.sheet-tab-widget-container {
position: relative;
display: inline-block;
width: 15%;
height: 20px;
top: -2px;
margin-left: -1px; /* To make up for spaces in the html between spans */
margin-right: -1px;
text-align: center;
vertical-align: middle;
}
/* input.sheet-tab {
position: relative;
left: 0;
top: 0;
width: 100%;
height: 100%;
margin: 0px;
cursor: pointer;
z-index: 1;
font-family: 'IM Fell English SC', serif;
}
input.sheet-tab + span::before {
content: attr(title);
color: black;
}
input.sheet-tab + span {
position: absolute;
top: 0;
left: 0;
pointer-events: none;
border: solid 2px #E8E8E8;
border-bottom: none;
border-top-left-radius: 1em;
border-top-right-radius: 1em;
text-align: center;
display: inline-block;
width: 100%;
height: 100%;
font-size: 14px;
font-weight: bold;
background: burlywood;
color: black;
z-index: 2;
}
input.sheet-tab:checked + span {
background: wheat;
}
*/
input.sheet-tab
{
width: 94px;
height: 20px;
position: relative;
top: -2px;
margin: 0px;
cursor: pointer;
z-index: 1;
font-family: 'IM Fell English SC', serif;
box-shadow: none;
}
input.sheet-tab::before
{
content: attr(title);
border: solid 2px #E8E8E8;
border-bottom: none;
border-top-left-radius: 1em;
border-top-right-radius: 1em;
text-align: center;
display: inline-block;
width: 94px;
height: 20px;
font-size: 14px;
font-weight: bold;
background: burlywood;
}
input.sheet-tab:checked::before
{
background: wheat;
}
input[type="checkbox"][name="attr_traitTabs"][value="All"]:checked ~ .sheet-traitsTabAllContent,
input[type="checkbox"][name="attr_traitTabs"][value="Combat"]:checked ~ .sheet-traitsTabCombatContent,
input[type="checkbox"][name="attr_traitTabs"][value="Exploration"]:checked ~ .sheet-traitsTabExplorationContent,
input[type="checkbox"][name="attr_traitTabs"][value="Interaction"]:checked ~ .sheet-traitsTabInteractionContent,
input[type="checkbox"][name="attr_traitTabs"][value="General"]:checked ~ .sheet-traitsTabGeneralContent,
input[type="checkbox"][name="attr_traitTabs"][value="Examples"]:checked ~ .sheet-traitsTabExamplesContent { /* show the correct tab */
display:block;
background-color: wheat;
border-bottom-right-radius: 1em;
}
input[type="checkbox"][name="attr_pageTabs"][value="GMGuide"]:checked ~ div.sheet-pageTabGMGuideContent,
input[type="checkbox"][name="attr_pageTabs"][value="PlayerGuide"]:checked ~ div.sheet-pageTabPlayerGuideContent,
input[type="checkbox"][name="attr_pageTabs"][value="CharacterSheet"]:checked ~ div.sheet-pageTabCharacterSheetContent {
display: block;
border-radius: 8px;
background-color: sienna;
}
.sheet-traits {
margin: 0px;
padding: 10px;
position: relative;
}
/*
_/_/_/ _/ _/ _/_/_/_/_/ _/_/_/_/_/ _/_/ _/ _/ _/_/_/
_/ _/ _/ _/ _/ _/ _/ _/ _/_/ _/ _/
_/_/_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/_/
_/ _/ _/ _/ _/ _/ _/ _/ _/ _/_/ _/
_/_/_/ _/_/ _/ _/ _/_/ _/ _/ _/_/_/
*/
div.sheet-rollButtons button.sheet-rollButton[type=roll] {
background-color: transparent;
font-size: 14px;
text-align: center;
line-height: 11px;
background-image: none;
text-shadow: none;
box-shadow: none;
padding: 0;
margin: 0;
padding-bottom: 5px;
font-weight: bold;
width: 16px;
border: 2px solid;
}
div.sheet-rollButtons button.sheet-increasedRoll[type=roll],
div.sheet-rollButtons button.sheet-decreasedRoll[type=roll] {
width: 14px;
padding: 0;
margin: 0;
}
div.sheet-rollButtons button.sheet-increasedRoll[type=roll]::before {
content:"↑";
}
div.sheet-rollButtons button.sheet-decreasedRoll[type=roll]::before {
content: "↓";
}
div.sheet-rollButtons button.sheet-normalRoll[type=roll] {
padding: 0;
margin: 0;
padding-top: 2px;
width: 24px;
height: 21px;
font-size: small;
line-height: 1em;
vertical-align: top;
}
/*
button[type="roll"].sheet-decreasedRoll:hover {
background-color: darkred;
background-position: 0 -25px;
}
button[type="roll"].sheet-increasedRoll:hover {
background-color: lightgreen;
background-position: 0 -25px;
}
*/
.sheet-beliefs .repcontrol,
.sheet-improvements .repcontrol,
.sheet-miscNotes .repcontrol,
.repcontrol {
min-height: 27px;
display: block;
}
.repcontrol .btn {
/* visibility: hidden; */ /* Stupid Firefox */
border: medium none;
color: transparent !important;
text-shadow: none !important;
background: none;
box-shadow: none;
float: none;
display: inline-block;
}
.repcontrol .btn:focus {
outline: 0;
}
.repcontrol .repcontrol_edit {
float: none;
}
.repcontrol .repcontrol_edit:after {
content: '(';
visibility: visible;
font-family: pictos;
background-color: white;
border: 1px solid black;
border-radius: 2px;
font-size: 12px;
height: 12px;
width: 12px;
padding: 2px 4px 2px 4px;
color: black;
margin-left: -10px;
}
.editmode ~ .repcontrol .repcontrol_edit:after {
content: ')';
}
.repcontrol .repcontrol_add:before {
content: '&';
visibility: visible;
font-family: pictos;
background-color: #fff;
border: 1px solid black;
border-radius: 2px;
font-size: 12px;
height: 12px;
width: 12px;
padding: 2px 4px 2px 4px;
color: black;
}
.repcontrol .repcontrol_edit:hover:after,
.repcontrol .repcontrol_add:hover:before
{
background-color: #EFEFEF;
}
.sheet-resources .repcontrol {
margin-top: -10px;
}
.itemcontrol {
z-index: 10;
}
.itemcontrol .repcontrol_del {
font-size: 10px;
margin-top: 3px;
padding: 0px;
height: 18px;
width: 18px;
}
.itemcontrol .repcontrol_move {
font-size: 10px;
margin-top: 3px;
padding: 0px;
height: 18px;
width: 18px;
}
/*
ooooooooo. oooo oooo
`888 `Y88. `888 `888
888 .d88' .ooooo. 888 888 .oooo.o
888ooo88P' d88' `88b 888 888 d88( "8
888`88b. 888 888 888 888 `"Y88b.
888 `88b. 888 888 888 888 o. )88b
o888o o888o `Y8bod8P' o888o o888o 8""888P'
*/
.sheet-rolltemplate-TTRoll {
width: 120%;
margin: 0;
margin-left: -45px;
margin-top: -2px;
margin-bottom: -2px;
padding: 1px;
/* background-image: url("http://i.imgur.com/kGAcTZm.jpg"); */
background-size: 100% 100%;
background-position: center center;
background-repeat: no-repeat;
}
.sheet-rolltemplate-TTRoll .sheet-rollContent .sheet-rollLimits .inlinerollresult {
background-color: inherit;
border: inherit;
}
.sheet-rolltemplate-TTRoll .sheet-rollFooter .inlinerollresult {
display: inline-block;
min-width: 1.5em;
text-align: center;
border: 2px solid darkgrey;
background-color: darkgoldenrod;
border-radius:9px;
}
.sheet-rolltemplate-TTRoll .sheet-rollFooter .sheet-sadRollResult .inlinerollresult {
border: 2px solid darkred;
color: black;
}
.sheet-rolltemplate-TTRoll .sheet-rollFooter .sheet-happyRollResult .inlinerollresult {
border: 2px solid green;
color: black;
}
.sheet-rolltemplate-TTRoll .sheet-rollContent {
width: 60%;
margin-top: 8%;
margin-bottom: 8%;
margin-left: 22%;
margin-right: 11%;
padding: 0;
border-style: none;
color: black;
font-family: "Helvetica Neue", Helvetica, sans-serif;
border-radius: 1em;
text-align: center;
/*
background-image: url("http://i.imgur.com/2yDT9iP.png");
background-size: 100% 100%;
background-position: center center;
background-repeat: no-repeat;
*/
}
.sheet-rolltemplate-TTRoll .sheet-rollHeader {
background-color: burlywood;
font-size: 1.5em;
margin: 0px;
padding: 4px;
border-top-left-radius: 1em;
border-top-right-radius: 1em;
}
.sheet-rolltemplate-TTRoll .sheet-rollBody {
margin:0px;
background: rgba(255, 255, 255, 0.66);
text-align: center;
}
/*
.sheet-rolltemplate-TTRoll tr:nth-child(3) {
background-color: burlywood;
border-bottom-right-radius: 1em;
border-bottom-left-radius: 1em;
}
*/
.sheet-rolltemplate-TTRoll .sheet-rollNotes {
text-align: center;
}
.sheet-rolltemplate-TTRoll .sheet-fineprint,
.sheet-rolltemplate-TTRoll .sheet-rollLimits {
text-align: center;
font-size: 0.8em;
}
.sheet-rolltemplate-TTRoll .sheet-exciting {
font-weight: bold;
}
.sheet-rolltemplate-TTRoll .sheet-rollFooter {
background-color: burlywood;
border-bottom-left-radius: 1em;
border-bottom-right-radius: 1em;
margin: 0px;
padding: 4px;
text-align: center;
} | Tavern-Tales/TavernTalesSheet.css | .sheet-TavernTalesSystemContainer {
background-color: sienna;
margin-top: -28px;
margin-left: -30px;
}
div.sheet-TavernTalesSystemContainer ul {
font-size: small;
}
/* ---------------------------------------------------*/
div.sheet-NewHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"] {
width: calc(100%);
height: 20px;
/* left: -36px; */
/*
top: -2px;
margin: 0px;
*/
position: relative;
cursor: pointer;
z-index: 1;
display: block;
padding: 2px;
}
div.sheet-NewHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"]:not(:checked)::before {
display: block;
content: "▲" attr(title);
/* margin-left: 25px; */
background-color: wheat;
padding: 2px;
padding-left: 4px;
height: 1.5em;
width: calc(100% - 5px);
/* left: -64px; */
border-top-left-radius: 8px;
border-top-right-radius: 8px;
font-size: 1.1em;
}
div.sheet-NewHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"][name="attr_showSidebar"]:not(:checked)::before {
display: inherit;
background-color: burlywood;
content: "►" attr(title);
}
div.sheet-NewHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"][name="attr_showSidebar"]:checked::before {
/* display: inherit; */
background-color: burlywood;
}
div.sheet-NewHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"]:checked::before {
display: block;
content: "▼" attr(title);
margin-left: 1px;
background: #fcf4e8;
padding: 2px;
padding-left: 4px;
height: 1.5em;
width: calc(100% - 8px);
/* left: -72px; */
border-top-left-radius: 8px;
border-top-right-radius: 8px;
font-size: 1.1em;
}
div.sheet-HideableSection > input.sheet-hiddenSectionToggle:checked + span + div,
div.sheet-NewHideableSection > input.sheet-hiddenSectionToggle:checked + div
{
display: block;
width: calc(100% - 21px);
padding: 5px;
margin: 5px;
}
div.sheet-HideableSection > input.sheet-hiddenSectionToggle:not(:checked) + span + div
{
display: none;
}
div.sheet-NewHideableSection > input.sheet-hiddenSectionToggle:not(:checked) + div {
background-color: burlywood;
/* height: 22px; */
display: none;
}
/* ---------------------------------------------------*/
div.sheet-statName {
width: 33px;
display: inline-block;
}
div.sheet-TavernTalesSystemSidebar {
display: inline-block;
position: sticky;
width: 110px;
height: 200px;
top: 69px;
background-color: burlywood;
vertical-align: top;
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
}
div.sheet-rollButtonsContainer {
position: sticky;
}
input.sheet-HiddenCheckbox[name="attr_showSidebar"]:not(:checked) ~* div.sheet-TavernTalesSystemSidebar div.sheet-sidebarStats {
display: none;
}
input.sheet-HiddenCheckbox[name="attr_showSidebar"]:not(:checked) ~* div.sheet-TavernTalesSystemSidebar {
width: 15px;
}
input.sheet-HiddenCheckbox[name="attr_showSidebar"]:not(:checked) ~* div.sheet-TavernTalesSheetBody {
margin-left: 30px;
width: calc(100% - 100px);
}
.sheet-sidebarHiderWidget {
right: 0;
}
.sheet-TavernTalesSheetBody {
display: inline-block;
color: black;
font-family: "Times New Roman", Times, serif;
/*background-color: #B8B894;*/
padding:15px;
/*
width: 85%;
margin-left: 105px;
margin-top: -200px;
*/
width: calc(100% - 156px);
}
img.sheet-logo {
width:50%;
}
.sheet-TavernTalesSheetBody .sheet-col h3 {
font-size: 3.0em;
color: black;
font-size: 1.5em;
}
.sheet-TavernTalesHeader {
display: block;
width: 100%;
}
.sheet-TavernTalesContent {
display: block;
width: 100%;
}
.sheet-TavernTalesColumn {
display: inline-block;
vertical-align: top;
width: 43%;
padding-right: 5%;
}
.sheet-ColumnThirds {
display: inline-block;
width: calc(33% - 21px);
vertical-align: top;
}
.sheet-TavernTalesFooter {
display: block;
width: 100%;
}
.sheet-Attributes th {
color: black;
font-size: 1.0em;
width: 50px;
padding-top: 10px;
padding-right: 0px;
padding-bottom: 10px;
padding-left: 0px;
}
.sheet-TTStatsTable {
/* width: 90%; */
}
.sheet-stats {
text-align: center;
position: relative;
}
.sheet-traitXP{
position: absolute;
right: 5px;
top: 5px;
font-size: 0.5em;
}
.sheet-traitXP input{
height: 2em;
font-size: 1em;
padding: 0;
vertical-align: text-bottom;
-moz-appearance: textfield;
}
.sheet-TTConditions{
margin-left:20px;
width:90%;
}
.sheet-TTConditions checkbox{
margin: 4px;
padding: 4px;
}
.sheet-TTConditions input[type="text"]{
width: 80%;
}
.sheet-TTConditions textarea{
width: 80%;
height: 60px;
}
button[type="roll"].sheet-TTInfoButton {
font-size: smaller;
display: inline-block;
}
button[type="roll"].sheet-TTInfoButton::before {
content: none;
}
input.sheet-TTResourceName {
width: 110px;
margin: 0;
padding: 0;
padding-left: 3px;
}
div.sheet-TTResourceCheckboxes {
text-align: center;
}
div.sheet-Resources {
width: calc(100% - 21px);
margin-left: 20px;
}
select.sheet-ResourcesMaxCheckboxes {
width: 35px;
margin: 0;
padding: 0;
font-size: 1em;
height: auto;
}
input.sheet-TTcheckbox {
}
input[type="checkbox"].sheet-HiddenCheckbox {
display: none;
}
div.sheet-TTResourceCheckboxes input[type="checkbox"] {
display: none;
margin: -2px;
padding: 0;
width: 14px;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="1"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="2"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="2"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="3"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="3"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="3"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="4"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="4"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="4"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="4"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse4"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="5"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="5"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="5"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="5"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse4"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="5"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse5"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="6"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="6"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="6"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="6"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse4"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="6"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse5"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="6"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse6"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="7"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="7"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="7"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="7"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse4"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="7"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse5"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="7"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse6"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="7"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse7"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse4"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse5"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse6"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse7"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="8"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse8"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse4"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse5"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse6"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse7"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse8"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="9"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse9"] {
display: inline-block;
}
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse1"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse2"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse3"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse4"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse5"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse6"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse7"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse8"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse9"],
input[type="checkbox"][name="attr_resourceMaxCheckboxes"][value="10"]:checked ~ div.sheet-TTResourceCheckboxes input[type="checkbox"][name="attr_resourceUse10"] {
display: inline-block;
}
.sheet-combatDamage select {
margin: 0px;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
width:90px;
}
.sheet-combatDamage .sheet-dieTypeSelect {
margin: 0px;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
width:50px;
}
.sheet-TTTraitType {
margin: 0px;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
width:50px;
}
.sheet-TTitemName {
width:30%;
display:inline-block;
}
.sheet-TTitemDesc {
width:65%;
display:inline-block;
margin: 0;
padding: 0;
padding-left: 3px;
}
.sheet-BuffEntryField {
width:100%;
height:100px;
}
div.sheet-sidebar {
display: inline-block;
width: 93px;
vertical-align: top;
margin-left: 8px;
}
div.sheet-versionInfo {
float: right;
background-color: rgba(255,255,255, 0.3);
padding-left: 5px;
padding-right: 5px;
}
input[name="attr_version"][value="0.9"]:not(:checked) ~* div.sheet-version09content,
input[name="attr_version"][value="1.0"]:not(:checked) ~* div.sheet-version10content,
input[name="attr_version"][value="2.0"]:not(:checked) ~* div.sheet-version20content {
display: none;
}
input[name="attr_version"][value="2.0"]:checked ~* div.sheet-version20content,
input[name="attr_version"][value="1.0"]:checked ~* div.sheet-version10content,
input[name="attr_version"][value="0.9"]:checked ~* div.sheet-version09content {
display: block;
}
div.sheet-ExampleFeats09, div.sheet-ExampleFeats10, div.sheet-ExampleFeats20 {
display: none;
}
input[name="attr_version"][value="2.0"]:checked ~* div.sheet-ExampleFeats20,
input[name="attr_version"][value="0.9"]:checked ~* div.sheet-ExampleFeats09,
input[name="attr_version"][value="1.0"]:checked ~* div.sheet-ExampleFeats10 {
display: inline-block;
width: calc(100% - 115px);
}
.sheet-feats {
margin: 0px;
padding: 10px;
}
div.sheet-traits input[type="text"].sheet-TTtraitName,
div.sheet-notes input[type="text"].sheet-TTnoteDesc,
div.sheet-Contacts input[type="text"].sheet-TTcontactName {
padding:0px;
margin:0px;
display: block;
}
.sheet-TTcharacterName {
width: 100%;
}
.sheet-TTXPTreasureTable {
width: 100%;
margin: auto;
}
.sheet-TTbioDesc {
height: 75px;
width: 100%
}
/* Make traits appear in columns (inline-block) instead of a vertical list (block) */
div.sheet-traits div,
div.sheet-notes div,
div.sheet-Contacts div {
display: inline-block;
padding: 0;
margin: 0;
}
div.sheet-traits textarea.sheet-TTtraitDesc,
div.sheet-Contacts textarea.sheet-TTcontactDesc,
div.sheet-notes textarea.sheet-TTnoteDesc,
div.sheet-notes textarea.sheet-TTnoteDesc p,
div.sheet-notes textarea.sheet-TTnoteDesc div,
div.sheet-notes textarea.sheet-TTnoteDesc ul,
div.sheet-notes textarea.sheet-TTnoteDesc ol, {
padding:0px;
/* margin:0px; */
width:100%;
height: 130px;
font-size: x-small;
}
.sheet-artistCredit {
text-align: right;
}
.sheet-TTBIGTitles {
font-family: "Times New Roman", Times, serif;
text-align:right;
font-size: 1.0em;
font-weight: bold;
width:100%;
}
.sheet-TTBIGs {
margin-left:auto;
margin-right:0%;
width:75%;
height:100px;
height:1em;
}
input[type="number"] {
width: 30px;
}
/* lists and definitions */
.sheet-definitions {
display: block;
margin-top: 1em;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
}
.sheet-dt, .sheet-traitName, .sheet-traitType {
display: block;
padding: 3px;
}
.sheet-traitName {
user-select: text;
font-weight: bold;
margin-top: 5px;
}
.sheet-traitType {
font-weight: bold;
/* margin-left: 12px; */
font-size: 0.75em;
margin-top: 0;
padding-top: 0;
line-height: 1em;
}
div.sheet-traitDescription,
div.sheet-traitDescription p,
div.sheet-traitDescription ul,
div.sheet-traitDescription ul li,
div.sheet-traitDescription ol,
div.sheet-traitDescription ol li {
user-select: text;
/* width: 80%; */
font-size: 10px;
line-height: 1.2;
/* margin: 0; */
padding: 0;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
div.sheet-traitDescription {
margin-left: 5%;
margin-right: 5%;
}
div.sheet-traitDescription div.sheet-traitNotes {
border: 1px solid;
border-radius: 8px;
padding: 10px;
margin: 10px;
box-shadow: 0px 1px 3px;
background-color: rgba(196,196,196,0.33);
}
.sheet-dd, .sheet-def {
display: block;
margin-left: 16px;
font-weight: normal;
padding: 2px;
}
.sheet-traitMechanic {}
.sheet-traitExample {
border: 0;
border-radius: 8px;
padding-left: 5px;
padding-right: 5px;
margin-left: 5px;
margin-right: 5px;
margin-top: 3px;
background-color: rgba(222, 184, 135, 0.15);
}
.sheet-def::before {
font-weight: bold;
margin-left: -16px;
content: attr(title);
display: block;
}
.sheet-definition:nth-of-type(odd), .sheet-exampleTrait:nth-of-type(odd) {
background-color: beige;
}
.sheet-NewspaperColumns {
/* Newspaper-like columns with automatic text flow across regions */
-webkit-column-count: 2; /* Chrome, Safari, Opera */
-moz-column-count: 2; /* Firefox */
column-count: 2;
-webkit-column-gap: 40px; /* Chrome, Safari, Opera */
-moz-column-gap: 40px; /* Firefox */
column-gap: 40px;
-webkit-column-rule: 4px outset BlanchedAlmond; /* Chrome, Safari, Opera */
-moz-column-rule: 4px outset BlanchedAlmond; /* Firefox */
column-rule: 4px outset BlanchedAlmond;
overflow:auto;
text-align: justify;
}
/*
ooooo ooooo oooo
`888' `888' `888
888 888 .ooooo. 888 oo.ooooo.
888ooooo888 d88' `88b 888 888' `88b
888 888 888ooo888 888 888 888
888 888 888 .o 888 888 888
o888o o888o `Y8bod8P' o888o 888bod8P'
888
o888o
*/
/* Popup Help */
.sheet-showHelpTipsToggle {
/* float: right; */
}
.sheet-popupHelp span, .sheet-popupHelpSmall span, .sheet-popupHelpLarge span {
display:none;
z-index:10;
padding:14px 20px;
left:33%;
}
/*
input[name="attr_showHelpTipsToggle"]:not(:checked) ~* div.sheet-popupHelp,
input[name="attr_showHelpTipsToggle"]:not(:checked) ~* div.sheet-popupHelpSmall,
input[name="attr_showHelpTipsToggle"]:not(:checked) ~* div.sheet-popupHelpLarge {
display: inline-block;
}
*/
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelp:hover span,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpSmall:hover span,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpLarge:hover span
{
display:inline;
position:absolute;
color:#111;
border:1px solid #DCA;
background:#fffAF0;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
font-size: 8pt;
line-height: 1;
font-weight: normal;
border-radius:4px;
box-shadow: 5px 5px 8px #CCC;
float: none;
width:66%;
left: 12.5%;
top: 0%;
overflow: auto;
padding: 5px;
margin: 0px;
}
.sheet-popupHelp span{
height: 100px;
}
.sheet-popupHelpSmall span {
height: 35px;
}
.sheet-popupHelpLarge span {
height: auto;
}
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelp:hover span p,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpSmall:hover span p,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpLarge:hover span p {
font-size: 8pt;
line-height: 1;
font-weight: normal;
text-align: left;
}
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelp,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpSmall,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpLarge {
display: inline;
}
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelp::after,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpSmall::after,
input[name="attr_showHelpTipsToggle"]:checked ~* .sheet-popupHelpLarge::after {
background-color:black;
color: white;
border-radius: 8px;
font-size: 8pt;
line-height: 1.66;
font-weight: normal;
vertical-align: top;
border: 1px;
display: inline-block;
padding-left: 6px;
padding-right: 6px;
margin-left: 4px;
content: "?";
}
input[name="attr_showHelpTipsToggle"]:not(:checked) ~* .sheet-popupHelp,
input[name="attr_showHelpTipsToggle"]:not(:checked) ~* .sheet-popupHelpSmall,
input[name="attr_showHelpTipsToggle"]:not(:checked) ~* .sheet-popupHelpLarge {
background:none;
display:inline-block;
}
/* Tooltips related to game balance */
.sheet-gameBalance, .sheet-traitSkins, .sheet-references, .sheet-drillDeeper {
display: inline;
float:right;
width: 32px;
height: 32px;
}
.sheet-gameBalance::before {
content: url(http://i.imgur.com/FpBUPXX.png);
}
.sheet-traitSkins::before {
content: url(http://i.imgur.com/MDUllv0.png);
}
.sheet-references::before {
content: url(http://i.imgur.com/N9TQaWD.png);
}
.sheet-drillDeeper:before {
content: url(http://i.imgur.com/Hh2zVdd.png);
}
.sheet-gameBalance > span,
.sheet-traitSkins > span,
.sheet-references > span,
.sheet-drillDeeper > span {
display:none;
z-index:10;
padding:14px 20px;
left:33%;
}
.sheet-gameBalance:hover > span,
.sheet-traitSkins:hover > span,
.sheet-references:hover > span,
.sheet-drillDeeper:hover > span {
display:inline;
position:absolute;
color:cornsilk;
background:DimGrey;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
font-size: 1em;
border:1px solid #DCA;
border-radius:4px;
box-shadow: 5px 5px 8px #CCC;
float: none;
width:33%;
left: 27.5%;
overflow: auto;
}
/*
ooooo ooooo o8o .o8 .o8
`888' `888' `"' "888 "888
888 888 oooo .oooo888 .oooo888 .ooooo. ooo. .oo.
888ooooo888 `888 d88' `888 d88' `888 d88' `88b `888P"Y88b
888 888 888 888 888 888 888 888ooo888 888 888
888 888 888 888 888 888 888 888 .o 888 888
o888o o888o o888o `Y8bod88P" `Y8bod88P" `Y8bod8P' o888o o888o
*/
input.sheet-hiddenSectionToggle
{
/* float: left; */
}
/* Hide actual checkbox */
div.sheet-TavernTalesHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"]
{
opacity: 0;
width: 16px;
height: 16px;
position: relative;
top: 5px;
left: 6px;
margin: -7px;
cursor: pointer;
z-index: 1;
}
/* Fake checkbox */
div.sheet-TavernTalesHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"] + span::before
{
margin-right: 4px;
line-height: 14px;
text-align: center;
display: inline;
vertical-align: middle;
content: "►";
width: 14px;
height: 14px;
font-size: 12px;
}
div.sheet-TavernTalesHideableSection > input.sheet-hiddenSectionToggle[type="checkbox"]:checked + span::before
{
content: "▼";
}
input.sheet-hiddenSectionToggle:checked + span + div
{
display: block;
width: 90%;
padding: 5px;
margin: 5px;
}
input.sheet-hiddenSectionToggle:not(:checked) + span + div
{
display: none;
}
.sheet-TavernTalesHideableSection, .sheet-NewHideableSection {
position: relative;
border-color: black;
border-width: 3px;
border-style: solid;
border-radius: 8px;
background-color: #fcf4e8;
}
.sheet-TavernTalesSystemSidebar {
border-radius: 0;
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
border-color: burlywood;
border-width: 2px;
box-shadow: 5px 0px 5px -2px rgba(0,0,0,0.8);
}
div.sheet-exampleTrait {
display:none;
}
input[name|="attr_traitTags"][value="all"]:checked ~* div.sheet-exampleTrait,
input[name|="attr_traitTags"][value="Arcane"]:checked ~* div.sheet-exampleTrait[title*="arcane"],
input[name|="attr_traitTags"][value="Artifice"]:checked ~* div.sheet-exampleTrait[title*="artifice"],
input[name|="attr_traitTags"][value="Alchemy"]:checked ~* div.sheet-exampleTrait[title*="alchemy"],
input[name|="attr_traitTags"][value="Beast"]:checked ~* div.sheet-exampleTrait[title*="beast"],
input[name|="attr_traitTags"][value="Elements"]:checked ~* div.sheet-exampleTrait[title*="elements"],
input[name|="attr_traitTags"][value="BardicLore"]:checked ~* div.sheet-exampleTrait[title*="bardic lore"],
input[name|="attr_traitTags"][value="Command"]:checked ~* div.sheet-exampleTrait[title*="command"],
input[name|="attr_traitTags"][value="Dragon"]:checked ~* div.sheet-exampleTrait[title*="dragon"],
input[name|="attr_traitTags"][value="Faith"]:checked ~* div.sheet-exampleTrait[title*="faith"],
input[name|="attr_traitTags"][value="Heritage"]:checked ~* div.sheet-exampleTrait[title*="heritage"],
input[name|="attr_traitTags"][value="Nature"]:checked ~* div.sheet-exampleTrait[title*="nature"],
input[name|="attr_traitTags"][value="MartialArts"]:checked ~* div.sheet-exampleTrait[title*="martial arts"],
input[name|="attr_traitTags"][value="Occultism"]:checked ~* div.sheet-exampleTrait[title*="occultism"],
input[name|="attr_traitTags"][value="Psionics"]:checked ~* div.sheet-exampleTrait[title*="psionics"],
input[name|="attr_traitTags"][value="Savagery"]:checked ~* div.sheet-exampleTrait[title*="savagery"],
input[name|="attr_traitTags"][value="Thievery"]:checked ~* div.sheet-exampleTrait[title*="thievery"],
input[name|="attr_traitTags"][value="Tracking"]:checked ~* div.sheet-exampleTrait[title*="tracking"],
input[name|="attr_traitTags"][value="Transformation"]:checked ~* div.sheet-exampleTrait[title*="transformation"],
input[name|="attr_traitTags"][value="Undeath"]:checked ~* div.sheet-exampleTrait[title*="undeath"],
input[name|="attr_traitTags"][value="Warfare"]:checked ~* div.sheet-exampleTrait[title*="warfare"],
input[name|="attr_traitTags"][value="Heritage"]:checked ~* div.sheet-exampleTrait[title*="heritage"],
input[name|="attr_traitTags"][value="Arcane"]:checked ~* div.sheet-exampleTrait[title*="Arcane"],
input[name|="attr_traitTags"][value="Artifice"]:checked ~* div.sheet-exampleTrait[title*="Artifice"],
input[name|="attr_traitTags"][value="Alchemy"]:checked ~* div.sheet-exampleTrait[title*="Alchemy"],
input[name|="attr_traitTags"][value="Beast"]:checked ~* div.sheet-exampleTrait[title*="Beast"],
input[name|="attr_traitTags"][value="Elements"]:checked ~* div.sheet-exampleTrait[title*="Elements"],
input[name|="attr_traitTags"][value="BardicLore"]:checked ~* div.sheet-exampleTrait[title*="Bardic Lore"],
input[name|="attr_traitTags"][value="Command"]:checked ~* div.sheet-exampleTrait[title*="Command"],
input[name|="attr_traitTags"][value="Dragon"]:checked ~* div.sheet-exampleTrait[title*="Dragon"],
input[name|="attr_traitTags"][value="Faith"]:checked ~* div.sheet-exampleTrait[title*="Faith"],
input[name|="attr_traitTags"][value="Heritage"]:checked ~* div.sheet-exampleTrait[title*="Heritage"],
input[name|="attr_traitTags"][value="Nature"]:checked ~* div.sheet-exampleTrait[title*="Nature"],
input[name|="attr_traitTags"][value="MartialArts"]:checked ~* div.sheet-exampleTrait[title*="Martial Arts"],
input[name|="attr_traitTags"][value="Occultism"]:checked ~* div.sheet-exampleTrait[title*="Occultism"],
input[name|="attr_traitTags"][value="Psionics"]:checked ~* div.sheet-exampleTrait[title*="Psionics"],
input[name|="attr_traitTags"][value="Savagery"]:checked ~* div.sheet-exampleTrait[title*="Savagery"],
input[name|="attr_traitTags"][value="Thievery"]:checked ~* div.sheet-exampleTrait[title*="Thievery"],
input[name|="attr_traitTags"][value="Tracking"]:checked ~* div.sheet-exampleTrait[title*="Tracking"],
input[name|="attr_traitTags"][value="Transformation"]:checked ~* div.sheet-exampleTrait[title*="Transformation"],
input[name|="attr_traitTags"][value="Undeath"]:checked ~* div.sheet-exampleTrait[title*="Undeath"],
input[name|="attr_traitTags"][value="Warfare"]:checked ~* div.sheet-exampleTrait[title*="Warfare"],
input[name|="attr_traitTags"][value="Heritage"]:checked ~* div.sheet-exampleTrait[title*="Heritage"]
{
display:block;
break-inside: avoid-column;
-webkit-column-break-inside:avoid;
}
div.sheet-traitRequirements::before {
background-size: 24px 24px;
display: inline-block;
width: 24px;
height: 24px;
content: "";
float: right;
margin-left: 8px;
border-radius: 8px;
}
div.sheet-traitRequirements[title*="roll"]::before {
background-image: url(https://i.imgur.com/tkoVkTl.png);
}
div.sheet-traitRequirements[title*="resource"]::before {
background-image: url(https://i.imgur.com/7Yu1ab5.png);
}
div.sheet-traitRequirements[title*="scope"]::before {
background-image: url(https://i.imgur.com/i92pPhL.png);
}
div.sheet-traitRequirements[title*="tradeoff"]::before {
background-image: url(https://i.imgur.com/piggFNs.png);
}
/*
_/_/_/_/_/ _/_/ _/_/_/ _/_/_/
_/ _/ _/ _/ _/ _/
_/ _/_/_/_/ _/_/_/ _/_/
_/ _/ _/ _/ _/ _/
_/ _/ _/ _/_/_/ _/_/_/
*/
.sheet-traitsTabAllContent,
.sheet-traitsTabCombatContent,
.sheet-traitsTabExplorationContent,
.sheet-traitsTabInteractionContent,
.sheet-traitsTabGeneralContent,
.sheet-traitsTabExamplesContent,
.sheet-pageTabCharacterSheetContent,
.sheet-pageTabPlayerGuideContent,
.sheet-pageTabGMGuideContent
{
display:none;
}
div.sheet-tab-widget-container {
position: relative;
display: inline-block;
width: 15%;
height: 20px;
top: -2px;
margin-left: -1px; /* To make up for spaces in the html between spans */
margin-right: -1px;
text-align: center;
vertical-align: middle;
}
/* input.sheet-tab {
position: relative;
left: 0;
top: 0;
width: 100%;
height: 100%;
margin: 0px;
cursor: pointer;
z-index: 1;
font-family: 'IM Fell English SC', serif;
}
input.sheet-tab + span::before {
content: attr(title);
color: black;
}
input.sheet-tab + span {
position: absolute;
top: 0;
left: 0;
pointer-events: none;
border: solid 2px #E8E8E8;
border-bottom: none;
border-top-left-radius: 1em;
border-top-right-radius: 1em;
text-align: center;
display: inline-block;
width: 100%;
height: 100%;
font-size: 14px;
font-weight: bold;
background: burlywood;
color: black;
z-index: 2;
}
input.sheet-tab:checked + span {
background: wheat;
}
*/
input.sheet-tab
{
width: 94px;
height: 20px;
position: relative;
top: -2px;
margin: 0px;
cursor: pointer;
z-index: 1;
font-family: 'IM Fell English SC', serif;
box-shadow: none;
}
input.sheet-tab::before
{
content: attr(title);
border: solid 2px #E8E8E8;
border-bottom: none;
border-top-left-radius: 1em;
border-top-right-radius: 1em;
text-align: center;
display: inline-block;
width: 94px;
height: 20px;
font-size: 14px;
font-weight: bold;
background: burlywood;
}
input.sheet-tab:checked::before
{
background: wheat;
}
input[type="checkbox"][name="attr_traitTabs"][value="All"]:checked ~ .sheet-traitsTabAllContent,
input[type="checkbox"][name="attr_traitTabs"][value="Combat"]:checked ~ .sheet-traitsTabCombatContent,
input[type="checkbox"][name="attr_traitTabs"][value="Exploration"]:checked ~ .sheet-traitsTabExplorationContent,
input[type="checkbox"][name="attr_traitTabs"][value="Interaction"]:checked ~ .sheet-traitsTabInteractionContent,
input[type="checkbox"][name="attr_traitTabs"][value="General"]:checked ~ .sheet-traitsTabGeneralContent,
input[type="checkbox"][name="attr_traitTabs"][value="Examples"]:checked ~ .sheet-traitsTabExamplesContent { /* show the correct tab */
display:block;
background-color: wheat;
border-bottom-right-radius: 1em;
}
input[type="checkbox"][name="attr_pageTabs"][value="GMGuide"]:checked ~ div.sheet-pageTabGMGuideContent,
input[type="checkbox"][name="attr_pageTabs"][value="PlayerGuide"]:checked ~ div.sheet-pageTabPlayerGuideContent,
input[type="checkbox"][name="attr_pageTabs"][value="CharacterSheet"]:checked ~ div.sheet-pageTabCharacterSheetContent {
display: block;
border-radius: 8px;
background-color: sienna;
}
.sheet-traits {
margin: 0px;
padding: 10px;
position: relative;
}
/*
_/_/_/ _/ _/ _/_/_/_/_/ _/_/_/_/_/ _/_/ _/ _/ _/_/_/
_/ _/ _/ _/ _/ _/ _/ _/ _/_/ _/ _/
_/_/_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/_/
_/ _/ _/ _/ _/ _/ _/ _/ _/ _/_/ _/
_/_/_/ _/_/ _/ _/ _/_/ _/ _/ _/_/_/
*/
div.sheet-rollButtons button.sheet-rollButton[type=roll] {
background-color: transparent;
font-size: 14px;
text-align: center;
line-height: 11px;
background-image: none;
text-shadow: none;
box-shadow: none;
padding: 0;
margin: 0;
padding-bottom: 5px;
font-weight: bold;
width: 16px;
border: 2px solid;
}
div.sheet-rollButtons button.sheet-increasedRoll[type=roll],
div.sheet-rollButtons button.sheet-decreasedRoll[type=roll] {
width: 14px;
padding: 0;
margin: 0;
}
div.sheet-rollButtons button.sheet-increasedRoll[type=roll]::before {
content:"↑";
}
div.sheet-rollButtons button.sheet-decreasedRoll[type=roll]::before {
content: "↓";
}
div.sheet-rollButtons button.sheet-normalRoll[type=roll] {
padding: 0;
margin: 0;
padding-top: 2px;
width: 24px;
height: 21px;
font-size: small;
line-height: 1em;
vertical-align: top;
}
/*
button[type="roll"].sheet-decreasedRoll:hover {
background-color: darkred;
background-position: 0 -25px;
}
button[type="roll"].sheet-increasedRoll:hover {
background-color: lightgreen;
background-position: 0 -25px;
}
*/
.sheet-beliefs .repcontrol,
.sheet-improvements .repcontrol,
.sheet-miscNotes .repcontrol,
.repcontrol {
min-height: 27px;
display: block;
}
.repcontrol .btn {
/* visibility: hidden; */ /* Stupid Firefox */
border: medium none;
color: transparent !important;
text-shadow: none !important;
background: none;
box-shadow: none;
float: none;
display: inline-block;
}
.repcontrol .btn:focus {
outline: 0;
}
.repcontrol .repcontrol_edit {
float: none;
}
.repcontrol .repcontrol_edit:after {
content: '(';
visibility: visible;
font-family: pictos;
background-color: white;
border: 1px solid black;
border-radius: 2px;
font-size: 12px;
height: 12px;
width: 12px;
padding: 2px 4px 2px 4px;
color: black;
margin-left: -10px;
}
.editmode ~ .repcontrol .repcontrol_edit:after {
content: ')';
}
.repcontrol .repcontrol_add:before {
content: '&';
visibility: visible;
font-family: pictos;
background-color: #fff;
border: 1px solid black;
border-radius: 2px;
font-size: 12px;
height: 12px;
width: 12px;
padding: 2px 4px 2px 4px;
color: black;
}
.repcontrol .repcontrol_edit:hover:after,
.repcontrol .repcontrol_add:hover:before
{
background-color: #EFEFEF;
}
.sheet-resources .repcontrol {
margin-top: -10px;
}
.itemcontrol {
z-index: 10;
}
.itemcontrol .repcontrol_del {
font-size: 10px;
margin-top: 3px;
padding: 0px;
height: 18px;
width: 18px;
}
.itemcontrol .repcontrol_move {
font-size: 10px;
margin-top: 3px;
padding: 0px;
height: 18px;
width: 18px;
}
/*
ooooooooo. oooo oooo
`888 `Y88. `888 `888
888 .d88' .ooooo. 888 888 .oooo.o
888ooo88P' d88' `88b 888 888 d88( "8
888`88b. 888 888 888 888 `"Y88b.
888 `88b. 888 888 888 888 o. )88b
o888o o888o `Y8bod8P' o888o o888o 8""888P'
*/
.sheet-rolltemplate-TTRoll {
width: 120%;
margin: 0;
margin-left: -45px;
margin-top: -2px;
margin-bottom: -2px;
padding: 1px;
/* background-image: url("http://i.imgur.com/kGAcTZm.jpg"); */
background-size: 100% 100%;
background-position: center center;
background-repeat: no-repeat;
}
.sheet-rolltemplate-TTRoll .sheet-rollContent .sheet-rollLimits .inlinerollresult {
background-color: inherit;
border: inherit;
}
.sheet-rolltemplate-TTRoll .sheet-rollFooter .inlinerollresult {
display: inline-block;
min-width: 1.5em;
text-align: center;
border: 2px solid darkgrey;
background-color: darkgoldenrod;
border-radius:9px;
}
.sheet-rolltemplate-TTRoll .sheet-rollFooter .sheet-sadRollResult .inlinerollresult {
border: 2px solid darkred;
color: black;
}
.sheet-rolltemplate-TTRoll .sheet-rollFooter .sheet-happyRollResult .inlinerollresult {
border: 2px solid green;
color: black;
}
.sheet-rolltemplate-TTRoll .sheet-rollContent {
width: 60%;
margin-top: 8%;
margin-bottom: 8%;
margin-left: 22%;
margin-right: 11%;
padding: 0;
border-style: none;
color: black;
font-family: "Helvetica Neue", Helvetica, sans-serif;
border-radius: 1em;
text-align: center;
/*
background-image: url("http://i.imgur.com/2yDT9iP.png");
background-size: 100% 100%;
background-position: center center;
background-repeat: no-repeat;
*/
}
.sheet-rolltemplate-TTRoll .sheet-rollHeader {
background-color: burlywood;
font-size: 1.5em;
margin: 0px;
padding: 4px;
border-top-left-radius: 1em;
border-top-right-radius: 1em;
}
.sheet-rolltemplate-TTRoll .sheet-rollBody {
margin:0px;
background: rgba(255, 255, 255, 0.66);
text-align: center;
}
/*
.sheet-rolltemplate-TTRoll tr:nth-child(3) {
background-color: burlywood;
border-bottom-right-radius: 1em;
border-bottom-left-radius: 1em;
}
*/
.sheet-rolltemplate-TTRoll .sheet-rollNotes {
text-align: center;
}
.sheet-rolltemplate-TTRoll .sheet-fineprint,
.sheet-rolltemplate-TTRoll .sheet-rollLimits {
text-align: center;
font-size: 0.8em;
}
.sheet-rolltemplate-TTRoll .sheet-exciting {
font-weight: bold;
}
.sheet-rolltemplate-TTRoll .sheet-rollFooter {
background-color: burlywood;
border-bottom-left-radius: 1em;
border-bottom-right-radius: 1em;
margin: 0px;
padding: 4px;
text-align: center;
} | 0.254231 | 0.078678 |
*, *:before, *:after { box-sizing: border-box; }*/
html { font-size: 100%; }
body {
font-family: 'Open Sans', sans-serif;
font-size: 22px;
/* background: #d0e6ef;
color: #666; */
background:#ebf2f5;
}
.wrapper {
max-width: 100%;
margin: auto;
}
.wrapperKey{
max-width:100%;
margin:auto;
background:#2c3c47;
border-radius: 8px;
border: 1px solid #ddd;
}
h1 {
/*color: #0684b8 ;*/
color:#173c57;
margin: 3rem;
padding: 0;
font-size: 1.5rem;
text-align:center
}
.keyboard-content {
margin:10px;
}
textarea {
background:#ebf2f5;
width: 100%;
min-height: 250px;
resize: none;
border-radius: 8px;
border: 1px solid #000;
padding: 0.5rem;
color: #0c0d0d;
box-shadow: inset 0 0 0.25rem #ddd;
}
textarea:focus {
outline: none;
border: 1px solid darken(#ddd, 5%);
box-shadow: inset 0 0 0.5rem darken(#ddd, 5%);
}
textarea[placeholder] {
font-size: 1em;
}
#the-count {
float: right;
padding: 0.1rem 0 0 0;
font-size: 0.875rem;
}
#tab-btn img, #del-btn img, #caps-btn img, #return-btn img,#shift-btn img,#rshift-btn img{
width: 11;
height: 11;
display: block;
margin-left: auto;
margin-right: auto;
}
.keyboard {
/* We first create a flex layout context */
display: flex;
justify-content: center;
padding:0;
margin:0;
width:100%;
display:flex;
flex-direction:row;
flex-wrap:no-wrap;
/* Then we define the flow direction
and if we allow the items to wrap
* Remember this is the same as:
* flex-direction: row;
* flex-wrap: wrap;
flex-flow: row wrap;
padding: 0;
margin: 0;
list-style: none;
*/
}
.keyboard button {
background-color: #334552;
color: #e5e5e5;
text-align: center;
text-decoration: none;
display: block;
/*margin: 0 5px 5px 0;
width: 40px;*/
height: 40px;
font-size: 20px;
padding:8px;
line-height: 20px;
text-align: center;
/*background: #fff;
border: 1px solid #f9f9f9;*/
flex-grow:1;
flex-wrap:no-wrap;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
.capslock, .tab, .left-shift {
clear: left;
}
.keyboard .tab, .keyboard .delete {
/* width: 80px;*/
}
.keyboard .capslock {
/*width: 90px;*/
}
.keyboard .return {
/*width: 87px;*/
}
.keyboard .left-shift {
/*width: 105px;*/
}
.keyboard .right-shift {
/*width: 119px;*/
}
.keyboard .igletter{
background-color: #173c57;
}
.lastitem {
margin-right: 0;
}
.uppercase {
text-transform: uppercase;
}
.keyboard .space {
width: 100%;
}
.on {
display: none;
}
.keyboard button:hover {
position: relative;
top: 1px;
left: 1px;
border-color: #e5e5e5;
cursor: pointer;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
.wrapperKey{
max-width:100%;
}
.keyboard button {
font-size: 80%;
padding:5px;
}
}
@media only screen and (max-width: 347px) {
.wrapperKey{
max-width:100%;
}
.keyboard button {
font-size: 60%;
padding:5px;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
} | css/style_new.css | *, *:before, *:after { box-sizing: border-box; }*/
html { font-size: 100%; }
body {
font-family: 'Open Sans', sans-serif;
font-size: 22px;
/* background: #d0e6ef;
color: #666; */
background:#ebf2f5;
}
.wrapper {
max-width: 100%;
margin: auto;
}
.wrapperKey{
max-width:100%;
margin:auto;
background:#2c3c47;
border-radius: 8px;
border: 1px solid #ddd;
}
h1 {
/*color: #0684b8 ;*/
color:#173c57;
margin: 3rem;
padding: 0;
font-size: 1.5rem;
text-align:center
}
.keyboard-content {
margin:10px;
}
textarea {
background:#ebf2f5;
width: 100%;
min-height: 250px;
resize: none;
border-radius: 8px;
border: 1px solid #000;
padding: 0.5rem;
color: #0c0d0d;
box-shadow: inset 0 0 0.25rem #ddd;
}
textarea:focus {
outline: none;
border: 1px solid darken(#ddd, 5%);
box-shadow: inset 0 0 0.5rem darken(#ddd, 5%);
}
textarea[placeholder] {
font-size: 1em;
}
#the-count {
float: right;
padding: 0.1rem 0 0 0;
font-size: 0.875rem;
}
#tab-btn img, #del-btn img, #caps-btn img, #return-btn img,#shift-btn img,#rshift-btn img{
width: 11;
height: 11;
display: block;
margin-left: auto;
margin-right: auto;
}
.keyboard {
/* We first create a flex layout context */
display: flex;
justify-content: center;
padding:0;
margin:0;
width:100%;
display:flex;
flex-direction:row;
flex-wrap:no-wrap;
/* Then we define the flow direction
and if we allow the items to wrap
* Remember this is the same as:
* flex-direction: row;
* flex-wrap: wrap;
flex-flow: row wrap;
padding: 0;
margin: 0;
list-style: none;
*/
}
.keyboard button {
background-color: #334552;
color: #e5e5e5;
text-align: center;
text-decoration: none;
display: block;
/*margin: 0 5px 5px 0;
width: 40px;*/
height: 40px;
font-size: 20px;
padding:8px;
line-height: 20px;
text-align: center;
/*background: #fff;
border: 1px solid #f9f9f9;*/
flex-grow:1;
flex-wrap:no-wrap;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
.capslock, .tab, .left-shift {
clear: left;
}
.keyboard .tab, .keyboard .delete {
/* width: 80px;*/
}
.keyboard .capslock {
/*width: 90px;*/
}
.keyboard .return {
/*width: 87px;*/
}
.keyboard .left-shift {
/*width: 105px;*/
}
.keyboard .right-shift {
/*width: 119px;*/
}
.keyboard .igletter{
background-color: #173c57;
}
.lastitem {
margin-right: 0;
}
.uppercase {
text-transform: uppercase;
}
.keyboard .space {
width: 100%;
}
.on {
display: none;
}
.keyboard button:hover {
position: relative;
top: 1px;
left: 1px;
border-color: #e5e5e5;
cursor: pointer;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
.wrapperKey{
max-width:100%;
}
.keyboard button {
font-size: 80%;
padding:5px;
}
}
@media only screen and (max-width: 347px) {
.wrapperKey{
max-width:100%;
}
.keyboard button {
font-size: 60%;
padding:5px;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
} | 0.282097 | 0.077622 |
@import url(//fonts.googleapis.com/css?family=Montserrat:400|Muli:300,400|Inconsolata);
*,*::before,*::after {
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box
}
@-webkit-viewport {
width:device-width
}
@-moz-viewport {
width:device-width
}
@-ms-viewport {
width:device-width
}
@-o-viewport {
width:device-width
}
@viewport {
width:device-width
}
html {
font-size:100%;
-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;
text-decoration:none
}
a:active,
a:hover {
outline:0
}
abbr[title] {
border-bottom:1px dotted
}
b,
strong {
font-weight:700
}
dfn {
font-style:italic
}
mark {
background:#FFFF27;
color:#333
}
sub,
sup {
font-size:.8rem;
line-height:0;
position:relative;
vertical-align:baseline
}
sup {
top:-.5em
}
sub {
bottom:-.25em
}
img {
border:0;
max-width:100%
}
svg:not(:root) {
overflow:hidden
}
figure {
margin:1em 40px
}
hr {
height:0
}
pre {
overflow:auto
}
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"] {
padding:0
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height:auto
}
input[type="search"] {
-webkit-appearance:textfield
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance:none
}
legend {
border:0;
padding:0
}
textarea {
overflow:auto
}
optgroup {
font-weight:700
}
table {
border-collapse:collapse;
border-spacing:0;
table-layout:fixed;
width:100%
}
tr,
td,
th {
vertical-align:middle
}
th,
td {
padding:.425rem 0
}
th {
text-align:left
}
.container {
width:75em;
margin:0 auto;
padding:0
}
@media only all and (min-width:60em) and (max-width:74.938em) {
.container {
width:60em
}
}
@media only all and (min-width:48em) and (max-width:59.938em) {
.container {
width:48em
}
}
@media only all and (min-width:30.063em) and (max-width:47.938em) {
.container {
width:30em
}
}
@media only all and (max-width:30em) {
.container {
width:100%
}
}
.grid {
display:-webkit-box;
display:-moz-box;
display:box;
display:-webkit-flex;
display:-moz-flex;
display:-ms-flexbox;
display:flex;
-webkit-flex-flow:row;
-moz-flex-flow:row;
flex-flow:row;
list-style:none;
margin:0;
padding:0
}
@media only all and (max-width:47.938em) {
.grid {
-webkit-flex-flow:row wrap;
-moz-flex-flow:row wrap;
flex-flow:row wrap
}
}
.block {
-webkit-box-flex:1;
-moz-box-flex:1;
box-flex:1;
-webkit-flex:1;
-moz-flex:1;
-ms-flex:1;
flex:1;
min-width:0;
min-height:0
}
@media only all and (max-width:47.938em) {
.block {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 100%;
-moz-flex:0 100%;
-ms-flex:0 100%;
flex:0 100%
}
}
.content {
margin:.625rem;
padding:.938rem
}
@media only all and (max-width:47.938em) {
body [class*="size-"] {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 100%;
-moz-flex:0 100%;
-ms-flex:0 100%;
flex:0 100%
}
}
.size-1-2 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 50%;
-moz-flex:0 50%;
-ms-flex:0 50%;
flex:0 50%
}
.size-1-3 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 33.33333%;
-moz-flex:0 33.33333%;
-ms-flex:0 33.33333%;
flex:0 33.33333%
}
.size-1-4 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 25%;
-moz-flex:0 25%;
-ms-flex:0 25%;
flex:0 25%
}
.size-1-5 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 20%;
-moz-flex:0 20%;
-ms-flex:0 20%;
flex:0 20%
}
.size-1-6 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 16.66667%;
-moz-flex:0 16.66667%;
-ms-flex:0 16.66667%;
flex:0 16.66667%
}
.size-1-7 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 14.28571%;
-moz-flex:0 14.28571%;
-ms-flex:0 14.28571%;
flex:0 14.28571%
}
.size-1-8 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 12.5%;
-moz-flex:0 12.5%;
-ms-flex:0 12.5%;
flex:0 12.5%
}
.size-1-9 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 11.11111%;
-moz-flex:0 11.11111%;
-ms-flex:0 11.11111%;
flex:0 11.11111%
}
.size-1-10 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 10%;
-moz-flex:0 10%;
-ms-flex:0 10%;
flex:0 10%
}
.size-1-11 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 9.09091%;
-moz-flex:0 9.09091%;
-ms-flex:0 9.09091%;
flex:0 9.09091%
}
.size-1-12 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 8.33333%;
-moz-flex:0 8.33333%;
-ms-flex:0 8.33333%;
flex:0 8.33333%
}
@media only all and (min-width:48em) and (max-width:59.938em) {
.size-tablet-1-2 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 50%;
-moz-flex:0 50%;
-ms-flex:0 50%;
flex:0 50%
}
.size-tablet-1-3 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 33.33333%;
-moz-flex:0 33.33333%;
-ms-flex:0 33.33333%;
flex:0 33.33333%
}
.size-tablet-1-4 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 25%;
-moz-flex:0 25%;
-ms-flex:0 25%;
flex:0 25%
}
.size-tablet-1-5 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 20%;
-moz-flex:0 20%;
-ms-flex:0 20%;
flex:0 20%
}
.size-tablet-1-6 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 16.66667%;
-moz-flex:0 16.66667%;
-ms-flex:0 16.66667%;
flex:0 16.66667%
}
.size-tablet-1-7 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 14.28571%;
-moz-flex:0 14.28571%;
-ms-flex:0 14.28571%;
flex:0 14.28571%
}
.size-tablet-1-8 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 12.5%;
-moz-flex:0 12.5%;
-ms-flex:0 12.5%;
flex:0 12.5%
}
.size-tablet-1-9 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 11.11111%;
-moz-flex:0 11.11111%;
-ms-flex:0 11.11111%;
flex:0 11.11111%
}
.size-tablet-1-10 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 10%;
-moz-flex:0 10%;
-ms-flex:0 10%;
flex:0 10%
}
.size-tablet-1-11 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 9.09091%;
-moz-flex:0 9.09091%;
-ms-flex:0 9.09091%;
flex:0 9.09091%
}
.size-tablet-1-12 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 8.33333%;
-moz-flex:0 8.33333%;
-ms-flex:0 8.33333%;
flex:0 8.33333%
}
}
@media only all and (max-width:47.938em) {
@supports not (flex-wrap:wrap) {
.grid {
display:block;
-webkit-box-lines:inherit;
-moz-box-lines:inherit;
box-lines:inherit;
-webkit-flex-wrap:inherit;
-moz-flex-wrap:inherit;
-ms-flex-wrap:inherit;
flex-wrap:inherit
}
.block {
display:block;
-webkit-box-flex:inherit;
-moz-box-flex:inherit;
box-flex:inherit;
-webkit-flex:inherit;
-moz-flex:inherit;
-ms-flex:inherit;
flex:inherit
}
}
}
.first-block {
-webkit-box-ordinal-group:0;
-webkit-order:-1;
-ms-flex-order:-1;
order:-1
}
.last-block {
-webkit-box-ordinal-group:2;
-webkit-order:1;
-ms-flex-order:1;
order:1
}
.fixed-blocks {
-webkit-flex-flow:row wrap;
-moz-flex-flow:row wrap;
flex-flow:row wrap
}
.fixed-blocks .block {
-webkit-box-flex:inherit;
-moz-box-flex:inherit;
box-flex:inherit;
-webkit-flex:inherit;
-moz-flex:inherit;
-ms-flex:inherit;
flex:inherit;
width:25%
}
@media only all and (min-width:60em) and (max-width:74.938em) {
.fixed-blocks .block {
width:33.33333%
}
}
@media only all and (min-width:48em) and (max-width:59.938em) {
.fixed-blocks .block {
width:50%
}
}
@media only all and (max-width:47.938em) {
.fixed-blocks .block {
width:100%
}
}
body {
font-size:1.05rem;
line-height:1.7
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin:.85rem 0 1.7rem 0;
text-rendering:optimizeLegibility
}
h1 {
font-size:3.25rem
}
h2 {
font-size:2.55rem
}
h3 {
font-size:2.15rem
}
h4 {
font-size:1.8rem
}
h5 {
font-size:1.4rem
}
h6 {
font-size:.9rem
}
p {
margin:1.7rem 0
}
ul,
ol {
margin-top:1.7rem;
margin-bottom:1.7rem
}
ul ul,
ul ol,
ol ul,
ol ol {
margin-top:0;
margin-bottom:0
}
blockquote {
margin:1.7rem 0;
padding-left:.85rem
}
cite {
display:block;
font-size:.925rem
}
cite:before {
content:"\2014 \0020"
}
pre {
margin:1.7rem 0;
padding:.938rem
}
code {
vertical-align:bottom
}
small {
font-size:.925rem
}
hr {
border-left:none;
border-right:none;
border-top:none;
margin:1.7rem 0
}
fieldset {
border:0;
padding:.938rem;
margin:0 0 1.7rem 0
}
input,
label,
select {
display:block
}
label {
margin-bottom:.425rem
}
label.required:after {
content:"*"
}
label abbr {
display:none
}
textarea,
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"],
select[multiple=multiple] {
-webkit-transition:border-color;
-moz-transition:border-color;
transition:border-color;
border-radius:.1875rem;
margin-bottom:.85rem;
padding:.425rem .425rem;
width:100%
}
textarea:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
select[multiple=multiple]:focus {
outline:none
}
textarea {
resize:vertical
}
input[type="checkbox"],
input[type="radio"] {
display:inline;
margin-right:.425rem
}
input[type="file"] {
width:100%
}
select {
width:auto;
max-width:100%;
margin-bottom:1.7rem
}
button,
input[type="submit"] {
cursor:pointer;
user-select:none;
vertical-align:middle;
white-space:nowrap;
border:inherit
}
@charset "UTF-8";
#top-github-link,#body #breadcrumbs {
position:relative;
top:50%;
-webkit-transform:translateY(-50%);
-moz-transform:translateY(-50%);
-o-transform:translateY(-50%);
-ms-transform:translateY(-50%);
transform:translateY(-50%)
}
.button,
.button-secondary {
display:inline-block;
padding:7px 12px
}
.button:active,
.button-secondary:active {
margin:2px 0 -2px 0
}
body {
background:#fff;
color:#555;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale
}
a {
color:#1694CA
}
a:hover {
color:#0e6185
}
pre {
position:relative
}
.bg {
background:#fff;
border:1px solid #eaeaea
}
b,
strong,
label,
th {
font-weight:600
}
.default-animation,
#header #logo-svg,
#header #logo-svg path,
#sidebar,
#sidebar ul,
#body,
#body .padding,
#body .nav {
-webkit-transition:all 0.5s ease;
-moz-transition:all 0.5s ease;
transition:all 0.5s ease
}
fieldset {
border:1px solid #ddd
}
textarea,
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"],
select[multiple=multiple] {
background-color:white;
border:1px solid #ddd;
box-shadow:inset 0 1px 3px rgba(0,0,0,.06)
}
textarea:hover,
input[type="email"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="text"]:hover,
input[type="url"]:hover,
input[type="color"]:hover,
input[type="date"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="month"]:hover,
input[type="time"]:hover,
input[type="week"]:hover,
select[multiple=multiple]:hover {
border-color:#c4c4c4
}
textarea:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
select[multiple=multiple]:focus {
border-color:#1694CA;
box-shadow:inset 0 1px 3px rgba(0,0,0,.06),0 0 5px rgba(19,131,179,.7)
}
#header {
background:#1694CA;
color:#fff;
text-align:center;
padding:1rem
}
#header a {
display:inline-block
}
#header #logo-svg {
width:8rem;
height:2rem
}
#header #logo-svg path {
fill:#fff
}
.searchbox {
margin-top:.5rem;
position:relative;
border:1px solid #19a5e1;
background:#1383b3;
border-radius:4px
}
.searchbox label {
color:rgba(255,255,255,.8);
position:absolute;
left:10px;
top:3px
}
.searchbox span {
color:rgba(255,255,255,.6);
position:absolute;
right:10px;
top:3px;
cursor:pointer
}
.searchbox span:hover {
color:rgba(255,255,255,.9)
}
.searchbox input {
display:inline-block;
color:#fff;
width:100%;
height:30px;
background:transparent;
border:0;
padding:0 25px 0 30px;
margin:0;
font-weight:400
}
.searchbox input::-webkit-input-placeholder {
color:rgba(255,255,255,.6)
}
.searchbox input::-moz-placeholder {
color:rgba(255,255,255,.6)
}
.searchbox input:-moz-placeholder {
color:rgba(255,255,255,.6)
}
.searchbox input:-ms-input-placeholder {
color:rgba(255,255,255,.6)
}
#sidebar-toggle {
display:none
}
@media only all and (max-width:47.938em) {
#sidebar-toggle {
display:inline-block
}
}
#sidebar {
background-color:#38424D;
position:fixed;
top:0;
width:300px;
bottom:0;
left:0;
font-weight:500;
font-size:15px
}
#sidebar a {
color:#bbb
}
#sidebar a:hover {
color:#d5d5d5
}
#sidebar a.subtitle {
color:rgba(187,187,187,.6)
}
#sidebar hr {
border-bottom:1px solid #323a44
}
#sidebar a.padding {
padding:0 1rem
}
#sidebar h5 {
margin:2rem 0 0;
position:relative;
line-height:2
}
#sidebar h5 a {
display:block;
margin-left:0;
margin-right:0;
padding-left:1rem;
padding-right:1rem
}
#sidebar h5 i {
color:rgba(187,187,187,.6);
position:absolute;
right:.6rem;
top:.7rem;
font-size:80%
}
#sidebar h5.parent a {
background:#293038;
color:#c8c8c8!important
}
#sidebar h5.active a {
background:#fff;
color:#555!important
}
#sidebar h5.active i {
color:#555!important
}
#sidebar h5+ul.topics {
display:none;
margin-top:0
}
#sidebar h5.parent+ul.topics,
#sidebar h5.active+ul.topics {
display:block
}
#sidebar ul {
list-style:none;
padding:0;
margin:0
}
#sidebar ul.searched a {
color:#888
}
#sidebar ul.searched .search-match a {
color:#d5d5d5
}
#sidebar ul.searched .search-match a:hover {
color:#eee
}
#sidebar ul.topics {
margin:0 1rem
}
#sidebar ul.topics.searched ul {
display:block
}
#sidebar ul.topics ul {
display:none;
padding-bottom:1rem
}
#sidebar ul.topics ul ul {
padding-bottom:0
}
#sidebar ul.topics li.parent ul,
#sidebar ul.topics>li.active ul {
display:block
}
#sidebar ul.topics>li>a {
line-height:2rem;
font-size:1.1rem
}
#sidebar ul.topics>li>a b {
opacity:.5;
font-weight:400
}
#sidebar ul.topics>li>a .fa {
margin-top:9px
}
#sidebar ul.topics>li.parent,
#sidebar ul.topics>li.active {
background:#2d353e;
margin-left:-1rem;
margin-right:-1rem;
padding-left:1rem;
padding-right:1rem
}
#sidebar ul li.active>a {
background:#fff;
color:#555!important;
margin-left:-1rem;
margin-right:-1rem;
padding-left:1rem;
padding-right:1rem
}
#sidebar ul li {
padding:0
}
#sidebar ul li.visited+span {
margin-right:16px
}
#sidebar ul li a {
display:block;
padding:2px 0
}
#sidebar ul li a span {
text-overflow:ellipsis;
overflow:hidden;
white-space:nowrap;
display:block
}
#sidebar ul li>a {
padding:4px 0
}
#sidebar ul li .fa {
display:none;
float:right;
font-size:13px;
min-width:16px;
margin:4px 0 0 0;
text-align:right
}
#sidebar ul li.visited>a .read-icon {
color:#1694CA;
display:inline
}
#sidebar ul li li {
padding-left:1rem;
text-indent:.2rem
}
#main {
background:#f7f7f7;
margin:0 0 1.563rem 0
}
#body {
position:relative;
margin-left:300px;
min-height:100%
}
#body img,
#body .video-container {
margin:3rem auto;
display:block;
text-align:center
}
#body img.border,
#body .video-container.border {
border:2px solid #e6e6e6!important;
padding:2px
}
#body img.shadow,
#body .video-container.shadow {
box-shadow:0 10px 30px rgba(0,0,0,.1)
}
#body .bordered {
border:1px solid #ccc
}
#body .padding {
padding:3rem 6rem
}
@media only all and (max-width:59.938em) {
#body .padding {
position:static;
padding:15px 3rem
}
}
@media only all and (max-width:47.938em) {
#body .padding {
padding:5px 1rem
}
}
#body h1+hr {
margin-top:-1.7rem;
margin-bottom:3rem
}
@media only all and (max-width:59.938em) {
#body #navigation {
position:static;
margin-right:0!important;
width:100%;
display:table
}
}
#body .nav {
position:fixed;
top:0;
bottom:0;
width:4rem;
font-size:50px;
height:100%;
cursor:pointer;
display:table;
text-align:center
}
#body .nav>i {
display:table-cell;
vertical-align:middle;
text-align:center
}
@media only all and (max-width:59.938em) {
#body .nav {
display:table-cell;
position:static;
top:auto;
width:50%;
text-align:center;
height:100px;
line-height:100px;
padding-top:0
}
#body .nav>i {
display:inline-block
}
}
#body .nav:hover {
background:#F6F6F6
}
#body .nav.nav-pref {
left:0
}
#body .nav.nav-next {
right:0
}
#body-inner {
margin-bottom:5rem
}
#chapter {
display:flex;
align-items:center;
justify-content:center;
height:100%;
padding:2rem 0
}
#chapter #body-inner {
padding-bottom:3rem;
max-width:80%
}
#chapter h3 {
font-family:"Muli","Helvetica","Tahoma","Geneva","Arial",sans-serif;
font-weight:400;
text-align:center
}
#chapter h1 {
font-size:5rem;
border-bottom:4px solid #F0F2F4
}
#chapter p {
text-align:center;
font-size:1.2rem
}
#footer {
padding:3rem 1rem;
color:#a2a2a2;
font-size:13px
}
#footer p {
margin:0
}
body {
font-family:"Muli","Helvetica","Tahoma","Geneva","Arial",sans-serif;
letter-spacing:-.03rem;
font-weight:400
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family:"Montserrat","Helvetica","Tahoma","Geneva","Arial",sans-serif;
font-weight:400;
text-rendering:optimizeLegibility;
line-height:150%;
letter-spacing:0
}
h1 {
text-align:center;
letter-spacing:-3px
}
h2 {
letter-spacing:-2px
}
h3 {
letter-spacing:-1px
}
blockquote {
border-left:10px solid #F0F2F4
}
blockquote p {
font-size:1.1rem;
color:#999
}
blockquote cite {
display:block;
text-align:right;
color:#666;
font-size:1.2rem
}
blockquote {
position:relative
}
blockquote blockquote {
position:static
}
blockquote>blockquote>blockquote {
margin:0
}
blockquote>blockquote>blockquote p {
padding:15px;
display:block;
font-size:1rem;
margin-top:0rem;
margin-bottom:0rem;
color:#666
}
blockquote>blockquote>blockquote p:first-child:before {
position:absolute;
top:2px;
color:#fff;
font-family:FontAwesome;
content:'';
left:10px
}
blockquote>blockquote>blockquote p:first-child:after {
position:absolute;
top:2px;
color:#fff;
left:2rem;
font-weight:700;
content:'Info'
}
blockquote>blockquote>blockquote>p {
margin-left:-71px;
border-top:30px solid #F0B37E;
background:#FFF2DB
}
blockquote>blockquote>blockquote>blockquote>p {
margin-left:-94px;
border-top:30px solid rgba(217,83,79,.8);
background:#FAE2E2
}
blockquote>blockquote>blockquote>blockquote>p:first-child:after {
content:'Warning'
}
blockquote>blockquote>blockquote>blockquote>blockquote>p {
margin-left:-118px;
border-top:30px solid #6AB0DE;
background:#E7F2FA
}
blockquote>blockquote>blockquote>blockquote>blockquote>p:first-child:after {
content:'Note'
}
blockquote>blockquote>blockquote>blockquote>blockquote>blockquote>p {
margin-left:-142px;
border-top:30px solid rgba(92,184,92,.8);
background:#E6F9E6
}
blockquote>blockquote>blockquote>blockquote>blockquote>blockquote>p:first-child:after {
content:'Tip'
}
code,
kbd,
pre,
samp {
font-family:"Inconsolata",monospace
}
code {
background:#f9f2f4;
color:#9c1d3d;
padding:.2rem .4rem;
border-radius:3px
}
pre {
padding:1rem;
margin:2rem 0;
background:#f6f6f6;
border:1px solid #ddd;
border-radius:2px;
line-height:1.15;
font-size:1rem
}
pre code {
color:#237794;
background:inherit;
font-size:1rem
}
hr {
border-bottom:4px solid #F0F2F4
}
.page-title {
margin-top:-25px;
padding:25px;
float:left;
clear:both;
background:#1694CA;
color:#fff
}
#body a.anchor-link {
color:#ccc
}
#body a.anchor-link:hover {
color:#1694CA
}
.scrollbar-inner>.scroll-element .scroll-element_track {
background-color:rgba(255,255,255,.3)
}
.scrollbar-inner>.scroll-element .scroll-bar {
background-color:#b5d1eb
}
.scrollbar-inner>.scroll-element:hover .scroll-bar {
background-color:#ccc
}
.scrollbar-inner>.scroll-element.scroll-draggable .scroll-bar {
background-color:#ccc
}
table {
border:1px solid #eaeaea;
table-layout:auto
}
th {
background:#f7f7f7;
padding:.5rem
}
td {
padding:.5rem;
border:1px solid #eaeaea
}
.button {
background:#1694CA;
color:#fff;
box-shadow:0 3px 0 #1380ae
}
.button:hover {
background:#1380ae;
box-shadow:0 3px 0 #106c93;
color:#fff
}
.button:active {
box-shadow:0 1px 0 #106c93
}
.button-secondary {
background:#F8B450;
color:#fff;
box-shadow:0 3px 0 #f7a733
}
.button-secondary:hover {
background:#f7a733;
box-shadow:0 3px 0 #f69b15;
color:#fff
}
.button-secondary:active {
box-shadow:0 1px 0 #f69b15
}
.bullets {
margin:1.7rem 0;
margin-left:-.85rem;
margin-right:-.85rem;
overflow:auto
}
.bullet {
float:left;
padding:0 .85rem
}
.two-column-bullet {
width:50%
}
@media only all and (max-width:47.938em) {
.two-column-bullet {
width:100%
}
}
.three-column-bullet {
width:33.33333%
}
@media only all and (max-width:47.938em) {
.three-column-bullet {
width:100%
}
}
.four-column-bullet {
width:25%
}
@media only all and (max-width:47.938em) {
.four-column-bullet {
width:100%
}
}
.bullet-icon {
float:left;
background:#1694CA;
padding:.875rem;
width:3.5rem;
height:3.5rem;
border-radius:50%;
color:#fff;
font-size:1.75rem;
text-align:center
}
.bullet-icon-1 {
background:#1694CA
}
.bullet-icon-2 {
background:#16cac4
}
.bullet-icon-3 {
background:#b2ca16
}
.bullet-content {
margin-left:4.55rem
}
.tooltipped {
position:relative
}
.tooltipped:after {
position:absolute;
z-index:1000000;
display:none;
padding:5px 8px;
font:normal normal 11px/1.5 "Muli","Helvetica","Tahoma","Geneva","Arial",sans-serif;
color:#fff;
text-align:center;
text-decoration:none;
text-shadow:none;
text-transform:none;
letter-spacing:normal;
word-wrap:break-word;
white-space:pre;
pointer-events:none;
content:attr(aria-label);
background:rgba(0,0,0,.8);
border-radius:3px;
-webkit-font-smoothing:subpixel-antialiased
}
.tooltipped:before {
position:absolute;
z-index:1000001;
display:none;
width:0;
height:0;
color:rgba(0,0,0,.8);
pointer-events:none;
content:"";
border:5px solid transparent
}
.tooltipped:hover:before,
.tooltipped:hover:after,
.tooltipped:active:before,
.tooltipped:active:after,
.tooltipped:focus:before,
.tooltipped:focus:after {
display:inline-block;
text-decoration:none
}
.tooltipped-s:after,
.tooltipped-se:after,
.tooltipped-sw:after {
top:100%;
right:50%;
margin-top:5px
}
.tooltipped-s:before,
.tooltipped-se:before,
.tooltipped-sw:before {
top:auto;
right:50%;
bottom:-5px;
margin-right:-5px;
border-bottom-color:rgba(0,0,0,.8)
}
.tooltipped-se:after {
right:auto;
left:50%;
margin-left:-15px
}
.tooltipped-sw:after {
margin-right:-15px
}
.tooltipped-n:after,
.tooltipped-ne:after,
.tooltipped-nw:after {
right:50%;
bottom:100%;
margin-bottom:5px
}
.tooltipped-n:before,
.tooltipped-ne:before,
.tooltipped-nw:before {
top:-5px;
right:50%;
bottom:auto;
margin-right:-5px;
border-top-color:rgba(0,0,0,.8)
}
.tooltipped-ne:after {
right:auto;
left:50%;
margin-left:-15px
}
.tooltipped-nw:after {
margin-right:-15px
}
.tooltipped-s:after,
.tooltipped-n:after {
transform:translateX(50%)
}
.tooltipped-w:after {
right:100%;
bottom:50%;
margin-right:5px;
transform:translateY(50%)
}
.tooltipped-w:before {
top:50%;
bottom:50%;
left:-5px;
margin-top:-5px;
border-left-color:rgba(0,0,0,.8)
}
.tooltipped-e:after {
bottom:50%;
left:100%;
margin-left:5px;
transform:translateY(50%)
}
.tooltipped-e:before {
top:50%;
right:-5px;
bottom:50%;
margin-top:-5px;
border-right-color:rgba(0,0,0,.8)
}
.highlightable {
padding:25px 0 15px
}
.scroll-wrapper {
overflow:hidden!important;
padding:0!important;
position:relative
}
.scroll-wrapper>.scroll-content {
border:none!important;
box-sizing:content-box!important;
height:auto;
left:0;
margin:0;
max-height:none;
max-width:none!important;
overflow:scroll!important;
padding:0;
position:relative!important;
top:0;
width:auto!important
}
.scroll-wrapper>.scroll-content::-webkit-scrollbar {
height:0;
width:0
}
.scroll-element {
display:none
}
.scroll-element,
.scroll-element div {
box-sizing:content-box
}
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
display:block
}
.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
cursor:default
}
.scroll-textarea>.scroll-content {
overflow:hidden!important
}
.scroll-textarea>.scroll-content>textarea {
border:none!important;
box-sizing:border-box;
height:100%!important;
margin:0;
max-height:none!important;
max-width:none!important;
overflow:scroll!important;
outline:none;
padding:2px;
position:relative!important;
top:0;
width:100%!important
}
.scroll-textarea>.scroll-content>textarea::-webkit-scrollbar {
height:0;
width:0
}
.scrollbar-inner>.scroll-element,
.scrollbar-inner>.scroll-element div {
border:none;
margin:0;
padding:0;
position:absolute;
z-index:10
}
.scrollbar-inner>.scroll-element div {
display:block;
height:100%;
left:0;
top:0;
width:100%
}
.scrollbar-inner>.scroll-element.scroll-x {
bottom:2px;
height:8px;
left:0;
width:100%
}
.scrollbar-inner>.scroll-element.scroll-y {
height:100%;
right:2px;
top:0;
width:8px
}
.scrollbar-inner>.scroll-element .scroll-element_outer {
overflow:hidden
}
.scrollbar-inner>.scroll-element .scroll-element_outer,
.scrollbar-inner>.scroll-element .scroll-element_track,
.scrollbar-inner>.scroll-element .scroll-bar {
-webkit-border-radius:8px;
-moz-border-radius:8px;
border-radius:8px
}
.scrollbar-inner>.scroll-element .scroll-element_track,
.scrollbar-inner>.scroll-element .scroll-bar {
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
filter:alpha(opacity=30);
opacity:.3
}
.scrollbar-inner>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
left:-12px
}
.scrollbar-inner>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
top:-12px
}
.scrollbar-inner>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
left:-12px
}
.scrollbar-inner>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
top:-12px
}
.lightbox-active #body {
overflow:visible
}
.lightbox-active #body .padding {
overflow:visible
}
#github-contrib i {
vertical-align:middle
}
.featherlight img {
margin:0!important
}
.lifecycle #body-inner ul {
list-style:none;
margin:0;
padding:2rem 0 0;
position:relative
}
.lifecycle #body-inner ol {
margin:1rem 0 1rem 0;
padding:2rem;
position:relative
}
.lifecycle #body-inner ol li {
margin-left:1rem
}
.lifecycle #body-inner ol strong,
.lifecycle #body-inner ol label,
.lifecycle #body-inner ol th {
text-decoration:underline
}
.lifecycle #body-inner ol ol {
margin-left:-1rem
}
.lifecycle #body-inner h3[class*='level'] {
font-size:20px;
position:absolute;
margin:0;
padding:4px 10px;
right:0;
z-index:1000;
color:#fff;
background:#1ABC9C
}
.lifecycle #body-inner ol h3 {
margin-top:1rem!important;
right:2rem!important
}
.lifecycle #body-inner .level-1+ol {
background:#f6fefc;
border:4px solid #1ABC9C;
color:#16A085
}
.lifecycle #body-inner .level-1+ol h3 {
background:#2ECC71
}
.lifecycle #body-inner .level-2+ol {
background:#f7fdf9;
border:4px solid #2ECC71;
color:#27AE60
}
.lifecycle #body-inner .level-2+ol h3 {
background:#3498DB
}
.lifecycle #body-inner .level-3+ol {
background:#f3f9fd;
border:4px solid #3498DB;
color:#2980B9
}
.lifecycle #body-inner .level-3+ol h3 {
background:#34495E
}
.lifecycle #body-inner .level-4+ol {
background:#e4eaf0;
border:4px solid #34495E;
color:#2C3E50
}
.lifecycle #body-inner .level-4+ol h3 {
background:#34495E
}
#top-bar {
background:#F6F6F6;
border-radius:2px;
margin:0rem -1rem 2rem;
padding:0 1rem;
height:0;
min-height:3rem
}
#top-github-link {
position:relative;
z-index:1;
float:right;
display:block
}
#body #breadcrumbs {
height:auto;
display:block;
margin-bottom:0;
padding-left:0;
line-height:1.4
}
#body #breadcrumbs span {
padding:0 .1rem
}
@media only all and (max-width:59.938em) {
#sidebar {
width:230px
}
#body {
margin-left:230px
}
}
@media only all and (max-width:47.938em) {
#sidebar {
width:230px;
left:-230px
}
#body {
margin-left:0;
width:100%
}
.sidebar-hidden {
overflow:hidden
}
.sidebar-hidden #sidebar {
left:0
}
.sidebar-hidden #body {
margin-left:230px;
overflow:hidden
}
.sidebar-hidden #overlay {
position:absolute;
left:0;
right:0;
top:0;
bottom:0;
z-index:10;
background:rgba(255,255,255,.5);
cursor:pointer
}
}
.copy-to-clipboard {
background-image:url(/user/themes/learn2/images/clippy.svg);
background-position:50% 50%;
background-size:16px 16px;
background-repeat:no-repeat;
width:27px;
height:1.45rem;
top:-1px;
display:inline-block;
vertical-align:middle;
position:relative;
color:#3c3c3c;
background-color:#f9f2f4;
margin-left:-.2rem;
cursor:pointer;
border-radius:0 2px 2px 0
}
.copy-to-clipboard:hover {
background-color:#f1e1e5
}
pre .copy-to-clipboard {
position:absolute;
right:4px;
top:4px;
background-color:#eee;
border-color:#ddd;
border-radius:2px
}
pre .copy-to-clipboard:hover {
background-color:#d9d9d9
}
.parent-element {
-webkit-transform-style:preserve-3d;
-moz-transform-style:preserve-3d;
transform-style:preserve-3d
}
@font-face {
font-family:'FontAwesome';
src:url(/user/themes/learn2/fonts/fontawesome-webfont.eot?v=4.7.0);
src:url('/user/themes/learn2/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),
url(/user/themes/learn2/fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),
url(/user/themes/learn2/fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),
url(/user/themes/learn2/fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),
url('/user/themes/learn2/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
font-weight:400;
font-style:normal
}
.fa {
display:inline-block;
font:normal normal normal 14px/1 FontAwesome;
font-size:inherit;
text-rendering:auto;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale
}
.fa-lg {
font-size:1.33333333em;
line-height:.75em;
vertical-align:-15%
}
.fa-2x {
font-size:2em
}
.fa-3x {
font-size:3em
}
.fa-4x {
font-size:4em
}
.fa-5x {
font-size:5em
}
.fa-fw {
width:1.28571429em;
text-align:center
}
.fa-ul {
padding-left:0;
margin-left:2.14285714em;
list-style-type:none
}
.fa-ul>li {
position:relative
}
.fa-li {
position:absolute;
left:-2.14285714em;
width:2.14285714em;
top:.14285714em;
text-align:center
}
.fa-li.fa-lg {
left:-1.85714286em
}
.fa-border {
padding:.2em .25em .15em;
border:solid .08em #eee;
border-radius:.1em
}
.fa-pull-left {
float:left
}
.fa-pull-right {
float:right
}
.fa.fa-pull-left {
margin-right:.3em
}
.fa.fa-pull-right {
margin-left:.3em
}
.pull-right {
float:right
}
.pull-left {
float:left
}
.fa.pull-left {
margin-right:.3em
}
.fa.pull-right {
margin-left:.3em
}
.fa-spin {
-webkit-animation:fa-spin 2s infinite linear;
animation:fa-spin 2s infinite linear
}
.fa-pulse {
-webkit-animation:fa-spin 1s infinite steps(8);
animation:fa-spin 1s infinite steps(8)
}
@-webkit-keyframes fa-spin {
0% {
-webkit-transform:rotate(0deg);
transform:rotate(0deg)
}
100% {
-webkit-transform:rotate(359deg);
transform:rotate(359deg)
}
}
@keyframes fa-spin {
0% {
-webkit-transform:rotate(0deg);
transform:rotate(0deg)
}
100% {
-webkit-transform:rotate(359deg);
transform:rotate(359deg)
}
}
.fa-rotate-90 {
-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
-webkit-transform:rotate(90deg);
-ms-transform:rotate(90deg);
transform:rotate(90deg)
}
.fa-rotate-180 {
-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
-webkit-transform:rotate(180deg);
-ms-transform:rotate(180deg);
transform:rotate(180deg)
}
.fa-rotate-270 {
-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
-webkit-transform:rotate(270deg);
-ms-transform:rotate(270deg);
transform:rotate(270deg)
}
.fa-flip-horizontal {
-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
-webkit-transform:scale(-1,1);
-ms-transform:scale(-1,1);
transform:scale(-1,1)
}
.fa-flip-vertical {
-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
-webkit-transform:scale(1,-1);
-ms-transform:scale(1,-1);
transform:scale(1,-1)
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
filter:none
}
.fa-stack {
position:relative;
display:inline-block;
width:2em;
height:2em;
line-height:2em;
vertical-align:middle
}
.fa-stack-1x,
.fa-stack-2x {
position:absolute;
left:0;
width:100%;
text-align:center
}
.fa-stack-1x {
line-height:inherit
}
.fa-stack-2x {
font-size:2em
}
.fa-inverse {
color:#fff
}
.fa-glass:before {
content:"\f000"
}
.fa-music:before {
content:"\f001"
}
.fa-search:before {
content:"\f002"
}
.fa-envelope-o:before {
content:"\f003"
}
.fa-heart:before {
content:"\f004"
}
.fa-star:before {
content:"\f005"
}
.fa-star-o:before {
content:"\f006"
}
.fa-user:before {
content:"\f007"
}
.fa-film:before {
content:"\f008"
}
.fa-th-large:before {
content:"\f009"
}
.fa-th:before {
content:"\f00a"
}
.fa-th-list:before {
content:"\f00b"
}
.fa-check:before {
content:"\f00c"
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
content:"\f00d"
}
.fa-search-plus:before {
content:"\f00e"
}
.fa-search-minus:before {
content:"\f010"
}
.fa-power-off:before {
content:"\f011"
}
.fa-signal:before {
content:"\f012"
}
.fa-gear:before,
.fa-cog:before {
content:"\f013"
}
.fa-trash-o:before {
content:"\f014"
}
.fa-home:before {
content:"\f015"
}
.fa-file-o:before {
content:"\f016"
}
.fa-clock-o:before {
content:"\f017"
}
.fa-road:before {
content:"\f018"
}
.fa-download:before {
content:"\f019"
}
.fa-arrow-circle-o-down:before {
content:"\f01a"
}
.fa-arrow-circle-o-up:before {
content:"\f01b"
}
.fa-inbox:before {
content:"\f01c"
}
.fa-play-circle-o:before {
content:"\f01d"
}
.fa-rotate-right:before,
.fa-repeat:before {
content:"\f01e"
}
.fa-refresh:before {
content:"\f021"
}
.fa-list-alt:before {
content:"\f022"
}
.fa-lock:before {
content:"\f023"
}
.fa-flag:before {
content:"\f024"
}
.fa-headphones:before {
content:"\f025"
}
.fa-volume-off:before {
content:"\f026"
}
.fa-volume-down:before {
content:"\f027"
}
.fa-volume-up:before {
content:"\f028"
}
.fa-qrcode:before {
content:"\f029"
}
.fa-barcode:before {
content:"\f02a"
}
.fa-tag:before {
content:"\f02b"
}
.fa-tags:before {
content:"\f02c"
}
.fa-book:before {
content:"\f02d"
}
.fa-bookmark:before {
content:"\f02e"
}
.fa-print:before {
content:"\f02f"
}
.fa-camera:before {
content:"\f030"
}
.fa-font:before {
content:"\f031"
}
.fa-bold:before {
content:"\f032"
}
.fa-italic:before {
content:"\f033"
}
.fa-text-height:before {
content:"\f034"
}
.fa-text-width:before {
content:"\f035"
}
.fa-align-left:before {
content:"\f036"
}
.fa-align-center:before {
content:"\f037"
}
.fa-align-right:before {
content:"\f038"
}
.fa-align-justify:before {
content:"\f039"
}
.fa-list:before {
content:"\f03a"
}
.fa-dedent:before,
.fa-outdent:before {
content:"\f03b"
}
.fa-indent:before {
content:"\f03c"
}
.fa-video-camera:before {
content:"\f03d"
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
content:"\f03e"
}
.fa-pencil:before {
content:"\f040"
}
.fa-map-marker:before {
content:"\f041"
}
.fa-adjust:before {
content:"\f042"
}
.fa-tint:before {
content:"\f043"
}
.fa-edit:before,
.fa-pencil-square-o:before {
content:"\f044"
}
.fa-share-square-o:before {
content:"\f045"
}
.fa-check-square-o:before {
content:"\f046"
}
.fa-arrows:before {
content:"\f047"
}
.fa-step-backward:before {
content:"\f048"
}
.fa-fast-backward:before {
content:"\f049"
}
.fa-backward:before {
content:"\f04a"
}
.fa-play:before {
content:"\f04b"
}
.fa-pause:before {
content:"\f04c"
}
.fa-stop:before {
content:"\f04d"
}
.fa-forward:before {
content:"\f04e"
}
.fa-fast-forward:before {
content:"\f050"
}
.fa-step-forward:before {
content:"\f051"
}
.fa-eject:before {
content:"\f052"
}
.fa-chevron-left:before {
content:"\f053"
}
.fa-chevron-right:before {
content:"\f054"
}
.fa-plus-circle:before {
content:"\f055"
}
.fa-minus-circle:before {
content:"\f056"
}
.fa-times-circle:before {
content:"\f057"
}
.fa-check-circle:before {
content:"\f058"
}
.fa-question-circle:before {
content:"\f059"
}
.fa-info-circle:before {
content:"\f05a"
}
.fa-crosshairs:before {
content:"\f05b"
}
.fa-times-circle-o:before {
content:"\f05c"
}
.fa-check-circle-o:before {
content:"\f05d"
}
.fa-ban:before {
content:"\f05e"
}
.fa-arrow-left:before {
content:"\f060"
}
.fa-arrow-right:before {
content:"\f061"
}
.fa-arrow-up:before {
content:"\f062"
}
.fa-arrow-down:before {
content:"\f063"
}
.fa-mail-forward:before,
.fa-share:before {
content:"\f064"
}
.fa-expand:before {
content:"\f065"
}
.fa-compress:before {
content:"\f066"
}
.fa-plus:before {
content:"\f067"
}
.fa-minus:before {
content:"\f068"
}
.fa-asterisk:before {
content:"\f069"
}
.fa-exclamation-circle:before {
content:"\f06a"
}
.fa-gift:before {
content:"\f06b"
}
.fa-leaf:before {
content:"\f06c"
}
.fa-fire:before {
content:"\f06d"
}
.fa-eye:before {
content:"\f06e"
}
.fa-eye-slash:before {
content:"\f070"
}
.fa-warning:before,
.fa-exclamation-triangle:before {
content:"\f071"
}
.fa-plane:before {
content:"\f072"
}
.fa-calendar:before {
content:"\f073"
}
.fa-random:before {
content:"\f074"
}
.fa-comment:before {
content:"\f075"
}
.fa-magnet:before {
content:"\f076"
}
.fa-chevron-up:before {
content:"\f077"
}
.fa-chevron-down:before {
content:"\f078"
}
.fa-retweet:before {
content:"\f079"
}
.fa-shopping-cart:before {
content:"\f07a"
}
.fa-folder:before {
content:"\f07b"
}
.fa-folder-open:before {
content:"\f07c"
}
.fa-arrows-v:before {
content:"\f07d"
}
.fa-arrows-h:before {
content:"\f07e"
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
content:"\f080"
}
.fa-twitter-square:before {
content:"\f081"
}
.fa-facebook-square:before {
content:"\f082"
}
.fa-camera-retro:before {
content:"\f083"
}
.fa-key:before {
content:"\f084"
}
.fa-gears:before,
.fa-cogs:before {
content:"\f085"
}
.fa-comments:before {
content:"\f086"
}
.fa-thumbs-o-up:before {
content:"\f087"
}
.fa-thumbs-o-down:before {
content:"\f088"
}
.fa-star-half:before {
content:"\f089"
}
.fa-heart-o:before {
content:"\f08a"
}
.fa-sign-out:before {
content:"\f08b"
}
.fa-linkedin-square:before {
content:"\f08c"
}
.fa-thumb-tack:before {
content:"\f08d"
}
.fa-external-link:before {
content:"\f08e"
}
.fa-sign-in:before {
content:"\f090"
}
.fa-trophy:before {
content:"\f091"
}
.fa-github-square:before {
content:"\f092"
}
.fa-upload:before {
content:"\f093"
}
.fa-lemon-o:before {
content:"\f094"
}
.fa-phone:before {
content:"\f095"
}
.fa-square-o:before {
content:"\f096"
}
.fa-bookmark-o:before {
content:"\f097"
}
.fa-phone-square:before {
content:"\f098"
}
.fa-twitter:before {
content:"\f099"
}
.fa-facebook-f:before,
.fa-facebook:before {
content:"\f09a"
}
.fa-github:before {
content:"\f09b"
}
.fa-unlock:before {
content:"\f09c"
}
.fa-credit-card:before {
content:"\f09d"
}
.fa-feed:before,
.fa-rss:before {
content:"\f09e"
}
.fa-hdd-o:before {
content:"\f0a0"
}
.fa-bullhorn:before {
content:"\f0a1"
}
.fa-bell:before {
content:"\f0f3"
}
.fa-certificate:before {
content:"\f0a3"
}
.fa-hand-o-right:before {
content:"\f0a4"
}
.fa-hand-o-left:before {
content:"\f0a5"
}
.fa-hand-o-up:before {
content:"\f0a6"
}
.fa-hand-o-down:before {
content:"\f0a7"
}
.fa-arrow-circle-left:before {
content:"\f0a8"
}
.fa-arrow-circle-right:before {
content:"\f0a9"
}
.fa-arrow-circle-up:before {
content:"\f0aa"
}
.fa-arrow-circle-down:before {
content:"\f0ab"
}
.fa-globe:before {
content:"\f0ac"
}
.fa-wrench:before {
content:"\f0ad"
}
.fa-tasks:before {
content:"\f0ae"
}
.fa-filter:before {
content:"\f0b0"
}
.fa-briefcase:before {
content:"\f0b1"
}
.fa-arrows-alt:before {
content:"\f0b2"
}
.fa-group:before,
.fa-users:before {
content:"\f0c0"
}
.fa-chain:before,
.fa-link:before {
content:"\f0c1"
}
.fa-cloud:before {
content:"\f0c2"
}
.fa-flask:before {
content:"\f0c3"
}
.fa-cut:before,
.fa-scissors:before {
content:"\f0c4"
}
.fa-copy:before,
.fa-files-o:before {
content:"\f0c5"
}
.fa-paperclip:before {
content:"\f0c6"
}
.fa-save:before,
.fa-floppy-o:before {
content:"\f0c7"
}
.fa-square:before {
content:"\f0c8"
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
content:"\f0c9"
}
.fa-list-ul:before {
content:"\f0ca"
}
.fa-list-ol:before {
content:"\f0cb"
}
.fa-strikethrough:before {
content:"\f0cc"
}
.fa-underline:before {
content:"\f0cd"
}
.fa-table:before {
content:"\f0ce"
}
.fa-magic:before {
content:"\f0d0"
}
.fa-truck:before {
content:"\f0d1"
}
.fa-pinterest:before {
content:"\f0d2"
}
.fa-pinterest-square:before {
content:"\f0d3"
}
.fa-google-plus-square:before {
content:"\f0d4"
}
.fa-google-plus:before {
content:"\f0d5"
}
.fa-money:before {
content:"\f0d6"
}
.fa-caret-down:before {
content:"\f0d7"
}
.fa-caret-up:before {
content:"\f0d8"
}
.fa-caret-left:before {
content:"\f0d9"
}
.fa-caret-right:before {
content:"\f0da"
}
.fa-columns:before {
content:"\f0db"
}
.fa-unsorted:before,
.fa-sort:before {
content:"\f0dc"
}
.fa-sort-down:before,
.fa-sort-desc:before {
content:"\f0dd"
}
.fa-sort-up:before,
.fa-sort-asc:before {
content:"\f0de"
}
.fa-envelope:before {
content:"\f0e0"
}
.fa-linkedin:before {
content:"\f0e1"
}
.fa-rotate-left:before,
.fa-undo:before {
content:"\f0e2"
}
.fa-legal:before,
.fa-gavel:before {
content:"\f0e3"
}
.fa-dashboard:before,
.fa-tachometer:before {
content:"\f0e4"
}
.fa-comment-o:before {
content:"\f0e5"
}
.fa-comments-o:before {
content:"\f0e6"
}
.fa-flash:before,
.fa-bolt:before {
content:"\f0e7"
}
.fa-sitemap:before {
content:"\f0e8"
}
.fa-umbrella:before {
content:"\f0e9"
}
.fa-paste:before,
.fa-clipboard:before {
content:"\f0ea"
}
.fa-lightbulb-o:before {
content:"\f0eb"
}
.fa-exchange:before {
content:"\f0ec"
}
.fa-cloud-download:before {
content:"\f0ed"
}
.fa-cloud-upload:before {
content:"\f0ee"
}
.fa-user-md:before {
content:"\f0f0"
}
.fa-stethoscope:before {
content:"\f0f1"
}
.fa-suitcase:before {
content:"\f0f2"
}
.fa-bell-o:before {
content:"\f0a2"
}
.fa-coffee:before {
content:"\f0f4"
}
.fa-cutlery:before {
content:"\f0f5"
}
.fa-file-text-o:before {
content:"\f0f6"
}
.fa-building-o:before {
content:"\f0f7"
}
.fa-hospital-o:before {
content:"\f0f8"
}
.fa-ambulance:before {
content:"\f0f9"
}
.fa-medkit:before {
content:"\f0fa"
}
.fa-fighter-jet:before {
content:"\f0fb"
}
.fa-beer:before {
content:"\f0fc"
}
.fa-h-square:before {
content:"\f0fd"
}
.fa-plus-square:before {
content:"\f0fe"
}
.fa-angle-double-left:before {
content:"\f100"
}
.fa-angle-double-right:before {
content:"\f101"
}
.fa-angle-double-up:before {
content:"\f102"
}
.fa-angle-double-down:before {
content:"\f103"
}
.fa-angle-left:before {
content:"\f104"
}
.fa-angle-right:before {
content:"\f105"
}
.fa-angle-up:before {
content:"\f106"
}
.fa-angle-down:before {
content:"\f107"
}
.fa-desktop:before {
content:"\f108"
}
.fa-laptop:before {
content:"\f109"
}
.fa-tablet:before {
content:"\f10a"
}
.fa-mobile-phone:before,
.fa-mobile:before {
content:"\f10b"
}
.fa-circle-o:before {
content:"\f10c"
}
.fa-quote-left:before {
content:"\f10d"
}
.fa-quote-right:before {
content:"\f10e"
}
.fa-spinner:before {
content:"\f110"
}
.fa-circle:before {
content:"\f111"
}
.fa-mail-reply:before,
.fa-reply:before {
content:"\f112"
}
.fa-github-alt:before {
content:"\f113"
}
.fa-folder-o:before {
content:"\f114"
}
.fa-folder-open-o:before {
content:"\f115"
}
.fa-smile-o:before {
content:"\f118"
}
.fa-frown-o:before {
content:"\f119"
}
.fa-meh-o:before {
content:"\f11a"
}
.fa-gamepad:before {
content:"\f11b"
}
.fa-keyboard-o:before {
content:"\f11c"
}
.fa-flag-o:before {
content:"\f11d"
}
.fa-flag-checkered:before {
content:"\f11e"
}
.fa-terminal:before {
content:"\f120"
}
.fa-code:before {
content:"\f121"
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
content:"\f122"
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
content:"\f123"
}
.fa-location-arrow:before {
content:"\f124"
}
.fa-crop:before {
content:"\f125"
}
.fa-code-fork:before {
content:"\f126"
}
.fa-unlink:before,
.fa-chain-broken:before {
content:"\f127"
}
.fa-question:before {
content:"\f128"
}
.fa-info:before {
content:"\f129"
}
.fa-exclamation:before {
content:"\f12a"
}
.fa-superscript:before {
content:"\f12b"
}
.fa-subscript:before {
content:"\f12c"
}
.fa-eraser:before {
content:"\f12d"
}
.fa-puzzle-piece:before {
content:"\f12e"
}
.fa-microphone:before {
content:"\f130"
}
.fa-microphone-slash:before {
content:"\f131"
}
.fa-shield:before {
content:"\f132"
}
.fa-calendar-o:before {
content:"\f133"
}
.fa-fire-extinguisher:before {
content:"\f134"
}
.fa-rocket:before {
content:"\f135"
}
.fa-maxcdn:before {
content:"\f136"
}
.fa-chevron-circle-left:before {
content:"\f137"
}
.fa-chevron-circle-right:before {
content:"\f138"
}
.fa-chevron-circle-up:before {
content:"\f139"
}
.fa-chevron-circle-down:before {
content:"\f13a"
}
.fa-html5:before {
content:"\f13b"
}
.fa-css3:before {
content:"\f13c"
}
.fa-anchor:before {
content:"\f13d"
}
.fa-unlock-alt:before {
content:"\f13e"
}
.fa-bullseye:before {
content:"\f140"
}
.fa-ellipsis-h:before {
content:"\f141"
}
.fa-ellipsis-v:before {
content:"\f142"
}
.fa-rss-square:before {
content:"\f143"
}
.fa-play-circle:before {
content:"\f144"
}
.fa-ticket:before {
content:"\f145"
}
.fa-minus-square:before {
content:"\f146"
}
.fa-minus-square-o:before {
content:"\f147"
}
.fa-level-up:before {
content:"\f148"
}
.fa-level-down:before {
content:"\f149"
}
.fa-check-square:before {
content:"\f14a"
}
.fa-pencil-square:before {
content:"\f14b"
}
.fa-external-link-square:before {
content:"\f14c"
}
.fa-share-square:before {
content:"\f14d"
}
.fa-compass:before {
content:"\f14e"
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
content:"\f150"
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
content:"\f151"
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
content:"\f152"
}
.fa-euro:before,
.fa-eur:before {
content:"\f153"
}
.fa-gbp:before {
content:"\f154"
}
.fa-dollar:before,
.fa-usd:before {
content:"\f155"
}
.fa-rupee:before,
.fa-inr:before {
content:"\f156"
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
content:"\f157"
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
content:"\f158"
}
.fa-won:before,
.fa-krw:before {
content:"\f159"
}
.fa-bitcoin:before,
.fa-btc:before {
content:"\f15a"
}
.fa-file:before {
content:"\f15b"
}
.fa-file-text:before {
content:"\f15c"
}
.fa-sort-alpha-asc:before {
content:"\f15d"
}
.fa-sort-alpha-desc:before {
content:"\f15e"
}
.fa-sort-amount-asc:before {
content:"\f160"
}
.fa-sort-amount-desc:before {
content:"\f161"
}
.fa-sort-numeric-asc:before {
content:"\f162"
}
.fa-sort-numeric-desc:before {
content:"\f163"
}
.fa-thumbs-up:before {
content:"\f164"
}
.fa-thumbs-down:before {
content:"\f165"
}
.fa-youtube-square:before {
content:"\f166"
}
.fa-youtube:before {
content:"\f167"
}
.fa-xing:before {
content:"\f168"
}
.fa-xing-square:before {
content:"\f169"
}
.fa-youtube-play:before {
content:"\f16a"
}
.fa-dropbox:before {
content:"\f16b"
}
.fa-stack-overflow:before {
content:"\f16c"
}
.fa-instagram:before {
content:"\f16d"
}
.fa-flickr:before {
content:"\f16e"
}
.fa-adn:before {
content:"\f170"
}
.fa-bitbucket:before {
content:"\f171"
}
.fa-bitbucket-square:before {
content:"\f172"
}
.fa-tumblr:before {
content:"\f173"
}
.fa-tumblr-square:before {
content:"\f174"
}
.fa-long-arrow-down:before {
content:"\f175"
}
.fa-long-arrow-up:before {
content:"\f176"
}
.fa-long-arrow-left:before {
content:"\f177"
}
.fa-long-arrow-right:before {
content:"\f178"
}
.fa-apple:before {
content:"\f179"
}
.fa-windows:before {
content:"\f17a"
}
.fa-android:before {
content:"\f17b"
}
.fa-linux:before {
content:"\f17c"
}
.fa-dribbble:before {
content:"\f17d"
}
.fa-skype:before {
content:"\f17e"
}
.fa-foursquare:before {
content:"\f180"
}
.fa-trello:before {
content:"\f181"
}
.fa-female:before {
content:"\f182"
}
.fa-male:before {
content:"\f183"
}
.fa-gittip:before,
.fa-gratipay:before {
content:"\f184"
}
.fa-sun-o:before {
content:"\f185"
}
.fa-moon-o:before {
content:"\f186"
}
.fa-archive:before {
content:"\f187"
}
.fa-bug:before {
content:"\f188"
}
.fa-vk:before {
content:"\f189"
}
.fa-weibo:before {
content:"\f18a"
}
.fa-renren:before {
content:"\f18b"
}
.fa-pagelines:before {
content:"\f18c"
}
.fa-stack-exchange:before {
content:"\f18d"
}
.fa-arrow-circle-o-right:before {
content:"\f18e"
}
.fa-arrow-circle-o-left:before {
content:"\f190"
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
content:"\f191"
}
.fa-dot-circle-o:before {
content:"\f192"
}
.fa-wheelchair:before {
content:"\f193"
}
.fa-vimeo-square:before {
content:"\f194"
}
.fa-turkish-lira:before,
.fa-try:before {
content:"\f195"
}
.fa-plus-square-o:before {
content:"\f196"
}
.fa-space-shuttle:before {
content:"\f197"
}
.fa-slack:before {
content:"\f198"
}
.fa-envelope-square:before {
content:"\f199"
}
.fa-wordpress:before {
content:"\f19a"
}
.fa-openid:before {
content:"\f19b"
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
content:"\f19c"
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
content:"\f19d"
}
.fa-yahoo:before {
content:"\f19e"
}
.fa-google:before {
content:"\f1a0"
}
.fa-reddit:before {
content:"\f1a1"
}
.fa-reddit-square:before {
content:"\f1a2"
}
.fa-stumbleupon-circle:before {
content:"\f1a3"
}
.fa-stumbleupon:before {
content:"\f1a4"
}
.fa-delicious:before {
content:"\f1a5"
}
.fa-digg:before {
content:"\f1a6"
}
.fa-pied-piper-pp:before {
content:"\f1a7"
}
.fa-pied-piper-alt:before {
content:"\f1a8"
}
.fa-drupal:before {
content:"\f1a9"
}
.fa-joomla:before {
content:"\f1aa"
}
.fa-language:before {
content:"\f1ab"
}
.fa-fax:before {
content:"\f1ac"
}
.fa-building:before {
content:"\f1ad"
}
.fa-child:before {
content:"\f1ae"
}
.fa-paw:before {
content:"\f1b0"
}
.fa-spoon:before {
content:"\f1b1"
}
.fa-cube:before {
content:"\f1b2"
}
.fa-cubes:before {
content:"\f1b3"
}
.fa-behance:before {
content:"\f1b4"
}
.fa-behance-square:before {
content:"\f1b5"
}
.fa-steam:before {
content:"\f1b6"
}
.fa-steam-square:before {
content:"\f1b7"
}
.fa-recycle:before {
content:"\f1b8"
}
.fa-automobile:before,
.fa-car:before {
content:"\f1b9"
}
.fa-cab:before,
.fa-taxi:before {
content:"\f1ba"
}
.fa-tree:before {
content:"\f1bb"
}
.fa-spotify:before {
content:"\f1bc"
}
.fa-deviantart:before {
content:"\f1bd"
}
.fa-soundcloud:before {
content:"\f1be"
}
.fa-database:before {
content:"\f1c0"
}
.fa-file-pdf-o:before {
content:"\f1c1"
}
.fa-file-word-o:before {
content:"\f1c2"
}
.fa-file-excel-o:before {
content:"\f1c3"
}
.fa-file-powerpoint-o:before {
content:"\f1c4"
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
content:"\f1c5"
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
content:"\f1c6"
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
content:"\f1c7"
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
content:"\f1c8"
}
.fa-file-code-o:before {
content:"\f1c9"
}
.fa-vine:before {
content:"\f1ca"
}
.fa-codepen:before {
content:"\f1cb"
}
.fa-jsfiddle:before {
content:"\f1cc"
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
content:"\f1cd"
}
.fa-circle-o-notch:before {
content:"\f1ce"
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
content:"\f1d0"
}
.fa-ge:before,
.fa-empire:before {
content:"\f1d1"
}
.fa-git-square:before {
content:"\f1d2"
}
.fa-git:before {
content:"\f1d3"
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
content:"\f1d4"
}
.fa-tencent-weibo:before {
content:"\f1d5"
}
.fa-qq:before {
content:"\f1d6"
}
.fa-wechat:before,
.fa-weixin:before {
content:"\f1d7"
}
.fa-send:before,
.fa-paper-plane:before {
content:"\f1d8"
}
.fa-send-o:before,
.fa-paper-plane-o:before {
content:"\f1d9"
}
.fa-history:before {
content:"\f1da"
}
.fa-circle-thin:before {
content:"\f1db"
}
.fa-header:before {
content:"\f1dc"
}
.fa-paragraph:before {
content:"\f1dd"
}
.fa-sliders:before {
content:"\f1de"
}
.fa-share-alt:before {
content:"\f1e0"
}
.fa-share-alt-square:before {
content:"\f1e1"
}
.fa-bomb:before {
content:"\f1e2"
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
content:"\f1e3"
}
.fa-tty:before {
content:"\f1e4"
}
.fa-binoculars:before {
content:"\f1e5"
}
.fa-plug:before {
content:"\f1e6"
}
.fa-slideshare:before {
content:"\f1e7"
}
.fa-twitch:before {
content:"\f1e8"
}
.fa-yelp:before {
content:"\f1e9"
}
.fa-newspaper-o:before {
content:"\f1ea"
}
.fa-wifi:before {
content:"\f1eb"
}
.fa-calculator:before {
content:"\f1ec"
}
.fa-paypal:before {
content:"\f1ed"
}
.fa-google-wallet:before {
content:"\f1ee"
}
.fa-cc-visa:before {
content:"\f1f0"
}
.fa-cc-mastercard:before {
content:"\f1f1"
}
.fa-cc-discover:before {
content:"\f1f2"
}
.fa-cc-amex:before {
content:"\f1f3"
}
.fa-cc-paypal:before {
content:"\f1f4"
}
.fa-cc-stripe:before {
content:"\f1f5"
}
.fa-bell-slash:before {
content:"\f1f6"
}
.fa-bell-slash-o:before {
content:"\f1f7"
}
.fa-trash:before {
content:"\f1f8"
}
.fa-copyright:before {
content:"\f1f9"
}
.fa-at:before {
content:"\f1fa"
}
.fa-eyedropper:before {
content:"\f1fb"
}
.fa-paint-brush:before {
content:"\f1fc"
}
.fa-birthday-cake:before {
content:"\f1fd"
}
.fa-area-chart:before {
content:"\f1fe"
}
.fa-pie-chart:before {
content:"\f200"
}
.fa-line-chart:before {
content:"\f201"
}
.fa-lastfm:before {
content:"\f202"
}
.fa-lastfm-square:before {
content:"\f203"
}
.fa-toggle-off:before {
content:"\f204"
}
.fa-toggle-on:before {
content:"\f205"
}
.fa-bicycle:before {
content:"\f206"
}
.fa-bus:before {
content:"\f207"
}
.fa-ioxhost:before {
content:"\f208"
}
.fa-angellist:before {
content:"\f209"
}
.fa-cc:before {
content:"\f20a"
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
content:"\f20b"
}
.fa-meanpath:before {
content:"\f20c"
}
.fa-buysellads:before {
content:"\f20d"
}
.fa-connectdevelop:before {
content:"\f20e"
}
.fa-dashcube:before {
content:"\f210"
}
.fa-forumbee:before {
content:"\f211"
}
.fa-leanpub:before {
content:"\f212"
}
.fa-sellsy:before {
content:"\f213"
}
.fa-shirtsinbulk:before {
content:"\f214"
}
.fa-simplybuilt:before {
content:"\f215"
}
.fa-skyatlas:before {
content:"\f216"
}
.fa-cart-plus:before {
content:"\f217"
}
.fa-cart-arrow-down:before {
content:"\f218"
}
.fa-diamond:before {
content:"\f219"
}
.fa-ship:before {
content:"\f21a"
}
.fa-user-secret:before {
content:"\f21b"
}
.fa-motorcycle:before {
content:"\f21c"
}
.fa-street-view:before {
content:"\f21d"
}
.fa-heartbeat:before {
content:"\f21e"
}
.fa-venus:before {
content:"\f221"
}
.fa-mars:before {
content:"\f222"
}
.fa-mercury:before {
content:"\f223"
}
.fa-intersex:before,
.fa-transgender:before {
content:"\f224"
}
.fa-transgender-alt:before {
content:"\f225"
}
.fa-venus-double:before {
content:"\f226"
}
.fa-mars-double:before {
content:"\f227"
}
.fa-venus-mars:before {
content:"\f228"
}
.fa-mars-stroke:before {
content:"\f229"
}
.fa-mars-stroke-v:before {
content:"\f22a"
}
.fa-mars-stroke-h:before {
content:"\f22b"
}
.fa-neuter:before {
content:"\f22c"
}
.fa-genderless:before {
content:"\f22d"
}
.fa-facebook-official:before {
content:"\f230"
}
.fa-pinterest-p:before {
content:"\f231"
}
.fa-whatsapp:before {
content:"\f232"
}
.fa-server:before {
content:"\f233"
}
.fa-user-plus:before {
content:"\f234"
}
.fa-user-times:before {
content:"\f235"
}
.fa-hotel:before,
.fa-bed:before {
content:"\f236"
}
.fa-viacoin:before {
content:"\f237"
}
.fa-train:before {
content:"\f238"
}
.fa-subway:before {
content:"\f239"
}
.fa-medium:before {
content:"\f23a"
}
.fa-yc:before,
.fa-y-combinator:before {
content:"\f23b"
}
.fa-optin-monster:before {
content:"\f23c"
}
.fa-opencart:before {
content:"\f23d"
}
.fa-expeditedssl:before {
content:"\f23e"
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
content:"\f240"
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
content:"\f241"
}
.fa-battery-2:before,
.fa-battery-half:before {
content:"\f242"
}
.fa-battery-1:before,
.fa-battery-quarter:before {
content:"\f243"
}
.fa-battery-0:before,
.fa-battery-empty:before {
content:"\f244"
}
.fa-mouse-pointer:before {
content:"\f245"
}
.fa-i-cursor:before {
content:"\f246"
}
.fa-object-group:before {
content:"\f247"
}
.fa-object-ungroup:before {
content:"\f248"
}
.fa-sticky-note:before {
content:"\f249"
}
.fa-sticky-note-o:before {
content:"\f24a"
}
.fa-cc-jcb:before {
content:"\f24b"
}
.fa-cc-diners-club:before {
content:"\f24c"
}
.fa-clone:before {
content:"\f24d"
}
.fa-balance-scale:before {
content:"\f24e"
}
.fa-hourglass-o:before {
content:"\f250"
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
content:"\f251"
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
content:"\f252"
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
content:"\f253"
}
.fa-hourglass:before {
content:"\f254"
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
content:"\f255"
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
content:"\f256"
}
.fa-hand-scissors-o:before {
content:"\f257"
}
.fa-hand-lizard-o:before {
content:"\f258"
}
.fa-hand-spock-o:before {
content:"\f259"
}
.fa-hand-pointer-o:before {
content:"\f25a"
}
.fa-hand-peace-o:before {
content:"\f25b"
}
.fa-trademark:before {
content:"\f25c"
}
.fa-registered:before {
content:"\f25d"
}
.fa-creative-commons:before {
content:"\f25e"
}
.fa-gg:before {
content:"\f260"
}
.fa-gg-circle:before {
content:"\f261"
}
.fa-tripadvisor:before {
content:"\f262"
}
.fa-odnoklassniki:before {
content:"\f263"
}
.fa-odnoklassniki-square:before {
content:"\f264"
}
.fa-get-pocket:before {
content:"\f265"
}
.fa-wikipedia-w:before {
content:"\f266"
}
.fa-safari:before {
content:"\f267"
}
.fa-chrome:before {
content:"\f268"
}
.fa-firefox:before {
content:"\f269"
}
.fa-opera:before {
content:"\f26a"
}
.fa-internet-explorer:before {
content:"\f26b"
}
.fa-tv:before,
.fa-television:before {
content:"\f26c"
}
.fa-contao:before {
content:"\f26d"
}
.fa-500px:before {
content:"\f26e"
}
.fa-amazon:before {
content:"\f270"
}
.fa-calendar-plus-o:before {
content:"\f271"
}
.fa-calendar-minus-o:before {
content:"\f272"
}
.fa-calendar-times-o:before {
content:"\f273"
}
.fa-calendar-check-o:before {
content:"\f274"
}
.fa-industry:before {
content:"\f275"
}
.fa-map-pin:before {
content:"\f276"
}
.fa-map-signs:before {
content:"\f277"
}
.fa-map-o:before {
content:"\f278"
}
.fa-map:before {
content:"\f279"
}
.fa-commenting:before {
content:"\f27a"
}
.fa-commenting-o:before {
content:"\f27b"
}
.fa-houzz:before {
content:"\f27c"
}
.fa-vimeo:before {
content:"\f27d"
}
.fa-black-tie:before {
content:"\f27e"
}
.fa-fonticons:before {
content:"\f280"
}
.fa-reddit-alien:before {
content:"\f281"
}
.fa-edge:before {
content:"\f282"
}
.fa-credit-card-alt:before {
content:"\f283"
}
.fa-codiepie:before {
content:"\f284"
}
.fa-modx:before {
content:"\f285"
}
.fa-fort-awesome:before {
content:"\f286"
}
.fa-usb:before {
content:"\f287"
}
.fa-product-hunt:before {
content:"\f288"
}
.fa-mixcloud:before {
content:"\f289"
}
.fa-scribd:before {
content:"\f28a"
}
.fa-pause-circle:before {
content:"\f28b"
}
.fa-pause-circle-o:before {
content:"\f28c"
}
.fa-stop-circle:before {
content:"\f28d"
}
.fa-stop-circle-o:before {
content:"\f28e"
}
.fa-shopping-bag:before {
content:"\f290"
}
.fa-shopping-basket:before {
content:"\f291"
}
.fa-hashtag:before {
content:"\f292"
}
.fa-bluetooth:before {
content:"\f293"
}
.fa-bluetooth-b:before {
content:"\f294"
}
.fa-percent:before {
content:"\f295"
}
.fa-gitlab:before {
content:"\f296"
}
.fa-wpbeginner:before {
content:"\f297"
}
.fa-wpforms:before {
content:"\f298"
}
.fa-envira:before {
content:"\f299"
}
.fa-universal-access:before {
content:"\f29a"
}
.fa-wheelchair-alt:before {
content:"\f29b"
}
.fa-question-circle-o:before {
content:"\f29c"
}
.fa-blind:before {
content:"\f29d"
}
.fa-audio-description:before {
content:"\f29e"
}
.fa-volume-control-phone:before {
content:"\f2a0"
}
.fa-braille:before {
content:"\f2a1"
}
.fa-assistive-listening-systems:before {
content:"\f2a2"
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
content:"\f2a3"
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
content:"\f2a4"
}
.fa-glide:before {
content:"\f2a5"
}
.fa-glide-g:before {
content:"\f2a6"
}
.fa-signing:before,
.fa-sign-language:before {
content:"\f2a7"
}
.fa-low-vision:before {
content:"\f2a8"
}
.fa-viadeo:before {
content:"\f2a9"
}
.fa-viadeo-square:before {
content:"\f2aa"
}
.fa-snapchat:before {
content:"\f2ab"
}
.fa-snapchat-ghost:before {
content:"\f2ac"
}
.fa-snapchat-square:before {
content:"\f2ad"
}
.fa-pied-piper:before {
content:"\f2ae"
}
.fa-first-order:before {
content:"\f2b0"
}
.fa-yoast:before {
content:"\f2b1"
}
.fa-themeisle:before {
content:"\f2b2"
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
content:"\f2b3"
}
.fa-fa:before,
.fa-font-awesome:before {
content:"\f2b4"
}
.fa-handshake-o:before {
content:"\f2b5"
}
.fa-envelope-open:before {
content:"\f2b6"
}
.fa-envelope-open-o:before {
content:"\f2b7"
}
.fa-linode:before {
content:"\f2b8"
}
.fa-address-book:before {
content:"\f2b9"
}
.fa-address-book-o:before {
content:"\f2ba"
}
.fa-vcard:before,
.fa-address-card:before {
content:"\f2bb"
}
.fa-vcard-o:before,
.fa-address-card-o:before {
content:"\f2bc"
}
.fa-user-circle:before {
content:"\f2bd"
}
.fa-user-circle-o:before {
content:"\f2be"
}
.fa-user-o:before {
content:"\f2c0"
}
.fa-id-badge:before {
content:"\f2c1"
}
.fa-drivers-license:before,
.fa-id-card:before {
content:"\f2c2"
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
content:"\f2c3"
}
.fa-quora:before {
content:"\f2c4"
}
.fa-free-code-camp:before {
content:"\f2c5"
}
.fa-telegram:before {
content:"\f2c6"
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
content:"\f2c7"
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
content:"\f2c8"
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
content:"\f2c9"
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
content:"\f2ca"
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
content:"\f2cb"
}
.fa-shower:before {
content:"\f2cc"
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
content:"\f2cd"
}
.fa-podcast:before {
content:"\f2ce"
}
.fa-window-maximize:before {
content:"\f2d0"
}
.fa-window-minimize:before {
content:"\f2d1"
}
.fa-window-restore:before {
content:"\f2d2"
}
.fa-times-rectangle:before,
.fa-window-close:before {
content:"\f2d3"
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
content:"\f2d4"
}
.fa-bandcamp:before {
content:"\f2d5"
}
.fa-grav:before {
content:"\f2d6"
}
.fa-etsy:before {
content:"\f2d7"
}
.fa-imdb:before {
content:"\f2d8"
}
.fa-ravelry:before {
content:"\f2d9"
}
.fa-eercast:before {
content:"\f2da"
}
.fa-microchip:before {
content:"\f2db"
}
.fa-snowflake-o:before {
content:"\f2dc"
}
.fa-superpowers:before {
content:"\f2dd"
}
.fa-wpexplorer:before {
content:"\f2de"
}
.fa-meetup:before {
content:"\f2e0"
}
.sr-only {
position:absolute;
width:1px;
height:1px;
padding:0;
margin:-1px;
overflow:hidden;
clip:rect(0,0,0,0);
border:0
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
position:static;
width:auto;
height:auto;
margin:0;
overflow:visible;
clip:auto
}
@charset "UTF-8";
.select2-result-repository {
padding-top:4px;
padding-bottom:3px
}
.select2-result-repository__avatar {
float:left;
width:60px;
margin-right:10px
}
.select2-result-repository__avatar img {
width:100%;
height:auto;
border-radius:2px
}
.select2-result-repository__meta {
margin-left:70px
}
.select2-result-repository__title {
color:black;
font-weight:700;
word-wrap:break-word;
line-height:1.1;
margin-bottom:4px
}
.select2-result-repository__forks,
.select2-result-repository__stargazers {
margin-right:1em
}
.select2-result-repository__forks,
.select2-result-repository__stargazers,
.select2-result-repository__watchers {
display:inline-block;
color:#aaa;
font-size:11px
}
.select2-result-repository__description {
font-size:13px;
color:#777;
margin-top:4px
}
.select2-results__option--highlighted .select2-result-repository__title {
color:white
}
.select2-results__option--highlighted .select2-result-repository__forks,
.select2-results__option--highlighted .select2-result-repository__stargazers,
.select2-results__option--highlighted .select2-result-repository__description,
.select2-results__option--highlighted .select2-result-repository__watchers {
color:#c6dcef
}
.s2-docs-sidebar.affix {
position:static
}
@media (min-width:768px) {
.s2-docs-sidebar {
padding-left:20px
}
}
.s2-docs-sidenav {
margin-top:20px;
margin-bottom:20px
}
.s2-docs-sidebar .nav>li>a {
margin-left:-1px;
display:block;
padding:4px 20px;
font-size:13px;
font-weight:500;
color:#767676;
border-left:1px solid transparent;
transition:color .2s,border-color .2s
}
.s2-docs-sidebar .nav>li>a code {
background-color:inherit;
color:inherit
}
.s2-docs-sidebar .nav>li>a:hover,
.s2-docs-sidebar .nav>li>a:focus {
color:#428BCA;
text-decoration:none;
background-color:transparent;
border-left-color:#428BCA
}
.s2-docs-sidebar .nav>.active>a,
.s2-docs-sidebar .nav>.active:hover>a,
.s2-docs-sidebar .nav>.active:focus>a {
padding-left:19px;
font-weight:700;
color:#428BCA;
background-color:transparent;
border-left:2px solid #428BCA
}
.s2-docs-sidebar .nav .nav {
display:none;
padding-bottom:10px
}
.s2-docs-sidebar .nav .nav>li>a {
padding-top:1px;
padding-bottom:1px;
padding-left:30px;
font-size:12px;
font-weight:400
}
.s2-docs-sidebar .nav .nav>li>a:hover,
.s2-docs-sidebar .nav .nav>li>a:focus {
padding-left:30px
}
.s2-docs-sidebar .nav .nav>.active>a,
.s2-docs-sidebar .nav .nav>.active:hover>a,
.s2-docs-sidebar .nav .nav>.active:focus>a {
padding-left:29px;
font-weight:400
}
@media (min-width:992px) {
.s2-docs-sidebar .s2-docs-sidenav {
padding-top:40px;
transition:border-color .2s;
border-left:1px solid transparent
}
.s2-docs-sidebar.affix .s2-docs-sidenav {
border-left-color:#eee
}
.s2-docs-sidebar .nav>.active>ul {
display:block
}
.s2-docs-sidebar.affix,
.s2-docs-sidebar.affix-bottom {
width:213px
}
.s2-docs-sidebar.affix {
position:fixed;
top:0
}
.s2-docs-sidebar.affix-bottom {
position:absolute
}
.s2-docs-sidebar.affix-bottom .s2-docs-sidenav,
.s2-docs-sidebar.affix .s2-docs-sidenav {
margin-top:0;
margin-bottom:0
}
}
@media (min-width:1200px) {
.s2-docs-sidebar.affix-bottom,
.s2-docs-sidebar.affix {
width:263px
}
}
.back-to-top {
display:none;
padding:4px 10px;
margin-top:10px;
margin-left:10px;
font-size:12px;
font-weight:400;
color:#999
}
.back-to-top:hover {
color:#428BCA;
text-decoration:none
}
@media (min-width:768px) {
.back-to-top {
display:block
}
}
.navbar-toggle {
border:none;
background:transparent!important
}
.navbar-toggle:hover {
background:transparent!important
}
.navbar-toggle .icon-bar {
width:22px;
transition:all 0.2s
}
.navbar-toggle .top-bar {
transform:rotate(45deg);
transform-origin:10% 10%
}
.navbar-toggle .middle-bar {
opacity:0
}
.navbar-toggle .bottom-bar {
transform:rotate(-45deg);
transform-origin:10% 90%
}
.navbar-toggle.collapsed .top-bar {
transform:rotate(0)
}
.navbar-toggle.collapsed .middle-bar {
opacity:1
}
.navbar-toggle.collapsed .bottom-bar {
transform:rotate(0)
}
h2 code,
h3 code,
h4 code {
background-color:inherit
}
pre.prettyprint {
padding:9px 14px;
margin-bottom:14px;
background-color:#f7f7f9;
border:1px solid #e1e1e8
}
.s2-docs-featurette {
color:#777;
padding:15px 0;
text-align:center
}
.s2-docs-featurette h4 {
margin:30px 0 15px
}
.s2-docs-featurette .fa {
font-size:28px;
color:#777
}
.s2-docs-container {
line-height:1.6
}
section {
margin-bottom:40px
}
.page-header {
padding-bottom:19px;
margin-bottom:29px
}
.s2-docs-nav {
margin-bottom:0;
border-color:#eee;
background-color:#f6f6f6
}
.s2-docs-nav .navbar-brand {
font-weight:500
}
.s2-docs-nav .navbar-brand>img {
display:inline;
margin-right:4px
}
.s2-docs-nav .navbar-nav>.active>a,
.s2-docs-nav .navbar-nav>.active>a:hover,
.s2-docs-nav .navbar-nav>.active>a:focus {
background-color:#f0f0f0;
color:#000
}
@media (min-width:768px) {
.s2-docs-nav .navbar-nav>li>.dropdown-menu:before {
position:absolute;
top:-21px;
left:24px;
display:block;
width:0;
height:0;
border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,.1);
border-style:solid;
border-width:10px;
content:""
}
.s2-docs-nav .navbar-nav>li>.dropdown-menu:after {
position:absolute;
top:-20px;
left:24px;
display:block;
width:0;
height:0;
border-color:rgba(0,0,0,0) rgba(0,0,0,0) #FFF;
border-style:solid;
border-width:10px;
content:''
}
.s2-docs-nav .navbar-nav .dropdown-menu {
border-radius:4px;
border-color:#ddd;
margin-top:-1px
}
}
.s2-docs-footer {
border-top:1px solid #eee;
color:#767676;
padding-top:40px;
padding-bottom:40px;
margin-top:100px;
text-align:center
}
.s2-docs-footer-links {
padding-left:0;
margin-top:20px
}
.s2-docs-footer-links li {
display:inline;
padding:0 2px
}
.s2-docs-footer-links li:after {
content:"·";
padding-left:8px
}
.s2-docs-footer-links li:first-child {
padding-left:0
}
.s2-docs-footer-links li:last-child:after {
content:"";
padding-left:0
}
@media (min-width:768px) {
.s2-docs-footer p {
margin-bottom:0
}
}
.alert {
background:#fff;
border:1px solid #eee;
border-left-width:5px;
border-radius:3px;
color:#333;
margin:20px 0;
padding:20px
}
.alert h4 {
font-size:18px;
margin-top:0;
margin-bottom:5px
}
.alert-danger {
border-left-color:#ce4844
}
.alert-danger h4 {
color:#ce4844
}
.alert-info {
border-left-color:#1b809e
}
.alert-info h4 {
color:#1b809e
}
.alert-warning {
border-left-color:#aa6708
}
.alert-warning h4 {
color:#aa6708
}
.s2-docs-home .jumbotron {
margin-bottom:0;
color:#000
}
.s2-docs-home .jumbotron h1 {
color:#000;
margin-top:20px
}
.s2-docs-home .lead {
text-align:center;
max-width:800px;
margin:0 auto 40px
}
.s2-docs-home .notice-previous {
background:#f6f6f6;
color:#666;
border-bottom:1px solid #eee;
padding:15px 20px
}
.s2-docs-home .half-rule {
width:100px;
margin:40px auto
}
.s2-example {
position:relative;
padding:45px 15px 15px;
margin:0 -15px 15px;
background-color:#fafafa;
box-shadow:inset 0 3px 6px rgba(0,0,0,.05);
border-color:#e5e5e5 #eee #eee;
border-style:solid;
border-width:1px 0
}
.s2-example:after {
content:"Example";
position:absolute;
top:15px;
left:15px;
font-size:12px;
font-weight:700;
color:#bbb;
text-transform:uppercase;
letter-spacing:1px
}
@media (min-width:768px) {
.s2-example {
margin-left:0;
margin-right:0;
background-color:#fff;
border-width:1px;
border-color:#eee;
border-radius:4px 4px 0 0;
box-shadow:none
}
}
.s2-event-log {
background:#002451;
color:white;
font-family:Menlo,'Bitstream Vera Sans Mono','DejaVu Sans Mono',Monaco,Consolas,monospace;
margin:0 -15px 15px;
padding:45px 15px 15px;
position:relative
}
.s2-event-log:after {
content:"Event Log";
position:absolute;
top:15px;
left:15px;
font-size:12px;
font-weight:700;
color:#BBB;
text-transform:uppercase;
letter-spacing:1px
}
@media (min-width:768px) {
.s2-event-log {
margin-left:0;
margin-right:0;
margin-top:-15px;
border-width:1px;
border-color:#eee;
box-shadow:none
}
}
.s2-example+pre,
.s2-example+figure,
.s2-event-log+pre {
margin:-15px -15px 15px;
border-radius:0;
border-width:0 0 1px
}
@media (min-width:768px) {
.s2-example+pre,
.s2-example+figure,
.s2-event-log+pre {
margin-top:-16px;
margin-left:0;
margin-right:0;
border-width:1px;
border-bottom-left-radius:4px;
border-bottom-right-radius:4px
}
}
.s2-example+.s2-event-log {
margin-top:-15px
}
.s2-docs-social {
margin-bottom:20px;
text-align:center
}
.s2-docs-social-buttons {
display:inline-block;
padding-left:0;
margin-bottom:0;
list-style:none
}
.s2-docs-social-buttons li {
display:inline-block;
padding:5px 8px;
line-height:1
}
.s2-docs-social-buttons .twitter-follow-button {
width:225px!important
}
.s2-docs-social-buttons .twitter-share-button {
width:98px!important
}
.github-btn {
overflow:hidden;
border:0
}
.btn-outline-inverse {
color:#428BCA;
background-color:transparent;
border-color:#428BCA;
padding:15px 30px;
font-size:20px;
transition:all .1s ease-in-out
}
.btn-outline-inverse:hover {
color:#fff;
border-color:#428BCA;
background-color:#428BCA
}
.btn-toolbar {
margin-bottom:20px
}
.jumbotron {
background-color:#F6F6F6;
border-bottom:1px solid #eee;
color:#777;
padding-left:0;
padding-right:0
}
.jumbotron h1 {
color:#777;
font-size:36px;
margin-top:10px
}
.jumbotron .version {
color:#999;
font-size:14px;
font-weight:400;
margin-bottom:30px
}
.com {
color:#999
}
.lit {
color:#195f91
}
.pun,
.opn,
.clo {
color:#93a1a1
}
.fun {
color:#dc322f
}
.str,
.atv {
color:#C7254E
}
.kwd,
.prettyprint .tag {
color:#2F6F9F
}
.typ,
.atn,
.dec,
.var {
color:#428BCA
}
.pln {
color:#333
}
.prettyprint {
padding:9px 14px;
margin-bottom:20px;
margin-top:20px;
border:1px solid #eee
}
.prettyprint.linenums {
-webkit-box-shadow:inset 40px 0 0 #fbfbfb,inset 41px 0 0 #f6f6f6;
-moz-box-shadow:inset 40px 0 0 #fbfbfb,inset 41px 0 0 #f6f6f6;
box-shadow:inset 40px 0 0 #fbfbfb,inset 41px 0 0 #f6f6f6
}
ol.linenums {
margin:0 0 0 -12px
}
ol.linenums li {
padding-left:12px;
color:#bebebe;
line-height:18px
}
.highlight {
background:#fff
}
.highlight .nx {
color:#333
}
.highlight .k,
.highlight .o {
font-weight:700
}
.highlight .na {
color:#428BCA
}
.highlight .s,
.highlight .s1,
.highlight .s2,
.highlight .sb,
.highlight .sc,
.highlight .sd,
.highlight .se,
.highlight .sh,
.highlight .si,
.highlight .sx {
color:#C7254E
}
.highlight .m,
.highlight .mf,
.highlight mh,
.highlight .mi,
.highlight .mo {
color:#195f91
}
.highlight .p {
color:#93a1a1
}
.highlight .nt {
color:#2F6F9F
}
.highlight .c {
color:#999;
font-style:italic
}
.highlight .err {
background-color:#e3d2d2;
color:#a61717
}
.highlight .gr {
color:#a00
}
.highlight pre {
border:none;
margin:0
}
.highlight>pre {
border:1px solid #eee;
padding:0;
margin-bottom:14px
}
.highlight .lineno {
background-color:#fbfbfb;
color:#bebebe;
-ms-user-select:none;
-moz-user-select:none;
-webkit-user-select:none
}
.highlight .cm {
color:#998;
font-style:italic
}
.highlight .cp {
color:#999;
font-weight:700
}
.highlight .c1 {
color:#998;
font-style:italic
}
.highlight .cs {
color:#999;
font-weight:700;
font-style:italic
}
.highlight .gd {
color:#000;
background-color:#fdd
}
.highlight .gd .x {
color:#000;
background-color:#faa
}
.highlight .ge {
font-style:italic
}
.highlight .gh {
color:#999
}
.highlight .gi {
color:#000;
background-color:#dfd
}
.highlight .gi .x {
color:#000;
background-color:#afa
}
.highlight .go {
color:#888
}
.highlight .gp {
color:#555
}
.highlight .gs {
font-weight:700
}
.highlight .gu {
color:#aaa
}
.highlight .gt {
color:#a00
}
.highlight .kc {
font-weight:700
}
.highlight .kd {
font-weight:700
}
.highlight .kp {
font-weight:700
}
.highlight .kr {
font-weight:700
}
.highlight .kt {
color:#458;
font-weight:700
}
.highlight .nb {
color:#0086B3
}
.highlight .nc {
color:#458;
font-weight:700
}
.highlight .no {
color:#008080
}
.highlight .ni {
color:purple
}
.highlight .ne {
color:#900;
font-weight:700
}
.highlight .nf {
color:#900;
font-weight:700
}
.highlight .nn {
color:#555
}
.highlight .nv {
color:#008080
}
.highlight .ow {
font-weight:700
}
.highlight .w {
color:#bbb
}
.highlight .sr {
color:#009926
}
.highlight .ss {
color:#990073
}
.highlight .bp {
color:#999
}
.highlight .vc {
color:#008080
}
.highlight .vg {
color:#008080
}
.highlight .vi {
color:#008080
}
.highlight .il {
color:#099
}
h1[id] {
padding-top:20px;
margin-top:0
}
.logo-title {
color:#fff;
font-size:30px;
text-transform:uppercase;
padding-top:10px;
vertical-align:middle;
font-weight:700;
font-family:"Montserrat","Helvetica Neue","Helvetica","Arial",sans-serif;
border-bottom:2px solid #000
}
.logo-image {
vertical-align:middle
}
.s2-docs-featurette {
padding-top:20px;
text-align:center
}
.s2-docs-featurette [class*='size-'] h4 {
font-size:1.5rem
}
.s2-docs-featurette [class*='size-'] p {
padding:0 30px;
font-size:1rem!important
}
.form-control {
width:100%;
display:block
}
img.img-flag {
margin:0!important;
display:inherit!important;
height:15px;
width:18px
}
input.select2-search__field {
margin-bottom:0;
line-height:inherit
}
.notices {
padding:1px 1px 1px 30px;
margin:15px 0
}
.notices.yellow {
border-left:10px solid #f0ad4e;
background:#fcf8f2;
color:#df8a13
}
.notices.red {
border-left:10px solid #d9534f;
background:#fdf7f7;
color:#b52b27
}
.notices.blue {
border-left:10px solid #5bc0de;
background:#f4f8fa;
color:#28a1c5
}
.notices.green {
border-left:10px solid #5cb85c;
background:#f1f9f1;
color:#3d8b3d
}
#breadcrumbs {
height:3rem;
line-height:3rem;
padding-left:3rem
}
#breadcrumbs span {
display:inline-block;
padding:0 1rem
}
#breadcrumbs span:first-child {
padding-left:0
}
#breadcrumbs i {
display:inline-block;
width:20px;
text-align:center
}
.hljs {
display:block;
overflow-x:auto;
color:#4d4d4c;
padding:.5em
}
.hljs-comment,
.hljs-title {
color:#8e908c
}
.hljs-variable,
.hljs-attribute,
.hljs-tag,
.hljs-regexp,
.hljs-strong,
.hljs-bullet {
color:#c82829
}
.hljs-number,
.hljs-preprocessor,
.hljs-pragma,
.hljs-built_in,
.hljs-literal,
.hljs-params,
.hljs-constant,
.hljs-emphasis {
color:#f5871f
}
.hljs-string,
.hljs-value,
.hljs-inheritance,
.hljs-header {
color:#718c00
}
.hljs-symbol,
.hljs-link_label {
color:#3e999f
}
.hljs-function {
color:#4271ae
}
.hljs-keyword,
.hljs-link_url {
color:#8959a8
}
@media all {
.featherlight {
display:none;
position:fixed;
top:0;
right:0;
bottom:0;
left:0;
z-index:2147483647;
text-align:center;
white-space:nowrap;
cursor:pointer;
background:#333;
background:rgba(0,0,0,0)
}
.featherlight:last-of-type {
background:rgba(0,0,0,.8)
}
.featherlight:before {
content:'';
display:inline-block;
height:100%;
vertical-align:middle;
margin-right:-.25em
}
.featherlight .featherlight-content {
position:relative;
text-align:left;
vertical-align:middle;
display:inline-block;
overflow:auto;
padding:25px 25px 0;
border-bottom:25px solid transparent;
min-width:30%;
margin-left:5%;
margin-right:5%;
max-height:95%;
background:#fff;
cursor:auto;
white-space:normal
}
.featherlight .featherlight-inner {
display:block
}
.featherlight .featherlight-close-icon {
position:absolute;
z-index:9999;
top:0;
right:0;
line-height:25px;
width:25px;
cursor:pointer;
text-align:center;
font:Arial,sans-serif;
background:#fff;
background:rgba(255,255,255,.3);
color:#000
}
.featherlight .featherlight-image {
width:100%
}
.featherlight-iframe .featherlight-content {
border-bottom:0;
padding:0
}
.featherlight iframe {
border:0
}
}
@media only screen and (max-width:1024px) {
.featherlight .featherlight-content {
margin-left:10px;
margin-right:10px;
max-height:98%;
padding:10px 10px 0;
border-bottom:10px solid transparent
}
}
.select2-container {
box-sizing:border-box;
display:inline-block;
margin:0;
position:relative;
vertical-align:middle
}
.select2-container .select2-selection--single {
box-sizing:border-box;
cursor:pointer;
display:block;
height:28px;
user-select:none;
-webkit-user-select:none
}
.select2-container .select2-selection--single .select2-selection__rendered {
display:block;
padding-left:8px;
padding-right:20px;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap
}
.select2-container .select2-selection--single .select2-selection__clear {
position:relative
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
padding-right:8px;
padding-left:20px
}
.select2-container .select2-selection--multiple {
box-sizing:border-box;
cursor:pointer;
display:block;
min-height:32px;
user-select:none;
-webkit-user-select:none
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
display:inline-block;
overflow:hidden;
padding-left:8px;
text-overflow:ellipsis;
white-space:nowrap
}
.select2-container .select2-search--inline {
float:left
}
.select2-container .select2-search--inline .select2-search__field {
box-sizing:border-box;
border:none;
font-size:100%;
margin-top:5px;
padding:0
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
-webkit-appearance:none
}
.select2-dropdown {
background-color:white;
border:1px solid #aaa;
border-radius:4px;
box-sizing:border-box;
display:block;
position:absolute;
left:-100000px;
width:100%;
z-index:1051
}
.select2-results {
display:block
}
.select2-results__options {
list-style:none;
margin:0;
padding:0
}
.select2-results__option {
padding:6px;
user-select:none;
-webkit-user-select:none
}
.select2-results__option[aria-selected] {
cursor:pointer
}
.select2-container--open .select2-dropdown {
left:0
}
.select2-container--open .select2-dropdown--above {
border-bottom:none;
border-bottom-left-radius:0;
border-bottom-right-radius:0
}
.select2-container--open .select2-dropdown--below {
border-top:none;
border-top-left-radius:0;
border-top-right-radius:0
}
.select2-search--dropdown {
display:block;
padding:4px
}
.select2-search--dropdown .select2-search__field {
padding:4px;
width:100%;
box-sizing:border-box
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
-webkit-appearance:none
}
.select2-search--dropdown.select2-search--hide {
display:none
}
.select2-close-mask {
border:0;
margin:0;
padding:0;
display:block;
position:fixed;
left:0;
top:0;
min-height:100%;
min-width:100%;
height:auto;
width:auto;
opacity:0;
z-index:99;
background-color:#fff;
filter:alpha(opacity=0)
}
.select2-hidden-accessible {
border:0!important;
clip:rect(0 0 0 0)!important;
-webkit-clip-path:inset(50%)!important;
clip-path:inset(50%)!important;
height:1px!important;
overflow:hidden!important;
padding:0!important;
position:absolute!important;
width:1px!important;
white-space:nowrap!important
}
.select2-container--default .select2-selection--single {
background-color:#fff;
border:1px solid #aaa;
border-radius:4px
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
color:#444;
line-height:28px
}
.select2-container--default .select2-selection--single .select2-selection__clear {
cursor:pointer;
float:right;
font-weight:700
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
color:#999
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
height:26px;
position:absolute;
top:1px;
right:1px;
width:20px
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
border-color:#888 transparent transparent transparent;
border-style:solid;
border-width:5px 4px 0 4px;
height:0;
left:50%;
margin-left:-4px;
margin-top:-2px;
position:absolute;
top:50%;
width:0
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
float:left
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
left:1px;
right:auto
}
.select2-container--default.select2-container--disabled .select2-selection--single {
background-color:#eee;
cursor:default
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
display:none
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
border-color:transparent transparent #888 transparent;
border-width:0 4px 5px 4px
}
.select2-container--default .select2-selection--multiple {
background-color:white;
border:1px solid #aaa;
border-radius:4px;
cursor:text
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
box-sizing:border-box;
list-style:none;
margin:0;
padding:0 5px;
width:100%
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
list-style:none
}
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
color:#999;
margin-top:5px;
float:left
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
cursor:pointer;
float:right;
font-weight:700;
margin-top:5px;
margin-right:10px
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color:#e4e4e4;
border:1px solid #aaa;
border-radius:4px;
cursor:default;
float:left;
margin-right:5px;
margin-top:5px;
padding:0 5px
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color:#999;
cursor:pointer;
display:inline-block;
font-weight:700;
margin-right:2px
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color:#333
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
float:right
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
margin-left:5px;
margin-right:auto
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
margin-left:2px;
margin-right:auto
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
border:solid black 1px;
outline:0
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
background-color:#eee;
cursor:default
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
display:none
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
border-top-left-radius:0;
border-top-right-radius:0
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
border-bottom-left-radius:0;
border-bottom-right-radius:0
}
.select2-container--default .select2-search--dropdown .select2-search__field {
border:1px solid #aaa
}
.select2-container--default .select2-search--inline .select2-search__field {
background:transparent;
border:none;
outline:0;
box-shadow:none;
-webkit-appearance:textfield
}
.select2-container--default .select2-results>.select2-results__options {
max-height:200px;
overflow-y:auto
}
.select2-container--default .select2-results__option[role=group] {
padding:0
}
.select2-container--default .select2-results__option[aria-disabled=true] {
color:#999
}
.select2-container--default .select2-results__option[aria-selected=true] {
background-color:#ddd
}
.select2-container--default .select2-results__option .select2-results__option {
padding-left:1em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
padding-left:0
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
margin-left:-1em;
padding-left:2em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left:-2em;
padding-left:3em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left:-3em;
padding-left:4em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left:-4em;
padding-left:5em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left:-5em;
padding-left:6em
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
background-color:#5897fb;
color:white
}
.select2-container--default .select2-results__group {
cursor:default;
display:block;
padding:6px
}
.select2-container--classic .select2-selection--single {
background-color:#f7f7f7;
border:1px solid #aaa;
border-radius:4px;
outline:0;
background-image:-webkit-linear-gradient(top,#fff 50%,#eee 100%);
background-image:-o-linear-gradient(top,#fff 50%,#eee 100%);
background-image:linear-gradient(to bottom,#fff 50%,#eee 100%);
background-repeat:repeat-x;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF',endColorstr='#FFEEEEEE',GradientType=0)
}
.select2-container--classic .select2-selection--single:focus {
border:1px solid #5897fb
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
color:#444;
line-height:28px
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
cursor:pointer;
float:right;
font-weight:700;
margin-right:10px
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
color:#999
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
background-color:#ddd;
border:none;
border-left:1px solid #aaa;
border-top-right-radius:4px;
border-bottom-right-radius:4px;
height:26px;
position:absolute;
top:1px;
right:1px;
width:20px;
background-image:-webkit-linear-gradient(top,#eee 50%,#ccc 100%);
background-image:-o-linear-gradient(top,#eee 50%,#ccc 100%);
background-image:linear-gradient(to bottom,#eee 50%,#ccc 100%);
background-repeat:repeat-x;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE',endColorstr='#FFCCCCCC',GradientType=0)
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
border-color:#888 transparent transparent transparent;
border-style:solid;
border-width:5px 4px 0 4px;
height:0;
left:50%;
margin-left:-4px;
margin-top:-2px;
position:absolute;
top:50%;
width:0
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
float:left
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
border:none;
border-right:1px solid #aaa;
border-radius:0;
border-top-left-radius:4px;
border-bottom-left-radius:4px;
left:1px;
right:auto
}
.select2-container--classic.select2-container--open .select2-selection--single {
border:1px solid #5897fb
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
background:transparent;
border:none
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
border-color:transparent transparent #888 transparent;
border-width:0 4px 5px 4px
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
border-top:none;
border-top-left-radius:0;
border-top-right-radius:0;
background-image:-webkit-linear-gradient(top,#fff 0%,#eee 50%);
background-image:-o-linear-gradient(top,#fff 0%,#eee 50%);
background-image:linear-gradient(to bottom,#fff 0%,#eee 50%);
background-repeat:repeat-x;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF',endColorstr='#FFEEEEEE',GradientType=0)
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
border-bottom:none;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
background-image:-webkit-linear-gradient(top,#eee 50%,#fff 100%);
background-image:-o-linear-gradient(top,#eee 50%,#fff 100%);
background-image:linear-gradient(to bottom,#eee 50%,#fff 100%);
background-repeat:repeat-x;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE',endColorstr='#FFFFFFFF',GradientType=0)
}
.select2-container--classic .select2-selection--multiple {
background-color:white;
border:1px solid #aaa;
border-radius:4px;
cursor:text;
outline:0
}
.select2-container--classic .select2-selection--multiple:focus {
border:1px solid #5897fb
}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
list-style:none;
margin:0;
padding:0 5px
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
display:none
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
background-color:#e4e4e4;
border:1px solid #aaa;
border-radius:4px;
cursor:default;
float:left;
margin-right:5px;
margin-top:5px;
padding:0 5px
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
color:#888;
cursor:pointer;
display:inline-block;
font-weight:700;
margin-right:2px
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
color:#555
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
float:right;
margin-left:5px;
margin-right:auto
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
margin-left:2px;
margin-right:auto
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
border:1px solid #5897fb
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
border-top:none;
border-top-left-radius:0;
border-top-right-radius:0
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
border-bottom:none;
border-bottom-left-radius:0;
border-bottom-right-radius:0
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
border:1px solid #aaa;
outline:0
}
.select2-container--classic .select2-search--inline .select2-search__field {
outline:0;
box-shadow:none
}
.select2-container--classic .select2-dropdown {
background-color:#fff;
border:1px solid transparent
}
.select2-container--classic .select2-dropdown--above {
border-bottom:none
}
.select2-container--classic .select2-dropdown--below {
border-top:none
}
.select2-container--classic .select2-results>.select2-results__options {
max-height:200px;
overflow-y:auto
}
.select2-container--classic .select2-results__option[role=group] {
padding:0
}
.select2-container--classic .select2-results__option[aria-disabled=true] {
color:grey
}
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
background-color:#3875d7;
color:#fff
}
.select2-container--classic .select2-results__group {
cursor:default;
display:block;
padding:6px
}
.select2-container--classic.select2-container--open .select2-dropdown {
border-color:#5897fb
} | assets/plugins/select2/css/select2.cari.css | @import url(//fonts.googleapis.com/css?family=Montserrat:400|Muli:300,400|Inconsolata);
*,*::before,*::after {
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box
}
@-webkit-viewport {
width:device-width
}
@-moz-viewport {
width:device-width
}
@-ms-viewport {
width:device-width
}
@-o-viewport {
width:device-width
}
@viewport {
width:device-width
}
html {
font-size:100%;
-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;
text-decoration:none
}
a:active,
a:hover {
outline:0
}
abbr[title] {
border-bottom:1px dotted
}
b,
strong {
font-weight:700
}
dfn {
font-style:italic
}
mark {
background:#FFFF27;
color:#333
}
sub,
sup {
font-size:.8rem;
line-height:0;
position:relative;
vertical-align:baseline
}
sup {
top:-.5em
}
sub {
bottom:-.25em
}
img {
border:0;
max-width:100%
}
svg:not(:root) {
overflow:hidden
}
figure {
margin:1em 40px
}
hr {
height:0
}
pre {
overflow:auto
}
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"] {
padding:0
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height:auto
}
input[type="search"] {
-webkit-appearance:textfield
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance:none
}
legend {
border:0;
padding:0
}
textarea {
overflow:auto
}
optgroup {
font-weight:700
}
table {
border-collapse:collapse;
border-spacing:0;
table-layout:fixed;
width:100%
}
tr,
td,
th {
vertical-align:middle
}
th,
td {
padding:.425rem 0
}
th {
text-align:left
}
.container {
width:75em;
margin:0 auto;
padding:0
}
@media only all and (min-width:60em) and (max-width:74.938em) {
.container {
width:60em
}
}
@media only all and (min-width:48em) and (max-width:59.938em) {
.container {
width:48em
}
}
@media only all and (min-width:30.063em) and (max-width:47.938em) {
.container {
width:30em
}
}
@media only all and (max-width:30em) {
.container {
width:100%
}
}
.grid {
display:-webkit-box;
display:-moz-box;
display:box;
display:-webkit-flex;
display:-moz-flex;
display:-ms-flexbox;
display:flex;
-webkit-flex-flow:row;
-moz-flex-flow:row;
flex-flow:row;
list-style:none;
margin:0;
padding:0
}
@media only all and (max-width:47.938em) {
.grid {
-webkit-flex-flow:row wrap;
-moz-flex-flow:row wrap;
flex-flow:row wrap
}
}
.block {
-webkit-box-flex:1;
-moz-box-flex:1;
box-flex:1;
-webkit-flex:1;
-moz-flex:1;
-ms-flex:1;
flex:1;
min-width:0;
min-height:0
}
@media only all and (max-width:47.938em) {
.block {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 100%;
-moz-flex:0 100%;
-ms-flex:0 100%;
flex:0 100%
}
}
.content {
margin:.625rem;
padding:.938rem
}
@media only all and (max-width:47.938em) {
body [class*="size-"] {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 100%;
-moz-flex:0 100%;
-ms-flex:0 100%;
flex:0 100%
}
}
.size-1-2 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 50%;
-moz-flex:0 50%;
-ms-flex:0 50%;
flex:0 50%
}
.size-1-3 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 33.33333%;
-moz-flex:0 33.33333%;
-ms-flex:0 33.33333%;
flex:0 33.33333%
}
.size-1-4 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 25%;
-moz-flex:0 25%;
-ms-flex:0 25%;
flex:0 25%
}
.size-1-5 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 20%;
-moz-flex:0 20%;
-ms-flex:0 20%;
flex:0 20%
}
.size-1-6 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 16.66667%;
-moz-flex:0 16.66667%;
-ms-flex:0 16.66667%;
flex:0 16.66667%
}
.size-1-7 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 14.28571%;
-moz-flex:0 14.28571%;
-ms-flex:0 14.28571%;
flex:0 14.28571%
}
.size-1-8 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 12.5%;
-moz-flex:0 12.5%;
-ms-flex:0 12.5%;
flex:0 12.5%
}
.size-1-9 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 11.11111%;
-moz-flex:0 11.11111%;
-ms-flex:0 11.11111%;
flex:0 11.11111%
}
.size-1-10 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 10%;
-moz-flex:0 10%;
-ms-flex:0 10%;
flex:0 10%
}
.size-1-11 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 9.09091%;
-moz-flex:0 9.09091%;
-ms-flex:0 9.09091%;
flex:0 9.09091%
}
.size-1-12 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 8.33333%;
-moz-flex:0 8.33333%;
-ms-flex:0 8.33333%;
flex:0 8.33333%
}
@media only all and (min-width:48em) and (max-width:59.938em) {
.size-tablet-1-2 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 50%;
-moz-flex:0 50%;
-ms-flex:0 50%;
flex:0 50%
}
.size-tablet-1-3 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 33.33333%;
-moz-flex:0 33.33333%;
-ms-flex:0 33.33333%;
flex:0 33.33333%
}
.size-tablet-1-4 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 25%;
-moz-flex:0 25%;
-ms-flex:0 25%;
flex:0 25%
}
.size-tablet-1-5 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 20%;
-moz-flex:0 20%;
-ms-flex:0 20%;
flex:0 20%
}
.size-tablet-1-6 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 16.66667%;
-moz-flex:0 16.66667%;
-ms-flex:0 16.66667%;
flex:0 16.66667%
}
.size-tablet-1-7 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 14.28571%;
-moz-flex:0 14.28571%;
-ms-flex:0 14.28571%;
flex:0 14.28571%
}
.size-tablet-1-8 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 12.5%;
-moz-flex:0 12.5%;
-ms-flex:0 12.5%;
flex:0 12.5%
}
.size-tablet-1-9 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 11.11111%;
-moz-flex:0 11.11111%;
-ms-flex:0 11.11111%;
flex:0 11.11111%
}
.size-tablet-1-10 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 10%;
-moz-flex:0 10%;
-ms-flex:0 10%;
flex:0 10%
}
.size-tablet-1-11 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 9.09091%;
-moz-flex:0 9.09091%;
-ms-flex:0 9.09091%;
flex:0 9.09091%
}
.size-tablet-1-12 {
-webkit-box-flex:0;
-moz-box-flex:0;
box-flex:0;
-webkit-flex:0 8.33333%;
-moz-flex:0 8.33333%;
-ms-flex:0 8.33333%;
flex:0 8.33333%
}
}
@media only all and (max-width:47.938em) {
@supports not (flex-wrap:wrap) {
.grid {
display:block;
-webkit-box-lines:inherit;
-moz-box-lines:inherit;
box-lines:inherit;
-webkit-flex-wrap:inherit;
-moz-flex-wrap:inherit;
-ms-flex-wrap:inherit;
flex-wrap:inherit
}
.block {
display:block;
-webkit-box-flex:inherit;
-moz-box-flex:inherit;
box-flex:inherit;
-webkit-flex:inherit;
-moz-flex:inherit;
-ms-flex:inherit;
flex:inherit
}
}
}
.first-block {
-webkit-box-ordinal-group:0;
-webkit-order:-1;
-ms-flex-order:-1;
order:-1
}
.last-block {
-webkit-box-ordinal-group:2;
-webkit-order:1;
-ms-flex-order:1;
order:1
}
.fixed-blocks {
-webkit-flex-flow:row wrap;
-moz-flex-flow:row wrap;
flex-flow:row wrap
}
.fixed-blocks .block {
-webkit-box-flex:inherit;
-moz-box-flex:inherit;
box-flex:inherit;
-webkit-flex:inherit;
-moz-flex:inherit;
-ms-flex:inherit;
flex:inherit;
width:25%
}
@media only all and (min-width:60em) and (max-width:74.938em) {
.fixed-blocks .block {
width:33.33333%
}
}
@media only all and (min-width:48em) and (max-width:59.938em) {
.fixed-blocks .block {
width:50%
}
}
@media only all and (max-width:47.938em) {
.fixed-blocks .block {
width:100%
}
}
body {
font-size:1.05rem;
line-height:1.7
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin:.85rem 0 1.7rem 0;
text-rendering:optimizeLegibility
}
h1 {
font-size:3.25rem
}
h2 {
font-size:2.55rem
}
h3 {
font-size:2.15rem
}
h4 {
font-size:1.8rem
}
h5 {
font-size:1.4rem
}
h6 {
font-size:.9rem
}
p {
margin:1.7rem 0
}
ul,
ol {
margin-top:1.7rem;
margin-bottom:1.7rem
}
ul ul,
ul ol,
ol ul,
ol ol {
margin-top:0;
margin-bottom:0
}
blockquote {
margin:1.7rem 0;
padding-left:.85rem
}
cite {
display:block;
font-size:.925rem
}
cite:before {
content:"\2014 \0020"
}
pre {
margin:1.7rem 0;
padding:.938rem
}
code {
vertical-align:bottom
}
small {
font-size:.925rem
}
hr {
border-left:none;
border-right:none;
border-top:none;
margin:1.7rem 0
}
fieldset {
border:0;
padding:.938rem;
margin:0 0 1.7rem 0
}
input,
label,
select {
display:block
}
label {
margin-bottom:.425rem
}
label.required:after {
content:"*"
}
label abbr {
display:none
}
textarea,
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"],
select[multiple=multiple] {
-webkit-transition:border-color;
-moz-transition:border-color;
transition:border-color;
border-radius:.1875rem;
margin-bottom:.85rem;
padding:.425rem .425rem;
width:100%
}
textarea:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
select[multiple=multiple]:focus {
outline:none
}
textarea {
resize:vertical
}
input[type="checkbox"],
input[type="radio"] {
display:inline;
margin-right:.425rem
}
input[type="file"] {
width:100%
}
select {
width:auto;
max-width:100%;
margin-bottom:1.7rem
}
button,
input[type="submit"] {
cursor:pointer;
user-select:none;
vertical-align:middle;
white-space:nowrap;
border:inherit
}
@charset "UTF-8";
#top-github-link,#body #breadcrumbs {
position:relative;
top:50%;
-webkit-transform:translateY(-50%);
-moz-transform:translateY(-50%);
-o-transform:translateY(-50%);
-ms-transform:translateY(-50%);
transform:translateY(-50%)
}
.button,
.button-secondary {
display:inline-block;
padding:7px 12px
}
.button:active,
.button-secondary:active {
margin:2px 0 -2px 0
}
body {
background:#fff;
color:#555;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale
}
a {
color:#1694CA
}
a:hover {
color:#0e6185
}
pre {
position:relative
}
.bg {
background:#fff;
border:1px solid #eaeaea
}
b,
strong,
label,
th {
font-weight:600
}
.default-animation,
#header #logo-svg,
#header #logo-svg path,
#sidebar,
#sidebar ul,
#body,
#body .padding,
#body .nav {
-webkit-transition:all 0.5s ease;
-moz-transition:all 0.5s ease;
transition:all 0.5s ease
}
fieldset {
border:1px solid #ddd
}
textarea,
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"],
select[multiple=multiple] {
background-color:white;
border:1px solid #ddd;
box-shadow:inset 0 1px 3px rgba(0,0,0,.06)
}
textarea:hover,
input[type="email"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="text"]:hover,
input[type="url"]:hover,
input[type="color"]:hover,
input[type="date"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="month"]:hover,
input[type="time"]:hover,
input[type="week"]:hover,
select[multiple=multiple]:hover {
border-color:#c4c4c4
}
textarea:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
select[multiple=multiple]:focus {
border-color:#1694CA;
box-shadow:inset 0 1px 3px rgba(0,0,0,.06),0 0 5px rgba(19,131,179,.7)
}
#header {
background:#1694CA;
color:#fff;
text-align:center;
padding:1rem
}
#header a {
display:inline-block
}
#header #logo-svg {
width:8rem;
height:2rem
}
#header #logo-svg path {
fill:#fff
}
.searchbox {
margin-top:.5rem;
position:relative;
border:1px solid #19a5e1;
background:#1383b3;
border-radius:4px
}
.searchbox label {
color:rgba(255,255,255,.8);
position:absolute;
left:10px;
top:3px
}
.searchbox span {
color:rgba(255,255,255,.6);
position:absolute;
right:10px;
top:3px;
cursor:pointer
}
.searchbox span:hover {
color:rgba(255,255,255,.9)
}
.searchbox input {
display:inline-block;
color:#fff;
width:100%;
height:30px;
background:transparent;
border:0;
padding:0 25px 0 30px;
margin:0;
font-weight:400
}
.searchbox input::-webkit-input-placeholder {
color:rgba(255,255,255,.6)
}
.searchbox input::-moz-placeholder {
color:rgba(255,255,255,.6)
}
.searchbox input:-moz-placeholder {
color:rgba(255,255,255,.6)
}
.searchbox input:-ms-input-placeholder {
color:rgba(255,255,255,.6)
}
#sidebar-toggle {
display:none
}
@media only all and (max-width:47.938em) {
#sidebar-toggle {
display:inline-block
}
}
#sidebar {
background-color:#38424D;
position:fixed;
top:0;
width:300px;
bottom:0;
left:0;
font-weight:500;
font-size:15px
}
#sidebar a {
color:#bbb
}
#sidebar a:hover {
color:#d5d5d5
}
#sidebar a.subtitle {
color:rgba(187,187,187,.6)
}
#sidebar hr {
border-bottom:1px solid #323a44
}
#sidebar a.padding {
padding:0 1rem
}
#sidebar h5 {
margin:2rem 0 0;
position:relative;
line-height:2
}
#sidebar h5 a {
display:block;
margin-left:0;
margin-right:0;
padding-left:1rem;
padding-right:1rem
}
#sidebar h5 i {
color:rgba(187,187,187,.6);
position:absolute;
right:.6rem;
top:.7rem;
font-size:80%
}
#sidebar h5.parent a {
background:#293038;
color:#c8c8c8!important
}
#sidebar h5.active a {
background:#fff;
color:#555!important
}
#sidebar h5.active i {
color:#555!important
}
#sidebar h5+ul.topics {
display:none;
margin-top:0
}
#sidebar h5.parent+ul.topics,
#sidebar h5.active+ul.topics {
display:block
}
#sidebar ul {
list-style:none;
padding:0;
margin:0
}
#sidebar ul.searched a {
color:#888
}
#sidebar ul.searched .search-match a {
color:#d5d5d5
}
#sidebar ul.searched .search-match a:hover {
color:#eee
}
#sidebar ul.topics {
margin:0 1rem
}
#sidebar ul.topics.searched ul {
display:block
}
#sidebar ul.topics ul {
display:none;
padding-bottom:1rem
}
#sidebar ul.topics ul ul {
padding-bottom:0
}
#sidebar ul.topics li.parent ul,
#sidebar ul.topics>li.active ul {
display:block
}
#sidebar ul.topics>li>a {
line-height:2rem;
font-size:1.1rem
}
#sidebar ul.topics>li>a b {
opacity:.5;
font-weight:400
}
#sidebar ul.topics>li>a .fa {
margin-top:9px
}
#sidebar ul.topics>li.parent,
#sidebar ul.topics>li.active {
background:#2d353e;
margin-left:-1rem;
margin-right:-1rem;
padding-left:1rem;
padding-right:1rem
}
#sidebar ul li.active>a {
background:#fff;
color:#555!important;
margin-left:-1rem;
margin-right:-1rem;
padding-left:1rem;
padding-right:1rem
}
#sidebar ul li {
padding:0
}
#sidebar ul li.visited+span {
margin-right:16px
}
#sidebar ul li a {
display:block;
padding:2px 0
}
#sidebar ul li a span {
text-overflow:ellipsis;
overflow:hidden;
white-space:nowrap;
display:block
}
#sidebar ul li>a {
padding:4px 0
}
#sidebar ul li .fa {
display:none;
float:right;
font-size:13px;
min-width:16px;
margin:4px 0 0 0;
text-align:right
}
#sidebar ul li.visited>a .read-icon {
color:#1694CA;
display:inline
}
#sidebar ul li li {
padding-left:1rem;
text-indent:.2rem
}
#main {
background:#f7f7f7;
margin:0 0 1.563rem 0
}
#body {
position:relative;
margin-left:300px;
min-height:100%
}
#body img,
#body .video-container {
margin:3rem auto;
display:block;
text-align:center
}
#body img.border,
#body .video-container.border {
border:2px solid #e6e6e6!important;
padding:2px
}
#body img.shadow,
#body .video-container.shadow {
box-shadow:0 10px 30px rgba(0,0,0,.1)
}
#body .bordered {
border:1px solid #ccc
}
#body .padding {
padding:3rem 6rem
}
@media only all and (max-width:59.938em) {
#body .padding {
position:static;
padding:15px 3rem
}
}
@media only all and (max-width:47.938em) {
#body .padding {
padding:5px 1rem
}
}
#body h1+hr {
margin-top:-1.7rem;
margin-bottom:3rem
}
@media only all and (max-width:59.938em) {
#body #navigation {
position:static;
margin-right:0!important;
width:100%;
display:table
}
}
#body .nav {
position:fixed;
top:0;
bottom:0;
width:4rem;
font-size:50px;
height:100%;
cursor:pointer;
display:table;
text-align:center
}
#body .nav>i {
display:table-cell;
vertical-align:middle;
text-align:center
}
@media only all and (max-width:59.938em) {
#body .nav {
display:table-cell;
position:static;
top:auto;
width:50%;
text-align:center;
height:100px;
line-height:100px;
padding-top:0
}
#body .nav>i {
display:inline-block
}
}
#body .nav:hover {
background:#F6F6F6
}
#body .nav.nav-pref {
left:0
}
#body .nav.nav-next {
right:0
}
#body-inner {
margin-bottom:5rem
}
#chapter {
display:flex;
align-items:center;
justify-content:center;
height:100%;
padding:2rem 0
}
#chapter #body-inner {
padding-bottom:3rem;
max-width:80%
}
#chapter h3 {
font-family:"Muli","Helvetica","Tahoma","Geneva","Arial",sans-serif;
font-weight:400;
text-align:center
}
#chapter h1 {
font-size:5rem;
border-bottom:4px solid #F0F2F4
}
#chapter p {
text-align:center;
font-size:1.2rem
}
#footer {
padding:3rem 1rem;
color:#a2a2a2;
font-size:13px
}
#footer p {
margin:0
}
body {
font-family:"Muli","Helvetica","Tahoma","Geneva","Arial",sans-serif;
letter-spacing:-.03rem;
font-weight:400
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family:"Montserrat","Helvetica","Tahoma","Geneva","Arial",sans-serif;
font-weight:400;
text-rendering:optimizeLegibility;
line-height:150%;
letter-spacing:0
}
h1 {
text-align:center;
letter-spacing:-3px
}
h2 {
letter-spacing:-2px
}
h3 {
letter-spacing:-1px
}
blockquote {
border-left:10px solid #F0F2F4
}
blockquote p {
font-size:1.1rem;
color:#999
}
blockquote cite {
display:block;
text-align:right;
color:#666;
font-size:1.2rem
}
blockquote {
position:relative
}
blockquote blockquote {
position:static
}
blockquote>blockquote>blockquote {
margin:0
}
blockquote>blockquote>blockquote p {
padding:15px;
display:block;
font-size:1rem;
margin-top:0rem;
margin-bottom:0rem;
color:#666
}
blockquote>blockquote>blockquote p:first-child:before {
position:absolute;
top:2px;
color:#fff;
font-family:FontAwesome;
content:'';
left:10px
}
blockquote>blockquote>blockquote p:first-child:after {
position:absolute;
top:2px;
color:#fff;
left:2rem;
font-weight:700;
content:'Info'
}
blockquote>blockquote>blockquote>p {
margin-left:-71px;
border-top:30px solid #F0B37E;
background:#FFF2DB
}
blockquote>blockquote>blockquote>blockquote>p {
margin-left:-94px;
border-top:30px solid rgba(217,83,79,.8);
background:#FAE2E2
}
blockquote>blockquote>blockquote>blockquote>p:first-child:after {
content:'Warning'
}
blockquote>blockquote>blockquote>blockquote>blockquote>p {
margin-left:-118px;
border-top:30px solid #6AB0DE;
background:#E7F2FA
}
blockquote>blockquote>blockquote>blockquote>blockquote>p:first-child:after {
content:'Note'
}
blockquote>blockquote>blockquote>blockquote>blockquote>blockquote>p {
margin-left:-142px;
border-top:30px solid rgba(92,184,92,.8);
background:#E6F9E6
}
blockquote>blockquote>blockquote>blockquote>blockquote>blockquote>p:first-child:after {
content:'Tip'
}
code,
kbd,
pre,
samp {
font-family:"Inconsolata",monospace
}
code {
background:#f9f2f4;
color:#9c1d3d;
padding:.2rem .4rem;
border-radius:3px
}
pre {
padding:1rem;
margin:2rem 0;
background:#f6f6f6;
border:1px solid #ddd;
border-radius:2px;
line-height:1.15;
font-size:1rem
}
pre code {
color:#237794;
background:inherit;
font-size:1rem
}
hr {
border-bottom:4px solid #F0F2F4
}
.page-title {
margin-top:-25px;
padding:25px;
float:left;
clear:both;
background:#1694CA;
color:#fff
}
#body a.anchor-link {
color:#ccc
}
#body a.anchor-link:hover {
color:#1694CA
}
.scrollbar-inner>.scroll-element .scroll-element_track {
background-color:rgba(255,255,255,.3)
}
.scrollbar-inner>.scroll-element .scroll-bar {
background-color:#b5d1eb
}
.scrollbar-inner>.scroll-element:hover .scroll-bar {
background-color:#ccc
}
.scrollbar-inner>.scroll-element.scroll-draggable .scroll-bar {
background-color:#ccc
}
table {
border:1px solid #eaeaea;
table-layout:auto
}
th {
background:#f7f7f7;
padding:.5rem
}
td {
padding:.5rem;
border:1px solid #eaeaea
}
.button {
background:#1694CA;
color:#fff;
box-shadow:0 3px 0 #1380ae
}
.button:hover {
background:#1380ae;
box-shadow:0 3px 0 #106c93;
color:#fff
}
.button:active {
box-shadow:0 1px 0 #106c93
}
.button-secondary {
background:#F8B450;
color:#fff;
box-shadow:0 3px 0 #f7a733
}
.button-secondary:hover {
background:#f7a733;
box-shadow:0 3px 0 #f69b15;
color:#fff
}
.button-secondary:active {
box-shadow:0 1px 0 #f69b15
}
.bullets {
margin:1.7rem 0;
margin-left:-.85rem;
margin-right:-.85rem;
overflow:auto
}
.bullet {
float:left;
padding:0 .85rem
}
.two-column-bullet {
width:50%
}
@media only all and (max-width:47.938em) {
.two-column-bullet {
width:100%
}
}
.three-column-bullet {
width:33.33333%
}
@media only all and (max-width:47.938em) {
.three-column-bullet {
width:100%
}
}
.four-column-bullet {
width:25%
}
@media only all and (max-width:47.938em) {
.four-column-bullet {
width:100%
}
}
.bullet-icon {
float:left;
background:#1694CA;
padding:.875rem;
width:3.5rem;
height:3.5rem;
border-radius:50%;
color:#fff;
font-size:1.75rem;
text-align:center
}
.bullet-icon-1 {
background:#1694CA
}
.bullet-icon-2 {
background:#16cac4
}
.bullet-icon-3 {
background:#b2ca16
}
.bullet-content {
margin-left:4.55rem
}
.tooltipped {
position:relative
}
.tooltipped:after {
position:absolute;
z-index:1000000;
display:none;
padding:5px 8px;
font:normal normal 11px/1.5 "Muli","Helvetica","Tahoma","Geneva","Arial",sans-serif;
color:#fff;
text-align:center;
text-decoration:none;
text-shadow:none;
text-transform:none;
letter-spacing:normal;
word-wrap:break-word;
white-space:pre;
pointer-events:none;
content:attr(aria-label);
background:rgba(0,0,0,.8);
border-radius:3px;
-webkit-font-smoothing:subpixel-antialiased
}
.tooltipped:before {
position:absolute;
z-index:1000001;
display:none;
width:0;
height:0;
color:rgba(0,0,0,.8);
pointer-events:none;
content:"";
border:5px solid transparent
}
.tooltipped:hover:before,
.tooltipped:hover:after,
.tooltipped:active:before,
.tooltipped:active:after,
.tooltipped:focus:before,
.tooltipped:focus:after {
display:inline-block;
text-decoration:none
}
.tooltipped-s:after,
.tooltipped-se:after,
.tooltipped-sw:after {
top:100%;
right:50%;
margin-top:5px
}
.tooltipped-s:before,
.tooltipped-se:before,
.tooltipped-sw:before {
top:auto;
right:50%;
bottom:-5px;
margin-right:-5px;
border-bottom-color:rgba(0,0,0,.8)
}
.tooltipped-se:after {
right:auto;
left:50%;
margin-left:-15px
}
.tooltipped-sw:after {
margin-right:-15px
}
.tooltipped-n:after,
.tooltipped-ne:after,
.tooltipped-nw:after {
right:50%;
bottom:100%;
margin-bottom:5px
}
.tooltipped-n:before,
.tooltipped-ne:before,
.tooltipped-nw:before {
top:-5px;
right:50%;
bottom:auto;
margin-right:-5px;
border-top-color:rgba(0,0,0,.8)
}
.tooltipped-ne:after {
right:auto;
left:50%;
margin-left:-15px
}
.tooltipped-nw:after {
margin-right:-15px
}
.tooltipped-s:after,
.tooltipped-n:after {
transform:translateX(50%)
}
.tooltipped-w:after {
right:100%;
bottom:50%;
margin-right:5px;
transform:translateY(50%)
}
.tooltipped-w:before {
top:50%;
bottom:50%;
left:-5px;
margin-top:-5px;
border-left-color:rgba(0,0,0,.8)
}
.tooltipped-e:after {
bottom:50%;
left:100%;
margin-left:5px;
transform:translateY(50%)
}
.tooltipped-e:before {
top:50%;
right:-5px;
bottom:50%;
margin-top:-5px;
border-right-color:rgba(0,0,0,.8)
}
.highlightable {
padding:25px 0 15px
}
.scroll-wrapper {
overflow:hidden!important;
padding:0!important;
position:relative
}
.scroll-wrapper>.scroll-content {
border:none!important;
box-sizing:content-box!important;
height:auto;
left:0;
margin:0;
max-height:none;
max-width:none!important;
overflow:scroll!important;
padding:0;
position:relative!important;
top:0;
width:auto!important
}
.scroll-wrapper>.scroll-content::-webkit-scrollbar {
height:0;
width:0
}
.scroll-element {
display:none
}
.scroll-element,
.scroll-element div {
box-sizing:content-box
}
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
display:block
}
.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
cursor:default
}
.scroll-textarea>.scroll-content {
overflow:hidden!important
}
.scroll-textarea>.scroll-content>textarea {
border:none!important;
box-sizing:border-box;
height:100%!important;
margin:0;
max-height:none!important;
max-width:none!important;
overflow:scroll!important;
outline:none;
padding:2px;
position:relative!important;
top:0;
width:100%!important
}
.scroll-textarea>.scroll-content>textarea::-webkit-scrollbar {
height:0;
width:0
}
.scrollbar-inner>.scroll-element,
.scrollbar-inner>.scroll-element div {
border:none;
margin:0;
padding:0;
position:absolute;
z-index:10
}
.scrollbar-inner>.scroll-element div {
display:block;
height:100%;
left:0;
top:0;
width:100%
}
.scrollbar-inner>.scroll-element.scroll-x {
bottom:2px;
height:8px;
left:0;
width:100%
}
.scrollbar-inner>.scroll-element.scroll-y {
height:100%;
right:2px;
top:0;
width:8px
}
.scrollbar-inner>.scroll-element .scroll-element_outer {
overflow:hidden
}
.scrollbar-inner>.scroll-element .scroll-element_outer,
.scrollbar-inner>.scroll-element .scroll-element_track,
.scrollbar-inner>.scroll-element .scroll-bar {
-webkit-border-radius:8px;
-moz-border-radius:8px;
border-radius:8px
}
.scrollbar-inner>.scroll-element .scroll-element_track,
.scrollbar-inner>.scroll-element .scroll-bar {
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
filter:alpha(opacity=30);
opacity:.3
}
.scrollbar-inner>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
left:-12px
}
.scrollbar-inner>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
top:-12px
}
.scrollbar-inner>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
left:-12px
}
.scrollbar-inner>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
top:-12px
}
.lightbox-active #body {
overflow:visible
}
.lightbox-active #body .padding {
overflow:visible
}
#github-contrib i {
vertical-align:middle
}
.featherlight img {
margin:0!important
}
.lifecycle #body-inner ul {
list-style:none;
margin:0;
padding:2rem 0 0;
position:relative
}
.lifecycle #body-inner ol {
margin:1rem 0 1rem 0;
padding:2rem;
position:relative
}
.lifecycle #body-inner ol li {
margin-left:1rem
}
.lifecycle #body-inner ol strong,
.lifecycle #body-inner ol label,
.lifecycle #body-inner ol th {
text-decoration:underline
}
.lifecycle #body-inner ol ol {
margin-left:-1rem
}
.lifecycle #body-inner h3[class*='level'] {
font-size:20px;
position:absolute;
margin:0;
padding:4px 10px;
right:0;
z-index:1000;
color:#fff;
background:#1ABC9C
}
.lifecycle #body-inner ol h3 {
margin-top:1rem!important;
right:2rem!important
}
.lifecycle #body-inner .level-1+ol {
background:#f6fefc;
border:4px solid #1ABC9C;
color:#16A085
}
.lifecycle #body-inner .level-1+ol h3 {
background:#2ECC71
}
.lifecycle #body-inner .level-2+ol {
background:#f7fdf9;
border:4px solid #2ECC71;
color:#27AE60
}
.lifecycle #body-inner .level-2+ol h3 {
background:#3498DB
}
.lifecycle #body-inner .level-3+ol {
background:#f3f9fd;
border:4px solid #3498DB;
color:#2980B9
}
.lifecycle #body-inner .level-3+ol h3 {
background:#34495E
}
.lifecycle #body-inner .level-4+ol {
background:#e4eaf0;
border:4px solid #34495E;
color:#2C3E50
}
.lifecycle #body-inner .level-4+ol h3 {
background:#34495E
}
#top-bar {
background:#F6F6F6;
border-radius:2px;
margin:0rem -1rem 2rem;
padding:0 1rem;
height:0;
min-height:3rem
}
#top-github-link {
position:relative;
z-index:1;
float:right;
display:block
}
#body #breadcrumbs {
height:auto;
display:block;
margin-bottom:0;
padding-left:0;
line-height:1.4
}
#body #breadcrumbs span {
padding:0 .1rem
}
@media only all and (max-width:59.938em) {
#sidebar {
width:230px
}
#body {
margin-left:230px
}
}
@media only all and (max-width:47.938em) {
#sidebar {
width:230px;
left:-230px
}
#body {
margin-left:0;
width:100%
}
.sidebar-hidden {
overflow:hidden
}
.sidebar-hidden #sidebar {
left:0
}
.sidebar-hidden #body {
margin-left:230px;
overflow:hidden
}
.sidebar-hidden #overlay {
position:absolute;
left:0;
right:0;
top:0;
bottom:0;
z-index:10;
background:rgba(255,255,255,.5);
cursor:pointer
}
}
.copy-to-clipboard {
background-image:url(/user/themes/learn2/images/clippy.svg);
background-position:50% 50%;
background-size:16px 16px;
background-repeat:no-repeat;
width:27px;
height:1.45rem;
top:-1px;
display:inline-block;
vertical-align:middle;
position:relative;
color:#3c3c3c;
background-color:#f9f2f4;
margin-left:-.2rem;
cursor:pointer;
border-radius:0 2px 2px 0
}
.copy-to-clipboard:hover {
background-color:#f1e1e5
}
pre .copy-to-clipboard {
position:absolute;
right:4px;
top:4px;
background-color:#eee;
border-color:#ddd;
border-radius:2px
}
pre .copy-to-clipboard:hover {
background-color:#d9d9d9
}
.parent-element {
-webkit-transform-style:preserve-3d;
-moz-transform-style:preserve-3d;
transform-style:preserve-3d
}
@font-face {
font-family:'FontAwesome';
src:url(/user/themes/learn2/fonts/fontawesome-webfont.eot?v=4.7.0);
src:url('/user/themes/learn2/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),
url(/user/themes/learn2/fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),
url(/user/themes/learn2/fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),
url(/user/themes/learn2/fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),
url('/user/themes/learn2/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
font-weight:400;
font-style:normal
}
.fa {
display:inline-block;
font:normal normal normal 14px/1 FontAwesome;
font-size:inherit;
text-rendering:auto;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale
}
.fa-lg {
font-size:1.33333333em;
line-height:.75em;
vertical-align:-15%
}
.fa-2x {
font-size:2em
}
.fa-3x {
font-size:3em
}
.fa-4x {
font-size:4em
}
.fa-5x {
font-size:5em
}
.fa-fw {
width:1.28571429em;
text-align:center
}
.fa-ul {
padding-left:0;
margin-left:2.14285714em;
list-style-type:none
}
.fa-ul>li {
position:relative
}
.fa-li {
position:absolute;
left:-2.14285714em;
width:2.14285714em;
top:.14285714em;
text-align:center
}
.fa-li.fa-lg {
left:-1.85714286em
}
.fa-border {
padding:.2em .25em .15em;
border:solid .08em #eee;
border-radius:.1em
}
.fa-pull-left {
float:left
}
.fa-pull-right {
float:right
}
.fa.fa-pull-left {
margin-right:.3em
}
.fa.fa-pull-right {
margin-left:.3em
}
.pull-right {
float:right
}
.pull-left {
float:left
}
.fa.pull-left {
margin-right:.3em
}
.fa.pull-right {
margin-left:.3em
}
.fa-spin {
-webkit-animation:fa-spin 2s infinite linear;
animation:fa-spin 2s infinite linear
}
.fa-pulse {
-webkit-animation:fa-spin 1s infinite steps(8);
animation:fa-spin 1s infinite steps(8)
}
@-webkit-keyframes fa-spin {
0% {
-webkit-transform:rotate(0deg);
transform:rotate(0deg)
}
100% {
-webkit-transform:rotate(359deg);
transform:rotate(359deg)
}
}
@keyframes fa-spin {
0% {
-webkit-transform:rotate(0deg);
transform:rotate(0deg)
}
100% {
-webkit-transform:rotate(359deg);
transform:rotate(359deg)
}
}
.fa-rotate-90 {
-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
-webkit-transform:rotate(90deg);
-ms-transform:rotate(90deg);
transform:rotate(90deg)
}
.fa-rotate-180 {
-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
-webkit-transform:rotate(180deg);
-ms-transform:rotate(180deg);
transform:rotate(180deg)
}
.fa-rotate-270 {
-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
-webkit-transform:rotate(270deg);
-ms-transform:rotate(270deg);
transform:rotate(270deg)
}
.fa-flip-horizontal {
-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
-webkit-transform:scale(-1,1);
-ms-transform:scale(-1,1);
transform:scale(-1,1)
}
.fa-flip-vertical {
-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
-webkit-transform:scale(1,-1);
-ms-transform:scale(1,-1);
transform:scale(1,-1)
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
filter:none
}
.fa-stack {
position:relative;
display:inline-block;
width:2em;
height:2em;
line-height:2em;
vertical-align:middle
}
.fa-stack-1x,
.fa-stack-2x {
position:absolute;
left:0;
width:100%;
text-align:center
}
.fa-stack-1x {
line-height:inherit
}
.fa-stack-2x {
font-size:2em
}
.fa-inverse {
color:#fff
}
.fa-glass:before {
content:"\f000"
}
.fa-music:before {
content:"\f001"
}
.fa-search:before {
content:"\f002"
}
.fa-envelope-o:before {
content:"\f003"
}
.fa-heart:before {
content:"\f004"
}
.fa-star:before {
content:"\f005"
}
.fa-star-o:before {
content:"\f006"
}
.fa-user:before {
content:"\f007"
}
.fa-film:before {
content:"\f008"
}
.fa-th-large:before {
content:"\f009"
}
.fa-th:before {
content:"\f00a"
}
.fa-th-list:before {
content:"\f00b"
}
.fa-check:before {
content:"\f00c"
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
content:"\f00d"
}
.fa-search-plus:before {
content:"\f00e"
}
.fa-search-minus:before {
content:"\f010"
}
.fa-power-off:before {
content:"\f011"
}
.fa-signal:before {
content:"\f012"
}
.fa-gear:before,
.fa-cog:before {
content:"\f013"
}
.fa-trash-o:before {
content:"\f014"
}
.fa-home:before {
content:"\f015"
}
.fa-file-o:before {
content:"\f016"
}
.fa-clock-o:before {
content:"\f017"
}
.fa-road:before {
content:"\f018"
}
.fa-download:before {
content:"\f019"
}
.fa-arrow-circle-o-down:before {
content:"\f01a"
}
.fa-arrow-circle-o-up:before {
content:"\f01b"
}
.fa-inbox:before {
content:"\f01c"
}
.fa-play-circle-o:before {
content:"\f01d"
}
.fa-rotate-right:before,
.fa-repeat:before {
content:"\f01e"
}
.fa-refresh:before {
content:"\f021"
}
.fa-list-alt:before {
content:"\f022"
}
.fa-lock:before {
content:"\f023"
}
.fa-flag:before {
content:"\f024"
}
.fa-headphones:before {
content:"\f025"
}
.fa-volume-off:before {
content:"\f026"
}
.fa-volume-down:before {
content:"\f027"
}
.fa-volume-up:before {
content:"\f028"
}
.fa-qrcode:before {
content:"\f029"
}
.fa-barcode:before {
content:"\f02a"
}
.fa-tag:before {
content:"\f02b"
}
.fa-tags:before {
content:"\f02c"
}
.fa-book:before {
content:"\f02d"
}
.fa-bookmark:before {
content:"\f02e"
}
.fa-print:before {
content:"\f02f"
}
.fa-camera:before {
content:"\f030"
}
.fa-font:before {
content:"\f031"
}
.fa-bold:before {
content:"\f032"
}
.fa-italic:before {
content:"\f033"
}
.fa-text-height:before {
content:"\f034"
}
.fa-text-width:before {
content:"\f035"
}
.fa-align-left:before {
content:"\f036"
}
.fa-align-center:before {
content:"\f037"
}
.fa-align-right:before {
content:"\f038"
}
.fa-align-justify:before {
content:"\f039"
}
.fa-list:before {
content:"\f03a"
}
.fa-dedent:before,
.fa-outdent:before {
content:"\f03b"
}
.fa-indent:before {
content:"\f03c"
}
.fa-video-camera:before {
content:"\f03d"
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
content:"\f03e"
}
.fa-pencil:before {
content:"\f040"
}
.fa-map-marker:before {
content:"\f041"
}
.fa-adjust:before {
content:"\f042"
}
.fa-tint:before {
content:"\f043"
}
.fa-edit:before,
.fa-pencil-square-o:before {
content:"\f044"
}
.fa-share-square-o:before {
content:"\f045"
}
.fa-check-square-o:before {
content:"\f046"
}
.fa-arrows:before {
content:"\f047"
}
.fa-step-backward:before {
content:"\f048"
}
.fa-fast-backward:before {
content:"\f049"
}
.fa-backward:before {
content:"\f04a"
}
.fa-play:before {
content:"\f04b"
}
.fa-pause:before {
content:"\f04c"
}
.fa-stop:before {
content:"\f04d"
}
.fa-forward:before {
content:"\f04e"
}
.fa-fast-forward:before {
content:"\f050"
}
.fa-step-forward:before {
content:"\f051"
}
.fa-eject:before {
content:"\f052"
}
.fa-chevron-left:before {
content:"\f053"
}
.fa-chevron-right:before {
content:"\f054"
}
.fa-plus-circle:before {
content:"\f055"
}
.fa-minus-circle:before {
content:"\f056"
}
.fa-times-circle:before {
content:"\f057"
}
.fa-check-circle:before {
content:"\f058"
}
.fa-question-circle:before {
content:"\f059"
}
.fa-info-circle:before {
content:"\f05a"
}
.fa-crosshairs:before {
content:"\f05b"
}
.fa-times-circle-o:before {
content:"\f05c"
}
.fa-check-circle-o:before {
content:"\f05d"
}
.fa-ban:before {
content:"\f05e"
}
.fa-arrow-left:before {
content:"\f060"
}
.fa-arrow-right:before {
content:"\f061"
}
.fa-arrow-up:before {
content:"\f062"
}
.fa-arrow-down:before {
content:"\f063"
}
.fa-mail-forward:before,
.fa-share:before {
content:"\f064"
}
.fa-expand:before {
content:"\f065"
}
.fa-compress:before {
content:"\f066"
}
.fa-plus:before {
content:"\f067"
}
.fa-minus:before {
content:"\f068"
}
.fa-asterisk:before {
content:"\f069"
}
.fa-exclamation-circle:before {
content:"\f06a"
}
.fa-gift:before {
content:"\f06b"
}
.fa-leaf:before {
content:"\f06c"
}
.fa-fire:before {
content:"\f06d"
}
.fa-eye:before {
content:"\f06e"
}
.fa-eye-slash:before {
content:"\f070"
}
.fa-warning:before,
.fa-exclamation-triangle:before {
content:"\f071"
}
.fa-plane:before {
content:"\f072"
}
.fa-calendar:before {
content:"\f073"
}
.fa-random:before {
content:"\f074"
}
.fa-comment:before {
content:"\f075"
}
.fa-magnet:before {
content:"\f076"
}
.fa-chevron-up:before {
content:"\f077"
}
.fa-chevron-down:before {
content:"\f078"
}
.fa-retweet:before {
content:"\f079"
}
.fa-shopping-cart:before {
content:"\f07a"
}
.fa-folder:before {
content:"\f07b"
}
.fa-folder-open:before {
content:"\f07c"
}
.fa-arrows-v:before {
content:"\f07d"
}
.fa-arrows-h:before {
content:"\f07e"
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
content:"\f080"
}
.fa-twitter-square:before {
content:"\f081"
}
.fa-facebook-square:before {
content:"\f082"
}
.fa-camera-retro:before {
content:"\f083"
}
.fa-key:before {
content:"\f084"
}
.fa-gears:before,
.fa-cogs:before {
content:"\f085"
}
.fa-comments:before {
content:"\f086"
}
.fa-thumbs-o-up:before {
content:"\f087"
}
.fa-thumbs-o-down:before {
content:"\f088"
}
.fa-star-half:before {
content:"\f089"
}
.fa-heart-o:before {
content:"\f08a"
}
.fa-sign-out:before {
content:"\f08b"
}
.fa-linkedin-square:before {
content:"\f08c"
}
.fa-thumb-tack:before {
content:"\f08d"
}
.fa-external-link:before {
content:"\f08e"
}
.fa-sign-in:before {
content:"\f090"
}
.fa-trophy:before {
content:"\f091"
}
.fa-github-square:before {
content:"\f092"
}
.fa-upload:before {
content:"\f093"
}
.fa-lemon-o:before {
content:"\f094"
}
.fa-phone:before {
content:"\f095"
}
.fa-square-o:before {
content:"\f096"
}
.fa-bookmark-o:before {
content:"\f097"
}
.fa-phone-square:before {
content:"\f098"
}
.fa-twitter:before {
content:"\f099"
}
.fa-facebook-f:before,
.fa-facebook:before {
content:"\f09a"
}
.fa-github:before {
content:"\f09b"
}
.fa-unlock:before {
content:"\f09c"
}
.fa-credit-card:before {
content:"\f09d"
}
.fa-feed:before,
.fa-rss:before {
content:"\f09e"
}
.fa-hdd-o:before {
content:"\f0a0"
}
.fa-bullhorn:before {
content:"\f0a1"
}
.fa-bell:before {
content:"\f0f3"
}
.fa-certificate:before {
content:"\f0a3"
}
.fa-hand-o-right:before {
content:"\f0a4"
}
.fa-hand-o-left:before {
content:"\f0a5"
}
.fa-hand-o-up:before {
content:"\f0a6"
}
.fa-hand-o-down:before {
content:"\f0a7"
}
.fa-arrow-circle-left:before {
content:"\f0a8"
}
.fa-arrow-circle-right:before {
content:"\f0a9"
}
.fa-arrow-circle-up:before {
content:"\f0aa"
}
.fa-arrow-circle-down:before {
content:"\f0ab"
}
.fa-globe:before {
content:"\f0ac"
}
.fa-wrench:before {
content:"\f0ad"
}
.fa-tasks:before {
content:"\f0ae"
}
.fa-filter:before {
content:"\f0b0"
}
.fa-briefcase:before {
content:"\f0b1"
}
.fa-arrows-alt:before {
content:"\f0b2"
}
.fa-group:before,
.fa-users:before {
content:"\f0c0"
}
.fa-chain:before,
.fa-link:before {
content:"\f0c1"
}
.fa-cloud:before {
content:"\f0c2"
}
.fa-flask:before {
content:"\f0c3"
}
.fa-cut:before,
.fa-scissors:before {
content:"\f0c4"
}
.fa-copy:before,
.fa-files-o:before {
content:"\f0c5"
}
.fa-paperclip:before {
content:"\f0c6"
}
.fa-save:before,
.fa-floppy-o:before {
content:"\f0c7"
}
.fa-square:before {
content:"\f0c8"
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
content:"\f0c9"
}
.fa-list-ul:before {
content:"\f0ca"
}
.fa-list-ol:before {
content:"\f0cb"
}
.fa-strikethrough:before {
content:"\f0cc"
}
.fa-underline:before {
content:"\f0cd"
}
.fa-table:before {
content:"\f0ce"
}
.fa-magic:before {
content:"\f0d0"
}
.fa-truck:before {
content:"\f0d1"
}
.fa-pinterest:before {
content:"\f0d2"
}
.fa-pinterest-square:before {
content:"\f0d3"
}
.fa-google-plus-square:before {
content:"\f0d4"
}
.fa-google-plus:before {
content:"\f0d5"
}
.fa-money:before {
content:"\f0d6"
}
.fa-caret-down:before {
content:"\f0d7"
}
.fa-caret-up:before {
content:"\f0d8"
}
.fa-caret-left:before {
content:"\f0d9"
}
.fa-caret-right:before {
content:"\f0da"
}
.fa-columns:before {
content:"\f0db"
}
.fa-unsorted:before,
.fa-sort:before {
content:"\f0dc"
}
.fa-sort-down:before,
.fa-sort-desc:before {
content:"\f0dd"
}
.fa-sort-up:before,
.fa-sort-asc:before {
content:"\f0de"
}
.fa-envelope:before {
content:"\f0e0"
}
.fa-linkedin:before {
content:"\f0e1"
}
.fa-rotate-left:before,
.fa-undo:before {
content:"\f0e2"
}
.fa-legal:before,
.fa-gavel:before {
content:"\f0e3"
}
.fa-dashboard:before,
.fa-tachometer:before {
content:"\f0e4"
}
.fa-comment-o:before {
content:"\f0e5"
}
.fa-comments-o:before {
content:"\f0e6"
}
.fa-flash:before,
.fa-bolt:before {
content:"\f0e7"
}
.fa-sitemap:before {
content:"\f0e8"
}
.fa-umbrella:before {
content:"\f0e9"
}
.fa-paste:before,
.fa-clipboard:before {
content:"\f0ea"
}
.fa-lightbulb-o:before {
content:"\f0eb"
}
.fa-exchange:before {
content:"\f0ec"
}
.fa-cloud-download:before {
content:"\f0ed"
}
.fa-cloud-upload:before {
content:"\f0ee"
}
.fa-user-md:before {
content:"\f0f0"
}
.fa-stethoscope:before {
content:"\f0f1"
}
.fa-suitcase:before {
content:"\f0f2"
}
.fa-bell-o:before {
content:"\f0a2"
}
.fa-coffee:before {
content:"\f0f4"
}
.fa-cutlery:before {
content:"\f0f5"
}
.fa-file-text-o:before {
content:"\f0f6"
}
.fa-building-o:before {
content:"\f0f7"
}
.fa-hospital-o:before {
content:"\f0f8"
}
.fa-ambulance:before {
content:"\f0f9"
}
.fa-medkit:before {
content:"\f0fa"
}
.fa-fighter-jet:before {
content:"\f0fb"
}
.fa-beer:before {
content:"\f0fc"
}
.fa-h-square:before {
content:"\f0fd"
}
.fa-plus-square:before {
content:"\f0fe"
}
.fa-angle-double-left:before {
content:"\f100"
}
.fa-angle-double-right:before {
content:"\f101"
}
.fa-angle-double-up:before {
content:"\f102"
}
.fa-angle-double-down:before {
content:"\f103"
}
.fa-angle-left:before {
content:"\f104"
}
.fa-angle-right:before {
content:"\f105"
}
.fa-angle-up:before {
content:"\f106"
}
.fa-angle-down:before {
content:"\f107"
}
.fa-desktop:before {
content:"\f108"
}
.fa-laptop:before {
content:"\f109"
}
.fa-tablet:before {
content:"\f10a"
}
.fa-mobile-phone:before,
.fa-mobile:before {
content:"\f10b"
}
.fa-circle-o:before {
content:"\f10c"
}
.fa-quote-left:before {
content:"\f10d"
}
.fa-quote-right:before {
content:"\f10e"
}
.fa-spinner:before {
content:"\f110"
}
.fa-circle:before {
content:"\f111"
}
.fa-mail-reply:before,
.fa-reply:before {
content:"\f112"
}
.fa-github-alt:before {
content:"\f113"
}
.fa-folder-o:before {
content:"\f114"
}
.fa-folder-open-o:before {
content:"\f115"
}
.fa-smile-o:before {
content:"\f118"
}
.fa-frown-o:before {
content:"\f119"
}
.fa-meh-o:before {
content:"\f11a"
}
.fa-gamepad:before {
content:"\f11b"
}
.fa-keyboard-o:before {
content:"\f11c"
}
.fa-flag-o:before {
content:"\f11d"
}
.fa-flag-checkered:before {
content:"\f11e"
}
.fa-terminal:before {
content:"\f120"
}
.fa-code:before {
content:"\f121"
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
content:"\f122"
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
content:"\f123"
}
.fa-location-arrow:before {
content:"\f124"
}
.fa-crop:before {
content:"\f125"
}
.fa-code-fork:before {
content:"\f126"
}
.fa-unlink:before,
.fa-chain-broken:before {
content:"\f127"
}
.fa-question:before {
content:"\f128"
}
.fa-info:before {
content:"\f129"
}
.fa-exclamation:before {
content:"\f12a"
}
.fa-superscript:before {
content:"\f12b"
}
.fa-subscript:before {
content:"\f12c"
}
.fa-eraser:before {
content:"\f12d"
}
.fa-puzzle-piece:before {
content:"\f12e"
}
.fa-microphone:before {
content:"\f130"
}
.fa-microphone-slash:before {
content:"\f131"
}
.fa-shield:before {
content:"\f132"
}
.fa-calendar-o:before {
content:"\f133"
}
.fa-fire-extinguisher:before {
content:"\f134"
}
.fa-rocket:before {
content:"\f135"
}
.fa-maxcdn:before {
content:"\f136"
}
.fa-chevron-circle-left:before {
content:"\f137"
}
.fa-chevron-circle-right:before {
content:"\f138"
}
.fa-chevron-circle-up:before {
content:"\f139"
}
.fa-chevron-circle-down:before {
content:"\f13a"
}
.fa-html5:before {
content:"\f13b"
}
.fa-css3:before {
content:"\f13c"
}
.fa-anchor:before {
content:"\f13d"
}
.fa-unlock-alt:before {
content:"\f13e"
}
.fa-bullseye:before {
content:"\f140"
}
.fa-ellipsis-h:before {
content:"\f141"
}
.fa-ellipsis-v:before {
content:"\f142"
}
.fa-rss-square:before {
content:"\f143"
}
.fa-play-circle:before {
content:"\f144"
}
.fa-ticket:before {
content:"\f145"
}
.fa-minus-square:before {
content:"\f146"
}
.fa-minus-square-o:before {
content:"\f147"
}
.fa-level-up:before {
content:"\f148"
}
.fa-level-down:before {
content:"\f149"
}
.fa-check-square:before {
content:"\f14a"
}
.fa-pencil-square:before {
content:"\f14b"
}
.fa-external-link-square:before {
content:"\f14c"
}
.fa-share-square:before {
content:"\f14d"
}
.fa-compass:before {
content:"\f14e"
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
content:"\f150"
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
content:"\f151"
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
content:"\f152"
}
.fa-euro:before,
.fa-eur:before {
content:"\f153"
}
.fa-gbp:before {
content:"\f154"
}
.fa-dollar:before,
.fa-usd:before {
content:"\f155"
}
.fa-rupee:before,
.fa-inr:before {
content:"\f156"
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
content:"\f157"
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
content:"\f158"
}
.fa-won:before,
.fa-krw:before {
content:"\f159"
}
.fa-bitcoin:before,
.fa-btc:before {
content:"\f15a"
}
.fa-file:before {
content:"\f15b"
}
.fa-file-text:before {
content:"\f15c"
}
.fa-sort-alpha-asc:before {
content:"\f15d"
}
.fa-sort-alpha-desc:before {
content:"\f15e"
}
.fa-sort-amount-asc:before {
content:"\f160"
}
.fa-sort-amount-desc:before {
content:"\f161"
}
.fa-sort-numeric-asc:before {
content:"\f162"
}
.fa-sort-numeric-desc:before {
content:"\f163"
}
.fa-thumbs-up:before {
content:"\f164"
}
.fa-thumbs-down:before {
content:"\f165"
}
.fa-youtube-square:before {
content:"\f166"
}
.fa-youtube:before {
content:"\f167"
}
.fa-xing:before {
content:"\f168"
}
.fa-xing-square:before {
content:"\f169"
}
.fa-youtube-play:before {
content:"\f16a"
}
.fa-dropbox:before {
content:"\f16b"
}
.fa-stack-overflow:before {
content:"\f16c"
}
.fa-instagram:before {
content:"\f16d"
}
.fa-flickr:before {
content:"\f16e"
}
.fa-adn:before {
content:"\f170"
}
.fa-bitbucket:before {
content:"\f171"
}
.fa-bitbucket-square:before {
content:"\f172"
}
.fa-tumblr:before {
content:"\f173"
}
.fa-tumblr-square:before {
content:"\f174"
}
.fa-long-arrow-down:before {
content:"\f175"
}
.fa-long-arrow-up:before {
content:"\f176"
}
.fa-long-arrow-left:before {
content:"\f177"
}
.fa-long-arrow-right:before {
content:"\f178"
}
.fa-apple:before {
content:"\f179"
}
.fa-windows:before {
content:"\f17a"
}
.fa-android:before {
content:"\f17b"
}
.fa-linux:before {
content:"\f17c"
}
.fa-dribbble:before {
content:"\f17d"
}
.fa-skype:before {
content:"\f17e"
}
.fa-foursquare:before {
content:"\f180"
}
.fa-trello:before {
content:"\f181"
}
.fa-female:before {
content:"\f182"
}
.fa-male:before {
content:"\f183"
}
.fa-gittip:before,
.fa-gratipay:before {
content:"\f184"
}
.fa-sun-o:before {
content:"\f185"
}
.fa-moon-o:before {
content:"\f186"
}
.fa-archive:before {
content:"\f187"
}
.fa-bug:before {
content:"\f188"
}
.fa-vk:before {
content:"\f189"
}
.fa-weibo:before {
content:"\f18a"
}
.fa-renren:before {
content:"\f18b"
}
.fa-pagelines:before {
content:"\f18c"
}
.fa-stack-exchange:before {
content:"\f18d"
}
.fa-arrow-circle-o-right:before {
content:"\f18e"
}
.fa-arrow-circle-o-left:before {
content:"\f190"
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
content:"\f191"
}
.fa-dot-circle-o:before {
content:"\f192"
}
.fa-wheelchair:before {
content:"\f193"
}
.fa-vimeo-square:before {
content:"\f194"
}
.fa-turkish-lira:before,
.fa-try:before {
content:"\f195"
}
.fa-plus-square-o:before {
content:"\f196"
}
.fa-space-shuttle:before {
content:"\f197"
}
.fa-slack:before {
content:"\f198"
}
.fa-envelope-square:before {
content:"\f199"
}
.fa-wordpress:before {
content:"\f19a"
}
.fa-openid:before {
content:"\f19b"
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
content:"\f19c"
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
content:"\f19d"
}
.fa-yahoo:before {
content:"\f19e"
}
.fa-google:before {
content:"\f1a0"
}
.fa-reddit:before {
content:"\f1a1"
}
.fa-reddit-square:before {
content:"\f1a2"
}
.fa-stumbleupon-circle:before {
content:"\f1a3"
}
.fa-stumbleupon:before {
content:"\f1a4"
}
.fa-delicious:before {
content:"\f1a5"
}
.fa-digg:before {
content:"\f1a6"
}
.fa-pied-piper-pp:before {
content:"\f1a7"
}
.fa-pied-piper-alt:before {
content:"\f1a8"
}
.fa-drupal:before {
content:"\f1a9"
}
.fa-joomla:before {
content:"\f1aa"
}
.fa-language:before {
content:"\f1ab"
}
.fa-fax:before {
content:"\f1ac"
}
.fa-building:before {
content:"\f1ad"
}
.fa-child:before {
content:"\f1ae"
}
.fa-paw:before {
content:"\f1b0"
}
.fa-spoon:before {
content:"\f1b1"
}
.fa-cube:before {
content:"\f1b2"
}
.fa-cubes:before {
content:"\f1b3"
}
.fa-behance:before {
content:"\f1b4"
}
.fa-behance-square:before {
content:"\f1b5"
}
.fa-steam:before {
content:"\f1b6"
}
.fa-steam-square:before {
content:"\f1b7"
}
.fa-recycle:before {
content:"\f1b8"
}
.fa-automobile:before,
.fa-car:before {
content:"\f1b9"
}
.fa-cab:before,
.fa-taxi:before {
content:"\f1ba"
}
.fa-tree:before {
content:"\f1bb"
}
.fa-spotify:before {
content:"\f1bc"
}
.fa-deviantart:before {
content:"\f1bd"
}
.fa-soundcloud:before {
content:"\f1be"
}
.fa-database:before {
content:"\f1c0"
}
.fa-file-pdf-o:before {
content:"\f1c1"
}
.fa-file-word-o:before {
content:"\f1c2"
}
.fa-file-excel-o:before {
content:"\f1c3"
}
.fa-file-powerpoint-o:before {
content:"\f1c4"
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
content:"\f1c5"
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
content:"\f1c6"
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
content:"\f1c7"
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
content:"\f1c8"
}
.fa-file-code-o:before {
content:"\f1c9"
}
.fa-vine:before {
content:"\f1ca"
}
.fa-codepen:before {
content:"\f1cb"
}
.fa-jsfiddle:before {
content:"\f1cc"
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
content:"\f1cd"
}
.fa-circle-o-notch:before {
content:"\f1ce"
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
content:"\f1d0"
}
.fa-ge:before,
.fa-empire:before {
content:"\f1d1"
}
.fa-git-square:before {
content:"\f1d2"
}
.fa-git:before {
content:"\f1d3"
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
content:"\f1d4"
}
.fa-tencent-weibo:before {
content:"\f1d5"
}
.fa-qq:before {
content:"\f1d6"
}
.fa-wechat:before,
.fa-weixin:before {
content:"\f1d7"
}
.fa-send:before,
.fa-paper-plane:before {
content:"\f1d8"
}
.fa-send-o:before,
.fa-paper-plane-o:before {
content:"\f1d9"
}
.fa-history:before {
content:"\f1da"
}
.fa-circle-thin:before {
content:"\f1db"
}
.fa-header:before {
content:"\f1dc"
}
.fa-paragraph:before {
content:"\f1dd"
}
.fa-sliders:before {
content:"\f1de"
}
.fa-share-alt:before {
content:"\f1e0"
}
.fa-share-alt-square:before {
content:"\f1e1"
}
.fa-bomb:before {
content:"\f1e2"
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
content:"\f1e3"
}
.fa-tty:before {
content:"\f1e4"
}
.fa-binoculars:before {
content:"\f1e5"
}
.fa-plug:before {
content:"\f1e6"
}
.fa-slideshare:before {
content:"\f1e7"
}
.fa-twitch:before {
content:"\f1e8"
}
.fa-yelp:before {
content:"\f1e9"
}
.fa-newspaper-o:before {
content:"\f1ea"
}
.fa-wifi:before {
content:"\f1eb"
}
.fa-calculator:before {
content:"\f1ec"
}
.fa-paypal:before {
content:"\f1ed"
}
.fa-google-wallet:before {
content:"\f1ee"
}
.fa-cc-visa:before {
content:"\f1f0"
}
.fa-cc-mastercard:before {
content:"\f1f1"
}
.fa-cc-discover:before {
content:"\f1f2"
}
.fa-cc-amex:before {
content:"\f1f3"
}
.fa-cc-paypal:before {
content:"\f1f4"
}
.fa-cc-stripe:before {
content:"\f1f5"
}
.fa-bell-slash:before {
content:"\f1f6"
}
.fa-bell-slash-o:before {
content:"\f1f7"
}
.fa-trash:before {
content:"\f1f8"
}
.fa-copyright:before {
content:"\f1f9"
}
.fa-at:before {
content:"\f1fa"
}
.fa-eyedropper:before {
content:"\f1fb"
}
.fa-paint-brush:before {
content:"\f1fc"
}
.fa-birthday-cake:before {
content:"\f1fd"
}
.fa-area-chart:before {
content:"\f1fe"
}
.fa-pie-chart:before {
content:"\f200"
}
.fa-line-chart:before {
content:"\f201"
}
.fa-lastfm:before {
content:"\f202"
}
.fa-lastfm-square:before {
content:"\f203"
}
.fa-toggle-off:before {
content:"\f204"
}
.fa-toggle-on:before {
content:"\f205"
}
.fa-bicycle:before {
content:"\f206"
}
.fa-bus:before {
content:"\f207"
}
.fa-ioxhost:before {
content:"\f208"
}
.fa-angellist:before {
content:"\f209"
}
.fa-cc:before {
content:"\f20a"
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
content:"\f20b"
}
.fa-meanpath:before {
content:"\f20c"
}
.fa-buysellads:before {
content:"\f20d"
}
.fa-connectdevelop:before {
content:"\f20e"
}
.fa-dashcube:before {
content:"\f210"
}
.fa-forumbee:before {
content:"\f211"
}
.fa-leanpub:before {
content:"\f212"
}
.fa-sellsy:before {
content:"\f213"
}
.fa-shirtsinbulk:before {
content:"\f214"
}
.fa-simplybuilt:before {
content:"\f215"
}
.fa-skyatlas:before {
content:"\f216"
}
.fa-cart-plus:before {
content:"\f217"
}
.fa-cart-arrow-down:before {
content:"\f218"
}
.fa-diamond:before {
content:"\f219"
}
.fa-ship:before {
content:"\f21a"
}
.fa-user-secret:before {
content:"\f21b"
}
.fa-motorcycle:before {
content:"\f21c"
}
.fa-street-view:before {
content:"\f21d"
}
.fa-heartbeat:before {
content:"\f21e"
}
.fa-venus:before {
content:"\f221"
}
.fa-mars:before {
content:"\f222"
}
.fa-mercury:before {
content:"\f223"
}
.fa-intersex:before,
.fa-transgender:before {
content:"\f224"
}
.fa-transgender-alt:before {
content:"\f225"
}
.fa-venus-double:before {
content:"\f226"
}
.fa-mars-double:before {
content:"\f227"
}
.fa-venus-mars:before {
content:"\f228"
}
.fa-mars-stroke:before {
content:"\f229"
}
.fa-mars-stroke-v:before {
content:"\f22a"
}
.fa-mars-stroke-h:before {
content:"\f22b"
}
.fa-neuter:before {
content:"\f22c"
}
.fa-genderless:before {
content:"\f22d"
}
.fa-facebook-official:before {
content:"\f230"
}
.fa-pinterest-p:before {
content:"\f231"
}
.fa-whatsapp:before {
content:"\f232"
}
.fa-server:before {
content:"\f233"
}
.fa-user-plus:before {
content:"\f234"
}
.fa-user-times:before {
content:"\f235"
}
.fa-hotel:before,
.fa-bed:before {
content:"\f236"
}
.fa-viacoin:before {
content:"\f237"
}
.fa-train:before {
content:"\f238"
}
.fa-subway:before {
content:"\f239"
}
.fa-medium:before {
content:"\f23a"
}
.fa-yc:before,
.fa-y-combinator:before {
content:"\f23b"
}
.fa-optin-monster:before {
content:"\f23c"
}
.fa-opencart:before {
content:"\f23d"
}
.fa-expeditedssl:before {
content:"\f23e"
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
content:"\f240"
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
content:"\f241"
}
.fa-battery-2:before,
.fa-battery-half:before {
content:"\f242"
}
.fa-battery-1:before,
.fa-battery-quarter:before {
content:"\f243"
}
.fa-battery-0:before,
.fa-battery-empty:before {
content:"\f244"
}
.fa-mouse-pointer:before {
content:"\f245"
}
.fa-i-cursor:before {
content:"\f246"
}
.fa-object-group:before {
content:"\f247"
}
.fa-object-ungroup:before {
content:"\f248"
}
.fa-sticky-note:before {
content:"\f249"
}
.fa-sticky-note-o:before {
content:"\f24a"
}
.fa-cc-jcb:before {
content:"\f24b"
}
.fa-cc-diners-club:before {
content:"\f24c"
}
.fa-clone:before {
content:"\f24d"
}
.fa-balance-scale:before {
content:"\f24e"
}
.fa-hourglass-o:before {
content:"\f250"
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
content:"\f251"
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
content:"\f252"
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
content:"\f253"
}
.fa-hourglass:before {
content:"\f254"
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
content:"\f255"
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
content:"\f256"
}
.fa-hand-scissors-o:before {
content:"\f257"
}
.fa-hand-lizard-o:before {
content:"\f258"
}
.fa-hand-spock-o:before {
content:"\f259"
}
.fa-hand-pointer-o:before {
content:"\f25a"
}
.fa-hand-peace-o:before {
content:"\f25b"
}
.fa-trademark:before {
content:"\f25c"
}
.fa-registered:before {
content:"\f25d"
}
.fa-creative-commons:before {
content:"\f25e"
}
.fa-gg:before {
content:"\f260"
}
.fa-gg-circle:before {
content:"\f261"
}
.fa-tripadvisor:before {
content:"\f262"
}
.fa-odnoklassniki:before {
content:"\f263"
}
.fa-odnoklassniki-square:before {
content:"\f264"
}
.fa-get-pocket:before {
content:"\f265"
}
.fa-wikipedia-w:before {
content:"\f266"
}
.fa-safari:before {
content:"\f267"
}
.fa-chrome:before {
content:"\f268"
}
.fa-firefox:before {
content:"\f269"
}
.fa-opera:before {
content:"\f26a"
}
.fa-internet-explorer:before {
content:"\f26b"
}
.fa-tv:before,
.fa-television:before {
content:"\f26c"
}
.fa-contao:before {
content:"\f26d"
}
.fa-500px:before {
content:"\f26e"
}
.fa-amazon:before {
content:"\f270"
}
.fa-calendar-plus-o:before {
content:"\f271"
}
.fa-calendar-minus-o:before {
content:"\f272"
}
.fa-calendar-times-o:before {
content:"\f273"
}
.fa-calendar-check-o:before {
content:"\f274"
}
.fa-industry:before {
content:"\f275"
}
.fa-map-pin:before {
content:"\f276"
}
.fa-map-signs:before {
content:"\f277"
}
.fa-map-o:before {
content:"\f278"
}
.fa-map:before {
content:"\f279"
}
.fa-commenting:before {
content:"\f27a"
}
.fa-commenting-o:before {
content:"\f27b"
}
.fa-houzz:before {
content:"\f27c"
}
.fa-vimeo:before {
content:"\f27d"
}
.fa-black-tie:before {
content:"\f27e"
}
.fa-fonticons:before {
content:"\f280"
}
.fa-reddit-alien:before {
content:"\f281"
}
.fa-edge:before {
content:"\f282"
}
.fa-credit-card-alt:before {
content:"\f283"
}
.fa-codiepie:before {
content:"\f284"
}
.fa-modx:before {
content:"\f285"
}
.fa-fort-awesome:before {
content:"\f286"
}
.fa-usb:before {
content:"\f287"
}
.fa-product-hunt:before {
content:"\f288"
}
.fa-mixcloud:before {
content:"\f289"
}
.fa-scribd:before {
content:"\f28a"
}
.fa-pause-circle:before {
content:"\f28b"
}
.fa-pause-circle-o:before {
content:"\f28c"
}
.fa-stop-circle:before {
content:"\f28d"
}
.fa-stop-circle-o:before {
content:"\f28e"
}
.fa-shopping-bag:before {
content:"\f290"
}
.fa-shopping-basket:before {
content:"\f291"
}
.fa-hashtag:before {
content:"\f292"
}
.fa-bluetooth:before {
content:"\f293"
}
.fa-bluetooth-b:before {
content:"\f294"
}
.fa-percent:before {
content:"\f295"
}
.fa-gitlab:before {
content:"\f296"
}
.fa-wpbeginner:before {
content:"\f297"
}
.fa-wpforms:before {
content:"\f298"
}
.fa-envira:before {
content:"\f299"
}
.fa-universal-access:before {
content:"\f29a"
}
.fa-wheelchair-alt:before {
content:"\f29b"
}
.fa-question-circle-o:before {
content:"\f29c"
}
.fa-blind:before {
content:"\f29d"
}
.fa-audio-description:before {
content:"\f29e"
}
.fa-volume-control-phone:before {
content:"\f2a0"
}
.fa-braille:before {
content:"\f2a1"
}
.fa-assistive-listening-systems:before {
content:"\f2a2"
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
content:"\f2a3"
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
content:"\f2a4"
}
.fa-glide:before {
content:"\f2a5"
}
.fa-glide-g:before {
content:"\f2a6"
}
.fa-signing:before,
.fa-sign-language:before {
content:"\f2a7"
}
.fa-low-vision:before {
content:"\f2a8"
}
.fa-viadeo:before {
content:"\f2a9"
}
.fa-viadeo-square:before {
content:"\f2aa"
}
.fa-snapchat:before {
content:"\f2ab"
}
.fa-snapchat-ghost:before {
content:"\f2ac"
}
.fa-snapchat-square:before {
content:"\f2ad"
}
.fa-pied-piper:before {
content:"\f2ae"
}
.fa-first-order:before {
content:"\f2b0"
}
.fa-yoast:before {
content:"\f2b1"
}
.fa-themeisle:before {
content:"\f2b2"
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
content:"\f2b3"
}
.fa-fa:before,
.fa-font-awesome:before {
content:"\f2b4"
}
.fa-handshake-o:before {
content:"\f2b5"
}
.fa-envelope-open:before {
content:"\f2b6"
}
.fa-envelope-open-o:before {
content:"\f2b7"
}
.fa-linode:before {
content:"\f2b8"
}
.fa-address-book:before {
content:"\f2b9"
}
.fa-address-book-o:before {
content:"\f2ba"
}
.fa-vcard:before,
.fa-address-card:before {
content:"\f2bb"
}
.fa-vcard-o:before,
.fa-address-card-o:before {
content:"\f2bc"
}
.fa-user-circle:before {
content:"\f2bd"
}
.fa-user-circle-o:before {
content:"\f2be"
}
.fa-user-o:before {
content:"\f2c0"
}
.fa-id-badge:before {
content:"\f2c1"
}
.fa-drivers-license:before,
.fa-id-card:before {
content:"\f2c2"
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
content:"\f2c3"
}
.fa-quora:before {
content:"\f2c4"
}
.fa-free-code-camp:before {
content:"\f2c5"
}
.fa-telegram:before {
content:"\f2c6"
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
content:"\f2c7"
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
content:"\f2c8"
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
content:"\f2c9"
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
content:"\f2ca"
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
content:"\f2cb"
}
.fa-shower:before {
content:"\f2cc"
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
content:"\f2cd"
}
.fa-podcast:before {
content:"\f2ce"
}
.fa-window-maximize:before {
content:"\f2d0"
}
.fa-window-minimize:before {
content:"\f2d1"
}
.fa-window-restore:before {
content:"\f2d2"
}
.fa-times-rectangle:before,
.fa-window-close:before {
content:"\f2d3"
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
content:"\f2d4"
}
.fa-bandcamp:before {
content:"\f2d5"
}
.fa-grav:before {
content:"\f2d6"
}
.fa-etsy:before {
content:"\f2d7"
}
.fa-imdb:before {
content:"\f2d8"
}
.fa-ravelry:before {
content:"\f2d9"
}
.fa-eercast:before {
content:"\f2da"
}
.fa-microchip:before {
content:"\f2db"
}
.fa-snowflake-o:before {
content:"\f2dc"
}
.fa-superpowers:before {
content:"\f2dd"
}
.fa-wpexplorer:before {
content:"\f2de"
}
.fa-meetup:before {
content:"\f2e0"
}
.sr-only {
position:absolute;
width:1px;
height:1px;
padding:0;
margin:-1px;
overflow:hidden;
clip:rect(0,0,0,0);
border:0
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
position:static;
width:auto;
height:auto;
margin:0;
overflow:visible;
clip:auto
}
@charset "UTF-8";
.select2-result-repository {
padding-top:4px;
padding-bottom:3px
}
.select2-result-repository__avatar {
float:left;
width:60px;
margin-right:10px
}
.select2-result-repository__avatar img {
width:100%;
height:auto;
border-radius:2px
}
.select2-result-repository__meta {
margin-left:70px
}
.select2-result-repository__title {
color:black;
font-weight:700;
word-wrap:break-word;
line-height:1.1;
margin-bottom:4px
}
.select2-result-repository__forks,
.select2-result-repository__stargazers {
margin-right:1em
}
.select2-result-repository__forks,
.select2-result-repository__stargazers,
.select2-result-repository__watchers {
display:inline-block;
color:#aaa;
font-size:11px
}
.select2-result-repository__description {
font-size:13px;
color:#777;
margin-top:4px
}
.select2-results__option--highlighted .select2-result-repository__title {
color:white
}
.select2-results__option--highlighted .select2-result-repository__forks,
.select2-results__option--highlighted .select2-result-repository__stargazers,
.select2-results__option--highlighted .select2-result-repository__description,
.select2-results__option--highlighted .select2-result-repository__watchers {
color:#c6dcef
}
.s2-docs-sidebar.affix {
position:static
}
@media (min-width:768px) {
.s2-docs-sidebar {
padding-left:20px
}
}
.s2-docs-sidenav {
margin-top:20px;
margin-bottom:20px
}
.s2-docs-sidebar .nav>li>a {
margin-left:-1px;
display:block;
padding:4px 20px;
font-size:13px;
font-weight:500;
color:#767676;
border-left:1px solid transparent;
transition:color .2s,border-color .2s
}
.s2-docs-sidebar .nav>li>a code {
background-color:inherit;
color:inherit
}
.s2-docs-sidebar .nav>li>a:hover,
.s2-docs-sidebar .nav>li>a:focus {
color:#428BCA;
text-decoration:none;
background-color:transparent;
border-left-color:#428BCA
}
.s2-docs-sidebar .nav>.active>a,
.s2-docs-sidebar .nav>.active:hover>a,
.s2-docs-sidebar .nav>.active:focus>a {
padding-left:19px;
font-weight:700;
color:#428BCA;
background-color:transparent;
border-left:2px solid #428BCA
}
.s2-docs-sidebar .nav .nav {
display:none;
padding-bottom:10px
}
.s2-docs-sidebar .nav .nav>li>a {
padding-top:1px;
padding-bottom:1px;
padding-left:30px;
font-size:12px;
font-weight:400
}
.s2-docs-sidebar .nav .nav>li>a:hover,
.s2-docs-sidebar .nav .nav>li>a:focus {
padding-left:30px
}
.s2-docs-sidebar .nav .nav>.active>a,
.s2-docs-sidebar .nav .nav>.active:hover>a,
.s2-docs-sidebar .nav .nav>.active:focus>a {
padding-left:29px;
font-weight:400
}
@media (min-width:992px) {
.s2-docs-sidebar .s2-docs-sidenav {
padding-top:40px;
transition:border-color .2s;
border-left:1px solid transparent
}
.s2-docs-sidebar.affix .s2-docs-sidenav {
border-left-color:#eee
}
.s2-docs-sidebar .nav>.active>ul {
display:block
}
.s2-docs-sidebar.affix,
.s2-docs-sidebar.affix-bottom {
width:213px
}
.s2-docs-sidebar.affix {
position:fixed;
top:0
}
.s2-docs-sidebar.affix-bottom {
position:absolute
}
.s2-docs-sidebar.affix-bottom .s2-docs-sidenav,
.s2-docs-sidebar.affix .s2-docs-sidenav {
margin-top:0;
margin-bottom:0
}
}
@media (min-width:1200px) {
.s2-docs-sidebar.affix-bottom,
.s2-docs-sidebar.affix {
width:263px
}
}
.back-to-top {
display:none;
padding:4px 10px;
margin-top:10px;
margin-left:10px;
font-size:12px;
font-weight:400;
color:#999
}
.back-to-top:hover {
color:#428BCA;
text-decoration:none
}
@media (min-width:768px) {
.back-to-top {
display:block
}
}
.navbar-toggle {
border:none;
background:transparent!important
}
.navbar-toggle:hover {
background:transparent!important
}
.navbar-toggle .icon-bar {
width:22px;
transition:all 0.2s
}
.navbar-toggle .top-bar {
transform:rotate(45deg);
transform-origin:10% 10%
}
.navbar-toggle .middle-bar {
opacity:0
}
.navbar-toggle .bottom-bar {
transform:rotate(-45deg);
transform-origin:10% 90%
}
.navbar-toggle.collapsed .top-bar {
transform:rotate(0)
}
.navbar-toggle.collapsed .middle-bar {
opacity:1
}
.navbar-toggle.collapsed .bottom-bar {
transform:rotate(0)
}
h2 code,
h3 code,
h4 code {
background-color:inherit
}
pre.prettyprint {
padding:9px 14px;
margin-bottom:14px;
background-color:#f7f7f9;
border:1px solid #e1e1e8
}
.s2-docs-featurette {
color:#777;
padding:15px 0;
text-align:center
}
.s2-docs-featurette h4 {
margin:30px 0 15px
}
.s2-docs-featurette .fa {
font-size:28px;
color:#777
}
.s2-docs-container {
line-height:1.6
}
section {
margin-bottom:40px
}
.page-header {
padding-bottom:19px;
margin-bottom:29px
}
.s2-docs-nav {
margin-bottom:0;
border-color:#eee;
background-color:#f6f6f6
}
.s2-docs-nav .navbar-brand {
font-weight:500
}
.s2-docs-nav .navbar-brand>img {
display:inline;
margin-right:4px
}
.s2-docs-nav .navbar-nav>.active>a,
.s2-docs-nav .navbar-nav>.active>a:hover,
.s2-docs-nav .navbar-nav>.active>a:focus {
background-color:#f0f0f0;
color:#000
}
@media (min-width:768px) {
.s2-docs-nav .navbar-nav>li>.dropdown-menu:before {
position:absolute;
top:-21px;
left:24px;
display:block;
width:0;
height:0;
border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,.1);
border-style:solid;
border-width:10px;
content:""
}
.s2-docs-nav .navbar-nav>li>.dropdown-menu:after {
position:absolute;
top:-20px;
left:24px;
display:block;
width:0;
height:0;
border-color:rgba(0,0,0,0) rgba(0,0,0,0) #FFF;
border-style:solid;
border-width:10px;
content:''
}
.s2-docs-nav .navbar-nav .dropdown-menu {
border-radius:4px;
border-color:#ddd;
margin-top:-1px
}
}
.s2-docs-footer {
border-top:1px solid #eee;
color:#767676;
padding-top:40px;
padding-bottom:40px;
margin-top:100px;
text-align:center
}
.s2-docs-footer-links {
padding-left:0;
margin-top:20px
}
.s2-docs-footer-links li {
display:inline;
padding:0 2px
}
.s2-docs-footer-links li:after {
content:"·";
padding-left:8px
}
.s2-docs-footer-links li:first-child {
padding-left:0
}
.s2-docs-footer-links li:last-child:after {
content:"";
padding-left:0
}
@media (min-width:768px) {
.s2-docs-footer p {
margin-bottom:0
}
}
.alert {
background:#fff;
border:1px solid #eee;
border-left-width:5px;
border-radius:3px;
color:#333;
margin:20px 0;
padding:20px
}
.alert h4 {
font-size:18px;
margin-top:0;
margin-bottom:5px
}
.alert-danger {
border-left-color:#ce4844
}
.alert-danger h4 {
color:#ce4844
}
.alert-info {
border-left-color:#1b809e
}
.alert-info h4 {
color:#1b809e
}
.alert-warning {
border-left-color:#aa6708
}
.alert-warning h4 {
color:#aa6708
}
.s2-docs-home .jumbotron {
margin-bottom:0;
color:#000
}
.s2-docs-home .jumbotron h1 {
color:#000;
margin-top:20px
}
.s2-docs-home .lead {
text-align:center;
max-width:800px;
margin:0 auto 40px
}
.s2-docs-home .notice-previous {
background:#f6f6f6;
color:#666;
border-bottom:1px solid #eee;
padding:15px 20px
}
.s2-docs-home .half-rule {
width:100px;
margin:40px auto
}
.s2-example {
position:relative;
padding:45px 15px 15px;
margin:0 -15px 15px;
background-color:#fafafa;
box-shadow:inset 0 3px 6px rgba(0,0,0,.05);
border-color:#e5e5e5 #eee #eee;
border-style:solid;
border-width:1px 0
}
.s2-example:after {
content:"Example";
position:absolute;
top:15px;
left:15px;
font-size:12px;
font-weight:700;
color:#bbb;
text-transform:uppercase;
letter-spacing:1px
}
@media (min-width:768px) {
.s2-example {
margin-left:0;
margin-right:0;
background-color:#fff;
border-width:1px;
border-color:#eee;
border-radius:4px 4px 0 0;
box-shadow:none
}
}
.s2-event-log {
background:#002451;
color:white;
font-family:Menlo,'Bitstream Vera Sans Mono','DejaVu Sans Mono',Monaco,Consolas,monospace;
margin:0 -15px 15px;
padding:45px 15px 15px;
position:relative
}
.s2-event-log:after {
content:"Event Log";
position:absolute;
top:15px;
left:15px;
font-size:12px;
font-weight:700;
color:#BBB;
text-transform:uppercase;
letter-spacing:1px
}
@media (min-width:768px) {
.s2-event-log {
margin-left:0;
margin-right:0;
margin-top:-15px;
border-width:1px;
border-color:#eee;
box-shadow:none
}
}
.s2-example+pre,
.s2-example+figure,
.s2-event-log+pre {
margin:-15px -15px 15px;
border-radius:0;
border-width:0 0 1px
}
@media (min-width:768px) {
.s2-example+pre,
.s2-example+figure,
.s2-event-log+pre {
margin-top:-16px;
margin-left:0;
margin-right:0;
border-width:1px;
border-bottom-left-radius:4px;
border-bottom-right-radius:4px
}
}
.s2-example+.s2-event-log {
margin-top:-15px
}
.s2-docs-social {
margin-bottom:20px;
text-align:center
}
.s2-docs-social-buttons {
display:inline-block;
padding-left:0;
margin-bottom:0;
list-style:none
}
.s2-docs-social-buttons li {
display:inline-block;
padding:5px 8px;
line-height:1
}
.s2-docs-social-buttons .twitter-follow-button {
width:225px!important
}
.s2-docs-social-buttons .twitter-share-button {
width:98px!important
}
.github-btn {
overflow:hidden;
border:0
}
.btn-outline-inverse {
color:#428BCA;
background-color:transparent;
border-color:#428BCA;
padding:15px 30px;
font-size:20px;
transition:all .1s ease-in-out
}
.btn-outline-inverse:hover {
color:#fff;
border-color:#428BCA;
background-color:#428BCA
}
.btn-toolbar {
margin-bottom:20px
}
.jumbotron {
background-color:#F6F6F6;
border-bottom:1px solid #eee;
color:#777;
padding-left:0;
padding-right:0
}
.jumbotron h1 {
color:#777;
font-size:36px;
margin-top:10px
}
.jumbotron .version {
color:#999;
font-size:14px;
font-weight:400;
margin-bottom:30px
}
.com {
color:#999
}
.lit {
color:#195f91
}
.pun,
.opn,
.clo {
color:#93a1a1
}
.fun {
color:#dc322f
}
.str,
.atv {
color:#C7254E
}
.kwd,
.prettyprint .tag {
color:#2F6F9F
}
.typ,
.atn,
.dec,
.var {
color:#428BCA
}
.pln {
color:#333
}
.prettyprint {
padding:9px 14px;
margin-bottom:20px;
margin-top:20px;
border:1px solid #eee
}
.prettyprint.linenums {
-webkit-box-shadow:inset 40px 0 0 #fbfbfb,inset 41px 0 0 #f6f6f6;
-moz-box-shadow:inset 40px 0 0 #fbfbfb,inset 41px 0 0 #f6f6f6;
box-shadow:inset 40px 0 0 #fbfbfb,inset 41px 0 0 #f6f6f6
}
ol.linenums {
margin:0 0 0 -12px
}
ol.linenums li {
padding-left:12px;
color:#bebebe;
line-height:18px
}
.highlight {
background:#fff
}
.highlight .nx {
color:#333
}
.highlight .k,
.highlight .o {
font-weight:700
}
.highlight .na {
color:#428BCA
}
.highlight .s,
.highlight .s1,
.highlight .s2,
.highlight .sb,
.highlight .sc,
.highlight .sd,
.highlight .se,
.highlight .sh,
.highlight .si,
.highlight .sx {
color:#C7254E
}
.highlight .m,
.highlight .mf,
.highlight mh,
.highlight .mi,
.highlight .mo {
color:#195f91
}
.highlight .p {
color:#93a1a1
}
.highlight .nt {
color:#2F6F9F
}
.highlight .c {
color:#999;
font-style:italic
}
.highlight .err {
background-color:#e3d2d2;
color:#a61717
}
.highlight .gr {
color:#a00
}
.highlight pre {
border:none;
margin:0
}
.highlight>pre {
border:1px solid #eee;
padding:0;
margin-bottom:14px
}
.highlight .lineno {
background-color:#fbfbfb;
color:#bebebe;
-ms-user-select:none;
-moz-user-select:none;
-webkit-user-select:none
}
.highlight .cm {
color:#998;
font-style:italic
}
.highlight .cp {
color:#999;
font-weight:700
}
.highlight .c1 {
color:#998;
font-style:italic
}
.highlight .cs {
color:#999;
font-weight:700;
font-style:italic
}
.highlight .gd {
color:#000;
background-color:#fdd
}
.highlight .gd .x {
color:#000;
background-color:#faa
}
.highlight .ge {
font-style:italic
}
.highlight .gh {
color:#999
}
.highlight .gi {
color:#000;
background-color:#dfd
}
.highlight .gi .x {
color:#000;
background-color:#afa
}
.highlight .go {
color:#888
}
.highlight .gp {
color:#555
}
.highlight .gs {
font-weight:700
}
.highlight .gu {
color:#aaa
}
.highlight .gt {
color:#a00
}
.highlight .kc {
font-weight:700
}
.highlight .kd {
font-weight:700
}
.highlight .kp {
font-weight:700
}
.highlight .kr {
font-weight:700
}
.highlight .kt {
color:#458;
font-weight:700
}
.highlight .nb {
color:#0086B3
}
.highlight .nc {
color:#458;
font-weight:700
}
.highlight .no {
color:#008080
}
.highlight .ni {
color:purple
}
.highlight .ne {
color:#900;
font-weight:700
}
.highlight .nf {
color:#900;
font-weight:700
}
.highlight .nn {
color:#555
}
.highlight .nv {
color:#008080
}
.highlight .ow {
font-weight:700
}
.highlight .w {
color:#bbb
}
.highlight .sr {
color:#009926
}
.highlight .ss {
color:#990073
}
.highlight .bp {
color:#999
}
.highlight .vc {
color:#008080
}
.highlight .vg {
color:#008080
}
.highlight .vi {
color:#008080
}
.highlight .il {
color:#099
}
h1[id] {
padding-top:20px;
margin-top:0
}
.logo-title {
color:#fff;
font-size:30px;
text-transform:uppercase;
padding-top:10px;
vertical-align:middle;
font-weight:700;
font-family:"Montserrat","Helvetica Neue","Helvetica","Arial",sans-serif;
border-bottom:2px solid #000
}
.logo-image {
vertical-align:middle
}
.s2-docs-featurette {
padding-top:20px;
text-align:center
}
.s2-docs-featurette [class*='size-'] h4 {
font-size:1.5rem
}
.s2-docs-featurette [class*='size-'] p {
padding:0 30px;
font-size:1rem!important
}
.form-control {
width:100%;
display:block
}
img.img-flag {
margin:0!important;
display:inherit!important;
height:15px;
width:18px
}
input.select2-search__field {
margin-bottom:0;
line-height:inherit
}
.notices {
padding:1px 1px 1px 30px;
margin:15px 0
}
.notices.yellow {
border-left:10px solid #f0ad4e;
background:#fcf8f2;
color:#df8a13
}
.notices.red {
border-left:10px solid #d9534f;
background:#fdf7f7;
color:#b52b27
}
.notices.blue {
border-left:10px solid #5bc0de;
background:#f4f8fa;
color:#28a1c5
}
.notices.green {
border-left:10px solid #5cb85c;
background:#f1f9f1;
color:#3d8b3d
}
#breadcrumbs {
height:3rem;
line-height:3rem;
padding-left:3rem
}
#breadcrumbs span {
display:inline-block;
padding:0 1rem
}
#breadcrumbs span:first-child {
padding-left:0
}
#breadcrumbs i {
display:inline-block;
width:20px;
text-align:center
}
.hljs {
display:block;
overflow-x:auto;
color:#4d4d4c;
padding:.5em
}
.hljs-comment,
.hljs-title {
color:#8e908c
}
.hljs-variable,
.hljs-attribute,
.hljs-tag,
.hljs-regexp,
.hljs-strong,
.hljs-bullet {
color:#c82829
}
.hljs-number,
.hljs-preprocessor,
.hljs-pragma,
.hljs-built_in,
.hljs-literal,
.hljs-params,
.hljs-constant,
.hljs-emphasis {
color:#f5871f
}
.hljs-string,
.hljs-value,
.hljs-inheritance,
.hljs-header {
color:#718c00
}
.hljs-symbol,
.hljs-link_label {
color:#3e999f
}
.hljs-function {
color:#4271ae
}
.hljs-keyword,
.hljs-link_url {
color:#8959a8
}
@media all {
.featherlight {
display:none;
position:fixed;
top:0;
right:0;
bottom:0;
left:0;
z-index:2147483647;
text-align:center;
white-space:nowrap;
cursor:pointer;
background:#333;
background:rgba(0,0,0,0)
}
.featherlight:last-of-type {
background:rgba(0,0,0,.8)
}
.featherlight:before {
content:'';
display:inline-block;
height:100%;
vertical-align:middle;
margin-right:-.25em
}
.featherlight .featherlight-content {
position:relative;
text-align:left;
vertical-align:middle;
display:inline-block;
overflow:auto;
padding:25px 25px 0;
border-bottom:25px solid transparent;
min-width:30%;
margin-left:5%;
margin-right:5%;
max-height:95%;
background:#fff;
cursor:auto;
white-space:normal
}
.featherlight .featherlight-inner {
display:block
}
.featherlight .featherlight-close-icon {
position:absolute;
z-index:9999;
top:0;
right:0;
line-height:25px;
width:25px;
cursor:pointer;
text-align:center;
font:Arial,sans-serif;
background:#fff;
background:rgba(255,255,255,.3);
color:#000
}
.featherlight .featherlight-image {
width:100%
}
.featherlight-iframe .featherlight-content {
border-bottom:0;
padding:0
}
.featherlight iframe {
border:0
}
}
@media only screen and (max-width:1024px) {
.featherlight .featherlight-content {
margin-left:10px;
margin-right:10px;
max-height:98%;
padding:10px 10px 0;
border-bottom:10px solid transparent
}
}
.select2-container {
box-sizing:border-box;
display:inline-block;
margin:0;
position:relative;
vertical-align:middle
}
.select2-container .select2-selection--single {
box-sizing:border-box;
cursor:pointer;
display:block;
height:28px;
user-select:none;
-webkit-user-select:none
}
.select2-container .select2-selection--single .select2-selection__rendered {
display:block;
padding-left:8px;
padding-right:20px;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap
}
.select2-container .select2-selection--single .select2-selection__clear {
position:relative
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
padding-right:8px;
padding-left:20px
}
.select2-container .select2-selection--multiple {
box-sizing:border-box;
cursor:pointer;
display:block;
min-height:32px;
user-select:none;
-webkit-user-select:none
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
display:inline-block;
overflow:hidden;
padding-left:8px;
text-overflow:ellipsis;
white-space:nowrap
}
.select2-container .select2-search--inline {
float:left
}
.select2-container .select2-search--inline .select2-search__field {
box-sizing:border-box;
border:none;
font-size:100%;
margin-top:5px;
padding:0
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
-webkit-appearance:none
}
.select2-dropdown {
background-color:white;
border:1px solid #aaa;
border-radius:4px;
box-sizing:border-box;
display:block;
position:absolute;
left:-100000px;
width:100%;
z-index:1051
}
.select2-results {
display:block
}
.select2-results__options {
list-style:none;
margin:0;
padding:0
}
.select2-results__option {
padding:6px;
user-select:none;
-webkit-user-select:none
}
.select2-results__option[aria-selected] {
cursor:pointer
}
.select2-container--open .select2-dropdown {
left:0
}
.select2-container--open .select2-dropdown--above {
border-bottom:none;
border-bottom-left-radius:0;
border-bottom-right-radius:0
}
.select2-container--open .select2-dropdown--below {
border-top:none;
border-top-left-radius:0;
border-top-right-radius:0
}
.select2-search--dropdown {
display:block;
padding:4px
}
.select2-search--dropdown .select2-search__field {
padding:4px;
width:100%;
box-sizing:border-box
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
-webkit-appearance:none
}
.select2-search--dropdown.select2-search--hide {
display:none
}
.select2-close-mask {
border:0;
margin:0;
padding:0;
display:block;
position:fixed;
left:0;
top:0;
min-height:100%;
min-width:100%;
height:auto;
width:auto;
opacity:0;
z-index:99;
background-color:#fff;
filter:alpha(opacity=0)
}
.select2-hidden-accessible {
border:0!important;
clip:rect(0 0 0 0)!important;
-webkit-clip-path:inset(50%)!important;
clip-path:inset(50%)!important;
height:1px!important;
overflow:hidden!important;
padding:0!important;
position:absolute!important;
width:1px!important;
white-space:nowrap!important
}
.select2-container--default .select2-selection--single {
background-color:#fff;
border:1px solid #aaa;
border-radius:4px
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
color:#444;
line-height:28px
}
.select2-container--default .select2-selection--single .select2-selection__clear {
cursor:pointer;
float:right;
font-weight:700
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
color:#999
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
height:26px;
position:absolute;
top:1px;
right:1px;
width:20px
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
border-color:#888 transparent transparent transparent;
border-style:solid;
border-width:5px 4px 0 4px;
height:0;
left:50%;
margin-left:-4px;
margin-top:-2px;
position:absolute;
top:50%;
width:0
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
float:left
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
left:1px;
right:auto
}
.select2-container--default.select2-container--disabled .select2-selection--single {
background-color:#eee;
cursor:default
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
display:none
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
border-color:transparent transparent #888 transparent;
border-width:0 4px 5px 4px
}
.select2-container--default .select2-selection--multiple {
background-color:white;
border:1px solid #aaa;
border-radius:4px;
cursor:text
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
box-sizing:border-box;
list-style:none;
margin:0;
padding:0 5px;
width:100%
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
list-style:none
}
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
color:#999;
margin-top:5px;
float:left
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
cursor:pointer;
float:right;
font-weight:700;
margin-top:5px;
margin-right:10px
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color:#e4e4e4;
border:1px solid #aaa;
border-radius:4px;
cursor:default;
float:left;
margin-right:5px;
margin-top:5px;
padding:0 5px
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color:#999;
cursor:pointer;
display:inline-block;
font-weight:700;
margin-right:2px
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color:#333
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
float:right
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
margin-left:5px;
margin-right:auto
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
margin-left:2px;
margin-right:auto
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
border:solid black 1px;
outline:0
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
background-color:#eee;
cursor:default
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
display:none
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
border-top-left-radius:0;
border-top-right-radius:0
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
border-bottom-left-radius:0;
border-bottom-right-radius:0
}
.select2-container--default .select2-search--dropdown .select2-search__field {
border:1px solid #aaa
}
.select2-container--default .select2-search--inline .select2-search__field {
background:transparent;
border:none;
outline:0;
box-shadow:none;
-webkit-appearance:textfield
}
.select2-container--default .select2-results>.select2-results__options {
max-height:200px;
overflow-y:auto
}
.select2-container--default .select2-results__option[role=group] {
padding:0
}
.select2-container--default .select2-results__option[aria-disabled=true] {
color:#999
}
.select2-container--default .select2-results__option[aria-selected=true] {
background-color:#ddd
}
.select2-container--default .select2-results__option .select2-results__option {
padding-left:1em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
padding-left:0
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
margin-left:-1em;
padding-left:2em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left:-2em;
padding-left:3em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left:-3em;
padding-left:4em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left:-4em;
padding-left:5em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left:-5em;
padding-left:6em
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
background-color:#5897fb;
color:white
}
.select2-container--default .select2-results__group {
cursor:default;
display:block;
padding:6px
}
.select2-container--classic .select2-selection--single {
background-color:#f7f7f7;
border:1px solid #aaa;
border-radius:4px;
outline:0;
background-image:-webkit-linear-gradient(top,#fff 50%,#eee 100%);
background-image:-o-linear-gradient(top,#fff 50%,#eee 100%);
background-image:linear-gradient(to bottom,#fff 50%,#eee 100%);
background-repeat:repeat-x;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF',endColorstr='#FFEEEEEE',GradientType=0)
}
.select2-container--classic .select2-selection--single:focus {
border:1px solid #5897fb
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
color:#444;
line-height:28px
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
cursor:pointer;
float:right;
font-weight:700;
margin-right:10px
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
color:#999
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
background-color:#ddd;
border:none;
border-left:1px solid #aaa;
border-top-right-radius:4px;
border-bottom-right-radius:4px;
height:26px;
position:absolute;
top:1px;
right:1px;
width:20px;
background-image:-webkit-linear-gradient(top,#eee 50%,#ccc 100%);
background-image:-o-linear-gradient(top,#eee 50%,#ccc 100%);
background-image:linear-gradient(to bottom,#eee 50%,#ccc 100%);
background-repeat:repeat-x;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE',endColorstr='#FFCCCCCC',GradientType=0)
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
border-color:#888 transparent transparent transparent;
border-style:solid;
border-width:5px 4px 0 4px;
height:0;
left:50%;
margin-left:-4px;
margin-top:-2px;
position:absolute;
top:50%;
width:0
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
float:left
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
border:none;
border-right:1px solid #aaa;
border-radius:0;
border-top-left-radius:4px;
border-bottom-left-radius:4px;
left:1px;
right:auto
}
.select2-container--classic.select2-container--open .select2-selection--single {
border:1px solid #5897fb
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
background:transparent;
border:none
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
border-color:transparent transparent #888 transparent;
border-width:0 4px 5px 4px
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
border-top:none;
border-top-left-radius:0;
border-top-right-radius:0;
background-image:-webkit-linear-gradient(top,#fff 0%,#eee 50%);
background-image:-o-linear-gradient(top,#fff 0%,#eee 50%);
background-image:linear-gradient(to bottom,#fff 0%,#eee 50%);
background-repeat:repeat-x;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF',endColorstr='#FFEEEEEE',GradientType=0)
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
border-bottom:none;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
background-image:-webkit-linear-gradient(top,#eee 50%,#fff 100%);
background-image:-o-linear-gradient(top,#eee 50%,#fff 100%);
background-image:linear-gradient(to bottom,#eee 50%,#fff 100%);
background-repeat:repeat-x;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE',endColorstr='#FFFFFFFF',GradientType=0)
}
.select2-container--classic .select2-selection--multiple {
background-color:white;
border:1px solid #aaa;
border-radius:4px;
cursor:text;
outline:0
}
.select2-container--classic .select2-selection--multiple:focus {
border:1px solid #5897fb
}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
list-style:none;
margin:0;
padding:0 5px
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
display:none
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
background-color:#e4e4e4;
border:1px solid #aaa;
border-radius:4px;
cursor:default;
float:left;
margin-right:5px;
margin-top:5px;
padding:0 5px
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
color:#888;
cursor:pointer;
display:inline-block;
font-weight:700;
margin-right:2px
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
color:#555
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
float:right;
margin-left:5px;
margin-right:auto
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
margin-left:2px;
margin-right:auto
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
border:1px solid #5897fb
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
border-top:none;
border-top-left-radius:0;
border-top-right-radius:0
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
border-bottom:none;
border-bottom-left-radius:0;
border-bottom-right-radius:0
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
border:1px solid #aaa;
outline:0
}
.select2-container--classic .select2-search--inline .select2-search__field {
outline:0;
box-shadow:none
}
.select2-container--classic .select2-dropdown {
background-color:#fff;
border:1px solid transparent
}
.select2-container--classic .select2-dropdown--above {
border-bottom:none
}
.select2-container--classic .select2-dropdown--below {
border-top:none
}
.select2-container--classic .select2-results>.select2-results__options {
max-height:200px;
overflow-y:auto
}
.select2-container--classic .select2-results__option[role=group] {
padding:0
}
.select2-container--classic .select2-results__option[aria-disabled=true] {
color:grey
}
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
background-color:#3875d7;
color:#fff
}
.select2-container--classic .select2-results__group {
cursor:default;
display:block;
padding:6px
}
.select2-container--classic.select2-container--open .select2-dropdown {
border-color:#5897fb
} | 0.360489 | 0.083217 |
@charset "UTF-8";
/* VARIÁVEIS */
/****** MIXINS DE TELA ******/
/****** ESTRUTURA DO HTML *****/
html, body {
margin: 0;
padding: 0;
}
.layout {
background: #ebebeb;
display: grid;
font-family: "Courier New", Courier, monospace;
grid-template-areas: "titulo" "grid" "autoria";
grid-template-columns: auto;
grid-template-rows: 60px auto 40px;
}
.titulo {
grid-area: titulo;
background-image: radial-gradient(#ebebeb, #dddddd, #909090, #151515);
display: flex;
align-items: center;
}
h1 {
margin-left: auto;
margin-right: auto;
}
main {
display: block;
}
.grid {
grid-area: grid;
background-image: linear-gradient(#ebebeb, #909090, #444444);
height: calc(100vh - 100px);
}
.color {
align-items: top;
display: flex;
justify-content: center;
width: 100%;
font-weight: 600;
font-size: 16px;
display: grid;
margin: 10px 0;
grid-gap: 10px;
justify-content: center;
text-align: center;
grid-template-columns: repeat(8, 11.5%);
grid-template-rows: repeat(6, 15%);
}
.bloco {
border-bottom: 1px dashed #ebebeb;
grid-area: 3/1/3/9;
margin-bottom: -5px;
}
.caixa {
grid-template-areas: "card_nome" "card_hexa";
grid-template-columns: 100%;
grid-template-rows: 40% 60%;
height: 70px;
padding: 0 5px;
}
.card_nome {
display: grid;
grid-area: card_nome;
width: 100%;
font-size: 14px;
font-weight: bolder;
padding-top: 1px;
}
.card_hexa {
grid-area: card_hexa;
width: 100%;
font-size: 14px;
text-decoration-color: #505050;
font-weight: 500;
}
.clara {
color: #444444;
border: 1px solid #909090;
}
.default {
color: #151515;
border: 1px solid #dddddd;
}
.escura {
color: #909090;
border: 1px solid #dddddd;
}
.autoria {
grid-area: autoria;
background: #151515;
color: #ebebeb;
font-size: 12px;
text-align: center;
}
h5 {
font-family: "Edwardian Script ITC";
font-size: 18px;
padding-top: 0.2rem;
}
/****** DEFININDO A PALETA DE CORES *****/
/* LAYOUT em uma linha:
grid-area: start-row / start-column / end-row / end-column;
*/
/* Linha 1 */
.branco {
background: #ebebeb;
grid-area: 1/1/2/2;
}
.cinza_claro {
background-color: #dddddd;
grid-area: 1/2/2/3;
}
.pele_clara {
background: #d7b2aa;
grid-area: 1/3/2/4;
}
.marrom_claro {
background: #bba092;
grid-area: 1/4/2/5;
}
.laranja_claro {
background: #f3ab93;
grid-area: 1/5/2/6;
}
.amarelo_claro {
background: #ffff9f;
grid-area: 1/6/2/7;
}
.vermelho_claro {
background-color: #e18181;
grid-area: 1/7/2/8;
}
.roxo_claro {
background: #f9d6ff;
grid-area: 1/8/2/9;
}
/* Linha 2 */
.branco_preto {
background: #808080;
grid-area: 2/1/3/2;
}
.cinza {
background: #909090;
grid-area: 2/2/3/3;
}
.pele {
background: #af6453;
grid-area: 2/3/3/4;
}
.marrom {
background: #7f5f4f;
grid-area: 2/4/3/5;
}
.laranja {
background: #e96337;
grid-area: 2/5/3/6;
}
.amarelo {
background: #ecec00;
grid-area: 2/6/3/7;
}
.vermelho {
background: #cc3030;
grid-area: 2/7/3/8;
}
.roxo {
background: #eb70ff;
grid-area: 2/8/3/9;
}
/* Linha 3 */
.preto {
background: #151515;
grid-area: 3/1/4/2;
}
.cinza_escuro {
background: #444444;
grid-area: 3/2/4/3;
}
.pele_escura {
background: #593229;
grid-area: 3/3/4/4;
}
.marrom_escuro {
background: #403028;
grid-area: 3/4/4/5;
}
.laranja_escuro {
background-color: #903010;
grid-area: 3/5/4/6;
}
.amarelo_escuro {
background: #6c6c00;
grid-area: 3/6/4/7;
}
.vermelho_escuro {
background: #501313;
grid-area: 3/7/4/8;
}
.roxo_escuro {
background: #600070;
grid-area: 3/8/4/9;
}
/* Linha 4 */
.rosa_claro {
background: #ebc9d7;
grid-area: 4/1/5/2;
}
.azul_claro {
background: #82b0d2;
grid-area: 4/2/5/3;
}
.verde_claro {
background: #9fc59f;
grid-area: 4/3/5/4;
}
/* Linha 5 */
.rosa {
background: #cF7F9F;
grid-area: 5/1/6/2;
}
.azul {
background: #3f7faf;
grid-area: 5/2/6/3;
}
.verde {
background: #5F9F5F;
grid-area: 5/3/6/4;
}
/* Linha 6 */
.rosa_escuro {
background: #5f233b;
grid-area: 6/1/7/2;
}
.azul_escuro {
background: #172d3f;
grid-area: 6/2/7/3;
}
.verde_escuro {
background: #263f26;
grid-area: 6/3/7/4;
}
/*# sourceMappingURL=estilo.css.map */ | css/estilo.css | @charset "UTF-8";
/* VARIÁVEIS */
/****** MIXINS DE TELA ******/
/****** ESTRUTURA DO HTML *****/
html, body {
margin: 0;
padding: 0;
}
.layout {
background: #ebebeb;
display: grid;
font-family: "Courier New", Courier, monospace;
grid-template-areas: "titulo" "grid" "autoria";
grid-template-columns: auto;
grid-template-rows: 60px auto 40px;
}
.titulo {
grid-area: titulo;
background-image: radial-gradient(#ebebeb, #dddddd, #909090, #151515);
display: flex;
align-items: center;
}
h1 {
margin-left: auto;
margin-right: auto;
}
main {
display: block;
}
.grid {
grid-area: grid;
background-image: linear-gradient(#ebebeb, #909090, #444444);
height: calc(100vh - 100px);
}
.color {
align-items: top;
display: flex;
justify-content: center;
width: 100%;
font-weight: 600;
font-size: 16px;
display: grid;
margin: 10px 0;
grid-gap: 10px;
justify-content: center;
text-align: center;
grid-template-columns: repeat(8, 11.5%);
grid-template-rows: repeat(6, 15%);
}
.bloco {
border-bottom: 1px dashed #ebebeb;
grid-area: 3/1/3/9;
margin-bottom: -5px;
}
.caixa {
grid-template-areas: "card_nome" "card_hexa";
grid-template-columns: 100%;
grid-template-rows: 40% 60%;
height: 70px;
padding: 0 5px;
}
.card_nome {
display: grid;
grid-area: card_nome;
width: 100%;
font-size: 14px;
font-weight: bolder;
padding-top: 1px;
}
.card_hexa {
grid-area: card_hexa;
width: 100%;
font-size: 14px;
text-decoration-color: #505050;
font-weight: 500;
}
.clara {
color: #444444;
border: 1px solid #909090;
}
.default {
color: #151515;
border: 1px solid #dddddd;
}
.escura {
color: #909090;
border: 1px solid #dddddd;
}
.autoria {
grid-area: autoria;
background: #151515;
color: #ebebeb;
font-size: 12px;
text-align: center;
}
h5 {
font-family: "Edwardian Script ITC";
font-size: 18px;
padding-top: 0.2rem;
}
/****** DEFININDO A PALETA DE CORES *****/
/* LAYOUT em uma linha:
grid-area: start-row / start-column / end-row / end-column;
*/
/* Linha 1 */
.branco {
background: #ebebeb;
grid-area: 1/1/2/2;
}
.cinza_claro {
background-color: #dddddd;
grid-area: 1/2/2/3;
}
.pele_clara {
background: #d7b2aa;
grid-area: 1/3/2/4;
}
.marrom_claro {
background: #bba092;
grid-area: 1/4/2/5;
}
.laranja_claro {
background: #f3ab93;
grid-area: 1/5/2/6;
}
.amarelo_claro {
background: #ffff9f;
grid-area: 1/6/2/7;
}
.vermelho_claro {
background-color: #e18181;
grid-area: 1/7/2/8;
}
.roxo_claro {
background: #f9d6ff;
grid-area: 1/8/2/9;
}
/* Linha 2 */
.branco_preto {
background: #808080;
grid-area: 2/1/3/2;
}
.cinza {
background: #909090;
grid-area: 2/2/3/3;
}
.pele {
background: #af6453;
grid-area: 2/3/3/4;
}
.marrom {
background: #7f5f4f;
grid-area: 2/4/3/5;
}
.laranja {
background: #e96337;
grid-area: 2/5/3/6;
}
.amarelo {
background: #ecec00;
grid-area: 2/6/3/7;
}
.vermelho {
background: #cc3030;
grid-area: 2/7/3/8;
}
.roxo {
background: #eb70ff;
grid-area: 2/8/3/9;
}
/* Linha 3 */
.preto {
background: #151515;
grid-area: 3/1/4/2;
}
.cinza_escuro {
background: #444444;
grid-area: 3/2/4/3;
}
.pele_escura {
background: #593229;
grid-area: 3/3/4/4;
}
.marrom_escuro {
background: #403028;
grid-area: 3/4/4/5;
}
.laranja_escuro {
background-color: #903010;
grid-area: 3/5/4/6;
}
.amarelo_escuro {
background: #6c6c00;
grid-area: 3/6/4/7;
}
.vermelho_escuro {
background: #501313;
grid-area: 3/7/4/8;
}
.roxo_escuro {
background: #600070;
grid-area: 3/8/4/9;
}
/* Linha 4 */
.rosa_claro {
background: #ebc9d7;
grid-area: 4/1/5/2;
}
.azul_claro {
background: #82b0d2;
grid-area: 4/2/5/3;
}
.verde_claro {
background: #9fc59f;
grid-area: 4/3/5/4;
}
/* Linha 5 */
.rosa {
background: #cF7F9F;
grid-area: 5/1/6/2;
}
.azul {
background: #3f7faf;
grid-area: 5/2/6/3;
}
.verde {
background: #5F9F5F;
grid-area: 5/3/6/4;
}
/* Linha 6 */
.rosa_escuro {
background: #5f233b;
grid-area: 6/1/7/2;
}
.azul_escuro {
background: #172d3f;
grid-area: 6/2/7/3;
}
.verde_escuro {
background: #263f26;
grid-area: 6/3/7/4;
}
/*# sourceMappingURL=estilo.css.map */ | 0.253584 | 0.099865 |
body{margin:0}
main{display:block}
h1{font-size:2em;margin:.67em 0}
hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}
pre{font-family:monospace,monospace;font-size:1em}
a{background-color:transparent}
abbr[title]{border-bottom:0;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}
b,strong{font-weight:bolder}
code,kbd,samp{font-family:monospace,monospace;font-size:1em}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-0.25em}
sup{top:-0.5em}
img{border-style:none}
button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}
button,input{overflow:visible}
button,select{text-transform:none}
button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}
button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}
button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}
fieldset{padding:.35em .75em .625em}
legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}
progress{vertical-align:baseline}
textarea{overflow:auto}
[type="checkbox"],[type="radio"]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}
[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}
[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}
[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
details{display:block}
summary{display:list-item}
template{display:none}
[hidden]{display:none}
blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}
button{background-color:transparent;background-image:none;padding:0}
button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}
fieldset{margin:0;padding:0}
ol,ul{list-style:none;margin:0;padding:0}
html{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";line-height:1.5}
*,::before,::after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e2e8f0}
hr{border-top-width:1px}
img{border-style:solid}
textarea{resize:vertical}
input::-moz-placeholder,textarea::-moz-placeholder{color:#a0aec0}
input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#a0aec0}
input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#a0aec0}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#a0aec0}
input::placeholder,textarea::placeholder{color:#a0aec0}
button,[role="button"]{cursor:pointer}
table{border-collapse:collapse}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}
a{color:inherit;text-decoration:inherit}
button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}
pre,code,kbd,samp{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}
img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}
img,video{max-width:100%;height:auto}
.container{width:100%}
.divide-y>:not(template) ~ :not(template){--divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(1px * var(--divide-y-reverse))}
.divide-x>:not(template) ~ :not(template){--divide-x-reverse:0;border-right-width:calc(1px * var(--divide-x-reverse));border-left-width:calc(1px * calc(1 - var(--divide-x-reverse)))}
.divide-white>:not(template) ~ :not(template){--divide-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--divide-opacity))}
.divide-gray-200>:not(template) ~ :not(template){--divide-opacity:1;border-color:#edf2f7;border-color:rgba(237,242,247,var(--divide-opacity))}
.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}
.bg-fixed{background-attachment:fixed}
.bg-transparent{background-color:transparent}
.bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}
.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}
.bg-gray-100{--bg-opacity:1;background-color:#f7fafc;background-color:rgba(247,250,252,var(--bg-opacity))}
.bg-gray-900{--bg-opacity:1;background-color:#1a202c;background-color:rgba(26,32,44,var(--bg-opacity))}
.bg-blue-300{--bg-opacity:1;background-color:#90cdf4;background-color:rgba(144,205,244,var(--bg-opacity))}
.bg-blue-600{--bg-opacity:1;background-color:#3182ce;background-color:rgba(49,130,206,var(--bg-opacity))}
.bg-indigo-500{--bg-opacity:1;background-color:#667eea;background-color:rgba(102,126,234,var(--bg-opacity))}
.bg-main{--bg-opacity:1;background-color:#f53212;background-color:rgba(245,50,18,var(--bg-opacity))}
.bg-secondary{--bg-opacity:1;background-color:#feb707;background-color:rgba(254,183,7,var(--bg-opacity))}
.hover\:bg-gray-100:hover{--bg-opacity:1;background-color:#f7fafc;background-color:rgba(247,250,252,var(--bg-opacity))}
.hover\:bg-gray-800:hover{--bg-opacity:1;background-color:#2d3748;background-color:rgba(45,55,72,var(--bg-opacity))}
.hover\:bg-gray-900:hover{--bg-opacity:1;background-color:#1a202c;background-color:rgba(26,32,44,var(--bg-opacity))}
.hover\:bg-indigo-400:hover{--bg-opacity:1;background-color:#7f9cf5;background-color:rgba(127,156,245,var(--bg-opacity))}
.hover\:bg-main:hover{--bg-opacity:1;background-color:#f53212;background-color:rgba(245,50,18,var(--bg-opacity))}
.hover\:bg-secondary:hover{--bg-opacity:1;background-color:#feb707;background-color:rgba(254,183,7,var(--bg-opacity))}
.focus\:bg-gray-100:focus{--bg-opacity:1;background-color:#f7fafc;background-color:rgba(247,250,252,var(--bg-opacity))}
.bg-cover{background-size:cover}
.border-main{--border-opacity:1;border-color:#f53212;border-color:rgba(245,50,18,var(--border-opacity))}
.border-secondary{--border-opacity:1;border-color:#feb707;border-color:rgba(254,183,7,var(--border-opacity))}
.rounded{border-radius:.25rem}
.rounded-md{border-radius:.375rem}
.rounded-lg{border-radius:.5rem}
.rounded-full{border-radius:9999px}
.border-2{border-width:2px}
.border{border-width:1px}
.border-t-2{border-top-width:2px}
.border-b{border-bottom-width:1px}
.cursor-pointer{cursor:pointer}
.block{display:block}
.inline-block{display:inline-block}
.flex{display:-webkit-box;display:-ms-flexbox;display:flex}
.inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}
.table{display:table}
.grid{display:grid}
.hidden{display:none}
.flex-col{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.flex-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}
.items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}
.items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.justify-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}
.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.content-center{-ms-flex-line-pack:center;align-content:center}
.float-left{float:left}
.font-body{font-family:Poppins,sans-serif}
.font-number{font-family:sans-serif}
.font-semibold{font-weight:600}
.font-bold{font-weight:700}
.h-3{height:.75rem}
.h-4{height:1rem}
.h-6{height:1.5rem}
.h-8{height:2rem}
.h-10{height:2.5rem}
.h-16{height:4rem}
.h-auto{height:auto}
.h-full{height:100%}
.h-screen{height:100vh}
.text-xs{font-size:.75rem}
.text-sm{font-size:.875rem}
.text-xl{font-size:1.25rem}
.text-2xl{font-size:1.5rem}
.text-3xl{font-size:1.875rem}
.text-4xl{font-size:2.25rem}
.text-6xl{font-size:4rem}
.leading-none{line-height:1}
.leading-tight{line-height:1.25}
.m-6{margin:1.5rem}
.mx-1{margin-left:.25rem;margin-right:.25rem}
.my-2{margin-top:.5rem;margin-bottom:.5rem}
.mx-2{margin-left:.5rem;margin-right:.5rem}
.my-4{margin-top:1rem;margin-bottom:1rem}
.my-auto{margin-top:auto;margin-bottom:auto}
.mx-auto{margin-left:auto;margin-right:auto}
.ml-1{margin-left:.25rem}
.mt-2{margin-top:.5rem}
.mr-2{margin-right:.5rem}
.mb-2{margin-bottom:.5rem}
.ml-2{margin-left:.5rem}
.mt-4{margin-top:1rem}
.mr-4{margin-right:1rem}
.mb-4{margin-bottom:1rem}
.ml-4{margin-left:1rem}
.mt-6{margin-top:1.5rem}
.mb-6{margin-bottom:1.5rem}
.mt-8{margin-top:2rem}
.mb-8{margin-bottom:2rem}
.mt-16{margin-top:4rem}
.mb-16{margin-bottom:4rem}
.mb-24{margin-bottom:6rem}
.-mt-2{margin-top:-0.5rem}
.-mr-2{margin-right:-0.5rem}
.-mt-32{margin-top:-8rem}
.object-cover{-o-object-fit:cover;object-fit:cover}
.opacity-0{opacity:0}
.opacity-50{opacity:.5}
.hover\:opacity-0:hover{opacity:0}
.outline-none{outline:0}
.focus\:outline-none:focus{outline:0}
.overflow-hidden{overflow:hidden}
.overflow-y-auto{overflow-y:auto}
.overflow-x-hidden{overflow-x:hidden}
.p-0{padding:0}
.p-2{padding:.5rem}
.p-3{padding:.75rem}
.p-4{padding:1rem}
.p-6{padding:1.5rem}
.py-1{padding-top:.25rem;padding-bottom:.25rem}
.py-2{padding-top:.5rem;padding-bottom:.5rem}
.px-2{padding-left:.5rem;padding-right:.5rem}
.px-3{padding-left:.75rem;padding-right:.75rem}
.py-4{padding-top:1rem;padding-bottom:1rem}
.px-4{padding-left:1rem;padding-right:1rem}
.px-5{padding-left:1.25rem;padding-right:1.25rem}
.px-6{padding-left:1.5rem;padding-right:1.5rem}
.py-10{padding-top:2.5rem;padding-bottom:2.5rem}
.py-12{padding-top:3rem;padding-bottom:3rem}
.px-12{padding-left:3rem;padding-right:3rem}
.py-20{padding-top:5rem;padding-bottom:5rem}
.py-24{padding-top:6rem;padding-bottom:6rem}
.pb-0{padding-bottom:0}
.pt-2{padding-top:.5rem}
.pr-2{padding-right:.5rem}
.pb-2{padding-bottom:.5rem}
.pb-3{padding-bottom:.75rem}
.pl-3{padding-left:.75rem}
.pt-4{padding-top:1rem}
.pt-6{padding-top:1.5rem}
.pb-6{padding-bottom:1.5rem}
.pb-10{padding-bottom:2.5rem}
.pt-12{padding-top:3rem}
.pointer-events-none{pointer-events:none}
.fixed{position:fixed}
.absolute{position:absolute}
.relative{position:relative}
.inset-0{top:0;right:0;bottom:0;left:0}
.inset-x-0{right:0;left:0}
.top-0{top:0}
.right-0{right:0}
.bottom-0{bottom:0}
.left-0{left:0}
.resize{resize:both}
.shadow-xs{-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0.05);box-shadow:0 0 0 1px rgba(0,0,0,0.05)}
.shadow-sm{-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,0.05);box-shadow:0 1px 2px 0 rgba(0,0,0,0.05)}
.shadow{-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px 0 rgba(0,0,0,0.06);box-shadow:0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px 0 rgba(0,0,0,0.06)}
.shadow-md{-webkit-box-shadow:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -1px rgba(0,0,0,0.06);box-shadow:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -1px rgba(0,0,0,0.06)}
.shadow-lg{-webkit-box-shadow:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -2px rgba(0,0,0,0.05);box-shadow:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -2px rgba(0,0,0,0.05)}
.shadow-xl{-webkit-box-shadow:0 20px 25px -5px rgba(0,0,0,0.1),0 10px 10px -5px rgba(0,0,0,0.04);box-shadow:0 20px 25px -5px rgba(0,0,0,0.1),0 10px 10px -5px rgba(0,0,0,0.04)}
.fill-current{fill:currentColor}
.text-left{text-align:left}
.text-center{text-align:center}
.text-right{text-align:right}
.text-current{color:currentColor}
.text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}
.text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}
.text-gray-400{--text-opacity:1;color:#cbd5e0;color:rgba(203,213,224,var(--text-opacity))}
.text-gray-500{--text-opacity:1;color:#a0aec0;color:rgba(160,174,192,var(--text-opacity))}
.text-gray-600{--text-opacity:1;color:#718096;color:rgba(113,128,150,var(--text-opacity))}
.text-gray-700{--text-opacity:1;color:#4a5568;color:rgba(74,85,104,var(--text-opacity))}
.text-indigo-500{--text-opacity:1;color:#667eea;color:rgba(102,126,234,var(--text-opacity))}
.text-main{--text-opacity:1;color:#f53212;color:rgba(245,50,18,var(--text-opacity))}
.text-secondary{--text-opacity:1;color:#feb707;color:rgba(254,183,7,var(--text-opacity))}
.hover\:text-white:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}
.hover\:text-gray-500:hover{--text-opacity:1;color:#a0aec0;color:rgba(160,174,192,var(--text-opacity))}
.hover\:text-indigo-400:hover{--text-opacity:1;color:#7f9cf5;color:rgba(127,156,245,var(--text-opacity))}
.hover\:text-main:hover{--text-opacity:1;color:#f53212;color:rgba(245,50,18,var(--text-opacity))}
.hover\:text-secondary:hover{--text-opacity:1;color:#feb707;color:rgba(254,183,7,var(--text-opacity))}
.focus\:text-gray-500:focus{--text-opacity:1;color:#a0aec0;color:rgba(160,174,192,var(--text-opacity))}
.uppercase{text-transform:uppercase}
.hover\:underline:hover{text-decoration:underline}
.tracking-wide{letter-spacing:.025em}
.visible{visibility:visible}
.w-3{width:.75rem}
.w-4{width:1rem}
.w-6{width:1.5rem}
.w-16{width:4rem}
.w-auto{width:auto}
.w-11\/12{width:91.666667%}
.w-full{width:100%}
.z-10{z-index:10}
.z-50{z-index:50}
.gap-2{grid-gap:.5rem;gap:.5rem}
.gap-4{grid-gap:1rem;gap:1rem}
.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}
.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.col-span-2{grid-column:span 2 / span 2}
.transform{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;-webkit-transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))}
.origin-center{-webkit-transform-origin:center;transform-origin:center}
.scale-0{--transform-scale-x:0;--transform-scale-y:0}
.group:hover .group-hover\:scale-125{--transform-scale-x:1.25;--transform-scale-y:1.25}
.hover\:scale-110:hover{--transform-scale-x:1.1;--transform-scale-y:1.1}
.transition{-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform}
.ease-in-out{-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1)}
.duration-150{-webkit-transition-duration:150ms;transition-duration:150ms}
.duration-300{-webkit-transition-duration:300ms;transition-duration:300ms}
.duration-500{-webkit-transition-duration:500ms;transition-duration:500ms}
.woocommerce .woocommerce-breadcrumb{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));padding:.5rem}
.woocommerce .woocommerce-breadcrumb a{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}
.button{--text-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--text-opacity)) !important;font-weight:400 !important;--bg-opacity:1 !important;background-color:#f53212 !important;background-color:rgba(245,50,18,var(--bg-opacity)) !important;padding-left:.5rem !important;padding-right:.5rem !important;padding-top:.25rem !important;padding-bottom:.25rem !important}
.posted_in a{--bg-opacity:1;background-color:#f7fafc;background-color:rgba(247,250,252,var(--bg-opacity));--text-opacity:1;color:#f53212;color:rgba(245,50,18,var(--text-opacity));border-radius:.25rem;padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;padding-right:.5rem;-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-duration:300ms;transition-duration:300ms;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1)}
.posted_in a:hover{--bg-opacity:1;background-color:#f53212;background-color:rgba(245,50,18,var(--bg-opacity));--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}
.xx::before{content:"";position:absolute;top:0;left:0;display:block;right:0;bottom:0;background:linear-gradient(35deg,#1f1c1c,#f53212);z-index:-1;opacity:.9}
.xxx::before{content:"";position:absolute;top:0;left:0;display:block;right:0;bottom:0;background:linear-gradient(35deg,#1f1c1c,#f53212);z-index:0;opacity:.9}
.woocommerce div.product .woocommerce-tabs ul.tabs::before{display:none}
ul.tabs{padding:0 !important}
ul.tabs li{padding-left:0 !important;border-width:0 !important;background-color:transparent !important;border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important;border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}
ul.tabs li a{--bg-opacity:1 !important;background-color:#feb707 !important;background-color:rgba(254,183,7,var(--bg-opacity)) !important;padding-left:1rem !important;padding-right:1rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;font-weight:400 !important;--text-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--text-opacity)) !important;font-size:.875rem !important;text-transform:capitalize !important}
ul.tabs li a:hover{--bg-opacity:1 !important;background-color:#f53212 !important;background-color:rgba(245,50,18,var(--bg-opacity)) !important}
ul.tabs li.active{border-width:0 !important}
ul.tabs li.active a{--text-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--text-opacity)) !important;--bg-opacity:1 !important;background-color:#f53212 !important;background-color:rgba(245,50,18,var(--bg-opacity)) !important}
ul.tabs li::before,ul.tabs li::after{display:none !important}
.forminput input{width:100% !important;font-size:.875rem !important;position:relative !important;border-width:1px !important;border-radius:.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;padding-right:.5rem !important;margin-bottom:1rem !important}
.forminput input:focus{outline:0}
.forminput input[type="checkbox"]{width:auto !important;font-size:.875rem !important;position:relative !important;border-width:1px !important;border-radius:.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;padding-right:.5rem !important}
.forminput input[type="checkbox"]:focus{outline:0}
.forminput textarea{width:100% !important;font-size:.875rem !important;position:relative !important;border-width:1px !important;border-radius:.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;padding-right:.5rem !important}
.forminput textarea:focus{outline:0}
.comment-form input{width:100% !important;font-size:.875rem !important;position:relative !important;border-width:1px !important;border-radius:.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;padding-right:.5rem !important}
.comment-form input:focus{outline:0}
.comment-form textarea{width:100% !important;font-size:.875rem !important;position:relative !important;border-width:1px !important;border-radius:.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;padding-right:.5rem !important}
.comment-form textarea:focus{outline:0}
.woocommerce-billing-fields__field-wrapper input,.woocommerce-MyAccount-content input{width:100% !important;font-size:.875rem !important;position:relative !important;border-width:1px !important;border-radius:.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;padding-right:.5rem !important}
.woocommerce-billing-fields__field-wrapper input:focus,.woocommerce-MyAccount-content input:focus{outline:0}
.woocommerce-billing-fields__field-wrapper textarea,.woocommerce-MyAccount-content textarea{width:100% !important;font-size:.875rem !important;position:relative !important;border-width:1px !important;border-radius:.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;padding-right:.5rem !important}
.woocommerce-billing-fields__field-wrapper textarea:focus,.woocommerce-MyAccount-content textarea:focus{outline:0}
.mega-menu{display:none;left:0;position:absolute;text-align:left;width:100%;z-index:99999}
.hoverable{position:static}
.hoverable:hover .mega-menu{display:block}
.woocommerce-mini-cart__buttons a{display:block !important;text-align:center !important;margin-top:.5rem !important}
.woocommerce-mini-cart__total.total{text-align:center !important;border-top-width:1px !important;padding-top:.25rem !important;margin-top:.25rem !important;display:block !important;--text-opacity:1 !important;color:#feb707 !important;color:rgba(254,183,7,var(--text-opacity)) !important}
img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail{float:none !important;max-width:32px !important}
.cartContainer{display:none}
.cartContainerx:hover .cartContainer{display:block}
#wau_file_addon{display:block;margin:10px 0 20px 0;-webkit-box-sizing:border-box;box-sizing:border-box}
.uploadContainer{border-bottom:10px;border-bottom:1px solid #eee;margin-bottom:20px;display:none}
.uploadIsActive .uploadContainer{display:block}
.nsl-container-buttons{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}
.pricedc del{margin-right:5px}
.fw{width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw}
table.fixed{table-layout:fixed;position:unset !important}
span.woocommerce-Price-currencySymbol{margin-left:5px}
#dropDownMenu{-webkit-transform:scale(0);transform:scale(0);-webkit-transition:500ms;transition:500ms}
#dropDownMenu.showModal{-webkit-transform:scale(1);transform:scale(1);-webkit-transition:500ms;transition:500ms}
@media(min-width:640px){.container{max-width:640px}
.sm\:rounded-lg{border-radius:.5rem}
.sm\:border-r{border-right-width:1px}
.sm\:flex-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
.sm\:flex-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}
.sm\:text-sm{font-size:.875rem}
.sm\:mb-0{margin-bottom:0}
.sm\:px-8{padding-left:2rem;padding-right:2rem}
.sm\:text-left{text-align:left}
.sm\:w-1\/2{width:50%}
}@media(min-width:768px){.container{max-width:768px}
.md\:hidden{display:none}
.md\:flex-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
.md\:h-64{height:16rem}
.md\:mt-0{margin-top:0}
.md\:ml-0{margin-left:0}
.md\:mt-10{margin-top:2.5rem}
.md\:mb-10{margin-bottom:2.5rem}
.md\:max-w-md{max-width:28rem}
.md\:p-6{padding:1.5rem}
.md\:text-left{text-align:left}
.md\:text-right{text-align:right}
.md\:w-40{width:10rem}
.md\:w-1\/3{width:33.333333%}
.md\:w-2\/3{width:66.666667%}
.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
}@media(min-width:1024px){.container{max-width:1024px}
.lg\:border-b-0{border-bottom-width:0}
.lg\:block{display:block}
.lg\:inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}
.lg\:hidden{display:none}
.lg\:flex-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
.lg\:items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.lg\:flex-grow{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}
.lg\:h-auto{height:auto}
.lg\:text-2xl{font-size:1.5rem}
.lg\:text-4xl{font-size:2.25rem}
.lg\:mx-auto{margin-left:auto;margin-right:auto}
.lg\:px-16{padding-left:4rem;padding-right:4rem}
.lg\:pt-3{padding-top:.75rem}
.lg\:w-auto{width:auto}
.lg\:w-1\/4{width:25%}
.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
}@media(min-width:1280px){.container{max-width:1280px}
.xl\:px-40{padding-left:10rem;padding-right:10rem}
} | style.min.css | body{margin:0}
main{display:block}
h1{font-size:2em;margin:.67em 0}
hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}
pre{font-family:monospace,monospace;font-size:1em}
a{background-color:transparent}
abbr[title]{border-bottom:0;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}
b,strong{font-weight:bolder}
code,kbd,samp{font-family:monospace,monospace;font-size:1em}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-0.25em}
sup{top:-0.5em}
img{border-style:none}
button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}
button,input{overflow:visible}
button,select{text-transform:none}
button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}
button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}
button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}
fieldset{padding:.35em .75em .625em}
legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}
progress{vertical-align:baseline}
textarea{overflow:auto}
[type="checkbox"],[type="radio"]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}
[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}
[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}
[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
details{display:block}
summary{display:list-item}
template{display:none}
[hidden]{display:none}
blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}
button{background-color:transparent;background-image:none;padding:0}
button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}
fieldset{margin:0;padding:0}
ol,ul{list-style:none;margin:0;padding:0}
html{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";line-height:1.5}
*,::before,::after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e2e8f0}
hr{border-top-width:1px}
img{border-style:solid}
textarea{resize:vertical}
input::-moz-placeholder,textarea::-moz-placeholder{color:#a0aec0}
input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#a0aec0}
input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#a0aec0}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#a0aec0}
input::placeholder,textarea::placeholder{color:#a0aec0}
button,[role="button"]{cursor:pointer}
table{border-collapse:collapse}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}
a{color:inherit;text-decoration:inherit}
button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}
pre,code,kbd,samp{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}
img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}
img,video{max-width:100%;height:auto}
.container{width:100%}
.divide-y>:not(template) ~ :not(template){--divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(1px * var(--divide-y-reverse))}
.divide-x>:not(template) ~ :not(template){--divide-x-reverse:0;border-right-width:calc(1px * var(--divide-x-reverse));border-left-width:calc(1px * calc(1 - var(--divide-x-reverse)))}
.divide-white>:not(template) ~ :not(template){--divide-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--divide-opacity))}
.divide-gray-200>:not(template) ~ :not(template){--divide-opacity:1;border-color:#edf2f7;border-color:rgba(237,242,247,var(--divide-opacity))}
.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}
.bg-fixed{background-attachment:fixed}
.bg-transparent{background-color:transparent}
.bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}
.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}
.bg-gray-100{--bg-opacity:1;background-color:#f7fafc;background-color:rgba(247,250,252,var(--bg-opacity))}
.bg-gray-900{--bg-opacity:1;background-color:#1a202c;background-color:rgba(26,32,44,var(--bg-opacity))}
.bg-blue-300{--bg-opacity:1;background-color:#90cdf4;background-color:rgba(144,205,244,var(--bg-opacity))}
.bg-blue-600{--bg-opacity:1;background-color:#3182ce;background-color:rgba(49,130,206,var(--bg-opacity))}
.bg-indigo-500{--bg-opacity:1;background-color:#667eea;background-color:rgba(102,126,234,var(--bg-opacity))}
.bg-main{--bg-opacity:1;background-color:#f53212;background-color:rgba(245,50,18,var(--bg-opacity))}
.bg-secondary{--bg-opacity:1;background-color:#feb707;background-color:rgba(254,183,7,var(--bg-opacity))}
.hover\:bg-gray-100:hover{--bg-opacity:1;background-color:#f7fafc;background-color:rgba(247,250,252,var(--bg-opacity))}
.hover\:bg-gray-800:hover{--bg-opacity:1;background-color:#2d3748;background-color:rgba(45,55,72,var(--bg-opacity))}
.hover\:bg-gray-900:hover{--bg-opacity:1;background-color:#1a202c;background-color:rgba(26,32,44,var(--bg-opacity))}
.hover\:bg-indigo-400:hover{--bg-opacity:1;background-color:#7f9cf5;background-color:rgba(127,156,245,var(--bg-opacity))}
.hover\:bg-main:hover{--bg-opacity:1;background-color:#f53212;background-color:rgba(245,50,18,var(--bg-opacity))}
.hover\:bg-secondary:hover{--bg-opacity:1;background-color:#feb707;background-color:rgba(254,183,7,var(--bg-opacity))}
.focus\:bg-gray-100:focus{--bg-opacity:1;background-color:#f7fafc;background-color:rgba(247,250,252,var(--bg-opacity))}
.bg-cover{background-size:cover}
.border-main{--border-opacity:1;border-color:#f53212;border-color:rgba(245,50,18,var(--border-opacity))}
.border-secondary{--border-opacity:1;border-color:#feb707;border-color:rgba(254,183,7,var(--border-opacity))}
.rounded{border-radius:.25rem}
.rounded-md{border-radius:.375rem}
.rounded-lg{border-radius:.5rem}
.rounded-full{border-radius:9999px}
.border-2{border-width:2px}
.border{border-width:1px}
.border-t-2{border-top-width:2px}
.border-b{border-bottom-width:1px}
.cursor-pointer{cursor:pointer}
.block{display:block}
.inline-block{display:inline-block}
.flex{display:-webkit-box;display:-ms-flexbox;display:flex}
.inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}
.table{display:table}
.grid{display:grid}
.hidden{display:none}
.flex-col{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.flex-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}
.items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}
.items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.justify-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}
.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.content-center{-ms-flex-line-pack:center;align-content:center}
.float-left{float:left}
.font-body{font-family:Poppins,sans-serif}
.font-number{font-family:sans-serif}
.font-semibold{font-weight:600}
.font-bold{font-weight:700}
.h-3{height:.75rem}
.h-4{height:1rem}
.h-6{height:1.5rem}
.h-8{height:2rem}
.h-10{height:2.5rem}
.h-16{height:4rem}
.h-auto{height:auto}
.h-full{height:100%}
.h-screen{height:100vh}
.text-xs{font-size:.75rem}
.text-sm{font-size:.875rem}
.text-xl{font-size:1.25rem}
.text-2xl{font-size:1.5rem}
.text-3xl{font-size:1.875rem}
.text-4xl{font-size:2.25rem}
.text-6xl{font-size:4rem}
.leading-none{line-height:1}
.leading-tight{line-height:1.25}
.m-6{margin:1.5rem}
.mx-1{margin-left:.25rem;margin-right:.25rem}
.my-2{margin-top:.5rem;margin-bottom:.5rem}
.mx-2{margin-left:.5rem;margin-right:.5rem}
.my-4{margin-top:1rem;margin-bottom:1rem}
.my-auto{margin-top:auto;margin-bottom:auto}
.mx-auto{margin-left:auto;margin-right:auto}
.ml-1{margin-left:.25rem}
.mt-2{margin-top:.5rem}
.mr-2{margin-right:.5rem}
.mb-2{margin-bottom:.5rem}
.ml-2{margin-left:.5rem}
.mt-4{margin-top:1rem}
.mr-4{margin-right:1rem}
.mb-4{margin-bottom:1rem}
.ml-4{margin-left:1rem}
.mt-6{margin-top:1.5rem}
.mb-6{margin-bottom:1.5rem}
.mt-8{margin-top:2rem}
.mb-8{margin-bottom:2rem}
.mt-16{margin-top:4rem}
.mb-16{margin-bottom:4rem}
.mb-24{margin-bottom:6rem}
.-mt-2{margin-top:-0.5rem}
.-mr-2{margin-right:-0.5rem}
.-mt-32{margin-top:-8rem}
.object-cover{-o-object-fit:cover;object-fit:cover}
.opacity-0{opacity:0}
.opacity-50{opacity:.5}
.hover\:opacity-0:hover{opacity:0}
.outline-none{outline:0}
.focus\:outline-none:focus{outline:0}
.overflow-hidden{overflow:hidden}
.overflow-y-auto{overflow-y:auto}
.overflow-x-hidden{overflow-x:hidden}
.p-0{padding:0}
.p-2{padding:.5rem}
.p-3{padding:.75rem}
.p-4{padding:1rem}
.p-6{padding:1.5rem}
.py-1{padding-top:.25rem;padding-bottom:.25rem}
.py-2{padding-top:.5rem;padding-bottom:.5rem}
.px-2{padding-left:.5rem;padding-right:.5rem}
.px-3{padding-left:.75rem;padding-right:.75rem}
.py-4{padding-top:1rem;padding-bottom:1rem}
.px-4{padding-left:1rem;padding-right:1rem}
.px-5{padding-left:1.25rem;padding-right:1.25rem}
.px-6{padding-left:1.5rem;padding-right:1.5rem}
.py-10{padding-top:2.5rem;padding-bottom:2.5rem}
.py-12{padding-top:3rem;padding-bottom:3rem}
.px-12{padding-left:3rem;padding-right:3rem}
.py-20{padding-top:5rem;padding-bottom:5rem}
.py-24{padding-top:6rem;padding-bottom:6rem}
.pb-0{padding-bottom:0}
.pt-2{padding-top:.5rem}
.pr-2{padding-right:.5rem}
.pb-2{padding-bottom:.5rem}
.pb-3{padding-bottom:.75rem}
.pl-3{padding-left:.75rem}
.pt-4{padding-top:1rem}
.pt-6{padding-top:1.5rem}
.pb-6{padding-bottom:1.5rem}
.pb-10{padding-bottom:2.5rem}
.pt-12{padding-top:3rem}
.pointer-events-none{pointer-events:none}
.fixed{position:fixed}
.absolute{position:absolute}
.relative{position:relative}
.inset-0{top:0;right:0;bottom:0;left:0}
.inset-x-0{right:0;left:0}
.top-0{top:0}
.right-0{right:0}
.bottom-0{bottom:0}
.left-0{left:0}
.resize{resize:both}
.shadow-xs{-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0.05);box-shadow:0 0 0 1px rgba(0,0,0,0.05)}
.shadow-sm{-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,0.05);box-shadow:0 1px 2px 0 rgba(0,0,0,0.05)}
.shadow{-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px 0 rgba(0,0,0,0.06);box-shadow:0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px 0 rgba(0,0,0,0.06)}
.shadow-md{-webkit-box-shadow:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -1px rgba(0,0,0,0.06);box-shadow:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -1px rgba(0,0,0,0.06)}
.shadow-lg{-webkit-box-shadow:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -2px rgba(0,0,0,0.05);box-shadow:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -2px rgba(0,0,0,0.05)}
.shadow-xl{-webkit-box-shadow:0 20px 25px -5px rgba(0,0,0,0.1),0 10px 10px -5px rgba(0,0,0,0.04);box-shadow:0 20px 25px -5px rgba(0,0,0,0.1),0 10px 10px -5px rgba(0,0,0,0.04)}
.fill-current{fill:currentColor}
.text-left{text-align:left}
.text-center{text-align:center}
.text-right{text-align:right}
.text-current{color:currentColor}
.text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}
.text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}
.text-gray-400{--text-opacity:1;color:#cbd5e0;color:rgba(203,213,224,var(--text-opacity))}
.text-gray-500{--text-opacity:1;color:#a0aec0;color:rgba(160,174,192,var(--text-opacity))}
.text-gray-600{--text-opacity:1;color:#718096;color:rgba(113,128,150,var(--text-opacity))}
.text-gray-700{--text-opacity:1;color:#4a5568;color:rgba(74,85,104,var(--text-opacity))}
.text-indigo-500{--text-opacity:1;color:#667eea;color:rgba(102,126,234,var(--text-opacity))}
.text-main{--text-opacity:1;color:#f53212;color:rgba(245,50,18,var(--text-opacity))}
.text-secondary{--text-opacity:1;color:#feb707;color:rgba(254,183,7,var(--text-opacity))}
.hover\:text-white:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}
.hover\:text-gray-500:hover{--text-opacity:1;color:#a0aec0;color:rgba(160,174,192,var(--text-opacity))}
.hover\:text-indigo-400:hover{--text-opacity:1;color:#7f9cf5;color:rgba(127,156,245,var(--text-opacity))}
.hover\:text-main:hover{--text-opacity:1;color:#f53212;color:rgba(245,50,18,var(--text-opacity))}
.hover\:text-secondary:hover{--text-opacity:1;color:#feb707;color:rgba(254,183,7,var(--text-opacity))}
.focus\:text-gray-500:focus{--text-opacity:1;color:#a0aec0;color:rgba(160,174,192,var(--text-opacity))}
.uppercase{text-transform:uppercase}
.hover\:underline:hover{text-decoration:underline}
.tracking-wide{letter-spacing:.025em}
.visible{visibility:visible}
.w-3{width:.75rem}
.w-4{width:1rem}
.w-6{width:1.5rem}
.w-16{width:4rem}
.w-auto{width:auto}
.w-11\/12{width:91.666667%}
.w-full{width:100%}
.z-10{z-index:10}
.z-50{z-index:50}
.gap-2{grid-gap:.5rem;gap:.5rem}
.gap-4{grid-gap:1rem;gap:1rem}
.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}
.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.col-span-2{grid-column:span 2 / span 2}
.transform{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;-webkit-transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))}
.origin-center{-webkit-transform-origin:center;transform-origin:center}
.scale-0{--transform-scale-x:0;--transform-scale-y:0}
.group:hover .group-hover\:scale-125{--transform-scale-x:1.25;--transform-scale-y:1.25}
.hover\:scale-110:hover{--transform-scale-x:1.1;--transform-scale-y:1.1}
.transition{-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform}
.ease-in-out{-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1)}
.duration-150{-webkit-transition-duration:150ms;transition-duration:150ms}
.duration-300{-webkit-transition-duration:300ms;transition-duration:300ms}
.duration-500{-webkit-transition-duration:500ms;transition-duration:500ms}
.woocommerce .woocommerce-breadcrumb{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));padding:.5rem}
.woocommerce .woocommerce-breadcrumb a{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}
.button{--text-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--text-opacity)) !important;font-weight:400 !important;--bg-opacity:1 !important;background-color:#f53212 !important;background-color:rgba(245,50,18,var(--bg-opacity)) !important;padding-left:.5rem !important;padding-right:.5rem !important;padding-top:.25rem !important;padding-bottom:.25rem !important}
.posted_in a{--bg-opacity:1;background-color:#f7fafc;background-color:rgba(247,250,252,var(--bg-opacity));--text-opacity:1;color:#f53212;color:rgba(245,50,18,var(--text-opacity));border-radius:.25rem;padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;padding-right:.5rem;-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-duration:300ms;transition-duration:300ms;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1)}
.posted_in a:hover{--bg-opacity:1;background-color:#f53212;background-color:rgba(245,50,18,var(--bg-opacity));--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}
.xx::before{content:"";position:absolute;top:0;left:0;display:block;right:0;bottom:0;background:linear-gradient(35deg,#1f1c1c,#f53212);z-index:-1;opacity:.9}
.xxx::before{content:"";position:absolute;top:0;left:0;display:block;right:0;bottom:0;background:linear-gradient(35deg,#1f1c1c,#f53212);z-index:0;opacity:.9}
.woocommerce div.product .woocommerce-tabs ul.tabs::before{display:none}
ul.tabs{padding:0 !important}
ul.tabs li{padding-left:0 !important;border-width:0 !important;background-color:transparent !important;border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important;border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}
ul.tabs li a{--bg-opacity:1 !important;background-color:#feb707 !important;background-color:rgba(254,183,7,var(--bg-opacity)) !important;padding-left:1rem !important;padding-right:1rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;font-weight:400 !important;--text-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--text-opacity)) !important;font-size:.875rem !important;text-transform:capitalize !important}
ul.tabs li a:hover{--bg-opacity:1 !important;background-color:#f53212 !important;background-color:rgba(245,50,18,var(--bg-opacity)) !important}
ul.tabs li.active{border-width:0 !important}
ul.tabs li.active a{--text-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--text-opacity)) !important;--bg-opacity:1 !important;background-color:#f53212 !important;background-color:rgba(245,50,18,var(--bg-opacity)) !important}
ul.tabs li::before,ul.tabs li::after{display:none !important}
.forminput input{width:100% !important;font-size:.875rem !important;position:relative !important;border-width:1px !important;border-radius:.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;padding-right:.5rem !important;margin-bottom:1rem !important}
.forminput input:focus{outline:0}
.forminput input[type="checkbox"]{width:auto !important;font-size:.875rem !important;position:relative !important;border-width:1px !important;border-radius:.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;padding-right:.5rem !important}
.forminput input[type="checkbox"]:focus{outline:0}
.forminput textarea{width:100% !important;font-size:.875rem !important;position:relative !important;border-width:1px !important;border-radius:.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;padding-right:.5rem !important}
.forminput textarea:focus{outline:0}
.comment-form input{width:100% !important;font-size:.875rem !important;position:relative !important;border-width:1px !important;border-radius:.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;padding-right:.5rem !important}
.comment-form input:focus{outline:0}
.comment-form textarea{width:100% !important;font-size:.875rem !important;position:relative !important;border-width:1px !important;border-radius:.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;padding-right:.5rem !important}
.comment-form textarea:focus{outline:0}
.woocommerce-billing-fields__field-wrapper input,.woocommerce-MyAccount-content input{width:100% !important;font-size:.875rem !important;position:relative !important;border-width:1px !important;border-radius:.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;padding-right:.5rem !important}
.woocommerce-billing-fields__field-wrapper input:focus,.woocommerce-MyAccount-content input:focus{outline:0}
.woocommerce-billing-fields__field-wrapper textarea,.woocommerce-MyAccount-content textarea{width:100% !important;font-size:.875rem !important;position:relative !important;border-width:1px !important;border-radius:.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;padding-right:.5rem !important}
.woocommerce-billing-fields__field-wrapper textarea:focus,.woocommerce-MyAccount-content textarea:focus{outline:0}
.mega-menu{display:none;left:0;position:absolute;text-align:left;width:100%;z-index:99999}
.hoverable{position:static}
.hoverable:hover .mega-menu{display:block}
.woocommerce-mini-cart__buttons a{display:block !important;text-align:center !important;margin-top:.5rem !important}
.woocommerce-mini-cart__total.total{text-align:center !important;border-top-width:1px !important;padding-top:.25rem !important;margin-top:.25rem !important;display:block !important;--text-opacity:1 !important;color:#feb707 !important;color:rgba(254,183,7,var(--text-opacity)) !important}
img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail{float:none !important;max-width:32px !important}
.cartContainer{display:none}
.cartContainerx:hover .cartContainer{display:block}
#wau_file_addon{display:block;margin:10px 0 20px 0;-webkit-box-sizing:border-box;box-sizing:border-box}
.uploadContainer{border-bottom:10px;border-bottom:1px solid #eee;margin-bottom:20px;display:none}
.uploadIsActive .uploadContainer{display:block}
.nsl-container-buttons{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}
.pricedc del{margin-right:5px}
.fw{width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw}
table.fixed{table-layout:fixed;position:unset !important}
span.woocommerce-Price-currencySymbol{margin-left:5px}
#dropDownMenu{-webkit-transform:scale(0);transform:scale(0);-webkit-transition:500ms;transition:500ms}
#dropDownMenu.showModal{-webkit-transform:scale(1);transform:scale(1);-webkit-transition:500ms;transition:500ms}
@media(min-width:640px){.container{max-width:640px}
.sm\:rounded-lg{border-radius:.5rem}
.sm\:border-r{border-right-width:1px}
.sm\:flex-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
.sm\:flex-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}
.sm\:text-sm{font-size:.875rem}
.sm\:mb-0{margin-bottom:0}
.sm\:px-8{padding-left:2rem;padding-right:2rem}
.sm\:text-left{text-align:left}
.sm\:w-1\/2{width:50%}
}@media(min-width:768px){.container{max-width:768px}
.md\:hidden{display:none}
.md\:flex-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
.md\:h-64{height:16rem}
.md\:mt-0{margin-top:0}
.md\:ml-0{margin-left:0}
.md\:mt-10{margin-top:2.5rem}
.md\:mb-10{margin-bottom:2.5rem}
.md\:max-w-md{max-width:28rem}
.md\:p-6{padding:1.5rem}
.md\:text-left{text-align:left}
.md\:text-right{text-align:right}
.md\:w-40{width:10rem}
.md\:w-1\/3{width:33.333333%}
.md\:w-2\/3{width:66.666667%}
.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
}@media(min-width:1024px){.container{max-width:1024px}
.lg\:border-b-0{border-bottom-width:0}
.lg\:block{display:block}
.lg\:inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}
.lg\:hidden{display:none}
.lg\:flex-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
.lg\:items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.lg\:flex-grow{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}
.lg\:h-auto{height:auto}
.lg\:text-2xl{font-size:1.5rem}
.lg\:text-4xl{font-size:2.25rem}
.lg\:mx-auto{margin-left:auto;margin-right:auto}
.lg\:px-16{padding-left:4rem;padding-right:4rem}
.lg\:pt-3{padding-top:.75rem}
.lg\:w-auto{width:auto}
.lg\:w-1\/4{width:25%}
.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
}@media(min-width:1280px){.container{max-width:1280px}
.xl\:px-40{padding-left:10rem;padding-right:10rem}
} | 0.282295 | 0.049451 |
h4.instructions {
color: grey;
font-style: italic;
}
/* ~ */
.step {
float: left;
background: white;
padding: 7px 13px;
border-radius: 1px;
text-align: center;
width: 100px;
position: relative
}
.step_line {
margin: 0;
width: 0;
height: 0;
border-left: 16px solid #fff;
border-top: 16px solid transparent;
border-bottom: 16px solid transparent;
z-index: 1008;
position: absolute;
left: 99px;
top: 1px
}
.step_line.backline {
border-left: 20px solid #f7f7f7;
border-top: 20px solid transparent;
border-bottom: 20px solid transparent;
z-index: 1006;
position: absolute;
left: 99px;
top: -3px
}
.step_complete {
background: #357ebd
}
.step_line.step_complete {
background: 0;
border-left: 16px solid #357ebd
}
.step_thankyou {
float: left;
background: white;
padding: 7px 13px;
border-radius: 1px;
text-align: center;
width: 100px;
}
*/
/* images*/
.cards {
padding-left: 0;
}
.cards li {
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
background-image: url('//c2.staticflickr.com/4/3713/20116660060_f1e51a5248_m.jpg');
background-position: 0 0;
float: left;
height: 32px;
margin-right: 8px;
text-indent: -9999px;
width: 51px;
}
.cards .mastercard {
background-position: -51px 0;
}
.cards li {
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
background-image: url('//c2.staticflickr.com/4/3713/20116660060_f1e51a5248_m.jpg');
background-position: 0 0;
float: left;
height: 32px;
margin-right: 8px;
text-indent: -9999px;
width: 51px;
}
.cards .amex {
background-position: -102px 0;
}
.cards li {
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
background-image: url('//c2.staticflickr.com/4/3713/20116660060_f1e51a5248_m.jpg');
background-position: 0 0;
float: left;
height: 32px;
margin-right: 8px;
text-indent: -9999px;
width: 51px;
}
.cards li:last-child {
margin-right: 0;
}
/* images end */
/*
* BOOTSTRAP
*/
.btn {
border-radius: 1px;
}
.btn-sm,
.btn-group-sm>.btn {
border-radius: 1px;
}
.input-sm,
.form-horizontal .form-group-sm .form-control {
border-radius: 1px;
}
.panel-info {
border-color: #999;
}
.panel-heading {
border-top-left-radius: 1px;
border-top-right-radius: 1px;
}
.panel {
border-radius: 1px;
}
.panel-info>.panel-heading {
color: #eee;
border-color: #999;
}
.panel-info>.panel-heading {
background-image: linear-gradient(to bottom, #555 0px, #888 100%);
}
hr {
border-color: #999 -moz-use-text-color -moz-use-text-color;
}
.panel-footer {
border-bottom-left-radius: 1px;
border-bottom-right-radius: 1px;
border-top: 1px solid #999;
}
.btn-link {
color: #888;
} | src/app/usecase-one/usecase-one.component.css | h4.instructions {
color: grey;
font-style: italic;
}
/* ~ */
.step {
float: left;
background: white;
padding: 7px 13px;
border-radius: 1px;
text-align: center;
width: 100px;
position: relative
}
.step_line {
margin: 0;
width: 0;
height: 0;
border-left: 16px solid #fff;
border-top: 16px solid transparent;
border-bottom: 16px solid transparent;
z-index: 1008;
position: absolute;
left: 99px;
top: 1px
}
.step_line.backline {
border-left: 20px solid #f7f7f7;
border-top: 20px solid transparent;
border-bottom: 20px solid transparent;
z-index: 1006;
position: absolute;
left: 99px;
top: -3px
}
.step_complete {
background: #357ebd
}
.step_line.step_complete {
background: 0;
border-left: 16px solid #357ebd
}
.step_thankyou {
float: left;
background: white;
padding: 7px 13px;
border-radius: 1px;
text-align: center;
width: 100px;
}
*/
/* images*/
.cards {
padding-left: 0;
}
.cards li {
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
background-image: url('//c2.staticflickr.com/4/3713/20116660060_f1e51a5248_m.jpg');
background-position: 0 0;
float: left;
height: 32px;
margin-right: 8px;
text-indent: -9999px;
width: 51px;
}
.cards .mastercard {
background-position: -51px 0;
}
.cards li {
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
background-image: url('//c2.staticflickr.com/4/3713/20116660060_f1e51a5248_m.jpg');
background-position: 0 0;
float: left;
height: 32px;
margin-right: 8px;
text-indent: -9999px;
width: 51px;
}
.cards .amex {
background-position: -102px 0;
}
.cards li {
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
background-image: url('//c2.staticflickr.com/4/3713/20116660060_f1e51a5248_m.jpg');
background-position: 0 0;
float: left;
height: 32px;
margin-right: 8px;
text-indent: -9999px;
width: 51px;
}
.cards li:last-child {
margin-right: 0;
}
/* images end */
/*
* BOOTSTRAP
*/
.btn {
border-radius: 1px;
}
.btn-sm,
.btn-group-sm>.btn {
border-radius: 1px;
}
.input-sm,
.form-horizontal .form-group-sm .form-control {
border-radius: 1px;
}
.panel-info {
border-color: #999;
}
.panel-heading {
border-top-left-radius: 1px;
border-top-right-radius: 1px;
}
.panel {
border-radius: 1px;
}
.panel-info>.panel-heading {
color: #eee;
border-color: #999;
}
.panel-info>.panel-heading {
background-image: linear-gradient(to bottom, #555 0px, #888 100%);
}
hr {
border-color: #999 -moz-use-text-color -moz-use-text-color;
}
.panel-footer {
border-bottom-left-radius: 1px;
border-bottom-right-radius: 1px;
border-top: 1px solid #999;
}
.btn-link {
color: #888;
} | 0.485112 | 0.095139 |
html{
max-width:100%;
overflow-x: hidden;
}
html::-webkit-scrollbar-track {
background-color: #F46036;
border-radius: 100px;
}
html::-webkit-scrollbar-thumb {
background-color: #818479;
border-radius: 100px;
}
body{
background-color:#0C0C0C;
color: #FBFEF9;
font-size:1.5rem;
font-family: 'Goldman', cursive;
}
h1, h2{
font-family: 'Zen Dots', cursive;
}
section{
position:relative;
min-height: 100vh;
margin-top: 3rem;
margin-bottom: 3rem;
}
.section-title{
height: 15vh;
margin-top:5rem;
text-align: center;
text-transform: uppercase;
text-decoration: underline;
text-decoration-color: #349AF4;
letter-spacing: 2px;
}
a{
text-decoration: none;
color: #F46036;
}
a:hover{
color:#349AF4;
}
.parallax{
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
background-position: center;
}
.behind-overlay{
z-index:300;
}
.dark-overlay{
height:100%;
width:100%;
position:absolute;
z-index:301;
background-color: rgba(0, 0, 0, 0.8);
}
i {
padding: 0 0.5rem 0 0.5rem;
}
/** HEADER */
header{
height:100vh;
position: relative;
background-image: url("https://images.unsplash.com/photo-1514824068966-23f7d658a8b9?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80");
filter:grayscale(100%);
}
.label-name{
text-align: center;
font-size: 4.5rem;
position:absolute;
top:50%;
left:50%;
transform: translate(-50%,-50%);
}
/** NAVBAR */
nav{
background-color: #0C0C0C;
}
#navbarNavAltMarkup{
justify-content: space-between;
}
.logo{
color:#F46036;
}
.navlink.custom-link{
color:#818479;
}
.navlink.custom-link:hover{
color:#F46036;
}
.navlink.custom-link.active{
color:#349AF4;
}
/* .nav-link:nth-child(n+1)::before{
content:' ';
background-color: #818479;
width:5px;
height:5px;
} */
/** ARTISTS */
#artists{
background-color: #3d3f3a2c;
}
.artist{
padding: 1rem 2rem 0 2rem;
}
.artist > a > img{
width:min-content;
height: min-content;
filter:grayscale() brightness(0.2);
}
.artist > a {
position:relative;
}
.artist-name{
position:absolute;
left:50%;
top:70%;
transform: translate(-50%,-50%);
}
.artist-genre{
color:#818479;
text-align: center;
}
/** PRESS */
.article{
margin:auto;
width:50%;
border-bottom: 2px solid #818479;
padding-top:2rem;
padding-bottom:2rem;
}
.date,
.from-website{
font-weight: lighter;
font-size: 0.9rem;
}
.title-of-article{
color:#F46036;
display: block;
text-transform: uppercase;
}
.title-of-article:hover{
color:#349AF4;
}
/** ABOUT */
#about{
width:100vw;
background-image:url("https://images.unsplash.com/photo-1613504061138-f3cdaeb7bbf7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=667&q=80") ;
}
/** need as dark-overlay bugs this section*/
#about > *{
z-index:301;
background-color: rgba(0, 0, 0, 0.8);
}
.about-content{
margin-bottom:2rem;
overflow:auto;
}
@media (min-width:576px){
.about-content{
padding-left:3rem;
padding-right:3rem;
}
}
/** CONTACTS*/
#contacts{
}
.contacts-content{
overflow:auto;
text-align: center;
margin-top: 2rem;
}
.contacts-content > .logo,
.contacts-content > .contact-condition,
.contacts-content > .social {
margin-top:1rem;
margin-bottom:2rem;
}
address{
margin-top:3rem;
margin-bottom:1rem;
}
/** FOOTER */
footer{
background-color: rgb(40, 41, 37);
} | style/style.css | html{
max-width:100%;
overflow-x: hidden;
}
html::-webkit-scrollbar-track {
background-color: #F46036;
border-radius: 100px;
}
html::-webkit-scrollbar-thumb {
background-color: #818479;
border-radius: 100px;
}
body{
background-color:#0C0C0C;
color: #FBFEF9;
font-size:1.5rem;
font-family: 'Goldman', cursive;
}
h1, h2{
font-family: 'Zen Dots', cursive;
}
section{
position:relative;
min-height: 100vh;
margin-top: 3rem;
margin-bottom: 3rem;
}
.section-title{
height: 15vh;
margin-top:5rem;
text-align: center;
text-transform: uppercase;
text-decoration: underline;
text-decoration-color: #349AF4;
letter-spacing: 2px;
}
a{
text-decoration: none;
color: #F46036;
}
a:hover{
color:#349AF4;
}
.parallax{
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
background-position: center;
}
.behind-overlay{
z-index:300;
}
.dark-overlay{
height:100%;
width:100%;
position:absolute;
z-index:301;
background-color: rgba(0, 0, 0, 0.8);
}
i {
padding: 0 0.5rem 0 0.5rem;
}
/** HEADER */
header{
height:100vh;
position: relative;
background-image: url("https://images.unsplash.com/photo-1514824068966-23f7d658a8b9?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80");
filter:grayscale(100%);
}
.label-name{
text-align: center;
font-size: 4.5rem;
position:absolute;
top:50%;
left:50%;
transform: translate(-50%,-50%);
}
/** NAVBAR */
nav{
background-color: #0C0C0C;
}
#navbarNavAltMarkup{
justify-content: space-between;
}
.logo{
color:#F46036;
}
.navlink.custom-link{
color:#818479;
}
.navlink.custom-link:hover{
color:#F46036;
}
.navlink.custom-link.active{
color:#349AF4;
}
/* .nav-link:nth-child(n+1)::before{
content:' ';
background-color: #818479;
width:5px;
height:5px;
} */
/** ARTISTS */
#artists{
background-color: #3d3f3a2c;
}
.artist{
padding: 1rem 2rem 0 2rem;
}
.artist > a > img{
width:min-content;
height: min-content;
filter:grayscale() brightness(0.2);
}
.artist > a {
position:relative;
}
.artist-name{
position:absolute;
left:50%;
top:70%;
transform: translate(-50%,-50%);
}
.artist-genre{
color:#818479;
text-align: center;
}
/** PRESS */
.article{
margin:auto;
width:50%;
border-bottom: 2px solid #818479;
padding-top:2rem;
padding-bottom:2rem;
}
.date,
.from-website{
font-weight: lighter;
font-size: 0.9rem;
}
.title-of-article{
color:#F46036;
display: block;
text-transform: uppercase;
}
.title-of-article:hover{
color:#349AF4;
}
/** ABOUT */
#about{
width:100vw;
background-image:url("https://images.unsplash.com/photo-1613504061138-f3cdaeb7bbf7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=667&q=80") ;
}
/** need as dark-overlay bugs this section*/
#about > *{
z-index:301;
background-color: rgba(0, 0, 0, 0.8);
}
.about-content{
margin-bottom:2rem;
overflow:auto;
}
@media (min-width:576px){
.about-content{
padding-left:3rem;
padding-right:3rem;
}
}
/** CONTACTS*/
#contacts{
}
.contacts-content{
overflow:auto;
text-align: center;
margin-top: 2rem;
}
.contacts-content > .logo,
.contacts-content > .contact-condition,
.contacts-content > .social {
margin-top:1rem;
margin-bottom:2rem;
}
address{
margin-top:3rem;
margin-bottom:1rem;
}
/** FOOTER */
footer{
background-color: rgb(40, 41, 37);
} | 0.496826 | 0.069289 |
.btn, .btnA, .btnB, .btnC, .btnD, .btn_search, .c_tipsA, .c_tipsB, .c_tipsC, .pop_device_M a, .c_picShow span a, .pop_area_list dd a, .unfold_ico_up, .unfold_ico_down, .pop_message_template_list li a { background:url("../images/icon.png") no-repeat; _background:url("../images/icon.gif") no-repeat;}
.merchant_registration_tit, .merchant_detail_tit a.focus, .c_files_btn, .pop_audit_tit span { background:url("../images/repeatX.png") repeat-x;}
/*================================================================================================ 列表页 ================================================================================================*/
/*============= con_right_main =============*/
.con_right_main{ padding:0 20px 65px; min-width:1192px; width:auto !important; width:1192px;}
/* con_search */
.con_search{ background:#FFF; border:1px solid #d3dce2; border-top:none; position:relative; padding:12px 0; margin-bottom:15px;}
/* con_search_top */
.con_search_top{ width:100%;}
.con_search_top p{ padding:6px 0;}
.con_search_top p .group{ display:inline-block; padding:0 5px;}
.con_search_top p .group label{ display:inline-block; vertical-align:middle; width:90px; height:33px; line-height:33px; overflow:hidden; text-align:right; padding-right:5px;}
.btn_search{ background-position:0 -84px; display:inline-block; width:53px; height:34px; line-height:34px; overflow:hidden; padding-left:40px; font-size:14px; font-weight:bold; color:#FFF !important; text-shadow:1px 1px 0 #2675bd; vertical-align:middle;}
/* 输入框 / 简单下拉 / 日期选择 / 多重下拉 / 多级选择 */
.c_select, .c_input_text, .c_textarea, .c_time_control, .c_tags, .c_select_many, .c_select_tree { background-color:#fafcfe; border:1px solid #d3dce2; box-shadow:1px 2px 2px #e7e9eb inset; border-radius:3px; overflow:hidden; display:inline-block; vertical-align:middle;}
.c_select{ width:161px; height:33px; line-height:33px; padding:6px; color:#575a5d;}
.c_input_text{ width:282px; height:31px; line-height:31px; padding:0 5px; color:#575a5d;}
.auto_hint{ color:#b1bac0 !important;}
.c_input_text_disabled{ background-color:#dfe4e8; box-shadow:1px 2px 2px #ced3d7 inset; color:#9aa4aa;}
.c_textarea, .c_tags, .c_select_many, .c_select_tree { width:516px; height:140px; overflow:auto; padding:5px; color:#575a5d;}
.c_time_control{ background:#fafcfe url("../images/c_time_control.png") 95% center no-repeat; display:inline-block; width:96px; height:31px; line-height:31px; padding:0 28px 0 5px; color:#575a5d; _background:#fafcfe url("../images/c_time_control.gif") 95% center no-repeat;}
.c_time_show .txt{ display:inline-block; height:33px; line-height:33px; overflow:hidden; vertical-align:middle; padding:0 10px;}
.c_tags span{ float:left; display:block; height:30px; line-height:30px; overflow:hidden; padding:0 10px; background:#81befb; border:1px solid #70b0f0; border-radius:2px; color:#FFF; margin:5px;}
.c_tags span a{ color:#FFF; font-size:12px; font-weight:bold; font-family:"Arial Black"; margin-left:10px;}
.c_tags span a:hover{ color:#124786;}
.c_select_many{ width:208px; height:154px;}
.c_select_many option{ padding:7px 10px;}
.add_list_table .c_time_control{ width:175px;}
.detail_list_table .c_tags, .detail_list_table .c_select_tree{ border:none; box-shadow:none; background:none; height:auto; overflow:hidden;}
/*--- 树形插件样式重定义 ---*/
.c_select_tree{ width:357px; height:449px; overflow-x:auto; overflow-y:scroll;}
.ztree li{ line-height:28px !important;}
.ztree li span.button.switch{ width:11px !important; height:11px !important; margin-right:10px;}
.ztree li span.button.roots_close, .ztree li span.button.center_close, .ztree li span.button.bottom_close { background:url("../images/ztree_ico_close.png") center center no-repeat !important;}
.ztree li span.button.roots_open, .ztree li span.button.center_open, .ztree li span.button.bottom_open { background:url("../images/ztree_ico_open.png") center center no-repeat !important;}
.ztree li ul.line, .ztree li span.button.center_docu, .ztree li span.button.bottom_docu { background:none !important;}
.ztree li span.button.ico_open, .ztree li span.button.ico_close, .ztree li span.button.ico_docu{ width:3px; background:none;}
/* 按钮 */
.btn, .btnA, .btnB, .btnC, .btnD { display:block; width:116px; height:35px; line-height:35px; overflow:hidden; text-align:center; font-size:14px; font-weight:bold; vertical-align:middle; font-family:"宋体";}
.btn{ background-position:0 -191px; width:81px; height:30px; line-height:30px; color:#444 !important; text-shadow:1px 1px 0 #f4f2f2; font-size:13px; font-weight:normal;}
.btnA, .btnC { background-position:0 -119px; color:#FFF !important; text-shadow:1px 1px 0 #76a142;}
.btnB, .btnD { background-position:0 -155px; color:#444 !important; text-shadow:1px 1px 0 #eaeaea;}
.btnC, .btnD { background-position:0 -222px; width:111px; height:47px; line-height:46px; font-size:16px;}
.btnD{ background-position:0 -270px;}
/* 操作按钮 */
.btn_icon { background:url("../images/operating_icon.png") no-repeat; _background:url("../images/operating_icon.gif") no-repeat; display:inline-block; width:16px; height:16px; overflow:hidden; font-size:0; line-height:0;}
.btn_edit{ background-position:0 0;}
.btn_detail{ background-position:0 -50px;}
.btn_online{ background-position:0 -100px;}
.btn_delete{ background-position:0 -150px;}
.btn_up{ background-position:0 -200px;}
.btn_down{ background-position:0 -250px;}
.btn_enable{ background-position:0 -300px;}
.btn_disabled{ background-position:0 -350px;}
.btn_empty{ background-position:0 -400px;}
.btn_pass{ background-position:0 -450px;}
.btn_refuse{ background-position:0 -500px;}
.btn_add{ background-position:0 -550px;}
.btn_view{ background-position:0 -600px;}
.btn_offline{ background-position:0 -650px;}
.btn_effect{ background-position:0 -700px;}
.btn_examine{ background-position:0 -750px;}
/* 提示 */
.c_tipsA, .c_tipsB, .c_tipsC { background-position:-135px 10px; display:block; height:43px; line-height:43px; overflow:hidden; padding:0 15px 0 50px; background-color:#ffedad; border:1px solid #e5d266;}
.c_tipsB{ background-position:-135px -40px; background-color:#effeb9; border-color:#c1d779;}
.c_tipsC{ background-position:-135px -90px; background-color:#fccac1; border-color:#e18b7c;}
/* 自动门按钮 */
.c_btn, .c_btn em { background:url("../images/btn_bg.png") no-repeat;}
.c_btn { display:inline-block; height:33px; line-height:33px; overflow:hidden; padding-left:32px; font-size:14px; color:#FFF !important; text-shadow:1px 0 1px #444; font-weight:bold;}
.c_btn em { display:inline-block; padding-right:32px; cursor:pointer;}
.c_btnA{ background-position:left -36px;}
.c_btnA em{ background-position:right -36px;}
.c_btnB{ background-position:left -69px;}
.c_btnB em{ background-position:right -69px;}
.c_btnC{ background-position:left -102px;}
.c_btnC em{ background-position:right -102px;}
.c_btnD{ background-position:left -135px; color:#444 !important; text-shadow:1px 0 1px #fff;}
.c_btnD em{ background-position:right -135px;}
.c_btnE{ background-position:left -168px;}
.c_btnE em{ background-position:right -168px;}
.c_btnF{ background-position:left -201px;}
.c_btnF em{ background-position:right -201px;}
.c_btnG{ background-position:left -234px;}
.c_btnG em{ background-position:right -234px;}
.c_btnH{ background-position:left -267px; height:43px; line-height:43px; padding-left:42px; font-size:18px; font-family:"微软雅黑";}
.c_btnH em{ background-position:right -267px; padding-right:42px;}
.c_btnI{ background-position:left -310px; height:22px; line-height:22px; padding-left:8px; font-size:12px; font-family:"微软雅黑"; text-shadow:none;}
.c_btnI em{ background-position:right -310px; padding-right:8px;}
/* con_search_btn */
.con_search_btn{ border-left:1px solid #d3dce2; margin:0 30px;}
.con_search_btn .btnA, .con_search_btn .btnB{ margin-left:30px;}
.con_search_btn .btnB{ margin-top:17px;}
/* table_list */
.table_list{ width:100%;}
.table_list tr.even td{ background-color:#FFF;}
.table_list tr.hover td, .table_list tr:hover td { background-color:#fdfff2;}
.table_list th{ line-height:18px; overflow:hidden; background-color:#c6daef; border-bottom:1px solid #c7d4e3; padding:12px 0;}
.table_list td{ line-height:18px; overflow:hidden; background-color:#fafcfe; text-align:center; border-bottom:1px solid #d3dce2; padding:11px 0;}
.table_list td label{ vertical-align:middle;}
.table_list td a{ display:inline-block; vertical-align:middle; color:#049; margin:0 8px;}
.table_list td a:hover{ text-decoration:underline;}
.table_list tr.tr td{ background:url("../images/table_list_tr.jpg") 0 0 repeat-x !important; height:42px; line-height:42px; overflow:hidden; padding:0;}
.table_list tr.tr td span.icon{ display:inline-block; width:25px; height:25px; overflow:hidden; vertical-align:middle;}
.unfold_ico_up, .unfold_ico_down { display:inline-block; width:14px; height:14px; overflow:hidden; vertical-align:middle;}
.unfold_ico_up{ background-position:-97px -191px;}
.unfold_ico_down{ background-position:-82px -191px;}
table.list .desc, table.list .desc:hover {background: url(../images/list_desc.gif) right -120px no-repeat;}
table.list .asc, table.list .asc:hover {background: url(../images/list.gif) right -150px no-repeat;}
.table_list2{ table-layout:auto; width:686px;}
.table_list2 th{ border:1px solid #fff;}
.table_list2 td{ border:1px solid #EAF1F9;}
.table_list3{ table-layout:auto; width:546px; border:1px solid #D3DCE2;}
.table_list3 .disabled td{ color:#CCC;}
.table_list3 .disabled td a{ cursor:default;}
.table_list3 .disabled td a.btn_add{ background-position:0 -800px;}
.table_list3 .disabled td a.btn_empty{ background-position:0 -850px;}
/* table_bottom */
.table_bottom_checkbox{ padding:8px 0 0 20px;}
.table_bottom_checkbox .btn{ display:inline-block; margin-left:10px;}
/*================================================================================================ 添加商品 ================================================================================================*/
.padT20{ padding-top:20px !important;}
.padB56{ padding-bottom:56px !important;}
/* add_list_table */
.add_list_table{ width:100%; margin:-12px 0;}
.add_list_table th{ width:130px; line-height:32px; text-align:right; padding:10px 20px; background-color:#f8fafc; border-bottom:1px solid #FFF; vertical-align:top;}
.add_list_table td{ background-color:#fff; border-bottom:1px solid #FFF; padding:10px 20px; *position:relative;}
.add_list_table td .in_num_text{ display:inline-block; line-height:33px; padding-left:10px; vertical-align:bottom;}
.add_list_table td .tips{ display:inline-block;}
.add_list_table td .btnB{ margin-bottom:10px;}
.add_list_table td .c_input_text{ width:198px;}
.add_list_table td .c_select{ width:210px;}
.c_files_upload{ position:relative;}
.c_files_upload input.files{ font-size:140px; cursor:pointer; filter:alpha(opacity=0); -moz-opacity:0; opacity:0; position:absolute; top:0; right:0; z-index:20;}
.c_files_upload .c_files_upload_btn{ display:block; width:100%; text-align:center; cursor:pointer; position:absolute; top:0; left:0;}
.c_files_view{ width:288px; height:33px; overflow:hidden; position:relative;}
.c_files_view input.files{ font-size:140px; cursor:pointer; filter:alpha(opacity=0); -moz-opacity:0; opacity:0; position:absolute; top:0; right:0; z-index:20;}
.c_files_view .c_input_text{ float:left; width:198px !important; border-radius:3px 0 0 3px;}
.c_files_view .c_files_btn{ background-position:0 -294px; float:left; display:inline-block; vertical-align:middle; width:79px; height:33px; line-height:33px; overflow:hidden; cursor:pointer; border:1px solid #d3dce2; border-radius:0 3px 3px 0; margin-left:-1px;}
.upload_pic_mod{ padding-bottom:7px;}
.upload_icon_show, .upload_pic_show { display:table-cell !important; width:114px; height:114px; line-height:114px; *font-size:114px; display:inline-block; text-align:center; vertical-align:middle; overflow:hidden; background:#FFF; border:1px solid #d3dce2; box-shadow:0 0 3px #ddd; float:left; margin-right:10px;}
.upload_pic_show{ width:140px; height:140px; line-height:140px; *font-size:140px;}
.upload_icon_show img, .upload_pic_show img { max-width:114px; max-height:114px; vertical-align:middle; font-size:13px;}
.upload_pic_show img{ max-width:140px; max-height:140px;}
.btn_upload_add{ background:#fff url("../images/btn_upload_add.jpg") center center no-repeat; display:inline-block; width:140px; height:140px; overflow:hidden;}
/* 添加商品重置table_list */
.add_list_table td .table_list tr.even td{ background-color:#FFF;}
.add_list_table td .table_list tr.hover td, .add_list_table td .table_list tr:hover td { background-color:#fdfff2;}
.add_list_table td .table_list th{ width:auto; line-height:18px; text-align:center; padding:12px 0; background-color:#c6daef; border-bottom-color:#c7d4e3; vertical-align:middle;}
.add_list_table td .table_list td{ padding:11px 0; background-color:#f9fcfe; border-bottom-color:#d3dce2;}
/* main_slide_con */
.main_slide_con{ background:url("../images/main_slide_bg.png") 0 0 repeat; width:100%; height:75px; line-height:75px; overflow:hidden; border:1px solid #b6c2ce; text-align:center; position:fixed; left:0; bottom:0; z-index:99; _position:absolute; _left:expression(eval(document.documentElement.scrollLeft)); _top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0))); _padding:0 10px;}
.main_slide_con .btnC, .main_slide_con .btnD { display:inline-block; margin:0 2px; _margin-top:14px;}
/*================================================================================================ 商户注册步骤 ================================================================================================*/
/* merchant_registration_con */
.merchant_registration_con{ padding:8px 20px;}
.merchant_registration_con .tab_tit{ background-position:0 -199px; height:53px; border-bottom:1px solid #d3dce2;}
.merchant_registration_con .tab_tit_show{ border-bottom:none; height:44px; padding:9px 4px 0;}
.merchant_registration_con .tab_tit_show span{ float:left; display:block; width:192px; height:44px; line-height:44px; overflow:hidden; text-align:center; color:#124786; font-size:14px; font-weight:bold; background:#f6fafe; border:1px solid #d3dce2; border-bottom:none; border-radius:4px 4px 0 0; margin:0 5px -1px; position:relative; z-index:2;}
.merchant_registration_con .tab_tit_show span.fulfil{ background:#d4e2f2;}
.merchant_registration_con .tab_tit_show span.cur{ background:#fff;}
.merchant_registration_area{ border:1px solid #d3dce2; border-top:none; position:relative; padding:20px 0; min-height:310px; height:auto !important; height:310px;}
.merchant_registration_table{ margin:0;}
.merchant_registration_table th{ background:none; border-bottom:none; padding:10px 30px;}
.merchant_registration_table td{ background:none; border-bottom:none; padding:10px 0;}
/*================================================================================================ 商户详细页 ================================================================================================*/
/* merchant_detail_con */
.merchant_detail_con{ margin:-12px 0;}
.merchant_detail_tit{ height:42px; padding:6px 10px 0; background:#c6daef; border-bottom:1px solid #bdcbdb;}
.merchant_detail_tit a{ display:inline-block; height:42px; line-height:42px; overflow:hidden; padding:0 26px; font-weight:bold; margin:0 1px -1px; position:relative; z-index:2;}
.merchant_detail_tit a.focus{ background-position:0 -252px; border:1px solid #bdcbdb; border-bottom:none; border-radius:4px 4px 0 0;}
.merchant_detail_show{ padding:15px 0;}
.merchant_detail_show h3{ height:46px; line-height:46px; padding:0 36px; background:#e8edf2; color:#000;}
.merchant_detail_show .add_list_table{ margin:0;}
.merchant_detail_show .add_list_table td.tit{ width:110px; line-height:32px; text-align:right; padding:10px 30px; font-weight:bold; vertical-align:top;}
.merchant_detail_show .merchant_pic{ display:block; width:340px; height:119px; overflow:hidden; padding:1px; background:#FAFCFE; border:1px solid #D3DCE2; border-radius:3px; position:relative;}
.merchant_detail_show .merchant_pic img{ width:340px; height:119px;}
.merchant_detail_show .merchant_pic .btn{ position:absolute; right:5px; bottom:5px; display:none;}
.merchant_detail_show .page{ text-align:center;}
/*================================================================================================ 新增授权 ================================================================================================*/
/* addAuthorize_con */
.addAuthorize_con{ padding:0 30px;}
.addAuthorize_info{ padding-top:8px;}
.addAuthorize_info .c_input_text{ margin-right:5px;}
.addAuthorize_con h3{ height:32px; line-height:32px; overflow:hidden; font-size:13px; margin-top:20px;}
.addAuthorize_con .table_list3{ width:508px;}
/* addAuthorize_table */
.addAuthorize_table{ width:685px; table-layout:auto;}
.addAuthorize_table tr.even th, .addAuthorize_table tr.even td { background:#f9fcfe;}
.addAuthorize_table th{ border:1px solid #d3dce2; width:110px; height:33px; line-height:33px; padding:10px 20px;}
.addAuthorize_table td{ border:1px solid #d3dce2; height:33px; line-height:33px; padding:10px 20px;}
.addAuthorize_table td .c_input_text{ width:37px; margin:0 5px;}
/* dl_addAuthorize_list */
.dl_addAuthorize_list{}
.dl_addAuthorize_list dt{ font-weight:bold;}
.dl_addAuthorize_list dd{ padding:0 20px;}
.dl_addAuthorize_list dd label{ margin-right:20px;}
/*================================================================================================ 定时推送 ================================================================================================*/
/* timingPush_table */
.timingPush_table{}
.timingPush_table .c_textarea{ display:block;}
.timingPush_table .pop_information_show{ width:488px;}
.timingPush_table .timingPush_tit{ padding:6px 0;}
.timingPush_table .timingPush_tit label{ display:inline-block; vertical-align:middle; width:86px; line-height:35px; overflow:hidden; margin-right:20px;}
.timingPush_table .timingPush_tit .btnB{ display:inline-block; vertical-align:middle; margin:0;}
/* timingPush_show */
.timingPush_show{ width:610px; overflow:hidden; padding:5px; background-color:#FAFCFE; border:1px solid #D3DCE2; border-radius:3px; box-shadow:1px 2px 2px #E7E9EB inset; color:#575A5D; margin-bottom:10px;}
.timingPush_mod{ line-height:33px; padding:6px 0 6px 120px;}
.timingPush_mod .tit{ float:left; display:inline-block; width:110px; line-height:33px; overflow:hidden; text-align:right; margin-left:-120px;}
.timingPush_mod .j-modle-span{ margin-right:30px;}
.timingPush_result .name{ margin-right:40px;}
.article_marketing_text{ line-height:22px; padding:5px 0;}
/*================================================================================================ 新增营销分类 ================================================================================================*/
/* ul_mp3_list */
.ul_mp3_list{ }
.ul_mp3_list li{ display:block; height:33px; line-height:33px; overflow:hidden;}
.ul_mp3_list li a{ display:inline-block; width:32px; overflow:hidden; text-align:center; height:20px; line-height:20px; vertical-align:middle; color:#999; margin:0 5px;}
.ul_mp3_list li a:hover{ background:#999; color:#FFF;}
.ul_mp3_list li a.audition_Song{ color:#70B0F0; position:relative;}
.ul_mp3_list li a.audition_Song:hover{ background:#70B0F0; color:#FFF;}
/* ul_picAddMarketing_list */
.ul_picAddMarketing_list{}
.ul_picAddMarketing_list li{ display:block; padding:6px 0 6px 84px;}
.ul_picAddMarketing_list li .pic{ float:left; display:block; width:74px; height:48px; overflow:hidden; margin-left:-84px; _margin-left:-42px;}
.ul_picAddMarketing_list li .pic img{ width:74px; height:48px;}
.ul_picAddMarketing_list li h4{ height:22px; line-height:22px; overflow:hidden; font-size:12px; font-weight:normal;}
.ul_picAddMarketing_list li .dec{ line-height:26px; font-size:12px;}
.ul_picAddMarketing_list li .dec p{ float:left; display:block; margin-right:20px;}
.ul_picAddMarketing_list li .dec p .colorText{ margin:0;}
/*================================================================================================ 弹窗样式 ================================================================================================*/
.btn_pop_close, .btn_pop_submitA, .btn_pop_submitB { background:url("../images/pop_icon.png") no-repeat; _background:url("../images/pop_icon.gif") no-repeat;}
.pop_box{ width:586px; overflow:hidden; border-radius:5px; box-shadow:0 3px 10px #999999; position:absolute; z-index:10000; display:none;}
.pop_header{ background:url("../images/pop_header_bg.jpg") 0 0 repeat-x; height:45px; overflow:hidden; border:1px solid #21518e; border-bottom:none; border-radius:5px 5px 0 0; margin-bottom:-1px; position:relative; z-index:2;}
.pop_header h3{ height:45px; line-height:45px; overflow:hidden; padding:0 16px; font-size:14px; color:#FFF;}
.btn_pop_close{ background-position:0 -170px; display:block; width:11px; height:11px; overflow:hidden; text-indent:-9999px; position:absolute; top:16px; right:15px;}
.btn_pop_close:hover{ background-position:-12px -170px;}
.pop_main{ background:#FFF; border:1px solid #575757; padding:20px;}
.pop_footer{ height:52px; overflow:hidden; text-align:center; background:#e5e5e5; border:1px solid #575757; border-top:none; border-radius:0 0 5px 5px; margin-top:-1px; position:relative; z-index:2;}
.btn_pop_submitA, .btn_pop_submitB { display:inline-block; width:93px; height:33px; line-height:33px; overflow:hidden; text-align:center; font-size:14px; color:#FFF !important; font-weight:bold; text-shadow:1px 1px 3px #666; margin:10px 10px 0;}
.btn_pop_submitA{ background-position:0 0;}
.btn_pop_submitA:hover{ background-position:0 -34px;}
.btn_pop_submitB{ background-position:0 -68px;}
.btn_pop_submitB:hover{ background-position:0 -102px;}
.pop_box_noHeader .pop_main{ border-radius:5px 5px 0 0;}
.pop_box_noFooter .pop_main{ border-radius:0 0 5px 5px;}
/*------ 选择设备 ------*/
.pop_device_show{ margin:-6px -10px;}
.pop_device_L, .pop_device_R { width:440px; overflow:hidden; border:1px solid #d3dce2; border-radius:3px; padding:10px;}
.pop_device_L .c_select{ width:100px; margin-right:10px;}
.pop_device_L .c_input_text{ width:146px; margin-right:10px;}
.pop_device_L .btn_search{ display:inline-block;}
.pop_device_R dl dd{ height:341px; overflow:auto;}
.pop_device_show dl{ padding:5px 0;}
.pop_device_show dl dt{ line-height:33px;}
.pop_device_show .table_list{ width:100%;}
.pop_device_show .table_list input[type="checkbox"]{ margin:0;}
.pop_device_show .page{ padding:10px 0;}
.pop_device_M{ width:42px; overflow:hidden; margin-left:16px; *margin-left:6px;}
.pop_device_M a{ display:block; width:42px; height:42px; overflow:hidden; text-indent:-9999px;}
.pop_device_M a.btn_pop_right{ background-position:-115px -232px; margin:147px 0 10px;}
.pop_device_M a.btn_pop_left{ background-position:-115px -275px;}
/*------ 查看详细_表格 ------*/
.pop_detailTable_top{ padding-bottom:15px;}
.pop_detailTable_top span{ display:inline-block; vertical-align:middle; height:35px; line-height:35px; overflow:hidden; color:#000; margin-right:34px;}
.pop_detailTable_top .btnB{ float:right; display:inline-block;}
.pop_detailTable_show .table_list{ width:100%;}
.pop_detailTable_show .page{ padding-bottom:0;}
/*------ 删除提示 ------*/
.pop_delete_show p{ text-align:center; padding:26px 0; font-size:14px; font-weight:bold;}
/*------ 营销方式设置 ------*/
.pop_marketingSetting_show .c_input_text{ width:66px;}
.pop_marketingSetting_show .pop_list li p, .pop_marketingSetting_show .pop_list li .tit { padding:6px 0;}
/* pop_list */
.pop_list li{ padding:6px 0 6px 110px;}
.pop_list li .tit{ float:left; display:block; width:100px; line-height:33px; text-align:right; vertical-align:top; font-weight:bold; margin-left:-110px; _margin-left:-55px;}
.pop_list li label{ padding-right:20px;}
/*------ 审核 ------*/
.pop_audit_tit{ text-align:center;}
.pop_audit_tit span{ background-position:0 -362px; display:inline-block; height:37px; line-height:37px; overflow:hidden; padding:0 30px; cursor:pointer; color:#21518e; border:1px solid #cdcdcd;}
.pop_audit_tit span.tit1{ border-radius:5px 0 0 5px;}
.pop_audit_tit span.tit2{ border-radius:0 5px 5px 0; margin-left:-1px;}
.pop_audit_tit span.focus{ background-position:0 -325px; color:#575a5d;}
.pop_audit_show{ min-height:188px; height:auto !important; height:188px;}
.pop_audit_show .pop_list{ padding:26px 0;}
.pop_audit_show .pop_list li{ padding-left:160px;}
.pop_audit_show .pop_list li .tit{ width:150px; margin-left:-160px; _margin-left:-80px;}
.pop_audit_show .c_select{ width:240px;}
.pop_audit_show .c_textarea{ width:240px; height:100px;}
/*------ 上传文件 ------*/
.pop_uploadFile_show .c_input_text{ width:276px;}
.pop_uploadFile_show .c_select{ width:108px;}
.colorText{ display:inline-block; vertical-align:middle; width:20px; height:20px; overflow:hidden; cursor:pointer; padding:1px; border:2px solid #bbb; border-radius:3px; margin-right:20px;}
.colorText em{ display:inline-block; width:20px; height:20px; overflow:hidden;}
.colorText em.colorf00{ background:#F00;}
.colorText em.color2e84d3{ background:#2e84d3;}
.colorText em.color802ed3{ background:#802ed3;}
.colorText em.colord32e2e{ background:#d32e2e;}
.colorText em.color2ed36c{ background:#2ed36c;}
.colorTextFocus{ border-color:#000;}
/*------ 上传图片 ------*/
.pop_uploadFilePic_show{ min-height:274px; height:auto !important; height:274px;}
.pop_uploadFilePic_show .pop_list{ padding:0;}
.pop_uploadFilePic_show .pop_list li p{ padding:5px 0;}
.c_picShow span{ float:left; display:block; width:117px; height:69px; padding:4px; border:1px solid #d3dce2; border-radius:2px; box-shadow:0 0 2px #d3dce2; margin:0 15px 10px 0; position:relative;}
.c_picShow span img{ width:117px; height:69px;}
.c_picShow span a{ background-position:-94px -103px; display:block; width:14px; height:14px; overflow:hidden; text-indent:-98999px; position:absolute; top:-1px; right:-1px;}
/*------ 短信营销设置 ------*/
.pop_uploadSMS_show .btnB{ margin-bottom:20px;}
.pop_uploadSMS .c_tags{ width:400px;}
/* tooltip样式定义 */
.ui-widget-content{ border:1px solid #d3dce2 !important; color:#666 !important; padding:10x 20px !important;}
.ui-tooltip, .arrow:after { background:#FFF; border: 1px solid #d3dce2; box-shadow: 0 0 5px #AAAAAA;}
.ui-tooltip { padding: 10px 20px; color: white; border-radius: 20px; font:13px '宋体'; text-transform: uppercase; box-shadow: 0 0 7px black;}
.arrow { width: 70px; height: 16px; overflow: hidden; position: absolute; left: 50%; margin-left: -35px; bottom: -16px;}
.arrow.top {top: -16px; bottom: auto;}
.arrow.left {left: 20%;}
.arrow:after {content: "";position: absolute;left: 20px;top: -20px;width: 25px;height: 25px;box-shadow: 6px 5px 9px -9px black;-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);-ms-transform: rotate(45deg);-o-transform: rotate(45deg);tranform: rotate(45deg);}
.arrow.top:after {bottom: -20px;top: auto;}
/*------ 信息_没有标题 ------*/
.pop_information_mod .textarea_show{ display:inline-block; position:relative;}
.pop_information_mod .in_num_text{ color:#9da7ad; position:absolute; right:8px; bottom:0;}
.pop_information_mod .c_input_text{ width:97px;}
.pop_information_mod .c_textarea{ width:408px;}
.pop_information_show{ display:inline-block; width:380px; padding:10px 20px; background:#fafcfe; margin-top:10px;}
.pop_information_show b{ display:block; color:#000; margin-bottom:8px;}
.pop_information_show a{ display:inline-block; color:#3366ff; margin:2px 30px 2px 0;}
.pop_information_show a:hover{ text-decoration:underline;}
/*------ 地区弹窗 ------*/
.pop_area_show .c_select{ width:100px; margin-right:10px;}
.pop_area_show .btnB{ display:inline-block;}
.pop_area_list{ border:1px solid #d3dce2; margin-top:20px;}
.pop_area_list dd{ display:block; height:42px; line-height:42px; overflow:hidden; padding:0 36px; border-bottom:1px solid #eaf1f9;}
.pop_area_list dd.noBorder{ border-bottom:none;}
.pop_area_list dd.even{ background:#f9fcfe;}
.pop_area_list dd a{ background-position:-94px -103px; display:inline-block; width:14px; height:14px; overflow:hidden; text-indent:-98999px; vertical-align:-2px; margin-left:25px;}
/*------ 视频弹窗 ------*/
.pop_video_show{ width:545px; height:326px; overflow:hidden;}
/*------ 地图弹窗 ------*/
.pop_map_show{ width:558px; height:360px; overflow:hidden; border:1px solid #e0e0e0; border-top-color:#848484; border-left-color:#848484;}
/*-------- 添加经营品牌 --------*/
.pop_addBrand{ width:472px;}
.pop_addBrand_L, .pop_addBrand_R { width:226px;}
.pop_addBrand .title{ height:22px; line-height:22px; overflow:hidden; font-family:"微软雅黑"; margin-bottom:8px;}
.pop_addBrand .title h3{ color:#627e97; font-size:14px;}
/* pop_addBrand_tags */
.pop_addBrand_tags{ width:226px; overflow:hidden; border-top:1px solid #f4dc9e; border-left:1px solid #f4dc9e; margin-bottom:5px;}
.pop_addBrand_tags span{ display:inline-block; vertical-align:middle; width:23px; height:24px; line-height:24px; overflow:hidden; text-align:center; color:#7b6554; font-size:12px; font-family:Arial; font-weight:bold; background:#f7f3e7; border-right:1px solid #f4dc9e; border-bottom:1px solid #f4dc9e; cursor:pointer; margin:1px 0 0 1px;}
.pop_addBrand_tags span.cur{ background:#f0e5c6;}
/* pop_addBrand_list_show */
.pop_addBrand_list_show{ height:185px; overflow:hidden; overflow-y:auto; background:#fbf9f3; border:1px solid #f9edce;}
.ul_pop_addBrand_list{ padding:6px;}
.ul_pop_addBrand_list li{ line-height:22px; color:#7b6554; line-height:22px;}
.ul_pop_addBrand_list li .icon{ background:url("../images/pop_addBrand_list_ico.png") 0 0 no-repeat; display:inline-block; vertical-align:middle; width:12px; height:12px; overflow:hidden; margin-right:6px; cursor:pointer;}
.ul_pop_addBrand_list li .cur .icon{ background:url("../images/pop_addBrand_list_ico.png") 0 -38px no-repeat;}
.ul_pop_addBrand_down{ padding:5px 18px;}
.hidden {display: none;}
/* pop_addBrand_R */
.pop_addBrand_R .pop_addBrand_list_show{ padding:6px; background:#FFF; border:1xp solid #f5e3ce;}
.pop_addBrand_R .pop_addBrand_list_show li{ display:block; height:34px; line-height:34px; overflow:hidden; padding:0 30px 0 10px; background:#fbf9f3; border:1px solid #f9edce; margin-bottom:5px; position:relative;}
.pop_addBrand_R .pop_addBrand_list_show li a{ float:right; display:block; width:16px; height:16px; overflow:hidden; text-indent:-9999px; position:absolute; top:9px; right:7px;}
.pop_addBrand_list_show li a.j-all-add, .pop_addBrand_list_show li a.j-li-add, .pop_addBrand_list_show li a.j-all-del, .pop_addBrand_list_show li a.j-li-del { background:url("../images/operating_icon.png") 0 -500px no-repeat; _background:url("../images/operating_icon.gif") 0 -500px no-repeat;}
.pop_addBrand_list_show li a.j-all-add, .pop_addBrand_list_show li a.j-li-add{ background-position:0 -550px;}
/*-------- 双选器重定义 --------*/
.pop_addBrand_sel .pop_addBrand_list_show li a{ float:right; display:block; width:16px; height:16px; overflow:hidden; text-indent:-9999px; margin:3px 0 0;}
.pop_addBrand_sel .pop_addBrand_list_show li .ul_pop_addBrand_down{ padding:5px 10px 5px 24px;}
/*-------- 定时推送设置弹窗 --------*/
.j-special-pop .c_tags{ height:60px;}
/* pop_message_template_list */
.pop_message_template_list{ width:500px; background:#F7FBFE; padding:7px 14px; margin:0 auto;}
.pop_message_template_list li{ float:left; display:block; padding:0; margin:2px 10px;}
.pop_message_template_list li a{ background-position:0 -318px; display:block; width:146px; height:35px; line-height:33px; overflow:hidden; text-align:center; color:#3282C7 !important;}
/*-------- 按商户授权_商户选择/商户类型 --------*/
.pop_merchant .pop_merchant_show{ text-align:center;}
.pop_merchant_show label{ display:inline-block; margin:5px 12px;}
/*-------- 短信提醒 --------*/
.pop_SMS h4{ line-height:30px; color:#000; font-size:14px; font-family:"微软雅黑"; font-weight:bold;}
.pop_tips{ line-height:22px; overflow:hidden; padding:7px 18px; background:#FDF9D9; border:1px solid #F5E3CE; font-size:13px; color:#555;}
.pop_SMS_top{ margin:10px 0;}
.pop_SMS_top .c_textarea{ width:672px; height:77px;}
.pop_SMS_top .pop_information_show{ display:block; width:auto;}
.pop_SMS_top .btn_con{ text-align:center;}
.pop_SMS_bottom h4{ font-weight:normal;}
.pop_SMS_bottom .table_list2 td.dec{ text-align:left; padding:11px;} | monkey--qos-server/monkey--qos-server-statistics/src/main/webapp/static/css/style.css | .btn, .btnA, .btnB, .btnC, .btnD, .btn_search, .c_tipsA, .c_tipsB, .c_tipsC, .pop_device_M a, .c_picShow span a, .pop_area_list dd a, .unfold_ico_up, .unfold_ico_down, .pop_message_template_list li a { background:url("../images/icon.png") no-repeat; _background:url("../images/icon.gif") no-repeat;}
.merchant_registration_tit, .merchant_detail_tit a.focus, .c_files_btn, .pop_audit_tit span { background:url("../images/repeatX.png") repeat-x;}
/*================================================================================================ 列表页 ================================================================================================*/
/*============= con_right_main =============*/
.con_right_main{ padding:0 20px 65px; min-width:1192px; width:auto !important; width:1192px;}
/* con_search */
.con_search{ background:#FFF; border:1px solid #d3dce2; border-top:none; position:relative; padding:12px 0; margin-bottom:15px;}
/* con_search_top */
.con_search_top{ width:100%;}
.con_search_top p{ padding:6px 0;}
.con_search_top p .group{ display:inline-block; padding:0 5px;}
.con_search_top p .group label{ display:inline-block; vertical-align:middle; width:90px; height:33px; line-height:33px; overflow:hidden; text-align:right; padding-right:5px;}
.btn_search{ background-position:0 -84px; display:inline-block; width:53px; height:34px; line-height:34px; overflow:hidden; padding-left:40px; font-size:14px; font-weight:bold; color:#FFF !important; text-shadow:1px 1px 0 #2675bd; vertical-align:middle;}
/* 输入框 / 简单下拉 / 日期选择 / 多重下拉 / 多级选择 */
.c_select, .c_input_text, .c_textarea, .c_time_control, .c_tags, .c_select_many, .c_select_tree { background-color:#fafcfe; border:1px solid #d3dce2; box-shadow:1px 2px 2px #e7e9eb inset; border-radius:3px; overflow:hidden; display:inline-block; vertical-align:middle;}
.c_select{ width:161px; height:33px; line-height:33px; padding:6px; color:#575a5d;}
.c_input_text{ width:282px; height:31px; line-height:31px; padding:0 5px; color:#575a5d;}
.auto_hint{ color:#b1bac0 !important;}
.c_input_text_disabled{ background-color:#dfe4e8; box-shadow:1px 2px 2px #ced3d7 inset; color:#9aa4aa;}
.c_textarea, .c_tags, .c_select_many, .c_select_tree { width:516px; height:140px; overflow:auto; padding:5px; color:#575a5d;}
.c_time_control{ background:#fafcfe url("../images/c_time_control.png") 95% center no-repeat; display:inline-block; width:96px; height:31px; line-height:31px; padding:0 28px 0 5px; color:#575a5d; _background:#fafcfe url("../images/c_time_control.gif") 95% center no-repeat;}
.c_time_show .txt{ display:inline-block; height:33px; line-height:33px; overflow:hidden; vertical-align:middle; padding:0 10px;}
.c_tags span{ float:left; display:block; height:30px; line-height:30px; overflow:hidden; padding:0 10px; background:#81befb; border:1px solid #70b0f0; border-radius:2px; color:#FFF; margin:5px;}
.c_tags span a{ color:#FFF; font-size:12px; font-weight:bold; font-family:"Arial Black"; margin-left:10px;}
.c_tags span a:hover{ color:#124786;}
.c_select_many{ width:208px; height:154px;}
.c_select_many option{ padding:7px 10px;}
.add_list_table .c_time_control{ width:175px;}
.detail_list_table .c_tags, .detail_list_table .c_select_tree{ border:none; box-shadow:none; background:none; height:auto; overflow:hidden;}
/*--- 树形插件样式重定义 ---*/
.c_select_tree{ width:357px; height:449px; overflow-x:auto; overflow-y:scroll;}
.ztree li{ line-height:28px !important;}
.ztree li span.button.switch{ width:11px !important; height:11px !important; margin-right:10px;}
.ztree li span.button.roots_close, .ztree li span.button.center_close, .ztree li span.button.bottom_close { background:url("../images/ztree_ico_close.png") center center no-repeat !important;}
.ztree li span.button.roots_open, .ztree li span.button.center_open, .ztree li span.button.bottom_open { background:url("../images/ztree_ico_open.png") center center no-repeat !important;}
.ztree li ul.line, .ztree li span.button.center_docu, .ztree li span.button.bottom_docu { background:none !important;}
.ztree li span.button.ico_open, .ztree li span.button.ico_close, .ztree li span.button.ico_docu{ width:3px; background:none;}
/* 按钮 */
.btn, .btnA, .btnB, .btnC, .btnD { display:block; width:116px; height:35px; line-height:35px; overflow:hidden; text-align:center; font-size:14px; font-weight:bold; vertical-align:middle; font-family:"宋体";}
.btn{ background-position:0 -191px; width:81px; height:30px; line-height:30px; color:#444 !important; text-shadow:1px 1px 0 #f4f2f2; font-size:13px; font-weight:normal;}
.btnA, .btnC { background-position:0 -119px; color:#FFF !important; text-shadow:1px 1px 0 #76a142;}
.btnB, .btnD { background-position:0 -155px; color:#444 !important; text-shadow:1px 1px 0 #eaeaea;}
.btnC, .btnD { background-position:0 -222px; width:111px; height:47px; line-height:46px; font-size:16px;}
.btnD{ background-position:0 -270px;}
/* 操作按钮 */
.btn_icon { background:url("../images/operating_icon.png") no-repeat; _background:url("../images/operating_icon.gif") no-repeat; display:inline-block; width:16px; height:16px; overflow:hidden; font-size:0; line-height:0;}
.btn_edit{ background-position:0 0;}
.btn_detail{ background-position:0 -50px;}
.btn_online{ background-position:0 -100px;}
.btn_delete{ background-position:0 -150px;}
.btn_up{ background-position:0 -200px;}
.btn_down{ background-position:0 -250px;}
.btn_enable{ background-position:0 -300px;}
.btn_disabled{ background-position:0 -350px;}
.btn_empty{ background-position:0 -400px;}
.btn_pass{ background-position:0 -450px;}
.btn_refuse{ background-position:0 -500px;}
.btn_add{ background-position:0 -550px;}
.btn_view{ background-position:0 -600px;}
.btn_offline{ background-position:0 -650px;}
.btn_effect{ background-position:0 -700px;}
.btn_examine{ background-position:0 -750px;}
/* 提示 */
.c_tipsA, .c_tipsB, .c_tipsC { background-position:-135px 10px; display:block; height:43px; line-height:43px; overflow:hidden; padding:0 15px 0 50px; background-color:#ffedad; border:1px solid #e5d266;}
.c_tipsB{ background-position:-135px -40px; background-color:#effeb9; border-color:#c1d779;}
.c_tipsC{ background-position:-135px -90px; background-color:#fccac1; border-color:#e18b7c;}
/* 自动门按钮 */
.c_btn, .c_btn em { background:url("../images/btn_bg.png") no-repeat;}
.c_btn { display:inline-block; height:33px; line-height:33px; overflow:hidden; padding-left:32px; font-size:14px; color:#FFF !important; text-shadow:1px 0 1px #444; font-weight:bold;}
.c_btn em { display:inline-block; padding-right:32px; cursor:pointer;}
.c_btnA{ background-position:left -36px;}
.c_btnA em{ background-position:right -36px;}
.c_btnB{ background-position:left -69px;}
.c_btnB em{ background-position:right -69px;}
.c_btnC{ background-position:left -102px;}
.c_btnC em{ background-position:right -102px;}
.c_btnD{ background-position:left -135px; color:#444 !important; text-shadow:1px 0 1px #fff;}
.c_btnD em{ background-position:right -135px;}
.c_btnE{ background-position:left -168px;}
.c_btnE em{ background-position:right -168px;}
.c_btnF{ background-position:left -201px;}
.c_btnF em{ background-position:right -201px;}
.c_btnG{ background-position:left -234px;}
.c_btnG em{ background-position:right -234px;}
.c_btnH{ background-position:left -267px; height:43px; line-height:43px; padding-left:42px; font-size:18px; font-family:"微软雅黑";}
.c_btnH em{ background-position:right -267px; padding-right:42px;}
.c_btnI{ background-position:left -310px; height:22px; line-height:22px; padding-left:8px; font-size:12px; font-family:"微软雅黑"; text-shadow:none;}
.c_btnI em{ background-position:right -310px; padding-right:8px;}
/* con_search_btn */
.con_search_btn{ border-left:1px solid #d3dce2; margin:0 30px;}
.con_search_btn .btnA, .con_search_btn .btnB{ margin-left:30px;}
.con_search_btn .btnB{ margin-top:17px;}
/* table_list */
.table_list{ width:100%;}
.table_list tr.even td{ background-color:#FFF;}
.table_list tr.hover td, .table_list tr:hover td { background-color:#fdfff2;}
.table_list th{ line-height:18px; overflow:hidden; background-color:#c6daef; border-bottom:1px solid #c7d4e3; padding:12px 0;}
.table_list td{ line-height:18px; overflow:hidden; background-color:#fafcfe; text-align:center; border-bottom:1px solid #d3dce2; padding:11px 0;}
.table_list td label{ vertical-align:middle;}
.table_list td a{ display:inline-block; vertical-align:middle; color:#049; margin:0 8px;}
.table_list td a:hover{ text-decoration:underline;}
.table_list tr.tr td{ background:url("../images/table_list_tr.jpg") 0 0 repeat-x !important; height:42px; line-height:42px; overflow:hidden; padding:0;}
.table_list tr.tr td span.icon{ display:inline-block; width:25px; height:25px; overflow:hidden; vertical-align:middle;}
.unfold_ico_up, .unfold_ico_down { display:inline-block; width:14px; height:14px; overflow:hidden; vertical-align:middle;}
.unfold_ico_up{ background-position:-97px -191px;}
.unfold_ico_down{ background-position:-82px -191px;}
table.list .desc, table.list .desc:hover {background: url(../images/list_desc.gif) right -120px no-repeat;}
table.list .asc, table.list .asc:hover {background: url(../images/list.gif) right -150px no-repeat;}
.table_list2{ table-layout:auto; width:686px;}
.table_list2 th{ border:1px solid #fff;}
.table_list2 td{ border:1px solid #EAF1F9;}
.table_list3{ table-layout:auto; width:546px; border:1px solid #D3DCE2;}
.table_list3 .disabled td{ color:#CCC;}
.table_list3 .disabled td a{ cursor:default;}
.table_list3 .disabled td a.btn_add{ background-position:0 -800px;}
.table_list3 .disabled td a.btn_empty{ background-position:0 -850px;}
/* table_bottom */
.table_bottom_checkbox{ padding:8px 0 0 20px;}
.table_bottom_checkbox .btn{ display:inline-block; margin-left:10px;}
/*================================================================================================ 添加商品 ================================================================================================*/
.padT20{ padding-top:20px !important;}
.padB56{ padding-bottom:56px !important;}
/* add_list_table */
.add_list_table{ width:100%; margin:-12px 0;}
.add_list_table th{ width:130px; line-height:32px; text-align:right; padding:10px 20px; background-color:#f8fafc; border-bottom:1px solid #FFF; vertical-align:top;}
.add_list_table td{ background-color:#fff; border-bottom:1px solid #FFF; padding:10px 20px; *position:relative;}
.add_list_table td .in_num_text{ display:inline-block; line-height:33px; padding-left:10px; vertical-align:bottom;}
.add_list_table td .tips{ display:inline-block;}
.add_list_table td .btnB{ margin-bottom:10px;}
.add_list_table td .c_input_text{ width:198px;}
.add_list_table td .c_select{ width:210px;}
.c_files_upload{ position:relative;}
.c_files_upload input.files{ font-size:140px; cursor:pointer; filter:alpha(opacity=0); -moz-opacity:0; opacity:0; position:absolute; top:0; right:0; z-index:20;}
.c_files_upload .c_files_upload_btn{ display:block; width:100%; text-align:center; cursor:pointer; position:absolute; top:0; left:0;}
.c_files_view{ width:288px; height:33px; overflow:hidden; position:relative;}
.c_files_view input.files{ font-size:140px; cursor:pointer; filter:alpha(opacity=0); -moz-opacity:0; opacity:0; position:absolute; top:0; right:0; z-index:20;}
.c_files_view .c_input_text{ float:left; width:198px !important; border-radius:3px 0 0 3px;}
.c_files_view .c_files_btn{ background-position:0 -294px; float:left; display:inline-block; vertical-align:middle; width:79px; height:33px; line-height:33px; overflow:hidden; cursor:pointer; border:1px solid #d3dce2; border-radius:0 3px 3px 0; margin-left:-1px;}
.upload_pic_mod{ padding-bottom:7px;}
.upload_icon_show, .upload_pic_show { display:table-cell !important; width:114px; height:114px; line-height:114px; *font-size:114px; display:inline-block; text-align:center; vertical-align:middle; overflow:hidden; background:#FFF; border:1px solid #d3dce2; box-shadow:0 0 3px #ddd; float:left; margin-right:10px;}
.upload_pic_show{ width:140px; height:140px; line-height:140px; *font-size:140px;}
.upload_icon_show img, .upload_pic_show img { max-width:114px; max-height:114px; vertical-align:middle; font-size:13px;}
.upload_pic_show img{ max-width:140px; max-height:140px;}
.btn_upload_add{ background:#fff url("../images/btn_upload_add.jpg") center center no-repeat; display:inline-block; width:140px; height:140px; overflow:hidden;}
/* 添加商品重置table_list */
.add_list_table td .table_list tr.even td{ background-color:#FFF;}
.add_list_table td .table_list tr.hover td, .add_list_table td .table_list tr:hover td { background-color:#fdfff2;}
.add_list_table td .table_list th{ width:auto; line-height:18px; text-align:center; padding:12px 0; background-color:#c6daef; border-bottom-color:#c7d4e3; vertical-align:middle;}
.add_list_table td .table_list td{ padding:11px 0; background-color:#f9fcfe; border-bottom-color:#d3dce2;}
/* main_slide_con */
.main_slide_con{ background:url("../images/main_slide_bg.png") 0 0 repeat; width:100%; height:75px; line-height:75px; overflow:hidden; border:1px solid #b6c2ce; text-align:center; position:fixed; left:0; bottom:0; z-index:99; _position:absolute; _left:expression(eval(document.documentElement.scrollLeft)); _top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0))); _padding:0 10px;}
.main_slide_con .btnC, .main_slide_con .btnD { display:inline-block; margin:0 2px; _margin-top:14px;}
/*================================================================================================ 商户注册步骤 ================================================================================================*/
/* merchant_registration_con */
.merchant_registration_con{ padding:8px 20px;}
.merchant_registration_con .tab_tit{ background-position:0 -199px; height:53px; border-bottom:1px solid #d3dce2;}
.merchant_registration_con .tab_tit_show{ border-bottom:none; height:44px; padding:9px 4px 0;}
.merchant_registration_con .tab_tit_show span{ float:left; display:block; width:192px; height:44px; line-height:44px; overflow:hidden; text-align:center; color:#124786; font-size:14px; font-weight:bold; background:#f6fafe; border:1px solid #d3dce2; border-bottom:none; border-radius:4px 4px 0 0; margin:0 5px -1px; position:relative; z-index:2;}
.merchant_registration_con .tab_tit_show span.fulfil{ background:#d4e2f2;}
.merchant_registration_con .tab_tit_show span.cur{ background:#fff;}
.merchant_registration_area{ border:1px solid #d3dce2; border-top:none; position:relative; padding:20px 0; min-height:310px; height:auto !important; height:310px;}
.merchant_registration_table{ margin:0;}
.merchant_registration_table th{ background:none; border-bottom:none; padding:10px 30px;}
.merchant_registration_table td{ background:none; border-bottom:none; padding:10px 0;}
/*================================================================================================ 商户详细页 ================================================================================================*/
/* merchant_detail_con */
.merchant_detail_con{ margin:-12px 0;}
.merchant_detail_tit{ height:42px; padding:6px 10px 0; background:#c6daef; border-bottom:1px solid #bdcbdb;}
.merchant_detail_tit a{ display:inline-block; height:42px; line-height:42px; overflow:hidden; padding:0 26px; font-weight:bold; margin:0 1px -1px; position:relative; z-index:2;}
.merchant_detail_tit a.focus{ background-position:0 -252px; border:1px solid #bdcbdb; border-bottom:none; border-radius:4px 4px 0 0;}
.merchant_detail_show{ padding:15px 0;}
.merchant_detail_show h3{ height:46px; line-height:46px; padding:0 36px; background:#e8edf2; color:#000;}
.merchant_detail_show .add_list_table{ margin:0;}
.merchant_detail_show .add_list_table td.tit{ width:110px; line-height:32px; text-align:right; padding:10px 30px; font-weight:bold; vertical-align:top;}
.merchant_detail_show .merchant_pic{ display:block; width:340px; height:119px; overflow:hidden; padding:1px; background:#FAFCFE; border:1px solid #D3DCE2; border-radius:3px; position:relative;}
.merchant_detail_show .merchant_pic img{ width:340px; height:119px;}
.merchant_detail_show .merchant_pic .btn{ position:absolute; right:5px; bottom:5px; display:none;}
.merchant_detail_show .page{ text-align:center;}
/*================================================================================================ 新增授权 ================================================================================================*/
/* addAuthorize_con */
.addAuthorize_con{ padding:0 30px;}
.addAuthorize_info{ padding-top:8px;}
.addAuthorize_info .c_input_text{ margin-right:5px;}
.addAuthorize_con h3{ height:32px; line-height:32px; overflow:hidden; font-size:13px; margin-top:20px;}
.addAuthorize_con .table_list3{ width:508px;}
/* addAuthorize_table */
.addAuthorize_table{ width:685px; table-layout:auto;}
.addAuthorize_table tr.even th, .addAuthorize_table tr.even td { background:#f9fcfe;}
.addAuthorize_table th{ border:1px solid #d3dce2; width:110px; height:33px; line-height:33px; padding:10px 20px;}
.addAuthorize_table td{ border:1px solid #d3dce2; height:33px; line-height:33px; padding:10px 20px;}
.addAuthorize_table td .c_input_text{ width:37px; margin:0 5px;}
/* dl_addAuthorize_list */
.dl_addAuthorize_list{}
.dl_addAuthorize_list dt{ font-weight:bold;}
.dl_addAuthorize_list dd{ padding:0 20px;}
.dl_addAuthorize_list dd label{ margin-right:20px;}
/*================================================================================================ 定时推送 ================================================================================================*/
/* timingPush_table */
.timingPush_table{}
.timingPush_table .c_textarea{ display:block;}
.timingPush_table .pop_information_show{ width:488px;}
.timingPush_table .timingPush_tit{ padding:6px 0;}
.timingPush_table .timingPush_tit label{ display:inline-block; vertical-align:middle; width:86px; line-height:35px; overflow:hidden; margin-right:20px;}
.timingPush_table .timingPush_tit .btnB{ display:inline-block; vertical-align:middle; margin:0;}
/* timingPush_show */
.timingPush_show{ width:610px; overflow:hidden; padding:5px; background-color:#FAFCFE; border:1px solid #D3DCE2; border-radius:3px; box-shadow:1px 2px 2px #E7E9EB inset; color:#575A5D; margin-bottom:10px;}
.timingPush_mod{ line-height:33px; padding:6px 0 6px 120px;}
.timingPush_mod .tit{ float:left; display:inline-block; width:110px; line-height:33px; overflow:hidden; text-align:right; margin-left:-120px;}
.timingPush_mod .j-modle-span{ margin-right:30px;}
.timingPush_result .name{ margin-right:40px;}
.article_marketing_text{ line-height:22px; padding:5px 0;}
/*================================================================================================ 新增营销分类 ================================================================================================*/
/* ul_mp3_list */
.ul_mp3_list{ }
.ul_mp3_list li{ display:block; height:33px; line-height:33px; overflow:hidden;}
.ul_mp3_list li a{ display:inline-block; width:32px; overflow:hidden; text-align:center; height:20px; line-height:20px; vertical-align:middle; color:#999; margin:0 5px;}
.ul_mp3_list li a:hover{ background:#999; color:#FFF;}
.ul_mp3_list li a.audition_Song{ color:#70B0F0; position:relative;}
.ul_mp3_list li a.audition_Song:hover{ background:#70B0F0; color:#FFF;}
/* ul_picAddMarketing_list */
.ul_picAddMarketing_list{}
.ul_picAddMarketing_list li{ display:block; padding:6px 0 6px 84px;}
.ul_picAddMarketing_list li .pic{ float:left; display:block; width:74px; height:48px; overflow:hidden; margin-left:-84px; _margin-left:-42px;}
.ul_picAddMarketing_list li .pic img{ width:74px; height:48px;}
.ul_picAddMarketing_list li h4{ height:22px; line-height:22px; overflow:hidden; font-size:12px; font-weight:normal;}
.ul_picAddMarketing_list li .dec{ line-height:26px; font-size:12px;}
.ul_picAddMarketing_list li .dec p{ float:left; display:block; margin-right:20px;}
.ul_picAddMarketing_list li .dec p .colorText{ margin:0;}
/*================================================================================================ 弹窗样式 ================================================================================================*/
.btn_pop_close, .btn_pop_submitA, .btn_pop_submitB { background:url("../images/pop_icon.png") no-repeat; _background:url("../images/pop_icon.gif") no-repeat;}
.pop_box{ width:586px; overflow:hidden; border-radius:5px; box-shadow:0 3px 10px #999999; position:absolute; z-index:10000; display:none;}
.pop_header{ background:url("../images/pop_header_bg.jpg") 0 0 repeat-x; height:45px; overflow:hidden; border:1px solid #21518e; border-bottom:none; border-radius:5px 5px 0 0; margin-bottom:-1px; position:relative; z-index:2;}
.pop_header h3{ height:45px; line-height:45px; overflow:hidden; padding:0 16px; font-size:14px; color:#FFF;}
.btn_pop_close{ background-position:0 -170px; display:block; width:11px; height:11px; overflow:hidden; text-indent:-9999px; position:absolute; top:16px; right:15px;}
.btn_pop_close:hover{ background-position:-12px -170px;}
.pop_main{ background:#FFF; border:1px solid #575757; padding:20px;}
.pop_footer{ height:52px; overflow:hidden; text-align:center; background:#e5e5e5; border:1px solid #575757; border-top:none; border-radius:0 0 5px 5px; margin-top:-1px; position:relative; z-index:2;}
.btn_pop_submitA, .btn_pop_submitB { display:inline-block; width:93px; height:33px; line-height:33px; overflow:hidden; text-align:center; font-size:14px; color:#FFF !important; font-weight:bold; text-shadow:1px 1px 3px #666; margin:10px 10px 0;}
.btn_pop_submitA{ background-position:0 0;}
.btn_pop_submitA:hover{ background-position:0 -34px;}
.btn_pop_submitB{ background-position:0 -68px;}
.btn_pop_submitB:hover{ background-position:0 -102px;}
.pop_box_noHeader .pop_main{ border-radius:5px 5px 0 0;}
.pop_box_noFooter .pop_main{ border-radius:0 0 5px 5px;}
/*------ 选择设备 ------*/
.pop_device_show{ margin:-6px -10px;}
.pop_device_L, .pop_device_R { width:440px; overflow:hidden; border:1px solid #d3dce2; border-radius:3px; padding:10px;}
.pop_device_L .c_select{ width:100px; margin-right:10px;}
.pop_device_L .c_input_text{ width:146px; margin-right:10px;}
.pop_device_L .btn_search{ display:inline-block;}
.pop_device_R dl dd{ height:341px; overflow:auto;}
.pop_device_show dl{ padding:5px 0;}
.pop_device_show dl dt{ line-height:33px;}
.pop_device_show .table_list{ width:100%;}
.pop_device_show .table_list input[type="checkbox"]{ margin:0;}
.pop_device_show .page{ padding:10px 0;}
.pop_device_M{ width:42px; overflow:hidden; margin-left:16px; *margin-left:6px;}
.pop_device_M a{ display:block; width:42px; height:42px; overflow:hidden; text-indent:-9999px;}
.pop_device_M a.btn_pop_right{ background-position:-115px -232px; margin:147px 0 10px;}
.pop_device_M a.btn_pop_left{ background-position:-115px -275px;}
/*------ 查看详细_表格 ------*/
.pop_detailTable_top{ padding-bottom:15px;}
.pop_detailTable_top span{ display:inline-block; vertical-align:middle; height:35px; line-height:35px; overflow:hidden; color:#000; margin-right:34px;}
.pop_detailTable_top .btnB{ float:right; display:inline-block;}
.pop_detailTable_show .table_list{ width:100%;}
.pop_detailTable_show .page{ padding-bottom:0;}
/*------ 删除提示 ------*/
.pop_delete_show p{ text-align:center; padding:26px 0; font-size:14px; font-weight:bold;}
/*------ 营销方式设置 ------*/
.pop_marketingSetting_show .c_input_text{ width:66px;}
.pop_marketingSetting_show .pop_list li p, .pop_marketingSetting_show .pop_list li .tit { padding:6px 0;}
/* pop_list */
.pop_list li{ padding:6px 0 6px 110px;}
.pop_list li .tit{ float:left; display:block; width:100px; line-height:33px; text-align:right; vertical-align:top; font-weight:bold; margin-left:-110px; _margin-left:-55px;}
.pop_list li label{ padding-right:20px;}
/*------ 审核 ------*/
.pop_audit_tit{ text-align:center;}
.pop_audit_tit span{ background-position:0 -362px; display:inline-block; height:37px; line-height:37px; overflow:hidden; padding:0 30px; cursor:pointer; color:#21518e; border:1px solid #cdcdcd;}
.pop_audit_tit span.tit1{ border-radius:5px 0 0 5px;}
.pop_audit_tit span.tit2{ border-radius:0 5px 5px 0; margin-left:-1px;}
.pop_audit_tit span.focus{ background-position:0 -325px; color:#575a5d;}
.pop_audit_show{ min-height:188px; height:auto !important; height:188px;}
.pop_audit_show .pop_list{ padding:26px 0;}
.pop_audit_show .pop_list li{ padding-left:160px;}
.pop_audit_show .pop_list li .tit{ width:150px; margin-left:-160px; _margin-left:-80px;}
.pop_audit_show .c_select{ width:240px;}
.pop_audit_show .c_textarea{ width:240px; height:100px;}
/*------ 上传文件 ------*/
.pop_uploadFile_show .c_input_text{ width:276px;}
.pop_uploadFile_show .c_select{ width:108px;}
.colorText{ display:inline-block; vertical-align:middle; width:20px; height:20px; overflow:hidden; cursor:pointer; padding:1px; border:2px solid #bbb; border-radius:3px; margin-right:20px;}
.colorText em{ display:inline-block; width:20px; height:20px; overflow:hidden;}
.colorText em.colorf00{ background:#F00;}
.colorText em.color2e84d3{ background:#2e84d3;}
.colorText em.color802ed3{ background:#802ed3;}
.colorText em.colord32e2e{ background:#d32e2e;}
.colorText em.color2ed36c{ background:#2ed36c;}
.colorTextFocus{ border-color:#000;}
/*------ 上传图片 ------*/
.pop_uploadFilePic_show{ min-height:274px; height:auto !important; height:274px;}
.pop_uploadFilePic_show .pop_list{ padding:0;}
.pop_uploadFilePic_show .pop_list li p{ padding:5px 0;}
.c_picShow span{ float:left; display:block; width:117px; height:69px; padding:4px; border:1px solid #d3dce2; border-radius:2px; box-shadow:0 0 2px #d3dce2; margin:0 15px 10px 0; position:relative;}
.c_picShow span img{ width:117px; height:69px;}
.c_picShow span a{ background-position:-94px -103px; display:block; width:14px; height:14px; overflow:hidden; text-indent:-98999px; position:absolute; top:-1px; right:-1px;}
/*------ 短信营销设置 ------*/
.pop_uploadSMS_show .btnB{ margin-bottom:20px;}
.pop_uploadSMS .c_tags{ width:400px;}
/* tooltip样式定义 */
.ui-widget-content{ border:1px solid #d3dce2 !important; color:#666 !important; padding:10x 20px !important;}
.ui-tooltip, .arrow:after { background:#FFF; border: 1px solid #d3dce2; box-shadow: 0 0 5px #AAAAAA;}
.ui-tooltip { padding: 10px 20px; color: white; border-radius: 20px; font:13px '宋体'; text-transform: uppercase; box-shadow: 0 0 7px black;}
.arrow { width: 70px; height: 16px; overflow: hidden; position: absolute; left: 50%; margin-left: -35px; bottom: -16px;}
.arrow.top {top: -16px; bottom: auto;}
.arrow.left {left: 20%;}
.arrow:after {content: "";position: absolute;left: 20px;top: -20px;width: 25px;height: 25px;box-shadow: 6px 5px 9px -9px black;-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);-ms-transform: rotate(45deg);-o-transform: rotate(45deg);tranform: rotate(45deg);}
.arrow.top:after {bottom: -20px;top: auto;}
/*------ 信息_没有标题 ------*/
.pop_information_mod .textarea_show{ display:inline-block; position:relative;}
.pop_information_mod .in_num_text{ color:#9da7ad; position:absolute; right:8px; bottom:0;}
.pop_information_mod .c_input_text{ width:97px;}
.pop_information_mod .c_textarea{ width:408px;}
.pop_information_show{ display:inline-block; width:380px; padding:10px 20px; background:#fafcfe; margin-top:10px;}
.pop_information_show b{ display:block; color:#000; margin-bottom:8px;}
.pop_information_show a{ display:inline-block; color:#3366ff; margin:2px 30px 2px 0;}
.pop_information_show a:hover{ text-decoration:underline;}
/*------ 地区弹窗 ------*/
.pop_area_show .c_select{ width:100px; margin-right:10px;}
.pop_area_show .btnB{ display:inline-block;}
.pop_area_list{ border:1px solid #d3dce2; margin-top:20px;}
.pop_area_list dd{ display:block; height:42px; line-height:42px; overflow:hidden; padding:0 36px; border-bottom:1px solid #eaf1f9;}
.pop_area_list dd.noBorder{ border-bottom:none;}
.pop_area_list dd.even{ background:#f9fcfe;}
.pop_area_list dd a{ background-position:-94px -103px; display:inline-block; width:14px; height:14px; overflow:hidden; text-indent:-98999px; vertical-align:-2px; margin-left:25px;}
/*------ 视频弹窗 ------*/
.pop_video_show{ width:545px; height:326px; overflow:hidden;}
/*------ 地图弹窗 ------*/
.pop_map_show{ width:558px; height:360px; overflow:hidden; border:1px solid #e0e0e0; border-top-color:#848484; border-left-color:#848484;}
/*-------- 添加经营品牌 --------*/
.pop_addBrand{ width:472px;}
.pop_addBrand_L, .pop_addBrand_R { width:226px;}
.pop_addBrand .title{ height:22px; line-height:22px; overflow:hidden; font-family:"微软雅黑"; margin-bottom:8px;}
.pop_addBrand .title h3{ color:#627e97; font-size:14px;}
/* pop_addBrand_tags */
.pop_addBrand_tags{ width:226px; overflow:hidden; border-top:1px solid #f4dc9e; border-left:1px solid #f4dc9e; margin-bottom:5px;}
.pop_addBrand_tags span{ display:inline-block; vertical-align:middle; width:23px; height:24px; line-height:24px; overflow:hidden; text-align:center; color:#7b6554; font-size:12px; font-family:Arial; font-weight:bold; background:#f7f3e7; border-right:1px solid #f4dc9e; border-bottom:1px solid #f4dc9e; cursor:pointer; margin:1px 0 0 1px;}
.pop_addBrand_tags span.cur{ background:#f0e5c6;}
/* pop_addBrand_list_show */
.pop_addBrand_list_show{ height:185px; overflow:hidden; overflow-y:auto; background:#fbf9f3; border:1px solid #f9edce;}
.ul_pop_addBrand_list{ padding:6px;}
.ul_pop_addBrand_list li{ line-height:22px; color:#7b6554; line-height:22px;}
.ul_pop_addBrand_list li .icon{ background:url("../images/pop_addBrand_list_ico.png") 0 0 no-repeat; display:inline-block; vertical-align:middle; width:12px; height:12px; overflow:hidden; margin-right:6px; cursor:pointer;}
.ul_pop_addBrand_list li .cur .icon{ background:url("../images/pop_addBrand_list_ico.png") 0 -38px no-repeat;}
.ul_pop_addBrand_down{ padding:5px 18px;}
.hidden {display: none;}
/* pop_addBrand_R */
.pop_addBrand_R .pop_addBrand_list_show{ padding:6px; background:#FFF; border:1xp solid #f5e3ce;}
.pop_addBrand_R .pop_addBrand_list_show li{ display:block; height:34px; line-height:34px; overflow:hidden; padding:0 30px 0 10px; background:#fbf9f3; border:1px solid #f9edce; margin-bottom:5px; position:relative;}
.pop_addBrand_R .pop_addBrand_list_show li a{ float:right; display:block; width:16px; height:16px; overflow:hidden; text-indent:-9999px; position:absolute; top:9px; right:7px;}
.pop_addBrand_list_show li a.j-all-add, .pop_addBrand_list_show li a.j-li-add, .pop_addBrand_list_show li a.j-all-del, .pop_addBrand_list_show li a.j-li-del { background:url("../images/operating_icon.png") 0 -500px no-repeat; _background:url("../images/operating_icon.gif") 0 -500px no-repeat;}
.pop_addBrand_list_show li a.j-all-add, .pop_addBrand_list_show li a.j-li-add{ background-position:0 -550px;}
/*-------- 双选器重定义 --------*/
.pop_addBrand_sel .pop_addBrand_list_show li a{ float:right; display:block; width:16px; height:16px; overflow:hidden; text-indent:-9999px; margin:3px 0 0;}
.pop_addBrand_sel .pop_addBrand_list_show li .ul_pop_addBrand_down{ padding:5px 10px 5px 24px;}
/*-------- 定时推送设置弹窗 --------*/
.j-special-pop .c_tags{ height:60px;}
/* pop_message_template_list */
.pop_message_template_list{ width:500px; background:#F7FBFE; padding:7px 14px; margin:0 auto;}
.pop_message_template_list li{ float:left; display:block; padding:0; margin:2px 10px;}
.pop_message_template_list li a{ background-position:0 -318px; display:block; width:146px; height:35px; line-height:33px; overflow:hidden; text-align:center; color:#3282C7 !important;}
/*-------- 按商户授权_商户选择/商户类型 --------*/
.pop_merchant .pop_merchant_show{ text-align:center;}
.pop_merchant_show label{ display:inline-block; margin:5px 12px;}
/*-------- 短信提醒 --------*/
.pop_SMS h4{ line-height:30px; color:#000; font-size:14px; font-family:"微软雅黑"; font-weight:bold;}
.pop_tips{ line-height:22px; overflow:hidden; padding:7px 18px; background:#FDF9D9; border:1px solid #F5E3CE; font-size:13px; color:#555;}
.pop_SMS_top{ margin:10px 0;}
.pop_SMS_top .c_textarea{ width:672px; height:77px;}
.pop_SMS_top .pop_information_show{ display:block; width:auto;}
.pop_SMS_top .btn_con{ text-align:center;}
.pop_SMS_bottom h4{ font-weight:normal;}
.pop_SMS_bottom .table_list2 td.dec{ text-align:left; padding:11px;} | 0.190573 | 0.075961 |
/** :alias means that this class or icon is not used directly. It is included
in other component's style selectors or other component's icons. It is
meant to be a fast way to change styles. The alternative is to style each
component. **/
.AFInstructionText
{
font-size: medium;
}
.AFDarkForeground:alias {color:#035D5C;}
.AFDarkBackground:alias {background-color:Purple;}
/** In the base styles, AFDarkBorder uses the background-color of
AFDarkBackground for its border color, so no need to set it directly. */
/* make up a color for hovering over menuTabs and menuBars */
/* put the extension :alias so it won't get written out to the final css file,
cuz I know it won't be used directly. Instead it will be included in
other style definions using the -tr-rule-ref property. */
.MyLinkHoverColor:alias { color:Lime; }
/* a teal color */
.AFLinkForeground:alias {color:#008080}
/** BUTTON STYLES. Notice the right to left icons are specified with the
:rtl pseudo-class. If :rtl icons are not specified, we default to non-:rtl icons. **/
/** use this to color the button background and text **/
.AFButtonServerText:alias {background-color:#CECFCE; color:#25009E}
/* antialias the text for our disabled buttons */
.AFButtonServerTextDisabled:alias {background-color:#F0F0F0; color:gray;-tr-text-antialias:true}
.AFButtonStartIcon:alias {content:url(/skins/purple/images/btns.gif); width:7px; height:18px}
.AFButtonStartIcon:alias:rtl {content:url(/skins/purple/images/btne.gif); width:7px; height:18px}
.AFButtonEndIcon:alias {content:url(/skins/purple/images/btne.gif); width:7px; height:18px}
.AFButtonEndIcon:alias:rtl {content:url(/skins/purple/images/btns.gif); width:7px; height:18px}
.AFButtonTopBackgroundIcon:alias {content:url(/skins/purple/images/btntb.gif); width:1px; height:2px}
.AFButtonTopBackgroundIcon:alias:rtl {content:url(/skins/purple/images/btntb.gif); width:1px; height:2px}
.AFButtonBottomBackgroundIcon:alias {content:url(/skins/purple/images/btnbb.gif); width:1px; height:2px}
.AFButtonBottomBackgroundIcon:alias:rtl {content:url(/skins/purple/images/btnbb.gif); width:1px; height:2px}
.AFButtonDisabledStartIcon:alias {content:url(/skins/purple/images/btnds.gif); width:7px; height:18px}
.AFButtonDisabledStartIcon:alias:rtl {content:url(/skins/purple/images/btnde.gif); width:7px; height:18px}
.AFButtonDisabledEndIcon:alias {content:url(/skins/purple/images/btnde.gif); width:7px; height:18px}
.AFButtonDisabledEndIcon:alias:rtl {content:url(/skins/purple/images/btnds.gif); width:7px; height:18px}
.AFButtonDisabledTopBackgroundIcon:alias {content:url(/skins/purple/images/btndtb.gif); width:1px; height:2px}
.AFButtonDisabledBottomBackgroundIcon:alias {content:url(/skins/purple/images/btndbb.gif); width:1px; height:2px}
/** generic background for light panelBox's or shuttles **/
.AFBoxBackground:alias {background-color:#E3E1E1;}
/** when the panelBox is dark, this is the background color */
.AFPanelBoxDarkBackground:alias {background-color:green}
/** panelTabbed **/
/** ---------- **/
/** .AFPanelTabbed:alias is included in af|panelTabbed::orientation-top and
af|panelTabbed::orientation-bottom which are the styles on the table. **/
.AFPanelTabbed:alias {
background-color:#BB95BB;
text-align:center;
}
/** make the top tab bar have a solid border underneath **/
af|panelTabbed::orientation-top
{
border-bottom: 3px solid black;
}
/** make the bottom tab bar have a solid border on top **/
af|panelTabbed::orientation-bottom
{
border-top: 3px solid black;
}
af|panelTabbed::separator {
margin:4px;
border-top: #BB95BB; solid 4pt ;
border-bottom: #BB95BB; solid 4pt ;
BACKGROUND-COLOR: white;
PADDING-LEFT: 1px;}
af|panelTabbed::tab {
font-weight:bold;
font-family:Tahoma;
padding:2px 8px;
}
af|panelTabbed::tab-selected {
font-family:Tahoma;
padding:2px 8px;
text-decoration: none;
background-color:white
}
af|panelTabbed::tab-link {
color:white;
text-decoration: none;
}
af|panelTabbed::tab-link:hover
{
-tr-rule-ref:selector(".MyLinkHoverColor:alias");
}
/* put some space in the
first cell */
af|panelTabbed::cell-start {
background-color:transparent;
padding-left:10px
}
/** put some space between the tabs and the body */
af|panelTabbed::body
{
padding: 10px;
}
/** panelPage's footer area **/
/** ----------------------- **/
.AFFooterMessageText:alias
{
padding:2px 6px;
}
/** menuTabs **/
/** -------- **/
/** You can create borders, and have image-free tabs, or you can use the
icon keys (e.g., af|menuTabs::selected-start-icon)to create tabs with
rounded borders. The icons are used below,
but you can comment them out if you want. */
/** this isn't needed when we are using icons for the tabs(but the padding helps!)
.AFTabBarItem:alias
{
border-style:solid;
border-color:#5D025E;
border-width: 3px 2px 0px 2px;
padding:2px 6px;
background-color: Purple;
}
**/
.AFTabBarItem:alias
{
line-height:100%;
padding:2px 6px;
}
/* Remove the text decoration from all tabBar links */
.AFTabBarLink:alias
{
text-decoration:none;
}
/* Make the selected tab bold */
af|menuTabs::selected-link
{
font-weight: bold;
font-size: 14pt;
color: white;
}
af|menuTabs::enabled-link
{
color: white;
}
af|menuTabs::enabled-link:hover
{
-tr-rule-ref:selector(".MyLinkHoverColor:alias");
}
/** menuTabs that use icons are define like the following */
af|menuTabs::enabled-start-icon
{
content:url(/skins/purple/images/menuTabsEnabledStart.gif); width:8px; height: 26px;
}
af|menuTabs::enabled-start-icon:rtl
{
content:url(/skins/purple/images/menuTabsEnabledEnd.gif); width:8px; height: 26px;
}
af|menuTabs::enabled-end-icon
{
content:url(/skins/purple/images/menuTabsEnabledEnd.gif); width:8px; height: 26px;
}
af|menuTabs::enabled-end-icon:rtl
{
content:url(/skins/purple/images/menuTabsEnabledStart.gif); width:8px; height: 26px;
}
af|menuTabs::enabled-join-icon
{
content:url(/skins/purple/images/menuTabsEnabledJoin.gif); width:15px; height: 26px;
}
af|menuTabs::enabled-background-icon
{
content:url(/skins/purple/images/menuTabsEnabledBackgroundGrdt.gif); width:1px; height: 26px;
}
af|menuTabs::selected-enabled-join-icon
{
content:url(/skins/purple/images/menuTabsSelectedEnabledJoin.gif); width:15px; height: 26px;
}
af|menuTabs::selected-enabled-join-icon:rtl
{
content:url(/skins/purple/images/menuTabsEnabledSelectedJoin.gif); width:15px; height: 26px;
}
af|menuTabs::enabled-selected-join-icon
{
content:url(/skins/purple/images/menuTabsEnabledSelectedJoin.gif); width:15px; height: 26px;
}
af|menuTabs::enabled-selected-join-icon:rtl
{
content:url(/skins/purple/images/menuTabsSelectedEnabledJoin.gif); width:15px; height: 26px;
}
af|menuTabs::selected-start-icon
{
content:url(/skins/purple/images/menuTabsSelectedStart.gif); width:8px; height: 26px;
}
af|menuTabs::selected-start-icon:rtl
{
content:url(/skins/purple/images/menuTabsSelectedEnd.gif); width:8px; height: 26px;
}
af|menuTabs::selected-end-icon
{
content:url(/skins/purple/images/menuTabsSelectedEnd.gif); width:8px; height: 26px;
}
af|menuTabs::selected-end-icon:rtl
{
content:url(/skins/purple/images/menuTabsSelectedStart.gif); width:8px; height: 26px;
}
af|menuTabs::selected-join-icon
{
content:url(/skins/purple/images/menuTabsSelectedJoin.gif); width:15px; height: 26px;
}
af|menuTabs::selected-join-icon
{
content:url(/skins/purple/images/menuTabSelectedJoin.gif); width:15px; height: 26px;
}
af|menuTabs::selected-background-icon
{
content:url(/skins/purple/images/menuTabsSelectedBackground.gif); width:1px; height: 26px;
}
/** menuBar **/
/** ------- **/
af|menuBar
{
border-width: 3px 2px 0px 2px;
border-style:solid;
-tr-rule-ref:selector(".AFDarkBorder:alias");
padding: 12px;
}
af|menuBar::selected-link
{
font-weight:bold;
}
af|menuBar::enabled-link:hover
{
-tr-rule-ref:selector(".MyLinkHoverColor:alias");
}
af|menuBar::separator
{
padding: 0px 2px 0px 2px;
}
/** menuButtons **/
/** ----------- **/
.AFMenuButtons:alias
{
padding:0px 2px 2px 4px;
}
/** panelBox **/
/* ------------ */
af|panelBox::medium-header-start-icon
{
content:url(/skins/purple/images/panelBoxStart.gif);
width:8px;
height:26px
}
af|panelBox::medium-header-end-icon
{
content:url(/skins/purple/images/panelBoxEnd.gif);
width:8px;
height:26px
}
.AFPanelBoxBody:alias
{
background-color: #E7E4EA;
border-color: purple;
border-style:solid;
border-width:3px;
margin:2px;
}
af|panelBox::header
{
padding: 3px 3px;
-tr-rule-ref: selector(".AFMediumFont:alias");
font-weight: bold;
}
/* for panelBox without a header and shuttles */
.AFBoxContentBody:alias
{
background-color: white;
border-color: #E7E4EA;
border-style:solid;
border-width:3px;
margin:2px;
padding:5px;
}
/* shuttle */
/** Icons unique to the selectOrderShuttle for re-ordering user selections **/
/* Purposely use different urls to test different configurations */
/* this is relative to this skin file */
af|selectOrderShuttle::reorder-top-icon {
content: url(images/shuttleOrderTop.png);
width: 16px;
height: 16px;
}
/* this is relative to the application context */
af|selectOrderShuttle::reorder-up-icon {
content: url(/skins/purple/images/shuttleOrderUp.png);
width: 16px;
height: 16px;
}
af|selectOrderShuttle::reorder-down-icon {
content: url(images/shuttleOrderDown.png);
width: 16px;
height: 16px;
}
af|selectOrderShuttle::reorder-bottom-icon {
content: url(../purple/images/shuttleOrderBottom.png);
width: 16px;
height: 16px;
}
/** panelHeader **/
/** ----------- **/
af|panelHeader
{
-tr-rule-ref:selector(".AFDarkAccentBorder:alias");
border-width:0px 0px 1px 0px;
border-style:solid;
vertical-align:bottom;
margin-bottom:3px;
padding:0px 3px;
font-weight:bolder;
font-size:larger;
}
/** train **/
/** ------------ **/
/** We override the AFTrainStation alias style to add some
padding, and also to display the station indicator
using a top border **/
.AFTrainStation:alias
{
border-style:solid;
border-width:3px 0px 0px 0px;
padding:3pt;
}
af|train::visited af|train::link
{
color: Fuchsia;
}
/** selectBooleanCheckbox **/
/** --------------------- **/
af|selectBooleanCheckbox::read-only-unchecked-icon
{
content:url(/skins/purple/images/checkrn.gif);
border-width: 3px;
border-style: dashed;
border-color: purple;
}
af|selectBooleanCheckbox::read-only-checked-icon
{
/*content:url(/skins/purple/images/checkrc.gif);*/
content: "X";
border-width: 3px;
border-style: dashed;
border-color: aqua;
}
af|selectBooleanCheckbox::disabled-only-unchecked-icon
{
content:url(/skins/purple/images/checkdn.gif);
}
af|selectBooleanCheckbox::disabled-only-checked-icon
{
content:url(/skins/purple/images/checkdc.gif);
}
/** selectInputDate launch icon **/
af|inputDate::launch-icon
{
content:url(/skins/purple/images/dateButtonPurple.gif);
width:19px;
height:24px
}
af|inputDate::launch-icon:rtl
{
content:url(/skins/purple/images/dateButtonPurpleRTL.gif);
width:19px;
height:24px
}
/* use special properties to change the ui **/
/* don't show the last item in breadCrumbs (the default is to show it)*/
af|breadCrumbs {-tr-show-last-item:false}
af|breadCrumbs::step {color: purple;}
af|breadCrumbs::step:hover {color: green}
af|breadCrumbs::selected-step:hover {color: green;}
af|treeTable::path-step {color: purple; text-decoration:none}
af|treeTable::path-step:hover {color: green}
af|treeTable::path-selected-step:hover {color: green;}
/** if, for some reason, you don't want an icon to show up, you
can hide it like this (this feature will be more useful when skins can
extends other skins besides simple)
af|breadCrumbs::separator-icon {content:inhibit}
*/
.AFHeaderErrorIcon:alias
{
content:url(/skins/purple/images/errorl.gif); width:18px; height: 18px;
}
af|messages
{
-tr-rule-ref: selector("AFVeryDarkAccentBorder:alias");
border-style:solid;
border-width:1px;
padding:5px;
margin:5px 0px 0px;
}
af|messages::header
{
-tr-rule-ref: selector("AFDarkAccentBorder:alias");
border-width:0px 0px 1px 0px;
border-style:solid;
vertical-align:bottom;
margin-bottom:3px;
padding:0px 3px;
}
.AFHeaderText:alias
{
-tr-rule-ref: selector("AFDarkForeground:alias");
font-weight:bold;
padding: 0px;
margin: 0px;
}
/* custom styles that I made up and set on the styleClass attribute of various
Trinidad components */
.adfFacesDemoSearchPanelGroup
{
width:100%;
background-color:#B1A9BC;
padding:8px 0px 8px 12px;
border-color:purple;border-style:solid; border-width:2px;
}
.welcomePanel
{
padding-left:0px;
width:100%;
background-color:#E7E4EA;
margin-bottom:10px;
padding-bottom:10px;
padding-top:10px;
text-align:center;
}
.panelBoxHeader
{
font-family: verdana,arial,helvetica,sans-serif;
color:#035D5C;
font-weight:bold;
font-size:small;
}
af|chooseDate::prev-icon
{
content:url(/skins/purple/images/prev.png); width:11px; height: 15px;
}
af|chooseDate::next-icon
{
content:url(/skins/purple/images/next.png); width:11px; height: 15px;
}
af|chooseDate::prev-disabled-icon
{
content:url(/skins/purple/images/prevDisabled.png); width:11px; height: 15px;
}
af|chooseDate::next-disabled-icon
{
content:url(/skins/purple/images/nextDisabled.png); width:11px; height: 15px;
}
af|objectSeparator
{
-tr-rule-ref: selector(".AFDarkBorder:alias");
border-style: dashed none none;
border-width: 1px 0px 0px;
height: 1px;
padding: 0px;
}
/* test :rtl for styles */
.AFEndPadding:alias:rtl
{
padding: 0px 0px 0px 20px;
}
af|inputText::content:rtl
{
color: red;
}
af|inputText::label:rtl
{
font-weight:bold;
}
af|inputNumberSpinbox::increment-cell, af|inputNumberSpinbox::decrement-cell
{
background-color:pink;
}
/* test @agent and @platform styles */
/* right now @agent/@platform work with style selectors, but they have no
effect on icon selectors. */
/* possible values for @agent are:
netscape, ie, mozilla, gecko, webkit, ice */
/* possible values for @platform are:
windows, macos, linux, solaris, ppc */
@agent ie
{
af|panelBox::header
{
text-overflow: ellipsis;
}
.DropShadowStyle
{
width: 357;
height: 50;
font-size: 36pt;
font-family: Arial Black;
color: blue;
Filter: DropShadow(Color=#FF0000, OffX=2, OffY=2, Positive=1);
}
}
@platform windows, linux, solaris
{
/** for ie and gecko on windows, linux and solaris, make the color pink **/
@agent ie, gecko
{
af|inputText::content {background-color:pink}
}
}
/* Test -tr-inhibit: all and -tr-inhibit a specific css property */
/* this should end up with .portlet-form-input-field {padding: 8px} */
.portlet-form-input-field {
/* This should first inhibit all inherited styles. Then everything else
should be included.*/
-tr-inhibit: all;
padding: 8px;
/* This should inhibit the background-color that is inherited and/or included,
like in .AFLightAccentBackground:alias
The order of this does not matter. */
-tr-inhibit: background-color;
-tr-rule-ref: selector(".AFLightAccentBackground:alias");
}
/* This test inhibits the text-decoration property that is defined in the base skin */
.PortletHeaderLink {
-tr-inhibit: text-decoration;
color: pink;
}
/* this tests what happens when we add :rtl to the end of a style class. */
/* When the browser's language is set to a left-to-right language like English,
then we will use this style. We generate .testRightToLeft {color: blue;} when the browser's language
is a left-to-right language. */
.testRightToLeft {
color: blue;
}
/* If the language is right-to-left, then add this rtl specific css definition to the one
above. We generate .testRightToLeft {color: blue; font-size: 24em} when the browser's language
is a right-to-left language. */
.testRightToLeft:rtl {
font-size: 24em;
} | _/7627_Code/7627_04_Web/Web/skins/purple/purpleSkin.css | /** :alias means that this class or icon is not used directly. It is included
in other component's style selectors or other component's icons. It is
meant to be a fast way to change styles. The alternative is to style each
component. **/
.AFInstructionText
{
font-size: medium;
}
.AFDarkForeground:alias {color:#035D5C;}
.AFDarkBackground:alias {background-color:Purple;}
/** In the base styles, AFDarkBorder uses the background-color of
AFDarkBackground for its border color, so no need to set it directly. */
/* make up a color for hovering over menuTabs and menuBars */
/* put the extension :alias so it won't get written out to the final css file,
cuz I know it won't be used directly. Instead it will be included in
other style definions using the -tr-rule-ref property. */
.MyLinkHoverColor:alias { color:Lime; }
/* a teal color */
.AFLinkForeground:alias {color:#008080}
/** BUTTON STYLES. Notice the right to left icons are specified with the
:rtl pseudo-class. If :rtl icons are not specified, we default to non-:rtl icons. **/
/** use this to color the button background and text **/
.AFButtonServerText:alias {background-color:#CECFCE; color:#25009E}
/* antialias the text for our disabled buttons */
.AFButtonServerTextDisabled:alias {background-color:#F0F0F0; color:gray;-tr-text-antialias:true}
.AFButtonStartIcon:alias {content:url(/skins/purple/images/btns.gif); width:7px; height:18px}
.AFButtonStartIcon:alias:rtl {content:url(/skins/purple/images/btne.gif); width:7px; height:18px}
.AFButtonEndIcon:alias {content:url(/skins/purple/images/btne.gif); width:7px; height:18px}
.AFButtonEndIcon:alias:rtl {content:url(/skins/purple/images/btns.gif); width:7px; height:18px}
.AFButtonTopBackgroundIcon:alias {content:url(/skins/purple/images/btntb.gif); width:1px; height:2px}
.AFButtonTopBackgroundIcon:alias:rtl {content:url(/skins/purple/images/btntb.gif); width:1px; height:2px}
.AFButtonBottomBackgroundIcon:alias {content:url(/skins/purple/images/btnbb.gif); width:1px; height:2px}
.AFButtonBottomBackgroundIcon:alias:rtl {content:url(/skins/purple/images/btnbb.gif); width:1px; height:2px}
.AFButtonDisabledStartIcon:alias {content:url(/skins/purple/images/btnds.gif); width:7px; height:18px}
.AFButtonDisabledStartIcon:alias:rtl {content:url(/skins/purple/images/btnde.gif); width:7px; height:18px}
.AFButtonDisabledEndIcon:alias {content:url(/skins/purple/images/btnde.gif); width:7px; height:18px}
.AFButtonDisabledEndIcon:alias:rtl {content:url(/skins/purple/images/btnds.gif); width:7px; height:18px}
.AFButtonDisabledTopBackgroundIcon:alias {content:url(/skins/purple/images/btndtb.gif); width:1px; height:2px}
.AFButtonDisabledBottomBackgroundIcon:alias {content:url(/skins/purple/images/btndbb.gif); width:1px; height:2px}
/** generic background for light panelBox's or shuttles **/
.AFBoxBackground:alias {background-color:#E3E1E1;}
/** when the panelBox is dark, this is the background color */
.AFPanelBoxDarkBackground:alias {background-color:green}
/** panelTabbed **/
/** ---------- **/
/** .AFPanelTabbed:alias is included in af|panelTabbed::orientation-top and
af|panelTabbed::orientation-bottom which are the styles on the table. **/
.AFPanelTabbed:alias {
background-color:#BB95BB;
text-align:center;
}
/** make the top tab bar have a solid border underneath **/
af|panelTabbed::orientation-top
{
border-bottom: 3px solid black;
}
/** make the bottom tab bar have a solid border on top **/
af|panelTabbed::orientation-bottom
{
border-top: 3px solid black;
}
af|panelTabbed::separator {
margin:4px;
border-top: #BB95BB; solid 4pt ;
border-bottom: #BB95BB; solid 4pt ;
BACKGROUND-COLOR: white;
PADDING-LEFT: 1px;}
af|panelTabbed::tab {
font-weight:bold;
font-family:Tahoma;
padding:2px 8px;
}
af|panelTabbed::tab-selected {
font-family:Tahoma;
padding:2px 8px;
text-decoration: none;
background-color:white
}
af|panelTabbed::tab-link {
color:white;
text-decoration: none;
}
af|panelTabbed::tab-link:hover
{
-tr-rule-ref:selector(".MyLinkHoverColor:alias");
}
/* put some space in the
first cell */
af|panelTabbed::cell-start {
background-color:transparent;
padding-left:10px
}
/** put some space between the tabs and the body */
af|panelTabbed::body
{
padding: 10px;
}
/** panelPage's footer area **/
/** ----------------------- **/
.AFFooterMessageText:alias
{
padding:2px 6px;
}
/** menuTabs **/
/** -------- **/
/** You can create borders, and have image-free tabs, or you can use the
icon keys (e.g., af|menuTabs::selected-start-icon)to create tabs with
rounded borders. The icons are used below,
but you can comment them out if you want. */
/** this isn't needed when we are using icons for the tabs(but the padding helps!)
.AFTabBarItem:alias
{
border-style:solid;
border-color:#5D025E;
border-width: 3px 2px 0px 2px;
padding:2px 6px;
background-color: Purple;
}
**/
.AFTabBarItem:alias
{
line-height:100%;
padding:2px 6px;
}
/* Remove the text decoration from all tabBar links */
.AFTabBarLink:alias
{
text-decoration:none;
}
/* Make the selected tab bold */
af|menuTabs::selected-link
{
font-weight: bold;
font-size: 14pt;
color: white;
}
af|menuTabs::enabled-link
{
color: white;
}
af|menuTabs::enabled-link:hover
{
-tr-rule-ref:selector(".MyLinkHoverColor:alias");
}
/** menuTabs that use icons are define like the following */
af|menuTabs::enabled-start-icon
{
content:url(/skins/purple/images/menuTabsEnabledStart.gif); width:8px; height: 26px;
}
af|menuTabs::enabled-start-icon:rtl
{
content:url(/skins/purple/images/menuTabsEnabledEnd.gif); width:8px; height: 26px;
}
af|menuTabs::enabled-end-icon
{
content:url(/skins/purple/images/menuTabsEnabledEnd.gif); width:8px; height: 26px;
}
af|menuTabs::enabled-end-icon:rtl
{
content:url(/skins/purple/images/menuTabsEnabledStart.gif); width:8px; height: 26px;
}
af|menuTabs::enabled-join-icon
{
content:url(/skins/purple/images/menuTabsEnabledJoin.gif); width:15px; height: 26px;
}
af|menuTabs::enabled-background-icon
{
content:url(/skins/purple/images/menuTabsEnabledBackgroundGrdt.gif); width:1px; height: 26px;
}
af|menuTabs::selected-enabled-join-icon
{
content:url(/skins/purple/images/menuTabsSelectedEnabledJoin.gif); width:15px; height: 26px;
}
af|menuTabs::selected-enabled-join-icon:rtl
{
content:url(/skins/purple/images/menuTabsEnabledSelectedJoin.gif); width:15px; height: 26px;
}
af|menuTabs::enabled-selected-join-icon
{
content:url(/skins/purple/images/menuTabsEnabledSelectedJoin.gif); width:15px; height: 26px;
}
af|menuTabs::enabled-selected-join-icon:rtl
{
content:url(/skins/purple/images/menuTabsSelectedEnabledJoin.gif); width:15px; height: 26px;
}
af|menuTabs::selected-start-icon
{
content:url(/skins/purple/images/menuTabsSelectedStart.gif); width:8px; height: 26px;
}
af|menuTabs::selected-start-icon:rtl
{
content:url(/skins/purple/images/menuTabsSelectedEnd.gif); width:8px; height: 26px;
}
af|menuTabs::selected-end-icon
{
content:url(/skins/purple/images/menuTabsSelectedEnd.gif); width:8px; height: 26px;
}
af|menuTabs::selected-end-icon:rtl
{
content:url(/skins/purple/images/menuTabsSelectedStart.gif); width:8px; height: 26px;
}
af|menuTabs::selected-join-icon
{
content:url(/skins/purple/images/menuTabsSelectedJoin.gif); width:15px; height: 26px;
}
af|menuTabs::selected-join-icon
{
content:url(/skins/purple/images/menuTabSelectedJoin.gif); width:15px; height: 26px;
}
af|menuTabs::selected-background-icon
{
content:url(/skins/purple/images/menuTabsSelectedBackground.gif); width:1px; height: 26px;
}
/** menuBar **/
/** ------- **/
af|menuBar
{
border-width: 3px 2px 0px 2px;
border-style:solid;
-tr-rule-ref:selector(".AFDarkBorder:alias");
padding: 12px;
}
af|menuBar::selected-link
{
font-weight:bold;
}
af|menuBar::enabled-link:hover
{
-tr-rule-ref:selector(".MyLinkHoverColor:alias");
}
af|menuBar::separator
{
padding: 0px 2px 0px 2px;
}
/** menuButtons **/
/** ----------- **/
.AFMenuButtons:alias
{
padding:0px 2px 2px 4px;
}
/** panelBox **/
/* ------------ */
af|panelBox::medium-header-start-icon
{
content:url(/skins/purple/images/panelBoxStart.gif);
width:8px;
height:26px
}
af|panelBox::medium-header-end-icon
{
content:url(/skins/purple/images/panelBoxEnd.gif);
width:8px;
height:26px
}
.AFPanelBoxBody:alias
{
background-color: #E7E4EA;
border-color: purple;
border-style:solid;
border-width:3px;
margin:2px;
}
af|panelBox::header
{
padding: 3px 3px;
-tr-rule-ref: selector(".AFMediumFont:alias");
font-weight: bold;
}
/* for panelBox without a header and shuttles */
.AFBoxContentBody:alias
{
background-color: white;
border-color: #E7E4EA;
border-style:solid;
border-width:3px;
margin:2px;
padding:5px;
}
/* shuttle */
/** Icons unique to the selectOrderShuttle for re-ordering user selections **/
/* Purposely use different urls to test different configurations */
/* this is relative to this skin file */
af|selectOrderShuttle::reorder-top-icon {
content: url(images/shuttleOrderTop.png);
width: 16px;
height: 16px;
}
/* this is relative to the application context */
af|selectOrderShuttle::reorder-up-icon {
content: url(/skins/purple/images/shuttleOrderUp.png);
width: 16px;
height: 16px;
}
af|selectOrderShuttle::reorder-down-icon {
content: url(images/shuttleOrderDown.png);
width: 16px;
height: 16px;
}
af|selectOrderShuttle::reorder-bottom-icon {
content: url(../purple/images/shuttleOrderBottom.png);
width: 16px;
height: 16px;
}
/** panelHeader **/
/** ----------- **/
af|panelHeader
{
-tr-rule-ref:selector(".AFDarkAccentBorder:alias");
border-width:0px 0px 1px 0px;
border-style:solid;
vertical-align:bottom;
margin-bottom:3px;
padding:0px 3px;
font-weight:bolder;
font-size:larger;
}
/** train **/
/** ------------ **/
/** We override the AFTrainStation alias style to add some
padding, and also to display the station indicator
using a top border **/
.AFTrainStation:alias
{
border-style:solid;
border-width:3px 0px 0px 0px;
padding:3pt;
}
af|train::visited af|train::link
{
color: Fuchsia;
}
/** selectBooleanCheckbox **/
/** --------------------- **/
af|selectBooleanCheckbox::read-only-unchecked-icon
{
content:url(/skins/purple/images/checkrn.gif);
border-width: 3px;
border-style: dashed;
border-color: purple;
}
af|selectBooleanCheckbox::read-only-checked-icon
{
/*content:url(/skins/purple/images/checkrc.gif);*/
content: "X";
border-width: 3px;
border-style: dashed;
border-color: aqua;
}
af|selectBooleanCheckbox::disabled-only-unchecked-icon
{
content:url(/skins/purple/images/checkdn.gif);
}
af|selectBooleanCheckbox::disabled-only-checked-icon
{
content:url(/skins/purple/images/checkdc.gif);
}
/** selectInputDate launch icon **/
af|inputDate::launch-icon
{
content:url(/skins/purple/images/dateButtonPurple.gif);
width:19px;
height:24px
}
af|inputDate::launch-icon:rtl
{
content:url(/skins/purple/images/dateButtonPurpleRTL.gif);
width:19px;
height:24px
}
/* use special properties to change the ui **/
/* don't show the last item in breadCrumbs (the default is to show it)*/
af|breadCrumbs {-tr-show-last-item:false}
af|breadCrumbs::step {color: purple;}
af|breadCrumbs::step:hover {color: green}
af|breadCrumbs::selected-step:hover {color: green;}
af|treeTable::path-step {color: purple; text-decoration:none}
af|treeTable::path-step:hover {color: green}
af|treeTable::path-selected-step:hover {color: green;}
/** if, for some reason, you don't want an icon to show up, you
can hide it like this (this feature will be more useful when skins can
extends other skins besides simple)
af|breadCrumbs::separator-icon {content:inhibit}
*/
.AFHeaderErrorIcon:alias
{
content:url(/skins/purple/images/errorl.gif); width:18px; height: 18px;
}
af|messages
{
-tr-rule-ref: selector("AFVeryDarkAccentBorder:alias");
border-style:solid;
border-width:1px;
padding:5px;
margin:5px 0px 0px;
}
af|messages::header
{
-tr-rule-ref: selector("AFDarkAccentBorder:alias");
border-width:0px 0px 1px 0px;
border-style:solid;
vertical-align:bottom;
margin-bottom:3px;
padding:0px 3px;
}
.AFHeaderText:alias
{
-tr-rule-ref: selector("AFDarkForeground:alias");
font-weight:bold;
padding: 0px;
margin: 0px;
}
/* custom styles that I made up and set on the styleClass attribute of various
Trinidad components */
.adfFacesDemoSearchPanelGroup
{
width:100%;
background-color:#B1A9BC;
padding:8px 0px 8px 12px;
border-color:purple;border-style:solid; border-width:2px;
}
.welcomePanel
{
padding-left:0px;
width:100%;
background-color:#E7E4EA;
margin-bottom:10px;
padding-bottom:10px;
padding-top:10px;
text-align:center;
}
.panelBoxHeader
{
font-family: verdana,arial,helvetica,sans-serif;
color:#035D5C;
font-weight:bold;
font-size:small;
}
af|chooseDate::prev-icon
{
content:url(/skins/purple/images/prev.png); width:11px; height: 15px;
}
af|chooseDate::next-icon
{
content:url(/skins/purple/images/next.png); width:11px; height: 15px;
}
af|chooseDate::prev-disabled-icon
{
content:url(/skins/purple/images/prevDisabled.png); width:11px; height: 15px;
}
af|chooseDate::next-disabled-icon
{
content:url(/skins/purple/images/nextDisabled.png); width:11px; height: 15px;
}
af|objectSeparator
{
-tr-rule-ref: selector(".AFDarkBorder:alias");
border-style: dashed none none;
border-width: 1px 0px 0px;
height: 1px;
padding: 0px;
}
/* test :rtl for styles */
.AFEndPadding:alias:rtl
{
padding: 0px 0px 0px 20px;
}
af|inputText::content:rtl
{
color: red;
}
af|inputText::label:rtl
{
font-weight:bold;
}
af|inputNumberSpinbox::increment-cell, af|inputNumberSpinbox::decrement-cell
{
background-color:pink;
}
/* test @agent and @platform styles */
/* right now @agent/@platform work with style selectors, but they have no
effect on icon selectors. */
/* possible values for @agent are:
netscape, ie, mozilla, gecko, webkit, ice */
/* possible values for @platform are:
windows, macos, linux, solaris, ppc */
@agent ie
{
af|panelBox::header
{
text-overflow: ellipsis;
}
.DropShadowStyle
{
width: 357;
height: 50;
font-size: 36pt;
font-family: Arial Black;
color: blue;
Filter: DropShadow(Color=#FF0000, OffX=2, OffY=2, Positive=1);
}
}
@platform windows, linux, solaris
{
/** for ie and gecko on windows, linux and solaris, make the color pink **/
@agent ie, gecko
{
af|inputText::content {background-color:pink}
}
}
/* Test -tr-inhibit: all and -tr-inhibit a specific css property */
/* this should end up with .portlet-form-input-field {padding: 8px} */
.portlet-form-input-field {
/* This should first inhibit all inherited styles. Then everything else
should be included.*/
-tr-inhibit: all;
padding: 8px;
/* This should inhibit the background-color that is inherited and/or included,
like in .AFLightAccentBackground:alias
The order of this does not matter. */
-tr-inhibit: background-color;
-tr-rule-ref: selector(".AFLightAccentBackground:alias");
}
/* This test inhibits the text-decoration property that is defined in the base skin */
.PortletHeaderLink {
-tr-inhibit: text-decoration;
color: pink;
}
/* this tests what happens when we add :rtl to the end of a style class. */
/* When the browser's language is set to a left-to-right language like English,
then we will use this style. We generate .testRightToLeft {color: blue;} when the browser's language
is a left-to-right language. */
.testRightToLeft {
color: blue;
}
/* If the language is right-to-left, then add this rtl specific css definition to the one
above. We generate .testRightToLeft {color: blue; font-size: 24em} when the browser's language
is a right-to-left language. */
.testRightToLeft:rtl {
font-size: 24em;
} | 0.495606 | 0.133981 |
.alert-debug {
color: black;
background-color: white;
border-color: #d6e9c6;
}
/* line 11, ../sass/project.scss */
.alert-info {
color: #3a87ad;
background-color: #d9edf7;
border-color: #bce8f1;
}
/* line 17, ../sass/project.scss */
.alert-success {
color: #468847;
background-color: #dff0d8;
border-color: #d6e9c6;
}
/* line 23, ../sass/project.scss */
.alert-warning {
color: black;
background-color: orange;
border-color: #d6e9c6;
}
/* line 29, ../sass/project.scss */
.alert-error {
color: #b94a48;
background-color: #f2dede;
border-color: #eed3d7;
}
.clear { clear: both;}
.internal { margin-top: 50px; margin-bottom: 50px;}
.contenido { font-size: 14px;}
h2 { font-size: 26px }
.intro-message {padding-left:150px; padding-right: 150px;}
.intro-message h2 { font-size: 26px; text-shadow: 2px 2px 3px rgba(0,0,0,0.9); }
.intro-social-buttons {margin-top: 270px;}
h3 { color: #385623;font-size: 18px;}
.separador {display: block;height: 1px; border: 0; border-top: 1px solid #C2EAFF; margin: 1em 0; padding: 0; }
h4 { color: #242424;font-size: 15px;}
.translucid-logo { opacity: 0.6;}
.translucid-header {opacity: 0.6;background-color: rgb(88, 88, 90); text-align: left;}
/* foro 2016 */
.date {
background-color: rgb(194, 207, 47);
border-radius: 5px;
padding: 7px;
font-size: 15px;
color: rgb(0, 0, 0);
font-weight: bold;
line-height: 2em;
}
.reserve {
color:#4b2b2b;
font-size: 29px;
text-align: left !important;
}
.info {
text-align: left !important;
font-size: 17px;
}
.info h2 {
font-size: 19px;
}
.anfitriona {
margin-top: 20px;
}
.logos {
margin-bottom: 30px;
margin-top: 20px;
}
.navbar-default select {
/*color: #6e3018;*/
/* font-size: 15px; */
/* font-weight: bold;*/
/*
margin-top: 10px;
float: left;
text-align: left;
background-color: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
padding: 2px;
*/
}
.navbar-default select:hover, .navbar-default select:focus {
/*color: #6e3018;*/
}
.navbar-default select option {
/*
padding: 5px;
border-bottom: 1px solid #fff;
*/
}
.subtitle {
font-size: 32px;
color:#6e3018;
font-size: 18px;
border-bottom: 1px solid rgb(240, 176, 152);
padding-bottom: 17px;
}
.topnav {width: 100%;}
.navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand { margin-left:0px !important;}
@media (min-width:700px) and (max-width: 980px) {
.intro-bheader { padding-top: 100px;}
}
@media (max-width: 768px) {
.title2 {font-size: 32px;color:#94c11f;}
.subtitle {
font-size: 32px;
color:#6e3018;
font-size: 18px;
border-bottom: 1px solid rgb(240, 176, 152);
padding-bottom: 17px;
}
.reserve { font-size: 21px; }
.logos img { width: 80px;}
.navbar-brand { width: 70%;height:60px;}
.intro-message {padding-left:120px; padding-right: 120px;}
}
@media (max-width: 640px) {
.intro-bheader { padding-top: 50px;}
.navbar-brand { padding: 4px;}
.nopadding {padding: 0px;}
.navbar-brand { width: auto;}
.intro-message {padding:10px;}
.intro-social-buttons {margin-top: 50px;}
}
@media (max-width: 360px) {
.navbar-brand { width: 70%;}
}
.vcenter {
display: inline-block;
vertical-align: middle;
float: none;
}
blockquote {
padding: 10px 20px;
margin: 0 0 20px;
font-size: 14px;
border-left: 5px solid #eee;
} | forocacao/static/css/project.css | .alert-debug {
color: black;
background-color: white;
border-color: #d6e9c6;
}
/* line 11, ../sass/project.scss */
.alert-info {
color: #3a87ad;
background-color: #d9edf7;
border-color: #bce8f1;
}
/* line 17, ../sass/project.scss */
.alert-success {
color: #468847;
background-color: #dff0d8;
border-color: #d6e9c6;
}
/* line 23, ../sass/project.scss */
.alert-warning {
color: black;
background-color: orange;
border-color: #d6e9c6;
}
/* line 29, ../sass/project.scss */
.alert-error {
color: #b94a48;
background-color: #f2dede;
border-color: #eed3d7;
}
.clear { clear: both;}
.internal { margin-top: 50px; margin-bottom: 50px;}
.contenido { font-size: 14px;}
h2 { font-size: 26px }
.intro-message {padding-left:150px; padding-right: 150px;}
.intro-message h2 { font-size: 26px; text-shadow: 2px 2px 3px rgba(0,0,0,0.9); }
.intro-social-buttons {margin-top: 270px;}
h3 { color: #385623;font-size: 18px;}
.separador {display: block;height: 1px; border: 0; border-top: 1px solid #C2EAFF; margin: 1em 0; padding: 0; }
h4 { color: #242424;font-size: 15px;}
.translucid-logo { opacity: 0.6;}
.translucid-header {opacity: 0.6;background-color: rgb(88, 88, 90); text-align: left;}
/* foro 2016 */
.date {
background-color: rgb(194, 207, 47);
border-radius: 5px;
padding: 7px;
font-size: 15px;
color: rgb(0, 0, 0);
font-weight: bold;
line-height: 2em;
}
.reserve {
color:#4b2b2b;
font-size: 29px;
text-align: left !important;
}
.info {
text-align: left !important;
font-size: 17px;
}
.info h2 {
font-size: 19px;
}
.anfitriona {
margin-top: 20px;
}
.logos {
margin-bottom: 30px;
margin-top: 20px;
}
.navbar-default select {
/*color: #6e3018;*/
/* font-size: 15px; */
/* font-weight: bold;*/
/*
margin-top: 10px;
float: left;
text-align: left;
background-color: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
padding: 2px;
*/
}
.navbar-default select:hover, .navbar-default select:focus {
/*color: #6e3018;*/
}
.navbar-default select option {
/*
padding: 5px;
border-bottom: 1px solid #fff;
*/
}
.subtitle {
font-size: 32px;
color:#6e3018;
font-size: 18px;
border-bottom: 1px solid rgb(240, 176, 152);
padding-bottom: 17px;
}
.topnav {width: 100%;}
.navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand { margin-left:0px !important;}
@media (min-width:700px) and (max-width: 980px) {
.intro-bheader { padding-top: 100px;}
}
@media (max-width: 768px) {
.title2 {font-size: 32px;color:#94c11f;}
.subtitle {
font-size: 32px;
color:#6e3018;
font-size: 18px;
border-bottom: 1px solid rgb(240, 176, 152);
padding-bottom: 17px;
}
.reserve { font-size: 21px; }
.logos img { width: 80px;}
.navbar-brand { width: 70%;height:60px;}
.intro-message {padding-left:120px; padding-right: 120px;}
}
@media (max-width: 640px) {
.intro-bheader { padding-top: 50px;}
.navbar-brand { padding: 4px;}
.nopadding {padding: 0px;}
.navbar-brand { width: auto;}
.intro-message {padding:10px;}
.intro-social-buttons {margin-top: 50px;}
}
@media (max-width: 360px) {
.navbar-brand { width: 70%;}
}
.vcenter {
display: inline-block;
vertical-align: middle;
float: none;
}
blockquote {
padding: 10px 20px;
margin: 0 0 20px;
font-size: 14px;
border-left: 5px solid #eee;
} | 0.261519 | 0.115212 |
#name{
font-family: CI2;
color:rgb(228,108,10);
font-size: 80px;
}
#name,#line{
display: block;
text-align: center;
}
p#line{
margin-top: 25px;
text-shadow: 0.3px 0.4px 0px black;
}
p#line>span{
text-align: center;
background: rgba(0,0,0,0.4);
padding: 16px;
font-size: 80%;
color: #fff;
font-weight: bold;
/*text-shadow: 0.01px 0.2px 0.5px;*/
}
.jumbotron{
/*height: 90vh;
min-height: 800px;*/
background-image: url('../images/home_bgr.jpg');
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
#signup-form, #signin-form{
margin-top: 25px;
background: rgba(228, 108, 10, 0.5);
padding: 10px 30px 15px;
display: block;
border: 1px solid rgba(0, 0, 0, 0.11);
}
#signup-form-line{
text-align: center;
display: block;
font-weight: 600;
padding: 2px;
margin-bottom: 20px;
color: white;
text-shadow: 0.3px 2px 0px black;
/*background: rgba(0,0,0,0.1);*/
}
input.form-control{
background: rgba(250,250,250,0.9);
}
#signup-form>p,#signin-form>p{
text-align: center;
padding: 8px;
font-size: 100%;
color: #fff;
}
#or{
display: inline-block;
text-align: center;
font-weight: bold;
padding: 3px;
width: 100%;
/*background: rgba(0,0,0,0.6);*/
}
#signup-form>hr{
margin-top:-35px !important;
}
#signin-form>hr{
margin-top:-30px !important;
}
.sign-in-btn{
padding: 10px;
background-color: rgb(0,128,1);
border: none;
border-radius: 2px;
color: #fff;
}
#signup-form>input[type=submit]:hover{
background-color: rgb(0,150,1);
}
.ss{
padding: 0 5px !important
}
.ss>div{
cursor: pointer;
background-color: #D04735;
padding: 15px;
color: #fff;
-webkit-transition:all linear 0.2s;
}
.ss:hover{
/*margin-top: -4px;*/
border:1px solid black inset ;
/*mix-blend-mode: luminosity;*/
text-shadow: 0.2px 2px #000;
}
#fp>a{
color: #fff;
}
#fbbtn>div{
/*background-image:url("../images/social.jpg");
background-repeat: no-repeat;
height: 50px;*/
background-color: #2E4986;
}
.ss>div>i{
margin-right: 5px;
font-size: 15px;
}
.ss>div>span{
display: inline-block;
-webkit-transition:all linear 0.2s;
vertical-align: bottom;
font-size: 10px;
}
section.home-bottom{
color: white;
background-color: rgba(225,225,225, 0.38);
display: inline-block;
width: 100%;
}
.home-bottom>.container{
min-height: 200px;
}
.home-bottom>.container>div{
padding: 10px 10px;
}
.home-bottom>.container>div>div{
cursor: pointer;
background-color: rgba(79, 98, 40, 0.65);
height: 200px;
padding: 10px 10px;
/*mix-blend-mode: multiply;*/
}
.home-bottom>.container>div:nth-child(1)>div{
background-color: rgba(31, 73, 125, 0.7);
/* mix-blend-mode: multiply;*/
}
.home-bottom>.container>div:nth-child(2)>div{
background-color: rgba(38, 38, 38, 0.6);
}
.home-bottom>.container>div:nth-child(3)>div{
background-color: rgba(192, 0, 0, 0.55);
}
.home-bottom>.container>div>div>h3{
text-align: center;
font-weight: bold;
}
.home-bottom>.container>div>div>p{
font-size: 12.5px;
padding-top: 6px;
}
.home-bottom>.container>div>div:hover{
/*text-shadow: 0.01px 0.8px black;*/
border-bottom: 8px solid black;
}
.lang-showcase{
margin-top: 35px;
padding: 5px 0;
background-color: rgba(0,0,0,0.5);
}
.col-md-125{
display: inline-block;
width: 12.5%;
}
.col-md-125>a{
display: block;
padding: 4px;
}
.col-md-125>a>span{
margin-left: 8px;
}
.col-md-125>a>img{
width: 100%;
}
.sign-in{
font-weight: bold;
height: 40px;
line-height: 40px;
}
#signin-form{
padding: 25px !important;
margin: 0 !important;
} | public/css/content.css | #name{
font-family: CI2;
color:rgb(228,108,10);
font-size: 80px;
}
#name,#line{
display: block;
text-align: center;
}
p#line{
margin-top: 25px;
text-shadow: 0.3px 0.4px 0px black;
}
p#line>span{
text-align: center;
background: rgba(0,0,0,0.4);
padding: 16px;
font-size: 80%;
color: #fff;
font-weight: bold;
/*text-shadow: 0.01px 0.2px 0.5px;*/
}
.jumbotron{
/*height: 90vh;
min-height: 800px;*/
background-image: url('../images/home_bgr.jpg');
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
#signup-form, #signin-form{
margin-top: 25px;
background: rgba(228, 108, 10, 0.5);
padding: 10px 30px 15px;
display: block;
border: 1px solid rgba(0, 0, 0, 0.11);
}
#signup-form-line{
text-align: center;
display: block;
font-weight: 600;
padding: 2px;
margin-bottom: 20px;
color: white;
text-shadow: 0.3px 2px 0px black;
/*background: rgba(0,0,0,0.1);*/
}
input.form-control{
background: rgba(250,250,250,0.9);
}
#signup-form>p,#signin-form>p{
text-align: center;
padding: 8px;
font-size: 100%;
color: #fff;
}
#or{
display: inline-block;
text-align: center;
font-weight: bold;
padding: 3px;
width: 100%;
/*background: rgba(0,0,0,0.6);*/
}
#signup-form>hr{
margin-top:-35px !important;
}
#signin-form>hr{
margin-top:-30px !important;
}
.sign-in-btn{
padding: 10px;
background-color: rgb(0,128,1);
border: none;
border-radius: 2px;
color: #fff;
}
#signup-form>input[type=submit]:hover{
background-color: rgb(0,150,1);
}
.ss{
padding: 0 5px !important
}
.ss>div{
cursor: pointer;
background-color: #D04735;
padding: 15px;
color: #fff;
-webkit-transition:all linear 0.2s;
}
.ss:hover{
/*margin-top: -4px;*/
border:1px solid black inset ;
/*mix-blend-mode: luminosity;*/
text-shadow: 0.2px 2px #000;
}
#fp>a{
color: #fff;
}
#fbbtn>div{
/*background-image:url("../images/social.jpg");
background-repeat: no-repeat;
height: 50px;*/
background-color: #2E4986;
}
.ss>div>i{
margin-right: 5px;
font-size: 15px;
}
.ss>div>span{
display: inline-block;
-webkit-transition:all linear 0.2s;
vertical-align: bottom;
font-size: 10px;
}
section.home-bottom{
color: white;
background-color: rgba(225,225,225, 0.38);
display: inline-block;
width: 100%;
}
.home-bottom>.container{
min-height: 200px;
}
.home-bottom>.container>div{
padding: 10px 10px;
}
.home-bottom>.container>div>div{
cursor: pointer;
background-color: rgba(79, 98, 40, 0.65);
height: 200px;
padding: 10px 10px;
/*mix-blend-mode: multiply;*/
}
.home-bottom>.container>div:nth-child(1)>div{
background-color: rgba(31, 73, 125, 0.7);
/* mix-blend-mode: multiply;*/
}
.home-bottom>.container>div:nth-child(2)>div{
background-color: rgba(38, 38, 38, 0.6);
}
.home-bottom>.container>div:nth-child(3)>div{
background-color: rgba(192, 0, 0, 0.55);
}
.home-bottom>.container>div>div>h3{
text-align: center;
font-weight: bold;
}
.home-bottom>.container>div>div>p{
font-size: 12.5px;
padding-top: 6px;
}
.home-bottom>.container>div>div:hover{
/*text-shadow: 0.01px 0.8px black;*/
border-bottom: 8px solid black;
}
.lang-showcase{
margin-top: 35px;
padding: 5px 0;
background-color: rgba(0,0,0,0.5);
}
.col-md-125{
display: inline-block;
width: 12.5%;
}
.col-md-125>a{
display: block;
padding: 4px;
}
.col-md-125>a>span{
margin-left: 8px;
}
.col-md-125>a>img{
width: 100%;
}
.sign-in{
font-weight: bold;
height: 40px;
line-height: 40px;
}
#signin-form{
padding: 25px !important;
margin: 0 !important;
} | 0.154919 | 0.061199 |
* {
padding: 0;
margin: 0;
text-decoration: none;
list-style: none;
font-family: Arial, Helvetica, sans-serif;
}
body {
background: linear-gradient(
80deg
,#d340ae,rgba(79, 3, 129, 0.89));
overflow-x: none;
}
a {
text-decoration: none;
}
header {
height: 50px;
}
/*menu*/
nav {
background: #000000;
height: 75px;
width: 100%;
position: fixed;
z-index: 1;
}
label.logo {
color: rgb(255, 255, 255);
font-size: 35px;
line-height: 80px;
padding: 0 100px;
font-weight: bold;
}
nav ul.fir {
float: right;
margin-right: 20px;
}
nav ul.fir li {
display: inline-block;
line-height: 80px;
margin: 0 5px;
}
nav ul.fir li a {
color: white;
font-size: 17px;
padding: 7px 13px;
border-radius: 3px;
text-transform: uppercase;
text-decoration: none;
}
nav ul.fir li a:hover{
color: rgb(255, 255, 255);
}
nav ul.fir li a.active, nav ul.fir li a:hover {
background: #270486;
transition: .5s;
}
.checkbtn {
font-size: 30px;
color: rgb(255, 255, 255);
float: right;
line-height: 80px;
margin-right: 40 px;
cursor: pointer;
display: none;
}
#check {
display: none;
}
@media (max-width: 952px){
label.logo{
font-size: 23px;
padding-left: 20px;
}
nav ul.fir li a{
font-size: 16px;
}
}
@media (max-width: 858px){
.checkbtn {
display: block;
}
ul.fir{
position: fixed;
width: 100%;
height: 100vh;
background: #1d075f;
top: 70px;
left: -100%;
text-align: center;
transition: all .5s;
}
nav ul.fir li{
display: block;
margin: 50px 0;
line-height: 30px;
}
nav ul.fir li a {
font-size: 20px;
}
nav ul.fir li a:hover, nav ul li a.active {
background: none;
color: #5534af;
}
#check:checked ~ ul.fir {
left:0;
}
}
/*PARALLAX*/
#plx {
background:url(imagens/programa222.jpg);
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.witle {
padding: 40px 20px;
}
.witle h2 {
font-size: 36px;
font-weight: bold;
}
/*TELA INICIAL*/
section#inicio{
text-align: center;
color: rgb(255, 255, 255);
}
h1 {
font-size: 70px;
padding: 1px 0px 1px;
}
h2.titulo {
padding: 30px 0 0;
font-size: 40px;
}
#contato {
border-radius: 50px;
font-size: 20px;
padding: 25px;
background: linear-gradient(
200deg
,#34b8e0,rgba(29, 51, 177, 0.89))
}
/*SOBRE*/
#tsobre {
text-align: center;
font-size: 40px;
padding-top: 15px;
}
#gato{
margin: 60px 8px 0px 13px;
}
.textos {
font-size: 25px;
margin: 0 30px 0 670px;
text-align: justify;
}
#wines {
background-image: url(imagens/gatot.jpg);
background-position: left;
height: 550px;
background:#f7f7f7;
}
/*EXPERIÊNCIA*/
#plx2 {
background:url(imagens/teclado2.jpg);
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover ;
color: rgb(255, 255, 255);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#tituloe {
font-size: 40px;
text-align: center;
}
.witle2 {
height: 1300px;
font-size:25px;
}
#expe1 {
font-size: 29px;
margin-left: 13px;
}
li {
list-style-type: disc;
font-size: 25px;
}
#cards {
font-size: 25px;
margin-left: 13px;
}
.card-body {
color: rgb(0, 0, 0);
}
.card-title {
font-weight: bold;
}
.cartoes {
overflow-x: none;
width: 97%;
}
/*CONTATO*/
#h2c {
text-align: center;
font-size: 40px;
color: rgb(255, 255, 255);
margin-bottom: 20px;
}
#tamanho {
height: 400px;
}
div#sss {
margin: 100px;
}
.rede{
width: 80px;
height: 80px;
float: left;
margin-left: 20px;
transition: all 0.4s ease-out;
border-radius: 50%;
}
.rede:hover{
cursor: pointer;
transform: translateY(-20px);
box-shadow: 4px 30px 16px 0px rgba(50,50,50, 0.45);
}
div#fac{
background-color: #2372a3;
margin-left: 35%;
}
div#ins{
background-color: #3f729b;
}
div#git {
background-color: #999999;
}
div#wpp {
background-color: rgb(35, 194, 35);
}
.iconew {
margin: 12px;
padding: 1px;
width: 55px;
}
.icone{
margin: 15px;
padding: 1px;
width: 50px;
}
#out {
background-color: rgb(69, 69, 224);
}
#final {
text-align: center;
}
/* TABLET */
@media (max-width: 950px) {
/*TELA INICIAL*/
h1 {
font-size: 80px;
}
h2.titulo {
font-size: 40px;
}
/*SOBRE*/
#tsobre {
text-align: center;
font-size: 40px;
}
#gato{
margin: 30px 8px 0px 15px;
}
.textos {
font-size: 30px;
margin: 5px 15px 0 15px;
}
.cont{
width: 370px;
height: 15px;
}
.cont img {
width: 100%;
height: auto;
}
#wines {
height: 900px;
}
/*EXPERIÊNCIA*/
#tituloe {
font-size: 40px;
}
#expe1{
font-size: 30px;
}
li {
font-size: 25px;
}
.witle2 {
height: 1400px;
}
.card-title {
font-size: 25px;
}
.cartoes {
width: 92%;
font-size: 30px;
}
/*CONTATO*/
#h2c{
font-size: 40px;
}
.rede{
width: 90px;
height: 90px;
float: left;
margin-left:15px;
}
.iconew {
margin: 12px;
padding: 1px;
width: 65px;
}
.icone{
margin: 15px;
padding: 1px;
width: 60px;
}
div#fac{
background-color: #2372a3;
margin-left: 18%;
}
}
/* MOBILE */
@media(max-width: 600px) {
/*TELA INICIAL*/
#plx {
background:url(imagens/programa222.jpg);
background-attachment: fixed;
background-position:45%;
background-repeat:no-repeat ;
background-size: cover;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
h1 {
font-size: 50px;
}
h2.titulo {
font-size: 25px;
}
#contato {
font-size: 18px;
padding: 15px;
}
/*SOBRE*/
h2#tsobre {
font-size: 25px;
}
#gato{
margin: 20px 12px 0px 12px;
}
.textos {
font-size: 18px;
margin: 0px 10px 0 5px;
}
#wines {
height: 580px;
}
.cont{
width: 200px;
height: 15px;
}
.cont img {
width: 100%;
height: auto;
}
/*EXPERIÊNCIA*/
#plx2 {
background-attachment: unset;
}
#tituloe {
font-size: 25px;
}
#expe1{
font-size: 22px;
}
li {
font-size: 19px;
}
#calc {
display: none;
}
.witle2 {
height: 1500px;
}
.cartoes {
width: 90%;
font-size: 23px;
}
/*CONTATO*/
#h2c{
font-size: 25px;
}
.rede{
width: 60px;
height: 60px;
float: left;
margin-left:15px;
}
.iconew {
margin: 8px;
padding: 1px;
width: 45px;
}
.icone{
margin: 10px;
padding: 1px;
width:40px;
}
div#fac{
background-color: #2372a3;
margin-left: 3%;
}
} | estilo.css | * {
padding: 0;
margin: 0;
text-decoration: none;
list-style: none;
font-family: Arial, Helvetica, sans-serif;
}
body {
background: linear-gradient(
80deg
,#d340ae,rgba(79, 3, 129, 0.89));
overflow-x: none;
}
a {
text-decoration: none;
}
header {
height: 50px;
}
/*menu*/
nav {
background: #000000;
height: 75px;
width: 100%;
position: fixed;
z-index: 1;
}
label.logo {
color: rgb(255, 255, 255);
font-size: 35px;
line-height: 80px;
padding: 0 100px;
font-weight: bold;
}
nav ul.fir {
float: right;
margin-right: 20px;
}
nav ul.fir li {
display: inline-block;
line-height: 80px;
margin: 0 5px;
}
nav ul.fir li a {
color: white;
font-size: 17px;
padding: 7px 13px;
border-radius: 3px;
text-transform: uppercase;
text-decoration: none;
}
nav ul.fir li a:hover{
color: rgb(255, 255, 255);
}
nav ul.fir li a.active, nav ul.fir li a:hover {
background: #270486;
transition: .5s;
}
.checkbtn {
font-size: 30px;
color: rgb(255, 255, 255);
float: right;
line-height: 80px;
margin-right: 40 px;
cursor: pointer;
display: none;
}
#check {
display: none;
}
@media (max-width: 952px){
label.logo{
font-size: 23px;
padding-left: 20px;
}
nav ul.fir li a{
font-size: 16px;
}
}
@media (max-width: 858px){
.checkbtn {
display: block;
}
ul.fir{
position: fixed;
width: 100%;
height: 100vh;
background: #1d075f;
top: 70px;
left: -100%;
text-align: center;
transition: all .5s;
}
nav ul.fir li{
display: block;
margin: 50px 0;
line-height: 30px;
}
nav ul.fir li a {
font-size: 20px;
}
nav ul.fir li a:hover, nav ul li a.active {
background: none;
color: #5534af;
}
#check:checked ~ ul.fir {
left:0;
}
}
/*PARALLAX*/
#plx {
background:url(imagens/programa222.jpg);
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.witle {
padding: 40px 20px;
}
.witle h2 {
font-size: 36px;
font-weight: bold;
}
/*TELA INICIAL*/
section#inicio{
text-align: center;
color: rgb(255, 255, 255);
}
h1 {
font-size: 70px;
padding: 1px 0px 1px;
}
h2.titulo {
padding: 30px 0 0;
font-size: 40px;
}
#contato {
border-radius: 50px;
font-size: 20px;
padding: 25px;
background: linear-gradient(
200deg
,#34b8e0,rgba(29, 51, 177, 0.89))
}
/*SOBRE*/
#tsobre {
text-align: center;
font-size: 40px;
padding-top: 15px;
}
#gato{
margin: 60px 8px 0px 13px;
}
.textos {
font-size: 25px;
margin: 0 30px 0 670px;
text-align: justify;
}
#wines {
background-image: url(imagens/gatot.jpg);
background-position: left;
height: 550px;
background:#f7f7f7;
}
/*EXPERIÊNCIA*/
#plx2 {
background:url(imagens/teclado2.jpg);
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover ;
color: rgb(255, 255, 255);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#tituloe {
font-size: 40px;
text-align: center;
}
.witle2 {
height: 1300px;
font-size:25px;
}
#expe1 {
font-size: 29px;
margin-left: 13px;
}
li {
list-style-type: disc;
font-size: 25px;
}
#cards {
font-size: 25px;
margin-left: 13px;
}
.card-body {
color: rgb(0, 0, 0);
}
.card-title {
font-weight: bold;
}
.cartoes {
overflow-x: none;
width: 97%;
}
/*CONTATO*/
#h2c {
text-align: center;
font-size: 40px;
color: rgb(255, 255, 255);
margin-bottom: 20px;
}
#tamanho {
height: 400px;
}
div#sss {
margin: 100px;
}
.rede{
width: 80px;
height: 80px;
float: left;
margin-left: 20px;
transition: all 0.4s ease-out;
border-radius: 50%;
}
.rede:hover{
cursor: pointer;
transform: translateY(-20px);
box-shadow: 4px 30px 16px 0px rgba(50,50,50, 0.45);
}
div#fac{
background-color: #2372a3;
margin-left: 35%;
}
div#ins{
background-color: #3f729b;
}
div#git {
background-color: #999999;
}
div#wpp {
background-color: rgb(35, 194, 35);
}
.iconew {
margin: 12px;
padding: 1px;
width: 55px;
}
.icone{
margin: 15px;
padding: 1px;
width: 50px;
}
#out {
background-color: rgb(69, 69, 224);
}
#final {
text-align: center;
}
/* TABLET */
@media (max-width: 950px) {
/*TELA INICIAL*/
h1 {
font-size: 80px;
}
h2.titulo {
font-size: 40px;
}
/*SOBRE*/
#tsobre {
text-align: center;
font-size: 40px;
}
#gato{
margin: 30px 8px 0px 15px;
}
.textos {
font-size: 30px;
margin: 5px 15px 0 15px;
}
.cont{
width: 370px;
height: 15px;
}
.cont img {
width: 100%;
height: auto;
}
#wines {
height: 900px;
}
/*EXPERIÊNCIA*/
#tituloe {
font-size: 40px;
}
#expe1{
font-size: 30px;
}
li {
font-size: 25px;
}
.witle2 {
height: 1400px;
}
.card-title {
font-size: 25px;
}
.cartoes {
width: 92%;
font-size: 30px;
}
/*CONTATO*/
#h2c{
font-size: 40px;
}
.rede{
width: 90px;
height: 90px;
float: left;
margin-left:15px;
}
.iconew {
margin: 12px;
padding: 1px;
width: 65px;
}
.icone{
margin: 15px;
padding: 1px;
width: 60px;
}
div#fac{
background-color: #2372a3;
margin-left: 18%;
}
}
/* MOBILE */
@media(max-width: 600px) {
/*TELA INICIAL*/
#plx {
background:url(imagens/programa222.jpg);
background-attachment: fixed;
background-position:45%;
background-repeat:no-repeat ;
background-size: cover;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
h1 {
font-size: 50px;
}
h2.titulo {
font-size: 25px;
}
#contato {
font-size: 18px;
padding: 15px;
}
/*SOBRE*/
h2#tsobre {
font-size: 25px;
}
#gato{
margin: 20px 12px 0px 12px;
}
.textos {
font-size: 18px;
margin: 0px 10px 0 5px;
}
#wines {
height: 580px;
}
.cont{
width: 200px;
height: 15px;
}
.cont img {
width: 100%;
height: auto;
}
/*EXPERIÊNCIA*/
#plx2 {
background-attachment: unset;
}
#tituloe {
font-size: 25px;
}
#expe1{
font-size: 22px;
}
li {
font-size: 19px;
}
#calc {
display: none;
}
.witle2 {
height: 1500px;
}
.cartoes {
width: 90%;
font-size: 23px;
}
/*CONTATO*/
#h2c{
font-size: 25px;
}
.rede{
width: 60px;
height: 60px;
float: left;
margin-left:15px;
}
.iconew {
margin: 8px;
padding: 1px;
width: 45px;
}
.icone{
margin: 10px;
padding: 1px;
width:40px;
}
div#fac{
background-color: #2372a3;
margin-left: 3%;
}
} | 0.188585 | 0.076511 |
.container{
display: flex;
flex-direction: row;
justify-content: center;
background-color: white;
padding: 5px;
}
.pres_container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: white;
padding: 5px;
gap: 5px;
}
.card{
width: 50%;
text-align: center;
}
.profile-wrap{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center; /* align center vertically : item is the whole set of elements*/
flex-grow: 1;
padding: 3px;
}
.follow_container{
display: flex;
flex-direction: row;
justify-content: center;
justify-items: stretch;
align-items: center;
background-color: white;
padding: 5px;
}
.form-f{
display: flex;
flex-direction: column;
justify-content: center;
justify-items: stretch;
align-items: center;
background-color: white;
padding: 5px;
}
.commentbox{
display: flex;
padding: 10px;
flex-direction: row;
justify-content: flex-start;
align-items: center;
background-color: white;
gap: 20px;
}
.displaycomments{
display: flex;
padding: 20px;
flex-direction: column;
background-color: lightgray;
}
.com{
display: flex;
padding: 4px;
flex-direction: column;
background-color: white;
}
.display_follows{
display: flex;
padding: 20px;
flex-direction: column;
justify-content: center;
background-color: lightgray;
}
.covBtn{
display: block;
text-align: center;
width: 200px;
height: 50px;
border: 2px solid blue;
font-weight: bold;
color: darkblue;
border-radius: 5%;
background-color: #babef3;
padding-top: 5px;
}
.covBtn:hover{
background-color: cyan;
}
.rateBtn{
display: block;
text-align: center;
width: 200px;
height: 50px;
border: 2px solid blue;
font-weight: bold;
color: black;
border-radius: 5%;
background-color: lightblue;
padding-top: 5px;
}
.rateBtn:hover{
background-color: royalblue;
color: white;
}
.rateBox{
background-color: yellow;
display: flex;
flex-direction: column;
padding: 5px;
}
.rateName{
background-color: white;
display: flex;
flex-direction: row;
padding: 5px;
}
.rate{
background-color: white;
display: flex;
flex-direction: row;
padding: 5px;
}
.rateWhole{
background-color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 5px;
}
.photoD{
}
.photo{
border: 2px solid black;
border-radius: 100px;
}
.logo{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center; /* align center vertically : item is the whole set of elements*/
background-color: white;
flex-grow: 1;
padding: 3px;
transform: skew(-20deg);
}
.right_container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: stretch;
background-color: lightgray;
flex-grow: 5;
}
.top{
display: flex;
flex-direction: row;
justify-content: center;
background-color: lightgray;
flex-wrap: wrap;
flex: 1;
}
.top > span{
padding: 10px;
}
.top button{
margin-left:auto;
margin-right: 100px;
margin-top: 5px;
margin-bottom: 5px;
}
.bottom{
display: flex;
flex-direction: row;
justify-content: flex-start;
background-color: white;
flex-wrap: wrap;
flex: 1; /* take up whole vertical space */
}
.bottom > span{
font-weight: bold;
padding: 10px;
}
.section-2{
background-repeat: no-repeat;
background-size: cover;
background-blend-mode: overlay;
background: transparent;
}
.container-fluid{
background: transparent;
}
.section-2 .doc-image{
margin: 20px 0px;
}
.section-2 .doc-image img{
width: 100%;
}
@media screen and (max-width:990px) {
.container{flex-direction: column;}
.card{
width: 100%;
text-align: center;
}
.top{
display: flex;
flex-direction: column;
justify-content: center;
background-color: lightgray;
flex-wrap: wrap;
flex: 1;
}
.top > span{
padding: 0px;
}
.top button{
margin-left:0px;
margin-right: 0px;
margin-top: 0px;
margin-bottom: 0px;
}
}
.container-fluid{
background-color: white;
}
.container-top{
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background-color: white;
}
.navbar .nav-item > .nav-link{
color: black;
font-weight: bold;
}
.navbar .nav-item > .nav-link:hover{
color: white;
background-color: blue;
font-weight: bold;
}
a{
color: black;
font-weight: bold;
}
a:hover{
color: blue;
font-weight: bold;
} | public/css/consul.css | .container{
display: flex;
flex-direction: row;
justify-content: center;
background-color: white;
padding: 5px;
}
.pres_container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: white;
padding: 5px;
gap: 5px;
}
.card{
width: 50%;
text-align: center;
}
.profile-wrap{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center; /* align center vertically : item is the whole set of elements*/
flex-grow: 1;
padding: 3px;
}
.follow_container{
display: flex;
flex-direction: row;
justify-content: center;
justify-items: stretch;
align-items: center;
background-color: white;
padding: 5px;
}
.form-f{
display: flex;
flex-direction: column;
justify-content: center;
justify-items: stretch;
align-items: center;
background-color: white;
padding: 5px;
}
.commentbox{
display: flex;
padding: 10px;
flex-direction: row;
justify-content: flex-start;
align-items: center;
background-color: white;
gap: 20px;
}
.displaycomments{
display: flex;
padding: 20px;
flex-direction: column;
background-color: lightgray;
}
.com{
display: flex;
padding: 4px;
flex-direction: column;
background-color: white;
}
.display_follows{
display: flex;
padding: 20px;
flex-direction: column;
justify-content: center;
background-color: lightgray;
}
.covBtn{
display: block;
text-align: center;
width: 200px;
height: 50px;
border: 2px solid blue;
font-weight: bold;
color: darkblue;
border-radius: 5%;
background-color: #babef3;
padding-top: 5px;
}
.covBtn:hover{
background-color: cyan;
}
.rateBtn{
display: block;
text-align: center;
width: 200px;
height: 50px;
border: 2px solid blue;
font-weight: bold;
color: black;
border-radius: 5%;
background-color: lightblue;
padding-top: 5px;
}
.rateBtn:hover{
background-color: royalblue;
color: white;
}
.rateBox{
background-color: yellow;
display: flex;
flex-direction: column;
padding: 5px;
}
.rateName{
background-color: white;
display: flex;
flex-direction: row;
padding: 5px;
}
.rate{
background-color: white;
display: flex;
flex-direction: row;
padding: 5px;
}
.rateWhole{
background-color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 5px;
}
.photoD{
}
.photo{
border: 2px solid black;
border-radius: 100px;
}
.logo{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center; /* align center vertically : item is the whole set of elements*/
background-color: white;
flex-grow: 1;
padding: 3px;
transform: skew(-20deg);
}
.right_container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: stretch;
background-color: lightgray;
flex-grow: 5;
}
.top{
display: flex;
flex-direction: row;
justify-content: center;
background-color: lightgray;
flex-wrap: wrap;
flex: 1;
}
.top > span{
padding: 10px;
}
.top button{
margin-left:auto;
margin-right: 100px;
margin-top: 5px;
margin-bottom: 5px;
}
.bottom{
display: flex;
flex-direction: row;
justify-content: flex-start;
background-color: white;
flex-wrap: wrap;
flex: 1; /* take up whole vertical space */
}
.bottom > span{
font-weight: bold;
padding: 10px;
}
.section-2{
background-repeat: no-repeat;
background-size: cover;
background-blend-mode: overlay;
background: transparent;
}
.container-fluid{
background: transparent;
}
.section-2 .doc-image{
margin: 20px 0px;
}
.section-2 .doc-image img{
width: 100%;
}
@media screen and (max-width:990px) {
.container{flex-direction: column;}
.card{
width: 100%;
text-align: center;
}
.top{
display: flex;
flex-direction: column;
justify-content: center;
background-color: lightgray;
flex-wrap: wrap;
flex: 1;
}
.top > span{
padding: 0px;
}
.top button{
margin-left:0px;
margin-right: 0px;
margin-top: 0px;
margin-bottom: 0px;
}
}
.container-fluid{
background-color: white;
}
.container-top{
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background-color: white;
}
.navbar .nav-item > .nav-link{
color: black;
font-weight: bold;
}
.navbar .nav-item > .nav-link:hover{
color: white;
background-color: blue;
font-weight: bold;
}
a{
color: black;
font-weight: bold;
}
a:hover{
color: blue;
font-weight: bold;
} | 0.450118 | 0.067547 |
html {
background-color: var(--background-color);
color: var(--text-color);
font-family: var(--copy-text);
font-feature-settings: "kern", "liga", "pnum";
font-kerning: normal;
font-size: 100%;
letter-spacing: 0.045em;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
/* font-family: var(--bold-text); */
font-weight: normal;
}
h1,
h2 {
font-size: var(--primary-headline);
}
h3,
h4 {
font-size: var(--secondary-headline);
}
h2,
h3 {
margin-top: var(--spacing-xxl);
margin-bottom: var(--spacing-xl);
}
h2 + h3 {
margin-top: 0;
}
.page-content p,
.page-content ul,
.page-content ol {
font-size: var(--body-text);
}
.page-footer {
font-size: var(--label-text);
}
strong {
font-weight: normal;
color: var(--secondary);
}
.logo-title {
margin: 0;
}
a,
a:visited {
color: var(--secondary);
transition: all 0.3s ease-in;
}
a:hover,
a:focus {
color: var(--text-color);
}
.page-header a,
.page-header a:visited {
color: var(--text-color);
text-decoration: none;
}
.page-header a:hover,
.page-header a:focus {
color: var(--secondary);
}
a.button,
a.button:visited {
background-color: var(--secondary);
border-radius: var(--spacing-xl);
color: var(--background-color);
display: inline-block;
font-family: var(--bold-text);
font-size: var(--label-text);
font-weight: normal;
padding: var(--spacing-s) var(--spacing-l);
text-decoration: none;
}
a.button:hover,
a.button:focus {
background-color: var(--text-color);
}
a.button--primary,
a.button--primary:visited {
background-color: var(--primary);
color: var(--text-color);
}
a.button--primary:hover,
a.button--primary:focus {
background-color: var(--text-color);
color: var(--background-color);
}
.crew-member-link {
text-decoration: none;
display: flex;
}
.crew-member-link-symbol {
display: inline-block;
margin-right: var(--spacing-m);
transition: all 0.3s ease-in;
}
.crew-member-link:hover .crew-member-link-symbol,
.crew-member-link:focus .crew-member-link-symbol {
margin-right: calc(var(--spacing-m) * 1.5);
}
.crew-member-link-symbol svg {
display: inline;
height: 1em;
vertical-align: middle;
width: auto;
}
.nols {
list-style: none;
padding-right: 0;
padding-left: 0;
}
ul.inline li {
display: inline-block;
}
a.inline-symbol svg {
display: inline;
height: 1em;
width: auto;
}
.page-footer ul li:first-of-type::after {
content: '/';
display: inline;
} | src/assets/style/typography.css | html {
background-color: var(--background-color);
color: var(--text-color);
font-family: var(--copy-text);
font-feature-settings: "kern", "liga", "pnum";
font-kerning: normal;
font-size: 100%;
letter-spacing: 0.045em;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
/* font-family: var(--bold-text); */
font-weight: normal;
}
h1,
h2 {
font-size: var(--primary-headline);
}
h3,
h4 {
font-size: var(--secondary-headline);
}
h2,
h3 {
margin-top: var(--spacing-xxl);
margin-bottom: var(--spacing-xl);
}
h2 + h3 {
margin-top: 0;
}
.page-content p,
.page-content ul,
.page-content ol {
font-size: var(--body-text);
}
.page-footer {
font-size: var(--label-text);
}
strong {
font-weight: normal;
color: var(--secondary);
}
.logo-title {
margin: 0;
}
a,
a:visited {
color: var(--secondary);
transition: all 0.3s ease-in;
}
a:hover,
a:focus {
color: var(--text-color);
}
.page-header a,
.page-header a:visited {
color: var(--text-color);
text-decoration: none;
}
.page-header a:hover,
.page-header a:focus {
color: var(--secondary);
}
a.button,
a.button:visited {
background-color: var(--secondary);
border-radius: var(--spacing-xl);
color: var(--background-color);
display: inline-block;
font-family: var(--bold-text);
font-size: var(--label-text);
font-weight: normal;
padding: var(--spacing-s) var(--spacing-l);
text-decoration: none;
}
a.button:hover,
a.button:focus {
background-color: var(--text-color);
}
a.button--primary,
a.button--primary:visited {
background-color: var(--primary);
color: var(--text-color);
}
a.button--primary:hover,
a.button--primary:focus {
background-color: var(--text-color);
color: var(--background-color);
}
.crew-member-link {
text-decoration: none;
display: flex;
}
.crew-member-link-symbol {
display: inline-block;
margin-right: var(--spacing-m);
transition: all 0.3s ease-in;
}
.crew-member-link:hover .crew-member-link-symbol,
.crew-member-link:focus .crew-member-link-symbol {
margin-right: calc(var(--spacing-m) * 1.5);
}
.crew-member-link-symbol svg {
display: inline;
height: 1em;
vertical-align: middle;
width: auto;
}
.nols {
list-style: none;
padding-right: 0;
padding-left: 0;
}
ul.inline li {
display: inline-block;
}
a.inline-symbol svg {
display: inline;
height: 1em;
width: auto;
}
.page-footer ul li:first-of-type::after {
content: '/';
display: inline;
} | 0.431584 | 0.080973 |
.background_mistyRose5,
.hover_background_mistyRose5:hover,
.active_background_mistyRose5:active:hover {
background: #c81400;
background-image: -moz-linear-gradient(top, rgb(251, 25, 0) 0%, rgb(200, 20, 0) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(251, 25, 0)), color-stop(100%, rgb(200, 20, 0)));
background-image: -webkit-linear-gradient(top, rgb(251, 25, 0) 0%, rgb(200, 20, 0) 100%);
background-image: -o-linear-gradient(top, rgb(251, 25, 0) 0%, rgb(200, 20, 0) 100%);
background-image: -ms-linear-gradient(top, rgb(251, 25, 0) 0%, rgb(200, 20, 0) 100%);
background-image: linear-gradient(to bottom, rgb(251, 25, 0) 0%, rgb(200, 20, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb1900', endColorstr='#c81400',GradientType=0 );
}
.background_mistyRose5h,
.hover_background_mistyRose5h:hover,
.active_background_mistyRose5h:active:hover {
background: #c81400;
background-image: -moz-linear-gradient(top, rgb(255, 67, 46) 0%, rgb(241, 24, 0) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 67, 46)), color-stop(100%, rgb(241, 24, 0)));
background-image: -webkit-linear-gradient(top, rgb(255, 67, 46) 0%, rgb(241, 24, 0) 100%);
background-image: -o-linear-gradient(top, rgb(255, 67, 46) 0%, rgb(241, 24, 0) 100%);
background-image: -ms-linear-gradient(top, rgb(255, 67, 46) 0%, rgb(241, 24, 0) 100%);
background-image: linear-gradient(to bottom, rgb(255, 67, 46) 0%, rgb(241, 24, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff432e', endColorstr='#f11800',GradientType=0 );
}
.background_mistyRose5a,
.hover_background_mistyRose5a:hover,
.active_background_mistyRose5a:active:hover {
background: #c81400;
background-image: -moz-linear-gradient(top, rgb(241, 24, 0) 0%, rgb(255, 67, 46) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(241, 24, 0)), color-stop(100%, rgb(255, 67, 46)));
background-image: -webkit-linear-gradient(top, rgb(241, 24, 0) 0%, rgb(255, 67, 46) 100%);
background-image: -o-linear-gradient(top, rgb(241, 24, 0) 0%, rgb(255, 67, 46) 100%);
background-image: -ms-linear-gradient(top, rgb(241, 24, 0) 0%, rgb(255, 67, 46) 100%);
background-image: linear-gradient(to bottom, rgb(241, 24, 0) 0%, rgb(255, 67, 46) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f11800', endColorstr='#ff432e',GradientType=0 );
}
.background_mistyRose5s,
.hover_background_mistyRose5s:hover,
.active_background_mistyRose5s:active:hover {
background: #c81400;
background-image: -moz-linear-gradient(top, rgb(255, 134, 121) 0%, rgb(255, 67, 46) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 134, 121)), color-stop(100%, rgb(255, 67, 46)));
background-image: -webkit-linear-gradient(top, rgb(255, 134, 121) 0%, rgb(255, 67, 46) 100%);
background-image: -o-linear-gradient(top, rgb(255, 134, 121) 0%, rgb(255, 67, 46) 100%);
background-image: -ms-linear-gradient(top, rgb(255, 134, 121) 0%, rgb(255, 67, 46) 100%);
background-image: linear-gradient(to bottom, rgb(255, 134, 121) 0%, rgb(255, 67, 46) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8679', endColorstr='#ff432e',GradientType=0 );
}
.background_color_mistyRose5,
.hover_background_color_mistyRose5:hover,
.active_background_color_mistyRose5:active:hover {
background-color:#c81400;
}
.background_first_color_mistyRose5,
.hover_background_first_color_mistyRose5:hover,
.active_background_first_color_mistyRose5:active:hover {
background-color:#fb1900;
}
.background_last_color_mistyRose5,
.hover_background_last_color_mistyRose5:hover,
.active_background_color_last_mistyRose5:active:hover {
background-color:#c81400;
}
/* ------------------------------ color settings -------------------------------*/
.color_mistyRose5,
.hover_color_mistyRose5:hover,
.active_color_mistyRose5:active:hover {
color: #c8c8c8;
}
.color_mistyRose5h,
.hover_color_mistyRose5h:hover,
.active_color_mistyRose5h:active:hover {
color: #c8c8c8;
}
.color_mistyRose5a,
.hover_color_mistyRose5a:hover,
.active_color_mistyRose5a:active:hover {
color: #ff0;
}
.color_mistyRose5s,
.hover_color_mistyRose5s:hover,
.active_color_mistyRose5s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_mistyRose5,
.hover_border_mistyRose5:hover,
.active_border_mistyRose5:active:hover {
border-color: #c81400 #c81400 #c81400 #c81400;
}
.border_mistyRose5h,
.hover_border_mistyRose5h:hover,
.active_border_mistyRose5h:active:hover {
border-color: #b41200 #b41200 #b41200 #b41200;
}
.border_mistyRose5a,
.hover_border_mistyRose5a:hover,
.active_border_mistyRose5a:active:hover {
border-color: #a01000 #a01000 #a01000 #a01000;
}
.border_mistyRose5s,
.hover_border_mistyRose5s:hover,
.active_border_mistyRose5s:active:hover {
border-color: #ff432e #ff432e #ff432e #ff432e;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_mistyRose5,
.hover_shadow_expand_mistyRose5:hover,
.active_shadow_expand_mistyRose5:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(200, 20, 0, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(200, 20, 0, .39);
box-shadow: 0em 0em 1em 0.25em rgba(200, 20, 0, .39);
}
.shadow_expand_mistyRose5h,
.hover_shadow_expand_mistyRose5h:hover,
.active_shadow_expand_mistyRose5h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(241, 24, 0, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(241, 24, 0, .50);
box-shadow: 0em 0em 1em 0.25em rgba(241, 24, 0, .50);
}
.shadow_expand_mistyRose5a,
.hover_shadow_expand_mistyRose5a:hover,
.active_shadow_expand_mistyRose5a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(255, 67, 46, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(255, 67, 46, .63);
box-shadow: 0em 0em 1em 0.25em rgba(255, 67, 46, .63);
}
.shadow_expand_mistyRose5s,
.hover_shadow_expand_mistyRose5s:hover,
.active_shadow_expand_mistyRose5s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(255, 67, 46, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(255, 67, 46, .78);
box-shadow: 0em 0em 1em 0.25em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_mistyRose5,
.hover_shadow_left_mistyRose5:hover,
.active_shadow_left_mistyRose5:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(200, 20, 0, .39);
box-shadow: -0.5em -0.5em 1em rgba(200, 20, 0, .39);
}
.shadow_left_mistyRose5h,
.hover_shadow_left_mistyRose5h:hover,
.active_shadow_left_mistyRose5h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(241, 24, 0, .50);
box-shadow: -0.5em -0.5em 1em rgba(241, 24, 0, .50);
}
.shadow_left_mistyRose5a,
.hover_shadow_left_mistyRose5a:hover,
.active_shadow_left_mistyRose5a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .63);
box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .63);
}
.shadow_left_mistyRose5s,
.hover_shadow_left_mistyRose5s:hover,
.active_shadow_left_mistyRose5s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .78);
box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_mistyRose5,
.hover_shadow_right_mistyRose5:hover,
.active_shadow_right_mistyRose5:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(200, 20, 0, .39);
box-shadow: 0.5em 0em 1em rgba(200, 20, 0, .39);
}
.shadow_right_mistyRose5h,
.hover_shadow_right_mistyRose5h:hover,
.active_shadow_right_mistyRose5h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(241, 24, 0, .50);
box-shadow: 0.5em 0em 1em rgba(241, 24, 0, .50);
}
.shadow_right_mistyRose5a,
.hover_shadow_right_mistyRose5a:hover,
.active_shadow_right_mistyRose5a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(255, 67, 46, .63);
box-shadow: 0.5em 0em 1em rgba(255, 67, 46, .63);
}
.shadow_right_mistyRose5s,
.hover_shadow_right_mistyRose5s:hover,
.active_shadow_right_mistyRose5s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(255, 67, 46, .78);
box-shadow: 0.5em 0em 1em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_mistyRose5,
.hover_shadow_top_mistyRose5:hover,
.active_shadow_top_mistyRose5:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(200, 20, 0, .39);
box-shadow: 0em -0.5em 1em rgba(200, 20, 0, .39);
}
.shadow_top_mistyRose5h,
.hover_shadow_top_mistyRose5h:hover,
.active_shadow_top_mistyRose5h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(241, 24, 0, .50);
box-shadow: 0em -0.5em 1em rgba(241, 24, 0, .50);
}
.shadow_top_mistyRose5a,
.hover_shadow_top_mistyRose5a:hover,
.active_shadow_top_mistyRose5a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(255, 67, 46, .63);
box-shadow: 0em -0.5em 1em rgba(255, 67, 46, .63);
}
.shadow_top_mistyRose5s,
.hover_shadow_top_mistyRose5s:hover,
.active_shadow_top_mistyRose5s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(255, 67, 46, .78);
box-shadow: 0em -0.5em 1em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_mistyRose5,
.hover_shadow_bottom_mistyRose5:hover,
.active_shadow_bottom_mistyRose5:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(200, 20, 0, .39);
box-shadow: 0em 0.5em 1em rgba(200, 20, 0, .39);
}
.shadow_bottom_mistyRose5h,
.hover_shadow_bottom_mistyRose5h:hover,
.active_shadow_bottom_mistyRose5h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(241, 24, 0, .50);
box-shadow: 0em 0.5em 1em rgba(241, 24, 0, .50);
}
.shadow_bottom_mistyRose5a,
.hover_shadow_bottom_mistyRose5a:hover,
.active_shadow_bottom_mistyRose5a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(255, 67, 46, .63);
box-shadow: 0em 0.5em 1em rgba(255, 67, 46, .63);
}
.shadow_bottom_mistyRose5s,
.hover_shadow_bottom_mistyRose5s:hover,
.active_shadow_bottom_mistyRose5s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(255, 67, 46, .78);
box-shadow: 0em 0.5em 1em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_mistyRose5,
.hover_shadow_top_left_mistyRose5:hover,
.active_shadow_top_left_mistyRose5:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(200, 20, 0, .39);
box-shadow: -0.5em -0.5em 1em rgba(200, 20, 0, .39);
}
.shadow_top_left_mistyRose5h,
.hover_shadow_top_left_mistyRose5h:hover,
.active_shadow_top_left_mistyRose5h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(241, 24, 0, .50);
box-shadow: -0.5em -0.5em 1em rgba(241, 24, 0, .50);
}
.shadow_top_left_mistyRose5a,
.hover_shadow_top_left_mistyRose5a:hover,
.active_shadow_top_left_mistyRose5a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .63);
box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .63);
}
.shadow_top_left_mistyRose5s,
.hover_shadow_top_left_mistyRose5s:hover,
.active_shadow_top_left_mistyRose5s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .78);
box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_mistyRose5,
.hover_shadow_top_right_mistyRose5:hover,
.active_shadow_top_right_mistyRose5:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(200, 20, 0, .39);
box-shadow: 0.5em -0.5em 1em rgba(200, 20, 0, .39);
}
.shadow_top_right_mistyRose5h,
.hover_shadow_top_right_mistyRose5h:hover,
.active_shadow_top_right_mistyRose5h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(241, 24, 0, .50);
box-shadow: 0.5em -0.5em 1em rgba(241, 24, 0, .50);
}
.shadow_top_right_mistyRose5a,
.hover_shadow_top_right_mistyRose5a:hover,
.active_shadow_top_right_mistyRose5a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(255, 67, 46, .63);
box-shadow: 0.5em -0.5em 1em rgba(255, 67, 46, .63);
}
.shadow_top_right_mistyRose5s,
.hover_shadow_top_right_mistyRose5s:hover,
.active_shadow_top_right_mistyRose5s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(255, 67, 46, .78);
box-shadow: 0.5em -0.5em 1em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_mistyRose5,
.hover_shadow_bottom_left_mistyRose5:hover,
.active_shadow_bottom_left_mistyRose5:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(200, 20, 0, .39);
box-shadow: -0.5em 0.5em 1em rgba(200, 20, 0, .39);
}
.shadow_bottom_left_mistyRose5h,
.hover_shadow_bottom_left_mistyRose5h:hover,
.active_shadow_bottom_left_mistyRose5h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(241, 24, 0, .50);
box-shadow: -0.5em 0.5em 1em rgba(241, 24, 0, .50);
}
.shadow_bottom_left_mistyRose5a,
.hover_shadow_bottom_left_mistyRose5a:hover,
.active_shadow_bottom_left_mistyRose5a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(255, 67, 46, .63);
box-shadow: -0.5em 0.5em 1em rgba(255, 67, 46, .63);
}
.shadow_bottom_left_mistyRose5s,
.hover_shadow_bottom_left_mistyRose5s:hover,
.active_shadow_bottom_left_mistyRose5s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(255, 67, 46, .78);
box-shadow: -0.5em 0.5em 1em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_mistyRose5,
.hover_shadow_bottom_right_mistyRose5:hover,
.active_shadow_bottom_right_mistyRose5:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(200, 20, 0, .39);
box-shadow: 0.5em 0.5em 1em rgba(200, 20, 0, .39);
}
.shadow_bottom_right_mistyRose5h,
.hover_shadow_bottom_right_mistyRose5h:hover,
.active_shadow_bottom_right_mistyRose5h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(241, 24, 0, .50);
box-shadow: 0.5em 0.5em 1em rgba(241, 24, 0, .50);
}
.shadow_bottom_right_mistyRose5a,
.hover_shadow_bottom_right_mistyRose5a:hover,
.active_shadow_bottom_right_mistyRose5a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(255, 67, 46, .63);
box-shadow: 0.5em 0.5em 1em rgba(255, 67, 46, .63);
}
.shadow_bottom_right_mistyRose5s,
.hover_shadow_bottom_right_mistyRose5s:hover,
.active_shadow_bottom_right_mistyRose5s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(255, 67, 46, .78);
box-shadow: 0.5em 0.5em 1em rgba(255, 67, 46, .78);
} | widgets/common/assets/gradients/simple/mistyRose/mistyRose5.css | .background_mistyRose5,
.hover_background_mistyRose5:hover,
.active_background_mistyRose5:active:hover {
background: #c81400;
background-image: -moz-linear-gradient(top, rgb(251, 25, 0) 0%, rgb(200, 20, 0) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(251, 25, 0)), color-stop(100%, rgb(200, 20, 0)));
background-image: -webkit-linear-gradient(top, rgb(251, 25, 0) 0%, rgb(200, 20, 0) 100%);
background-image: -o-linear-gradient(top, rgb(251, 25, 0) 0%, rgb(200, 20, 0) 100%);
background-image: -ms-linear-gradient(top, rgb(251, 25, 0) 0%, rgb(200, 20, 0) 100%);
background-image: linear-gradient(to bottom, rgb(251, 25, 0) 0%, rgb(200, 20, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb1900', endColorstr='#c81400',GradientType=0 );
}
.background_mistyRose5h,
.hover_background_mistyRose5h:hover,
.active_background_mistyRose5h:active:hover {
background: #c81400;
background-image: -moz-linear-gradient(top, rgb(255, 67, 46) 0%, rgb(241, 24, 0) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 67, 46)), color-stop(100%, rgb(241, 24, 0)));
background-image: -webkit-linear-gradient(top, rgb(255, 67, 46) 0%, rgb(241, 24, 0) 100%);
background-image: -o-linear-gradient(top, rgb(255, 67, 46) 0%, rgb(241, 24, 0) 100%);
background-image: -ms-linear-gradient(top, rgb(255, 67, 46) 0%, rgb(241, 24, 0) 100%);
background-image: linear-gradient(to bottom, rgb(255, 67, 46) 0%, rgb(241, 24, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff432e', endColorstr='#f11800',GradientType=0 );
}
.background_mistyRose5a,
.hover_background_mistyRose5a:hover,
.active_background_mistyRose5a:active:hover {
background: #c81400;
background-image: -moz-linear-gradient(top, rgb(241, 24, 0) 0%, rgb(255, 67, 46) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(241, 24, 0)), color-stop(100%, rgb(255, 67, 46)));
background-image: -webkit-linear-gradient(top, rgb(241, 24, 0) 0%, rgb(255, 67, 46) 100%);
background-image: -o-linear-gradient(top, rgb(241, 24, 0) 0%, rgb(255, 67, 46) 100%);
background-image: -ms-linear-gradient(top, rgb(241, 24, 0) 0%, rgb(255, 67, 46) 100%);
background-image: linear-gradient(to bottom, rgb(241, 24, 0) 0%, rgb(255, 67, 46) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f11800', endColorstr='#ff432e',GradientType=0 );
}
.background_mistyRose5s,
.hover_background_mistyRose5s:hover,
.active_background_mistyRose5s:active:hover {
background: #c81400;
background-image: -moz-linear-gradient(top, rgb(255, 134, 121) 0%, rgb(255, 67, 46) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 134, 121)), color-stop(100%, rgb(255, 67, 46)));
background-image: -webkit-linear-gradient(top, rgb(255, 134, 121) 0%, rgb(255, 67, 46) 100%);
background-image: -o-linear-gradient(top, rgb(255, 134, 121) 0%, rgb(255, 67, 46) 100%);
background-image: -ms-linear-gradient(top, rgb(255, 134, 121) 0%, rgb(255, 67, 46) 100%);
background-image: linear-gradient(to bottom, rgb(255, 134, 121) 0%, rgb(255, 67, 46) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8679', endColorstr='#ff432e',GradientType=0 );
}
.background_color_mistyRose5,
.hover_background_color_mistyRose5:hover,
.active_background_color_mistyRose5:active:hover {
background-color:#c81400;
}
.background_first_color_mistyRose5,
.hover_background_first_color_mistyRose5:hover,
.active_background_first_color_mistyRose5:active:hover {
background-color:#fb1900;
}
.background_last_color_mistyRose5,
.hover_background_last_color_mistyRose5:hover,
.active_background_color_last_mistyRose5:active:hover {
background-color:#c81400;
}
/* ------------------------------ color settings -------------------------------*/
.color_mistyRose5,
.hover_color_mistyRose5:hover,
.active_color_mistyRose5:active:hover {
color: #c8c8c8;
}
.color_mistyRose5h,
.hover_color_mistyRose5h:hover,
.active_color_mistyRose5h:active:hover {
color: #c8c8c8;
}
.color_mistyRose5a,
.hover_color_mistyRose5a:hover,
.active_color_mistyRose5a:active:hover {
color: #ff0;
}
.color_mistyRose5s,
.hover_color_mistyRose5s:hover,
.active_color_mistyRose5s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_mistyRose5,
.hover_border_mistyRose5:hover,
.active_border_mistyRose5:active:hover {
border-color: #c81400 #c81400 #c81400 #c81400;
}
.border_mistyRose5h,
.hover_border_mistyRose5h:hover,
.active_border_mistyRose5h:active:hover {
border-color: #b41200 #b41200 #b41200 #b41200;
}
.border_mistyRose5a,
.hover_border_mistyRose5a:hover,
.active_border_mistyRose5a:active:hover {
border-color: #a01000 #a01000 #a01000 #a01000;
}
.border_mistyRose5s,
.hover_border_mistyRose5s:hover,
.active_border_mistyRose5s:active:hover {
border-color: #ff432e #ff432e #ff432e #ff432e;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_mistyRose5,
.hover_shadow_expand_mistyRose5:hover,
.active_shadow_expand_mistyRose5:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(200, 20, 0, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(200, 20, 0, .39);
box-shadow: 0em 0em 1em 0.25em rgba(200, 20, 0, .39);
}
.shadow_expand_mistyRose5h,
.hover_shadow_expand_mistyRose5h:hover,
.active_shadow_expand_mistyRose5h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(241, 24, 0, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(241, 24, 0, .50);
box-shadow: 0em 0em 1em 0.25em rgba(241, 24, 0, .50);
}
.shadow_expand_mistyRose5a,
.hover_shadow_expand_mistyRose5a:hover,
.active_shadow_expand_mistyRose5a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(255, 67, 46, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(255, 67, 46, .63);
box-shadow: 0em 0em 1em 0.25em rgba(255, 67, 46, .63);
}
.shadow_expand_mistyRose5s,
.hover_shadow_expand_mistyRose5s:hover,
.active_shadow_expand_mistyRose5s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(255, 67, 46, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(255, 67, 46, .78);
box-shadow: 0em 0em 1em 0.25em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_mistyRose5,
.hover_shadow_left_mistyRose5:hover,
.active_shadow_left_mistyRose5:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(200, 20, 0, .39);
box-shadow: -0.5em -0.5em 1em rgba(200, 20, 0, .39);
}
.shadow_left_mistyRose5h,
.hover_shadow_left_mistyRose5h:hover,
.active_shadow_left_mistyRose5h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(241, 24, 0, .50);
box-shadow: -0.5em -0.5em 1em rgba(241, 24, 0, .50);
}
.shadow_left_mistyRose5a,
.hover_shadow_left_mistyRose5a:hover,
.active_shadow_left_mistyRose5a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .63);
box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .63);
}
.shadow_left_mistyRose5s,
.hover_shadow_left_mistyRose5s:hover,
.active_shadow_left_mistyRose5s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .78);
box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_mistyRose5,
.hover_shadow_right_mistyRose5:hover,
.active_shadow_right_mistyRose5:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(200, 20, 0, .39);
box-shadow: 0.5em 0em 1em rgba(200, 20, 0, .39);
}
.shadow_right_mistyRose5h,
.hover_shadow_right_mistyRose5h:hover,
.active_shadow_right_mistyRose5h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(241, 24, 0, .50);
box-shadow: 0.5em 0em 1em rgba(241, 24, 0, .50);
}
.shadow_right_mistyRose5a,
.hover_shadow_right_mistyRose5a:hover,
.active_shadow_right_mistyRose5a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(255, 67, 46, .63);
box-shadow: 0.5em 0em 1em rgba(255, 67, 46, .63);
}
.shadow_right_mistyRose5s,
.hover_shadow_right_mistyRose5s:hover,
.active_shadow_right_mistyRose5s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(255, 67, 46, .78);
box-shadow: 0.5em 0em 1em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_mistyRose5,
.hover_shadow_top_mistyRose5:hover,
.active_shadow_top_mistyRose5:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(200, 20, 0, .39);
box-shadow: 0em -0.5em 1em rgba(200, 20, 0, .39);
}
.shadow_top_mistyRose5h,
.hover_shadow_top_mistyRose5h:hover,
.active_shadow_top_mistyRose5h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(241, 24, 0, .50);
box-shadow: 0em -0.5em 1em rgba(241, 24, 0, .50);
}
.shadow_top_mistyRose5a,
.hover_shadow_top_mistyRose5a:hover,
.active_shadow_top_mistyRose5a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(255, 67, 46, .63);
box-shadow: 0em -0.5em 1em rgba(255, 67, 46, .63);
}
.shadow_top_mistyRose5s,
.hover_shadow_top_mistyRose5s:hover,
.active_shadow_top_mistyRose5s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(255, 67, 46, .78);
box-shadow: 0em -0.5em 1em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_mistyRose5,
.hover_shadow_bottom_mistyRose5:hover,
.active_shadow_bottom_mistyRose5:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(200, 20, 0, .39);
box-shadow: 0em 0.5em 1em rgba(200, 20, 0, .39);
}
.shadow_bottom_mistyRose5h,
.hover_shadow_bottom_mistyRose5h:hover,
.active_shadow_bottom_mistyRose5h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(241, 24, 0, .50);
box-shadow: 0em 0.5em 1em rgba(241, 24, 0, .50);
}
.shadow_bottom_mistyRose5a,
.hover_shadow_bottom_mistyRose5a:hover,
.active_shadow_bottom_mistyRose5a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(255, 67, 46, .63);
box-shadow: 0em 0.5em 1em rgba(255, 67, 46, .63);
}
.shadow_bottom_mistyRose5s,
.hover_shadow_bottom_mistyRose5s:hover,
.active_shadow_bottom_mistyRose5s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(255, 67, 46, .78);
box-shadow: 0em 0.5em 1em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_mistyRose5,
.hover_shadow_top_left_mistyRose5:hover,
.active_shadow_top_left_mistyRose5:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(200, 20, 0, .39);
box-shadow: -0.5em -0.5em 1em rgba(200, 20, 0, .39);
}
.shadow_top_left_mistyRose5h,
.hover_shadow_top_left_mistyRose5h:hover,
.active_shadow_top_left_mistyRose5h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(241, 24, 0, .50);
box-shadow: -0.5em -0.5em 1em rgba(241, 24, 0, .50);
}
.shadow_top_left_mistyRose5a,
.hover_shadow_top_left_mistyRose5a:hover,
.active_shadow_top_left_mistyRose5a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .63);
box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .63);
}
.shadow_top_left_mistyRose5s,
.hover_shadow_top_left_mistyRose5s:hover,
.active_shadow_top_left_mistyRose5s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .78);
box-shadow: -0.5em -0.5em 1em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_mistyRose5,
.hover_shadow_top_right_mistyRose5:hover,
.active_shadow_top_right_mistyRose5:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(200, 20, 0, .39);
box-shadow: 0.5em -0.5em 1em rgba(200, 20, 0, .39);
}
.shadow_top_right_mistyRose5h,
.hover_shadow_top_right_mistyRose5h:hover,
.active_shadow_top_right_mistyRose5h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(241, 24, 0, .50);
box-shadow: 0.5em -0.5em 1em rgba(241, 24, 0, .50);
}
.shadow_top_right_mistyRose5a,
.hover_shadow_top_right_mistyRose5a:hover,
.active_shadow_top_right_mistyRose5a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(255, 67, 46, .63);
box-shadow: 0.5em -0.5em 1em rgba(255, 67, 46, .63);
}
.shadow_top_right_mistyRose5s,
.hover_shadow_top_right_mistyRose5s:hover,
.active_shadow_top_right_mistyRose5s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(255, 67, 46, .78);
box-shadow: 0.5em -0.5em 1em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_mistyRose5,
.hover_shadow_bottom_left_mistyRose5:hover,
.active_shadow_bottom_left_mistyRose5:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(200, 20, 0, .39);
box-shadow: -0.5em 0.5em 1em rgba(200, 20, 0, .39);
}
.shadow_bottom_left_mistyRose5h,
.hover_shadow_bottom_left_mistyRose5h:hover,
.active_shadow_bottom_left_mistyRose5h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(241, 24, 0, .50);
box-shadow: -0.5em 0.5em 1em rgba(241, 24, 0, .50);
}
.shadow_bottom_left_mistyRose5a,
.hover_shadow_bottom_left_mistyRose5a:hover,
.active_shadow_bottom_left_mistyRose5a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(255, 67, 46, .63);
box-shadow: -0.5em 0.5em 1em rgba(255, 67, 46, .63);
}
.shadow_bottom_left_mistyRose5s,
.hover_shadow_bottom_left_mistyRose5s:hover,
.active_shadow_bottom_left_mistyRose5s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(255, 67, 46, .78);
box-shadow: -0.5em 0.5em 1em rgba(255, 67, 46, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_mistyRose5,
.hover_shadow_bottom_right_mistyRose5:hover,
.active_shadow_bottom_right_mistyRose5:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(200, 20, 0, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(200, 20, 0, .39);
box-shadow: 0.5em 0.5em 1em rgba(200, 20, 0, .39);
}
.shadow_bottom_right_mistyRose5h,
.hover_shadow_bottom_right_mistyRose5h:hover,
.active_shadow_bottom_right_mistyRose5h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(241, 24, 0, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(241, 24, 0, .50);
box-shadow: 0.5em 0.5em 1em rgba(241, 24, 0, .50);
}
.shadow_bottom_right_mistyRose5a,
.hover_shadow_bottom_right_mistyRose5a:hover,
.active_shadow_bottom_right_mistyRose5a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(255, 67, 46, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(255, 67, 46, .63);
box-shadow: 0.5em 0.5em 1em rgba(255, 67, 46, .63);
}
.shadow_bottom_right_mistyRose5s,
.hover_shadow_bottom_right_mistyRose5s:hover,
.active_shadow_bottom_right_mistyRose5s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(255, 67, 46, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(255, 67, 46, .78);
box-shadow: 0.5em 0.5em 1em rgba(255, 67, 46, .78);
} | 0.45302 | 0.091463 |
@font-face {
font-family: 'meteocons';
src:url('../fonts/meteocons.eot?lbb2co');
src:url('../fonts/meteocons.eot?#iefixlbb2co') format('embedded-opentype'),
url('../fonts/meteocons.woff?lbb2co') format('woff'),
url('../fonts/meteocons.ttf?lbb2co') format('truetype'),
url('../fonts/meteocons.svg?lbb2co#meteocons') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="wi-"], [class*=" wi-"] {
font-family: 'meteocons';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.wi-sunrise:before {
content: "\e600";
}
.wi-sun:before {
content: "\e601";
}
.wi-moon:before {
content: "\e602";
}
.wi-sun2:before {
content: "\e603";
}
.wi-windy:before {
content: "\e604";
}
.wi-wind:before {
content: "\e605";
}
.wi-snowflake:before {
content: "\e606";
}
.wi-cloudy:before {
content: "\e607";
}
.wi-cloud:before {
content: "\e608";
}
.wi-weather:before {
content: "\e609";
}
.wi-weather2:before {
content: "\e60a";
}
.wi-weather3:before {
content: "\e60b";
}
.wi-lines:before {
content: "\e60c";
}
.wi-cloud2:before {
content: "\e60d";
}
.wi-lightning:before {
content: "\e60e";
}
.wi-lightning2:before {
content: "\e60f";
}
.wi-rainy:before {
content: "\e610";
}
.wi-rainy2:before {
content: "\e611";
}
.wi-windy2:before {
content: "\e612";
}
.wi-windy3:before {
content: "\e613";
}
.wi-snowy:before {
content: "\e614";
}
.wi-snowy2:before {
content: "\e615";
}
.wi-snowy3:before {
content: "\e616";
}
.wi-weather4:before {
content: "\e617";
}
.wi-cloudy2:before {
content: "\e618";
}
.wi-cloud3:before {
content: "\e619";
}
.wi-lightning3:before {
content: "\e61a";
}
.wi-sun3:before {
content: "\e61b";
}
.wi-moon2:before {
content: "\e61c";
}
.wi-cloudy3:before {
content: "\e61d";
}
.wi-cloud4:before {
content: "\e61e";
}
.wi-cloud5:before {
content: "\e61f";
}
.wi-lightning4:before {
content: "\e620";
}
.wi-rainy3:before {
content: "\e621";
}
.wi-rainy4:before {
content: "\e622";
}
.wi-windy4:before {
content: "\e623";
}
.wi-windy5:before {
content: "\e624";
}
.wi-snowy4:before {
content: "\e625";
}
.wi-snowy5:before {
content: "\e626";
}
.wi-weather5:before {
content: "\e627";
}
.wi-cloudy4:before {
content: "\e628";
}
.wi-lightning5:before {
content: "\e629";
}
.wi-thermometer:before {
content: "\e62a";
}
.wi-compass:before {
content: "\e62b";
}
.wi-none:before {
content: "\e62c";
}
.wi-celsius:before {
content: "\e62d";
}
.wi-fahrenheit:before {
content: "\e62e";
} | html_admin/assets/vendor/meteocons/css/meteocons.css | @font-face {
font-family: 'meteocons';
src:url('../fonts/meteocons.eot?lbb2co');
src:url('../fonts/meteocons.eot?#iefixlbb2co') format('embedded-opentype'),
url('../fonts/meteocons.woff?lbb2co') format('woff'),
url('../fonts/meteocons.ttf?lbb2co') format('truetype'),
url('../fonts/meteocons.svg?lbb2co#meteocons') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="wi-"], [class*=" wi-"] {
font-family: 'meteocons';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.wi-sunrise:before {
content: "\e600";
}
.wi-sun:before {
content: "\e601";
}
.wi-moon:before {
content: "\e602";
}
.wi-sun2:before {
content: "\e603";
}
.wi-windy:before {
content: "\e604";
}
.wi-wind:before {
content: "\e605";
}
.wi-snowflake:before {
content: "\e606";
}
.wi-cloudy:before {
content: "\e607";
}
.wi-cloud:before {
content: "\e608";
}
.wi-weather:before {
content: "\e609";
}
.wi-weather2:before {
content: "\e60a";
}
.wi-weather3:before {
content: "\e60b";
}
.wi-lines:before {
content: "\e60c";
}
.wi-cloud2:before {
content: "\e60d";
}
.wi-lightning:before {
content: "\e60e";
}
.wi-lightning2:before {
content: "\e60f";
}
.wi-rainy:before {
content: "\e610";
}
.wi-rainy2:before {
content: "\e611";
}
.wi-windy2:before {
content: "\e612";
}
.wi-windy3:before {
content: "\e613";
}
.wi-snowy:before {
content: "\e614";
}
.wi-snowy2:before {
content: "\e615";
}
.wi-snowy3:before {
content: "\e616";
}
.wi-weather4:before {
content: "\e617";
}
.wi-cloudy2:before {
content: "\e618";
}
.wi-cloud3:before {
content: "\e619";
}
.wi-lightning3:before {
content: "\e61a";
}
.wi-sun3:before {
content: "\e61b";
}
.wi-moon2:before {
content: "\e61c";
}
.wi-cloudy3:before {
content: "\e61d";
}
.wi-cloud4:before {
content: "\e61e";
}
.wi-cloud5:before {
content: "\e61f";
}
.wi-lightning4:before {
content: "\e620";
}
.wi-rainy3:before {
content: "\e621";
}
.wi-rainy4:before {
content: "\e622";
}
.wi-windy4:before {
content: "\e623";
}
.wi-windy5:before {
content: "\e624";
}
.wi-snowy4:before {
content: "\e625";
}
.wi-snowy5:before {
content: "\e626";
}
.wi-weather5:before {
content: "\e627";
}
.wi-cloudy4:before {
content: "\e628";
}
.wi-lightning5:before {
content: "\e629";
}
.wi-thermometer:before {
content: "\e62a";
}
.wi-compass:before {
content: "\e62b";
}
.wi-none:before {
content: "\e62c";
}
.wi-celsius:before {
content: "\e62d";
}
.wi-fahrenheit:before {
content: "\e62e";
} | 0.195978 | 0.101947 |
@charset "UTF-8";
/* CONTATO */
.contato-orcamento {
padding: 0 calc((100% - 1200px) / 2);
padding-bottom: 60px;
box-shadow: inset 0 250px var(--cor07), inset 0 0;
}
.box-contato-orcamento {
margin: 0 20px;
display: flex;
}
.box-preto {
width: 43%;
background: var(--cor01) url('../img/icones/bottom-left.svg') no-repeat bottom 20px left 20px;
box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.137);
border-radius: 5px 0 0 5px;
padding: 60px;
}
.box-preto h3 {
color: var(--cor02);
padding-bottom: 40px;
font-weight: normal;
}
.box-preto p,
.box-preto a {
color: var(--cor14);
line-height: 30px;
}
.box-preto a:hover {
color: var(--cor02);
}
.topo-endereco,
.topo-mail,
.topo-tel {
position: relative;
}
.topo-endereco::before {
content: url('../img/icones/local.svg');
position: absolute;
left: -30px;
top: 4px;
}
.topo-mail::before {
content: url('../img/icones/email.svg');
position: absolute;
left: -30px;
top: 4px;
}
.topo-tel::before {
content: url('../img/icones/telefone.svg');
position: absolute;
left: -30px;
top: 4px;
}
.item-loja {
padding: 0 30px 30px 30px;
}
/* box-branco */
.box-branco {
width: 57%;
background: var(--cor02) url('../img/icones/bottom-right.svg') no-repeat bottom 20px right 20px;
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.137);
border-radius: 0 5px 5px 0;
padding: 60px;
}
.item-form {
padding-bottom: 20px;
display: flex;
flex: 1 1 100%;
}
.label-esquerda {
padding-right: 10px;
width: 50%;
}
.label-direita {
padding-left: 10px;
width: 50%;
}
.label-esquerda,
.label-direita,
.label-completa,
.area-texto {
display: flex;
flex-direction: column;
}
label {
padding-bottom: 10px;
}
input,
textarea {
background: var(--cor13);
border-radius: 5px;
border: 1px solid #E7E7E7;
font-size: 1.6rem;
padding: 15px;
}
input:focus,
textarea:focus {
outline: none;
box-shadow: 0px 0px 0px 2px rgb(255, 238, 171);
border: 1px solid var(--cor04);
background: var(--cor02);
}
.botao.form {
color: var(--cor05);
text-transform: uppercase;
font-weight: bolder;
}
/* Mapas Lojas */
.lojas-locais {
padding: 60px calc((100% - 1200px) / 2);
}
.box-lojas-locais {
margin: 0 20px;
display: flex;
}
.mapa.rj {
margin-right: 20px;
}
.mapa.sp {
margin-left: 20px;
}
.mapa img {
border-radius: 5px 5px 0 0;
}
.desc-mapa {
padding: 30px;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.137);
border-radius: 0 0 5px 5px;
}
.desc-mapa h2 {
font-size: 3.2rem;
padding-bottom: 30px;
}
.desc-mapa p,
.desc-mapa a {
color: var(--cor06);
line-height: 30px;
}
.desc-mapa a:hover {
color: var(--cor01);
}
.rj-contato,
.sp-contato {
display: flex;
padding-bottom: 30px;
}
.rj-endereco,
.rj-mail-tel,
.sp-endereco,
.sp-mail-tel {
flex: 1 1 50%;
border-left: 2px solid #EDEDED;
padding-left: 10px;
}
.horario {
display: flex;
align-items: center;
}
.horario p {
padding-left: 10px;
color: var(--cor01);
} | css/pag-contato.css | @charset "UTF-8";
/* CONTATO */
.contato-orcamento {
padding: 0 calc((100% - 1200px) / 2);
padding-bottom: 60px;
box-shadow: inset 0 250px var(--cor07), inset 0 0;
}
.box-contato-orcamento {
margin: 0 20px;
display: flex;
}
.box-preto {
width: 43%;
background: var(--cor01) url('../img/icones/bottom-left.svg') no-repeat bottom 20px left 20px;
box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.137);
border-radius: 5px 0 0 5px;
padding: 60px;
}
.box-preto h3 {
color: var(--cor02);
padding-bottom: 40px;
font-weight: normal;
}
.box-preto p,
.box-preto a {
color: var(--cor14);
line-height: 30px;
}
.box-preto a:hover {
color: var(--cor02);
}
.topo-endereco,
.topo-mail,
.topo-tel {
position: relative;
}
.topo-endereco::before {
content: url('../img/icones/local.svg');
position: absolute;
left: -30px;
top: 4px;
}
.topo-mail::before {
content: url('../img/icones/email.svg');
position: absolute;
left: -30px;
top: 4px;
}
.topo-tel::before {
content: url('../img/icones/telefone.svg');
position: absolute;
left: -30px;
top: 4px;
}
.item-loja {
padding: 0 30px 30px 30px;
}
/* box-branco */
.box-branco {
width: 57%;
background: var(--cor02) url('../img/icones/bottom-right.svg') no-repeat bottom 20px right 20px;
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.137);
border-radius: 0 5px 5px 0;
padding: 60px;
}
.item-form {
padding-bottom: 20px;
display: flex;
flex: 1 1 100%;
}
.label-esquerda {
padding-right: 10px;
width: 50%;
}
.label-direita {
padding-left: 10px;
width: 50%;
}
.label-esquerda,
.label-direita,
.label-completa,
.area-texto {
display: flex;
flex-direction: column;
}
label {
padding-bottom: 10px;
}
input,
textarea {
background: var(--cor13);
border-radius: 5px;
border: 1px solid #E7E7E7;
font-size: 1.6rem;
padding: 15px;
}
input:focus,
textarea:focus {
outline: none;
box-shadow: 0px 0px 0px 2px rgb(255, 238, 171);
border: 1px solid var(--cor04);
background: var(--cor02);
}
.botao.form {
color: var(--cor05);
text-transform: uppercase;
font-weight: bolder;
}
/* Mapas Lojas */
.lojas-locais {
padding: 60px calc((100% - 1200px) / 2);
}
.box-lojas-locais {
margin: 0 20px;
display: flex;
}
.mapa.rj {
margin-right: 20px;
}
.mapa.sp {
margin-left: 20px;
}
.mapa img {
border-radius: 5px 5px 0 0;
}
.desc-mapa {
padding: 30px;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.137);
border-radius: 0 0 5px 5px;
}
.desc-mapa h2 {
font-size: 3.2rem;
padding-bottom: 30px;
}
.desc-mapa p,
.desc-mapa a {
color: var(--cor06);
line-height: 30px;
}
.desc-mapa a:hover {
color: var(--cor01);
}
.rj-contato,
.sp-contato {
display: flex;
padding-bottom: 30px;
}
.rj-endereco,
.rj-mail-tel,
.sp-endereco,
.sp-mail-tel {
flex: 1 1 50%;
border-left: 2px solid #EDEDED;
padding-left: 10px;
}
.horario {
display: flex;
align-items: center;
}
.horario p {
padding-left: 10px;
color: var(--cor01);
} | 0.358353 | 0.141964 |
header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem;
margin: 0;
position: relative;
height: 20vh;
box-sizing: border-box;
}
@media (max-width: 680px) {
header {
height: 40vh;
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-content: center;
justify-content: center;
}
}
@media (max-width: 450px) {
header {
display: flex;
flex-direction: column;
flex-wrap: wrap;
height: fit-content;
}
}
header .logo {
width: 40%;
display: flex;
align-items: center;
/*Media Queries*/
}
@media (max-wtdth: 1450px) {
header .logo {
width: 10%;
}
}
@media (max-width: 800px) {
header .logo {
height: 2rem;
width: 90%;
}
}
@media (max-width: 680px) {
header .logo {
align-self: center;
width: 30%;
}
}
@media (max-width: 450px) {
header .logo {
width: 50%;
align-self: center;
}
}
header .logo .dot {
width: 5rem;
height: 4.5rem;
background: #C4C4C4;
border: 1px solid #000000;
border-radius: 50%;
box-sizing: border-box;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 800px) {
header .logo .dot {
width: 3rem;
height: 3rem;
}
}
@media (max-width: 680px) {
header .logo .dot {
width: 20%;
height: 100%;
}
}
header .logo h2 {
justify-self: center;
margin-left: 1%;
font-size: 4.5rem;
font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
}
@media (max-width: 800px) {
header .logo h2 {
font-size: 2.5rem;
}
}
@media (max-width: 450px) {
header .logo h2 {
width: 20%;
}
}
header nav.main-nav {
justify-self: center;
display: flex;
justify-content: space-evenly;
width: 30%;
}
@media (max-width: 1450px) {
header nav.main-nav {
width: 40%;
margin-right: 3.5rem;
}
}
@media (max-width: 800px) {
header nav.main-nav {
display: flex;
text-align: center;
width: 50%;
}
}
@media (max-width: 680px) {
header nav.main-nav {
margin-top: 1rem;
width: 80%;
}
}
@media (max-width: 450px) {
header nav.main-nav {
display: flex;
align-self: center;
justify-content: center;
flex-direction: column;
align-items: center;
}
}
header nav.main-nav a.Invest {
width: 100%;
border-right: 2px solid black;
margin-right: 0.5rem;
padding-left: 0.5rem;
}
@media (max-width: 450px) {
header nav.main-nav a.Invest {
border: none;
text-decoration: underline;
}
}
header nav.main-nav a.Entreprenur {
width: 100%;
padding-left: 1rem;
}
@media (max-width: 450px) {
header nav.main-nav a.Entreprenur {
border: none;
text-decoration: underline;
}
}
header nav.main-nav a {
display: flex;
font-size: 2rem;
justify-items: center;
text-decoration: none;
color: black;
}
@media (max-width: 1450px) {
header nav.main-nav a {
font-size: 1.8rem;
}
}
@media (max-width: 800px) {
header nav.main-nav a {
text-align: center;
width: 20%;
}
}
header nav.main-nav a.Home {
border-right: 2px solid black;
padding-right: 1rem;
}
@media (max-width: 450px) {
header nav.main-nav a.Home {
border: none;
text-decoration: underline;
}
}
header nav.main-nav a.About {
border-right: 2px solid black;
padding-right: 1rem;
}
@media (max-width: 450px) {
header nav.main-nav a.About {
border: none;
text-decoration: underline;
}
}
header div.login {
position: absolute;
width: 10%;
top: 0;
right: 0;
margin-right: 1rem;
display: flex;
}
@media (max-width: 680px) {
header div.login {
width: 25%;
}
}
header div.login a button {
right: 0;
width: 100%;
height: 2.5rem;
margin-right: 2%;
font-size: 1rem;
background: lightgrey;
border: none;
justify-content: center;
}
header div.login .Sign-Up {
background: #C4C4C4;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
}
header div.login .Sign-In {
background-color: white;
border: none;
}
footer {
width: 100%;
height: 8vh;
justify-content: space-evenly;
align-items: center;
display: flex;
margin-top: 1rem;
}
@media (max-width: 680px) {
footer {
flex-wrap: wrap;
align-content: center;
justify-content: center;
}
}
footer .logo-footer {
justify-self: right;
display: flex;
align-items: center;
width: 40%;
margin-right: 5rem;
}
@media (max-width: 800px) {
footer .logo-footer {
width: 20%;
}
}
@media (max-width: 680px) {
footer .logo-footer {
width: 30%;
align-self: center;
margin-left: 1rem;
padding-left: 9rem;
}
}
@media (max-width: 400px) {
footer .logo-footer {
width: 100%;
align-self: center;
padding-left: 6rem;
}
}
footer .logo-footer .footer-dot {
justify-self: right;
width: 3rem;
height: 3rem;
background: #C4C4C4;
border: 1px solid #000000;
border-radius: 50%;
box-sizing: border-box;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 680px) {
footer .logo-footer .footer-dot {
width: 2rem;
height: 2rem;
}
}
footer .logo-footer h3 {
justify-self: center;
margin-left: 1%;
padding-left: 1%;
font-size: 2rem;
font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
}
footer nav.footer-nav {
justify-self: right;
margin-left: 30%;
display: flex;
justify-content: space-evenly;
width: 30%;
}
@media (max-width: 1250px) {
footer nav.footer-nav {
width: 50%;
}
}
@media (max-width: 800px) {
footer nav.footer-nav {
width: 60%;
}
}
@media (max-width: 680px) {
footer nav.footer-nav {
width: 100%;
align-self: center;
margin-right: 6rem;
}
}
footer nav.footer-nav a {
display: flex;
font-size: 1.5rem;
justify-items: center;
text-decoration: none;
color: black;
}
footer nav.footer-nav a.Home {
border-right: 2px solid black;
padding-right: 0.7rem;
}
footer nav.footer-nav a.About {
border-right: 2px solid black;
padding-right: 0.7rem;
}
footer nav.footer-nav a.Invest {
border-right: 2px solid black;
padding-right: 0.7rem;
}
@media (max-width: 680px) {
body {
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
}
}
section {
width: 100%;
height: 100vh;
background-image: url(../image/bram-van-oost-UUNzBJLXsAY-unsplash.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
text-align: center;
margin: 0;
}
@media (max-width: 400px) {
section {
height: 50vh;
}
}
section h1 {
margin: 0;
padding-top: 5%;
font-size: 3rem;
font-family: "Numans", Georgia, 'Times New Roman', Times, serif;
}
@media (max-width: 680) {
section h1 {
font-size: 1.5rem;
}
}
@media (max-width: 400px) {
section h1 {
font-size: 1.5rem;
}
}
section button.learn-more {
margin-top: 1%;
width: 8rem;
height: 2rem;
font-size: 1rem;
background-color: black;
}
section button.learn-more a {
color: white;
text-decoration: none;
}
section button.learn-more a :hover {
color: lightgrey;
transition: 1s ease-in;
}
.main-image {
height: 80vh;
background-image: url(https://images.unsplash.com/photo-1455849318743-b2233052fcff?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
box-sizing: border-box;
}
@media (max-width: 680px) {
.main-image {
display: flex;
flex-direction: column;
align-content: center;
width: fit-content;
height: 450px;
background-size: 600px,500px;
background-position: top;
}
}
@media (max-width: 400px) {
.main-image {
height: 50vh;
}
}
.main-image h1 {
font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
padding: 0;
}
.main-image p {
text-align: center;
font-size: 1.5rem;
width: 50%;
color: black;
justify-self: center;
background: #7a7a7a;
background: linear-gradient(0deg, #7a7a7a 0%, #b0b2b3 100%);
opacity: 0.8;
}
@media (max-width: 680px) {
.main-image p {
background: none;
color: white;
font-size: 1rem;
width: 100%;
opacity: 1;
}
}
.main-content {
margin-top: 1rem;
background-image: none;
display: flex;
justify-content: space-between;
height: 90vh;
}
@media (max-width: 680px) {
.main-content {
display: flex;
flex-direction: column;
align-content: center;
width: 100%;
height: fit-content;
}
}
.main-content div.founder-image {
width: 50%;
height: 70%;
border-radius: 10%;
display: flex;
align-self: center;
background-position: top;
background-image: url(https://images.unsplash.com/flagged/photo-1579911301495-8b7e49c78f4d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=633&q=80);
}
@media (max-width: 680px) {
.main-content div.founder-image {
width: 100%;
height: 90vh;
background-repeat: no-repeat;
background-size: cover;
}
}
@media (max-width: 450px) {
.main-content div.founder-image {
width: 100%;
background-repeat: no-repeat;
background-size: cover;
}
}
.main-content div.pitch {
align-self: center;
width: 50%;
height: 50%;
}
@media (max-width: 680px) {
.main-content div.pitch {
width: 100%;
}
}
@media (max-width: 450px) {
.main-content div.pitch {
height: fit-content;
}
}
.main-content div.pitch p {
width: 90%;
padding: 3%;
}
@media (max-width: 680px) {
.main-content div.pitch p {
width: 100%;
padding: 0;
}
}
.why-sign-up {
background-image: none;
display: flex;
flex-direction: column;
align-items: center;
height: 150vh;
}
@media (max-width: 800px) {
.why-sign-up {
height: 100vh;
}
}
@media (max-width: 680px) {
.why-sign-up {
display: flex;
flex-direction: column;
align-content: center;
align-items: center;
width: 100%;
height: fit-content;
}
}
.why-sign-up .why-image {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
height: fit-content;
background-image: url(https://images.unsplash.com/photo-1563192176-46820b40a0ce?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1266&q=80);
background-position: top;
background-size: cover;
background-repeat: no-repeat;
color: white;
text-align: center;
opacity: 0.6;
font-size: 1.5rem;
}
.why-sign-up .why-image p {
width: 50%;
text-align: center;
opacity: 1;
}
@media (max-width: 680px) {
.why-sign-up .why-image p {
width: 100%;
padding: 0;
}
}
.why-sign-up .target-audience {
display: flex;
justify-content: space-evenly;
margin-top: 2rem;
width: 100%;
height: 100vh;
height: 90vh;
}
@media (max-width: 800px) {
.why-sign-up .target-audience {
height: 45vh;
}
}
@media (max-width: 680px) {
.why-sign-up .target-audience {
display: flex;
flex-wrap: wrap;
width: 100%;
height: 200vh;
margin-top: 0;
padding-top: 0;
}
}
.why-sign-up .target-audience .entreprenurs {
align-self: center;
width: 40%;
height: 90%;
}
@media (max-width: 680px) {
.why-sign-up .target-audience .entreprenurs {
height: 40%;
width: 100%;
margin-top: 0;
padding-top: 0;
}
}
.why-sign-up .target-audience .entreprenurs .entreprenur-image {
width: 100%;
height: 50%;
border-radius: 10%;
background-image: url(https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1224&q=80);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
@media (max-width: 680px) {
.why-sign-up .target-audience .entreprenurs .entreprenur-image {
width: 100%;
height: 80%;
}
}
.why-sign-up .target-audience .entreprenurs button.sign-up-entreprenur {
margin-top: 1%;
width: 25%;
height: 2rem;
font-size: 1.5rem;
background: #7a7a7a;
background: linear-gradient(0deg, #7a7a7a 0%, #d2d5d6 100%);
}
@media (max-width: 450px) {
.why-sign-up .target-audience .entreprenurs button.sign-up-entreprenur {
font-size: 1rem;
}
}
.why-sign-up .target-audience .entreprenurs button.sign-up-entreprenur a {
text-decoration: none;
color: white;
}
.why-sign-up .target-audience .entreprenurs button.sign-up-entreprenur:hover {
background: #00cdf4;
background: radial-gradient(circle, #00cdf4 0%, #303431 100%);
}
.why-sign-up .target-audience .investors {
align-self: center;
width: 40%;
height: 90%;
}
@media (max-width: 680px) {
.why-sign-up .target-audience .investors {
height: 40%;
width: 100%;
}
}
.why-sign-up .target-audience .investors .investors-image {
width: 100%;
height: 50%;
border-radius: 10%;
background-image: url(https://images.unsplash.com/photo-1563986768711-b3bde3dc821e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1348&q=80);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
@media (max-width: 600px) {
.why-sign-up .target-audience .investors .investors-image {
width: 100%;
height: 80%;
}
}
.why-sign-up .target-audience .investors button.sign-up-investors {
margin-top: 1%;
width: 25%;
height: 2rem;
font-size: 1.5rem;
background: #7a7a7a;
background: linear-gradient(0deg, #7a7a7a 0%, #d2d5d6 100%);
}
@media (max-width: 450px) {
.why-sign-up .target-audience .investors button.sign-up-investors {
font-size: 1rem;
}
}
.why-sign-up .target-audience .investors button.sign-up-investors a {
text-decoration: none;
color: white;
}
.why-sign-up .target-audience .investors button.sign-up-investors:hover {
background: #86bb8d;
background: radial-gradient(circle, #86bb8d 0%, #343031 100%);
}
.title-banner {
width: 100%;
height: 60%;
background-image: url(https://images.unsplash.com/photo-1586021280718-53fbadcb65a7?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80);
opacity: 0.6;
text-align: center;
}
.title-banner p {
font-size: 1.5rem;
}
.explore-more {
height: 40vh;
background-image: none;
display: flex;
justify-content: space-evenly;
margin-top: 2rem;
padding-top: 4rem;
align-items: center;
}
@media (max-width: 800px) {
.explore-more {
height: 45vh;
justify-items: center;
align-content: center;
}
}
@media (max-width: 450px) {
.explore-more {
display: flex;
flex-direction: column;
height: 150vh;
}
}
.explore-more .register {
display: flex;
flex-direction: column;
text-align: center;
}
.explore-more .register div.clip-board {
width: 30%;
height: 20vh;
border-radius: 50%;
align-self: center;
background-image: url(https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80);
background-position: center left;
background-size: cover;
}
@media (max-width: 1030px) {
.explore-more .register div.clip-board {
width: 50%;
height: 15vh;
}
}
@media (max-width: 800px) {
.explore-more .register div.clip-board {
width: 50%;
height: 10vh;
margin-bottom: 1rem;
}
}
@media (max-width: 450px) {
.explore-more .register div.clip-board {
width: 30%;
height: 15vh;
}
}
.explore-more .register h3 {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 1.5rem;
}
.explore-more .register p {
width: 50%;
align-self: center;
font-size: 1.3rem;
}
@media (max-width: 1030px) {
.explore-more .register p {
width: 60%;
}
}
@media (max-width: 800px) {
.explore-more .register p {
width: 80%;
}
}
.explore-more div.find-projects {
display: flex;
flex-direction: column;
text-align: center;
}
.explore-more div.find-projects div.search-glass {
width: 35%;
height: 20vh;
border-radius: 50%;
align-self: center;
background-image: url(https://images.unsplash.com/photo-1586769852836-bc069f19e1b6?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60);
background-position: center left;
background-size: cover;
}
@media (max-width: 1030px) {
.explore-more div.find-projects div.search-glass {
width: 60%;
height: 15vh;
}
}
@media (max-width: 800px) {
.explore-more div.find-projects div.search-glass {
width: 50%;
height: 10vh;
}
}
@media (max-width: 450px) {
.explore-more div.find-projects div.search-glass {
width: 30%;
height: 15vh;
}
}
.explore-more div.find-projects h3 {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 1.5rem;
}
.explore-more div.find-projects p {
width: 50%;
align-self: center;
font-size: 1.3rem;
}
@media (max-width: 1030px) {
.explore-more div.find-projects p {
width: 60%;
}
}
@media (max-width: 800px) {
.explore-more div.find-projects p {
width: 80%;
}
}
.explore-more div.conect {
display: flex;
flex-direction: column;
text-align: center;
}
.explore-more div.conect div.VR-headset {
width: 35%;
height: 20vh;
border-radius: 50%;
align-self: center;
background-image: url(https://images.unsplash.com/photo-1554474054-1258273559a0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80https://images.unsplash.com/photo-1586769852836-bc069f19e1b6?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60);
background-position: center;
background-size: cover;
}
@media (max-width: 1030px) {
.explore-more div.conect div.VR-headset {
width: 60%;
height: 15vh;
}
}
@media (max-width: 800px) {
.explore-more div.conect div.VR-headset {
width: 50%;
height: 10vh;
}
}
@media (max-width: 450px) {
.explore-more div.conect div.VR-headset {
width: 30%;
height: 15vh;
}
}
.explore-more div.conect h3 {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 1.5rem;
}
.explore-more div.conect p {
width: 50%;
align-self: center;
font-size: 1.3rem;
}
@media (max-width: 1030px) {
.explore-more div.conect p {
width: 60%;
}
}
@media (max-width: 800px) {
.explore-more div.conect p {
width: 80%;
}
}
.business {
width: 100%;
height: 60%;
background-image: url(https://images.unsplash.com/photo-1511203466129-824e631920d7?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1349&q=80);
opacity: 0.6;
text-align: center;
}
.business h1 {
opacity: 1;
}
.business p {
font-size: 1.5rem;
opacity: 1;
}
.explore-more.today {
height: 40vh;
background-image: none;
display: flex;
justify-content: space-evenly;
margin-top: 2rem;
padding-top: 4rem;
align-items: center;
}
@media (max-width: 800px) {
.explore-more.today {
height: 45vh;
justify-items: center;
align-content: center;
}
}
@media (max-width: 450px) {
.explore-more.today {
display: flex;
flex-direction: column;
height: 150vh;
}
}
.explore-more.today .register {
display: flex;
flex-direction: column;
text-align: center;
}
.explore-more.today .register div.clip-board .paper {
width: 30%;
height: 20vh;
border-radius: 50%;
align-self: center;
background-image: url(https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80);
background-position: center left;
background-size: cover;
}
@media (max-width: 1030px) {
.explore-more.today .register div.clip-board .paper {
width: 50%;
height: 15vh;
}
}
@media (max-width: 800px) {
.explore-more.today .register div.clip-board .paper {
width: 50%;
height: 10vh;
margin-bottom: 1rem;
}
}
@media (max-width: 450px) {
.explore-more.today .register div.clip-board .paper {
width: 30%;
height: 15vh;
}
}
.explore-more.today .register h3 {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 1.5rem;
}
.explore-more.today .register p {
width: 50%;
align-self: center;
font-size: 1.3rem;
}
@media (max-width: 1030px) {
.explore-more.today .register p {
width: 60%;
}
}
@media (max-width: 800px) {
.explore-more.today .register p {
width: 80%;
}
}
.explore-more.today div.find-projects {
display: flex;
flex-direction: column;
text-align: center;
}
.explore-more.today div.find-projects .search-glass.get-funded {
width: 40%;
height: 20vh;
border-radius: 50%;
align-self: center;
background-image: url(https://images.unsplash.com/photo-1586021280718-53fbadcb65a7?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80);
background-position: center left;
background-size: cover;
}
@media (max-width: 1030px) {
.explore-more.today div.find-projects .search-glass.get-funded {
width: 60%;
height: 15vh;
}
}
@media (max-width: 800px) {
.explore-more.today div.find-projects .search-glass.get-funded {
width: 50%;
height: 10vh;
}
}
@media (max-width: 450px) {
.explore-more.today div.find-projects .search-glass.get-funded {
width: 30%;
height: 15vh;
}
}
.explore-more.today div.find-projects h3 {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 1.5rem;
}
.explore-more.today div.find-projects p {
width: 50%;
align-self: center;
font-size: 1.3rem;
}
@media (max-width: 1030px) {
.explore-more.today div.find-projects p {
width: 60%;
}
}
@media (max-width: 800px) {
.explore-more.today div.find-projects p {
width: 80%;
}
}
.explore-more.today div.conect {
display: flex;
flex-direction: column;
text-align: center;
}
.explore-more.today div.conect div.VR-headset.Mentor {
width: 35%;
height: 20vh;
border-radius: 50%;
align-self: center;
background-image: url(https://images.unsplash.com/photo-1495510096779-5fbe73258c83?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1349&q=80);
background-position: center;
background-size: cover;
}
@media (max-width: 1030px) {
.explore-more.today div.conect div.VR-headset.Mentor {
width: 60%;
height: 15vh;
}
}
@media (max-width: 800px) {
.explore-more.today div.conect div.VR-headset.Mentor {
width: 50%;
height: 10vh;
}
}
@media (max-width: 450px) {
.explore-more.today div.conect div.VR-headset.Mentor {
width: 30%;
height: 15vh;
}
}
.explore-more.today div.conect h3 {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 1.5rem;
}
.explore-more.today div.conect p {
width: 50%;
align-self: center;
font-size: 1.3rem;
}
@media (max-width: 1030px) {
.explore-more.today div.conect p {
width: 60%;
}
}
@media (max-width: 800px) {
.explore-more.today div.conect p {
width: 80%;
}
} | css/index.css | header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem;
margin: 0;
position: relative;
height: 20vh;
box-sizing: border-box;
}
@media (max-width: 680px) {
header {
height: 40vh;
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-content: center;
justify-content: center;
}
}
@media (max-width: 450px) {
header {
display: flex;
flex-direction: column;
flex-wrap: wrap;
height: fit-content;
}
}
header .logo {
width: 40%;
display: flex;
align-items: center;
/*Media Queries*/
}
@media (max-wtdth: 1450px) {
header .logo {
width: 10%;
}
}
@media (max-width: 800px) {
header .logo {
height: 2rem;
width: 90%;
}
}
@media (max-width: 680px) {
header .logo {
align-self: center;
width: 30%;
}
}
@media (max-width: 450px) {
header .logo {
width: 50%;
align-self: center;
}
}
header .logo .dot {
width: 5rem;
height: 4.5rem;
background: #C4C4C4;
border: 1px solid #000000;
border-radius: 50%;
box-sizing: border-box;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 800px) {
header .logo .dot {
width: 3rem;
height: 3rem;
}
}
@media (max-width: 680px) {
header .logo .dot {
width: 20%;
height: 100%;
}
}
header .logo h2 {
justify-self: center;
margin-left: 1%;
font-size: 4.5rem;
font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
}
@media (max-width: 800px) {
header .logo h2 {
font-size: 2.5rem;
}
}
@media (max-width: 450px) {
header .logo h2 {
width: 20%;
}
}
header nav.main-nav {
justify-self: center;
display: flex;
justify-content: space-evenly;
width: 30%;
}
@media (max-width: 1450px) {
header nav.main-nav {
width: 40%;
margin-right: 3.5rem;
}
}
@media (max-width: 800px) {
header nav.main-nav {
display: flex;
text-align: center;
width: 50%;
}
}
@media (max-width: 680px) {
header nav.main-nav {
margin-top: 1rem;
width: 80%;
}
}
@media (max-width: 450px) {
header nav.main-nav {
display: flex;
align-self: center;
justify-content: center;
flex-direction: column;
align-items: center;
}
}
header nav.main-nav a.Invest {
width: 100%;
border-right: 2px solid black;
margin-right: 0.5rem;
padding-left: 0.5rem;
}
@media (max-width: 450px) {
header nav.main-nav a.Invest {
border: none;
text-decoration: underline;
}
}
header nav.main-nav a.Entreprenur {
width: 100%;
padding-left: 1rem;
}
@media (max-width: 450px) {
header nav.main-nav a.Entreprenur {
border: none;
text-decoration: underline;
}
}
header nav.main-nav a {
display: flex;
font-size: 2rem;
justify-items: center;
text-decoration: none;
color: black;
}
@media (max-width: 1450px) {
header nav.main-nav a {
font-size: 1.8rem;
}
}
@media (max-width: 800px) {
header nav.main-nav a {
text-align: center;
width: 20%;
}
}
header nav.main-nav a.Home {
border-right: 2px solid black;
padding-right: 1rem;
}
@media (max-width: 450px) {
header nav.main-nav a.Home {
border: none;
text-decoration: underline;
}
}
header nav.main-nav a.About {
border-right: 2px solid black;
padding-right: 1rem;
}
@media (max-width: 450px) {
header nav.main-nav a.About {
border: none;
text-decoration: underline;
}
}
header div.login {
position: absolute;
width: 10%;
top: 0;
right: 0;
margin-right: 1rem;
display: flex;
}
@media (max-width: 680px) {
header div.login {
width: 25%;
}
}
header div.login a button {
right: 0;
width: 100%;
height: 2.5rem;
margin-right: 2%;
font-size: 1rem;
background: lightgrey;
border: none;
justify-content: center;
}
header div.login .Sign-Up {
background: #C4C4C4;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
}
header div.login .Sign-In {
background-color: white;
border: none;
}
footer {
width: 100%;
height: 8vh;
justify-content: space-evenly;
align-items: center;
display: flex;
margin-top: 1rem;
}
@media (max-width: 680px) {
footer {
flex-wrap: wrap;
align-content: center;
justify-content: center;
}
}
footer .logo-footer {
justify-self: right;
display: flex;
align-items: center;
width: 40%;
margin-right: 5rem;
}
@media (max-width: 800px) {
footer .logo-footer {
width: 20%;
}
}
@media (max-width: 680px) {
footer .logo-footer {
width: 30%;
align-self: center;
margin-left: 1rem;
padding-left: 9rem;
}
}
@media (max-width: 400px) {
footer .logo-footer {
width: 100%;
align-self: center;
padding-left: 6rem;
}
}
footer .logo-footer .footer-dot {
justify-self: right;
width: 3rem;
height: 3rem;
background: #C4C4C4;
border: 1px solid #000000;
border-radius: 50%;
box-sizing: border-box;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 680px) {
footer .logo-footer .footer-dot {
width: 2rem;
height: 2rem;
}
}
footer .logo-footer h3 {
justify-self: center;
margin-left: 1%;
padding-left: 1%;
font-size: 2rem;
font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
}
footer nav.footer-nav {
justify-self: right;
margin-left: 30%;
display: flex;
justify-content: space-evenly;
width: 30%;
}
@media (max-width: 1250px) {
footer nav.footer-nav {
width: 50%;
}
}
@media (max-width: 800px) {
footer nav.footer-nav {
width: 60%;
}
}
@media (max-width: 680px) {
footer nav.footer-nav {
width: 100%;
align-self: center;
margin-right: 6rem;
}
}
footer nav.footer-nav a {
display: flex;
font-size: 1.5rem;
justify-items: center;
text-decoration: none;
color: black;
}
footer nav.footer-nav a.Home {
border-right: 2px solid black;
padding-right: 0.7rem;
}
footer nav.footer-nav a.About {
border-right: 2px solid black;
padding-right: 0.7rem;
}
footer nav.footer-nav a.Invest {
border-right: 2px solid black;
padding-right: 0.7rem;
}
@media (max-width: 680px) {
body {
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
}
}
section {
width: 100%;
height: 100vh;
background-image: url(../image/bram-van-oost-UUNzBJLXsAY-unsplash.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
text-align: center;
margin: 0;
}
@media (max-width: 400px) {
section {
height: 50vh;
}
}
section h1 {
margin: 0;
padding-top: 5%;
font-size: 3rem;
font-family: "Numans", Georgia, 'Times New Roman', Times, serif;
}
@media (max-width: 680) {
section h1 {
font-size: 1.5rem;
}
}
@media (max-width: 400px) {
section h1 {
font-size: 1.5rem;
}
}
section button.learn-more {
margin-top: 1%;
width: 8rem;
height: 2rem;
font-size: 1rem;
background-color: black;
}
section button.learn-more a {
color: white;
text-decoration: none;
}
section button.learn-more a :hover {
color: lightgrey;
transition: 1s ease-in;
}
.main-image {
height: 80vh;
background-image: url(https://images.unsplash.com/photo-1455849318743-b2233052fcff?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
box-sizing: border-box;
}
@media (max-width: 680px) {
.main-image {
display: flex;
flex-direction: column;
align-content: center;
width: fit-content;
height: 450px;
background-size: 600px,500px;
background-position: top;
}
}
@media (max-width: 400px) {
.main-image {
height: 50vh;
}
}
.main-image h1 {
font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
padding: 0;
}
.main-image p {
text-align: center;
font-size: 1.5rem;
width: 50%;
color: black;
justify-self: center;
background: #7a7a7a;
background: linear-gradient(0deg, #7a7a7a 0%, #b0b2b3 100%);
opacity: 0.8;
}
@media (max-width: 680px) {
.main-image p {
background: none;
color: white;
font-size: 1rem;
width: 100%;
opacity: 1;
}
}
.main-content {
margin-top: 1rem;
background-image: none;
display: flex;
justify-content: space-between;
height: 90vh;
}
@media (max-width: 680px) {
.main-content {
display: flex;
flex-direction: column;
align-content: center;
width: 100%;
height: fit-content;
}
}
.main-content div.founder-image {
width: 50%;
height: 70%;
border-radius: 10%;
display: flex;
align-self: center;
background-position: top;
background-image: url(https://images.unsplash.com/flagged/photo-1579911301495-8b7e49c78f4d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=633&q=80);
}
@media (max-width: 680px) {
.main-content div.founder-image {
width: 100%;
height: 90vh;
background-repeat: no-repeat;
background-size: cover;
}
}
@media (max-width: 450px) {
.main-content div.founder-image {
width: 100%;
background-repeat: no-repeat;
background-size: cover;
}
}
.main-content div.pitch {
align-self: center;
width: 50%;
height: 50%;
}
@media (max-width: 680px) {
.main-content div.pitch {
width: 100%;
}
}
@media (max-width: 450px) {
.main-content div.pitch {
height: fit-content;
}
}
.main-content div.pitch p {
width: 90%;
padding: 3%;
}
@media (max-width: 680px) {
.main-content div.pitch p {
width: 100%;
padding: 0;
}
}
.why-sign-up {
background-image: none;
display: flex;
flex-direction: column;
align-items: center;
height: 150vh;
}
@media (max-width: 800px) {
.why-sign-up {
height: 100vh;
}
}
@media (max-width: 680px) {
.why-sign-up {
display: flex;
flex-direction: column;
align-content: center;
align-items: center;
width: 100%;
height: fit-content;
}
}
.why-sign-up .why-image {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
height: fit-content;
background-image: url(https://images.unsplash.com/photo-1563192176-46820b40a0ce?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1266&q=80);
background-position: top;
background-size: cover;
background-repeat: no-repeat;
color: white;
text-align: center;
opacity: 0.6;
font-size: 1.5rem;
}
.why-sign-up .why-image p {
width: 50%;
text-align: center;
opacity: 1;
}
@media (max-width: 680px) {
.why-sign-up .why-image p {
width: 100%;
padding: 0;
}
}
.why-sign-up .target-audience {
display: flex;
justify-content: space-evenly;
margin-top: 2rem;
width: 100%;
height: 100vh;
height: 90vh;
}
@media (max-width: 800px) {
.why-sign-up .target-audience {
height: 45vh;
}
}
@media (max-width: 680px) {
.why-sign-up .target-audience {
display: flex;
flex-wrap: wrap;
width: 100%;
height: 200vh;
margin-top: 0;
padding-top: 0;
}
}
.why-sign-up .target-audience .entreprenurs {
align-self: center;
width: 40%;
height: 90%;
}
@media (max-width: 680px) {
.why-sign-up .target-audience .entreprenurs {
height: 40%;
width: 100%;
margin-top: 0;
padding-top: 0;
}
}
.why-sign-up .target-audience .entreprenurs .entreprenur-image {
width: 100%;
height: 50%;
border-radius: 10%;
background-image: url(https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1224&q=80);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
@media (max-width: 680px) {
.why-sign-up .target-audience .entreprenurs .entreprenur-image {
width: 100%;
height: 80%;
}
}
.why-sign-up .target-audience .entreprenurs button.sign-up-entreprenur {
margin-top: 1%;
width: 25%;
height: 2rem;
font-size: 1.5rem;
background: #7a7a7a;
background: linear-gradient(0deg, #7a7a7a 0%, #d2d5d6 100%);
}
@media (max-width: 450px) {
.why-sign-up .target-audience .entreprenurs button.sign-up-entreprenur {
font-size: 1rem;
}
}
.why-sign-up .target-audience .entreprenurs button.sign-up-entreprenur a {
text-decoration: none;
color: white;
}
.why-sign-up .target-audience .entreprenurs button.sign-up-entreprenur:hover {
background: #00cdf4;
background: radial-gradient(circle, #00cdf4 0%, #303431 100%);
}
.why-sign-up .target-audience .investors {
align-self: center;
width: 40%;
height: 90%;
}
@media (max-width: 680px) {
.why-sign-up .target-audience .investors {
height: 40%;
width: 100%;
}
}
.why-sign-up .target-audience .investors .investors-image {
width: 100%;
height: 50%;
border-radius: 10%;
background-image: url(https://images.unsplash.com/photo-1563986768711-b3bde3dc821e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1348&q=80);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
@media (max-width: 600px) {
.why-sign-up .target-audience .investors .investors-image {
width: 100%;
height: 80%;
}
}
.why-sign-up .target-audience .investors button.sign-up-investors {
margin-top: 1%;
width: 25%;
height: 2rem;
font-size: 1.5rem;
background: #7a7a7a;
background: linear-gradient(0deg, #7a7a7a 0%, #d2d5d6 100%);
}
@media (max-width: 450px) {
.why-sign-up .target-audience .investors button.sign-up-investors {
font-size: 1rem;
}
}
.why-sign-up .target-audience .investors button.sign-up-investors a {
text-decoration: none;
color: white;
}
.why-sign-up .target-audience .investors button.sign-up-investors:hover {
background: #86bb8d;
background: radial-gradient(circle, #86bb8d 0%, #343031 100%);
}
.title-banner {
width: 100%;
height: 60%;
background-image: url(https://images.unsplash.com/photo-1586021280718-53fbadcb65a7?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80);
opacity: 0.6;
text-align: center;
}
.title-banner p {
font-size: 1.5rem;
}
.explore-more {
height: 40vh;
background-image: none;
display: flex;
justify-content: space-evenly;
margin-top: 2rem;
padding-top: 4rem;
align-items: center;
}
@media (max-width: 800px) {
.explore-more {
height: 45vh;
justify-items: center;
align-content: center;
}
}
@media (max-width: 450px) {
.explore-more {
display: flex;
flex-direction: column;
height: 150vh;
}
}
.explore-more .register {
display: flex;
flex-direction: column;
text-align: center;
}
.explore-more .register div.clip-board {
width: 30%;
height: 20vh;
border-radius: 50%;
align-self: center;
background-image: url(https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80);
background-position: center left;
background-size: cover;
}
@media (max-width: 1030px) {
.explore-more .register div.clip-board {
width: 50%;
height: 15vh;
}
}
@media (max-width: 800px) {
.explore-more .register div.clip-board {
width: 50%;
height: 10vh;
margin-bottom: 1rem;
}
}
@media (max-width: 450px) {
.explore-more .register div.clip-board {
width: 30%;
height: 15vh;
}
}
.explore-more .register h3 {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 1.5rem;
}
.explore-more .register p {
width: 50%;
align-self: center;
font-size: 1.3rem;
}
@media (max-width: 1030px) {
.explore-more .register p {
width: 60%;
}
}
@media (max-width: 800px) {
.explore-more .register p {
width: 80%;
}
}
.explore-more div.find-projects {
display: flex;
flex-direction: column;
text-align: center;
}
.explore-more div.find-projects div.search-glass {
width: 35%;
height: 20vh;
border-radius: 50%;
align-self: center;
background-image: url(https://images.unsplash.com/photo-1586769852836-bc069f19e1b6?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60);
background-position: center left;
background-size: cover;
}
@media (max-width: 1030px) {
.explore-more div.find-projects div.search-glass {
width: 60%;
height: 15vh;
}
}
@media (max-width: 800px) {
.explore-more div.find-projects div.search-glass {
width: 50%;
height: 10vh;
}
}
@media (max-width: 450px) {
.explore-more div.find-projects div.search-glass {
width: 30%;
height: 15vh;
}
}
.explore-more div.find-projects h3 {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 1.5rem;
}
.explore-more div.find-projects p {
width: 50%;
align-self: center;
font-size: 1.3rem;
}
@media (max-width: 1030px) {
.explore-more div.find-projects p {
width: 60%;
}
}
@media (max-width: 800px) {
.explore-more div.find-projects p {
width: 80%;
}
}
.explore-more div.conect {
display: flex;
flex-direction: column;
text-align: center;
}
.explore-more div.conect div.VR-headset {
width: 35%;
height: 20vh;
border-radius: 50%;
align-self: center;
background-image: url(https://images.unsplash.com/photo-1554474054-1258273559a0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80https://images.unsplash.com/photo-1586769852836-bc069f19e1b6?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60);
background-position: center;
background-size: cover;
}
@media (max-width: 1030px) {
.explore-more div.conect div.VR-headset {
width: 60%;
height: 15vh;
}
}
@media (max-width: 800px) {
.explore-more div.conect div.VR-headset {
width: 50%;
height: 10vh;
}
}
@media (max-width: 450px) {
.explore-more div.conect div.VR-headset {
width: 30%;
height: 15vh;
}
}
.explore-more div.conect h3 {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 1.5rem;
}
.explore-more div.conect p {
width: 50%;
align-self: center;
font-size: 1.3rem;
}
@media (max-width: 1030px) {
.explore-more div.conect p {
width: 60%;
}
}
@media (max-width: 800px) {
.explore-more div.conect p {
width: 80%;
}
}
.business {
width: 100%;
height: 60%;
background-image: url(https://images.unsplash.com/photo-1511203466129-824e631920d7?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1349&q=80);
opacity: 0.6;
text-align: center;
}
.business h1 {
opacity: 1;
}
.business p {
font-size: 1.5rem;
opacity: 1;
}
.explore-more.today {
height: 40vh;
background-image: none;
display: flex;
justify-content: space-evenly;
margin-top: 2rem;
padding-top: 4rem;
align-items: center;
}
@media (max-width: 800px) {
.explore-more.today {
height: 45vh;
justify-items: center;
align-content: center;
}
}
@media (max-width: 450px) {
.explore-more.today {
display: flex;
flex-direction: column;
height: 150vh;
}
}
.explore-more.today .register {
display: flex;
flex-direction: column;
text-align: center;
}
.explore-more.today .register div.clip-board .paper {
width: 30%;
height: 20vh;
border-radius: 50%;
align-self: center;
background-image: url(https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80);
background-position: center left;
background-size: cover;
}
@media (max-width: 1030px) {
.explore-more.today .register div.clip-board .paper {
width: 50%;
height: 15vh;
}
}
@media (max-width: 800px) {
.explore-more.today .register div.clip-board .paper {
width: 50%;
height: 10vh;
margin-bottom: 1rem;
}
}
@media (max-width: 450px) {
.explore-more.today .register div.clip-board .paper {
width: 30%;
height: 15vh;
}
}
.explore-more.today .register h3 {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 1.5rem;
}
.explore-more.today .register p {
width: 50%;
align-self: center;
font-size: 1.3rem;
}
@media (max-width: 1030px) {
.explore-more.today .register p {
width: 60%;
}
}
@media (max-width: 800px) {
.explore-more.today .register p {
width: 80%;
}
}
.explore-more.today div.find-projects {
display: flex;
flex-direction: column;
text-align: center;
}
.explore-more.today div.find-projects .search-glass.get-funded {
width: 40%;
height: 20vh;
border-radius: 50%;
align-self: center;
background-image: url(https://images.unsplash.com/photo-1586021280718-53fbadcb65a7?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80);
background-position: center left;
background-size: cover;
}
@media (max-width: 1030px) {
.explore-more.today div.find-projects .search-glass.get-funded {
width: 60%;
height: 15vh;
}
}
@media (max-width: 800px) {
.explore-more.today div.find-projects .search-glass.get-funded {
width: 50%;
height: 10vh;
}
}
@media (max-width: 450px) {
.explore-more.today div.find-projects .search-glass.get-funded {
width: 30%;
height: 15vh;
}
}
.explore-more.today div.find-projects h3 {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 1.5rem;
}
.explore-more.today div.find-projects p {
width: 50%;
align-self: center;
font-size: 1.3rem;
}
@media (max-width: 1030px) {
.explore-more.today div.find-projects p {
width: 60%;
}
}
@media (max-width: 800px) {
.explore-more.today div.find-projects p {
width: 80%;
}
}
.explore-more.today div.conect {
display: flex;
flex-direction: column;
text-align: center;
}
.explore-more.today div.conect div.VR-headset.Mentor {
width: 35%;
height: 20vh;
border-radius: 50%;
align-self: center;
background-image: url(https://images.unsplash.com/photo-1495510096779-5fbe73258c83?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1349&q=80);
background-position: center;
background-size: cover;
}
@media (max-width: 1030px) {
.explore-more.today div.conect div.VR-headset.Mentor {
width: 60%;
height: 15vh;
}
}
@media (max-width: 800px) {
.explore-more.today div.conect div.VR-headset.Mentor {
width: 50%;
height: 10vh;
}
}
@media (max-width: 450px) {
.explore-more.today div.conect div.VR-headset.Mentor {
width: 30%;
height: 15vh;
}
}
.explore-more.today div.conect h3 {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 1.5rem;
}
.explore-more.today div.conect p {
width: 50%;
align-self: center;
font-size: 1.3rem;
}
@media (max-width: 1030px) {
.explore-more.today div.conect p {
width: 60%;
}
}
@media (max-width: 800px) {
.explore-more.today div.conect p {
width: 80%;
}
} | 0.418816 | 0.105257 |
.indexContainerMain {
color: #3f3f3f;
}
/* <----------------------------------- (INDEX) SECTION VIDEO GENERAL -------------------------------> */
.indexContainerMain .sectionVideo h1{
font-weight: bold;
text-transform: uppercase;
text-shadow: 0px 1px 1px rgba(0,0,0, 0.5);
}
/* <----------------------------------- (INDEX) SECTION VIDEO GENERAL -------------------------------> */
/* <----------------------------------- (INDEX) SECTION PARALLAX GENERAL -------------------------------> */
.indexContainerMain .sectionParallax {
background-image: url("../images/index_banner.png");
height: 400px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.indexContainerMain .sectionParallax .parallaxContain h2 {
display: block;
color: rgba(255, 255, 255, 0.9);
text-transform: uppercase;
text-align: center;
font-weight: 700;
position: absolute;
text-shadow: 0px 1px 1px rgba(0,0,0, 0.5);
width: 100%;
top: 50%;
transform: translate(0px, -50%);
}
/* <----------------------------------- (INDEX) SECTION PARALLAX GENERAL -------------------------------> */
/* <----------------------------------- (INDEX) SECTION VIDEO GENERAL -------------------------------> */
.indexContainerMain .sectionVideo h1{
text-align: center;
}
/* <----------------------------------- (INDEX) SECTION VIDEO GENERAL -------------------------------> */
/* <----------------------------------- (INDEX) SECTION INFO GENERAL -------------------------------> */
.indexContainerMain .containerSectionInfo .sectionInfo{
padding: 20px;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle {
overflow: hidden;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleImg {
height: 100%;
width: 15%;
float: left;
display: inline-block;
position: relative;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleImg img {
width: 100%;
position: absolute;
max-height: 80px;
max-width: 80px;
top: 50%;
right:0%;
transform: translate(0px, -50%);
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText {
height: 100%;
width: 85%;
display: inline-block;
position: relative;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText .textContainer{
position: absolute;
top: 50%;
transform: translate(0px, -50%);
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText h3{
font-weight: bold;
}
/* <----------------------------------- (INDEX) SECTION INFO GENERAL -------------------------------> */
@media (max-width: 960px){ /* <----------------------------------- MAS DE 1280 -------------------------------> */
/* <----------------------------------- (INDEX) SECTION VIDEO HASTA 1280 -------------------------------> */
.indexContainerMain .sectionMain {
display: none;
}
.indexContainerMain .sectionVideo .description {
width: 100%;
}
.indexContainerMain .sectionVideo .description {
margin-top: 40px;
margin-bottom: 40px;
}
.indexContainerMain .sectionVideo .videoWrapper {
position: relative;
padding-bottom: 56.25%;
/* 16:9 */
height: 0;
}
.indexContainerMain .sectionVideo .videoWrapper img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/*.indexContainerMain .sectionVideo .videoWrapper iframe{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}*/
/* <----------------------------------- (INDEX) SECTION VIDEO HASTA 1280 -------------------------------> */
/* <----------------------------------- (INDEX) SECTION INFO HASTA 1280 -------------------------------> */
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle {
height: 100px;
padding: 20px;
padding: 20px;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText {
padding-left: 20px;
}
/* <----------------------------------- (INDEX) SECTION INFO HASTA 1280 -------------------------------> */
}
@media (max-width: 550px) {
.indexContainerMain .sectionParallax .parallaxContain h2 {
font-size: 25px;
padding-left: 3%;
padding-right: 3%;
}
.indexContainerMain .sectionVideo h1{
font-size: 25px;
padding-left: 3%;
padding-right: 4%;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText {
font-size: 15px;
}
}
@media (min-width: 550px) and (max-width: 960px) { /* <----------ENTRE 550 Y 1280 -------------------------------> */
.indexContainerMain .sectionParallax .parallaxContain h2 {
font-size: 40px;
padding-left: 2%;
padding-right: 2%;
}
.indexContainerMain .sectionVideo h1{
font-size: 40px;
padding-left: 2%;
padding-right: 2%;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText {
font-size: 18px;
}
}
@media (min-width: 1280px){
.indexContainerMain .textOverVideo{
width: 1080px;
}
}
@media (min-width: 960px) and (max-width: 1280px){
.indexContainerMain .textOverVideo{
width: 900px;
}
}
@media (min-width: 960px) and (max-width: 1100px){
.indexContainerMain .textOverVideo h1{
font-size: 40px ;
}
.indexContainerMain .textOverVideo h3{
font-size: 25px ;
}
}
@media (min-width: 1100px){
.indexContainerMain .textOverVideo h1{
font-size: 50px ;
}
.indexContainerMain .textOverVideo h3{
font-size: 30px ;
}
}
@media (min-width: 960px) { /* <----------------------------------- MAS DE 1280 -------------------------------> */
/* <----------------------------------- (INDEX) SECTION VIDEO GRAAAAANDE DESDE 1280 -------------------------------> */
.indexContainerMain .sectionMain .overVideo{
display: block;
/*height: 44.16vw;*/
height: 43.8vw;
width: 100vw;
background-image: url("../images/tiles/backgroundblack.png");/* <----------------------------------- -------------------------------> */
background-repeat: repeat;
filter: opacity(50%);
position: absolute;
z-index: 19;
top: 0%;
left: 50%;
transform: translate(-50%, 0%);
}
.indexContainerMain .sectionMain video{
min-width: 100%;
min-height: 100%;
border-bottom: 1px solid darkgrey;
--filter: blur(3px);
}
/* <----------------------------------- (INDEX) SECTION VIDEO GRAAAAANDE DESDE 1280 -------------------------------> */
/* <----------------------------------- (INDEX) SECTION VIDEO DESDE 1280 -------------------------------> */
.indexContainerMain .sectionMain {
position: relative;
}
.indexContainerMain .containerSectionVideo {
background-color: black;
}
.indexContainerMain .textOverVideo{
color: white;
position: absolute;
z-index: 20;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.indexContainerMain .textOverVideo h1{
font-weight: bold;
}
.indexContainerMain .textOverVideo h3{
padding-top: 30px;
}
.indexContainerMain .sectionVideo {
overflow: hidden;
padding-top: 80px;
padding-bottom: 80px;
padding-left: 20px;
padding-right: 20px;
width: 1024px;
margin-left: auto;
margin-right: auto;
}
.indexContainerMain .sectionVideo .videoWrapper {
width: 50%;
float: left;
display: inline-block;
}
.indexContainerMain .sectionVideo .videoWrapper img{
height: 250px;
width: 100%;
padding-left: 20px;
padding-right: 20px;
}
/*.indexContainerMain .sectionVideo .videoWrapper iframe{
height: 250px;
width: 100%;
padding-left: 20px;
padding-right: 20px;
}*/
.indexContainerMain .sectionVideo .description {
padding-top: 20px;
padding-left: 20px;
padding-right: 20px;
width: 50%;
float: left;
display: inline-block;
}
.indexContainerMain .sectionVideo h1{
font-size: 40px;
text-align: center;
}
/* <----------------------------------- (INDEX) SECTION VIDEO DESDE 1280 -------------------------------> */
/* <----------------------------------- SECTION PARALLAX DESDE 1280 -------------------------------> */
.indexContainerMain .sectionParallax .parallaxContain h2 {
font-size: 30px;
}
/* <----------------------------------- SECTION PARALLAX DESDE 1280 -------------------------------> */
/* <----------------------------------- (INDEX) SECTION INFO DESDE 1280 -------------------------------> */
.indexContainerMain .containerSectionInfo {
padding-top: 60px;
padding-bottom: 60px;
width: 100%;
}
.indexContainerMain .containerSectionInfo .sectionInfo {
width: 1024px;
margin-left: auto;
margin-right: auto;
overflow: hidden;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle {
height: 120px;
width: 50%;
float: left;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText {
font-size: 15px;
padding-left: 20px;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText h3{
font-size: 18px;
margin-bottom: 3px;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText p{
font-size: 15px;
padding-right: 20px; /* <--- ESTO ESTA MAL---> */
}
/* <----------------------------------- (INDEX) SECTION INFO DESDE 1280 -------------------------------> */
} | public/css/style_index.css | .indexContainerMain {
color: #3f3f3f;
}
/* <----------------------------------- (INDEX) SECTION VIDEO GENERAL -------------------------------> */
.indexContainerMain .sectionVideo h1{
font-weight: bold;
text-transform: uppercase;
text-shadow: 0px 1px 1px rgba(0,0,0, 0.5);
}
/* <----------------------------------- (INDEX) SECTION VIDEO GENERAL -------------------------------> */
/* <----------------------------------- (INDEX) SECTION PARALLAX GENERAL -------------------------------> */
.indexContainerMain .sectionParallax {
background-image: url("../images/index_banner.png");
height: 400px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.indexContainerMain .sectionParallax .parallaxContain h2 {
display: block;
color: rgba(255, 255, 255, 0.9);
text-transform: uppercase;
text-align: center;
font-weight: 700;
position: absolute;
text-shadow: 0px 1px 1px rgba(0,0,0, 0.5);
width: 100%;
top: 50%;
transform: translate(0px, -50%);
}
/* <----------------------------------- (INDEX) SECTION PARALLAX GENERAL -------------------------------> */
/* <----------------------------------- (INDEX) SECTION VIDEO GENERAL -------------------------------> */
.indexContainerMain .sectionVideo h1{
text-align: center;
}
/* <----------------------------------- (INDEX) SECTION VIDEO GENERAL -------------------------------> */
/* <----------------------------------- (INDEX) SECTION INFO GENERAL -------------------------------> */
.indexContainerMain .containerSectionInfo .sectionInfo{
padding: 20px;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle {
overflow: hidden;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleImg {
height: 100%;
width: 15%;
float: left;
display: inline-block;
position: relative;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleImg img {
width: 100%;
position: absolute;
max-height: 80px;
max-width: 80px;
top: 50%;
right:0%;
transform: translate(0px, -50%);
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText {
height: 100%;
width: 85%;
display: inline-block;
position: relative;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText .textContainer{
position: absolute;
top: 50%;
transform: translate(0px, -50%);
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText h3{
font-weight: bold;
}
/* <----------------------------------- (INDEX) SECTION INFO GENERAL -------------------------------> */
@media (max-width: 960px){ /* <----------------------------------- MAS DE 1280 -------------------------------> */
/* <----------------------------------- (INDEX) SECTION VIDEO HASTA 1280 -------------------------------> */
.indexContainerMain .sectionMain {
display: none;
}
.indexContainerMain .sectionVideo .description {
width: 100%;
}
.indexContainerMain .sectionVideo .description {
margin-top: 40px;
margin-bottom: 40px;
}
.indexContainerMain .sectionVideo .videoWrapper {
position: relative;
padding-bottom: 56.25%;
/* 16:9 */
height: 0;
}
.indexContainerMain .sectionVideo .videoWrapper img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/*.indexContainerMain .sectionVideo .videoWrapper iframe{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}*/
/* <----------------------------------- (INDEX) SECTION VIDEO HASTA 1280 -------------------------------> */
/* <----------------------------------- (INDEX) SECTION INFO HASTA 1280 -------------------------------> */
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle {
height: 100px;
padding: 20px;
padding: 20px;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText {
padding-left: 20px;
}
/* <----------------------------------- (INDEX) SECTION INFO HASTA 1280 -------------------------------> */
}
@media (max-width: 550px) {
.indexContainerMain .sectionParallax .parallaxContain h2 {
font-size: 25px;
padding-left: 3%;
padding-right: 3%;
}
.indexContainerMain .sectionVideo h1{
font-size: 25px;
padding-left: 3%;
padding-right: 4%;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText {
font-size: 15px;
}
}
@media (min-width: 550px) and (max-width: 960px) { /* <----------ENTRE 550 Y 1280 -------------------------------> */
.indexContainerMain .sectionParallax .parallaxContain h2 {
font-size: 40px;
padding-left: 2%;
padding-right: 2%;
}
.indexContainerMain .sectionVideo h1{
font-size: 40px;
padding-left: 2%;
padding-right: 2%;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText {
font-size: 18px;
}
}
@media (min-width: 1280px){
.indexContainerMain .textOverVideo{
width: 1080px;
}
}
@media (min-width: 960px) and (max-width: 1280px){
.indexContainerMain .textOverVideo{
width: 900px;
}
}
@media (min-width: 960px) and (max-width: 1100px){
.indexContainerMain .textOverVideo h1{
font-size: 40px ;
}
.indexContainerMain .textOverVideo h3{
font-size: 25px ;
}
}
@media (min-width: 1100px){
.indexContainerMain .textOverVideo h1{
font-size: 50px ;
}
.indexContainerMain .textOverVideo h3{
font-size: 30px ;
}
}
@media (min-width: 960px) { /* <----------------------------------- MAS DE 1280 -------------------------------> */
/* <----------------------------------- (INDEX) SECTION VIDEO GRAAAAANDE DESDE 1280 -------------------------------> */
.indexContainerMain .sectionMain .overVideo{
display: block;
/*height: 44.16vw;*/
height: 43.8vw;
width: 100vw;
background-image: url("../images/tiles/backgroundblack.png");/* <----------------------------------- -------------------------------> */
background-repeat: repeat;
filter: opacity(50%);
position: absolute;
z-index: 19;
top: 0%;
left: 50%;
transform: translate(-50%, 0%);
}
.indexContainerMain .sectionMain video{
min-width: 100%;
min-height: 100%;
border-bottom: 1px solid darkgrey;
--filter: blur(3px);
}
/* <----------------------------------- (INDEX) SECTION VIDEO GRAAAAANDE DESDE 1280 -------------------------------> */
/* <----------------------------------- (INDEX) SECTION VIDEO DESDE 1280 -------------------------------> */
.indexContainerMain .sectionMain {
position: relative;
}
.indexContainerMain .containerSectionVideo {
background-color: black;
}
.indexContainerMain .textOverVideo{
color: white;
position: absolute;
z-index: 20;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.indexContainerMain .textOverVideo h1{
font-weight: bold;
}
.indexContainerMain .textOverVideo h3{
padding-top: 30px;
}
.indexContainerMain .sectionVideo {
overflow: hidden;
padding-top: 80px;
padding-bottom: 80px;
padding-left: 20px;
padding-right: 20px;
width: 1024px;
margin-left: auto;
margin-right: auto;
}
.indexContainerMain .sectionVideo .videoWrapper {
width: 50%;
float: left;
display: inline-block;
}
.indexContainerMain .sectionVideo .videoWrapper img{
height: 250px;
width: 100%;
padding-left: 20px;
padding-right: 20px;
}
/*.indexContainerMain .sectionVideo .videoWrapper iframe{
height: 250px;
width: 100%;
padding-left: 20px;
padding-right: 20px;
}*/
.indexContainerMain .sectionVideo .description {
padding-top: 20px;
padding-left: 20px;
padding-right: 20px;
width: 50%;
float: left;
display: inline-block;
}
.indexContainerMain .sectionVideo h1{
font-size: 40px;
text-align: center;
}
/* <----------------------------------- (INDEX) SECTION VIDEO DESDE 1280 -------------------------------> */
/* <----------------------------------- SECTION PARALLAX DESDE 1280 -------------------------------> */
.indexContainerMain .sectionParallax .parallaxContain h2 {
font-size: 30px;
}
/* <----------------------------------- SECTION PARALLAX DESDE 1280 -------------------------------> */
/* <----------------------------------- (INDEX) SECTION INFO DESDE 1280 -------------------------------> */
.indexContainerMain .containerSectionInfo {
padding-top: 60px;
padding-bottom: 60px;
width: 100%;
}
.indexContainerMain .containerSectionInfo .sectionInfo {
width: 1024px;
margin-left: auto;
margin-right: auto;
overflow: hidden;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle {
height: 120px;
width: 50%;
float: left;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText {
font-size: 15px;
padding-left: 20px;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText h3{
font-size: 18px;
margin-bottom: 3px;
}
.indexContainerMain .containerSectionInfo .sectionInfo .infoArticle .infoArticleText p{
font-size: 15px;
padding-right: 20px; /* <--- ESTO ESTA MAL---> */
}
/* <----------------------------------- (INDEX) SECTION INFO DESDE 1280 -------------------------------> */
} | 0.234582 | 0.061791 |
body {
background-color: #eee;
min-height: 100vh;
font: normal 16px sans-serif;
padding: 40px 0;
overflow-x: hidden;
}
.container.gallery-container {
background-color: rgba(0, 0, 0, 0);
color: #353a39;
padding: 2px 10px;
border-radius: 5px;
width: 90%;
max-width: 1348px;
}
.container.gallery-container-2 {
background-color: #eee;
margin: 0px auto;
font-family: 'Raleway', sans-serif;
color: #353a39;
padding: 5px 10px;
border-radius: 5px;
width: 90%;
max-width: 1348px;
}
.gallery-container h1 {
text-align: center;
color: #222;
margin-top: 30px;
font-size: 60px;
font-family: 'Raleway', sans-serif;
font-weight: bold;
}
.gallery-container p.page-description {
text-align: center;
margin: 25px auto;
font-size: 18px;
color: #999;
}
.video-split {
text-align: center;
margin: auto;
margin-left: -23%;
margin-right: -23%;
background-color: rgb(0, 0, 0);
padding: 10px;
max-height: 778px;
}
.gallery-container p.header-text {
text-align: center;
margin: 4px auto;
width: 100%;
font-size: 15px;
font-family: 'Raleway', sans-serif;
color: #aaa;
}
.tz-gallery {
padding: 14px;
}
/* Override bootstrap column paddings */
.tz-gallery .row > div {
padding: 2px;
}
.tz-gallery .lightbox img {
width: 100%;
border-radius: 5px;
position: relative;
}
.tz-gallery .lightbox:before {
position: absolute;
top: 50%;
left: 50%;
margin-top: -13px;
margin-left: -13px;
opacity: 0;
color: #fff;
font-size: 26px;
font-family: 'Glyphicons Halflings';
content: '\e003';
pointer-events: none;
z-index: 9000;
transition: 0.4s;
}
.tz-gallery .lightbox:after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
background-color: rgba(82, 167, 170, 0.3);
content: '';
transition: 0.4s;
border-radius: 5px;
}
.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
opacity: 1;
}
.baguetteBox-button {
background-color: transparent !important;
}
@media(max-width: 768px) {
body {
padding: 0;
}
} | html/fluid-gallery.css | body {
background-color: #eee;
min-height: 100vh;
font: normal 16px sans-serif;
padding: 40px 0;
overflow-x: hidden;
}
.container.gallery-container {
background-color: rgba(0, 0, 0, 0);
color: #353a39;
padding: 2px 10px;
border-radius: 5px;
width: 90%;
max-width: 1348px;
}
.container.gallery-container-2 {
background-color: #eee;
margin: 0px auto;
font-family: 'Raleway', sans-serif;
color: #353a39;
padding: 5px 10px;
border-radius: 5px;
width: 90%;
max-width: 1348px;
}
.gallery-container h1 {
text-align: center;
color: #222;
margin-top: 30px;
font-size: 60px;
font-family: 'Raleway', sans-serif;
font-weight: bold;
}
.gallery-container p.page-description {
text-align: center;
margin: 25px auto;
font-size: 18px;
color: #999;
}
.video-split {
text-align: center;
margin: auto;
margin-left: -23%;
margin-right: -23%;
background-color: rgb(0, 0, 0);
padding: 10px;
max-height: 778px;
}
.gallery-container p.header-text {
text-align: center;
margin: 4px auto;
width: 100%;
font-size: 15px;
font-family: 'Raleway', sans-serif;
color: #aaa;
}
.tz-gallery {
padding: 14px;
}
/* Override bootstrap column paddings */
.tz-gallery .row > div {
padding: 2px;
}
.tz-gallery .lightbox img {
width: 100%;
border-radius: 5px;
position: relative;
}
.tz-gallery .lightbox:before {
position: absolute;
top: 50%;
left: 50%;
margin-top: -13px;
margin-left: -13px;
opacity: 0;
color: #fff;
font-size: 26px;
font-family: 'Glyphicons Halflings';
content: '\e003';
pointer-events: none;
z-index: 9000;
transition: 0.4s;
}
.tz-gallery .lightbox:after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
background-color: rgba(82, 167, 170, 0.3);
content: '';
transition: 0.4s;
border-radius: 5px;
}
.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
opacity: 1;
}
.baguetteBox-button {
background-color: transparent !important;
}
@media(max-width: 768px) {
body {
padding: 0;
}
} | 0.64713 | 0.089018 |
.dropdown-container{
position:absolute;
top:100%;
left:0;
z-index:1000;
display:none;
float:left;
min-width:200px;
max-width:330px;
margin:2px 0 0;
list-style:none;
font-size:14px;
background-color:#fff;
border:1px solid #ccc;
border:1px solid rgba(0,0,0,0.15);
border-radius:4px;
-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);
box-shadow:0 6px 12px rgba(0,0,0,0.175);
background-clip:padding-box
}
.dropdown-container>.dropdown-menu{
position:static;
z-index:1000;
float:none !important;
padding:10px 0;margin:0;
border:0;
background:transparent;
border-radius:0;
-webkit-box-shadow:none;
box-shadow:none;
max-height:330px;
overflow-y:auto
}
.dropdown-container>.dropdown-menu+.dropdown-menu{
padding-top:0
}.dropdown-menu>li>a{
overflow:hidden;
white-space:nowrap;
word-wrap:normal;
text-decoration:none;
text-overflow:ellipsis;
-o-text-overflow:ellipsis;
-webkit-transition:none;
-o-transition:none;
transition:none
}
.dropdown-toggle{
cursor:pointer
}
.dropdown-header{
white-space:nowrap
}
.open>.dropdown-container>.dropdown-menu,.open>.dropdown-container{
display:block
}.dropdown-toolbar{
padding-top:6px;
padding-left:20px;
padding-right:20px;
padding-bottom:5px;
background-color:#fff;
border-bottom:1px solid rgba(0,0,0,0.15);
border-radius:4px 4px 0 0
}
.dropdown-toolbar>.form-group{
margin:5px -10px
}
.dropdown-toolbar .dropdown-toolbar-actions{
float:right
}
.dropdown-toolbar .dropdown-toolbar-title{
margin:0;
font-size:14px
}
.dropdown-footer{
padding:5px 20px;
border-top:1px solid #ccc;
border-top:1px solid rgba(0,0,0,0.15);
border-radius:0 0 4px 4px
}
.anchor-block small{
display:none
}
@media (min-width:992px){
.anchor-block small{
display:block;
font-weight:normal;
color:#777777
}
.dropdown-menu>li>a.anchor-block{
padding-top:6px;padding-bottom:6px
}
}
@media (min-width:992px){
.dropdown.hoverable:hover>ul{
display:block
}
}
.dropdown-position-topright{
top:auto;
right:0;
bottom:100%;
left:auto;
margin-bottom:2px
}
.dropdown-position-topleft{
top:auto;
right:auto;
bottom:100%;
left:0;
margin-bottom:2px
}
.dropdown-position-bottomright{
right:0;
left:auto
}
.dropmenu-item-label{
white-space:nowrap
}
.dropmenu-item-content{
position:absolute;
text-align:right;
max-width:60px;
right:20px;
color:#777777;
overflow:hidden;
white-space:nowrap;
word-wrap:normal;
-o-text-overflow:ellipsis;
text-overflow:ellipsis
}
small.dropmenu-item-content{
line-height:20px
}
.dropdown-menu>li>a.dropmenu-item{
position:relative;
padding-right:66px
}
.dropdown-submenu .dropmenu-item-content{
right:40px
}
.dropdown-menu>li.dropdown-submenu>a.dropmenu-item{
padding-right:86px
}
.dropdown-inverse .dropdown-menu{
background-color:rgba(0,0,0,0.8);
border:1px solid rgba(0,0,0,0.9)
}
.dropdown-inverse .dropdown-menu .divider{
height:1px;
margin:9px 0;
overflow:hidden;
background-color:#2b2b2b
}
.dropdown-inverse .dropdown-menu>li>a{
color:#cccccc
}
.dropdown-inverse .dropdown-menu>li>a:hover,.dropdown-inverse .dropdown-menu>li>a:focus{
color:#fff;
background-color:#262626
}
.dropdown-inverse .dropdown-menu>.active>a,.dropdown-inverse .dropdown-menu>.active>a:hover,.dropdown-inverse .dropdown-menu>.active>a:focus{
color:#fff;
background-color:#337ab7
}
.dropdown-inverse .dropdown-menu>.disabled>a,.dropdown-inverse .dropdown-menu>.disabled>a:hover,.dropdown-inverse .dropdown-menu>.disabled>a:focus{
color:#777777
}
.dropdown-inverse .dropdown-header{
color:#777777
}
.table>thead>tr>th.col-actions{
padding-top:0;
padding-bottom:0
}
.table>thead>tr>th.col-actions .dropdown-toggle{
color:#777777
}
.notifications{
list-style:none;
padding:0
}
.notification{
display:block;
padding:9.6px 12px;
border-bottom:1px solid #eeeeee;
color:#333333;
text-decoration:none
}
.notification:last-child{
border-bottom:0
}
.notification:hover,.notification.active:hover{
background-color:#f9f9f9
}
.notification.active{
background-color:#f4f4f4
}
.notification-title{
font-size:15px;
margin-bottom:0
}
.notification-desc{
margin-bottom:0
}
.notification-meta{
color:#777777
}
a.notification:hover{
text-decoration:none
}
.dropdown-notifications>.dropdown-container,.dropdown-notifications>.dropdown-menu{
width:450px;
max-width:450px
}
.dropdown-notifications .dropdown-menu{
padding:0
}
.dropdown-notifications .dropdown-toolbar,.dropdown-notifications .dropdown-footer{
padding:9.6px 12px
}
.dropdown-notifications .dropdown-toolbar{
background:#fff
}
.dropdown-notifications .dropdown-footer{
background:#eeeeee
}
.notification-icon{
margin-right:6.8775px
}
.notification-icon:after{
position:absolute;
content:attr(data-count);
margin-left:-6.8775px;
margin-top:-6.8775px;
padding:0 4px;
min-width:13.755px;
height:13.755px;
line-height:13.755px;
background:red;
border-radius:10px;
color:#fff;
text-align:center;
vertical-align:middle;
font-size:11.004px;
font-weight:600;
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif
}
.notification .media-body{
padding-top:5.6px
}
.btn-lg .notification-icon:after{
margin-left:-8.253px;
margin-top:-8.253px;
min-width:16.506px;
height:16.506px;
line-height:16.506px;
font-size:13.755px
}
.btn-xs .notification-icon:after{
content:'';
margin-left:-4.1265px;
margin-top:-2.06325px;
min-width:6.25227273px;
height:6.25227273px;
line-height:6.25227273px;
padding:0
}
.btn-xs .notification-icon{
margin-right:3.43875px
} | public/css/bootstrap-notification.min.css | .dropdown-container{
position:absolute;
top:100%;
left:0;
z-index:1000;
display:none;
float:left;
min-width:200px;
max-width:330px;
margin:2px 0 0;
list-style:none;
font-size:14px;
background-color:#fff;
border:1px solid #ccc;
border:1px solid rgba(0,0,0,0.15);
border-radius:4px;
-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);
box-shadow:0 6px 12px rgba(0,0,0,0.175);
background-clip:padding-box
}
.dropdown-container>.dropdown-menu{
position:static;
z-index:1000;
float:none !important;
padding:10px 0;margin:0;
border:0;
background:transparent;
border-radius:0;
-webkit-box-shadow:none;
box-shadow:none;
max-height:330px;
overflow-y:auto
}
.dropdown-container>.dropdown-menu+.dropdown-menu{
padding-top:0
}.dropdown-menu>li>a{
overflow:hidden;
white-space:nowrap;
word-wrap:normal;
text-decoration:none;
text-overflow:ellipsis;
-o-text-overflow:ellipsis;
-webkit-transition:none;
-o-transition:none;
transition:none
}
.dropdown-toggle{
cursor:pointer
}
.dropdown-header{
white-space:nowrap
}
.open>.dropdown-container>.dropdown-menu,.open>.dropdown-container{
display:block
}.dropdown-toolbar{
padding-top:6px;
padding-left:20px;
padding-right:20px;
padding-bottom:5px;
background-color:#fff;
border-bottom:1px solid rgba(0,0,0,0.15);
border-radius:4px 4px 0 0
}
.dropdown-toolbar>.form-group{
margin:5px -10px
}
.dropdown-toolbar .dropdown-toolbar-actions{
float:right
}
.dropdown-toolbar .dropdown-toolbar-title{
margin:0;
font-size:14px
}
.dropdown-footer{
padding:5px 20px;
border-top:1px solid #ccc;
border-top:1px solid rgba(0,0,0,0.15);
border-radius:0 0 4px 4px
}
.anchor-block small{
display:none
}
@media (min-width:992px){
.anchor-block small{
display:block;
font-weight:normal;
color:#777777
}
.dropdown-menu>li>a.anchor-block{
padding-top:6px;padding-bottom:6px
}
}
@media (min-width:992px){
.dropdown.hoverable:hover>ul{
display:block
}
}
.dropdown-position-topright{
top:auto;
right:0;
bottom:100%;
left:auto;
margin-bottom:2px
}
.dropdown-position-topleft{
top:auto;
right:auto;
bottom:100%;
left:0;
margin-bottom:2px
}
.dropdown-position-bottomright{
right:0;
left:auto
}
.dropmenu-item-label{
white-space:nowrap
}
.dropmenu-item-content{
position:absolute;
text-align:right;
max-width:60px;
right:20px;
color:#777777;
overflow:hidden;
white-space:nowrap;
word-wrap:normal;
-o-text-overflow:ellipsis;
text-overflow:ellipsis
}
small.dropmenu-item-content{
line-height:20px
}
.dropdown-menu>li>a.dropmenu-item{
position:relative;
padding-right:66px
}
.dropdown-submenu .dropmenu-item-content{
right:40px
}
.dropdown-menu>li.dropdown-submenu>a.dropmenu-item{
padding-right:86px
}
.dropdown-inverse .dropdown-menu{
background-color:rgba(0,0,0,0.8);
border:1px solid rgba(0,0,0,0.9)
}
.dropdown-inverse .dropdown-menu .divider{
height:1px;
margin:9px 0;
overflow:hidden;
background-color:#2b2b2b
}
.dropdown-inverse .dropdown-menu>li>a{
color:#cccccc
}
.dropdown-inverse .dropdown-menu>li>a:hover,.dropdown-inverse .dropdown-menu>li>a:focus{
color:#fff;
background-color:#262626
}
.dropdown-inverse .dropdown-menu>.active>a,.dropdown-inverse .dropdown-menu>.active>a:hover,.dropdown-inverse .dropdown-menu>.active>a:focus{
color:#fff;
background-color:#337ab7
}
.dropdown-inverse .dropdown-menu>.disabled>a,.dropdown-inverse .dropdown-menu>.disabled>a:hover,.dropdown-inverse .dropdown-menu>.disabled>a:focus{
color:#777777
}
.dropdown-inverse .dropdown-header{
color:#777777
}
.table>thead>tr>th.col-actions{
padding-top:0;
padding-bottom:0
}
.table>thead>tr>th.col-actions .dropdown-toggle{
color:#777777
}
.notifications{
list-style:none;
padding:0
}
.notification{
display:block;
padding:9.6px 12px;
border-bottom:1px solid #eeeeee;
color:#333333;
text-decoration:none
}
.notification:last-child{
border-bottom:0
}
.notification:hover,.notification.active:hover{
background-color:#f9f9f9
}
.notification.active{
background-color:#f4f4f4
}
.notification-title{
font-size:15px;
margin-bottom:0
}
.notification-desc{
margin-bottom:0
}
.notification-meta{
color:#777777
}
a.notification:hover{
text-decoration:none
}
.dropdown-notifications>.dropdown-container,.dropdown-notifications>.dropdown-menu{
width:450px;
max-width:450px
}
.dropdown-notifications .dropdown-menu{
padding:0
}
.dropdown-notifications .dropdown-toolbar,.dropdown-notifications .dropdown-footer{
padding:9.6px 12px
}
.dropdown-notifications .dropdown-toolbar{
background:#fff
}
.dropdown-notifications .dropdown-footer{
background:#eeeeee
}
.notification-icon{
margin-right:6.8775px
}
.notification-icon:after{
position:absolute;
content:attr(data-count);
margin-left:-6.8775px;
margin-top:-6.8775px;
padding:0 4px;
min-width:13.755px;
height:13.755px;
line-height:13.755px;
background:red;
border-radius:10px;
color:#fff;
text-align:center;
vertical-align:middle;
font-size:11.004px;
font-weight:600;
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif
}
.notification .media-body{
padding-top:5.6px
}
.btn-lg .notification-icon:after{
margin-left:-8.253px;
margin-top:-8.253px;
min-width:16.506px;
height:16.506px;
line-height:16.506px;
font-size:13.755px
}
.btn-xs .notification-icon:after{
content:'';
margin-left:-4.1265px;
margin-top:-2.06325px;
min-width:6.25227273px;
height:6.25227273px;
line-height:6.25227273px;
padding:0
}
.btn-xs .notification-icon{
margin-right:3.43875px
} | 0.33231 | 0.061031 |
.col.testimonial_slider{
float:none
}
.testimonial_slider{
float:none;
opacity:0;
margin-bottom:21px
}
html:not(.js) .testimonial_slider{
opacity:1;
height:auto
}
.testimonial_slider:not([data-style*="multiple_visible"]) blockquote{
padding-left:0px;
text-align:center;
color:rgba(0,0,0,1);
background-image:none;
font-size:22px;
width:100%;
margin:0 auto;
opacity:0;
position:absolute
}
.testimonial_slider blockquote p{
padding-bottom:30px
}
.testimonial_slider .controls ul{
margin:0px;
display:block;
text-align:center;
width:100%
}
.testimonial_slider .controls ul li{
list-style:none;
cursor:pointer;
display:inline
}
.testimonial_slider .controls ul li .pagination-switch{
background-color:rgba(0,0,0,0);
border:1px solid #333;
border-radius:10px 10px 10px 10px;
cursor:pointer;
display:inline-block;
height:10px;
margin:0 4px;
transition:background-color 0.2s linear 0s,border-color 0.2s linear 0s;
width:10px
}
.testimonial_slider .controls ul li .pagination-switch:hover,
.testimonial_slider .controls ul li .pagination-switch.active{
background-color:#333
}
.testimonial_slider .controls{
position:absolute;
bottom:-22px;
z-index:30;
width:100%;
text-align:center
}
.testimonial_slider .slides{
overflow:hidden;
position:relative
}
body .testimonial_slider blockquote span, .nectar_single_testimonial span {
font-size:16px;
display:block;
line-height:22px
}
body .testimonial_slider blockquote .open-quote,
body .testimonial_slider blockquote .close-quote {
display: inline;
}
.span_12.light .nectar_single_testimonial span {
color: #fff;
}
.span_12.light .nectar_single_testimonial .title {
color: rgba(255,255,255,0.6);
}
.nectar_single_testimonial {
padding-left: 0;
}
.nectar_single_testimonial[data-style="small_modern"] p span {
font-size: 80px;
line-height: 80px;
margin-bottom: -20px;
}
.nectar_single_testimonial[data-style="bold"] p span {
font-size: 110px;
line-height: 110px;
margin-bottom: -30px;
}
.wpb_wrapper > .nectar_single_testimonial:last-child {
margin-bottom: 0;
}
.nectar_single_testimonial[data-style="bold"] p {
padding-bottom: 35px;
}
.testimonial_slider blockquote .title, .nectar_single_testimonial .title {
color:rgba(0,0,0,.5)
}
.testimonial_slider:not([data-style="minimal"]) blockquote .title{
font-size:12px
}
.testimonial_slider[data-style="minimal"] blockquote .title{
font-size:12px;
font-style:italic
}
.testimonial_slider[data-style="minimal"] blockquote span:not(.title){
-webkit-transform:scale(0.8);
transform:scale(0.8);
margin-bottom:-4px
}
.testimonial_slider[data-style*="multiple_visible"] blockquote .title,
.nectar_single_testimonial .title {
font-size:14px
}
.light .testimonial_slider blockquote{
color:rgba(255,255,255,0.95)
}
.light .testimonial_slider blockquote .title,
.testimonial_slider[data-style="multiple_visible"][data-color*="-light"] blockquote .title{
color:rgba(255,255,255,0.45)
}
.testimonial_slider .controls ul li i{
color:#444
}
.light .testimonial_slider .controls ul li span{
border-color:#fff
}
.light .testimonial_slider .controls ul li span:hover,
.light .testimonial_slider .controls ul li .pagination-switch.active{
background-color:#fff
}
.testimonial_slider .image-icon,
.nectar_single_testimonial .image-icon {
font-family:Georgia,serif!important;
font-size:50px;
text-align:center;
display:inline-block;
border-radius:100px;
width:50px;
height:50px;
margin-bottom:33px;
line-height:70px;
background-size:cover;
background-position: center;
border:2px solid rgba(0,0,0,0.13)
}
.nectar_single_testimonial .image-icon {
border: none;
background-position: center;
}
.nectar_single_testimonial[data-style="basic_left_image"] {
padding-left: 90px;
}
.nectar_single_testimonial[data-style="basic_left_image"] .image-icon {
position: absolute;
left: 0;
top: 5px;
}
.light .testimonial_slider .image-icon{
border-color:rgba(255,255,255,0.4)
}
.testimonial_slider .image-icon.has-bg{
width:50px;
height:50px;
border:none;
text-indent:-9999px
}
.testimonial_slider blockquote p .bottom-arrow{
display:none
}
.testimonial_slider[data-style="multiple_visible_minimal"] .image-icon,
.nectar_single_testimonial .image-icon {
width:54px;
height:54px;
display:inline-block;
vertical-align:middle;
margin-bottom:0;
margin-right:20px
}
.testimonial_slider[data-style="multiple_visible_minimal"] .wrap,
.nectar_single_testimonial .wrap{
display:inline-block;
vertical-align:middle
}
.testimonial_slider .star-rating-wrap{
display:block;
-webkit-transform:none;
transform:none;
line-height:0
}
.testimonial_slider .star-rating{
display:inline-block;
margin-top:20px;
-webkit-transform:none;
transform:none;
position:relative;
font-size:16px!important
}
.testimonial_slider[data-style="minimal"] blockquote .star-rating:not(.title),
.testimonial_slider[data-style="minimal"] blockquote .star-rating-wrap:not(.title) {
-webkit-transform:none;
transform:none;
}
.testimonial_slider:not([data-style="minimal"]) blockquote .star-rating {
font-size: 16px!important;
}
.testimonial_slider .star-rating:before{
font-family:FontAwesome;
font-weight:normal;
font-style:normal;
text-decoration:inherit;
-webkit-font-smoothing:antialiased;
content:"\f005\00a0\f005\00a0\f005\00a0\f005\00a0\f005";
color:#ddd;
float:left;
top:0;
left:0
}
.testimonial_slider .star-rating .filled {
position:absolute;
display:block;
font-size:16px!important;
left:0;
-webkit-transform:none!important;
transform:none!important;
width:100%;
overflow:hidden;
z-index:100
}
.testimonial_slider .star-rating .filled:before{
font-family:FontAwesome;
font-weight:normal;
font-style:normal;
text-decoration:inherit;
-webkit-font-smoothing:antialiased;
content:"\f005\00a0\f005\00a0\f005\00a0\f005\00a0\f005";
color:#000;
float:left
}
.toggles .testimonial_slider,
.full-width-content .testimonial_slider{
padding-bottom:20px
}
.toggles .testimonial_slider .controls,
.full-width-content .testimonial_slider .controls{
bottom:2px!important
}
.testimonial_slider[data-style="minimal"] .slides{
max-width:70%;
margin:0 auto
}
.testimonial_slider[data-style="minimal"] blockquote{
padding:0 25px;
-ms-transition:transform 0.5s,opacity 0.5s;
transition:transform 0.5s,opacity 0.5s;
-webkit-transition:transform 0.5s,opacity 0.5s
}
.testimonial_slider[data-style="default"] blockquote{
-ms-transition:transform 0.5s,opacity 0.5s;
transition:transform 0.5s,opacity 0.5s;
-webkit-transition:transform 0.5s,opacity 0.5s
}
.testimonial_slider[data-style="minimal"] blockquote.no-trans,
.testimonial_slider[data-style="default"] blockquote.no-trans{
-ms-transition:none;
transition:none;
-webkit-transition:none
}
.testimonial_slider[data-style="minimal"] .control-wrap{
width:20px;
line-height:20px;
overflow:hidden;
display:inline-block;
vertical-align:top
}
.testimonial_slider[data-style="minimal"] .controls .out-of,
.testimonial_slider[data-style="minimal"] .controls .total{
display:inline-block;
font-size:16px;
line-height:20px;
color:#000;
vertical-align:top
}
.testimonial_slider[data-style="minimal"] .control-wrap{
font-size:16px
}
.testimonial_slider[data-style="minimal"] .controls .out-of,
.testimonial_slider[data-style="minimal"] .controls .total{
width:20px;
text-align:center
}
.testimonial_slider[data-style="minimal"] .controls .out-of{
width:13px;
top:-1px;
position:relative
}
.testimonial_slider[data-style="minimal"] .control-wrap ul{
width:auto;
-ms-transition:transform 0.33s;
-webkit-transition:transform 0.33s;
transition:transform 0.33s
}
.testimonial_slider[data-style="minimal"] .control-wrap ul li{
color:#000;
display:block;
float:left;
width:20px;
font-size:16px;
line-height:20px;
cursor:auto
}
.testimonial_slider[data-style="minimal"] .controls{
vertical-align:top
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev{
position:absolute;
top:50%;
height:40px;
width:40px;
font-size:28px;
-ms-transform:translateY(-50%);
-webkit-transform:translateY(-50%);
transform:translateY(-50%);
margin-top:-40px;
left:7.5%;
margin-left:-8px;
text-align: center;
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next{
position:absolute;
top:50%;
height:40px;
margin-top:-40px;
font-size:28px;
width:40px;
margin-right:-8px;
-ms-transform:translateY(-50%);
-webkit-transform:translateY(-50%);
transform:translateY(-50%);
right:7.5%;
text-align: center;
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:before,
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:before{
display:block;
position:absolute;
left:0;
top:0
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:after,
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:after{
backface-visibility:hidden;
display:block;
content:' ';
z-index:100;
position:absolute;
width:22px;
height:2px;
background-color:#000;
top:48%;
opacity:0;
right:11px;
cursor:pointer;
-ms-transform:translateY(-50%) scaleX(0) translateZ(0);
transform:translateY(-50%) scaleX(0) translateZ(0);
-webkit-transform:translateY(-50%) scaleX(0) translateZ(0);
transition:opacity .5s cubic-bezier(.2,1,.2,1),transform .5s cubic-bezier(.2,1,.2,1);
-webkit-transition:opacity .5s cubic-bezier(.2,1,.2,1),-webkit-transform .5s cubic-bezier(.2,1,.2,1)
}
.span_12.light .testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:after,
.span_12.light .testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:after{
background-color:#fff
}
.span_12.light .testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:before,
.span_12.light .testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:before,
.span_12.light .testimonial_slider[data-style="minimal"] .controls .out-of,
.span_12.light .testimonial_slider[data-style="minimal"] .controls .total,
.span_12.light .testimonial_slider[data-style="minimal"] .controls .control-wrap ul li{
color:#fff
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:after{
right:8px
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:hover:after,
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:hover:after{
opacity:1;
-ms-transform:translateY(-50%) scaleX(1) translateZ(0);
transform:translateY(-50%) scaleX(1) translateZ(0);
-webkit-transform:translateY(-50%) scaleX(1) translateZ(0)
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:hover:before{
-ms-transform: translateX(10px);
-webkit-transform:translateX(10px);
transform: translateX(10px)
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:hover:before{
-ms-transform:translateX(-10px);
-webkit-transform:translateX(-10px);
transform:translateX(-10px)
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev svg{
position:absolute;
left:-2px;
top:-2px
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:before{
left:-1px;
position:relative
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:before{
right:-1px;
position:relative
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:before,
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:before{
line-height:36px;
color:#000;
-ms--webkit-transition:-webkit-transform .5s cubic-bezier(.2,1,.2,1);
transition:transform .5s cubic-bezier(.2,1,.2,1);
-webkit-transition:-webkit-transform .5s cubic-bezier(.2,1,.2,1)
}
.nectar_single_testimonial:before {
display: none;
}
@media only screen and (max-width : 690px) {
.testimonial_slider .flickity-page-dots {
bottom: -25px;
}
.testimonial_slider[data-style="multiple_visible"] blockquote p:before {
display: none;
}
.main-content .testimonial_slider[data-style="multiple_visible"] blockquote p {
padding: 30px;
}
.testimonial_slider[data-style="multiple_visible"] blockquote {
margin-bottom: 0;
}
.testimonial_slider[data-style="minimal"] .slides {
max-width: none;
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev,
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next {
-ms-transform: none;
-webkit-transform: none;
transform: none;
z-index: 500;
top: auto;
bottom: -11px;
}
.testimonial_slider[data-style="multiple_visible_minimal"] blockquote .inner {
padding: 30px;
}
}
@media only screen and (min-width: 990px) and (max-width: 1300px) {
.full-width-content .vc_span4 .testimonial_slider blockquote,
.full-width-content .vc_col-sm-4 .testimonial_slider blockquote {
font-size: 16px;
line-height: 33px;
}
} | public/user_asset/wp-content/themes/salient/css/elements/element-testimonial7b23.css | .col.testimonial_slider{
float:none
}
.testimonial_slider{
float:none;
opacity:0;
margin-bottom:21px
}
html:not(.js) .testimonial_slider{
opacity:1;
height:auto
}
.testimonial_slider:not([data-style*="multiple_visible"]) blockquote{
padding-left:0px;
text-align:center;
color:rgba(0,0,0,1);
background-image:none;
font-size:22px;
width:100%;
margin:0 auto;
opacity:0;
position:absolute
}
.testimonial_slider blockquote p{
padding-bottom:30px
}
.testimonial_slider .controls ul{
margin:0px;
display:block;
text-align:center;
width:100%
}
.testimonial_slider .controls ul li{
list-style:none;
cursor:pointer;
display:inline
}
.testimonial_slider .controls ul li .pagination-switch{
background-color:rgba(0,0,0,0);
border:1px solid #333;
border-radius:10px 10px 10px 10px;
cursor:pointer;
display:inline-block;
height:10px;
margin:0 4px;
transition:background-color 0.2s linear 0s,border-color 0.2s linear 0s;
width:10px
}
.testimonial_slider .controls ul li .pagination-switch:hover,
.testimonial_slider .controls ul li .pagination-switch.active{
background-color:#333
}
.testimonial_slider .controls{
position:absolute;
bottom:-22px;
z-index:30;
width:100%;
text-align:center
}
.testimonial_slider .slides{
overflow:hidden;
position:relative
}
body .testimonial_slider blockquote span, .nectar_single_testimonial span {
font-size:16px;
display:block;
line-height:22px
}
body .testimonial_slider blockquote .open-quote,
body .testimonial_slider blockquote .close-quote {
display: inline;
}
.span_12.light .nectar_single_testimonial span {
color: #fff;
}
.span_12.light .nectar_single_testimonial .title {
color: rgba(255,255,255,0.6);
}
.nectar_single_testimonial {
padding-left: 0;
}
.nectar_single_testimonial[data-style="small_modern"] p span {
font-size: 80px;
line-height: 80px;
margin-bottom: -20px;
}
.nectar_single_testimonial[data-style="bold"] p span {
font-size: 110px;
line-height: 110px;
margin-bottom: -30px;
}
.wpb_wrapper > .nectar_single_testimonial:last-child {
margin-bottom: 0;
}
.nectar_single_testimonial[data-style="bold"] p {
padding-bottom: 35px;
}
.testimonial_slider blockquote .title, .nectar_single_testimonial .title {
color:rgba(0,0,0,.5)
}
.testimonial_slider:not([data-style="minimal"]) blockquote .title{
font-size:12px
}
.testimonial_slider[data-style="minimal"] blockquote .title{
font-size:12px;
font-style:italic
}
.testimonial_slider[data-style="minimal"] blockquote span:not(.title){
-webkit-transform:scale(0.8);
transform:scale(0.8);
margin-bottom:-4px
}
.testimonial_slider[data-style*="multiple_visible"] blockquote .title,
.nectar_single_testimonial .title {
font-size:14px
}
.light .testimonial_slider blockquote{
color:rgba(255,255,255,0.95)
}
.light .testimonial_slider blockquote .title,
.testimonial_slider[data-style="multiple_visible"][data-color*="-light"] blockquote .title{
color:rgba(255,255,255,0.45)
}
.testimonial_slider .controls ul li i{
color:#444
}
.light .testimonial_slider .controls ul li span{
border-color:#fff
}
.light .testimonial_slider .controls ul li span:hover,
.light .testimonial_slider .controls ul li .pagination-switch.active{
background-color:#fff
}
.testimonial_slider .image-icon,
.nectar_single_testimonial .image-icon {
font-family:Georgia,serif!important;
font-size:50px;
text-align:center;
display:inline-block;
border-radius:100px;
width:50px;
height:50px;
margin-bottom:33px;
line-height:70px;
background-size:cover;
background-position: center;
border:2px solid rgba(0,0,0,0.13)
}
.nectar_single_testimonial .image-icon {
border: none;
background-position: center;
}
.nectar_single_testimonial[data-style="basic_left_image"] {
padding-left: 90px;
}
.nectar_single_testimonial[data-style="basic_left_image"] .image-icon {
position: absolute;
left: 0;
top: 5px;
}
.light .testimonial_slider .image-icon{
border-color:rgba(255,255,255,0.4)
}
.testimonial_slider .image-icon.has-bg{
width:50px;
height:50px;
border:none;
text-indent:-9999px
}
.testimonial_slider blockquote p .bottom-arrow{
display:none
}
.testimonial_slider[data-style="multiple_visible_minimal"] .image-icon,
.nectar_single_testimonial .image-icon {
width:54px;
height:54px;
display:inline-block;
vertical-align:middle;
margin-bottom:0;
margin-right:20px
}
.testimonial_slider[data-style="multiple_visible_minimal"] .wrap,
.nectar_single_testimonial .wrap{
display:inline-block;
vertical-align:middle
}
.testimonial_slider .star-rating-wrap{
display:block;
-webkit-transform:none;
transform:none;
line-height:0
}
.testimonial_slider .star-rating{
display:inline-block;
margin-top:20px;
-webkit-transform:none;
transform:none;
position:relative;
font-size:16px!important
}
.testimonial_slider[data-style="minimal"] blockquote .star-rating:not(.title),
.testimonial_slider[data-style="minimal"] blockquote .star-rating-wrap:not(.title) {
-webkit-transform:none;
transform:none;
}
.testimonial_slider:not([data-style="minimal"]) blockquote .star-rating {
font-size: 16px!important;
}
.testimonial_slider .star-rating:before{
font-family:FontAwesome;
font-weight:normal;
font-style:normal;
text-decoration:inherit;
-webkit-font-smoothing:antialiased;
content:"\f005\00a0\f005\00a0\f005\00a0\f005\00a0\f005";
color:#ddd;
float:left;
top:0;
left:0
}
.testimonial_slider .star-rating .filled {
position:absolute;
display:block;
font-size:16px!important;
left:0;
-webkit-transform:none!important;
transform:none!important;
width:100%;
overflow:hidden;
z-index:100
}
.testimonial_slider .star-rating .filled:before{
font-family:FontAwesome;
font-weight:normal;
font-style:normal;
text-decoration:inherit;
-webkit-font-smoothing:antialiased;
content:"\f005\00a0\f005\00a0\f005\00a0\f005\00a0\f005";
color:#000;
float:left
}
.toggles .testimonial_slider,
.full-width-content .testimonial_slider{
padding-bottom:20px
}
.toggles .testimonial_slider .controls,
.full-width-content .testimonial_slider .controls{
bottom:2px!important
}
.testimonial_slider[data-style="minimal"] .slides{
max-width:70%;
margin:0 auto
}
.testimonial_slider[data-style="minimal"] blockquote{
padding:0 25px;
-ms-transition:transform 0.5s,opacity 0.5s;
transition:transform 0.5s,opacity 0.5s;
-webkit-transition:transform 0.5s,opacity 0.5s
}
.testimonial_slider[data-style="default"] blockquote{
-ms-transition:transform 0.5s,opacity 0.5s;
transition:transform 0.5s,opacity 0.5s;
-webkit-transition:transform 0.5s,opacity 0.5s
}
.testimonial_slider[data-style="minimal"] blockquote.no-trans,
.testimonial_slider[data-style="default"] blockquote.no-trans{
-ms-transition:none;
transition:none;
-webkit-transition:none
}
.testimonial_slider[data-style="minimal"] .control-wrap{
width:20px;
line-height:20px;
overflow:hidden;
display:inline-block;
vertical-align:top
}
.testimonial_slider[data-style="minimal"] .controls .out-of,
.testimonial_slider[data-style="minimal"] .controls .total{
display:inline-block;
font-size:16px;
line-height:20px;
color:#000;
vertical-align:top
}
.testimonial_slider[data-style="minimal"] .control-wrap{
font-size:16px
}
.testimonial_slider[data-style="minimal"] .controls .out-of,
.testimonial_slider[data-style="minimal"] .controls .total{
width:20px;
text-align:center
}
.testimonial_slider[data-style="minimal"] .controls .out-of{
width:13px;
top:-1px;
position:relative
}
.testimonial_slider[data-style="minimal"] .control-wrap ul{
width:auto;
-ms-transition:transform 0.33s;
-webkit-transition:transform 0.33s;
transition:transform 0.33s
}
.testimonial_slider[data-style="minimal"] .control-wrap ul li{
color:#000;
display:block;
float:left;
width:20px;
font-size:16px;
line-height:20px;
cursor:auto
}
.testimonial_slider[data-style="minimal"] .controls{
vertical-align:top
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev{
position:absolute;
top:50%;
height:40px;
width:40px;
font-size:28px;
-ms-transform:translateY(-50%);
-webkit-transform:translateY(-50%);
transform:translateY(-50%);
margin-top:-40px;
left:7.5%;
margin-left:-8px;
text-align: center;
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next{
position:absolute;
top:50%;
height:40px;
margin-top:-40px;
font-size:28px;
width:40px;
margin-right:-8px;
-ms-transform:translateY(-50%);
-webkit-transform:translateY(-50%);
transform:translateY(-50%);
right:7.5%;
text-align: center;
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:before,
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:before{
display:block;
position:absolute;
left:0;
top:0
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:after,
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:after{
backface-visibility:hidden;
display:block;
content:' ';
z-index:100;
position:absolute;
width:22px;
height:2px;
background-color:#000;
top:48%;
opacity:0;
right:11px;
cursor:pointer;
-ms-transform:translateY(-50%) scaleX(0) translateZ(0);
transform:translateY(-50%) scaleX(0) translateZ(0);
-webkit-transform:translateY(-50%) scaleX(0) translateZ(0);
transition:opacity .5s cubic-bezier(.2,1,.2,1),transform .5s cubic-bezier(.2,1,.2,1);
-webkit-transition:opacity .5s cubic-bezier(.2,1,.2,1),-webkit-transform .5s cubic-bezier(.2,1,.2,1)
}
.span_12.light .testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:after,
.span_12.light .testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:after{
background-color:#fff
}
.span_12.light .testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:before,
.span_12.light .testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:before,
.span_12.light .testimonial_slider[data-style="minimal"] .controls .out-of,
.span_12.light .testimonial_slider[data-style="minimal"] .controls .total,
.span_12.light .testimonial_slider[data-style="minimal"] .controls .control-wrap ul li{
color:#fff
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:after{
right:8px
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:hover:after,
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:hover:after{
opacity:1;
-ms-transform:translateY(-50%) scaleX(1) translateZ(0);
transform:translateY(-50%) scaleX(1) translateZ(0);
-webkit-transform:translateY(-50%) scaleX(1) translateZ(0)
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:hover:before{
-ms-transform: translateX(10px);
-webkit-transform:translateX(10px);
transform: translateX(10px)
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:hover:before{
-ms-transform:translateX(-10px);
-webkit-transform:translateX(-10px);
transform:translateX(-10px)
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev svg{
position:absolute;
left:-2px;
top:-2px
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:before{
left:-1px;
position:relative
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:before{
right:-1px;
position:relative
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev:before,
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next:before{
line-height:36px;
color:#000;
-ms--webkit-transition:-webkit-transform .5s cubic-bezier(.2,1,.2,1);
transition:transform .5s cubic-bezier(.2,1,.2,1);
-webkit-transition:-webkit-transform .5s cubic-bezier(.2,1,.2,1)
}
.nectar_single_testimonial:before {
display: none;
}
@media only screen and (max-width : 690px) {
.testimonial_slider .flickity-page-dots {
bottom: -25px;
}
.testimonial_slider[data-style="multiple_visible"] blockquote p:before {
display: none;
}
.main-content .testimonial_slider[data-style="multiple_visible"] blockquote p {
padding: 30px;
}
.testimonial_slider[data-style="multiple_visible"] blockquote {
margin-bottom: 0;
}
.testimonial_slider[data-style="minimal"] .slides {
max-width: none;
}
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .prev,
.testimonial_slider[data-style="minimal"] .testimonial-next-prev .next {
-ms-transform: none;
-webkit-transform: none;
transform: none;
z-index: 500;
top: auto;
bottom: -11px;
}
.testimonial_slider[data-style="multiple_visible_minimal"] blockquote .inner {
padding: 30px;
}
}
@media only screen and (min-width: 990px) and (max-width: 1300px) {
.full-width-content .vc_span4 .testimonial_slider blockquote,
.full-width-content .vc_col-sm-4 .testimonial_slider blockquote {
font-size: 16px;
line-height: 33px;
}
} | 0.336549 | 0.176831 |
:root {
/* added by fgp */
--has-fgp: initial;
--element-has-fgp: initial;
--parent-has-fgp: initial;
}
.gap-and-no-flex > * > * {
/* added by fgp */
--fgp-parent-gap-row: initial;
--fgp-parent-gap-column: initial;
}
.gap-and-no-flex > *,
.gap-and-no-flex > ::slotted(*) {
/* added by fgp */
pointer-events: var(--parent-has-fgp) auto;
--fgp-parent-gap-row: 20px;
--fgp-margin-top: var(--parent-has-fgp) calc(var(--fgp-gap-row) + var(--orig-margin-top, 0px));
margin-top: var(--fgp-margin-top);
--fgp-parent-gap-column: 20px;
--fgp-margin-left: var(--parent-has-fgp) calc(var(--fgp-gap-column) + var(--orig-margin-left, 0px));
margin-left: var(--fgp-margin-left);
}
.gap-and-no-flex {
/* added by fgp */
pointer-events: var(--has-fgp) none;
--fgp-gap-row: 20px;
--fgp-margin-top: var(--has-fgp) calc(var(--fgp-parent-gap-row, 0px) / (1 + var(--fgp--parent-gap-as-decimal, 0)) - var(--fgp-gap-row) + var(--orig-margin-top, 0px)) !important;
--fgp-gap-column: 20px;
--fgp-margin-left: var(--has-fgp) calc(var(--fgp-parent-gap-column, 0px) / (1 + var(--fgp--parent-gap-as-decimal, 0)) - var(--fgp-gap-column) + var(--orig-margin-left, 0px)) !important;
}
.gap-and-no-flex {
--fgp-gap: var(--has-fgp, 20px);
gap: var(--fgp-gap, 0px);
margin-top: var(--fgp-margin-top, var(--orig-margin-top));
margin-left: var(--fgp-margin-left, var(--orig-margin-left));
}
.flex-and-gap > *,
.flex-and-gap > ::slotted(*) {
/* added by fgp */
--parent-has-fgp: !important;
--element-has-fgp: initial;
--orig-margin-top: initial;
pointer-events: var(--parent-has-fgp) auto;
--fgp-parent-gap-row: 20px;
--fgp-margin-top: var(--parent-has-fgp) calc(var(--fgp-gap-row) + var(--orig-margin-top, 0px));
margin-top: var(--fgp-margin-top);
--fgp-parent-gap-column: 20px;
--fgp-margin-left: var(--parent-has-fgp) calc(var(--fgp-gap-column) + var(--orig-margin-left, 0px));
margin-left: var(--fgp-margin-left);
}
.flex-and-gap > * > * {
/* added by fgp */
--parent-has-fgp: initial;
--fgp-parent-gap-row: initial;
--fgp-parent-gap-column: initial;
}
.flex-and-gap {
/* added by fgp */
--has-fgp: ;
--element-has-fgp: ;
pointer-events: var(--has-fgp) none;
--fgp-gap-row: 20px;
--fgp-margin-top: var(--has-fgp) calc(var(--fgp-parent-gap-row, 0px) / (1 + var(--fgp--parent-gap-as-decimal, 0)) - var(--fgp-gap-row) + var(--orig-margin-top, 0px)) !important;
--fgp-gap-column: 20px;
--fgp-margin-left: var(--has-fgp) calc(var(--fgp-parent-gap-column, 0px) / (1 + var(--fgp--parent-gap-as-decimal, 0)) - var(--fgp-gap-column) + var(--orig-margin-left, 0px)) !important;
}
.flex-and-gap {
display: flex;
--fgp-gap: var(--has-fgp, 20px);
gap: var(--fgp-gap, 0px);
--fgp-margin-top: initial;
--orig-margin-top: 1em;
margin-top: var(--fgp-margin-top, var(--orig-margin-top));
margin-top: var(--fgp-margin-top, var(--orig-margin-top));
margin-left: var(--fgp-margin-left, var(--orig-margin-left));
}
.gap-and-no-flex > *,
.gap-and-no-flex > ::slotted(*) {
/* added by fgp */
--orig-margin-top: initial;
--orig-margin-left: initial;
}
.gap-and-no-flex {
--fgp-margin-top: initial;
--orig-margin-top: 20px;
margin-top: var(--fgp-margin-top, var(--orig-margin-top));
--fgp-margin-left: initial;
--orig-margin-left: 1em;
margin-left: var(--fgp-margin-left, var(--orig-margin-left));
margin-right: 2em;
}
.width-400 {
/* added by fgp */
--fgp-width: var(--element-has-fgp) calc(400px + var(--fgp-gap-column, 0%));
}
.width-400 {
width: var(--fgp-width, 400px);
} | test/gap-web-components.expect.css | :root {
/* added by fgp */
--has-fgp: initial;
--element-has-fgp: initial;
--parent-has-fgp: initial;
}
.gap-and-no-flex > * > * {
/* added by fgp */
--fgp-parent-gap-row: initial;
--fgp-parent-gap-column: initial;
}
.gap-and-no-flex > *,
.gap-and-no-flex > ::slotted(*) {
/* added by fgp */
pointer-events: var(--parent-has-fgp) auto;
--fgp-parent-gap-row: 20px;
--fgp-margin-top: var(--parent-has-fgp) calc(var(--fgp-gap-row) + var(--orig-margin-top, 0px));
margin-top: var(--fgp-margin-top);
--fgp-parent-gap-column: 20px;
--fgp-margin-left: var(--parent-has-fgp) calc(var(--fgp-gap-column) + var(--orig-margin-left, 0px));
margin-left: var(--fgp-margin-left);
}
.gap-and-no-flex {
/* added by fgp */
pointer-events: var(--has-fgp) none;
--fgp-gap-row: 20px;
--fgp-margin-top: var(--has-fgp) calc(var(--fgp-parent-gap-row, 0px) / (1 + var(--fgp--parent-gap-as-decimal, 0)) - var(--fgp-gap-row) + var(--orig-margin-top, 0px)) !important;
--fgp-gap-column: 20px;
--fgp-margin-left: var(--has-fgp) calc(var(--fgp-parent-gap-column, 0px) / (1 + var(--fgp--parent-gap-as-decimal, 0)) - var(--fgp-gap-column) + var(--orig-margin-left, 0px)) !important;
}
.gap-and-no-flex {
--fgp-gap: var(--has-fgp, 20px);
gap: var(--fgp-gap, 0px);
margin-top: var(--fgp-margin-top, var(--orig-margin-top));
margin-left: var(--fgp-margin-left, var(--orig-margin-left));
}
.flex-and-gap > *,
.flex-and-gap > ::slotted(*) {
/* added by fgp */
--parent-has-fgp: !important;
--element-has-fgp: initial;
--orig-margin-top: initial;
pointer-events: var(--parent-has-fgp) auto;
--fgp-parent-gap-row: 20px;
--fgp-margin-top: var(--parent-has-fgp) calc(var(--fgp-gap-row) + var(--orig-margin-top, 0px));
margin-top: var(--fgp-margin-top);
--fgp-parent-gap-column: 20px;
--fgp-margin-left: var(--parent-has-fgp) calc(var(--fgp-gap-column) + var(--orig-margin-left, 0px));
margin-left: var(--fgp-margin-left);
}
.flex-and-gap > * > * {
/* added by fgp */
--parent-has-fgp: initial;
--fgp-parent-gap-row: initial;
--fgp-parent-gap-column: initial;
}
.flex-and-gap {
/* added by fgp */
--has-fgp: ;
--element-has-fgp: ;
pointer-events: var(--has-fgp) none;
--fgp-gap-row: 20px;
--fgp-margin-top: var(--has-fgp) calc(var(--fgp-parent-gap-row, 0px) / (1 + var(--fgp--parent-gap-as-decimal, 0)) - var(--fgp-gap-row) + var(--orig-margin-top, 0px)) !important;
--fgp-gap-column: 20px;
--fgp-margin-left: var(--has-fgp) calc(var(--fgp-parent-gap-column, 0px) / (1 + var(--fgp--parent-gap-as-decimal, 0)) - var(--fgp-gap-column) + var(--orig-margin-left, 0px)) !important;
}
.flex-and-gap {
display: flex;
--fgp-gap: var(--has-fgp, 20px);
gap: var(--fgp-gap, 0px);
--fgp-margin-top: initial;
--orig-margin-top: 1em;
margin-top: var(--fgp-margin-top, var(--orig-margin-top));
margin-top: var(--fgp-margin-top, var(--orig-margin-top));
margin-left: var(--fgp-margin-left, var(--orig-margin-left));
}
.gap-and-no-flex > *,
.gap-and-no-flex > ::slotted(*) {
/* added by fgp */
--orig-margin-top: initial;
--orig-margin-left: initial;
}
.gap-and-no-flex {
--fgp-margin-top: initial;
--orig-margin-top: 20px;
margin-top: var(--fgp-margin-top, var(--orig-margin-top));
--fgp-margin-left: initial;
--orig-margin-left: 1em;
margin-left: var(--fgp-margin-left, var(--orig-margin-left));
margin-right: 2em;
}
.width-400 {
/* added by fgp */
--fgp-width: var(--element-has-fgp) calc(400px + var(--fgp-gap-column, 0%));
}
.width-400 {
width: var(--fgp-width, 400px);
} | 0.261708 | 0.089494 |
html{
overflow-y:scroll;
}
input[type=submit],
input[type=text],
input[type=password],
input[type=file],
textarea{
-webkit-appearance:none;
-webkit-border-radius:0;
}
input[type="image"]{
padding:0;
border:none;
}
body {
margin:0;
color:#747474;
min-width:320px;
-webkit-text-size-adjust:100%;
font:13px/20px 'PTSansRegular', Arial, Helvetica, sans-serif;
}
html {
overflow-x: hidden;
}
#wrapper {
overflow: visible;
}
.body_blank {
display:table;
height:100%;
width:100%!important;
position:absolute;
margin:0;
left:0;
top:0;
overflow-x: hidden;
}
body.body_blank.admin-bar {
top: 31px;
}
body.body_blank.admin-bar #wrapper #slidingbar-area {
top: 0;
}
.wrapper_blank {
display: table-cell;
float: none;
vertical-align: middle;
width: 100%;
}
.wrapper_blank .page-title-container {
margin-bottom: 25px;
}
.wrapper_blank #main{
background: transparent !important;
padding: 0;
}
img{
border-style:none;
vertical-align:top;
max-width:100%;
height:auto;
}
object{
max-width:100%;
}
a{
text-decoration:none;
color:#333;
}
a:hover {
color:#a0ce4e;
text-decoration:none;
}
input,
textarea,
select {
font:100% Arial, Helvetica, sans-serif;
vertical-align:middle;
color:#000;
}
form, fieldset {
margin:0;
padding:0;
border-style:none;
}
.clearfix:after,#content:after {
content: "";
display: table;
clear: both;
}
.clear{clear:both;}
.wp-caption{max-width:100% !important;}
#header{padding:0 10px 0;}
.avada-row{
margin:0 auto;
max-width:940px;
}
.avada-row:after{
content:"";
display:block;
clear:both;
}
#header-sticky .logo, #header .logo{
float:left;
overflow:hidden;
margin:31px 0;
}
#header-sticky .logo a, #header .logo a{
height:100%;
display:block;
}
#header-sticky .retina_logo,#header .retina_logo{display:none;}
#header-sticky .login-box,#header .login-box,#small-nav .login-box{
left:auto;
right:0;
}
#header-sticky .login-box .forgetmenot,#header .login-box .forgetmenot,#small-nav .login-box .forgetmenot{line-height:32px !important;}
#header-sticky .login-box .forgetmenot input,#header .login-box .forgetmenot input,#small-nav .login-box .forgetmenot input{margin:0;}
#header-sticky .login-box p,#header .login-box p,#small-nav .login-box p{font-size:11px !important;}
#header-sticky .login-box p .input-text,#header .login-box p .input-text,#small-nav .login-box p .input-text{margin-bottom:10px;}
.nav-holder .fusion-navbar-nav > li > ul, .nav-holder .fusion-navbar-nav > li > div, .nav-holder .fusion-navbar-nav .fusion-dropdown-menu ul,
.top-menu li > div, .top-menu li > .sub-menu {
-webkit-transition: opacity .2s, visibility .2s ease-in;
-moz-transition: opacity .2s, visibility .2s ease-in;
-o-transition: opacity .2s, visibility .2s ease-in;
transition: opacity .2s, visibility .2s ease-in;
/* fix flicker and use hardware acceleration */
-webkit-transform: translate3d(0, 0, 0);
z-index:-1;
visibility:hidden;
opacity:0;
}
#main-nav-search-form, #sticky-nav-search-form{
z-index:99998;
visibility:visible;
opacity:1;
}
#wrapper .nav-holder li:hover .fusion-megamenu-wrapper .fusion-megamenu-widgets-container{display:block;}
.nav-holder .fusion-navbar-nav li:hover > .sub-menu, .nav-holder .fusion-navbar-nav li:hover > div,
.top-menu li:hover > .sub-menu, .top-menu .cart:hover .cart-contents{
z-index:100000;
visibility:visible;
opacity:1;
}
nav#nav, nav#sticky-nav{
float:right;
font:14px/16px 'MuseoSlab500Regular', arial, helvetica, sans-serif;
z-index: 99999;
}
#nav ul, #sticky-nav ul{
list-style:none;
margin:0;
padding:0;
}
#nav ul li, #sticky-nav ul li{
float:left;
padding: 0 35px 0 0;
margin: 0;
}
ul#navigation > li:last-child{padding-right:0;}
#nav ul a,#sticky-nav ul a,.navigation li.current-menu-ancestor a{
display:block;
height:83px;
line-height:82px;
border-top:3px solid transparent;
}
#nav ul .current_page_item a, #nav ul .current-menu-item a, #nav ul > .current-menu-parent a,
#sticky-nav ul .current_page_item a, #sticky-nav ul .current-menu-item a, #sticky-nav ul > .current-menu-parent a{
color:#a0ce4e;
text-decoration:none;
border-color:#a0ce4e;
}
#nav ul li, #sticky-nav ul li{
position:relative;
}
#nav ul ul, #sticky-nav ul ul{
position:absolute;top:86px;left:0px;
width:170px;
background:#edebeb;
z-index:100000;
border-top:3px solid #a0ce4e;
z-index: 99999;
-moz-box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.06);
-webkit-box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.06);
box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.06);
/*-moz-box-shadow: -1px 1px 10px rgba(0,0,0,.22);
-webkit-box-shadow: -1px 1px 10px rgba(0,0,0,.22);
box-shadow: -1px 1px 10px rgba(0,0,0,.22);*/
}
#nav ul li ul li, #sticky-nav ul li ul li{
float:none;
margin:0;
padding: 0;
}
#wrapper #nav ul li ul li a, #wrapper #sticky-nav ul li ul li a{
border:0;
border-bottom:1px solid #dcdadb;
height:auto;
text-indent:0px;
font:13px/30px 'PT Sans', Arial, Helvetica, sans-serif;
color:#333333 !important;
padding:7px 20px;
line-height:19px;
}
#wrapper #nav ul li ul li a:hover,#wrapper #nav ul li ul li.current-menu-item > a,
#wrapper #sticky-nav ul li ul li a:hover,#wrapper #sticky-nav ul li ul li.current-menu-item > a{
background-color:rgba(255,255,255,0.5);
}
#nav ul ul ul, #sticky-nav ul ul ul{
top:-3px;
left:170px!important;
}
#nav .fusion-megamenu-wrapper ul,#sticky-nav .fusion-megamenu-wrapper ul{left:auto!important;}
#nav .dd-container,#sticky-nav .dd-container,.top-menu .dd-container{
max-width:100%;
display:none;
}
.main-nav-search {
width:50px;
}
a.search-link {
font-size: 14px;
font-family: FontAwesome !important;
cursor: pointer;
}
a.search-link:after {
border: 1px solid;
border-radius: 50% 50% 50% 50%;
padding: 5px;
content: "\f002";
}
.main-nav-search a:hover {
border-top: 3px solid transparent !important;
}
#header-sticky.sticky-header .main-nav-search a:hover {
border-top: none !important;
padding-top:3px !important;
}
.main-nav-search-form {
display: none;
left: auto;
position: absolute;
right: 0;
top: auto;
z-index: 99999;
width: 200px;
padding: 25px;
background-color: #ffffff;
border: 1px solid #E6E5E6;
text-align:right;
font-size: 0;
}
#header-sticky.sticky-header .main-nav-search-form {
top: 65px;
}
.main-nav-search-form input{
display: inline-block !important;
color: #AAA9A9;
background-color: #ffffff;
border: 1px solid #D2D2D2;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) inset;
-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) inset;
-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) inset;
color: #747474;
font-size: 13px;
height: 16px;
padding: 8px 5px !important;
width:150px;
}
.header-wrapper .header-v4 .main-nav-search-form input#s,.header-wrapper .header-v5 .main-nav-search-form input#s {
width:150px;
}
.main-nav-search-form input[type="submit"], .search-page-search-form input[type="submit"] {
background: #000000 !important;
border: none !important;
color: #FFFFFF !important;
font-size: 14px;
height: 34px;
line-height: 34px;
margin: 0;
padding: 0 !important;
width: 34px;
text-indent: 0 !important;
display: inline-block !important;
cursor: pointer;
font-family: FontAwesome !important;
}
.main-nav-search-form input[type="submit"]:hover,.search-page-search-form input[type="submit"]:hover {
background: #A0CE4E;
}
.search-page-search-form {
padding-bottom: 60px;
border-bottom: 1px solid #E6E5E6;
margin-bottom: 60px;
}
.search-page-search-form .seach-form { text-align: right; margin-left:-3px; font-size: 0;}
.search-page-search-form input {
color: #AAA9A9;
background-color: #ffffff;
border: 1px solid #D2D2D2;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) inset;
-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) inset;
-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) inset;
color: #747474;
font-size: 13px;
height: 16px;
padding: 8px 2% !important;
width: -moz-calc(96% - 39px);
width: -webkit-calc(96% - 39px);
width: -ms-calc(96% - 39px);
width: -o-calc(96% - 39px);
width: calc(96% - 39px);
display: inline-block !important;
}
#fallback-slide{display:none;}
#fallback-slide img{width:100%;}
body #header-sticky.sticky-header{background:transparent !important;margin:0;position:fixed;top:0;left:0;z-index:99998;display:none;padding:0;width:100%;height: 105px;}
body.admin-bar #header-sticky.sticky-header{top:32px;}
body #header-sticky.sticky-header.sticky{display:block;}
body #header-sticky.sticky-header .logo{margin-top:0;margin-bottom:0;max-height:65px;width:auto; float: left;}
body #header-sticky.sticky-header #sticky-nav ul ul{top:65px !important;}
body #header-sticky.sticky-header #sticky-nav ul ul ul{top:-3px !important;}
body #header-sticky.sticky-header .sticky-shadow {
height:102px;
background:rgba(255,255,255,0.97) !important;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
padding: 0 10px;
}
.sticky-header #sticky-nav ul li a {
border-top-width: 0;
padding-top: 3px;
}
.sticky-header #sticky-nav ul .current_page_item a, .sticky-header #sticky-nav ul .current-menu-item a, .sticky-header #sticky-nav ul > .current-menu-parent a, .sticky-header .navigation li.current-menu-ancestor a, .sticky-header #sticky-nav ul > li > a:hover {
border-top-width: 3px;
padding-top: 0;
}
.sticky-header #sticky-nav ul li ul li a, .sticky-header #sticky-nav ul li ul li a:hover { padding: 7px 20px; }
body #header-sticky.sticky-header .sticky-shadow .mobile-nav-holder { padding-top: 17px; }
body #header-sticky.sticky-header .sticky-shadow .nav-holder .dd-container { padding-top: 17px; }
body #header-sticky.sticky-header .sticky-shadow .nav-holder .dd-options li a { padding: 10px; }
/*
body #header-sticky.sticky-header .navigation > li > a, .navigation li.current-menu-ancestor a,
body #header-sticky.sticky-header #sticky-nav ul.menu .cart a{
height: 83px;
line-height: 83px;
}
*/
.gallery-box{
background:#3d3c3c;
padding:0 10px;
}
.gallery{
margin:0 auto;
max-width:1400px;
}
.gallery-box img{width:100%;}
#main{
padding:55px 10px 45px;
background:#fff;
clear:both;
}
.reading-box-container{
margin:0 0 84px;
}
.reading-box{
padding:28px 28px 27px 31px;
border-left:3px solid #a0ce4e;
background:#f2efef;
}
#main .reading-box h2{
margin:0 0 7px;
font:18px/20px 'MuseoSlab500Regular', arial, helvetica, sans-serif;
}
.reading-box p{margin:0 !important;}
.continue{
float:right;
}
.columns{
overflow:hidden;
margin:0 0 60px;
}
.columns .col{
float:left;
width:22%;
margin:0 4% 20px 0;
}
.columns .col:nth-child(4n) {
margin-right: 0;
}
.columns-3 .col{
width:30.6666%
}
.columns-2 .col{
width:48%
}
.columns-1 .col{
width:100%
}
.columns-3 .col:nth-child(3n+1){
clear:both;
}
.columns-3 .col:nth-child(3n){
margin-right:0;
}
.columns-2 .col:nth-child(1n){
margin-right:0;
float:left;
clear:left;
}
.columns-2 .col:nth-child(2n){
margin-right:0 !important;
float:right;
clear:right;
}
.columns-4 .col{
width:22%;
margin:0 4% 0 0;
}
.columns-4 .col:nth-child(4n+1){
clear:both;
}
.columns-4 .col:nth-child(4n){
margin-right:0 !important;
}
.columns-5 .col:nth-child(5n+1){
clear:both;
}
.columns-5 .col:nth-child(5n){
margin-right:0 !important;
}
.columns .col.last{margin-right:0;}
.col .heading{
overflow:hidden;
margin:0 0 15px;
}
.col .heading img{
float:left;
margin:0 10px 0 0;
}
.col p{margin:0 0 23px;}
.col .flexslider{margin:0;}
#main h2{
color:#333;
margin:0 0 20px;
font:18px/20px 'MuseoSlab500Regular', arial, helvetica, sans-serif;
}
#main .columns h2{margin:0; line-height:35px !important;}
.more{
overflow:hidden;
display:block;
font:13px/15px 'PTSansRegular', arial, helvetica, sans-serif;
}
.more a{
float:right;
padding:0 0 0 0;
}
.more a:after,.read-more:after{
font-family: FontAwesome;
content:'\f054';
font-size:8px;
padding-left:5px;
}
.more a.active{
color:#a0ce4e;
text-decoration:none;
}
.more a.active:after{
font-family: FontAwesome;
content:'\f054';
color:#a0ce4e;
font-size:8px;
padding-left:5px;
}
.content-boxes .more{margin-top:18px;}
.container{overflow:hidden;}
.avada-container .columns{
margin:0 0 50px;
}
#main .container h2{margin:0;}
.container .columns .col{
width:31.42857%;
padding:0 2.85714% 0 0;
}
.container .col img{width:100%;}
.container .columns .col.last{margin-right:0;}
.container .holder{overflow:hidden;}
.avada-container h3{
margin:18px 0 5px;
font:13px/15px 'PTSansBold', arial, helvetica, sans-serif;
}
.container h3 a.active{
text-decoration:none;
color:#a0ce4e;
}
.avada-container h4{
margin-top:15px;
margin-bottom:5px;
}
.slider{overflow:hidden;}
.review{
width:100%;
}
.title{
margin:0 0 31px;
overflow:hidden;
display:table;
}
.title h1,.title h2,.title h3,.title h4,.title h5,.title h6{display:table-cell;white-space:pre;}
.title h1,#main .post-content .title h1{
float:left;
padding:0 8px 0 0 !important;
margin:0 !important;
}
.title h2,#main .post-content .title h2{
float:left;
padding:0 8px 0 0 !important;
margin:0 !important;
font-size:18px !important;
}
.title h3,#main .post-content .title h3{
float:left;
padding:0 8px 0 0 !important;
margin:0 !important;
}
.title h4,#main .post-content .title h4{
float:left;
padding:0 8px 0 0 !important;
margin:0 !important;
}
.title h5,#main .post-content .title h5{
float:left;
padding:0 8px 0 0 !important;
margin:0 !important;
}
.title h6,#main .post-content .title h6{
float:left;
padding:0 8px 0 0 !important;
margin:0 !important;
}
.title .title-sep-container{
display:table-cell;
vertical-align:middle;
width:100%;
position:relative;
height:6px;
}
.title-sep{
display:block;
border-top:1px solid #e7e6e6;
border-bottom:1px solid #e7e6e6;
width:100%;
position:relative;
height:6px;
}
.border-below-title{display:block;}
.border-below-title h1,.border-below-title h2,.border-below-title h3,.border-below-title h4,.border-below-title h5,.border-below-title h6{white-space:normal;}
#main .post-content .border-below-title h1,#main .post-content .border-below-title h2,#main .post-content .border-below-title h3,#main .post-content .border-below-title h4,#main .post-content .border-below-title h5,#main .post-content .border-below-title h6{float:none;padding-right:0 !important;}
.border-below-title .title-sep-container{display:none;height:8px;}
.meta{
list-style:none;
margin:0 0 13px;
padding:0;
overflow:hidden;
font-size:12px;
line-height:14px;
color:#333;
}
.meta li{
float:left;
padding:0 8px 0 9px;
border-left:1px solid #333333;
}
.meta li:first-child{
padding-left:0;
border-left:0;
}
.layout-thumbnails-on-side.layout-columns-3 .meta li:first-child,.layout-thumbnails-on-side.layout-columns-4 .meta li:first-child,
.layout-date-on-side.layout-columns-3 .meta li:first-child,.layout-date-on-side.layout-columns-4 .meta li:first-child{
margin-bottom:5px;
}
.meta .date{font:12px/14px 'PTSansItalic', arial, helvetica, sans-serif;}
.review blockquote{
background:none !important;
border-left:none !important;
padding:0 !important;
margin:0 !important;
}
.review blockquote q{
display:block;
padding:25px 14px 24px 24px;
background:#f6f3f3;
font:13px/20px 'PTSansItalic', arial, helvetica, sans-serif;
}
.review blockquote q::before,.review blockquote q::after,
.review blockquote q:before,.review blockquote q:after{
content:'';
}
.review blockquote q p:first-child::before{
content:open-quote;
}
.review blockquote q p:last-child::after{
content:close-quote;
}
.review blockquote div{
display:block;
padding:12px 0 0 2px;
color:#333;
font-style:normal !important;
position:relative;
}
.review blockquote div:after{
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.review blockquote div:after{
border-color: rgba(72, 71, 71, 0);
border-top-color: #f6f3f3;
border-width: 10px;
bottom:auto;
top:0px;
left:30px;
}
.review blockquote div strong{
padding:0;
font:13px/15px 'PTSansBold', arial, helvetica, sans-serif;
font-style:normal !important;
}
.review blockquote div span{
font-style:normal !important;
}
.review blockquote div{
float:left;
line-height:15px;
}
.review blockquote div .company-name{
padding-left:53px;
background:url(images/ico-user.png) no-repeat;
display:block;
min-height:29px;
padding-top:6px;
font-style:normal !important;
}
.review.male blockquote div .company-name{
background:url(images/ico-user.png) no-repeat;
}
.review.female blockquote div .company-name{
background:url(images/ico-user-girl.png) no-repeat;
}
.footer-widget-col{margin-bottom:20px;}
.footer-widget-col:last-child{margin-bottom:0;}
.footer-area{
border-top:12px solid #e9eaee;
background:#363839;
padding:43px 10px 40px;
color:#8c8989;
position: relative;
}
.footer-area .logo{
float:none;
display:block;
margin:0 0 22px;
background:url(images/logo-footer.gif) no-repeat;
}
.footer-area h3{
margin:0 0 28px;
color:#ddd;
text-transform:uppercase;
font:13px/20px 'PTSansBold', arial, helvetica, sans-serif;
}
.footer-area .columns{margin:0;}
.footer-area .text-block{
text-shadow:1px 2px 1px #000;
}
.footer-area .holder-block img{width:100%;}
.footer-area ul{
list-style:none;
margin:0;
padding:0;
font-size:12px;
line-height:15px;
}
.footer-area ul li a{
padding:12px 0;
border-bottom: 1px solid #282a2b;
display:block;
}
.footer-area .footer-widget-col ul:first-child > li:first-child > a,.footer-area .footer-widget-col > ul > li:first-child > a{background-image:none;padding-top:0px;}
.footer-area a{
text-shadow:1px 2px 1px #000;
color:#bfbfbf;
}
.footer-area ul li a:hover{
color:#a0ce4e;
}
.footer-area ul#recentcomments li.recentcomments:first-child{
padding-top:0px !important;
background:none !important;
}
.footer-area li.recentcomments {
padding:12px 0;
border-bottom: 1px solid #282a2b;
display:block;
}
.footer-area li.recentcomments a{
border: none !important;
}
#footer{
padding:18px 10px 12px;
background:#282a2b;
border-top:1px solid #4b4c4d;
}
.copyright{
list-style:none;
margin:0;
padding:0;
float:left;
color:#8c8989;
font-size:12px;
text-shadow:1px 2px 1px #000;
}
.copyright li{
float:left;
padding:0 9px 0 10px;
background:url(images/divider-02.gif) no-repeat 0 50%;
}
.copyright li:first-child{
padding-left:0;
background:none;
}
.copyright a{color:#bfbfbf;}
#footer .social-networks{width:40%;}
.social-networks{
list-style:none;
margin:0;
padding:0;
float:right;
}
.social-networks li{
float:right;
margin:0 0 0 20px;
position:relative;
height:26px;
}
.social-networks a{
text-indent:-9999px;
overflow:hidden;
float:left;
background-repeat:no-repeat;
background-position:top left !important;
}
.social-networks li.custom a{
background:none;
text-indent:0;
}
.social_links_shortcode .social-networks{float:none !important;}
#sidebar .social-networks{float:none !important;}
#sidebar .social-networks li,.social_links_shortcode li{float:left !important; margin-left:0 !important; margin-right:0px !important; width:35px !important;}
#sidebar .social-networks a{border-bottom:0 !important; padding:0 !important;}
#sidebar .social-networks li{margin-bottom:10px !important;}
.social-networks .facebook a{background-image:url(images/facebook.png) !important; width:9px; height:17px;}
.social-networks .twitter a{background-image:url(images/twitter.png) !important; width:13px; height:16px;}
.social-networks .linkedin a{background-image:url(images/linkedin.png) !important; width:14px; height:13px;}
.social-networks .rss a{background-image:url(images/rss.png) !important; width:13px; height:13px;}
.social-networks .dribbble a{background-image:url(images/dribbble.png) !important; width:16px; height:16px;}
.social-networks .youtube a{background-image:url(images/youtube.png) !important; width:23px; height:25px;}
.social-networks .tf-pinterest a{background-image:url(images/pinterest.png) !important; width:16px !important; height:20px !important;}
.social-networks .vimeo a{background-image:url(images/vimeo.png) !important; width:18px; height:16px;}
.social-networks .flickr a{background-image:url(images/flickr.png) !important; width:25px; height:17px;}
.social-networks .tumblr a{background-image:url(images/tumblr.png) !important; width:15px; height:16px;}
.social-networks .google a{background-image:url(images/google.png) !important; width:21px; height:18px;}
.social-networks .digg a{background-image:url(images/digg.png) !important; width:21px; height:19px;}
.social-networks .blogger a{background-image:url(images/blogger.png) !important; width:16px; height:15px;}
.social-networks .skype a{background-image:url(images/skype.png) !important; width:19px; height: 19px;}
.social-networks .myspace a{background-image:url(images/myspace.png) !important; width:18px; height:18px;}
.social-networks .deviantart a{background-image:url(images/deviantart.png) !important; width:23px; height:18px;}
.social-networks .yahoo a{background-image:url(images/yahoo.png) !important; width:22px; height:14px;}
.social-networks .reddit a{background-image:url(images/reddit.png) !important; width:19px; height:15px;}
.social-networks .forrst a{background-image:url(images/forrst.png) !important; width:15px; height:19px;}
.social-networks .email a{background-image:url(images/mail.png) !important; width:20px; height:14px; margin-top:2px;}
.social-networks-light .facebook a{background-image:url(images/white/facebook.png) !important;}
.social-networks-light .twitter a{background-image:url(images/white/twitter.png) !important;}
.social-networks-light .linkedin a{background-image:url(images/white/linkedin.png) !important;}
.social-networks-light .rss a{background-image:url(images/white/rss.png) !important;}
.social-networks-light .dribbble a{background-image:url(images/white/dribbble.png) !important;}
.social-networks-light .youtube a{background-image:url(images/white/youtube.png) !important;}
.social-networks-light .tf-pinterest a{background-image:url(images/white/pinterest.png) !important;}
.social-networks-light .vimeo a{background-image:url(images/white/vimeo.png) !important;}
.social-networks-light .flickr a{background-image:url(images/white/flickr.png) !important;}
.social-networks-light .tumblr a{background-image:url(images/white/tumblr.png) !important;}
.social-networks-light .google a{background-image:url(images/white/google.png) !important;}
.social-networks-light .digg a{background-image:url(images/white/digg.png) !important;}
.social-networks-light .blogger a{background-image:url(images/white/blogger.png) !important;}
.social-networks-light .skype a{background-image:url(images/white/skype.png) !important;}
.social-networks-light .myspace a{background-image:url(images/white/myspace.png) !important;}
.social-networks-light .deviantart a{background-image:url(images/white/deviantart.png) !important;}
.social-networks-light .yahoo a{background-image:url(images/white/yahoo.png) !important;}
.social-networks-light .reddit a{background-image:url(images/white/reddit.png) !important;}
.social-networks-light .forrst a{background-image:url(images/white/forrst.png) !important;}
.social-networks-light .email a{background-image:url(images/white/mail.png) !important;}
.popup{
display:none;
position:absolute;
padding:0 0 6px;
color:#d1d1d2;
font-size:11px;
line-height:15px;
bottom:110%;
left:-17px;
background:url(images/bg-popup.png) no-repeat 0 100%;
}
.popup p{margin:0 !important;}
.popup .holder{
padding:4px 11px;
background:#46494a;
}
.popup span{display:inline-block;}
.mobile-button{
display:none !important;
margin:20px 0 0;
}
.page-title-container{
height:87px;
background-position:center center;
background-repeat:no-repeat;
background-color:#f6f6f6;
border-top:1px solid #d2d3d4;
border-bottom:1px solid #d2d3d4;
display: table;
width:100%;
}
.page-title{
display: table-cell;
vertical-align: middle;
width:940px;
margin:0 auto;
overflow:hidden;
}
.page-title-wrapper{
width: 100%;
margin: 0 auto;
max-width: 960px;
padding: 0 10px;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
}
.page-title-captions {
float:left;
width:45%;
}
.page-title h1{
font-weight:normal;
font:18px 'MuseoSlab500Regular', arial, helvetica, sans-serif;
line-height:26px;
color:#343333;
margin:0;
padding:0;
}
.page-title h3{
font-weight:normal;
font:14px 'MuseoSlab500Regular', arial, helvetica, sans-serif;
line-height:26px;
color:#343333;
margin:0;
padding:0;
}
.page-title ul{
float:right;
list-style:none;
margin:0;
padding:0;
width:45%;
text-align:right;
}
.page-title ul li{
margin:0;
padding:0;
display:inline;
color:#333333;
font-size:10px;
margin-left:5px;
}
.page-title ul li a{
color:#333333;
padding-right:5px;
}
.page-title ul li:after{
content:'/';
}
.page-title ul li:last-child:after{
content:'';
}
.page-title-container .search{
width:219px;
float:right;
}
#content{
width:71.1702128%;
float:left;
}
#content.full-width{
width:100% !important;
}
#posts-container {
position: relative !important;
}
.image{
position:relative;
overflow:hidden;
z-index:1;
}
/*.image > img{
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.image:hover > img{
-webkit-transform: translateX(300px);
-moz-transform: translateX(300px);
-o-transform: translateX(300px);
-ms-transform: translateX(300px);
transform: translateX(300px);
}*/
.image .image-extras{
width:101%;
height:100%;
background-image: linear-gradient(top, #D1E990 0%, #AAD75B 100%);
background-image: -o-linear-gradient(top, #D1E990 0%, #AAD75B 100%);
background-image: -moz-linear-gradient(top, #D1E990 0%, #AAD75B 100%);
background-image: -webkit-linear-gradient(top, #D1E990 0%, #AAD75B 100%);
background-image: -ms-linear-gradient(top, #D1E990 0%, #AAD75B 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #D1E990),
color-stop(1, #AAD75B)
);
position:absolute; top:0; left:0;
text-align:center;
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-o-transform: translateX(-100%);
-ms-transform: translateX(-100%);
transform: translateX(-100%);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
-webkit-transform-style: preserve-3d;
-webkit-backface-visibility: hidden;
}
.image:hover .image-extras{
-webkit-transform: translateX(0%);
-moz-transform: translateX(0%);
-o-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
-webkit-transform-style: preserve-3d;
-webkit-backface-visibility: hidden;
}
.no-csstransforms .image .image-extras{
display:none;
}
.no-csstransforms .image:hover .image-extras{
display:block;
}
.image .image-extras:before{
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
.image a{
display:block;
}
.image .image-extras .image-extras-content{
display: inline-block;
vertical-align: middle;
width:90%;
height:auto;
}
.image .image-extras .image-extras-content h3,.image .image-extras .image-extras-content h2,.image .image-extras .image-extras-content a{
font:13px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#333333 !important;
text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
margin:0 !important;
margin-top:10px !important;
}
.image .image-extras .image-extras-content h4,.image .image-extras .image-extras-content .cats,.image .image-extras .image-extras-content .cats a,.image .image-extras .image-extras-content .price{
font:11px 'PTSansRegular', arial, helvetica, sans-serif !important;
color:#333333 !important;
text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
margin:0;
margin-top:5px !important;
}
.image .image-extras .image-extras-content h4 a{
display:inline;
color:#333333 !important;
font:11px 'PTSansRegular', arial, helvetica, sans-serif !important;
}
.image .image-extras .image-extras-content h4 a:hover{
color:#444 !important;
}
.image .image-extras .image-extras-content img{
width:auto !important;
display:inline !important;
}
.image .image-extras .image-extras-content .icon{
display:inline;
}
.image .image-extras .image-extras-content .icon,
.image .image-extras .image-extras-content .icon img{width:35px; height:36px; display:inline-block; vertical-align:top; text-indent:-10000px;}
.image-extras .link-icon{background:url(images/link-ico.png);}
.image-extras .gallery-icon{background:url(images/finder-ico.png);}
.image-extras .cats{display:block;}
.image-extras .cats a{display:inline;line-height:normal !important;}
body .post-content .image-extras .link-icon{margin-right:3px !important;}
.post-content .image-extras h3,.post-content .image-extras h4{line-height:normal !important;}
.post-content .image-extras h4{font-size:11px !important;margin-top:3px !important;}
.post{
margin-bottom:65px;
}
.post .image{
margin-bottom:40px;
}
#main .post h2{
font:18px 'MuseoSlab500Regular', arial, helvetica, sans-serif;
color:#333333;
margin:0 0 25px 0;
padding:0;
}
#main .post h2 a{
color:#333333;
}
.post .post-content{
color:#747474;
}
.post .meta-info{
line-height:34px;
border-top:1px solid #e7e6e6;
border-bottom:1px solid #e7e6e6;
margin-top:36px;
font-size:12px;
clear:both;
overflow:hidden;
min-height:34px;
}
.single-post .post .meta-info, .avada_faq .meta-info{
margin-bottom:55px;
}
.post .meta-info .sep{
padding:0px 5px;
}
.post .meta-info .alignleft{
width:80%;
}
.search input,#searchform input{
border:1px solid #e7e6e6;
padding:5px 0px;
font-size:13px;
color:#333333;
text-indent:10px;
display:block;
}
#sidebar{
width:23.4042553%;
float:right;
}
#sidebar .widget{
margin-bottom:45px;
position:relative;
}
#sidebar .widget.flickr{
overflow:hidden;
}
#sidebar .widget h3{
margin:0;
padding:0;
font:13px 'MuseoSlab500Regular', arial, helvetica, sans-serif;
margin-bottom:18px;
color:#333333;
}
#sidebar .widget ul{
list-style:none;
margin:0;
padding:0;
}
#sidebar .widget li{
margin:0;
padding:0;
}
#sidebar .widget li a, #sidebar .widget .recentcomments, #sidebar .widget_categories li{
display:block;
border-bottom:1px solid #e7e6e6;
color:#838383;
padding:10px;padding-left:0;
}
#sidebar .widget .recentcomments a{
background:none !important;
border:none !important;
}
#sidebar .contact_info .address{
margin:0;
margin-bottom:15px;
}
#sidebar .contact_info p, .footer-area .contact_info p, #slidingbar .contact_info p{
margin:0;
}
#sidebar .social_links .social li,.footer-area .social_links .social li,#slidingbar-area .social_links .social li{
display:inline-block;
margin-bottom:20px;
width:15%;
position:relative;
}
#sidebar .social_links .social li a,.footer-area .social_links .social li a,#slidingar-area .social_links .social li a{
background:none;
display:inline-block;
border-bottom: none;
line-height:normal;
text-indent:-10000px;
height:18px;
padding:0 !important;
background-image:url(images/social_links.png);
}
#sidebar .social_links .social li a.rss,.footer-area .social_links .social li a.rss,#slidingbar-area .social_links .social li a.rss{
background-position:-168px -1px;
width:13px;
}
#sidebar .social_links .social li a.facebook,.footer-area .social_links .social li a.facebook,#slidingbar-area .social_links .social li a.facebook{
background-position:-3px 0px;
width:9px;
}
#sidebar .social_links .social li a.twitter,.footer-area .social_links .social li a.twitter,#slidingbar-area .social_links .social li a.twitter{
background-position:-45px 0px;
width:13px;
}
#sidebar .social_links .social li a.dribble,.footer-area .social_links .social li a.dribble,#slidingbar-area .social_links .social li a.dribble{
background-position:-88px -39px;
width:16px;
}
#sidebar .social_links .social li a.google,.footer-area .social_links .social li a.google,#slidingbar-area .social_links .social li a.google{
background-position:-45px -39px;
width:21px;
}
#sidebar .social_links .social li a.linkedin,.footer-area .social_links .social li a.linkedin,#slidingbar-area .social_links .social li a.linkedin{
background-position:-90px -1px;
width:14px;
}
#sidebar .social_links .social li a.blogger,.footer-area .social_links .social li a.blogger,#slidingbar-area .social_links .social li a.blogger{
background-position:-204px -1px;
width:16px;
}
#sidebar .social_links .social li a.tumblr,.footer-area .social_links .social li a.tumblr,#slidingbar-area .social_links .social li a.tumblr{
background-position:-129px 0px;
width:15px;
}
#sidebar .social_links .social li a.reddit,.footer-area .social_links .social li a.reddit,#slidingbar-area .social_links .social li a.reddit{
background-position:0px -39px;
width:19px;
}
#sidebar .social_links .social li a.yahoo,.footer-area .social_links .social li a.yahoo,#slidingbar-area .social_links .social li a.yahoo{
background-position:-125px -40px;
width:22px;
}
#sidebar .social_links .social li a.deviantart,.footer-area .social_links .social li a.deviantart,#slidingbar-area .social_links .social li a.deviantart{
background-position:-165px -40px;
width:23px;
}
#sidebar .social_links .social li a.vimeo,.footer-area .social_links .social li a.vimeo,#slidingbar-area .social_links .social li a.vimeo{
background-position:-202px -38px;
width:19px;
}
#sidebar .social_links .social li a.custom,.footer-area .social_links .social li a.custom,#slidingbar-area .social_links .social li a.custom{
background:none !important;
text-indent:0 !important;
width:auto !important;
}
.footer-area .social_links .social li,#slidingbar-area .social_links .social li{
background:none !important;
padding:0 !important;
}
.footer-area .social_links .social-networks li a,#slidingbar-area .social_links .social-networks li a{
border: none;
}
#sidebar .flickr-photo a{
background:none !important;
float:left;
border:0 !important;
}
#sidebar .widget_categories li a{
display:block;
border:0;
background:none;
padding:0;
}
#sidebar #s,.footer-area #s,#slidingbar-area #s{width:100%;}
.tab-holder{
border:1px solid #eaeaea;
}
.tab-holder .tabs{
height:39px;
list-style:none;
margin:0;
padding:0;
overflow:hidden;
}
.tab-holder .tabs li{
margin:0;
padding:0;
border-right:1px solid #d9d9d9;
height:39px;
float:left;
}
.tab-holder .tabs li a{
border:0 !important;
height:39px !important;
line-height:39px !important;
font:13px/39px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
text-indent:0 !important;
color:#333333 !important;
padding:0 15px !important;
border-bottom:1px solid #dcdcdc !important;
}
.tab-holder .tabs li:last-child{
border-right:0 !important;
}
.tab-holder .tabs li:last-child a{
width:100% !important;
}
.tab-holder .tabs li.active a{
background:none !important;
border-top:3px solid #84c650 !important;
height:36px !important;
line-height:36px !important;
border-bottom:0 !important;
}
.tab-holder .tabs li img{
margin-top:9px;
}
.tab-holder .news-list{
list-style:none;
margin:0;
padding:0;
}
.tab-holder .news-list li{
border-bottom:1px solid #e2e2e2;
padding:20px 15px !important;
overflow:hidden;
}
.tab-holder .news-list li a{
background:none !important;
padding:0 !important;
}
.tab-holder .news-list li:last-child{
border-bottom:0;
}
.tab-holder .news-list .post-holder a, #slidingbar-area .tab-holder .news-list .post-holder a{
margin:0;
padding:0;
overflow:hidden;
background:none !important;
border:0 !important;
text-indent:0 !important;
height:auto !important;
line-height:normal !important;
}
.tab-holder .news-list li .image{
float:left;
margin-right:13px;
}
.tab-holder .news-list li .post-holder{
}
.tab-holder .news-list li .post-holder a{
color:#444444;
font-size:13px !important;
line-height:17px !important;
}
.tab-holder .news-list li .post-holder p {
margin:0;
margin-bottom:5px;
}
.tab-holder .news-list li .post-holder .meta{
margin:0;
margin-top:2px;
font-size:12px !important;
color:#747474 !important;
}
.tab-holder .news-list li .post-holder .meta em{
font-style:normal !important;
font-size:12px !important;
color:#747474 !important;
}
.tab-holder .news-list li .post-holder .comment-text-side{
line-height:16px !important;
}
.pyre_tabs .tab-holder .tabs li a{
padding:0 3px !important;
text-align:center;
background: #F1F2F2 !important;
display: block;
}
.footer-area .pyre_tabs .tab-holder .tabs li, #slidingbar-area .pyre_tabs .tab-holder .tabs li {
border:none;
}
.footer-area .pyre_tabs .tab-holder .tabs li.active a, #slidingbar-area .pyre_tabs .tab-holder .tabs li.active a,
.footer-area .pyre_tabs .tab-holder .tabs li a:hover, #slidingbar-area .pyre_tabs .tab-holder .tabs li a:hover{
background: none !important;
}
.footer-area .pyre_tabs .tab-holder .tabs li a, #slidingbar-area .pyre_tabs .tab-holder .tabs li a {
background: rgba(0,0,0,0.2) !important;
}
.footer-area .pyre_tabs .tab-holder, #slidingbar-area .pyre_tabs .tab-holder {
border: none !important;
}
.footer-area .pyre_tabs .tab-holder .tabs-wrapper, #slidingbar-area .pyre_tabs .tab-holder .tabs-wrapper {
border:1px solid #3E3E3E;
border-top:none;
}
.pyre_tabs .image{
width:52px;
height:50px;
}
.pyre_tabs .image a{
text-indent:0 !important;
height:auto !important;
line-height:normal !important;
width:auto !important;
}
.pyre_tabs .image .image-extras-content img{
width:20px;
height:20px;
}
#jtwt li{
background:none !important;
}
#jtwt .jtwt_tweet{
margin-bottom:30px;
color:#838383;
font-size:13px;
line-height:20px;
background:url(images/twitter-icon.png) no-repeat top left !important;
padding-left:45px !important;
padding-top:0px !important;
}
#jtwt .jtwt_tweet a{
background:none !important;
color:#BFBFBF;
display:inline !important;
padding:0 !important;
border:0 !important;
}
#jtwt .jtwt_tweet a:hover{
color:#A0CE4E;
}
#jtwt .jtwt_tweet .jtwt_tweet_text{margin-bottom:0 !important;}
.recent-works-items{
overflow:hidden;
}
.recent-works-items a{
float:left;
padding:3px;
}
.footer-area .columns-4 .recent-works-items a,#slidingbar-area .columns-4 .recent-works-items a{
max-width: 60px;
}
.pagination.infinite-scroll { display: none; }
.pagination,.woocommerce-pagination{
float:right;
margin-top:40px;
font-size:9px;
}
.pagination a.inactive,.woocommerce-pagination .page-numbers{
border:1px solid #747474;
display:inline-block;
height:15px;
line-height:15px;
color:#747474;
padding:0 5px;
margin-left:5px;
}
.pagination a.inactive:hover,.woocommerce-pagination .page-numbers:hover{
border:1px solid #a0ce4e;
}
.pagination .current,.woocommerce-pagination .current{
border:1px solid #a0ce4e;
display:inline-block;
height:15px;
line-height:15px;
color:#fff;
padding:0 5px;
margin-left:5px;
background:#a0ce4e;
}
.pagination .pagination-prev,.woocommerce-pagination .prev{
margin-right:8px;
font-size:12px;
}
.pagination .pagination-next,.woocommerce-pagination .next{
margin-left:8px;
font-size:12px;
}
.img-list{
overflow:hidden;
}
.img-list li{
padding:5px !important;
background:none !important;
float:left;
}
.img-list a{
background:none !important;
height:auto !important;
width:auto !important;
text-indent:0 !important;
border:0px !important;
}
.blog-medium-image{
float:left;
margin:0 !important;
margin-right:25px !important;
width:320px;
}
.share-box{
background:#f5f5f5;
height:71px;
margin-bottom:55px;
}
.share-box h4{
color:#343333 !important;
margin:0;
padding:0 20px 0 25px;
font:13px/20px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
float:left;
margin-top:26px;
}
.share-box ul{
float:right;
list-style:none;
margin:0;
padding:0;
margin-top:28px;
}
.share-box li{
float:left;
list-style:none;
margin:0;
padding:0;
margin-right:29px;
position:relative;
}
.share-box li a{
float:left;
height:19px;
}
.share-box li.facebook a{
width:9px;
background-position:0 0;
}
.share-box li.twitter a{
width:13px;
background-position:-38px 0;
}
.share-box li.linkedin a{
width:14px;
background-position:-80px 0;
}
.share-box li.reddit a{
width:19px;
background-position:-205px 0;
}
.share-box li.tumblr a{
width:15px;
background-position:-122px 0;
}
.share-box li.google a{
width:21px;
background-position:-250px 0;
}
.share-box li.email a{
width:20px;
background-position:-293px 0;
}
.about-author{
margin-bottom:55px;
overflow:hidden;
}
.about-author .title a{
color:#a0ce4e !important;
}
.about-author div.avatar{
float:left;
margin-right:20px;
margin-bottom:5px;
}
.clientslider-container,
.images-carousel-container {
height:118px;
overflow:hidden;
}
.recent-works-carousel {
height:138px;
overflow:hidden;
}
.related-posts{
margin-bottom:55px;
}
.related-posts .image{
width:180px;
height:138px;
margin-bottom:0;
}
.single-related-posts .es-carousel ul{margin-left:7px !important;}
.related-posts .image-extras-content{
}
.es-carousel-wrapper{
background:none;
padding:0px 0px;
position:relative;
overflow: hidden:
}
.es-carousel{
overflow:hidden;
}
.related-projects .es-carousel{
padding-left:44px;
}
.clients-carousel{
padding:0;
}
.clients-carousel .es-carousel{
padding-left:13px;
}
.clients-carousel .es-carousel li{
height:118px;
text-align:center;
line-height:118px;
width:159px;
margin-right:13px;
}
.clients-carousel .es-carousel li img{
vertical-align:middle;
max-height:115px;
border:1px solid #eeeded;
}
.es-carousel ul{
list-style:none;
margin:0;
padding:0;
}
.es-carousel ul li{
height:100%;
float:left;
display:block;
margin:0;
padding:0;
margin-right:44px;
}
.es-carousel ul li a{
display:block;
}
.es-carousel ul li a img{
border:none;
}
.es-nav-prev, .es-nav-next {
background-color: rgba(0, 0, 0, 0.5);
background-repeat: no-repeat;
width: 29px;
height: 29px;
position: absolute;
top: 50%;
margin-top:-14px;
//text-indent:-10000px;
color: transparent;
cursor: pointer;
opacity:0.8;
z-index:1000;
}
.no-rgba .es-nav-prev, .no-rgba .es-nav-next{
background-color:#3e3e3e;
}
.es-nav-prev, .es-nav-next {
display: block;
}
.es-nav-prev:hover, .es-nav-next:hover{
opacity:1;
}
.es-nav-prev {
background-image: url(images/arrow-bullet.png);
background-position: center center;
-webkit-transform:rotate(180deg);
-moz-transform:rotate(180deg);
-o-transform:rotate(180deg);
transform:rotate(180deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-ms-filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
left: 0;
}
.no-csstransforms .es-nav-prev{
background-image: url(images/arrow-bullet-left.png);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
}
.es-nav-next {
background-image: url(images/arrow-bullet.png);
background-position: center center;
right: 0;
}
.commentlist{
list-style:none;
margin:0;
padding:0;
margin-bottom:65px;
}
.commentlist .children {
list-style: none outside none;
}
.commentlist li{
margin:0;
padding:0;
}
.commentlist .the-comment{
border-bottom:1px solid #e7e6e6;
padding-bottom:25px;
margin-bottom:25px;
}
.commentlist .the-comment .comment-text {
margin-left: 69px;
}
.commentlist .the-comment .comment-text *:last-child{
margin-bottom:0;
}
.commentlist div.avatar{
float:left;
margin-right:15px;
}
.commentlist .comment-text p{
margin:0;
}
.commentlist .comment-author strong{
padding-right:5px;
}
#respond { margin-bottom: 40px; }
#comment-input{
overflow:hidden;
margin-bottom:13px;
}
.comment-form input,#comment-input input,.wpcf7-form .wpcf7-text,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-captchar,.wpcf7-form .wpcf7-date{
border:1px solid #d2d2d2;
width:28%;
font-size:13px;
color:#747474;
-webkit-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
-moz-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
padding:8px 2%;
float:left;
margin-right:1%;
}
.comment-form input {
float: none;
}
#sidebar #comment-input input,#sidebar .wpcf7-form .wpcf7-text,#sidebar .wpcf7-form .wpcf7-quiz,#sidebar .wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-captchar,.wpcf7-form .wpcf7-date{
width: 100%;
margin-right: 0;
}
.wpcf7-form .wpcf7-text,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-number,.wpcf7-form textarea, .wpcf7-form .wpcf7-captchar,.wpcf7-form .wpcf7-date{
width: 100%;
margin-right:0;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
}
.gform_wrapper{margin-bottom:50px !important;}
.gform_wrapper .gfield input[type=text],
.gform_wrapper .gfield input[type=email]{
border:1px solid #d2d2d2;
font-size:13px;
color:#747474;
-webkit-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
-moz-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
padding:5px 8px;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
}
.wpcf7-form input{float:none !important;}
#comment-textarea textarea,.comment-form-comment textarea,.wpcf7-form textarea{
border:1px solid #d2d2d2;
width:96%;
height:150px;
font-size:13px;
color:#747474;
-webkit-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
-moz-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
padding:8px 11px;
}
.gform_wrapper .gfield textarea{
border:1px solid #d2d2d2;
font-size:13px;
color:#747474;
-webkit-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
-moz-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
padding:8px;
}
.wpcf7-form textarea {
width: 100%;
margin-right:0;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
}
.gform_wrapper .gfield_select[multiple=multiple]{
border:1px solid #d2d2d2;
}
.gform_wrapper select {
padding: 5px 1px !important;
width: 99.8% !important;
}
.gform_wrapper label{font-weight:normal !important;}
.gform_wrapper .gfield_time_hour label{display:inline !important;}
.gform_wrapper .gform_footer{padding:0 !important;}
.gform_wrapper span.ginput_total {font-size: 18px !important;}
.ui-datepicker-div,.ui-datepicker-inline, #ui-datepicker-div {border-color: #E9EAEE !important;}
table.ui-datepicker td a,.ui-datepicker-header select {background-color: #E9EAEE !important;}
ui-datepicker-header select {border: 1px solid #D2D2D2;}
#comment-input input:last-child{
margin-right:0;
}
#comment-recaptcha{
margin-top:13px;
}
.input-text{
border:1px solid #d2d2d2;
font-size:13px;
color:#747474;
padding:8px 2%;
margin-right:1%;
width:100%;
-webkit-box-sizing:border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing:border-box; /* Firefox, other Gecko */
box-sizing:border-box; /* Opera/IE 8+ */
}
.input-radio,#shipping_method input[type=radio]{
background:none;
-webkit-appearance: checkbox;
-moz-appearance: checkbox;
-ms-appearance: checkbox; /* not currently supported */
-o-appearance: checkbox; /* not currently supported */
}
.portfolio-tabs,.faq-tabs{
height:auto;
border-top:1px solid #e7e6e6;
border-bottom:1px solid #e7e6e6;
list-style:none;
margin:0;
padding:0;
overflow:hidden;
margin-bottom:58px;
line-height:34px;
}
.portfolio-tabs li,.faq-tabs li{
float:left;
margin-right:30px;
}
.portfolio-tabs li a,.faq-tabs li a{
display:block;
}
.portfolio-tabs li.active,.faq-tabs li.active{
line-height:31px !important;
}
.portfolio-tabs li.active a,.faq-tabs li.active a{
color:#a0ce4e;
border-top:3px solid #a0ce4e;
}
.faq-item{
position:relative;
}
.portfolio-one .portfolio-item{
padding-bottom:50px;
overflow:hidden;
width:100%;
}
.portfolio-one .portfolio-item .image{
width:540px;
height:272px;
float:left;
margin-right:25px;
margin-bottom: 15px;
}
.portfolio-item .portfolio-content h2{
margin:0 !important;
padding:0 !important;
margin-bottom:10px !important;
}
.portfolio-item .portfolio-content h4{
margin:0 !important;
padding:0 !important;
margin-bottom:25px !important;
font-weight:normal;
font-size:13px;
}
.portfolio-item .portfolio-content p{
margin:0;
margin-bottom:20px;
}
.portfolio-two .portfolio-item{
width:460px;
height:295px;
margin:5px;
float:left;
}
.portfolio-three .portfolio-item{
width:300px;
height:214px;
margin:6px;
float:left;
}
.portfolio-four .portfolio-item{
width:220px;
height:161px;
margin:7px;
float:left;
}
.portfolio-four .image-extras-content{
}
.portfolio-full .flexslider{
margin-bottom:70px !important;
}
.portfolio-full .project-content{
margin-bottom:50px;
}
.portfolio-one .fluid-width-video-wrapper{
position:static !important;
}
.portfolio-wrapper{display:none;}
.portfolio-tabs{display:none;}
.faq-tabs{display:none;}
.loading-msg, #infscr-loading em {margin-left: 7px;}
.portfolio-masonry .portfolio-item{
float:left;
margin-bottom:9px;
width:32.4%;
overflow:hidden;
}
.portfolio-grid-2 .portfolio-item{
margin-bottom:9px;
width:49%;
}
#infscr-loading{position:absolute;bottom:0;}
.portfolio #infscr-loading {bottom: -30px;}
.single-navigation{
height:34px;
line-height:34px;
border-top:1px solid #e7e6e6;
border-bottom:1px solid #e7e6e6;
margin-bottom:60px;
text-align:right;
}
.single-navigation a[rel=prev]{
}
.single-navigation a[rel=next]{
margin-left:15px;
}
.single-navigation a[rel=prev]:before,.pagination-prev:before,.woocommerce-pagination .prev:before{
font-family: FontAwesome;
content:'\f053';
color:#333333;
padding-right:5px;
font-size:8px;
}
.single-navigation a[rel=next]:after,.pagination-next:after,.woocommerce-pagination .next:after{
font-family: FontAwesome;
content:'\f054';
color:#333333;
padding-left:5px;
font-size:8px;
}
.project-content h3{
font:13px/17px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#333333;
margin:0 !important;
margin-bottom:40px !important;
}
.project-content{
overflow:hidden;
}
.project-content .project-description{
float:left;
width:74.4681%;
}
.project-content .project-description p{
margin-top:0;
}
.project-content .project-info{
float:right;
width:23.4043%;
}
.project-content .project-info .project-info-box{
border-bottom:1px solid #e7e6e6;
padding-bottom:15px;
margin-bottom:15px;
overflow:hidden;
}
.project-content .project-info .project-info-box a{
color:#747474 !important;
}
.project-content .project-info .project-info-box a:hover{
color:#a0ce4e !important;
}
.project-content .project-info h4{
font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif;
color:#333333;
margin:0 !important;
float:left;
width:110px;
}
.with-sidebar .project-content .project-info .project-info-box h4{display:block;width:100%;margin-bottom:5px !important;}
.portfolio-full.with-sidebar .project-info{float:left;}
.portfolio-full.with-sidebar .project-description{float:right;width:72.5%;}
.project-content .project-info .project-terms{
float:left;
}
.portfolio-half .flexslider{
width:65.9574%;
float:left;
}
.portfolio-half .project-content{
width:31.9149%;
float:right;
}
.portfolio-half .project-description{
width:100%;
margin-bottom:50px;
}
.portfolio-half .project-description .flexslider {
width: auto;
}
.portfolio-half .project-info{
width:100%;
}
.portfolio-half .share-box {
margin-bottom: 50px;
}
.portfolio-sep {
clear:both;
}
.portfolio-half .portfolio-sep {
margin-bottom:50px;
}
.side-nav{
list-style:none;
margin:0;
padding:0;
border-top:1px solid #ededed;
border-right:1px solid #ededed;
margin-bottom:20px;
}
.side-nav ul{
list-style:none;
margin:0;
padding:0;
}
.side-nav li{
margin:0;
padding:0;
}
.side-nav li a{
border-bottom:1px solid #ededed !important;
display:block;
background:url(images/side_nav_bg.png) no-repeat top right;
height:auto;
font-weight:normal !important;
font:14px/39px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#333333 !important;
}
.side-nav li a {
line-height: 1.69em!important;
padding: 8px 0!important;
background-repeat: repeat-y!important;
}
.side-nav li a:hover{
background:none !important;
}
.side-nav li.current_page_item > a{
background:none !important;
color:#a0ce4e !important;
border-right:3px solid #a0ce4e;
}
.side-nav li.current_page_item li a{
color:#333333 !important;
border-bottom:1px solid #ededed;
}
.side-nav ul.children{
margin-left:15px;
display:none;
}
.side-nav .arrow,.woocommerce-tabs .tabs a:hover .arrow,.woocommerce-tabs .tabs li.active a .arrow{
display:inline-block;
margin-left:10px;
padding-right:0 !important;
}
h5.toggle{
overflow:hidden;
margin:0;
}
h5.toggle a{
font:13px/20px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
cursor:pointer;
color:#333333 !important;
border-bottom:1px solid #e8e6e6;
overflow:hidden;
margin:0;
padding:10px 0px;
float:left;
width:100%;
}
h5.toggle.active a{
border-bottom:0;
}
h5.toggle span.arrow{
background:#333333 url(images/toggle_plus.png) no-repeat center center;
display:block;
width:22px;
height:22px;
float:left;
margin-right:18px;
}
h5.toggle.active span.arrow{
background-color:#a0ce4e;
background-image:url(images/toggle_minus.png);
}
h5.toggle span.toggle-title{
float:left;
width:90%;
}
.toggle-content{
padding-top:10px;
padding-bottom:15px;
position:relative;
}
h5.toggle.active + .toggle-content{
border-bottom:1px solid #E8E6E6;
}
.full-boxed-pricing{
background:#f7f5f5;
padding:9px;
overflow:hidden;
float:left;
margin-bottom:20px;
}
.full-boxed-pricing .column{
border:1px solid #e5e4e3;border-right:0;border-bottom:0;
float:left;
}
.full-boxed-pricing .column:last-child{
border-right:1px solid #e5e4e3;
}
.full-boxed-pricing ul{
list-style:none;
margin:0;
padding:0;
width:183px;
}
.full-boxed-pricing ul li{
margin:0;
padding:0;
background:#ffffff;
text-align:center;
padding:15px 0px;
border-bottom:1px solid #ededed;
}
.full-boxed-pricing ul li.title-row{
font:18px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#333333;
}
.full-boxed-pricing ul li.pricing-row{
background:#f8f8f8;
font:25px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#a0ce4e;
}
.full-boxed-pricing ul li.pricing-row span{
font-size:11px !important;
color:#888888 !important;
}
.full-boxed-pricing ul li.footer-row{
background:#f7f7f6;
}
.sep-boxed-pricing{
overflow:hidden;
margin-bottom:20px;
}
.sep-boxed-pricing .column{
background:#f7f5f5;
padding:9px;
overflow:hidden;
float:left;
}
.sep-boxed-pricing ul{
list-style:none;
margin:0;
padding:0;
}
.sep-boxed-pricing ul li{
width:283px;
background:#fff;
border:1px solid #dddcdc;border-bottom:0;
margin:0;padding:0;
padding:15px 0px;
text-align:center;
}
.sep-boxed-pricing ul li:last-child{
border-bottom:1px solid #dddcdc;
}
.sep-boxed-pricing ul li.title-row{
background:#92c563;
border-color:#92c563;
font:18px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#333333;
}
.sep-boxed-pricing ul li.pricing-row{
background:#f8f8f8;
font:25px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#a0ce4e;
}
.sep-boxed-pricing ul li.pricing-row span{
font-size:11px !important;
color:#888888 !important;
}
.sep-boxed-pricing ul li.footer-row{
background:#f7f7f6;
}
.full-boxed-pricing .price strong{
position:relative;
top:-15px;
font-size:21px;
color:#505050;
}
.full-boxed-pricing .price em.exact_price{
display:inline !important;
font-size:55px !important;
font-weight:bold !important;
font-style:normal !important;
}
.full-boxed-pricing .price sup{
position:relative;
top:-16px;
font-size:17px;
font-weight:bold;
}
.full-boxed-pricing .price em.time{
color:#888 !important;
font-size:11px !important;
margin-left:0px !important;
position:relative;
top:-5px;
}
.full-boxed-pricing.columns-1{width:100%;}
.full-boxed-pricing.columns-1 .column,.full-boxed-pricing.columns-1 .column ul{width:100%;}
.full-boxed-pricing.columns-2{width:100%;}
.full-boxed-pricing.columns-2 .column{width:49.75%;}
.full-boxed-pricing.columns-2 .column ul{width:100%;}
.full-boxed-pricing.columns-3{width:100%;}
.full-boxed-pricing.columns-3 .column{width:33.1%;}
.full-boxed-pricing.columns-3 .column ul{width:100%;}
.full-boxed-pricing.columns-4{width:100%;}
.full-boxed-pricing.columns-4 .column{width:24.7%;}
.full-boxed-pricing.columns-4 .column ul{width:100%;}
.full-width .full-boxed-pricing.columns-1 .column,.full-width .full-boxed-pricing.columns-1 .column ul{width:100%;}
.full-width .full-boxed-pricing.columns-2{width:100%;}
.full-width .full-boxed-pricing.columns-2 .column{width:49.8%;}
.full-width .full-boxed-pricing.columns-2 .column ul{width:100%;}
.full-width .full-boxed-pricing.columns-3{width:100%;}
.full-width .full-boxed-pricing.columns-3 .column{width:33.1%;}
.full-width .full-boxed-pricing.columns-3 .column ul{width:100%;}
.full-width .full-boxed-pricing.columns-4{width:100%;}
.full-width .full-boxed-pricing.columns-4 .column{width:24.83%;}
.full-width .full-boxed-pricing.columns-4 .column ul{width:100%;}
.full-boxed-pricing .price-with-decimal em.time{
margin-left:-12px !important;
}
.full-boxed-pricing.columns-1,
.full-boxed-pricing.columns-2,
.full-boxed-pricing.columns-3,
.full-boxed-pricing.columns-4,
.full-boxed-pricing.columns-5,
.full-width .full-boxed-pricing.columns-1,
.full-width .full-boxed-pricing.columns-2,
.full-width .full-boxed-pricing.columns-3,
.full-width .full-boxed-pricing.columns-4,
.full-width .full-boxed-pricing.columns-5{
width: -moz-calc(100% - 18px);
width: -webkit-calc(100% - 18px);
width: -ms-calc(100% - 18px);
width: -o-calc(100% - 18px);
width: calc(100% - 18px);
}
.sep-boxed-pricing .price strong{
position:relative;
top:-30px;
font-size:28px;
color:#505050;
}
.sep-boxed-pricing .price em.exact_price{
display:inline !important;
font-size:75px !important;
font-weight:bold !important;
font-style:normal !important;
}
.sep-boxed-pricing .price sup{
position:relative;
top:-24px;
font-size:23px;
font-weight:bold;
}
.sep-boxed-pricing .price em.time{
color:#888 !important;
font-size:26px !important;
margin-left:0px !important;
position:relative;
top:-2px;
}
.sep-boxed-pricing .price-with-decimal em.time{
margin-left:-18px !important;
}
.sep-boxed-pricing .column{
margin-left:2%;
}
.sep-boxed-pricing .column:first-child{
margin-left:0;
}
.sep-boxed-pricing .column li{
width: -moz-calc(100% - 2px);
width: -webkit-calc(100% - 2px);
width: -ms-calc(100% - 2px);
width: -o-calc(100% - 2px);
width: calc(100% - 2px);
}
.sep-boxed-pricing.columns-1{width:100%;}
.sep-boxed-pricing.columns-1 .column {
width: -moz-calc(100% - 18px);
width: -webkit-calc(100% - 18px);
width: -ms-calc(100% - 18px);
width: -o-calc(100% - 18px);
width: calc(100% - 18px);
}
.sep-boxed-pricing.columns-1 .column ul{width:100%;}
.sep-boxed-pricing.columns-2{width:100%;}
.sep-boxed-pricing.columns-2 .column {
width: -moz-calc(49% - 18px);
width: -webkit-calc(49% - 18px);
width: -ms-calc(49% - 18px);
width: -o-calc(49% - 18px);
width: calc(49% - 18px);
}
.sep-boxed-pricing.columns-2 .column ul{width:100%;}
.sep-boxed-pricing.columns-3{width:100%;}
.sep-boxed-pricing.columns-3 .column {
width: -moz-calc(32% - 18px);
width: -webkit-calc(32% - 18px);
width: -ms-calc(32% - 18px);
width: -o-calc(32% - 18px);
width: calc(32% - 18px);
}
.sep-boxed-pricing.columns-3 .column ul{width:100%;}
.sep-boxed-pricing.columns-4{width:100%;}
.sep-boxed-pricing.columns-4 .column {
width: -moz-calc(23.5% - 18px);
width: -webkit-calc(23.5% - 18px);
width: -ms-calc(23.5% - 18px);
width: -o-calc(23.5% - 18px);
width: calc(23.5% - 18px);
}
.sep-boxed-pricing.columns-4 .column ul{width:100%;}
/* Shortcodes */
.one_half, .one_third, .two_third, .three_fourth, .one_fourth { margin-right: 4%; float: left; margin-bottom:20px; position:relative; }
.one_half { width: 48%; }
.one_third { width: 30.6666%; }
.two_third { width: 65.3332%; }
.one_fourth { width: 22%; }
.three_fourth { width: 74%; }
#main .last { margin-right: 0 !important; }
.clearboth{clear: both; display: block; font-size: 0px; height: 0px; line-height: 0; width: 100%; overflow:hidden; }
.shortcode-tabs .tab-hold .tabs li{
border-right:0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.shortcode-tabs .tab-hold .tabs li a{
display:block !important;
width:100% !important;
padding:0 !important;
text-indent:15px !important;
background-image:url(images/shortcode_sep.png) no-repeat center right;
}
.shortcode-tabs .tab-hold .tabs li:last-child a{
}
.shortcode-tabs .tab-hold .tabs li.active a{
background:none !important;
}
.shortcode-tabs .tab_content{
padding:15px !important;
overflow:hidden;
}
.shortcode-tabs .tab_content *:last-child{
margin-bottom:0;
}
.shortcode-tabs{
margin-bottom:50px;
}
/* Progress Bar */
.progress-bar {
background: #e6e7e8;
height: 37px;
border-bottom:1px solid #f0f1f1;
position: relative;
margin-bottom: 10px;
visibility: hidden;
}
.progress-bar-content {
background:#a0ce4e;
height: 37px;
border-bottom:1px solid #c0dc8f;
}
.progress-bar .progress-title {
font-size: 13px;
color: #ffffff;
font-weight: normal;
position: absolute;
top: 10px;
left: 13px;
}
.progress-bar .percentage {
font-size: 13px;
color: #626363;
font-weight: normal;
position: absolute;
top: 10px;
left: 90%;
}
/* Meet the team */
.person-img{
margin-bottom:25px;
}
.person-author{
}
.person-author-wrapper{
float:left;
font:13px/20px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#333333 !important;
margin-bottom:25px;
}
.person-author-wrapper span{
display:block;
}
.person-author a{
display:inline-block;
height:19px;
}
.person-author .social-icon{
display:block;
float:right;
position:relative;
margin-left:19px;
margin-top:10px;
}
.person-author .social-icon a{
text-indent:-10000px;
}
.person-author .facebook {background-image:url(images/facebook.png) !important; width:9px; height:17px;}
.person-author .twitter {background-image:url(images/twitter.png) !important; width:13px; height:16px;}
.person-author .linkedin {background-image:url(images/linkedin.png) !important; width:14px; height:13px;}
.person-author .rss {background-image:url(images/rss.png) !important; width:13px; height:13px;}
.person-author .dribbble {background-image:url(images/dribbble.png) !important; width:16px; height:16px;}
.person-author .youtube {background-image:url(images/youtube.png) !important; width:23px; height:25px;}
.person-author .tf-pinterest {background-image:url(images/pinterest.png) !important; width:16px; height:20px;}
.person-author .vimeo {background-image:url(images/vimeo.png) !important; width:18px; height:16px;}
.person-author .flickr {background-image:url(images/flickr.png) !important; width:25px; height:17px;}
.person-author .tumblr {background-image:url(images/tumblr.png) !important; width:15px; height:16px;}
.person-author .google {background-image:url(images/google.png) !important; width:21px; height:18px;}
.person-author .digg {background-image:url(images/digg.png) !important; width:21px; height:19px;}
.person-author .blogger {background-image:url(images/blogger.png) !important; width:16px; height:15px;}
.person-author .skype {background-image:url(images/skype.png) !important; width:19px; height: 19px;}
.person-author .myspace {background-image:url(images/myspace.png) !important; width:18px; height:18px;}
.person-author .deviantart {background-image:url(images/deviantart.png) !important; width:23px; height:18px;}
.person-author .yahoo {background-image:url(images/yahoo.png) !important; width:22px; height:14px;}
.person-author .reddit {background-image:url(images/reddit.png) !important; width:19px; height:15px;}
.person-author .forrst {background-image:url(images/forrst.png) !important; width:15px; height:19px;}
.person-author .email {background-image:url(images/mail.png) !important; margin-top:2px;width:20px; height:14px;}
.person-author-light .facebook {background-image:url(images/white/facebook.png) !important;}
.person-author-light .twitter {background-image:url(images/white/twitter.png) !important;}
.person-author-light .linkedin {background-image:url(images/white/linkedin.png) !important;}
.person-author-light .rss {background-image:url(images/white/rss.png) !important;}
.person-author-light .dribbble {background-image:url(images/white/dribbble.png) !important;}
.person-author-light .youtube {background-image:url(images/white/youtube.png) !important;}
.person-author-light .tf-pinterest {background-image:url(images/white/pinterest.png) !important;}
.person-author-light .vimeo {background-image:url(images/white/vimeo.png) !important;}
.person-author-light .flickr {background-image:url(images/white/flickr.png) !important;}
.person-author-light .tumblr {background-image:url(images/white/tumblr.png) !important;}
.person-author-light .google {background-image:url(images/white/google.png) !important;}
.person-author-light .digg {background-image:url(images/white/digg.png) !important;}
.person-author-light .blogger {background-image:url(images/white/blogger.png) !important;}
.person-author-light .skype {background-image:url(images/white/skype.png) !important;}
.person-author-light .myspace {background-image:url(images/white/myspace.png) !important;}
.person-author-light .deviantart {background-image:url(images/white/deviantart.png) !important;}
.person-author-light .yahoo {background-image:url(images/white/yahoo.png) !important;}
.person-author-light .reddit {background-image:url(images/white/reddit.png) !important;}
.person-author-light .forrst {background-image:url(images/white/forrst.png) !important;}
.person-author-light .email {background-image:url(images/white/mail.png) !important;}
.person-author .social-icon .popup p{
margin:0 !important;
}
/* Post Content HTML */
.post-content p{
margin:0;
margin-bottom:20px;
}
.post-content ul.arrow{
list-style:none;
margin:0;
padding:0;
}
.post-content ul.arrow li:before{
display:inline-block;
background-image:url(images/check.png);
background-repeat:no-repeat;
background-position:center center;
background-color:#a0ce4e;
height:18px;
-moz-border-radius:75px;
-webkit-border-radius:75px;
border-radius:75px;
width:18px;
content:' ';
float:left;
margin-right:0;
margin-left:-25px;
padding-left: 1px;
}
.post-content ul.arrow li{
line-height:18px;
margin:0;
padding:0;
margin-bottom:15px;
padding-left:25px;
}
.post-content blockquote{
background:#f5f5f5;
font:13px/20px 'PTSansItalic', arial, helvetica, sans-serif;
color:#444444;
border-left:4px solid #a0ce4e;
padding:15px;
}
.post-content blockquote *:last-child{
margin-bottom:0;
}
#gmap{
height:416px;
margin-bottom:50px;
overflow:hidden;
}
#gmap img,.shortcode-map img{
max-width:none !important;
}
body #wrapper .gomapMarker{color:#333 !important;}
.post-slideshow{
margin-bottom:30px !important;
}
.post-slideshow .image,.floated-post-slideshow .image{
margin-bottom:0 !important;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
font-family:'MuseoSlab500Regular', arial, helvetica, sans-serif;
color:#333333;
font-weight:normal;
}
.post-content h4{
font-size:13px !important;
}
.post-content h5{
font-size:12px !important;
}
.post-content h6{
font-size:11px !important;
}
.excerpt-container .highlight1{background-color:transparent !important;}
.excerpt-container .dropcap{color:inherit !important;float:none;padding:0 !important;margin:0 !important;font-size:inherit !important;top:0 !important;}
.excerpt-container .tooltip-shortcode{color:inherit !important;border-bottom:1px dotted;}
/* Button */
.buttons a{
margin: 0 30px 15px 0;
}
.portfolio-wrapper .buttons {
margin-top: 20px;
}
.button,#reviews input#submit,.price_slider_amount button,.gform_wrapper .gform_button{
display:inline-block;
}
.button.large, .wpcf7-form input.button.large, .gform_wrapper .gform_button.large{
min-height:43px;
line-height:43px;
font:13px/43px 'PTSansBold', arial, helvetica, sans-serif;
text-transform:uppercase;
text-align:center;
text-shadow:0 1px 0 #000000;
padding:0 30px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
box-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
.button.small,#reviews input#submit,.wpcf7-form input[type="submit"], .wpcf7-form input.button, .comment-form input[type="submit"],.price_slider_amount button,.gform_wrapper .gform_button{
min-height:32px;
font:13px/32px 'PTSansBold', arial, helvetica, sans-serif;
text-transform:uppercase;
text-align:center;
text-shadow:0 1px 0 #fff;
padding:0 20px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
box-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
.wpcf7-form input[type="submit"],.comment-form input[type="submit"] { font-weight: bold !important; }
.button.green{
color:#54770f !important;
background: #AAD75D;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #AAD75D), color-stop(1, #D1E990) );
background-image: -webkit-linear-gradient(bottom, #AAD75D, #D1E990);
background-image: -moz-linear-gradient(bottom, #AAD75D, #D1E990);
background-image: -ms-linear-gradient(bottom, #AAD75D, #D1E990);
background-image: -o-linear-gradient(bottom, #AAD75D, #D1E990);
background-image: linear-gradient(to top, #AAD75D, #D1E990);
border:1px solid #9dba60;
}
.button.green:hover{
color:#54770f !important;
background: #D1E990;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #AAD75D), color-stop(1, #D1E990) );
background-image: -webkit-linear-gradient(bottom, #D1E990, #AAD75D);
background-image: -moz-linear-gradient(bottom, #D1E990, #AAD75D);
background-image: -ms-linear-gradient(bottom, #D1E990, #AAD75D);
background-image: -o-linear-gradient(bottom, #D1E990, #AAD75D);
background-image: linear-gradient(to top, #D1E990, #AAD75D);
border:1px solid #9dba60;
}
.no-cssgradients .button.green{
background-color:#D1E990;
}
.no-cssgradients .button.green:hover{
background-color:#AAD75D;
}
.button.darkgreen{
color:#54770f !important;
background-image: linear-gradient(top, #d0e0a5 0%, #a8c76a 100%);
background-image: -o-linear-gradient(top, #d0e0a5 0%, #a8c76a 100%);
background-image: -moz-linear-gradient(top, #d0e0a5 0%, #a8c76a 100%);
background-image: -webkit-linear-gradient(top, #d0e0a5 0%, #a8c76a 100%);
background-image: -ms-linear-gradient(top, #d0e0a5 0%, #a8c76a 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #d0e0a5),
color-stop(1, #a8c76a)
);
border:1px solid #9dba60;
}
.button.darkgreen:hover{
color:#54770f !important;
background-image: linear-gradient(top, #a8c76a 0%, #d0e0a5 100%);
background-image: -o-linear-gradient(top, #a8c76a 0%, #d0e0a5 100%);
background-image: -moz-linear-gradient(top, #a8c76a 0%, #d0e0a5 100%);
background-image: -webkit-linear-gradient(top, #a8c76a 0%, #d0e0a5 100%);
background-image: -ms-linear-gradient(top, #a8c76a 0%, #d0e0a5 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #a8c76a),
color-stop(1, #d0e0a5)
);
border:1px solid #9dba60;
}
.no-cssgradients .button.darkgreen{
background-color:#d0e0a5;
}
.no-cssgradients .button.darkgreen:hover{
background-color:#a8c76a;
}
.button.orange{
color:#c0830b !important;
background-image: linear-gradient(top, #fbdc86 0%, #f8bf56 100%);
background-image: -o-linear-gradient(top, #fbdc86 0%, #f8bf56 100%);
background-image: -moz-linear-gradient(top, #fbdc86 0%, #f8bf56 100%);
background-image: -webkit-linear-gradient(top, #fbdc86 0%, #f8bf56 100%);
background-image: -ms-linear-gradient(top, #fbdc86 0%, #f8bf56 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #fbdc86),
color-stop(1, #f8bf56)
);
border:1px solid #c0830b;
}
.button.orange:hover{
color:#c0830b !important;
background-image: linear-gradient(top, #f8bf56 0%, #fbdc86 100%);
background-image: -o-linear-gradient(top, #f8bf56 0%, #fbdc86 100%);
background-image: -moz-linear-gradient(top, #f8bf56 0%, #fbdc86 100%);
background-image: -webkit-linear-gradient(top, #f8bf56 0%, #fbdc86 100%);
background-image: -ms-linear-gradient(top, #f8bf56 0%, #fbdc86 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #f8bf56),
color-stop(1, #fbdc86)
);
border:1px solid #c0830b;
}
.no-cssgradients .button.orange{
background-color:#fbdc86;
}
.no-cssgradients .button.orange:hover{
background-color:#f8bf56;
}
.button.blue{
color:#1172c1 !important;
background-image: linear-gradient(top, #b5e0f7 0%, #76c7f1 100%);
background-image: -o-linear-gradient(top, #b5e0f7 0%, #76c7f1 100%);
background-image: -moz-linear-gradient(top, #b5e0f7 0%, #76c7f1 100%);
background-image: -webkit-linear-gradient(top, #b5e0f7 0%, #76c7f1 100%);
background-image: -ms-linear-gradient(top, #b5e0f7 0%, #76c7f1 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #b5e0f7),
color-stop(1, #76c7f1)
);
border:1px solid #1172c1;
text-shadow:0 1px 0 rgba(255,255,255,0.6);
}
.button.blue:hover{
color:#1172c1 !important;
background-image: linear-gradient(top, #76c7f1 0%, #b5e0f7 100%);
background-image: -o-linear-gradient(top, #76c7f1 0%, #b5e0f7 100%);
background-image: -moz-linear-gradient(top, #76c7f1 0%, #b5e0f7 100%);
background-image: -webkit-linear-gradient(top, #76c7f1 0%, #b5e0f7 100%);
background-image: -ms-linear-gradient(top, #76c7f1 0%, #b5e0f7 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #76c7f1),
color-stop(1, #b5e0f7)
);
border:1px solid #1172c1;
}
.no-cssgradients .button.blue{
background-color:#b5e0f7;
}
.no-cssgradients .button.blue:hover{
background-color:#76c7f1;
}
.button.red{
color:#FFFFFF !important;
background-image: linear-gradient(top, #e80707 0%, #d60707 100%);
background-image: -o-linear-gradient(top, #e80707 0%, #d60707 100%);
background-image: -moz-linear-gradient(top, #e80707 0%, #d60707 100%);
background-image: -webkit-linear-gradient(top, #e80707 0%, #d60707 100%);
background-image: -ms-linear-gradient(top, #e80707 0%, #d60707 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #e80707),
color-stop(1, #d60707)
);
border:1px solid #780404;
text-shadow:0 1px 0 #000000;
}
.button.red:hover{
background-image: linear-gradient(top, #d60707 0%, #e80707 100%);
background-image: -o-linear-gradient(top, #d60707 0%, #e80707 100%);
background-image: -moz-linear-gradient(top, #d60707 0%, #e80707 100%);
background-image: -webkit-linear-gradient(top, #d60707 0%, #e80707 100%);
background-image: -ms-linear-gradient(top, #d60707 0%, #e80707 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #d60707),
color-stop(1, #e80707)
);
border:1px solid #780404;
}
.no-cssgradients .button.red{
background-color:#e80707;
}
.no-cssgradients .button.red:hover{
background-color:#d60707;
}
.button.pink{
color:#a31366 !important;
background-image: linear-gradient(top, #fda1d5 0%, #fc84c8 100%);
background-image: -o-linear-gradient(top, #fda1d5 0%, #fc84c8 100%);
background-image: -moz-linear-gradient(top, #fda1d5 0%, #fc84c8 100%);
background-image: -webkit-linear-gradient(top, #fda1d5 0%, #fc84c8 100%);
background-image: -ms-linear-gradient(top, #fda1d5 0%, #fc84c8 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #fda1d5),
color-stop(1, #fc84c8)
);
border:1px solid #a31366;
text-shadow:0 1px 0 rgba(255,255,255,0.6);
}
.button.pink:hover{
color:#a31366 !important;
background-image: linear-gradient(top, #fc84c8 0%, #fda1d5 100%);
background-image: -o-linear-gradient(top, #fc84c8 0%, #fda1d5 100%);
background-image: -moz-linear-gradient(top, #fc84c8 0%, #fda1d5 100%);
background-image: -webkit-linear-gradient(top, #fc84c8 0%, #fda1d5 100%);
background-image: -ms-linear-gradient(top, #fc84c8 0%, #fda1d5 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #fc84c8),
color-stop(1, #fda1d5)
);
border:1px solid #a31366;
}
.no-cssgradients .button.pink{
background-color:#fda1d5;
}
.no-cssgradients .button.pink:hover{
background-color:#fc84c8;
}
.button.darkgray{
color:#434c50 !important;
background-image: linear-gradient(top, #c0c0c0 0%, #9e9e9e 100%);
background-image: -o-linear-gradient(top, #c0c0c0 0%, #9e9e9e 100%);
background-image: -moz-linear-gradient(top, #c0c0c0 0%, #9e9e9e 100%);
background-image: -webkit-linear-gradient(top, #c0c0c0 0%, #9e9e9e 100%);
background-image: -ms-linear-gradient(top, #c0c0c0 0%, #9e9e9e 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #c0c0c0),
color-stop(1, #9e9e9e)
);
border:1px solid #434c50;
text-shadow:0 1px 0 rgba(255,255,255,0.6);
}
.button.darkgray:hover{
color:#434c50 !important;
background-image: linear-gradient(top, #9e9e9e 0%, #c0c0c0 100%);
background-image: -o-linear-gradient(top, #9e9e9e 0%, #c0c0c0 100%);
background-image: -moz-linear-gradient(top, #9e9e9e 0%, #c0c0c0 100%);
background-image: -webkit-linear-gradient(top, #9e9e9e 0%, #c0c0c0 100%);
background-image: -ms-linear-gradient(top, #9e9e9e 0%, #c0c0c0 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #9e9e9e),
color-stop(1, #c0c0c0)
);
border:1px solid #434c50;
}
.no-cssgradients .button.darkgray{
background-color:#c0c0c0;
}
.no-cssgradients .button.darkgray:hover{
background-color:#9e9e9e;
}
.button.lightgray{
color:#ababab !important;
background-image: linear-gradient(top, #fbfbfb 0%, #f0f0f0 100%);
background-image: -o-linear-gradient(top, #fbfbfb 0%, #f0f0f0 100%);
background-image: -moz-linear-gradient(top, #fbfbfb 0%, #f0f0f0 100%);
background-image: -webkit-linear-gradient(top, #fbfbfb 0%, #f0f0f0 100%);
background-image: -ms-linear-gradient(top, #fbfbfb 0%, #f0f0f0 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #fbfbfb),
color-stop(1, #f0f0f0)
);
border:1px solid #ababab;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}
.button.lightgray:hover{
color:#ababab !important;
background-image: linear-gradient(top, #f0f0f0 0%, #fbfbfb 100%);
background-image: -o-linear-gradient(top, #f0f0f0 0%, #fbfbfb 100%);
background-image: -moz-linear-gradient(top, #f0f0f0 0%, #fbfbfb 100%);
background-image: -webkit-linear-gradient(top, #f0f0f0 0%, #fbfbfb 100%);
background-image: -ms-linear-gradient(top, #f0f0f0 0%, #fbfbfb 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #f0f0f0),
color-stop(1, #fbfbfb)
);
border:1px solid #ababab;
}
.no-cssgradients .button.lightgray{
background-color:#fbfbfb;
}
.no-cssgradients .button.lightgray:hover{
background-color:#f0f0f0;
}
.button.transparent {
color: #333;
border:1px solid #D2D3D4;
-webkit-box-shadow: 0 1px 1px rgba(99,99,99,0.2);
-moz-box-shadow: 0 1px 1px rgba(99,99,99,0.2);
box-shadow: 0 1px 1px rgba(99,99,99,0.2);
}
.button.transparent:hover {
color: #666;
}
/* Alert */
.alert{
padding:8px;
text-align:center;
position:relative;
}
.alert .msg{
padding:0 50px;
}
.alert .toggle-alert{
position:absolute;top:14px;right:25px;
display:block;
text-indent:-10000px;
background:url(images/x-icon.png) no-repeat top left;
width:12px;
height:12px;
}
.alert.general{
background:#ffffff url(images/general-icon.png) no-repeat 25px 8px;
border:1px solid #d7d6d6;
}
.alert.error{
background:#ffe9e9 url(images/error-icon.png) no-repeat 25px 8px;
border:1px solid #e7a9a9;
color:#d04544;
}
.alert.success{
background:#e9f3d2 url(images/success-icon.png) no-repeat 25px 8px;
border:1px solid #acd556;
color:#92b750;
}
.alert.notice{
background:#fbf6e3 url(images/notice-icon.png) no-repeat 25px 8px;
border:1px solid #e7d48d;
color:#cfb306;
}
/* More Shortcodes */
.highlight1 { background:#f6f67a; padding:2px; }
.highlight2 { background:#000; color:#CCC; padding:2px; }
.dropcap { font-size:62px; margin-right:6px; padding-top:11px; text-transform: uppercase; float: left; position: relative; top: 5px; color:#83c54f; padding-bottom:11px;}
.video-shortcode{margin-bottom:25px;}
/* Fade Images */
.recent-works-items img:hover, .flickr_badge_image img:hover, .pyre_tabs img:hover{
opacity:0.5;
}
.social_links_shortcode ul{
margin-left:0; padding-left:0;
}
.social_links_shortcode .social li{
display:inline-block;
position:relative;
width:30px;
margin-bottom:20px;
}
.social_links_shortcode .social li a{
background:none;
display:inline-block;
border-bottom:0;
line-height:normal;
text-indent:-10000px;
height:18px;
padding:0 !important;
background-image:url(images/social_links.png);
}
.social_links_shortcode .social li a.rss{
background-position:-168px -1px;
width:13px;
}
.social_links_shortcode .social li a.facebook{
background-position:-3px 0px;
width:9px;
}
.social_links_shortcode .social li a.twitter{
background-position:-45px 0px;
width:13px;
}
.social_links_shortcode .social li a.dribble{
background-position:-88px -39px;
width:16px;
}
.social_links_shortcode .social li a.google{
background-position:-45px -39px;
width:21px;
}
.social_links_shortcode .social li a.linkedin{
background-position:-90px -1px;
width:14px;
}
.social_links_shortcode .social li a.blogger{
background-position:-204px -1px;
width:16px;
}
.social_links_shortcode .social li a.tumblr{
background-position:-129px 0px;
width:15px;
}
.social_links_shortcode .social li a.reddit{
background-position:0px -39px;
width:19px;
}
.social_links_shortcode .social li a.yahoo{
background-position:-125px -40px;
width:22px;
}
.social_links_shortcode .social li a.deviantart{
background-position:-165px -40px;
width:23px;
}
.social_links_shortcode .social li a.vimeo{
background-position:-202px -38px;
width:19px;
}
.social_links_shortcode .social li a.custom{
background:none !important;
text-indent:0 !important;
width:auto !important;
}
.error_page .useful_links{
width:25.06%;
padding-left:5%;
}
.error_page .oops {
font-size: 117px !important;
margin: 0 0 20px 0;
line-height: 117px !important;
font-weight: bolder !important;
color: #F0F0F0 !important;
font-family: "PT Sans",Arial,Helvetica,sans-serif !important;
}
.error_page .sidebar-oops {
font-size: 90px !important;
line-height: 90px !important;
}
.error_page .oops h1 {
font-family: "PT Sans",Arial,Helvetica,sans-serif !important;
}
.fontawesome-icon{
display:inline-block !important;
float:left;
}
.fontawesome-icon{margin-right:10px;}
.fontawesome-icon.circle-yes{
-moz-border-radius:75px;
-webkit-border-radius:75px;
border-radius:75px;
border-width: 1px;
border-style: solid;
background-color:#333333;
color:#fff;
text-align:center;
margin-top:2px;
}
.fontawesome-icon.large{
font-size:40px;
}
.fontawesome-icon.large.circle-yes{
width:70px;
height:70px;
line-height:70px;
}
.fontawesome-icon.medium{
font-size:18px;
}
.fontawesome-icon.medium.circle-yes{
width:35px;
height:35px;
line-height:36px;
}
.fontawesome-icon.small{
font-size:10px;
}
.fontawesome-icon.small.circle-yes{
width:18px;
height:18px;
line-height:19px;
}
.fontawesome-icon.circle-no.large{
margin-top:2px;
}
.fontawesome-icon.circle-no.medium{
margin-top:3px;
}
.fontawesome-icon.circle-no.small{
margin-top:5px;
}
.icon-heading .fontawesome-icon{margin-top:-6px !important;}
.content-boxes .heading .fontawesome-icon{
float:left;
}
.content-boxes .heading-and-icon h2{
padding-left:45px;
}
.main-flex{overflow:hidden;width:100%; margin-left:auto !important; margin-right:auto !important;}
#sidebar .widget_nav_menu li a,#sidebar .widget_categories li a{
color: #333!important;
display: block;
border-bottom: 1px solid #E7E6E6;
padding: 10px 10px 10px 0;
}
#sidebar .widget_nav_menu li a:before,#sidebar .widget_categories li a:before,
#sidebar .widget .recentcomments:before,#sidebar .widget_recent_entries li a:before,
#sidebar .widget_archive li a:before,#sidebar .widget_pages li a:before,
#sidebar .widget_links li a:before,.side-nav .arrow:after,
.woocommerce-tabs .tabs a:hover .arrow:after,.woocommerce-tabs .tabs li.active a .arrow:after,
.widget_layered_nav li a:before,.widget_product_categories li a:before{
font-family: FontAwesome !important;
content:'\f054';
font-size:8px;
padding-right:10px;
}
#sidebar .widget_nav_menu li a,#sidebar .widget_categories li a{
display: block;
color: #333;
}
#sidebar .widget_categories li {
position:relative;
}
#sidebar .widget_categories li span{
position:absolute;
}
#sidebar .widget_categories .children{
margin-left:5px;
}
.shortcode-tabs .tab_content ul.arrow{
float:none;
}
#sidebar ul.arrow{
list-style:none;
margin:0;
padding:0;
}
#sidebar ul.arrow li:before{
display:inline-block;
background-image:url(images/arrow-bullet.png);
background-repeat:no-repeat;
background-position:center center;
background-color:#a0ce4e;
height:18px;
-moz-border-radius:75px;
-webkit-border-radius:75px;
border-radius:75px;
width:18px;
content:' ';
float:left;
margin-right:10px;
margin-left:0px;
}
#sidebar ul.arrow li{
line-height:18px;
margin:0;
padding:0;
margin-bottom:15px !important;
padding-left:0px;
}
#sidebar .sub-menu,#sidebar .children,.footer-area .sub-menu,.footer-area .children,#slidingbar-area .sub-menu,#slidingbar-area .children{margin-left:15px !important;}
.footer-area .columns-1 .col,#slidingbar-area .columns-1 .col{
width:100%;
padding-right:0;
}
.footer-area .columns-2 .col,#slidingbar-area .columns-2 .col{
width:48%;
margin-right: 4%;
}
.footer-area .columns-3 .col,#slidingbar-area .columns-3 .col{
width:31%;
margin-right: 3.5%;
}
.footer-area .columns-1 .col:nth-child(2),.footer-area .columns-1 .col:nth-child(3),
.footer-area .columns-1 .col:nth-child(4),
.footer-area .columns-2 .col:nth-child(3),.footer-area .columns-2 .col:nth-child(4),
.footer-area .columns-3 .col:nth-child(4),#slidingbar-area .columns-1 .col:nth-child(2),#slidingbar-area .columns-1 .col:nth-child(3),
#slidingbar-area .columns-1 .col:nth-child(4),
#slidingbar-area .columns-2 .col:nth-child(3),#slidingbar-area .columns-2 .col:nth-child(4),
#slidingbar-area .columns-3 .col:nth-child(4){display:none;}
.widget_categories li{
background:none !important;
padding:0 !important;
border-bottom:0 !important;
}
.footer-area .widget_categories li:first-child a,#slidingbar-area .widget_categories li:first-child a{
padding-top:0;
}
.footer-area .widget_categories li a,#slidingbar-area .widget_categories li a{
border-bottom: 1px solid #282a2b;
padding:12px 0px;
display:block;
}
.footer-area .widget_categories .children,#slidingbar-area .widget_categories .children{
margin-left:5px;
}
/* New Headers */
.header-social{
border-bottom:1px solid #e1e1e1;
padding:10px 0px;
}
.header-social .header-info, .header-social .top-menu{
line-height:43px;
}
.header-social { padding: 0px 10px; }
.header-social .sep{padding: 0 6px;}
.header-social .social-networks{margin-top:11px;max-width:400px;margin-left:auto;margin-right:auto;}
.header-social .social-networks li{float:left; margin-bottom:6px;}
.header-social .alignright{margin-left:0;}
.header-social .alignleft{margin-right:0;}
.header-v2 .header-social .alignleft, .header-v2 .header-social .alignleft a{color:#b3b3b3 !important;}
.header-v2 .header-social .alignleft a:hover{}
.header-v2 #header{border-bottom:1px solid #e1e1e1;}
.header-v2 .social-networks li{}
.header-v2 .social-networks a{opacity:0.2;}
.header-v2 .social-networks a:hover{opacity:0.5;}
.header-v2{border-top:4px solid #a0ce4e;}
.header-v3 .header-social{background-color:#a0ce4e;}
.header-v3 .header-social .alignleft,.header-v3 .header-social .alignleft a{color:#fff !important;}
.header-v3 .header-social .alignleft a:hover{}
.header-v3 #header{border-bottom:1px solid #e1e1e1;}
.header-v3 .social-networks li{float:right;}
.header-v3 .social-networks img {
}
.header-v3 .social-networks a{opacity:0.5;}
.header-v3 .social-networks a:hover{opacity:1;}
.header-v3 #nav ul a, .header-v3 .navigation li.current-menu-ancestor a{border-top:0px; padding-top:3px;}
.header-v3 #nav ul #main-nav-search-link{border-top:3px solid transparent; padding-top:0;}
.header-v4 .header-social{background-color:#a0ce4e;}
.header-v4 .header-social .alignleft,.header-v4 .header-social .alignleft a,.header-v4 .header-social .alignright .menu li a{color:#fff !important;}
.header-v4 #header{border-bottom:1px solid #e1e1e1;}
.header-v4 .social-networks li{margin-left:0; margin-right:22px;}
.header-v4 .social-networks img {
}
.header-v4 .social-networks a{opacity:0.5;}
.header-v4 .social-networks a:hover{opacity:1;}
.header-v4 #header{padding:30px 0px;}
.header-v4 #header .logo{margin:0;}
.header-v4 #header .tagline{float:right; margin:0 !important; padding:0; line-height:32px; text-align:right;}
.header-v4 #header .search{width:270px; float:right;margin-left:15px !important;}
.header-v4 #small-nav{border-bottom:1px solid #e1e1e1;}
.header-v4 #nav{float:left;}
.header-v4 #nav ul a, .header-v4 .navigation li.current-menu-ancestor a{border-top:0; padding-top:3px;}
.header-v4 #nav ul #main-nav-search-link{border-top:3px solid transparent; padding-top:0;}
.header-v4 .navigation li:last-child{padding-right:0;}
#header-banner{float:right;}
.header-v5 .header-social{background-color:#a0ce4e;}
.header-v5 .header-social .alignleft,.header-v5 .header-social .alignleft a,.header-v5 .header-social .alignright .menu li a{color:#fff !important;}
.header-v5 #header{border-bottom:1px solid #e1e1e1;}
.header-v5 .social-networks li:last-child{margin-right:0;}
.header-v5 .social-networks img {
}
.header-v5 .header-social .social-networks li{float:right;}
.header-v5 .social-networks a{opacity:0.5;}
.header-v5 .social-networks a:hover{opacity:1;}
.header-v5 .header-social .alignright .menu, .header-v5 .header-social .alignright .menu ul{list-style:none; margin:0; padding:0;}
.header-v5 .header-social .alignright .menu li:first-child{border-left:0;}
.header-v5 #header .logo{margin:0; text-align:center;}
.header-v5 #header .tagline{width:300px; float:right; margin:0; margin-right:15px; line-height:32px;}
.header-v5 #header .search{width:220px; float:right;}
.header-v5 #small-nav{border-bottom:1px solid #e1e1e1;}
.header-v5 #nav{float:none;}
.header-v5 #nav > ul{float:none; text-align:center;}
.header-v5 #nav > ul > li,.header-v5 #nav > ul > li > a{float:none;display:inline-block;}
.header-v5 #nav > ul ul{text-align:left;}
.header-v5 #nav ul a, .header-v5 .navigation li.current-menu-ancestor a{border-top:0; padding-top:3px;}
.header-v5 #nav ul #main-nav-search-link{border-top:3px solid transparent; padding-top:0;}
.header-v5 #header .logo{float:none;}
#header .tagline{font-weight:normal; font-family:'MuseoSlab500Regular', arial, helvetica, sans-serif !important; margin-top:7px !important;}
.header-social .alignleft .social-networks li{float:left;margin-left:0;margin-right:20px;}
.header-social .alignright .social-networks li{float:right;}
.header-social .menu,.header-social .menu ul{list-style:none; margin:0; padding:0;}
.header-social .menu li{position:relative;margin:0; padding:0; padding:0 8px; display:inline-block; border-left:1px solid #fff;}
.header-social .menu li:first-child{border-left:0;}
.header-social .menu li .sub-menu{display:block;position:absolute;left:-1px;z-index:100000;}
.header-social .menu li:hover > .sub-menu{display:block;position:absolute;left:-1px;}
.header-social .menu > li:hover > .sub-menu > li:hover .sub-menu{top:-1px;left:100px;}
.header-social .menu .sub-menu{background:#ffffff;
-webkit-border-bottom-right-radius: 2px;
-webkit-border-bottom-left-radius: 2px;
-moz-border-radius-bottomright: 2px;
-moz-border-radius-bottomleft: 2px;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
border:1px solid #e0dfdf;
width:100px;
line-height:normal !important;
}
#wrapper .header-social{min-height:43px;}
#wrapper .header-social .menu .sub-menu li{
float:none;
display:inline-block;
border:0;
border-bottom:1px solid #e0dfdf !important;
line-height:normal !important;
padding:0 !important;
}
#wrapper .header-social .menu .sub-menu li a{
width:80px;
padding:7px 10px;
display:inline-block;
}
#wrapper .header-social .menu .sub-menu li a:hover{
background-color:#fafafa;
}
#wrapper .header-social .menu .sub-menu li:last-child{
border-bottom:0 !important;
}
#wrapper .header-social .menu .sub-menu li,#wrapper .header-social .menu .sub-menu li a{
color:#333333 !important;
}
.header-social .alignleft .menu li:first-child{padding-left:0;}
.header-social .alignright .menu li:last-child{padding-right:0;}
.header-wrapper .header-v4 #s{width: 268px;}
.widget_wooslider_slideshow_slides li a{background:none !important; border:0 !important; margin:0 !important; padding:0 !important;}
#sidebar .flickr_badge_image img{width:66px; height:66px; float:left; padding:3px;}
.footer-area .flickr_badge_image img,#slidingbar-area .flickr_badge_image img{width:66px; height:66px; float:left; padding:3px;}
.footer-area .columns-4 .flickr_badge_image img, #slidingbar-area .columns-4 .flickr_badge_image img{width:60px; height:60px;}
.footer-area .social-networks,#slidingbar-area .social-networks{float:left;}
.footer-area .social-networks li,#slidingbar-area .social-networks li{float:left;margin-left:0;margin-right:20px;padding:0;}
.footer-area .social-networks li, .footer-area .social-networks a,#slidingbar-area .social-networks li, #slidingbar-area .social-networks a{background-image:none;}
.footer-area .social-networks li:first-child,#slidingbar-area .social-networks li:first-child{padding:0;}
.footer-area .flexslider .slides > li,#slidingbar-area .flexslider .slides > li{padding-top:0; padding-bottom:0;}
.chat-icon{display:inline-block; width:26px; height:19px; background-image:url(images/speech-bubble.png); margin-top:9px;}
/* WPML */
#icl_lang_sel_widget {
z-index:999;
}
#icl_lang_sel_widget:after {
content: "";
display: table;
clear: both;
}
#icl_lang_sel_widget li a{background-image:none !important;}
#lang_sel_list,#lang_sel_list ul,#lang_sel_list ul li{width:100%;}
#lang_sel_list ul{border-top:0;}
#lang_sel_list ul li a{border-left:0!important; border-right:0 !important;}
#lang_sel_footer ul li img{top:6px;}
.header-social .menu > li > a > .iclflag{display:inline-block;}
.header-social .sub-menu{display:inline-block;}
.footer-area #lang_sel_list li a,#slidingbar-area #lang_sel_list li a{background-color:transparent !important; padding-top:8px; padding-bottom:8px;}
#lang_sel ul ul,#lang_sel li{width:100%;background:#fff;}
#lang_sel > ul > li > a{padding:0px !important;padding-left:10px !important;}
#lang_sel > ul > li > a .iclflag{top:5px;}
ul.navigation > li > a > .iclflag,.top-menu > ul > li > a .iclflag{
position:relative;
top:50%;
}
#mobile-nav .iclflag {
margin: 3px 5px 0 0;
}
#mobile-nav .submenu-languages li.mobile-nav-item li a:before {
content: "";
}
.qtrans_flag_and_text{background-position:center right !important;}
#lang_sel{display:block;}
#lang_sel li ul li a{padding:10px !important;}
/* Google Recaptcha Hack */
iframe[src="about:blank"]{display:none;}
/* New Portfolio Templates */
.portfolio-one-text .portfolio-item .image{width:100%; height:100%; float:none; margin-right:0;}
.portfolio-one-text .portfolio-item .portfolio-content{margin-top:25px;}
.portfolio-two-text .portfolio-item{float:left;height:auto;}
.portfolio-two-text .portfolio-item .portfolio-content{margin-top:25px;}
.portfolio-three-text .portfolio-item{float:left;height:auto;}
.portfolio-three-text .portfolio-item .portfolio-content{margin-top:25px;}
.portfolio-four-text .portfolio-item{float:left;height:auto;}
.portfolio-four-text .portfolio-item .portfolio-content{margin-top:25px;}
.portfolio-item .portfolio-content h4{margin: 0 0 15px !important;}
.portfolio-item .portfolio-content h2 {margin: 0 0 5px !important;}
.portfolio-one-sidebar .portfolio-item .image{float:none;}
.portfolio-one-sidebar .portfolio-item .portfolio-content{margin-top:25px;}
.portfolio-two-sidebar .portfolio-item{width:324px; height:auto;}
.portfolio-three-sidebar .portfolio-item{width:211px; height:auto;}
.portfolio-four-sidebar .portfolio-item{width:153px; height:auto;}
/* Date and Formats Box */
.date-and-formats{float:left;width:82px;text-align:center;}
.date-and-formats .date-box{color:#fff;padding:8px 0 5px 0px;}
.date-and-formats .date-box .date{font-size:29px;font-weight:bold;display:block;line-height:29px;}
.date-and-formats .format-box{background-color:#eef0f2;margin-top:3px;}
.date-and-formats .format-box i{font-size:25px;display:block;line-height:55px;}
.large-alternate .post-content{float:right;width:84%;}
.large-alternate .meta-info,.medium-alternate .meta-info{border-top:0;margin-top:0;}
.medium-alternate .date-and-formats{margin-right:17px;}
.medium-alternate .flexslider{margin-right:17px !important;}
.medium-alternate .post-content{float:left;width:34%;}
.full-width .medium-alternate .post-content{width:53%;}
h2.post-title{margin-bottom:5px !important;}
.single-line-meta .sep{padding:0px 5px;}
.single-line-meta .sep:last-child,.meta-info .sep:last-child{display:none;}
/* Masonry Grid Layout */
.grid-layout .post{margin-bottom:40px; border:1px solid #EAEAEA;border-bottom-width:3px;}
.grid-layout .post .flexslider{border-bottom:1px solid #EAEAEA;margin-bottom:0 !important;}
.grid-layout .post-content-container{padding:0 25px;padding-top:30px;}
.grid-full-layout-4 .post-content-container { word-wrap: break-word; }
.grid-layout .post .content-sep{margin-bottom:20px;height:4px;border-top:1px solid #EAEAEA;border-bottom:1px solid #EAEAEA;}
.grid-layout .post .meta-info{border:0;margin-top:0; margin-bottom:20px;}
.grid-layout .post .meta-info .alignleft{width:50%;}
.has-sidebar .grid-full-layout-4 .meta-info .alignleft{width:100%;margin-right:0;float:none;display: block;margin-bottom: -7px;}
.has-sidebar .grid-full-layout-4 .meta-info .alignright{width:100%;margin-left:0;float:none;}
/* Timeline Layout */
.timeline-layout{background:url(images/timeline_line.png) center center repeat-y;width:775px;margin:0 auto;padding-top:60px;position:relative;}
.timeline-icon{font-size:46px;color:#ebeaea;text-align:center;margin-bottom:-8px;}
.timeline-layout .post{margin-bottom:40px; border:1px solid #EAEAEA;border-bottom-width:3px;}
.timeline-layout .post .flexslider{border-bottom:1px solid #EAEAEA;margin-bottom:0 !important;}
.timeline-layout .post-content-container{padding:0 25px;padding-top:30px;}
.timeline-layout .post .content-sep{margin-bottom:20px;height:4px;border-top:1px solid #EAEAEA;border-bottom:1px solid #EAEAEA;}
.timeline-layout .post .meta-info{border:0;margin-top:0; margin-bottom:20px;}
.timeline-layout .post .meta-info .alignleft{width:50%;}
.timeline-layout .post.align-left{width:300px;float:left;clear:left;}
.timeline-layout .post.align-right{width:300px;float:right;clear:right;}
h3.timeline-title{font-size:13px;font-weight:normal;border:1px solid #efeeee;height:auto;line-height:25px;width:96px;text-align:center;margin: -31px auto 0 auto;background:#fff;clear:both;}
.blog-shortcode h3.timeline-title { color: #747474; font-size:13px !important;}
.timeline-circle{background-color:#efeeee;border-radius:50%;width:10px;height:10px;position:absolute;left:383px;margin-top:-3px;}
.timeline-sidebar-layout{width:669px;}
.timeline-sidebar-layout h3.timeline-title{display:none;}
.timeline-sidebar-layout .timeline-circle{left:330px;}
.align-right .timeline-arrow {
position: absolute;
background: #ffffff;
}
.align-right .timeline-arrow:after, .align-right .timeline-arrow:before {
right: 100%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.align-right .timeline-arrow:after {
border-color: rgba(0, 0, 0, 0);
border-right-color: #ffffff;
border-width: 8px;
top: 50%;
margin-top: -8px;
}
.align-right .timeline-arrow:before {
border-color: rgba(239, 239, 239, 0);
border-right-color: #e5e4e4;
border-width: 9px;
top: 50%;
margin-top: -9px;
}
.align-left .timeline-arrow {
position: absolute;
background: #ffffff;
}
.align-left .timeline-arrow:after, .align-left .timeline-arrow:before {
left: 100%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.align-left .timeline-arrow:after {
border-color: rgba(0, 0, 0, 0);
border-left-color: #ffffff;
border-width: 8px;
top: 50%;
margin-top: -8px;
}
.align-left .timeline-arrow:before {
border-color: rgba(239, 239, 239, 0);
border-left-color: #e5e4e4;
border-width: 9px;
top: 50%;
margin-top: -9px;
}
.align-right .timeline-arrow{right:301px;}
.align-left .timeline-arrow{left:301px;}
/* New Shortcode CSS */
.reading-box-container{position:relative;z-index:1;}
.reading-box{position:relative;}
.tagline-shadow:before,
.tagline-shadow:after {
bottom:15px;
left:10px;
width:50%;
height:20%;
max-width:300px;
max-height:100px;
position:absolute;
content:'';
z-index:-1;
-webkit-box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);
-moz-box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);
box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);
-webkit-transform:rotate(-3deg);
-moz-transform:rotate(-3deg);
-ms-transform:rotate(-3deg);
-o-transform:rotate(-3deg);
transform:rotate(-3deg);
}
.tagline-shadow:after {
right:10px;
left:auto;
-webkit-transform:rotate(3deg);
-moz-transform:rotate(3deg);
-ms-transform:rotate(3deg);
-o-transform:rotate(3deg);
transform:rotate(3deg);
}
.demo-sep{clear:both;}
.sep-none{height:1px;}
.sep-single{height:1px;background-color:#e7e6e6;}
.sep-double{height:6px;border-top:1px solid #e7e6e6;border-bottom:1px solid #e7e6e6;}
.sep-dotted{border-bottom:2px dotted #e7e6e6;}
.sep-dashed{border-bottom:2px dashed #e7e6e6;}
.sep-shadow{background:transparent url(images/sep-shadow.png) no-repeat top center;height:7px;width:100%;}
.tooltip-shortcode{position:relative;display:inline;cursor:pointer;color:#747474;}
ul.list-icon{
list-style:none;
margin:0;
padding:0;
margin-top:10px;
}
ul.list-icon li:before{
display:inline-block;
height:18px;
width:18px;
content:' ';
float:left;
margin-right:0;
margin-left:-25px;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
}
ul.circle-yes li:before{
-moz-border-radius:75px;
-webkit-border-radius:75px;
border-radius:75px;
text-align:center;
font-size:9px;
}
ul.list-icon-color-light li:before{
color:#fff;
}
ul.list-icon li{
line-height:18px;
margin:0;
padding:0;
margin-bottom:15px;
padding-left:25px;
}
ul.list-icon-check li:before{
content:'\f00c';
}
ul.list-icon-star li:before{
content:'\f006';
}
ul.list-icon-arrow li:before,
ul.list-icon-angle-right li:before{
content:'\f105';
}
ul.list-icon-asterik li:before,
ul.list-icon-asterisk li:before{
content:'\f069';
}
ul.list-icon-cross li:before,
ul.list-icon-remove li:before{
content:'\f00d';
}
ul.list-icon-plus li:before{
content:'\f067';
}
.content-boxes-icon-on-top .col{text-align:center;}
.content-boxes-icon-on-top .col .more a{float:none;}
.content-boxes-icon-on-top .col .heading-and-icon .fontawesome-icon{float:none;width:64px;height:64px;line-height:64px;font-size:24px;margin:0;}
.content-boxes-icon-on-top .col .heading-and-icon img{float:none; margin-right: 0;}
.content-boxes-icon-on-top .col .heading-and-icon h2{padding-left:0;}
.content-boxes-icon-on-side .col-content-container{padding-left:45px;}
.content-boxes-icon-boxed{overflow:visible !important;}
.content-boxes-icon-boxed .col{overflow:visible !important;text-align:center;padding:2%;padding-top:50px;}
.content-boxes-icon-boxed .col .more a{float:none;}
.content-boxes-icon-boxed .col .heading-and-icon{overflow:visible;position:relative;}
.content-boxes-icon-boxed .col .heading-and-icon .fontawesome-icon,.content-boxes-icon-boxed .col .heading-and-icon img{float:none;position:absolute;top:-80px;width:64px;height:64px;line-height:64px;font-size:24px;margin:0;margin-left:-32px;left:50%;}
.content-boxes-icon-boxed .col .heading-and-icon img{float:none;}
.content-boxes-icon-boxed .col .heading-and-icon h2{padding-left:0;}
.content-boxes-icon-boxed.columns-5 .col{width:12.8%;}
.content-boxes-icon-boxed.columns-4 .col{width:18%;}
.content-boxes-icon-boxed.columns-3 .col{width:26.65%;}
.content-boxes-icon-boxed.columns-2 .col{width:44%;}
.content-boxes-icon-boxed.columns-1 .col{width:96%;}
.counters-circle {margin-bottom: 40px;text-align: center;}
.counter-circle-wrapper{vertical-align:middle;display:inline-block;margin-right:16px;width:220px;height:220px;position:relative;text-align:center;}
.counter-circle-wrapper:last-child{margin-right:0;}
.counter-circle-content{font-size:50px;width:220px;height:220px;text-align:center;line-height:220px;position:relative;}
.counter-circle-content .fontawesome-icon{margin:0 !important;float:none !important;font-size:50px !important;}
.counter-circle-content canvas {left: 0;position: absolute;top: 0;}
.counters-box { font-size: 0; }
.counters-box .counter-box-content { font-size: 13px; }
//.counter-box-wrapper{border:1px solid #e7e6e6;width:20%;padding:2%;display:inline-block;margin-right:1%; text-align:center;}
.counters-box .counter-box-wrapper {border:1px solid #e7e6e6;width:24.1%;margin-right:1%;display:inline-block;-moz-box-sizing: border-box;box-sizing: border-box;padding: 20px;text-align:center;}
.counters-box .counter-box-wrapper:last-child{margin-right:0;}
.content-box-percentage{font-size:50px;line-height:50px;}
.post-content .wooslider .overlay-natural.layout-text-bottom .slide-excerpt{bottom:15% !important;}
.post-content .wooslider .overlay-natural.layout-text-top .slide-excerpt{top:15% !important;}
.post-content .wooslider .slide-excerpt .slide-title,.post-content .wooslider .slide-excerpt .slide-title a{color:#fff !important;}
.post-content .wooslider .overlay-full .slide-excerpt{padding:50px !important;opacity:0.7 !important;}
.post-content .wooslider .wooslider-control-thumbs{position:relative !important;width:auto !important;margin:0 auto !important;margin-top:33px !important; text-align:center !important;}
.post-content .wooslider .wooslider-control-thumbs li{float:none !important;width:56px !important;}
.post-content .wooslider .wooslider-prev,.post-content .wooslider .wooslider-next{top:50% !important;margin-top:-29px !important;}
.post-content .wooslider-type-attachments .wooslider-prev,.post-content .wooslider-type-attachments .wooslider-next{top:50% !important;margin-top:-59px !important;}
.post-content .wooslider .overlay-none .slide-excerpt{margin-top:10px;}
.post-content .wooslider .overlay-none .slide-excerpt .slide-title, .post-content .wooslider .overlay-none .slide-excerpt .slide-title a{color:#333 !important;}
.tabs-vertical{border:0px;}
.tabs-vertical .tabset{border-left:1px solid #d3d3d3;border-top:1px solid #d3d3d3;border-bottom:1px solid #d3d3d3;width:15.7446808511%;float:left;height:auto;position:relative;left:1px;z-index:10;}
.tabs-vertical .tab-hold .tabset li{float:none !important;width:auto;height:auto;border:0;background:none !important;}
.tabs-vertical .tab-hold .tabset li a,.tabs-vertical .tab-hold .tabset li:last-child a{background:url(images/tab-bg.png) !important;border-bottom:0 !important;}
.tabs-vertical .tab-hold .tabset li a{width:auto !important;text-indent:0 !important;border-bottom:1px solid #d3d3d3 !important;height:auto !important;line-height:normal !important;padding:10px !important;}
.tabs-vertical .tab-hold .tabset li a:hover{}
.tabs-vertical .tab-hold .tabset li.active a{background:#fff !important;border-width:0px !important;border-style:solid !important;border-left-width:3px !important;height:auto !important;line-height:normal !important;}
.tabs-vertical .tabs-container{width:83.9361702128%;float:left;}
.tabs-vertical .tabs-container .tab_content{border:1px solid #d3d3d3;padding:30px !important;}
.portfolio-grid{margin-bottom:80px !important;}
.portfolio-grid .portfolio-tabs{margin-top:0 !important;}
.portfolio-grid.portfolio-one .portfolio-item:last-child{margin-bottom:0px !important;}
.portfolio-grid.portfolio-one .image{width:100% !important;float:none !important;}
.avada-container.layout-thumbnails-on-side .col{margin-bottom:20px;}
.avada-container.layout-thumbnails-on-side .flexslider{width:144px;float:left;overflow:hidden;margin-right:20px;}
.avada-container.layout-thumbnails-on-side .flexslider li img{}
.avada-container.layout-thumbnails-on-side .recent-posts-content{}
.avada-container.layout-thumbnails-on-side .recent-posts-content h4{margin:0;margin-bottom:3px;}
.avada-container.layout-thumbnails-on-side .recent-posts-content .meta{margin-bottom:15px;}
.avada-container.layout-date-on-side .col{margin-bottom:20px;}
.avada-container.layout-date-on-side .date-and-formats{width:82px;float:left;overflow:hidden;margin-right:20px;}
.avada-container.layout-date-on-side .recent-posts-content{}
.avada-container.layout-date-on-side .recent-posts-content h4{margin:0;margin-bottom:3px;}
.avada-container.layout-date-on-side .recent-posts-content .meta{margin-bottom:15px;}
.avada-container.layout-thumbnails-on-side .columns-1 .flexslider,.avada-container.layout-thumbnails-on-side .columns-2 .flexslider{margin-bottom:5px;}
.imageframe-align-center { text-align: center; }
.imageframe{position:relative;display:inline-block;max-width:100%;}
.imageframe-border img{border:4px solid #eef0f2;}
.imageframe-glow img{
border: 4px solid #fff; /* stroke */
-moz-box-shadow: 0 0 3px rgba(3,3,3,.3); /* outer glow */
-webkit-box-shadow: 0 0 3px rgba(3,3,3,.3); /* outer glow */
box-shadow: 0 0 3px rgba(3,3,3,.3); /* outer glow */
}
.imageframe-dropshadow img{
-moz-box-shadow: 2px 3px 7px rgba(0,0,0,.3); /* drop shadow */
-webkit-box-shadow: 2px 3px 7px rgba(0,0,0,.3); /* drop shadow */
box-shadow: 2px 3px 7px rgba(0,0,0,.3); /* drop shadow */
}
.imageframe-bottomshadow .imageframe-shadow-left{
background:url(images/imageframe_shadow.png) no-repeat top left;
height:22px;
width:230px;
display:inline-block;
position:absolute;
bottom:-22px;
left:0;
}
.imageframe-bottomshadow .imageframe-shadow-right{
background:url(images/imageframe_shadow.png) no-repeat top right;
height:22px;
width:230px;
display:inline-block;
position:absolute;
bottom:-22px;
right:0;
}
.imageframe img{
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
}
table{
border-collapse:collapse;
border-spacing:0;
}
.table-1 table{
border: 1px solid#dcdcdc;
background-color:#fff;
-moz-box-shadow:0 1px 3px rgba(0,0,0,.08), inset 0 0 0 1px rgba(255,255,255,.5);
-webkit-box-shadow:0 1px 3px rgba(0,0,0,.08), inset 0 0 0 1px rgba(255,255,255,.5);
box-shadow:0 1px 3px rgba(0,0,0,.08), inset 0 0 0 1px rgba(255,255,255,.5);
}
.table-1 table th{
border:1px solid #dcdcdc;
background:#f6f6f6;
padding:20px;
font-family:'MuseoSlab500Regular', arial, helvetica, sans-serif;
text-align:left;
}
.table-1 tr:nth-child(even){
background:#f6f6f6;
}
.table-1 tr td{
border:1px solid #dcdcdc;
padding:10px 20px;
}
.table-2 table thead{
border: 1px solid #d3d3d3;
font-family:'MuseoSlab500Regular', arial, helvetica, sans-serif;
text-align:left;
}
.table-2 table th{
padding:20px;
color:#fff;
}
.table-2 tr td{
border-bottom:1px solid #dcdcdc;
padding:10px 20px;
}
/* Avada 3.0 Images */
.error-image{background:url(images/404_image.png);width:311px;height:133px;margin-top:14px;}
/* DD Slick */
#wrapper .dd-container{font-size:12px !important;font-weight:normal !important;}
#wrapper .dd-container .dd-select{background-image:url(images/mobile_menu_bg.png)!important;height:29px;line-height:29px;border-color:#dadada !important;border-radius:0px !important;text-align:left !important;}
#wrapper .dd-container .dd-selected{padding:0 15px;}
#wrapper .dd-container .dd-pointer{border:0 !important;background:url(images/mobile_menu_icon.png) no-repeat top left;width:48px;height:29px;margin:0 !important;top:0px;right:5px;}
#wrapper .dd-container label,#wrapper .dd-container a{color:#333333 !important;}
#wrapper .dd-options{border-color:#dadada !important;box-shadow:none !important;position:relative !important;}
#wrapper .dd-options li{float:none;height:auto;padding:0;line-height:normal;border-bottom:1px solid #dbdbdb !important;}
#wrapper .dd-options li a{border:0 !important;float:none;height:auto;margin:0;padding:10px;line-height:normal;color:#333 !important;}
#wrapper .dd-options li a:hover,#wrapper .dd-options li.dd-option-selected a{background-color:#f6f6f6 !important;color:#333 !important;}
.top-menu .dd-container{text-align:left !important;font-size:12px !important;}
#wrapper .dd-selected{font-weight:normal !important;}
#wrapper .dd-options li:first-child{display:none !important;}
/* WP 3.6 media player responsive */
.mejs-container.mejs-video {
width: 100% !important;
height: auto !important;
padding-top: 57%;
}
.mejs-overlay, .mejs-poster {
width: 100% !important;
height: 100% !important;
}
.mejs-mediaelement video {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
width: 100% !important;
height: 100% !important;
}
.mejs-container, .mejs-embed, .mejs-embed body {
background:transparent;
}
/* Author page */
.author .avatar {
float: left;
margin-right:20px;
}
.author .author_description .author_title {
margin-top: 0;
font-family: 'MuseoSlab500Regular',arial,helvetica,sans-serif;
color: #333333;
font-weight: normal;
}
.author .author_title .edit_profile {
font-size: 12px;
}
.author .author_description {
overflow: hidden;
}
.author .author_social {
min-height: 34px;
line-height: 34px;
border-top: 1px solid #E0DEDE;
border-bottom: 1px solid #E0DEDE;
margin: 20px 0 80px 0;
}
.author .author_social .custom_msg {
float: left;
max-width: 70%;
font-weight: bold;
}
.author .author_social .social-networks {
margin-top: 8px;
}
/* Woocommerce */
.woocommerce-info{ margin-bottom: 20px;}
.woocommerce-message{margin-bottom:15px;background: url("images/success-icon.png") no-repeat scroll 25px 8px #E9F3D2;border: 1px solid #ACD556;color: #92B750;padding: 8px;position: relative;text-align: center;}
.single-product .woocommerce-message{margin-bottom:40px;padding:20px 0;background:none; border:none;border-top:1px solid #e0dede;border-bottom:1px solid #e0dede;color:#333;text-align:left;}
.single-product .woocommerce-message:before {font-family:'FontAwesome';content:"\f05d";margin-right:5px;}
.single-product .woocommerce-message .wc-forward{float:right;}
.single-product .woocommerce-message .wc-forward:before{font-family:'FontAwesome';content:"\f07a";margin-right:6px;}
.woocommerce-error{list-style:none;padding:0;}
.woocommerce-error li{margin-bottom:15px;background: url("images/error-icon.png") no-repeat scroll 25px 8px #FFE9E9;border: 1px solid #E7A9A9;color: #D04544;padding: 8px;position: relative;text-align: center;}
.woocommerce .single_add_to_cart_button,
.woocommerce .shipping-calculator-form .button,
.woocommerce form.checkout #place_order,
.woocommerce .checkout_coupon .button,
.woocommerce .login .button,
.woocommerce .register .button,
.woocommerce .avada-order-details .order-again .button{
min-height:32px;
font:13px/32px 'PTSansBold', arial, helvetica, sans-serif;
text-transform:uppercase;
text-align:center;
text-shadow:0 1px 0 #fff;
padding:0 20px;
margin: 0;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
box-shadow: 0 1px 1px rgba(0,0,0,0.2);
cursor:pointer;
}
.woocommerce .button{
cursor:pointer;
}
@-moz-document url-prefix() {
.woocommerce .single_add_to_cart_button {
margin-top: -1px;
}
}
.woocommerce .shipping-calculator-form .button{
float: right;
}
.woocommerce .login .form-row{text-align:initial;margin:0 20px 0 15px;float:right;}
.woocommerce .login .form-row.form-row-first,.woocommerce .login .form-row.form-row-last{margin:0 0 20px 0;float:none;}
.woocommerce .login .button {margin-left:15px;}
.woocommerce .login .inline {float:left;margin-top:5px;}
.woocommerce .login .lost_password{float:right;margin-top:5px;}
.woocommerce #customer_login .login .form-row{text-align:initial;margin:0 18px 0 0;float:left;}
.woocommerce #customer_login .login .form-row.form-row-wide{margin:0 0 20px 0;float:none;}
.woocommerce #customer_login .login .button {margin-left:0;}
.woocommerce #customer_login .login .inline {float:none;display:inline;margin-top:10px;margin-left:15px;}
.woocommerce #customer_login .login .lost_password {float: left; margin-top: 6px;}
@-moz-document url-prefix() {
.woocommerce #customer_login .login .lost_password{margin-top: 5px;}
}
.woocommerce .checkout_coupon {margin-bottom:30px;display:block!important;}
.woocommerce .checkout_coupon .promo-code-heading{margin:0!important;padding:0;border:none;}
.woocommerce .checkout_coupon .coupon-input{width:240px;}
.woocommerce .checkout_coupon .coupon-input .input-text{padding:8px 15px;}
.woocommerce .checkout_coupon .coupon-button{margin-right:0;}
.product_meta {clear: both;padding-top: 20px;}
.cart_totals, .shipping_calculator, .coupon, #customer_login .col-1, #customer_login .col-2, .checkout_coupon
{box-sizing: border-box;-moz-box-sizing: border-box;border: 1px solid;overflow: hidden;padding: 30px;}
.woocommerce .checkout h3, .cart_totals h2, .shipping_calculator h2, .coupon h2, #customer_login h2
{margin-top:0;border-bottom: 1px solid;margin-bottom: 30px !important;padding-bottom: 10px;}
.woocommerce-ordering { display: none; }
.catalog-ordering > ul{float:left;margin-bottom:42px;}
.catalog-ordering a{color:#333 !important;}
.order-dropdown{float:left;width:175px;margin:0;padding:0;list-style:none;margin-right:10px;position:relative;}
.order-dropdown ul{margin:0;padding:0;list-style:none;}
.catalog-ordering .order{margin:0;padding:0;list-style:none;}
.order-dropdown .current-li{background:#fbfaf9 !important;border:1px solid #dbdbdb !important;display:block;height:29px;line-height:29px;text-indent:13px;font-size:12px;}
.current-li-content {display: block;height: 30px;overflow: hidden;width: 139px;}
.order-dropdown > li{position:relative;z-index:101;}
.order-dropdown ul{display:none;}
.order-dropdown > li:hover > ul{display:block;position:absolute;top:31px;}
.order-dropdown li ul li {height: 30px;overflow: hidden;}
.order-dropdown ul li a{width:160px;background:#fbfaf9;border:1px solid #dbdbdb;border-top:0;display:block;height:29px;line-height:29px;text-indent:13px;font-size:12px;padding:0;padding-right:13px;}
.order-dropdown ul li a:hover{background:#fff;}
.order-dropdown ul li a strong{font-weight:normal;}
.catalog-ordering .order{margin-right:10px;float:left;}
.catalog-ordering .order li a{background:#fbfaf9;border:1px solid #dbdbdb;display:block;height:29px;line-height:29px;padding:0 13px;font-size:12px;padding:0 10px;}
.order-dropdown > li:after{display:block;font-family:"FontAwesome";content:"\f107";z-index:101;position:absolute;top:0;right:0;height:30px;line-height:30px;width:26px;text-align:center;border-left:1px solid #dbdbdb;}
.orderby-order-container{float:left;}
.products{list-style:none;margin:0;padding:0;}
.products li{border:1px solid #efefef;border-bottom-size:2px;}
.products-4 li{float:left;width:23.9%;margin-right:1.0%;margin-bottom:11px;}
.products-4 li:nth-child(4n){margin-right:0;}
.products-4 li:nth-child(4n+1){clear:both;}
.products-3 li{float:left;width:32.2%;margin-right:1.1%;margin-bottom:11px;}
.products-3 li:nth-child(3n){margin-right:0;}
.products-3 li:nth-child(3n+1){clear:both;}
.products-2 li{float:left;width:49.1%;margin-right:0.9%;margin-bottom:11px;}
.products-2 li:nth-child(2n){margin-right:0;}
.products-2 li:nth-child(2n+1){clear:both;}
.products-1 li{float:left;width:99.6%;margin-bottom:11px;}
.products-1 li:nth-child(2n){margin-right:0;}
.products-1 li:nth-child(2n+1){clear:both;}
.product-images{display:block;text-align:center;position:relative;}
.onsale{-webkit-backface-visibility: hidden;display:block;z-index:99;color:#fff;border-radius:50%;line-height:39px;text-align:center;position:absolute;padding:0px 5px !important;}
.product-details{padding:20px 15px 0px 15px;}
.product-title{font-size:13px;margin-top:0;margin-bottom:5px;font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif;font-weight:normal;}
.products-slider .product-buttons{height:40px;}
.products-slider .product-buttons a { padding-left: 18px !important; }
.product .product-buttons{padding-bottom: 12px; padding-top: 12px; margin: 0 15px; margin-top:4px; border-top: 1px solid #EBEAEA;}
.star-rating {
overflow: hidden;
position: relative;
height: 1em;
line-height: 1em;
font-size: 1em;
width: 5.1em;
font-family: "fontawesome";
}
.star-rating:before {
content: "\f006\f006\f006\f006\f006";
float: left;
top: 0;
left: 0;
position: absolute;
letter-spacing: 0.1em;
}
.star-rating span {
overflow: hidden;
float: left;
top: 0;
left: 0;
position: absolute;
padding-top: 1.5em;
}
.star-rating span:before {
content: "\f005\f005\f005\f005\f005";
top: 0;
position: absolute;
left: 0;
letter-spacing: 0.1em;
}
.product-details .star-rating{float:right;}
.price del .amount,.product-details .price .from{font-size:13px;margin-right:5px;}
.price ins{text-decoration:none;}
.price ins .amount{font-size:18px;text-decoration:none;}
.price > .amount{font-size:18px;}
.product-details-container{border-bottom:1px solid #e7e6e6;padding-bottom:20px;min-height:50px;}
//.product-buttons-container{border-top:1px solid #e7e6e6;margin-top:4px;}
.product-buttons .add_to_cart_button{float:left;font-size:12px;line-height:40px; position:relative; padding-left:15px;}
.product-buttons .add_to_cart_button:before{font-family:"fontawesome";content:"\f07a";position:absolute;left:0;padding-top:2px;}
.product-buttons .align-right {float:right; width:41%;position:relative;line-height:normal !important; display:inline-block;line-height:40px;}
.product-buttons .show_details_button{float:right;font-size:12px; line-height:40px; position:relative; padding-left:15px; text-align:right;}
.product-buttons .show_details_button:before{font-family:"fontawesome";content:"\f03a";position:absolute;left:0;padding-top:2px;}
.product-buttons .button.product_type_variable,.product-buttons .button.product_type_grouped{float:left;font-size:12px;line-height:40px;position:relative; padding-left:15px;}
.product-buttons .button.product_type_variable:before,.product-buttons .button.product_type_grouped:before{font-family:"fontawesome";content:"\f013";position:absolute;left:0;padding-top:2px;}
.product-buttons .button.product_type_simple{float:left;font-size:12px;line-height:40px;position:relative; padding-left:15px;}
.product-buttons .button.product_type_simple:before{font-family:"fontawesome";content:"\f07a";position:absolute;left:0;padding-top:2px;}
.product-buttons .added_to_cart{display:none;}
.product-buttons .button,.product-buttons .show_details_button{width:41%;line-height:normal !important;}
.product-buttons .show_details_button{width:auto !important; max-width:41%;}
.has-sidebar .products-4 .product-buttons .button, .product-buttons .show_details_button { width:36%; }
.has-sidebar .products-4 .product-buttons .show_details_button{width:auto !important; max-width:36%;}
.product-buttons .button{text-align:left;}
.product-images .crossfade-images{display:block;}
.product-images .crossfade-images img{
-webkit-transition: opacity 0.5s ease-in-out;
-moz-transition: opacity 0.5s ease-in-out;
-o-transition: opacity 0.5s ease-in-out;
transition: opacity 0.5s ease-in-out;
position:relative;
z-index:50;
}
.product-images .crossfade-images img:hover{opacity:0;}
.product-images .hover-image{position:absolute !important;}
.woocommerce-pagination .next,.woocommerce-pagination .prev,.woocommerce-pagination .next:hover,.woocommerce-pagination .prev:hover{border:0;}
.product{position:relative;}
.product .images{float:left;margin-right:39px;}
.woocommerce-tabs{clear:both;}
#main .product .product_title{margin-bottom:0px;}
.product .onsale{top:20px;left:15px;}
.product .price{margin:0;margin-top:5px;}
.product .product-border{height:4px;border-top:1px solid #e7e6e6;border-bottom:1px solid #e7e6e6;margin-top:10px;margin-bottom:10px;}
.quantity{border:1px solid #dbdbdb;overflow:hidden;width:95px;}
.quantity .minus,.quantity .plus,.quantity .qty{float:left;border:0;margin:0;padding:0;height:31px;text-align:center;vertical-align:middle;font-size:12px;color:#333;}
.quantity .qty{background:transparent;width:43px;}
.quantity .minus,.quantity .plus{background:#fbfaf9;width:26px;cursor:pointer;}
.quantity .minus,.quantity .qty{border-right:1px solid #dadada;}
.quantity .qty::-webkit-inner-spin-button,
.quantity .qty::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.input-text,.quantity .minus,.quantity .plus{-webkit-appearance:none;border-radius:0;}
form.cart{margin-bottom:40px;margin-top:40px;}
.summary .cart .gform_wrapper { overflow: visible; }
.summary .cart .quantity { float: left; margin-right: 10px;}
.group_table{margin-bottom:10px;}
.group_table tr{vertical-align:top;height:41px;}
.group_table td{vertical-align:middle;height:31px;}
.group_table td.label{padding:0 10px;}
.product_meta > span{display:block;}
.woocommerce-tabs{overflow:hidden;padding-top:50px;}
.woocommerce-tabs > .tabs{list-style:none;padding:0;margin:0;width:220px;float:left;}
.woocommerce-tabs .tabs li a{display:block;padding:10px 0px;border-bottom:1px solid #e7e6e6;}
.woocommerce-tabs .tabs li a .arrow,.woocommerce-tabs .tabs li a:hover .arrow{display:none;}
.woocommerce-tabs .tabs li.active a .arrow,.woocommerce-tabs .tabs li.active a:hover .arrow{display:inline-block;}
.woocommerce-tabs .panel{float:left;border:1px solid #e7e6e6;margin-left:20px;}
.has-sidebar .woocommerce-tabs .panel{width:394px;padding:16px;}
#reviews .overall-rating{float:right;}
#reviews .review-title{margin:0;}
#reviews .review-main-title{margin-bottom:25px;}
#reviews #comments > h2 { font-size: 13px; font-weight: bold; color: #747474;}
#reviews .commentlist{margin-bottom:0;}
#reviews li{margin-bottom:15px;}
#reviews li:last-child{margin-bottom:0;}
#reviews li .comment-text{float:right;padding:15px;border:1px solid #f2efef;margin-left:10px;}
#reviews li .avatar{float:left; max-width: 60px;}
#reviews li .comment-text .meta{display: inline-block;margin-bottom:10px;}
#reviews li .comment-text .star-rating{float:right;margin-left:5px;}
#reviews li .comment-text .description{clear:both;}
#reviews .add_review{margin:0;margin-top:15px;float:right;}
.has-sidebar #reviews li .comment-text{width:292px;}
#review_form_wrapper{margin-top:50px;}
#review_form_wrapper textarea{
width: -moz-calc(100% - 23px);
width: -webkit-calc(100% - 23px);
width: -ms-calc(100% - 23px);
width: -o-calc(100% - 23px);
width: calc(100% - 23px);
}
#reviews #reply-title{font-size:15px;margin:0;margin-bottom:25px;}
.comment-respond .comment-reply-title {margin-top: 0; padding-top: 1em;}
.comment-form-rating label{display:none;}
#reviews .comment-form-comment label{display:block;margin-bottom:4px;}
#reviews input#submit{border:0;font-size:13px;font-weight:bold;}
p.stars {
position: relative;
line-height: 1em;
font-size: 1em;
}
p.stars:after {
content: "";
display: block;
clear: both;
}
p.stars a {
width: 19%;
display: block;
position: relative;
float: left;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: .5em .5em .5em .75em;
background: rgba(0, 0, 0, 0.025);
margin-right: 1%;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
font-weight: bold;
}
p.stars a:hover,
p.stars a.active {
background: rgba(0, 0, 0, 0.075);
}
p.stars a.star-1:after,
p.stars a.star-2:after,
p.stars a.star-3:after,
p.stars a.star-4:after,
p.stars a.star-5:after {
font-family: "FontAwesome";
content: "\f005";
position: absolute;
top: .85em;
width: 5.3em;
right: 1em;
font-size: .5em;
-webkit-border-radius: 1em;
-moz-border-radius: 1em;
border-radius: 1em;
color: #999;
text-align: right;
font-weight: normal;
}
p.stars a.star-1:hover,
p.stars a.star-2:hover,
p.stars a.star-3:hover,
p.stars a.star-4:hover,
p.stars a.star-5:hover {
text-decoration: none;
}
p.stars a.star-1:after {
content: "\f005";
}
p.stars a.star-2:after {
content: "\f005\f005";
}
p.stars a.star-3:after {
content: "\f005\f005\f005";
}
p.stars a.star-4:after {
content: "\f005\f005\f005\f005";
}
p.stars a.star-5:after {
content: "\f005\f005\f005\f005\f005";
}
.related.products,.upsells.products{margin-top:50px;}
.shop_attributes{width:100%;}
.shop_attributes tr{border-bottom:1px solid #e0e0e0;}
.shop_attributes tr:last-child{border-bottom:0;}
.shop_attributes tr th{text-align:left;width:30%;font-weight:bold;padding:5px 0px;}
.shop_attributes tr td{text-align:left;width:70%;padding:5px 0px;}
.shop_attributes p{margin:0;}
.product .images{width:500px;margin-right:30px;}
.product .summary.entry-summary{float:left;width:410px;}
.product .images .flexslider .slides img{width:auto;}
.product .images #slider,.product .images #carousel{margin-bottom:7px;}
.product .images #carousel li{margin-right:9px;opacity:0.5!important;}
.product .images #carousel li.flex-active-slide{opacity:1!important;}
.product .images #slider .flex-direction-nav,.product .images #carousel .flex-direction-nav{display:none;}
.product .images:hover #slider .flex-direction-nav,.product .images:hover #carousel .flex-direction-nav{display:block;}
.has-sidebar .product .images{width:320px;}
.has-sidebar .summary.entry-summary{float:left;width:318px;}
.woocommerce-tabs .panel{width:657px;padding:20px;}
#reviews li .comment-text{width:554px;}
.woocommerce .social-share{text-align:center;border-top:1px solid #e7e6e6;border-bottom:1px solid #e7e6e6;margin-top:50px !important;}
.woocommerce .social-share,.woocommerce .social-share li{list-style:none;margin:0;padding:0;}
.has-sidebar .woocommerce .social-share li,.has-sidebar .woocommerce-container .social-share li{padding:10px 19px !important;}
.woocommerce .social-share li{display:inline-block;text-align:left;width:120px;border-right:1px solid #e7e6e6;padding:10px 30px;}
.woocommerce .social-share li:last-child{border-right:0;}
.woocommerce .social-share li span{display:block;}
.woocommerce-message{margin-bottom:15px;}
.woocommerce-success-message{border-top:1px solid;border-bottom:1px solid;padding:20px 0px;font-size:14px;font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif;margin-bottom:40px;}
.woocommerce-success-message .button{float:right;}
.woocommerce-success-message .msg:before{font-family:'FontAwesome';content:"\f05d";margin-right:5px;}
.woocommerce-success-message .button{font-size:12px;}
.woocommerce-success-message .button:before{font-family:'FontAwesome';content:"\f07a";margin-right:6px;}
.empty-cart-message .msg{font-size:18px;}
.empty-cart-message .msg:before{content:'';}
.login-box{position:absolute;top:auto;left:-1px;z-index:1000;}
.login-box{padding:20px;width:187px;border: 1px solid #dedddd;}
.login-box p{margin:0;padding:0;}
.login-box .forgetmenot{float:left;}
.login-box .submit{float:right;}
.top-menu .cart{background:#f6f6f6;border-right:1px solid;padding-left:25px !important;padding-right:25px !important;padding:0 !important;}
.top-menu .cart > a{display:block;padding-right:0px;text-transform:uppercase;text-align:center !important;min-width:150px;padding:0 13px !important;}
.top-menu .cart > a.empty-cart{width:auto !important;}
.top-menu .cart > a:before{font-family:'FontAwesome';content:"\f07a";margin-right:10px;}
.top-menu .cart > a:after{font-family:'FontAwesome';content:"\f107";margin-left:10px;}
.top-menu .cart-contents{position:absolute;top:auto;right:-1px;z-index:1001;}
.top-menu .cart-contents{border:1px solid;}
.top-menu .cart-content a{display:block;line-height:normal;padding:15px 13px;width:150px;border-bottom:1px solid;overflow:hidden;}
.top-menu .cart-contents .cart-content:last-child a{border-bottom:0;}
.top-menu .cart-content a:hover{background:#f6f6f6;}
.top-menu .cart-content .cart-desc{float:left;}
.top-menu .cart-content a img{float:left;display:inline-block;max-width:36px;margin-right:15px;}
.top-menu .cart-content a .cart-desc{display:inline-block;width:94px;}
.top-menu .cart-contents a span{line-height:normal;}
.top-menu .cart-content a .cart-title, .top-menu .cart-content a .quantity{display:block;font-size:12px;}
.top-menu .cart-content a .cart-title{margin-bottom:5px;}
.cart-checkout{background:#f6f6f6;overflow:hidden; padding:0 15px;}
.cart-checkout a{ display:inline-block; width: 40%; float:left;line-height: 15px;padding: 14px 0; border:none !important; }
.cart-checkout .cart-link a:before{font-family:'FontAwesome';content:"\f07a";position:absolute;left:0;padding-top:1px;}
.cart-checkout .checkout-link a:before{font-family:'FontAwesome';content:"\f046";position:absolute;left:0;padding-top:1px;}
.cart-checkout .cart-link a, .cart-checkout .checkout-link a{position:relative;padding-left:1.1em;}
.checkout-link { float: right; }
#header-sticky .cart, #header .cart{margin-left: 0;}
#header-sticky .cart-contents, #header .cart-contents{position:absolute;top:auto;left:auto;right:0;z-index:100;}
//#header-sticky .cart:hover .cart-contents, #header .cart:hover .cart-contents{display:block;}
#header-sticky .cart-contents, #header .cart-contents{border:1px solid;}
#header-sticky .cart-content a, #header .cart-content a{display:block;line-height:normal;padding:15px !important;width:150px;border-top:0 !important;border-bottom:1px solid !important;line-height:normal !important;height:auto !important;}
#header-sticky .cart-contents .cart-content:last-child a, #header .cart-contents .cart-content:last-child a{border-bottom:0;}
#header-sticky .cart-content a:hover, #header .cart-content a:hover{border-top:0 !important;background:#f6f6f6 !important;height:auto !important;}
#header-sticky .cart-content a img, #header .cart-content a img{display:inline-block;max-width:36px;margin-right:5px;}
#header-sticky .cart-content a .cart-desc, #header .cart-content a .cart-desc{display:inline-block;width:102px;font-size:12px !important;}
#header-sticky .cart-contents a span, #header .cart-contents a span{line-height:normal;}
#header-sticky .cart-content a .cart-title,#header-sticky .cart-content a .quantity,
#header .cart-content a .cart-title,#header .cart-content a .quantity{display:block;font-size:12px !important;}
#header-sticky .cart-content a .cart-title, #header .cart-content a .cart-title{margin-bottom:5px;}
#header-sticky .cart-checkout, #header .cart-checkout{background:#f6f6f6;overflow:hidden;}
#header-sticky .cart-checkout a, #header .cart-checkout a{display:inline-block;width:40%;float:left;line-height: 15px;padding: 14px 0; padding-top:14px !important;height: auto; font-size:12px; border:none !important;}
#header-sticky .cart-checkout .cart-link a:before, #header .cart-checkout .cart-link a:before{font-family:'FontAwesome';content:"\f07a";}
#header-sticky .cart-checkout .checkout-link a:before, #header .cart-checkout .checkout-link a:before{font-family:'FontAwesome';content:"\f046";}
#header-sticky .cart-checkout .cart-link a, #header-sticky .cart-checkout .checkout-link a,
#header .cart-checkout .cart-link a, #header .cart-checkout .checkout-link a{position:relative;padding-left:1.1em;}
#header-sticky .my-cart-link:hover, #header .my-cart-link:hover{border-top-color:transparent !important;}
#header-sticky .my-cart-link:after, #header .my-cart-link:after{font-family:'FontAwesome';content:"\f07a";padding:5px;
border-radius:50%;
-moz-border-radius:50%;
-webkit-border-radius:50%;
border:1px solid;
}
.cart-content a img{border:1px solid;}
#small-nav .cart-contents{position:absolute;top:auto;left:auto;right:0;z-index:100;}
#small-nav .cart-contents{border:1px solid;}
#small-nav .cart-content a{display:block;line-height:normal;padding:15px !important;width:150px;border-top:0 !important;border-bottom:1px solid !important;line-height:normal !important;height:auto !important;}
#small-nav .cart-contents .cart-content:last-child a{border-bottom:0;}
#small-nav .cart-content a:hover{border-top:0 !important;background:#f6f6f6 !important;height:auto !important;}
#small-nav .cart-content a img{display:inline-block;max-width:36px;margin-right:6px;}
#small-nav .cart-content a .cart-desc{display:inline-block;width:102px;font-size:12px !important;text-align: left;}
#small-nav .cart-contents a span{line-height:normal;}
#small-nav .cart-content a .cart-title,#small-nav .cart-content a .quantity{display:block;font-size:12px !important;}
#small-nav .cart-content a .cart-title{margin-bottom:5px;}
#small-nav .cart-checkout{background:#f6f6f6;overflow:hidden;}
#small-nav .cart-checkout a{display:block;line-height: 15px;padding: 14px 0; padding-top:14px !important;height: auto;font-size:12px; border:none !important;}
#small-nav .cart-checkout .cart-link a:before{font-family:'FontAwesome';content:"\f07a";}
#small-nav .cart-checkout .checkout-link a:before{font-family:'FontAwesome';content:"\f046";}
#small-nav .cart-checkout .cart-link a, #small-nav .cart-checkout .checkout-link a{position:relative;padding-left:1.1em;}
#small-nav .my-cart-link:hover{border-top-color:transparent !important;}
#small-nav .my-cart-link:after{font-family:'FontAwesome';content:"\f07a";padding:5px;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;border:1px solid;}
.sticky-header .cart-contents { top: 65px !important; }
.cart-checkout { font-size: 0; }
.cart-checkout .checkout-link, .cart-checkout .cart-link {width:48% !important; display:inline-block; float: none; vertical-align: top;}
.cart-checkout .cart-link { margin-right: 4%; }
.top-menu .cart-checkout .cart-link { margin-right: 1%; }
.cart-checkout .cart-link a { padding-left: 1.4em !important; width: auto !important; display: block !important; float: none !important; text-align: left !important;}
.cart-checkout .checkout-link a { padding-left: 1.4em !important; width: auto !important; display: block !important; float: right !important; text-align: left !important;}
.single_variation_wrap{margin:10px 0px;}
.single_variation_wrap .variations_button .quantity{float:left;}
.single_variation_wrap .variations_button .button{float:left;margin-left:10px;}
table.variations { width: 100%; }
table.variations td {padding-bottom: 5px;}
.variations .label { padding-right: 10px; }
.variations .value { min-width: 150px; }
.single_variation_price_reset .single_variation_wrap{float:left;margin-top:5px;}
.product .single_variation_price_reset .single_variation_wrap .price {margin-top: 0;}
.single_variation_price_reset .reset_variations {float: right;margin-top: 5px;}
.product_list_widget .wp-post-image{max-width:58px;float:right;margin-left:15px;}
.product_list_widget li,.widget_layered_nav li{padding:15px 0px !important;border-bottom:1px solid;overflow:hidden;}
.product_list_widget li a,.widget_layered_nav li a{border-bottom:0 !important;padding:0 !important;}
.product_list_widget li .amount,.product_list_widget li .quantity{font-size:15px;font-weight:bold;padding-top:3px;}
.product_list_widget li .quantity{border:0;}
.product_list_widget li dl{margin:0;}
.product_list_widget li dt, .product_list_widget li dd{margin:0;display:inline;}
.product_list_widget li dt{font-weight:bold;margin-right:5px;}
.product_list_widget li .star-rating{margin:5px 0px;}
.widget_shopping_cart_content .total .amount{display:inline-block;margin-left:25px;}
.widget_shopping_cart_content .buttons{background:#f6f6f6;overflow:hidden;}
.widget_shopping_cart_content .buttons a{display:inline-block;width:50%;float:left;text-indent:10px;margin:0;height:35px;line-height:35px;}
.widget_shopping_cart_content .buttons > a:before{font-family:'FontAwesome';content:"\f07a";margin-right:10px;}
.widget_shopping_cart_content .buttons a.checkout:before{font-family:'FontAwesome';content:"\f046";margin-right:10px;}
.widget_layered_nav li{overflow:hidden;padding:10px 0px !important;}
.widget_layered_nav li a{float:left;}
.widget_layered_nav li .count{float:right;font-size:12px;}
.price_slider_wrapper{border-bottom:1px solid;padding-bottom:18px;}
.price_slider_amount {
text-align: right;
margin-top:15px;
}
.price_slider_amount .button {
}
.price_slider_amount .button {
float: left;
font-weight: bold;
height:25px;
line-height:25px !important;
font-size: 13px;
padding:0 6px;
}
.price_label{
line-height:25px;
}
.price_label .from{margin-left:3px;}
.price_label .from,.price_label .to{font-size:14px;font-weight:bold;}
.ui-slider {
position: relative;
text-align: left;
}
.ui-slider .ui-slider-handle {
position: absolute;
z-index: 2;
width: 12px;
height: 12px;
top: -.3em;
outline:none;
}
.ui-slider .ui-slider-handle:before{
border: 1px solid #333;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
background-color: #fff;
width: 12px;
height: 12px;
outline:none;
content:'';
display:block;
position:absolute;
top:0;left:0;
}
.ui-slider .ui-slider-handle:after{
border: 1px solid #333;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
background-color: #fff;
width: 2px;
height: 2px;
outline:none;
content:'';
display:block;
position:absolute;
top:5px;left:5px;
z-index:3;
}
.ui-slider .ui-slider-handle:last-child {
margin-left: -1em;
}
.ui-slider .ui-slider-range {
position: absolute;
z-index: 1;
font-size:.7em;
display: block;
border: 0;
-webkit-border-radius: 1em;
-moz-border-radius: 1em;
border-radius: 1em;
}
.price_slider_wrapper .ui-widget-content {
-webkit-border-radius: 1em;
-moz-border-radius: 1em;
border-radius: 1em;
}
.ui-slider-horizontal {
height:.5em;
}
.ui-slider-horizontal .ui-slider-range {
top: 0;
height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
left: -1px;
}
.ui-slider-horizontal .ui-slider-range-max {
right: -1px;
}
.tagcloud a{font-size:13px !important;display:inline-block;padding:0 10px;min-height:28px;line-height:28px;border:1px solid; margin: 2px 0;}
.tagcloud a:hover{color:#fff !important;}
.products-slider{position:relative;}
.products-slider ul{}
.products-slider li{margin-right:0 !important;height:auto !important;}
.products-slider li img{display:block;float:left;}
.products-slider .es-nav span{
cursor:pointer;
-webkit-transform:none;
-moz-transform:none;
-o-transform:none;
transform:none;
filter:none;
-ms-filter:none;
}
.products-slider{margin-bottom:25px;}
.products-slider .image-extras h2{margin-bottom:2px !important;}
.products-slider .price{display:inline-block;margin-top:10px;}
.products-slider .price .amount{font-size:25px;}
.products-slider .product-buttons{position:absolute;left:0;width:80%;bottom:10px;padding:0 10%;}
.products-slider .product-buttons .add_to_cart_button:before{padding-top:0;}
.products-slider .product-buttons .show_details_button:before{padding-top:0;}
.products-slider .product-buttons .button.product_type_variable:before,.product-buttons .button.product_type_grouped:before{padding-top:0;}
.products-slider .product-buttons .button.product_type_simple:before{padding-top:0;}
.simple-products-slider { overflow: hidden; }
#main .simple-products-slider .image .image-extras .image-extras-content h3{margin-top:0px !important;margin-bottom:5px !important;font-size:13px !important;}
.simple-products-slider .cats{font-size:11px;margin-bottom:5px;line-height:normal !important;}
.simple-products-slider .price{display:inline-block;margin-bottom:5px;}
.simple-products-slider .price .amount{font-size:18px;}
.simple-products-slider .product-buttons{padding:0;height:auto;}
.simple-products-slider .product-buttons a{display:inline;height:auto;line-height:normal !important;float:none !important;}
.simple-products-slider .product-buttons a:before{margin-right:0 !important;}
.simple-products-slider .product-buttons .show_details_button{margin-left:5px;}
.product-category h3{padding:0 20px;}
#customer_login h2{margin-bottom:5px;}
#customer_login .sep-double{margin-bottom:40px;}
#customer_login_box{border:1px solid;padding:30px;
-webkit-box-sizing:border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing:border-box; /* Firefox, other Gecko */
box-sizing:border-box; /* Opera/IE 8+ */
}
#customer_login .one_half.last{padding-top:29px;}
#customer_login_box .remember-box{padding-left:20px;padding-right:20px;}
#customer_login .col-1, #customer_login .col-2{width:48%;float:left}
#customer_login .col-1{margin-right:4%;}
.myaccount_user_container{display:table-row;}
.myaccount_user_container span{display:table-cell;padding:25px 0px;border-right:1px solid;}
.myaccount_user_container span.msg{padding-left:20px;padding-right:20px;}
.myaccount_user_container span:last-child{border-right:0;padding-left:20px;}
.myaccount_user_container .username{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;font-size:18px;font-weight:normal;}
.myaccount_user_container .username:before{font-family:'FontAwesome';content:"\f05d";margin-right:5px;}
.myaccount_user_container .view-cart a{text-transform:uppercase;}
.myaccount_user_container .view-cart a:before{font-family:'FontAwesome';content:"\f07a";margin-right:10px;}
.myaccount_user {display:none;}
.avada_myaccount_user{display:table;width:100%;border-top:1px solid;border-bottom:1px solid;margin-bottom:30px !important;}
#main .avada-myaccount-data{overflow:visible;}
.avada-myaccount-data h2, .avada-myaccount-data .digital-downloads, .avada-myaccount-data .my_account_orders, .avada-myaccount-data .myaccount_address, .avada-myaccount-data .addresses,
.avada-myaccount-data .edit-account-heading, .avada-myaccount-data .edit-account-form, .edit-address
{display:none;}
.avada-myaccount-data .digital-downloads,
.avada-thank-you .order_details
{list-style:none;margin:10px 0 0;padding:0;}
.avada-myaccount-data .digital-downloads li,
.avada-thank-you .order_details li
{line-height: 18px;margin: 0 0 15px;padding: 0 0 0 25px;}
.avada-myaccount-data .digital-downloads li:before,
.avada-thank-you .order_details li:before
{border-radius: 75px;font-size: 9px;text-align: center;content:'\f00c';display: inline-block;float: left;font-family: FontAwesome;font-style: normal;font-weight: normal;
height: 18px;margin-left: -25px;margin-right: 0;text-decoration: inherit;width: 18px;}
.avada-myaccount-data .my_account_orders .order-total{border-top: none;}
.avada-myaccount-data .my_account_orders.shop_table tbody tr {height:46px;}
.avada-myaccount-data .addresses .col-1, .avada-myaccount-data .addresses .col-2,
.avada-customer-details .addresses .col-1, .avada-customer-details .addresses .col-2
{width:48%;float:left;}
.avada-myaccount-data .addresses .col-1,
.avada-customer-details .addresses .col-1
{margin-right:4%;}
.avada-myaccount-data .addresses .title,
.avada-customer-details .addresses .title
{margin-top:0;border-bottom: 1px solid;margin-bottom: 15px !important;padding-bottom: 5px!important;display:block;}
.avada-myaccount-data .addresses .title h3,
.avada-customer-details .addresses .title h3
{font-weight:bold;}
.avada-myaccount-data .addresses .title .edit{display: inline-block;margin: 2px 0 0 10px;}
@-moz-document url-prefix() {
.avada-myaccount-data .addresses .title .edit{margin-top:3px;}
}
.avada-myaccount-data .input-text {padding: 8px 15px;}
.avada-myaccount-data #billing_country_chosen,
.avada-myaccount-data #billing_state_chosen,
.avada-myaccount-data #shipping_country_chosen,
.avada-myaccount-data #shipping_state_chosen,
.avada-checkout #billing_country_chosen,
.avada-checkout #billing_state_chosen,
.avada-checkout #shipping_country_chosen,
.avada-checkout #shipping_state_chosen
{width:100%!important;}
.avada-order-details{margin-bottom:20px;}
.avada-order-details .shop_table.order_details .product-total{text-align:right;}
.avada-order-details .shop_table.order_details tfoot tr{border:none;}
.avada-order-details .shop_table.order_details tfoot tr th{border:none;}
.avada-order-details .shop_table.order_details tfoot tr td{padding-top:0;}
.avada-order-details .shop_table.order_details tfoot tr:last-child td{padding-top:10px;}
.avada-order-details .order-again{margin:15px 0 0 0;text-align:right;}
.avada-order-details .shop_table.order_details tfoot tr:last-child .amount{font-size:18px;font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;}
.avada-customer-details .customer_details dt, .avada-customer-details .customer_details dd {display: inline-block;margin: 0;}
.avada-customer-details .customer_details dt{font-weight:bold;}
.avada-thank-you{margin-bottom:20px;}
#main .cart-empty {float: left;font-size: 18px;border-top: 1px solid;border-bottom: 1px solid;width:50%;line-height:55px!important;height:55px!important;}
#main .return-to-shop {float: left;border-top: 1px solid;border-bottom: 1px solid;width:50%;text-align:right;line-height:55px!important;height:55px!important;}
.return-to-shop .wc-backward:before{content:"\f07a";font-family:fontawesome;margin-right:10px;}
.woocommerce-side-nav{float:left;list-style:none;margin:0;padding:0;width:220px;}
.woocommerce-side-nav li a{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;display:block;height:36px;line-height:36px;border-bottom:1px solid;}
.woocommerce-side-nav li.active a:after{font-family:'FontAwesome';content:"\f105";margin-left:5px;}
.woocommerce-content-box{float:left;border:1px solid;padding:30px;margin-left:20px;width:698px;overflow:hidden;
-webkit-box-sizing:border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing:border-box; /* Firefox, other Gecko */
box-sizing:border-box; /* Opera/IE 8+ */
}
.woocommerce-content-box.full-width{margin-left:0;width:100%;float:none;}
.woocommerce-content-box.no-bottom-space{padding-bottom:0;}
.woocommerce-content-box.one_half{margin-left:0;width: 48%;margin-right: 4%; float: left; margin-bottom:20px; position:relative;}
.woocommerce-content-box.avada-checkout {
overflow: visible;
}
.woocommerce-content-box h2{border-bottom:1px solid;padding-bottom:10px;margin-bottom:30px !important;}
.available-downloads{margin-bottom:50px !important;}
.my_account_orders{width:100%;text-align:left;margin:0;}
.my_account_orders tr{border-bottom:1px solid;}
.my_account_orders tbody tr:last-child{border-bottom:0;}
.my_account_orders thead tr th{padding-bottom:12px;font-weight:bold;font-size:13px !important;}
.my_account_orders thead tr th{height:auto;line-height:normal;}
.my_account_orders .order-number a{font-size:18px;font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;}
.my_account_orders .order-actions a{display:block;}
.my_account_orders .order-actions a:after{font-family:'FontAwesome';content:"\f105";margin-left:10px;}
#main .page-info{margin-bottom:10px !important;}
.woocommerce .addresses{margin-top:40px;overflow:hidden;}
.woocommerce .address h4{font-weight:bold;margin-top:0;border-bottom:1px solid;padding-bottom:5px;}
.woocommerce address{font-style:normal;margin-bottom:20px;}
.woocommerce .address .edit{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;}
.woocommerce .address .edit:after{font-family:'FontAwesome';content:"\f105";margin-left:10px;}
.checkout .input-text {padding: 8px 15px;}
.shop_table{width:100%;text-align:left;margin:0;}
.shop_table tr{border-bottom:1px solid;}
.shop_table td{padding: 10px 0;}
.shop_table tbody tr:last-child{border-bottom:0;}
.shop_table thead tr th{padding-bottom:12px;font-weight:bold;font-size:13px !important;}
.shop_table thead tr th{height:auto;line-height:normal;}
.shop_table tbody tr{height:140px;}
.shop_table .product-thumbnail{width:90px;margin-right:25px;float:left;}
.shop_table .product-thumbnail img{max-width:90px;}
.shop_table .product-name{width:50%;}
.shop_table .product-title a{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;}
.product-info {margin-left: 115px;margin-top: 20px;}
.shop_table .product-thumbnail .product-info{margin-top:20px;}
.shop_table .product-thumbnail .product-info .variation dt {float: left; margin-right: 5px; }
.shop_table .product-thumbnail .product-info .variation dd {margin-left: 0; }
.shop_table .product-remove a{font-size:24px;float:right;}
.shop_table .product-price{text-align:center;}
.shop_table .product-quantity{text-align:left;}
.checkout .shop_table .product-quantity{text-align:initial;}
.shop_table .product-quantity .quantity{margin:0 auto;}
.shop_table .product-subtotal{text-align:center;}
.shop_table .product-subtotal .amount{font-size:18px;font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;}
.shop_table .product-remove{width:5%;}
.shop_table .variation dt, .shop_table .variation dd {margin:0; display:inline-block;}
.shop_table .variation p {margin-bottom: 5px;}
.one_half_container{float:left;}
.cart-collaterals{margin-top:20px;overflow:hidden;}
.cart-collaterals .one_half .woocommerce-content-box{margin-bottom:20px;}
.cart-collaterals .form-row input {padding: 9px 15px;}
.shipping-calculator-form-nohide #calc_shipping_state{min-width:100%;}
.shipping-calculator-form-nohide .button{float:right;}
.coupon{overflow:hidden;}
.coupon .input-text{float:left;width:300px;padding: 8px 15px;}
.coupon .button{float:left;margin-top:2px;}
.cart-totals-container .button{display:block;}
.shipping-coupon{float:left;width:48%;margin-right:4%;}
.cart_totals {float: left; width: 48%;}
.shipping_calculator {margin-bottom:20px;}
.shipping-calculator-form{display:block!important;}
.shipping-calculator-form .one_half .avada-select-parent{margin-bottom:0;}
.shipping-calculator-button:hover{color:inherit!important;cursor:auto;}
.cart-collaterals .shipping_calculator #calc_shipping_state{min-width:150px;}
.cart-collaterals .shipping_calculator #calc_shipping_postcode { height: 36px; }
.woocommerce p.one_half {margin-left:0;margin-right:4%;}
.coupon .button{margin-top:0;}
.order-total {border-top: 1px solid;height: 50px;}
.order-total th, .order-total td {padding-top: 20px;}
.checkout .order-total{ border:none; height:auto;}
.checkout .order-total th, .checkout .order-total td {padding-top: 0;}
.cart_totals .order-total .amount{font-size:18px;font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;}
.cart_totals table{width:100%;text-align:left;}
.cart_totals table th{width:50%;padding-bottom:20px;}
.cart_totals table td{width:50%;padding-bottom:20px;text-align:right;}
.cart_totals table .total th,.cart_totals table .total td{padding-top:20px;}
.cart_totals .cart-subtotal td,.cart_totals .total td{text-align:right;}
.cart_totals .cart-subtotal td strong{font-weight:normal;}
.cart_totals .total{border-top:1px solid;height:50px;}
#shipping_method{list-style:none !important;margin:0 !important;padding:0 !important;float:right;text-align:right;}
.cart_totals .button{float:right;display:block;}
.cart_totals .checkout-button{clear:both;margin-top:10px;width:185px !important;}
.woocommerce form.checkout .col-2, .woocommerce form.checkout #order_review_heading, .woocommerce form.checkout #order_review {
display: none;
}
#wrapper .custom_select_box .dd-container .dd-select,#wrapper .custom_select_box .dd-options li a{background:#fbfaf9 !important;background-image:none !important;}
#wrapper .custom_select_box .dd-container .dd-selected{padding:0 !important;text-indent:10px;padding-right:15px !important;}
#wrapper .custom_select_box .dd-options li a:hover{background-color:transparent !important;}
#wrapper .custom_select_box .dd-pointer{background-image:none !important;width:10px !important;border-left:1px solid !important;padding-left:10px;}
#wrapper .custom_select_box .dd-pointer-down:after{font-family:'FontAwesome' !important;content:"\f107";font-weight:bold;}
#wrapper .custom_select_box .dd-options{position:absolute !important;top:auto !important;max-height:143px;}
#wrapper .custom_select_box .dd-pointer-down{border-color:#dadada !important;}
#billing_country_field > label, #shipping_country_field > label {
padding-right: 5px;
}
#billing_country_field > label:after, #shipping_country_field > label:after {
content: ":";
}
.admin-bar p.demo_store {
top: 32px;
}
p.demo_store {
position: fixed;
top: 0;
left: 0;
right: 0;
margin: 0;
width: -moz-calc(100%-20px);
width: -webkit-calc(100%-20px);
width: -ms-calc(100%-20px);
width: -o-calc(100%-20px);
width: calc(100%-20px);
font-size: 16px;
padding: 10px;
text-align: center;
background: #A0CE4E;
color: #ffffff;
z-index: 99998;
}
.woocommerce-invalid:after { content: 'Please enter correct details for this required field.'; display: inline-block; margin-top: 5px; color: red; }
.product .entry-summary .price { float: left; margin-top: 10px; }
.product .entry-summary .woocommerce-product-rating { float: left; margin-left: 20px; margin-top: 11px; }
.product .entry-summary .woocommerce-product-rating .star-rating { display: inline-block; }
.product .entry-summary .woocommerce-product-rating .woocommerce-review-link { position: relative; top: -2px; }
/*.post-content .gform_wrapper .ginput_complex .ginput_left, .post-content .gform_wrapper .ginput_complex .ginput_right, .post-content .gform_wrapper .ginput_complex .ginput_full,.post-content .gform_wrapper .ginput_complex{overflow:visible;}
.chzn-container-single .chzn-single,.chzn-drop{background:#fbfaf9 !important;border-bottom:1px solid !important;
border-radius:0 !important;
box-shadow:none !important;
}
.chzn-container-single .chzn-single div{border-left:1px solid;padding-left:10px;}
#wrapper .chzn-container-single .chzn-single div b{background:none !important;}
#wrapper .chzn-container-single .chzn-single div b:after{font-family:'FontAwesome' !important;content:"\f107";font-weight:bold;}
#wrapper .chzn-container-single .chzn-single-with-drop div b:after{font-family:'FontAwesome' !important;content:"\f106";font-weight:bold;}
*/
#wrapper .chzn-container-single .chzn-single div b{background:none !important;}
#billing_country_field .select-arrow, #shipping_country_field .select-arrow, #billing_state_field .select-arrow, #shipping_state_field .select-arrow{ height: 34px; line-height: 34px; }
.wpcf7-select-parent {
overflow: hidden !important;
position: relative;
width: 100%;
}
.wpcf7-select-parent .select-arrow {
//background: #fbfaf9;
width: 35px;
height: 33px;
border-left: 1px solid #dadada;
position: absolute; top: 1px; right: 1px;
pointer-events: none;
z-index: 10;
font-family: 'FontAwesome';
text-align: center;
line-height: 33px;
}
.wpcf7-select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
text-indent: 0.01px;
text-overflow: '';
-o-appearance: none;
-ms-appearance: none;
background: #fbfaf9;
border: 1px solid #dadada;
/*box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;*/
color: #333333;
cursor: pointer;
display: block;
font-size: 13px;
outline: none;
height: auto;
/*overflow: ellipsis;*/
width: 100%;
padding: 8px 15px;
position: relative;
text-indent: 0.01px;
/*text-overflow: '';
-webkit-text-overflow: none;
-moz-text-overflow: none;
-o-text-overflow: none;*/
vertical-align: middle;
z-index: 5;
margin: 0;
border-radius: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
}
.gravity-select-parent {
position: relative;
overflow: hidden;
}
.gravity-select-parent .select-arrow {
//background: #fff;
width: 35px;
height: 34px;
border-left: 1px solid #dadada;
position: absolute; top: 1px; right: 3px;
pointer-events: none;
z-index: 10;
font-family: 'FontAwesome';
text-align: center;
line-height: 31px;
}
.gravity-select-parent select {
appearance: none;
-webkit-appearance: none;
text-indent: 0.01px;
text-overflow: '';
-o-appearance: none;
-ms-appearance: none;
background: #fbfaf9;
border: 1px solid #dadada;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
color: #333333;
cursor: pointer;
display: block;
font-size: 13px;
outline: none;
height: auto;
/*overflow: ellipsis;*/
padding: 8px 15px !important;
position: relative;
text-indent: 0.01px;
/*text-overflow: '';
-webkit-text-overflow: none;
-moz-text-overflow: none;
-o-text-overflow: none;*/
vertical-align: middle;
z-index: 5;
margin: 0;
border-radius: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
min-width: 90px;
}
.select-arrow {
//background: #fff;
width: 35px;
height: 34px;
border-left: 1px solid #dadada;
position: absolute; top: 1px; right: 1px;
pointer-events: none;
z-index: 10;
font-family: 'FontAwesome';
text-align: center;
line-height: 31px;
}
@-moz-document url-prefix() {
.wpcf7-select-parent .wpcf7-select {
width: 99.9%;
}
.wpcf7-select-parent .select-arrow {
height: 35px;
line-height: 35px;
}
.gravity-select-parent select {
margin-left: 0 !important;
}
}
.ginput_complex .select-arrow {
right: 4%;
}
.avada-select-parent {
position: relative;
overflow: hidden !important;
}
#billing_country_field .avada-select-parent,
#shipping_country_field .avada-select-parent,
#billing_state_field .avada-select-parent,
#shipping_state_field .avada-select-parent,
.shipping-calculator-form .avada-select-parent {
overflow: visible !important;
}
.bbpress .avada-select-parent {
overflow: hidden;
}
.avada-select-parent select {
appearance: none;
-webkit-appearance: none;
text-indent: 0.01px;
text-overflow: '';
-o-appearance: none;
-ms-appearance: none;
background: #fbfaf9;
border: 1px solid #dadada;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
color: #333333;
cursor: pointer;
display: block;
font-size: 13px;
outline: none;
height: auto;
padding: 8px 15px !important;
position: relative;
text-indent: 0.01px;
/*text-overflow: '';
-webkit-text-overflow: none;
-moz-text-overflow: none;
-o-text-overflow: none;*/
vertical-align: middle;
z-index: 5;
margin: 0;
border-radius: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
min-width: 200px;
}
.shipping-calculator-form .avada-select-parent select {
padding-top: 10px !important;
}
.avada-select-parent .avada-select-arrow {
//background: #fff;
width: 35px;
height: 34px;
border-left: 1px solid #dadada;
position: absolute; top: 1px; right: 3px;
pointer-events: none;
z-index: 10;
font-family: 'FontAwesome';
text-align: center;
line-height: 31px;
}
.woocommerce .avada-select-parent select, #bbpress-forums .avada-select-parent select {
width: 99.99%;
}
#bbpress-forums fieldset select#bbp_forum_id { max-width: none; }
.woocommerce .lost_password {
margin-top: 7px;
}
form.checkout #shipping,form.checkout #payment-container{display:none;}
form.checkout #billing_first_name_field, form.checkout #shipping_first_name_field{float:left;width:48%;}
form.checkout #billing_last_name_field, form.checkout #shipping_last_name_field{float:right;width:48%;}
form.checkout .continue-checkout{float:right;}
form.checkout label{margin-bottom:2px;display:inline-block;}
form.checkout .shop_table tbody .product-thumbnail{width:90px;}
form.checkout .shop_table th.product-total{width:40%;text-align:right;}
form.checkout .shop_table tbody .product-total{width:40%;text-align:right;}
form.checkout .shop_table .product-thumbnail .product-info{float:none;}
form.checkout .shop_table .product-thumbnail .product-info p{margin-left:115px;}
form.checkout .shop_table tfoot{border-top:1px solid;border-bottom:1px solid;}
form.checkout .shop_table tfoot tr{border-bottom:0;}
form.checkout .shop_table tfoot th{text-align:right;padding-right:100px;padding-bottom:20px;}
form.checkout .shop_table tfoot td{width:100%;text-align:right;padding-bottom:20px;}
form.checkout .shop_table tfoot tr:first-child th,form.checkout .shop_table tfoot tr:first-child td{padding-top:20px;}
form.checkout .shop_table tfoot .order-total .amount{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;font-size:18px;font-weight:normal;}
form.checkout .payment_methods{list-style:none;margin:0;padding:0;margin-top:40px;}
form.checkout .payment_methods li{margin-bottom:30px;}
form.checkout .payment_methods label{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;}
form.checkout .payment_methods .payment_box{padding:20px;margin-top:10px;}
form.checkout #place_order {float: right;}
#thank-you-box{margin-bottom:20px;}
#final-order-details .woocommerce-content-box{margin-bottom:20px;}
#final-order-details .shop_table{margin-bottom:30px;}
#final-order-details .shop_table .product-thumbnail .product-info{float:none;}
#final-order-details .shop_table .product-subtotal{text-align:right;}
#final-order-details .shop_table .product-total{text-align:right;}
#final-order-details .shop_table tr:last-child{border-bottom:1px solid;}
#final-order-details .mini-order-details{float:right;width:50%;}
#final-order-details .mini-order-details tr{border-bottom:0;}
#final-order-details .mini-order-details th{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;padding-bottom:10px;text-align:left;}
#final-order-details .mini-order-details td{text-align:right;padding-bottom:10px;}
#final-order-details .mini-order-details tr:last-child .amount{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;font-size:18px;font-weight:normal;}
#final-order-details .mini-order-details tr:last-child{border-top:1px solid;}
#final-order-details .mini-order-details tr:last-child th,#final-order-details .mini-order-details tr:last-child td{padding-top:10px;padding-bottom:0;}
#final-order-details .customer_details{list-style:none;margin:0;padding:0;}
p.order-info {border-bottom: 1px solid;border-top: 1px solid;line-height: normal;margin-bottom: 50px;padding: 20px 0;}
p.order-info mark{background-color:transparent;font-weight:bold;}
.product-images{position:relative;}
.cart-loading{display:block;height:70px;width:70px;line-height:70px;font-size:25px;color:#fff;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
position:absolute;
top:50%;
left:50%;
margin-top:-35px;
margin-left:-35px;
z-index:100;
display:none;
}
#wrapper .cart-loading{background-color:rgba(0,0,0,0.8) !important;}
.no-rgba #wrapper .cart-loading{background-color:#000;}
.cart-loading .icon-spinner{
-webkit-animation: mask 3s infinite alternate;
-moz-animation: mask 3s infinite alternate;
-ms-animation: mask 3s infinite alternate;
-o-animation: mask 3s infinite alternate;
animation: mask 3s infinite alternate;
display:inline-block;
}
@-webkit-keyframes mask {
25% { -webkit-transform: rotate(270deg); }
50% { -webkit-transform: rotate( 90deg); }
75% { -webkit-transform: rotate(360deg); }
100% { -webkit-transform: rotate(180deg); }
}
@-moz-keyframes mask {
25% { -moz-transform: rotate(270deg); }
50% { -moz-transform: rotate( 90deg); }
75% { -moz-transform: rotate(360deg); }
100% { -moz-transform: rotate(180deg); }
}
@-ms-keyframes mask {
25% { -ms-transform: rotate(270deg); }
50% { -ms-transform: rotate( 90deg); }
75% { -ms-transform: rotate(360deg); }
100% { -ms-transform: rotate(180deg); }
}
@-o-keyframes mask {
25% { -o-transform: rotate(270deg); }
50% { -o-transform: rotate( 90deg); }
75% { -o-transform: rotate(360deg); }
100% { -o-transform: rotate(180deg); }
}
@keyframes mask {
25% { transform: rotate(270deg); }
50% { transform: rotate( 90deg); }
75% { transform: rotate(360deg); }
100% { transform: rotate(180deg); }
}
.woocommerce .thumbnails .clients-carousel .es-carousel{padding:0;}
.added_to_cart{display:none !important;}
#sidebar .products a, .footer-area .products a,#slidingbar-area .products a{
padding:0 !important;
border:0 !important;
background:none !important;
}
#sidebar .products .product-title, .footer-area .products .product-title, #slidingbar-area .products .product-title{
margin:0 !important;margin-bottom:10px !important;
}
.footer-area .product_list_widget li,#slidingbar-area .product_list_widget li{border:0 !important;border-bottom: 1px solid #282a2b !important;}
.footer-area .product_list_widget li a,#slidingbar-area .product_list_widget li a{border:none !important;}
.footer-area .widget_shopping_cart_content .total,#slidingbar-area .widget_shopping_cart_content .total{margin:10px 0px;}
.footer-area .widget_shopping_cart_content .buttons,#slidingbar-area .widget_shopping_cart_content .buttons{background:#282a2b !important;}
.footer-area .products-slider a,.footer-area .simple-products-slider a,#slidingbar-area .products-slider a,#slidingbar-area .simple-products-slider a,#sidebar .products-slider a,#sidebar .simple-products-slider a{border:0 !important;background:none !important;margin:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;display:inline-block !important;width:auto;}
.footer-area .products-slider li .image,#slidingbar-area .products-slider li .image{width:auto;height:auto;}
.footer-area .simple-products-slider .es-carousel,#slidingbar-area .simple-products-slider .es-carousel{padding-left:38px;}
.footer-area .simple-products-slider .es-carousel li,.footer-area .simple-products-slider .es-carousel li .image,#slidingbar-area .simple-products-slider .es-carousel li,#slidingbar-area .simple-products-slider .es-carousel li .image{width:149px;height:auto;}
.footer-area .image-extras-content h3,#slidingbar-area .image-extras-content h3,#sidebar .image-extras-content h3{margin-bottom:0;text-transform:none;margin-bottom:5px;}
.footer-area .product-category mark,#slidingbar-area .product-category mark,#sidebar .product-category mark{background-color:transparent;color:inherit;}
.footer-area .product-category h3,#slidingbar-area .product-category h3,#sidebar .product-category h3{margin-bottom:0;}
.products-slider .product-buttons .product_type_variable, .products-slider .product-buttons .show_details_button, .products-slider .product-buttons .add_to_cart_button { padding-left: 15px !important; max-width: 41% !important; }
.section-separator {
position: relative;
}
.divider-candy {
position: absolute;
left: 50%;
margin-left: -20px;
height: 40px;
width: 40px;
z-index: 100;
border-bottom: 1px solid #E6E5E6;
border-left: 1px solid #E6E5E6;
background:#ffffff;
content: "";
}
.divider-candy.bottom {
bottom: -21px;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.divider-candy.top {
top: -21px;
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-o-transform: rotate(135deg);
-ms-transform: rotate(135deg);
transform: rotate(135deg);
}
.section-separator .icon {
position: absolute;
left: 50%;
top: -10px;
margin-left: -20px;
width: 40px;
font-size: 20px;
z-index: 200;
font-family: fontawesome;
}
.section-separator .icon:after {
display: block;
text-align: center;
}
/* RTL */
.rtl{direction:rtl;unicode-bidi:embed;}
.rtl .alignleft{float:right;margin-right:0;margin-left:15px;}
.rtl .alignright{float:left;margin-left:0;margin-right:15px;}
.rtl .more a:after,.rtl .read-more:after{content:'';padding-left:0;}
.rtl .more a:before,.rtl .read-more:before{
font-family: FontAwesome;
content:'\f053';
color:#000;
font-size:8px;
padding-right:5px;
}
.rtl .sb_toggle { left: 0; -ms-transform: rotate(-90deg); -webkit-transform: rotate(-90deg); transform: rotate(-90deg); right: auto; }
.rtl .sb_toggle.open:after { left: 32px; top: -8px; -ms-transform: rotate(-90deg); -webkit-transform: rotate(-90deg); transform: rotate(-90deg); }
.rtl .header-social .alignright{float:right;}
.rtl .header-social .alignleft{float:left;}
.rtl .header-social .menu > li{float:right;}
.rtl .header-social .menu > li:hover .sub-menu{left:auto;right:0;}
.rtl .header-social .cart-contents{left:auto;right:-1px;}
.rtl .header-social .cart-content a img{margin-right:0;margin-left:15px; float:right;}
.rtl .header-social .cart-content .cart-desc {float: right;}
.rtl .header-social .alignright .menu > li:first-child{border-left:1px solid;}
.rtl .header-social .alignright .menu li:last-child{padding-right:8px;}
.rtl .header-social .alignright .social-networks li{float:right;margin-right:0;margin-left:20px;}
.rtl #small-nav .cart-contents {left: 35px; right: auto;}
.rtl #small-nav .cart-content a img, .rtl #header .cart-content a img {margin-left: 6px; margin-right: 0;}
.rtl #small-nav .cart-content a .cart-desc {text-align: right;}
.rtl .cart-checkout .cart-link {margin-left: 4%;margin-right: 0;}
.rtl .top-menu .cart-checkout .cart-link {margin-left: 1%;margin-right: 0;}
.rtl .cart-checkout .checkout-link a {float: left !important;}
.rtl #header-sticky .logo, .rtl #header .logo{float:right;}
.rtl .main-nav-search-form {left:0;right: auto;}
.rtl #header nav#nav, .rtl .sticky-header nav#sticky-nav {float:left;}
.rtl #header-sticky ul.navigation > li,.rtl #header ul.navigation > li{float:right;padding-right:0;padding-left:35px;}
.rtl #header-sticky ul.navigation > li:last-child,.rtl #header ul.navigation > li:last-child{padding-left:0;}
.rtl #header-sticky .cart-contents,.rtl #header .cart-contents{right:auto; left: 0;}
.rtl #header #nav ul ul, .rtl .sticky-header #sticky-nav ul ul{left:auto; text-align:right;}
.rtl #header #nav ul ul li:hover ul,.rtl #small-nav #nav ul ul li:hover ul, .rtl .sticky-header #sticky-nav ul ul li:hover ul{right:170px;}
.rtl .header-v4 #nav{float:right;}
.rtl .header-v4 #small-nav ul.navigation > li,.rtl .header-v5 #small-nav ul.navigation > li{padding-right:0;padding-left:35px;float:right;}
.rtl .header-v4 #header .tagline{float:left; text-align:left !important;}
.rtl .header-v4 #header .search{float:left; margin-left:0 !important; margin-right:15px !important;}
.rtl .header-v5 #nav{float:none;text-align:center;}
.rtl .header-v5 #nav > ul{float:none;display: inline-block;margin-bottom: -3px;}
.rtl #header-sticky.sticky-header .logo { float: right !important; }
.rtl #nav ul ul, .rtl #sticky-nav ul ul {right: 0; left: auto;}
.rtl .header-social .menu > li:hover > .sub-menu > li:hover .sub-menu{left:auto;right:100px;}
.rtl #wrapper .dd-container .dd-pointer{left:0;right:auto;border-left:0;border-right:1px solid;}
.rtl #wrapper .dd-container .dd-selected{text-align:right;}
.rtl .menu-item-language img.iclflag{margin-right:0;margin-left:5px;}
.rtl #sidebar .widget_nav_menu li a,.rtl #sidebar .widget_categories li a,
.rtl #sidebar .widget .recentcomments,.rtl #sidebar .widget_recent_entries li a,
.rtl #sidebar .widget_archive li a,.rtl #sidebar .widget_pages li a,
.rtl #sidebar .widget_links li a,.rtl .side-nav .arrow{
padding-right:0;
}
.rtl #sidebar .widget_nav_menu li a:before,.rtl #sidebar .widget_categories li a:before,
.rtl #sidebar .widget .recentcomments:before,.rtl #sidebar .widget_recent_entries li a:before,
.rtl #sidebar .widget_archive li a:before,.rtl #sidebar .widget_pages li a:before,
.rtl #sidebar .widget_links li a:before,.rtl .side-nav .arrow:after,
.rtl .woocommerce-tabs .tabs a:hover .arrow:after,.rtl .woocommerce-tabs .tabs li.active a .arrow:after,
.rtl .widget_layered_nav li a:before,.rtl .widget_product_categories li a:before{
font-family: FontAwesome !important;
content:'\f053';
color:#333333;
font-size:8px;
padding-right:0;
padding-left:10px;
float:right;
}
.rtl .meta-info .alignleft{float:right;margin-right:0;margin-left:15px;text-align:right;}
.rtl .meta-info .alignright{float:left;margin-left:0;margin-right:15px;}
.rtl .page-title-captions { float: right; }
.rtl .page-title ul{float:left;text-align:left;}
.rtl .page-title ul li a { padding-left: 5px; padding-right: 0; unicode-bidi: embed;}
.rtl .fontawesome-icon{margin-right:0px;margin-left:10px;float:right;}
.rtl .content-boxes .heading .fontawesome-icon{float:right;}
.rtl ul.list-icon li{padding: 0 25px 0 0;text-align: right;}
.rtl ul.list-icon li:before{float: right;margin-right: -25px;}
.rtl .avada-container.layout-thumbnails-on-side .flexslider{float:right;margin-right:0;margin-left:20px;}
.rtl .meta li{float:right;border-left:0;border-right:1px solid;}
.rtl .meta li:first-child{padding-right:0;padding-left:9px;border-right:0;}
.rtl .continue{float:left;}
.rtl #jtwt .jtwt_tweet{background-position:top right !important;padding-left:0 !important;padding-right:45px !important;}
.rtl .social-networks{float:left;}
.rtl .social-networks li{float:left;margin-left:0;margin-right:20px;}
.rtl .review blockquote div{float:right;}
.rtl .review blockquote div .company-name{background-position:top right;padding-left:0;padding-right:53px;}
.rtl .review blockquote div:after{left:auto;right:23px;}
.rtl #main .title h1,.rtl #main .title h2,.rtl #main .title h3,.rtl #main .title h4,.rtl #main .title h5,.rtl #main .title h6{padding-right:0 !important;padding-left:8px !important;}
.rtl .content-boxes .heading-and-icon h2{padding-left:0;padding-right:0px;}
.rtl .post-content ul.arrow li{padding-left:0;padding-right:25px;}
.rtl .post-content ul.arrow li:before{float:right;margin-left:0;margin-right:-25px;
-webkit-transform:rotate(180deg);
-moz-transform:rotate(180deg);
-o-transform:rotate(180deg);
}
.rtl .tab-holder .tabs li{float:right;}
.rtl h5.toggle span.arrow{float:right;margin-right:0;margin-left:18px;}
.rtl .progress-bar-content{float:left;}
.rtl #sidebar .social-networks li,.rtl .social_links_shortcode li{float:right !important;}
.rtl .person-author-wrapper{float:right;}
.rtl .person-author .social-icon{float:left;margin-left:0;margin-right:19px;}
.rtl .full-boxed-pricing .column{float:right;}
.rtl .full-boxed-pricing .column:first-child{float:right;border-right:1px solid;}
.rtl .sep-boxed-pricing .column{float:right;}
.rtl .side-nav{border-right:0;border-left:1px solid;}
.rtl .side-nav li a{padding-right:10px !important;}
.rtl .side-nav ul.children{margin-left:0;margin-right:15px;}
.rtl .side-nav li.current_page_item > a{border-right:0;border-left:3px solid;}
.rtl .woocommerce-tabs .tabs li .arrow{display:none;}
.rtl .side-nav .arrow,.rtl .woocommerce-tabs .tabs li a:hover .arrow,.rtl .woocommerce-tabs .tabs li.active a .arrow{height:15px;margin-left:0;margin-right:5px;display:inline-block;}
.rtl #comment-input input{float:right;}
.rtl #comment-input input:first-child{margin-right:0;}
.rtl #comment-input input:last-child{margin-right:1%;}
.rtl .portfolio-tabs li,.rtl .faq-tabs li{float:right;margin-right:0px;margin-left:30px;}
.rtl .portfolio-item .buttons{overflow:hidden;}
.rtl .portfolio-item .buttons a{float:right;margin-right:0;margin-left:30px;}
.rtl .portfolio-one .portfolio-item .image{float:right;margin-right:0;margin-left:25px;}
.rtl .project-content .project-description{float:right;}
.rtl .project-content .project-info{float:left;}
.rtl .project-content .project-info h4{float:right;}
.rtl .project-content .project-info .project-terms{float:right;}
.rtl .portfolio-half .flexslider{float:right;}
.rtl .portfolio-half .project-content{float:left;}
.rtl .share-box h4{float:right;}
.rtl .share-box li{margin-right:0;margin-left:29px;}
.rtl .commentlist div.avatar{float:right;margin-right:0;margin-left:15px;}
.rtl .about-author div.avatar{float:right;margin-right:0;margin-left:20px;}
.rtl .medium-alternate .date-and-formats{float:right;margin-right:0;margin-left:17px;}
.rtl .medium-alternate .flexslider{float:right;margin-right:0 !important;margin-left:17px !important;}
.rtl .medium-alternate .post-content{float:right;}
.rtl .date-and-formats{float:right;}
.rtl .large-alternate .post-content{float:left;}
.rtl .blog-medium-image{float:right;margin-right:0 !important;margin-left:25px !important;}
.rtl .alert{background-position:97% 8px;}
.rtl .alert .toggle-alert{right:auto;left:25px;}
.rtl .avada-container.layout-date-on-side .date-and-formats{float:right;margin-right:0;margin-left:20px;}
.rtl.single-product .woocommerce-message .wc-forward {float: left;}
.rtl.single-product .woocommerce-message .wc-forward:before{content:"";}
.rtl.single-product .woocommerce-message .wc-forward:after{font-family:'FontAwesome';content:"\f07a";margin-left:6px;}
.rtl.single-product .woocommerce-message{text-align:right;}
.rtl.single-product .woocommerce-message:before {color: transparent!important;}
.rtl.single-product .woocommerce-message:after {content: "\f05d";font-family: 'FontAwesome';margin-left: 5px;}
.rtl .product .entry-summary .price {float: right;}
.rtl .product .entry-summary .woocommerce-product-rating {float: right;margin-right: 20px;margin-left:0;}
.rtl .single_variation_price_reset .single_variation_wrap {float: right;}
.rtl .single_variation_price_reset .reset_variations {float: left;}
.rtl .shop_table .product-thumbnail {float: right;margin-left: 25px;margin-right:0;}
.rtl .woocommerce .shipping-calculator-form .button {float: left;}
.rtl .cart_totals table td {text-align: left;}
.rtl .cart_totals .cart-subtotal td, .cart_totals .total td {text-align: left;}
.rtl .cart_totals .button {float: left;}
.rtl .woocommerce .checkout_coupon .coupon-button {margin: 0;}
.rtl form.checkout .continue-checkout {float: left;}
.rtl form.checkout .shop_table tfoot th {text-align: left;}
.rtl form.checkout .shop_table tfoot td {text-align: left;}
.rtl form.checkout #place_order {float: left;}
.rtl .avada-myaccount-data .digital-downloads li:before, .rtl .avada-thank-you .order_details li:before{float:right;margin-left:0;margin-right:-25px;}
.rtl .avada-myaccount-data .digital-downloads li, .rtl .avada-thank-you .order_details li{padding:0 25px 0 0;}
.rtl #main .avada-myaccount-data .addresses .title h3, .rtl #main .avada-customer-details .addresses .title h3{float:right;}
.rtl .avada-myaccount-data .addresses .title .edit{margin-right:10px;}
.rtl .woocommerce #customer_login .login .form-row{float:right;margin-right:0;margin-left:18px;}
.rtl .woocommerce #customer_login .login .inline{margin-right:15px;margin-left:0;}
.rtl .woocommerce #customer_login .login .lost_password{float:right;}
.rtl .myaccount_user_container .username:before{content:'';margin-right:0;}
.rtl .myaccount_user_container .username:after{font-family:'FontAwesome';content:"\f05d";margin-left:5px;}
.rtl .myaccount_user_container span{border-right:0;border-left:1px solid;}
.rtl .myaccount_user_container span:last-child{border-left:0;padding-right:20px;}
.rtl .myaccount_user_container .view-cart a:before{content:"";margin-right:0;}
.rtl .myaccount_user_container .view-cart a:after{font-family:'FontAwesome';content:"\f07a";margin-left:10px;}
@-moz-document url-prefix() {
.rtl .myaccount_user_container .view-cart a:before{content:" ";margin-right:0;}
}
.rtl .avada-order-details .shop_table.order_details .product-total {text-align: left;}
.rtl .avada-myaccount-data .addresses .col-1, .rtl .avada-customer-details .addresses .col-1{margin-left:4%;}
.rtl .avada-myaccount-data .addresses .col-1, .rtl .avada-myaccount-data .addresses .col-2, .rtl .avada-customer-details .addresses .col-1, .rtl .avada-customer-details .addresses .col-2{float:right;margin-right:0;}
.rtl .my_account_orders{text-align:right;}
.rtl .my_account_orders .order-status{text-align:right;}
.rtl .my_account_orders .order-actions a:after{content:'';margin-left:0;}
.rtl .my_account_orders .order-actions a:before{font-family:'FontAwesome';content:"\f104";margin-right:10px;}
.rtl .woocommerce-side-nav{float:right;}
.rtl .woocommerce-side-nav li.active a:after{content:"";margin-left:0px;}
.rtl .woocommerce-side-nav li.active a:before{font-family:'FontAwesome';content:"\f104";margin-right:5px;}
.rtl .woocommerce .address .edit:after{content:"";margin-left:0px;}
.rtl .woocommerce .address .edit:before{font-family:'FontAwesome';content:"\f104";margin-right:10px;}
.rtl .shop_table{text-align:right;}
.rtl .shop_table .product-thumbnail img{float:right;margin-right:0;margin-left:25px;}
.rtl #final-order-details .mini-order-details{text-align:right !important;}
.rtl #final-order-details .mini-order-details th{text-align:right !important;}
.rtl .widget_shopping_cart_content .buttons > a:before{content:"";margin-right:0px;}
.rtl .widget_shopping_cart_content .buttons a.checkout:before{content:"";margin-right:0px;}
.rtl .widget_shopping_cart_content .buttons > a:after{font-family:'FontAwesome';content:"\f07a";margin-left:10px;}
.rtl .widget_shopping_cart_content .buttons a.checkout:after{font-family:'FontAwesome';content:"\f046";margin-left:10px;}
.rtl .widget_layered_nav li a{float:right;}
.rtl .widget_layered_nav li .count{float:left;}
.rtl .product-details .star-rating{float:left;}
.rtl .product-buttons .add_to_cart_button:before{font-family:"fontawesome";content:"";margin-right:0px;}
.rtl .product-buttons .show_details_button:before{font-family:"fontawesome";content:"";margin-right:0px;}
.rtl .product-buttons .button.product_type_variable:before,.rtl .product-buttons .button.product_type_grouped:before{font-family:"fontawesome";content:"";margin-right:0px;}
.rtl .product-buttons .button.product_type_simple:before{font-family:"fontawesome";content:"";margin-right:0px;}
.rtl .product-buttons .add_to_cart_button:after{font-family:"fontawesome";content:"\f07a";margin-left:6px;}
.rtl .product-buttons .show_details_button:after{font-family:"fontawesome";content:"\f03a";margin-left:6px;}
.rtl .product-buttons .button.product_type_variable:after,.rtl .product-buttons .button.product_type_grouped:after{font-family:"fontawesome";content:"\f013";margin-left:3px;}
.rtl .product-buttons .button.product_type_simple:after{font-family:"fontawesome";content:"\f07a";margin-left:6px;}
.rtl .product .images{float:right;margin-right:0;margin-left:30px;}
.rtl .product .images .flex-viewport{direction:ltr;}
.rtl .simple-cart .quantity{float:right;margin-right:0;margin-left:10px;}
.rtl .woocommerce-tabs > .tabs{float:right;}
.rtl .woocommerce-tabs .panel{float:left;margin-left:0;margin-right:20px;}
.rtl .shop_attributes{text-align:right;}
.rtl .woocommerce .social-share li{border-right:0;border-left:1px solid;}
.rtl .woocommerce .social-share li:last-child{border-left:0;}
.rtl .products li{float:right;margin-right:0;}
.rtl .products-4 li{margin-left:1.0%;}
.rtl .products-3 li{margin-left:1.2%;}
.rtl .products-2 li{margin-left:0.9%;}
.rtl .products-1 li{margin-left:0;}
.rtl .products-4 li:nth-child(4n){margin-left:0;}
.rtl .products-3 li:nth-child(3n){margin-left:0;}
.rtl .products-2 li:nth-child(2n){margin-left:0;}
.rtl .products-1 li:nth-child(1n){margin-left:0;}
.rtl p.stars a{float:right;}
.rtl p.stars a:after{right:auto;left:1em;}
.rtl #reviews li .avatar{float:right;}
.rtl #reviews li .comment-text{float:left;margin-left:0 !important;margin-right:6px !important;}
.rtl #reviews li .comment-text .meta,.rtl #reviews li .comment-text .meta strong{float:right;}
.rtl #reviews .overall-rating{float:left;}
.rtl .catalog-ordering > ul,.rtl .orderby-order-container > ul,.rtl .orderby-order-container{float:right;margin-right:0;}
.rtl .catalog-ordering > ul,.rtl .orderby-order-container > ul{margin-left:10px;}
.rtl .shop_table .product-thumbnail .product-info{float:right;}
.rtl .cart_totals table{text-align:right;}
.rtl form.checkout .shop_table tbody .product-total,.rtl form.checkout .shop_table th.product-total{text-align:left;}
.rtl form.checkout .shop_table tfoot th{padding-right:0;}
/*.rtl .chzn-container{direction:ltr;}*/
.rtl .order-dropdown > li:after{right:auto;left:0;border-left:0;border-right:1px solid #dbdbdb;}
.rtl .copyright{float:right;}
.rtl.woocommerce .social-share li {
border: none;
border-right: 1px solid #E7E6E6;
text-align: right;
}
.rtl.woocommerce .social-share li:first-child {
border-right: 0 none;
}
.rtl .product .onsale {
left: auto;
right: 15px;
}
.rtl .single_variation_wrap .variations_button .quantity {
float: right;
}
.rtl .single_variation_wrap .variations_button .button {
float: right;
margin-left: 0;
margin-right: 10px;
}
.rtl .variations .label {
padding-left: 15px;
padding-right: 0;
}
.rtl .avada-select-parent .avada-select-arrow {
border-right: 1px solid #DADADA;
border-left: none;
left: 0;
right: auto;
}
.rtl .select-arrow {
right: auto;
left: 1px;
border-right: 1px solid #DADADA;
border-left: none;
}
.rtl.woocommerce .images #carousel .slides {
float: right;
}
.rtl.woocommerce .images #carousel .slides li {
float: right !important;
margin-right: 0;
margin-left: 9px;
}
.rtl #billing_country_field > label, .rtl #shipping_country_field > label {
padding-right: 0;
padding-left: 5px;
}
.rtl .cart-collaterals .one_half {
float:right;
margin-left: 4%;
margin-right: 0;
}
.rtl .cart-collaterals .one_half.last {
clear: left !important;
margin-left: 0;
}
.rtl .cart-collaterals .shipping_calculator, .rtl .cart-collaterals .coupon {
float: left;
}
.rtl .shipping-calculator-form-nohide .button {
float: left;
}
.rtl .cart-totals-container .button {
float: left;
}
.rtl .input-text {
margin-right: 0;
margin-left: 1%;
}
.rtl .coupon .input-text {
float:right;
}
.rtl .coupon .button {
float:right;
}
.rtl .quantity .minus, .rtl .quantity .plus, .rtl .quantity .qty {
margin: 0;
}
.rtl .woocommerce-content-box {
margin-left: 0;
margin-right: 20px;
}
.rtl .woocommerce-content-box.full-width {
margin-right: 0;
}
.rtl .product_type_variable, .rtl .show_details_button, .rtl .add_to_cart_button {
padding-left: 0 !important;
}
.rtl .product_type_variable, .rtl .show_details_button {
max-width: 47%;
width: 47%;
}
.rtl .product .images .flexslider .slides img {
float: right;
}
.rtl .mobile-nav-holder .mobile-selector span, .rtl .mobile-topnav-holder .mobile-selector span {
padding-left: 0;
padding-right: 10px;
}
.rtl .mobile-topnav-holder {
text-align: right;
}
.rtl .mobile-nav-holder .mobile-selector .selector-down:before, .rtl .mobile-topnav-holder .mobile-selector .selector-down:before {
margin-left: 0;
margin-right: 12px;
}
.rtl .mobile-nav-holder .mobile-selector .selector-down, .rtl .mobile-topnav-holder .mobile-selector .selector-down {
border-left: medium none;
border-right: 1px solid #DADADA;
left: 5px;
right: auto;
}
.rtl .avada-thank-you .order_details li:before {
float: right;
margin-left: 5px;
}
.rtl .isotope .isotope-item {
-webkit-transition-property: right, top, -webkit-transform, opacity;
-moz-transition-property: right, top, -moz-transform, opacity;
-ms-transition-property: right, top, -ms-transform, opacity;
-o-transition-property: right, top, -o-transform, opacity;
transition-property: right, top, transform, opacity;
}
.rtl .timeline-layout .post.align-left {
clear: right;
float: right;
}
.rtl .timeline-layout .post.align-right {
clear: left;
float: left;
}
.rtl .align-right .timeline-arrow {
position: absolute;
background: #ffffff;
}
.rtl .align-right .timeline-arrow:after, .rtl .align-right .timeline-arrow:before {
left: 100%;
right: auto;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.rtl .align-right .timeline-arrow:before, .rtl .align-right .timeline-arrow:after {
border-left-color: #EBEAEA !important;
border-right-color: transparent !important;
}
.rtl .align-right .timeline-arrow:after {
border-color: rgba(0, 0, 0, 0);
border-left-color: #ffffff;
border-right-color: transparent;
border-width: 8px;
top: 50%;
margin-top: -8px;
}
.rtl .align-right .timeline-arrow:before {
border-color: rgba(239, 239, 239, 0);
border-left-color: #e5e4e4;
border-right-color: transparent;
border-width: 9px;
top: 50%;
margin-top: -9px;
}
.rtl .align-left .timeline-arrow {
position: absolute;
background: #ffffff;
}
.rtl .align-left .timeline-arrow:after, .rtl .align-left .timeline-arrow:before {
right: 100%;
left: auto;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.rtl .align-left .timeline-arrow:before, .rtl .align-left .timeline-arrow:after {
border-right-color: #EBEAEA !important;
border-left-color: transparent !important;
}
.rtl .align-left .timeline-arrow:after {
border-color: rgba(0, 0, 0, 0);
border-right-color: #ffffff;
border-left-color: transparent;
border-width: 8px;
top: 50%;
margin-top: -8px;
}
.rtl .align-left .timeline-arrow:before {
border-color: rgba(239, 239, 239, 0);
border-right-color: #e5e4e4;
border-left-color: transparent;
border-width: 9px;
top: 50%;
margin-top: -9px;
}
.rtl .align-right .timeline-arrow{left:301px; right:auto;}
.rtl .align-left .timeline-arrow{right:301px;left:auto;}
.rtl .dropcap { float: right; margin-right: 0; margin-left: 6px; }
.rtl .one_half, .rtl .one_third, .rtl .two_third, .rtl .three_fourth, .rtl .one_fourth { float: right; margin-left: 4%; margin-right: 0; }
.rtl .one_half.last, .rtl .one_third.last, .rtl .three_fourth.last, .rtl .one_fourth.last, .rtl .two_third.last, .rtl .three_fourth.last { margin-left: 0% !important; margin-right: 4%; }
.rtl .footer-area .columns .col { float: right !important; }
.rtl .footer-area .columns .col:first-child { margin-right: 0% !important; }
.rtl .footer-area .columns .col.last{ margin-left: 0% !important; margin-right: 4% !important; }
.rtl .columns-2 .col:nth-child(2n) {clear:left; margin-right:4%!important;}
.rtl .columns-3 .col:nth-child(3n) {clear:left; margin-right:3.5%!important;}
/* to top */
#toTop {
background-color: #333333;
border-radius: 4px 4px 0 0;
bottom: 0;
color: #FFFFFF;
display: none;
height: 28px;
position: fixed;
right: 30px;
text-align: center;
text-transform: uppercase;
width: 48px;
padding-top: 10px;
opacity: 0.9;
z-index: 10000;
transition: all 0.2s ease-in-out 0s;
}
#toTop:before {
font-family: "fontawesome";
content: "\f077";
}
#toTop:hover {
background-color: #A0CE4E;
}
#toTopHover {
display:block;
overflow:hidden;
float:left;
opacity: 0;
-moz-opacity: 0;
filter:alpha(opacity=0);
}
#toTop:active, #toTop:focus {
outline:none;
background-color: #333333;
}
/* slidingbar */
#slidingbar-area {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 99999;
margin-left: auto;
margin-right: auto;
}
body.admin-bar #wrapper #slidingbar-area {
top: 32px;
}
#slidingbar {
height: auto;
color: #8c8989;
background: #363839;
background: rgba(54,56,57,0.9);
overflow: hidden;
position: relative;
z-index: 3;
display: none;
//visibility: hidden;
padding: 35px 10px;
}
.sb_toggle {
border-color: transparent #363839 transparent transparent;
border-style: solid;
border-width: 0 40px 40px 0;
bottom: -40px;
height: 0;
position: absolute;
right: 0;
width: 0;
z-index: 999;
}
.sb_toggle:after {
font-size: 11px;
font-family: "fontawesome";
content: "\f067";
display: block;
height: 40px;
position: absolute;
left: 24px;
top: 3px;
color: #FFFFFF;
text-shadow: none !important;
-moz-text-shadow: none !important;
-webkit-text-shadow: none !important;
}
.sb_toggle.open:after {
font-size: 12px;
font-family: "fontawesome";
content: "\f068";
display: block;
height: 40px;
position: absolute;
left: 24px;
top: 3px;
}
.slidingbar-widget-col{margin-bottom:20px;}
.slidingbar-widget-col:last-child{margin-bottom:0;}
#slidingbar-area .logo{
float:none;
display:block;
margin:0 0 22px;
background:url(images/logo-footer.gif) no-repeat;
}
#slidingbar-area h3{
margin:0 0 28px;
color:#ddd;
text-transform:uppercase;
font:13px/20px 'PTSansBold', arial, helvetica, sans-serif;
}
#slidingbar-area .columns{margin:0;}
#slidingbar-area .text-block{
text-shadow:1px 2px 1px #000;
}
#slidingbar-area .holder-block img{width:100%;}
#slidingbar-area ul{
list-style:none;
margin:0;
padding:0;
font-size:12px;
line-height:15px;
}
#slidingbar-area ul li a{
padding:12px 0;
border-bottom: 1px solid #282a2b;
display:block;
}
#slidingbar-area .slidingbar-widget-col ul:first-child > li:first-child > a,#slidingbar-area .slidingbar-widget-col > ul > li:first-child > a{background-image:none;padding-top:0px;}
#slidingbar-area a{
text-shadow:1px 2px 1px #000;
color:#bfbfbf;
}
#slidingbar-area ul li a:hover{
color:#a0ce4e;
}
#slidingbar-area ul#recentcomments li.recentcomments:first-child{
padding-top:0px !important;
background:none !important;
}
#slidingbar-area li.recentcomments {
padding:12px 0;
border-bottom: 1px solid #282a2b;
display:block;
}
#slidingbar-area li.recentcomments a{
border: none !important;
}
.wpcf7-form input[type="submit"] {
cursor: pointer;
}
/* Style.css */
a.pp_next {
display: block;
float: right;
height: 100%;
text-indent: -10000px;
width: 49%;
}
a.pp_previous {
display: block;
float: left;
height: 100%;
text-indent: -10000px;
width: 49%;
}
div.pp_default .pp_top,div.pp_default .pp_top .pp_middle,div.pp_default .pp_top .pp_left,div.pp_default .pp_top .pp_right,div.pp_default .pp_bottom,div.pp_default .pp_bottom .pp_left,div.pp_default .pp_bottom .pp_middle,div.pp_default .pp_bottom .pp_right{height:13px}
div.pp_default .pp_top .pp_left{background:url(images/prettyPhoto/default/sprite.png) -78px -93px no-repeat}
div.pp_default .pp_top .pp_middle{background:url(images/prettyPhoto/default/sprite_x.png) top left repeat-x}
div.pp_default .pp_top .pp_right{background:url(images/prettyPhoto/default/sprite.png) -112px -93px no-repeat}
div.pp_default .pp_content .ppt{color:#f8f8f8}
div.pp_default .pp_content_container .pp_left{background:url(images/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y;padding-left:13px}
div.pp_default .pp_content_container .pp_right{background:url(images/prettyPhoto/default/sprite_y.png) top right repeat-y;padding-right:13px}
div.pp_default .pp_next:hover{background:url(images/prettyPhoto/default/sprite_next.png) center right no-repeat;cursor:pointer}
div.pp_default .pp_previous:hover{background:url(images/prettyPhoto/default/sprite_prev.png) center left no-repeat;cursor:pointer}
div.pp_default .pp_expand{background:url(images/prettyPhoto/default/sprite.png) 0 -29px no-repeat;cursor:pointer;width:28px;height:28px}
div.pp_default .pp_expand:hover{background:url(images/prettyPhoto/default/sprite.png) 0 -56px no-repeat;cursor:pointer}
div.pp_default .pp_contract{background:url(images/prettyPhoto/default/sprite.png) 0 -84px no-repeat;cursor:pointer;width:28px;height:28px}
div.pp_default .pp_contract:hover{background:url(images/prettyPhoto/default/sprite.png) 0 -113px no-repeat;cursor:pointer}
div.pp_default .pp_close{width:30px;height:30px;background:url(images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;cursor:pointer}
div.pp_default .pp_gallery ul li a{background:url(images/prettyPhoto/default/default_thumb.png) center center #f8f8f8;border:1px solid #aaa}
div.pp_default .pp_social{margin-top:7px}
div.pp_default .pp_gallery a.pp_arrow_previous,div.pp_default .pp_gallery a.pp_arrow_next{position:static;left:auto}
div.pp_default .pp_nav .pp_play,div.pp_default .pp_nav .pp_pause{background:url(images/prettyPhoto/default/sprite.png) -51px 1px no-repeat;height:30px;width:30px}
div.pp_default .pp_nav .pp_pause{background-position:-51px -29px}
div.pp_default a.pp_arrow_previous,div.pp_default a.pp_arrow_next{background:url(images/prettyPhoto/default/sprite.png) -31px -3px no-repeat;height:20px;width:20px;margin:4px 0 0}
div.pp_default a.pp_arrow_next{left:52px;background-position:-82px -3px}
div.pp_default .pp_content_container .pp_details{margin-top:5px}
div.pp_default .pp_nav{clear:none;height:30px;width:110px;position:relative}
div.pp_default .pp_nav .currentTextHolder{font-family:Georgia;font-style:italic;color:#999;font-size:11px;left:75px;line-height:25px;position:absolute;top:2px;margin:0;padding:0 0 0 10px}
div.pp_default .pp_close:hover,div.pp_default .pp_nav .pp_play:hover,div.pp_default .pp_nav .pp_pause:hover,div.pp_default .pp_arrow_next:hover,div.pp_default .pp_arrow_previous:hover{opacity:0.7}
div.pp_default .pp_description{font-size:11px;font-weight:700;line-height:14px;margin:5px 50px 5px 0}
div.pp_default .pp_bottom .pp_left{background:url(images/prettyPhoto/default/sprite.png) -78px -127px no-repeat}
div.pp_default .pp_bottom .pp_middle{background:url(images/prettyPhoto/default/sprite_x.png) bottom left repeat-x}
div.pp_default .pp_bottom .pp_right{background:url(images/prettyPhoto/default/sprite.png) -112px -127px no-repeat}
div.pp_default .pp_loaderIcon{background:url(images/prettyPhoto/default/loader.gif) center center no-repeat}
div.facebook .pp_top .pp_left{background:url(images/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat}
div.facebook .pp_top .pp_middle{background:url(images/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x}
div.facebook .pp_top .pp_right{background:url(images/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat}
div.facebook .pp_content_container .pp_left{background:url(images/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y}
div.facebook .pp_content_container .pp_right{background:url(images/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y}
div.facebook .pp_expand{background:url(images/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.facebook .pp_expand:hover{background:url(images/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.facebook .pp_contract{background:url(images/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.facebook .pp_contract:hover{background:url(images/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.facebook .pp_close{width:22px;height:22px;background:url(images/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.facebook .pp_description{margin:0 37px 0 0}
div.facebook .pp_loaderIcon{background:url(images/prettyPhoto/facebook/loader.gif) center center no-repeat}
div.facebook .pp_arrow_previous{background:url(images/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat;height:22px;margin-top:0;width:22px}
div.facebook .pp_arrow_previous.disabled{background-position:0 -96px;cursor:default}
div.facebook .pp_arrow_next{background:url(images/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat;height:22px;margin-top:0;width:22px}
div.facebook .pp_arrow_next.disabled{background-position:-32px -96px;cursor:default}
div.facebook .pp_nav{margin-top:0}
div.facebook .pp_nav p{font-size:15px;padding:0 3px 0 4px}
div.facebook .pp_nav .pp_play{background:url(images/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_nav .pp_pause{background:url(images/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_next:hover{background:url(images/prettyPhoto/facebook/btnNext.png) center right no-repeat;cursor:pointer}
div.facebook .pp_previous:hover{background:url(images/prettyPhoto/facebook/btnPrevious.png) center left no-repeat;cursor:pointer}
div.facebook .pp_bottom .pp_left{background:url(images/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat}
div.facebook .pp_bottom .pp_middle{background:url(images/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x}
div.facebook .pp_bottom .pp_right{background:url(images/prettyPhoto/facebook/sprite.png) -110px -80px no-repeat}
div.pp_pic_holder a:focus{outline:none}
div.pp_overlay{background:#000;display:none;left:0;position:absolute;top:0;width:100%;z-index:110000;}
div.pp_pic_holder{display:none;position:absolute;width:100px;z-index:120000;}
.pp_content{height:40px;min-width:40px}
* html .pp_content{width:40px}
.pp_content_container{position:relative;text-align:left;width:100%}
.pp_content_container .pp_left{padding-left:20px}
.pp_content_container .pp_right{padding-right:20px}
.pp_content_container .pp_details{float:left;margin:10px 0 2px}
.pp_description{display:none;margin:0}
.pp_social{float:left;margin:0}
.pp_social .facebook{float:left;margin-left:5px;width:auto;overflow:hidden; width:75px !important;}
.pp_social .twitter{float:left}
.pp_nav{clear:right;float:left;margin:3px 10px 0 0}
.pp_nav p{float:left;white-space:nowrap;margin:2px 4px}
.pp_nav .pp_play,.pp_nav .pp_pause{float:left;margin-right:4px;text-indent:-10000px}
a.pp_arrow_previous,a.pp_arrow_next{display:block;float:left;height:15px;margin-top:3px;overflow:hidden;text-indent:-10000px;width:14px}
.pp_hoverContainer{position:absolute;top:0;width:100%;z-index:2000}
.pp_gallery{display:none;left:50%;margin-top:-50px;position:absolute;z-index:10000}
.pp_gallery div{float:left;overflow:hidden;position:relative}
.pp_gallery ul{float:left;height:35px;position:relative;white-space:nowrap;margin:0 0 0 5px;padding:0}
.pp_gallery ul a{border:1px rgba(0,0,0,0.5) solid;display:block;float:left;height:33px;overflow:hidden}
.pp_gallery ul a img{border:0}
.pp_gallery li{display:block;float:left;margin:0 5px 0 0;padding:0}
.pp_gallery li.default a{background:url(images/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;display:block;height:33px;width:50px}
.pp_gallery .pp_arrow_previous,.pp_gallery .pp_arrow_next{margin-top:7px!important}
a.pp_expand,a.pp_contract{cursor:pointer;display:none;height:20px;position:absolute;right:30px;text-indent:-10000px;top:10px;width:20px;z-index:20000}
a.pp_close{position:absolute;right:0;top:0;display:block;line-height:22px;text-indent:-10000px}
.pp_loaderIcon{display:block;height:24px;left:50%;position:absolute;top:50%;width:24px;margin:-12px 0 0 -12px}
#pp_full_res{line-height:1!important}
#pp_full_res .pp_inline{text-align:left}
#pp_full_res .pp_inline p{margin:0 0 15px}
div.ppt{color:#fff;display:none;font-size:17px;z-index:9999;margin:0 0 5px 15px}
div.pp_default .pp_content,div.light_rounded .pp_content{background-color:#fff}
div.pp_default #pp_full_res .pp_inline,div.light_rounded .pp_content .ppt,div.light_rounded #pp_full_res .pp_inline,div.light_square .pp_content .ppt,div.light_square #pp_full_res .pp_inline,div.facebook .pp_content .ppt,div.facebook #pp_full_res .pp_inline{color:#000}
div.pp_default .pp_gallery ul li a:hover,div.pp_default .pp_gallery ul li.selected a,.pp_gallery ul a:hover,.pp_gallery li.selected a{border-color:#fff}
div.pp_default .pp_details,div.light_rounded .pp_details,div.dark_rounded .pp_details,div.dark_square .pp_details,div.light_square .pp_details,div.facebook .pp_details{position:relative}
.pp_top,.pp_bottom{height:20px;position:relative}
* html .pp_top,* html .pp_bottom{padding:0 20px}
.pp_top .pp_left,.pp_bottom .pp_left{height:20px;left:0;position:absolute;width:20px}
.pp_top .pp_middle,.pp_bottom .pp_middle{height:20px;left:20px;position:absolute;right:20px}
* html .pp_top .pp_middle,* html .pp_bottom .pp_middle{left:0;position:static}
.pp_top .pp_right,.pp_bottom .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}
.pp_fade,.pp_gallery li.default a img{display:none}
/*
* jQuery FlexSlider v2.0
* http://www.woothemes.com/flexslider/
*
* Copyright 2012 WooThemes
* Free to use under the GPLv2 license.
* http://www.gnu.org/licenses/gpl-2.0.html
*
* Contributing author: <NAME> (@mbmufffin)
*/
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {outline: none;}
.flexslider .slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none; z-index:1000;}
/* FlexSlider Necessary Styles
*********************************/
.flexslider {margin: 0; padding: 0;}
.flexslider .slides {overflow:hidden;}
.flexslider .slides li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {width: 100%; max-width: 100%; display: block;}
.flex-pauseplay span {text-transform: capitalize;}
/* Clearfix for the .slides element */
.flexslider .slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .flexslider .slides {display: block;}
* html .flexslider .slides {height: 1%;}
.flexslider .slides, .flex-control-nav, .flex-direction-nav{z-index:100;}
/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
* include js that eliminates this class on page load */
/*.no-js .flexslider .slides > li:first-child {display: block;}*/
/* FlexSlider Default Theme
*********************************/
.flexslider {margin: 0 0 60px; background-color: transparent; position: relative; zoom: 1;}
.flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
.loading .flex-viewport {max-height: 300px;}
.flexslider .slides {zoom: 1;}
.carousel li {margin-right: 5px}
/* Direction Nav */
.flex-direction-nav {height: 0;}
.flex-direction-nav a {width: 30px; height: 30px; margin: -20px 0 0; background-color:rgba(0, 0, 0, 0.5); background-repeat:no-repeat; position: absolute; top: 50%; cursor: pointer; text-indent: -9999px; opacity: 0; -webkit-transition: all .3s ease;z-index:100; overflow:hidden;}
.no-opacity .flex-direction-nav a{display:none;}
.no-opacity .flexslider:hover .flex-direction-nav a{display:block;}
.flex-direction-nav .flex-next {
background-image: url(images/arrow-bullet.png);
background-position: center center;
right: 0;
}
.flex-direction-nav .flex-prev {
background-image: url(images/arrow-bullet.png);
background-position: center center;
-webkit-transform:rotate(180deg);
-moz-transform:rotate(180deg);
-o-transform:rotate(180deg);
transform:rotate(180deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
left: 0;
}
.no-rgba .flex-direction-nav .flex-next, .no-rgba .flex-direction-nav .flex-prev{
background-color:#000;
}
.no-csstransforms .flex-direction-nav .flex-prev{
background-image: url(images/arrow-bullet-left.png) !important;
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
}
.no-csstransforms .main-flex .flex-direction-nav .flex-prev{
background-image: url(images/ls_prev.png) !important;
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
}
.flexslider:hover .flex-next {opacity: 0.8; right: 0px;}
.flexslider:hover .flex-prev {opacity: 0.8; left: 0px;}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {opacity: 1;}
.flex-direction-nav .flex-disabled {opacity: 0!important;filter:alpha(opacity=0);cursor:default;display:none !important;}
/* Control Nav */
.flex-control-nav {width: 100%; position: absolute; bottom: 0px; text-align: center;}
.flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; box-shadow: inset 0 0 3px rgba(0,0,0,0.3);}
.flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
.flex-control-paging li a.flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }
.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}
.flex-caption{position:absolute; background:rgba(0, 0, 0, 0.6); width:96%; padding:2%; color:#fff; left:0; bottom:0; margin:0;}
.no-rgba .flex-caption{background-color:#000;}
.main-flex{margin-bottom:0;}
@media screen and (max-width: 860px) {
.flex-direction-nav .flex-prev {opacity: 1; left: 0;}
.flex-direction-nav .flex-next {opacity: 1; right: 0;}
}
.wp-caption{}
.wp-caption-text{}
.sticky{}
.gallery-caption{}
.bypostauthor{}
/* Alignment */
.alignleft {
display: inline;
float: left;
margin-right: 15px;
}
.alignright {
display: inline;
float: right;
margin-left: 15px;
}
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
}
/* Slider */
//#wrapper .fullwidthbanner-container{width:auto !important;}
#layerslider-container{margin:0 auto;}
#layerslider-wrapper{
position:relative;
}
#layerslider-wrapper .ls-shadow-top{
position:absolute;
background-image:url(images/shadow-top.png);
background-repeat:no-repeat;
background-position:top center;
height:42px;
width:100%;
top:0;
z-index:99;
}
#layerslider-wrapper .ls-shadow-bottom{
position:absolute;
background-image:url(images/shadow-bottom.png);
background-repeat:no-repeat;
background-position:bottom center;
height:32px;
width:100%;
bottom:0;
z-index:99;
}
.ls-avada{
border-top: 1px solid #d2d3d4;
border-bottom: 1px solid #d2d3d4;
}
.ls-avada .ls-layer{
background-repeat:no-repeat;
background-position:center center;
}
.ls-avada .ls-nav-prev, .ls-avada .ls-nav-next,.products-slider .es-nav span{
background-color: rgba(0, 0, 0, 0.5);
background-repeat: no-repeat;
width: 63px !important;
height: 63px !important;
display: none;
position: absolute;
top: 50% !important;
margin-top:-31px !important;
opacity:0.8 !important;
}
.no-rgba .ls-avada .ls-nav-prev, .no-rgba .ls-avada .ls-nav-next, .no-rgba .wooslider .wooslider-prev, .no-rgba .wooslider .wooslider-next,.no-rgba .products-slider .es-nav span{
background-color:#ccc !important;
}
.ls-avada .ls-nav-prev:hover, .ls-avada .ls-nav-next:hover,
.products-slider .es-nav span:hover{
opacity:1 !important;
}
.ls-avada:hover .ls-nav-prev, .ls-avada:hover .ls-nav-next {
display: block;
}
.ls-avada .ls-nav-prev,.products-slider .es-nav span.es-nav-prev {
background-image: url(images/ls_prev.png) !important;
background-position: 19px 19px !important;
left: 0 !important;
margin-left:0 !important;
z-index:10;
}
.ls-avada .ls-nav-next,.products-slider .es-nav span.es-nav-next {
background-image: url(images/ls_next.png) !important;
background-position: 29px 19px !important;
right: 0 !important;
margin-left:0 !important;
z-index:10;
}
.ls-avada .ls-playvideo {
width: 50px;
height: 50px;
margin-left: -25px;
margin-top: -25px;
}
.ls-avada .ls-playvideo{
background-image: url(images/skin.png);
}
.ls-avada .ls-playvideo {
background-position: -300px -150px;
}
.ls-avada .ls-playvideo:hover,
.ls-avada .ls-vpcontainer:hover .ls-playvideo {
background-position: -375px -150px;
}
/**** Isotope Filtering ****/
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-ms-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
-ms-transition-property: height, width;
-o-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-ms-transition-property: -ms-transform, opacity;
-o-transition-property: top, left, opacity;
transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
-webkit-transition-duration: 0s;
-moz-transition-duration: 0s;
-ms-transition-duration: 0s;
-o-transition-duration: 0s;
transition-duration: 0s;
}
/**** Isotope filtering ****/
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
/* WooSlider */
.wooslider{
border:0 !important;
background:none !important;
-moz-box-shadow:none !important;
-webkit-box-shadow:none !important;
box-shadow:none !important;
-moz-border-radius:none !important;
-webkit-border-radius:none !important;
border-radius:none !important;
margin:0 auto !important;
max-width:940px;
}
.wooslider .slide-content{
margin:0 !important;
}
.wooslider .wooslider-pauseplay{
position:absolute;
margin:0 !important;
top:auto !important;
bottom:15px !important;
}
.wooslider .wooslider-control-nav{
position:absolute;
margin:0 !important;
top:auto !important;
bottom:20px !important;
}
.wooslider .wooslider-prev, .wooslider .wooslider-next, .main-flex .flex-prev, .main-flex .flex-next {
background-color: rgba(0, 0, 0, 0.5) !important;
background-repeat: no-repeat !important;
width: 63px !important;
height: 63px !important;
display: none !important;
position: absolute !important;
top: 42% !important;
margin:0 !important;
-webkit-transform:rotate(0deg);
-moz-transform:rotate(0deg);
-o-transform:rotate(0deg);
transform:rotate(0deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
}
.wooslider:hover .wooslider-prev, .wooslider:hover .wooslider-next, .main-flex:hover .flex-prev, .main-flex:hover .flex-next {
display: block !important;
}
.wooslider .wooslider-prev, .main-flex .flex-prev {
background-image: url(images/ls_prev.png) !important;
background-position: 19px 19px !important;
left: 0 !important;
padding:0 !important;
border:0 !important;
}
.wooslider .wooslider-next, .main-flex .flex-next {
background-image: url(images/ls_next.png) !important;
background-position: 29px 19px !important;
right: 0 !important;
padding:0 !important;
border:0 !important;
}
.no-rgba .wooslider .wooslider-next, .no-rgba .wooslider .wooslider-prev{
background-color:#000 !important;
}
#sliders-container .wooslider .slide-content p{margin:0;}
#sidebar .wooslider-control-nav li a,.footer-area .wooslider-control-nav li a{
padding:0 !important;
background:none !important;
border:0 !important;
background:#666 !important;
background:rgba(0, 0, 0, 0.5) !important;
margin-right:3px !important;
}
#sidebar .wooslider-next, #sidebar .wooslider-prev,.post-content .wooslider .wooslider-prev,.post-content .wooslider .wooslider-next,.footer-area .wooslider-next, .footer-area .wooslider-prev{
width:29px !important;
height:29px !important;
}
#sidebar .wooslider-prev,.footer-area .wooslider-prev,.post-content .wooslider .wooslider-prev{
background-image:url(images/arrow-bullet-left.png) !important;
background-position:center center !important;
}
#sidebar .wooslider-next,.footer-area .wooslider-next,.post-content .wooslider .wooslider-next{
background-image:url(images/arrow-bullet.png) !important;
background-position:center center !important;
}
#sidebar .wooslider .wooslider-control-nav,.footer-area .wooslider .wooslider-control-nav{bottom:5px !important;}
#sidebar .widget_wooslider_slideshow_slides .wooslider-control-nav,.footer-area .widget_wooslider_slideshow_slides .wooslider-control-nav{bottom:12px !important;}
.footer-area .slide-excerpt{overflow:hidden; position:absolute; bottom:-50px; padding:0px; width:100%; text-align:center;}
#sidebar .slide-excerpt { bottom:15%; width: 100%;}
#sidebar .slide-excerpt .slide-title { float: none; }
#sidebar .slide-excerpt .slide-title a { color: #ffffff !important; border: none; }
#sidebar .slide-excerpt .slide-title a:hover { color: #ffffff !important; }
#sidebar .widget .slides li div a { padding: 0; }
/* Elastic Slider */
.ei-slider{
position: relative;
width: 100%;
height: 400px;
margin: 0 auto;
}
.ei-slider-loading{
width: 100%;
height: 100%;
position: absolute;
top: 0px;
left: 0px;
z-index:999;
background: rgba(0,0,0,0.9);
color: #fff;
text-align: center;
line-height: 400px;
}
.ei-slider-large{
height: 100%;
width: 100%;
position:relative;
overflow: hidden;
margin: 0;
padding: 0;
}
.ei-slider-large li{
position: absolute;
top: 0px;
left: 0px;
overflow: hidden;
height: 100%;
width: 100%;
}
.ei-slider-large li img{
width: auto !important;
max-width:none !important;
}
.ei-title{
position: absolute;
right: 50%;
margin-right: 13%;
top: 30%;
}
.ei-title h2, .ei-title h3{
text-align: right;
margin: 0;
font-weight:normal;
}
.ei-title h2 {
font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
}
.ei-slider-thumbs{
height: 13px;
margin: 0 auto;
position: relative;
padding: 0;
bottom: 0px;
}
.ei-slider-thumbs li{
position: relative;
float: left;
height: 100%;
}
.ei-slider-thumbs li.ei-slider-element{
top: 0px;
left: 0px;
position: absolute;
height: 100%;
z-index: 10;
text-indent: -9000px;
background: #000;
background: rgba(0,0,0,0.9);
}
.ei-slider-thumbs li a{
display: block;
text-indent: -9000px;
background: #666 ;
width: 100%;
height: 100%;
cursor: pointer;
-webkit-box-shadow:
0px 0px 2px 0px rgba(255,255,255,1);
-moz-box-shadow:
0px 0px 2px 0px rgba(255,255,255,1);
box-shadow:
0px 0px 2px 0px rgba(255,255,255,1);
-webkit-transition: background 0.2s ease;
-moz-transition: background 0.2s ease;
-o-transition: background 0.2s ease;
-ms-transition: background 0.2s ease;
transition: background 0.2s ease;
}
.ei-slider-thumbs li a:hover{
background-color: #f0f0f0;
}
.ei-slider-thumbs li img{
position: absolute;
bottom: 50px;
opacity: 0;
z-index: 999;
max-width: 100%;
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
-ms-transition: all 0.4s ease;
transition: all 0.4s ease;
-webkit-box-reflect:
below 0px -webkit-gradient(
linear,
left top,
left bottom,
from(transparent),
color-stop(50%, transparent),
to(rgba(255,255,255,0.3))
);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.ei-slider-thumbs li:hover img{
opacity: 1;
bottom: 13px;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.ei-slider ul{list-style:none;}
@media screen and (max-width: 830px) {
.ei-title{
position: absolute;
right: 0px;
margin-right: 0px;
width: 100%;
text-align: center;
top: auto;
bottom: 10px;
padding: 5px 0;
}
.ei-title h2, .ei-title h3{
text-align: center;
}
#wrapper .ei-title h2{
font-size: 20px !important;
line-height: 24px !important;
}
#wrapper .ei-title h3{
font-size: 15px !important;
line-height: 30px !important;
}
}
#nav-uber #megaMenu{
float:right;
margin-top:20px;
margin-bottom:20px;
z-index: 1000;
}
#nav-uber #megaMenu.megaMenuVertical{
float:left;
margin-left:20px;
}
.header-v4 #nav-uber #megaMenu,.header-v5 #nav-uber #megaMenu{
margin-top:0;
margin-bottom:0;
float:left;
}
.header-v4 #nav-uber #megaMenu.megaMenuVertical,.header-v5 #nav-uber #megaMenu.megaMenuVertical{
margin-left:0;
}
.fullwidthbanner-container{
overflow:visible !important;
}
.tfs-slider .flex-caption{width:97%;}
.tfs-slider .flex-control-nav{bottom:20px;}
/* Revslider Fix */
.tp-simpleresponsive .slotholder, .tp-simpleresponsive .slotholder img{-webkit-backface-visibility:visible !important;-webkit-transform:none !important;}
body #sidebar .button { padding-left: 15px !important; }
/* responsive menu */
.mobile-nav-holder, .mobile-topnav-holder { display: none; }
.mobile-nav-holder .mobile-selector, .mobile-topnav-holder .mobile-selector {
background-image: url("images/mobile_menu_bg.png");
border: 1px solid #DADADA;
line-height:29px;
width:100%;
position: relative;
font-size:12px;
cursor: pointer;
}
.sticky-header .mobile-nav-holder .mobile-selector {
width: auto;
}
.mobile-nav-holder .mobile-selector span, .mobile-topnav-holder .mobile-selector span{
padding-left: 10px;
}
.mobile-nav-holder .mobile-selector .selector-down,
.mobile-topnav-holder .mobile-selector .selector-down{
border-left: 1px solid #DADADA;
height: 29px;
margin: 0;
right: 5px;
top: 0;
width: 40px;
position: absolute;
}
.mobile-nav-holder .mobile-selector .selector-down:before,
.mobile-topnav-holder .mobile-selector .selector-down:before {
content: "\f0c9";
font-family: "FontAwesome";
font-size: 24px;
margin-left: 12px;
color: #C7C5C5 !important;
}
.mobile-topnav-holder {
margin: 0 auto;
width: 50%;
color: #333333 !important;
text-align: left;
}
#mobile-nav {
display: none;
border-left: 1px solid #DBDBDB;
border-right: 1px solid #DBDBDB;
list-style-type: none;
padding: 0px;
margin: 0px;
width: 100%;
background: #ffffff;
}
#mobile-nav .sub-menu{
list-style-type: none;
padding: 0px;
margin: 0px;
display: block;
}
#mobile-nav li a {
border-bottom: 1px solid #DBDBDB;
color: #333333;
padding: 10px;
font-size: 12px;
display: block;
line-height: normal;
}
#mobile-nav.mobile-sticky-nav {
border-bottom: 1px solid #DBDBDB;
height: 200px;
overflow-y: scroll;
overflow-x: hidden;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#mobile-nav.mobile-sticky-nav li a {
height: auto !important;
line-height: normal !important;
}
#mobile-nav li a:hover {
background-color: #F6F6F6;
border-color: #DBDBDB;
color: #333333;
}
#mobile-nav li.mobile-nav-item li a:before {
content: "-";
margin-left:3px;
margin-right:2px;
}
#mobile-nav li.mobile-nav-item li li a:before {
content: "--";
margin-left:6px;
margin-right:2px;
}
#mobile-nav li.mobile-nav-item li li li a:before {
content: "---";
margin-left:9px;
margin-right:2px;
}
#mobile-nav li.mobile-nav-item li li li li a:before {
content: "----";
margin-left:12px;
margin-right:2px;
}
#header-sticky #mobile-nav .my-cart-link:after,
#header #mobile-nav .my-cart-link:after {
content: "";
border: none;
}
#learndash_lessons .learndash_topic_dots {
float: none !important;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 13/10), only screen and (min-resolution: 120dpi) {
#jtwt .jtwt_tweet {
background-image: url(images/[email protected]) !important;
-webkit-background-size:31px 23px !important;
-moz-background-size:31px 23px !important;
-o-background-size:31px 23px !important;
background-size:31px 23px !important;
}
.review.male blockquote div .company-name {
background-image: url(images/[email protected]) !important;
-webkit-background-size:26px 29px;
-moz-background-size:26px 29px;
-o-background-size:26px 29px;
background-size:26px 29px;
}
.review.female blockquote div .company-name {
background-image: url(images/[email protected]) !important;
-webkit-background-size:26px 29px;
-moz-background-size:26px 29px;
-o-background-size:26px 29px;
background-size:26px 29px;
}
.flex-direction-nav .flex-prev, .flex-direction-nav .flex-next, .post-content ul.arrow li::before, .es-nav-next, .es-nav-prev {
background-image: url(images/[email protected]) !important;
-webkit-background-size:5px 8px;
-moz-background-size:5px 8px;
-o-background-size:5px 8px;
background-size:5px 8px;
}
#sidebar .wooslider .wooslider-next, .footer-area .wooslider .wooslider-next,.post-content .wooslider .wooslider-next {
background-image: url(images/[email protected]) !important;
-webkit-background-size:5px 8px !important;
-moz-background-size:5px 8px !important;
-o-background-size:5px 8px !important;
background-size:5px 8px !important;
}
#sidebar .wooslider .wooslider-prev, .footer-area .wooslider .wooslider-prev,.post-content .wooslider .wooslider-prev {
background-image: url(images/[email protected]) !important;
-webkit-background-size:5px 8px !important;
-moz-background-size:5px 8px !important;
-o-background-size:5px 8px !important;
background-size:5px 8px !important;
-webkit-transform:rotate(180deg);
-moz-transform:rotate(180deg);
-o-transform:rotate(180deg);
transform:rotate(180deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.ls-avada .ls-nav-prev, .wooslider .wooslider-prev, .main-flex .flex-prev,
.products-slider .es-nav span.es-nav-prev {
background-image: url(images/[email protected]) !important;
-webkit-background-size:12px 24px !important;
-moz-background-size:12px 24px !important;
-o-background-size:12px 24px !important;
background-size:12px 24px !important;
}
.ls-avada .ls-nav-next, .wooslider .wooslider-next, .main-flex .flex-next,
.products-slider .es-nav span.es-nav-next {
background-image: url(images/[email protected]) !important;
-webkit-background-size:12px 24px !important;
-moz-background-size:12px 24px !important;
-o-background-size:12px 24px !important;
background-size:12px 24px !important;
}
h5.toggle span.arrow {
background-image: url(images/[email protected]) !important;
-webkit-background-size:7px 7px;
-moz-background-size:7px 7px;
-o-background-size:7px 7px;
background-size:7px 7px;
}
h5.toggle.active span.arrow {
background-image: url(images/[email protected]) !important;
-webkit-background-size:7px 1px;
-moz-background-size:7px 1px;
-o-background-size:7px 1px;
background-size:7px 1px;
}
.alert.general {
background-image: url(images/[email protected]) !important;
-webkit-background-size:19px 20px;
-moz-background-size:19px 20px;
-o-background-size:19px 20px;
background-size:19px 20px;
}
.alert.error {
background-image: url(images/[email protected]) !important;
-webkit-background-size:24px 19px;
-moz-background-size:24px 19px;
-o-background-size:24px 19px;
background-size:24px 19px;
}
.alert.success {
background-image: url(images/[email protected]) !important;
-webkit-background-size:19px 23px;
-moz-background-size:19px 23px;
-o-background-size:19px 23px;
background-size:19px 23px;
}
.alert.notice {
background-image: url(images/[email protected]) !important;
-webkit-background-size:22px 22px;
-moz-background-size:22px 22px;
-o-background-size:22px 22px;
background-size:22px 22px;
}
.alert .toggle-alert {
background-image: url(images/[email protected]) !important;
-webkit-background-size:12px 11px;
-moz-background-size:12px 11px;
-o-background-size:12px 11px;
background-size:12px 11px;
}
.social-networks .facebook a,.person-author .facebook{background-image:url(images/[email protected]) !important;
-webkit-background-size:9px 17px;
-moz-background-size:9px 17px;
-o-background-size:9px 17px;
background-size:9px 17px;
}
.social-networks .twitter a,.person-author .twitter{background-image:url(images/[email protected]) !important;
-webkit-background-size:13px 16px;
-moz-background-size:13px 16px;
-o-background-size:13px 16px;
background-size:13px 16px;
}
.social-networks .linkedin a,.person-author .linkedin{background-image:url(images/[email protected]) !important;
-webkit-background-size:14px 13px;
-moz-background-size:14px 13px;
-o-background-size:14px 13px;
background-size:14px 13px;
}
.social-networks .rss a,.person-author .rss{background-image:url(images/[email protected]) !important;
-webkit-background-size:13px 13px;
-moz-background-size:13px 13px;
-o-background-size:13px 13px;
background-size:13px 13px;
}
.social-networks .dribbble a,.person-author .dribbble{background-image:url(images/[email protected]) !important;
-webkit-background-size:16px 16px;
-moz-background-size:16px 16px;
-o-background-size:16px 16px;
background-size:16px 16px;
}
.social-networks .youtube a,.person-author .youtube{background-image:url(images/[email protected]) !important;
-webkit-background-size:23px 25px;
-moz-background-size:23px 25px;
-o-background-size:23px 25px;
background-size:23px 25px;
}
.social-networks .tf-pinterest a,.person-author .tf-pinterest{background-image:url(images/[email protected]) !important;
-webkit-background-size:16px 20px;
-moz-background-size:16px 20px;
-o-background-size:16px 20px;
background-size:16px 20px;
}
.social-networks .vimeo a,.person-author .vimeo{background-image:url(images/[email protected]) !important;
-webkit-background-size:18px 16px;
-moz-background-size:18px 16px;
-o-background-size:18px 16px;
background-size:18px 16px;
}
.social-networks .flickr a,.person-author .flickr{background-image:url(images/[email protected]) !important;
-webkit-background-size:25px 17px;
-moz-background-size:25px 17px;
-o-background-size:25px 17px;
background-size:25px 17px;
}
.social-networks .tumblr a,.person-author .tumblr{background-image:url(images/[email protected]) !important;
-webkit-background-size:15px 16px;
-moz-background-size:15px 16px;
-o-background-size:15px 16px;
background-size:15px 16px;
}
.social-networks .google a,.person-author .google{background-image:url(images/[email protected]) !important;
-webkit-background-size:21px 18px;
-moz-background-size:21px 18px;
-o-background-size:21px 18px;
background-size:21px 18px;
}
.social-networks .digg a,.person-author .digg{background-image:url(images/[email protected]) !important;
-webkit-background-size:21px 19px;
-moz-background-size:21px 19px;
-o-background-size:21px 19px;
background-size:21px 19px;
}
.social-networks .blogger a,.person-author .blogger{background-image:url(images/blogger<EMAIL>) !important;
-webkit-background-size:16px 15px;
-moz-background-size:16px 15px;
-o-background-size:16px 15px;
background-size:16px 15px;
}
.social-networks .skype a,.person-author .skype{background-image:url(images/[email protected]) !important;
-webkit-background-size:19px 19px;
-moz-background-size:19px 19px;
-o-background-size:19px 19px;
background-size:19px 19px;
}
.social-networks .myspace a,.person-author .myspace{background-image:url(images/[email protected]) !important;
-webkit-background-size:18px 18px;
-moz-background-size:18px 18px;
-o-background-size:18px 18px;
background-size:18px 18px;
}
.social-networks .deviantart a,.person-author .deviantart{background-image:url(images/[email protected]) !important;
-webkit-background-size:23px 18px;
-moz-background-size:23px 18px;
-o-background-size:23px 18px;
background-size:23px 18px;
}
.social-networks .yahoo a,.person-author .yahoo{background-image:url(images/[email protected]) !important;
-webkit-background-size:22px 14px;
-moz-background-size:22px 14px;
-o-background-size:22px 14px;
background-size:22px 14px;
}
.social-networks .reddit a,.person-author .reddit{background-image:url(images/[email protected]) !important;
-webkit-background-size:19px 15px;
-moz-background-size:19px 15px;
-o-background-size:19px 15px;
background-size:19px 15px;
}
.social-networks .forrst a,.person-author .forrst{background-image:url(images/[email protected]) !important;
-webkit-background-size:15px 19px;
-moz-background-size:15px 19px;
-o-background-size:15px 19px;
background-size:15px 19px;
}
.social-networks .email a,.person-author .email{background-image:url(images/[email protected]) !important;
-webkit-background-size:20px 14px;
-moz-background-size:20px 14px;
-o-background-size:20px 14px;
background-size:20px 14px;
}
.social-networks-light .facebook a,.person-author-light .facebook{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:9px 17px;
-moz-background-size:9px 17px;
-o-background-size:9px 17px;
background-size:9px 17px;
}
.social-networks-light .twitter a,.person-author-light .twitter{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:13px 16px;
-moz-background-size:13px 16px;
-o-background-size:13px 16px;
background-size:13px 16px;
}
.social-networks-light .linkedin a,.person-author-light .linkedin{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:14px 13px;
-moz-background-size:14px 13px;
-o-background-size:14px 13px;
background-size:14px 13px;
}
.social-networks-light .rss a,.person-author-light .rss{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:13px 13px;
-moz-background-size:13px 13px;
-o-background-size:13px 13px;
background-size:13px 13px;
}
.social-networks-light .dribbble a,.person-author-light .dribbble{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:16px 16px;
-moz-background-size:16px 16px;
-o-background-size:16px 16px;
background-size:16px 16px;
}
.social-networks-light .youtube a,.person-author-light .youtube{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:23px 25px;
-moz-background-size:23px 25px;
-o-background-size:23px 25px;
background-size:23px 25px;
}
.social-networks-light .tf-pinterest a,.person-author-light .tf-pinterest{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:16px 20px;
-moz-background-size:16px 20px;
-o-background-size:16px 20px;
background-size:16px 20px;
}
.social-networks-light .vimeo a,.person-author-light .vimeo{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:18px 16px;
-moz-background-size:18px 16px;
-o-background-size:18px 16px;
background-size:18px 16px;
}
.social-networks-light .flickr a,.person-author-light .flickr{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:25px 17px;
-moz-background-size:25px 17px;
-o-background-size:25px 17px;
background-size:25px 17px;
}
.social-networks-light .tumblr a,.person-author-light .tumblr{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:15px 16px;
-moz-background-size:15px 16px;
-o-background-size:15px 16px;
background-size:15px 16px;
}
.social-networks-light .google a,.person-author-light .google{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:21px 18px;
-moz-background-size:21px 18px;
-o-background-size:21px 18px;
background-size:21px 18px;
}
.social-networks-light .digg a,.person-author-light .digg{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:21px 19px;
-moz-background-size:21px 19px;
-o-background-size:21px 19px;
background-size:21px 19px;
}
.social-networks-light .blogger a,.person-author-light .blogger{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:16px 15px;
-moz-background-size:16px 15px;
-o-background-size:16px 15px;
background-size:16px 15px;
}
.social-networks-light .skype a,.person-author-light .skype{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:19px 19px;
-moz-background-size:19px 19px;
-o-background-size:19px 19px;
background-size:19px 19px;
}
.social-networks-light .myspace a,.person-author-light .myspace{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:18px 18px;
-moz-background-size:18px 18px;
-o-background-size:18px 18px;
background-size:18px 18px;
}
.social-networks-light .deviantart a,.person-author-light .deviantart{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:23px 18px;
-moz-background-size:23px 18px;
-o-background-size:23px 18px;
background-size:23px 18px;
}
.social-networks-light .yahoo a,.person-author-light .yahoo{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:22px 14px;
-moz-background-size:22px 14px;
-o-background-size:22px 14px;
background-size:22px 14px;
}
.social-networks-light .reddit a,.person-author-light .reddit{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:19px 15px;
-moz-background-size:19px 15px;
-o-background-size:19px 15px;
background-size:19px 15px;
}
.social-networks-light .forrst a,.person-author-light .forrst{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:15px 19px;
-moz-background-size:15px 19px;
-o-background-size:15px 19px;
background-size:15px 19px;
}
.social-networks-light .email a,.person-author-light .email{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:20px 14px;
-moz-background-size:20px 14px;
-o-background-size:20px 14px;
background-size:20px 14px;
}
.popup{
background-image: url(images/[email protected]) !important;
-webkit-background-size:23px 6px;
-moz-background-size:23px 6px;
-o-background-size:23px 6px;
background-size:23px 6px;
}
.image-extras .link-icon{
background-image:url(images/[email protected]) !important;
-webkit-background-size:35px 36px;
-moz-background-size:35px 36px;
-o-background-size:35px 36px;
background-size:35px 36px;
}
.image-extras .gallery-icon{
background-image:url(images/[email protected]) !important;
-webkit-background-size:35px 36px;
-moz-background-size:35px 36px;
-o-background-size:35px 36px;
background-size:35px 36px;
}
.chat-icon{
background-image:url(images/[email protected]) !important;
-webkit-background-size:26px 19px;
-moz-background-size:26px 19px;
-o-background-size:26px 19px;
background-size:26px 19px;
}
.error-image{
background-image:url(images/[email protected]) !important;
-webkit-background-size:311px 133px;
-moz-background-size:311px 133px;
-o-background-size:311px 133px;
background-size:311px 133px;
}
#wrapper .custom_select_box .dd-container .dd-pointer{
background-image:none !important;
-webkit-background-size:48px 29px;
-moz-background-size:48px 29px;
-o-background-size:48px 29px;
background-size:48px 29px;
}
}
.video-background {
position: relative;
overflow: hidden;
}
.video-bg {
position: relative;
padding-bottom: 56.25%;
height: 0; overflow: hidden;
}
.video-bg iframe,
.video-bg object,
.video-bg embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.video-content {
position: absolute;
top: 0;
padding: 15px; 0;
width: 100%;
}
/*---------------------------------------------------------------------------*/
/* Bootstrap Classes
/*---------------------------------------------------------------------------*/
#wrapper .col-xs-1, #wrapper .col-sm-1, #wrapper .col-md-1, #wrapper .col-lg-1, #wrapper .col-xs-2, #wrapper .col-sm-2, #wrapper .col-md-2, #wrapper .col-lg-2, #wrapper .col-xs-3, #wrapper .col-sm-3, #wrapper .col-md-3, #wrapper .col-lg-3, #wrapper .col-xs-4, #wrapper .col-sm-4, #wrapper .col-md-4, #wrapper .col-lg-4, #wrapper .col-xs-5, #wrapper .col-sm-5, #wrapper .col-md-5, #wrapper .col-lg-5, #wrapper .col-xs-6, #wrapper .col-sm-6, #wrapper .col-md-6, #wrapper .col-lg-6, #wrapper .col-xs-7, #wrapper .col-sm-7, #wrapper .col-md-7, #wrapper .col-lg-7, #wrapper .col-xs-8, #wrapper .col-sm-8, #wrapper .col-md-8, #wrapper .col-lg-8, #wrapper .col-xs-9, #wrapper .col-sm-9, #wrapper .col-md-9, #wrapper .col-lg-9, #wrapper .col-xs-10, #wrapper .col-sm-10, #wrapper .col-md-10, #wrapper .col-lg-10, #wrapper .col-xs-11, #wrapper .col-sm-11, #wrapper .col-md-11, #wrapper .col-lg-11, #wrapper .col-xs-12, #wrapper .col-sm-12, #wrapper .col-md-12, #wrapper .col-lg-12 {
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
}
#wrapper .col-xs-1, #wrapper .col-xs-2, #wrapper .col-xs-3, #wrapper .col-xs-4, #wrapper .col-xs-5, #wrapper .col-xs-6, #wrapper .col-xs-7, #wrapper .col-xs-8, #wrapper .col-xs-9, #wrapper .col-xs-10, #wrapper .col-xs-11, #wrapper .col-xs-12 {
float: left !important;
}
#wrapper .col-xs-12 {
width: 100% ;
}
#wrapper .col-xs-11 {
width: 91.66666666666666% !important;
}
#wrapper .col-xs-10 {
width: 83.33333333333334% !important;
}
#wrapper .col-xs-9 {
width: 75% !important;
}
#wrapper .col-xs-8 {
width: 66.66666666666666% !important;
}
#wrapper .col-xs-7 {
width: 58.333333333333336% !important;
}
#wrapper .col-xs-6 {
width: 50% !important;
}
#wrapper .col-xs-5 {
width: 41.66666666666667% !important;
}
#wrapper .col-xs-4 {
width: 33.33333333333333% !important;
}
#wrapper .col-xs-3 {
width: 25% !important;
}
#wrapper .col-xs-2 {
width: 16.666666666666664% !important;
}
#wrapper .col-xs-1 {
width: 8.333333333333332% !important;
}
@media (min-width: 768px) {
#wrapper .col-sm-1, #wrapper .col-sm-2, #wrapper .col-sm-3, #wrapper .col-sm-4, #wrapper .col-sm-5, #wrapper .col-sm-6, #wrapper .col-sm-7, #wrapper .col-sm-8, #wrapper .col-sm-9, #wrapper .col-sm-10, #wrapper .col-sm-11, #wrapper .col-sm-12 {
float: left !important;
}
#wrapper .col-sm-12 {
width: 100% !important;
}
#wrapper .col-sm-11 {
width: 91.66666666666666% !important;
}
#wrapper .col-sm-10 {
width: 83.33333333333334% !important;
}
#wrapper .col-sm-9 {
width: 75% !important;
}
#wrapper .col-sm-8 {
width: 66.66666666666666% !important;
}
#wrapper .col-sm-7 {
width: 58.333333333333336% !important;
}
#wrapper .col-sm-6 {
width: 50% !important;
}
#wrapper .col-sm-5 {
width: 41.66666666666667% !important;
}
#wrapper .col-sm-4 {
width: 33.33333333333333% !important;
}
#wrapper .col-sm-3 {
width: 25% !important;
}
#wrapper .col-sm-2 {
width: 16.666666666666664% !important;
}
#wrapper .col-sm-1 {
width: 8.333333333333332% !important;
}
}
@media (min-width: 992px) {
#wrapper .col-md-1, #wrapper .col-md-2, #wrapper .col-md-3, #wrapper .col-md-4, #wrapper .col-md-5, #wrapper .col-md-6, #wrapper .col-md-7, #wrapper .col-md-8, #wrapper .col-md-9, #wrapper .col-md-10, #wrapper .col-md-11, #wrapper .col-md-12 {
float: left !important;
}
#wrapper .col-md-12 {
width: 100% !important;
}
#wrapper .col-md-11 {
width: 91.66666666666666% !important;
}
#wrapper .col-md-10 {
width: 83.33333333333334% !important;
}
#wrapper .col-md-9 {
width: 75% !important;
}
#wrapper .col-md-8 {
width: 66.66666666666666% !important;
}
#wrapper .col-md-7 {
width: 58.333333333333336% !important;
}
#wrapper .col-md-6 {
width: 50% !important;
}
#wrapper .col-md-5 {
width: 41.66666666666667% !important;
}
#wrapper .col-md-4 {
width: 33.33333333333333% !important;
}
#wrapper .col-md-3 {
width: 25% !important;
}
#wrapper .col-md-2 {
width: 16.666666666666664% !important;
}
#wrapper .col-md-1 {
width: 8.333333333333332% !important;
}
}
@media (min-width: 1200px) {
#wrapper .col-lg-1, #wrapper .col-lg-2, #wrapper .col-lg-3, #wrapper .col-lg-4, #wrapper .col-lg-5, #wrapper .col-lg-6, #wrapper .col-lg-7, #wrapper .col-lg-8, #wrapper .col-lg-9, #wrapper .col-lg-10, #wrapper .col-lg-11, #wrapper .col-lg-12 {
float: left !important;
}
#wrapper .col-lg-12 {
width: 100% !important;;
}
#wrapper .col-lg-11 {
width: 91.66666666666666% !important;
}
#wrapper .col-lg-10 {
width: 83.33333333333334% !important;
}
#wrapper .col-lg-9 {
width: 75%;
}
#wrapper .col-lg-8 {
width: 66.66666666666666% !important;
}
#wrapper .col-lg-7 {
width: 58.333333333333336% !important;
}
#wrapper .col-lg-6 {
width: 50% !important;
}
#wrapper .col-lg-5 {
width: 41.66666666666667% !important;
}
#wrapper .col-lg-4 {
width: 33.33333333333333% !important;
}
#wrapper .col-lg-3 {
width: 25% !important;
}
#wrapper .col-lg-2 {
width: 16.666666666666664% !important;
}
#wrapper .col-lg-1 {
width: 8.333333333333332% !important;
}
}
/*---------------------------------------------------------------------------*/
/* Megamenu
/*---------------------------------------------------------------------------*/
#wrapper .fusion-megamenu-wrapper.col-span-1 {
width: 192px;
}
#wrapper .fusion-megamenu-wrapper.col-span-2 {
width: 384px;
}
#wrapper .fusion-megamenu-wrapper.col-span-3 {
width: 576px;
}
#wrapper .fusion-megamenu-wrapper {
width: 768px;
-webkit-box-shadow: 0 2px 2px #999 !important;
-moz-box-shadow: 0 2px 2px #999 !important;
box-shadow: 0 2px 2px #999 !important;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-holder,
#wrapper .fusion-megamenu-wrapper .fusion-megamenu,
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu,
#wrapper .fusion-megamenu-wrapper .sub-menu {
padding: 0;
list-style: none;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-title {
margin: 0;
font-size: 13px;
line-height: 20px;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-icon,
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-bullet,
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-widgets-container {
display: none;
}
#wrapper .mobile-nav-item .fusion-megamenu-icon,
#wrapper .mobile-nav-item .fusion-megamenu-bullet{
display: none;
}
#wrapper .fusion-megamenu-wrapper .text-menu-icon {
position: absolute;
}
#wrapper .fusion-megamenu-wrapper .menu-text {
margin-left: 23px;
}
#wrapper .mobile-nav-item .fusion-megamenu-wrapper .row {
padding: 0;
}
#wrapper .mobile-nav-item .fusion-megamenu-title {
font-weight: normal;
margin: 0;
}
@media (min-width: 940px) {
#wrapper .fusion-megamenu-wrapper.col-span-1 {
width: 235px;
}
#wrapper .fusion-megamenu-wrapper.col-span-2 {
width: 470px;
}
#wrapper .fusion-megamenu-wrapper.col-span-3 {
width: 705px;
}
#wrapper .fusion-megamenu-wrapper {
width: 940px;
}
}
@media (min-width: 768px) {
#wrapper .fusion-megamenu-wrapper {
position: absolute;
left: 0;
z-index: 20000;
}
#wrapper .fusion-megamenu-wrapper a:hover {
color: #333;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-holder {
width: 100% !important;
padding: 0;
border-top: 3px solid #a0ce4e;
background-color: #edebeb;
}
#wrapper .fusion-megamenu-wrapper .sub-menu {
padding: 0;
list-style: none;
}
#wrapper .fusion-megamenu-wrapper .sub-menu.deep-level a {
padding-left: 49px !important;
}
#wrapper .fusion-megamenu-wrapper .sub-menu.deep-level .deep-level a {
padding-left: 64px !important;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu {
display: table;
padding: 0;
width: 100%;
list-style: none;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-border {
border-bottom: 1px solid #dcd9d9;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu {
display: table-cell;
float: none;
padding: 29px 0;
border-right: 1px solid #dcd9d9;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu li a {
display: block;
padding: 5px 34px !important;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu li a:hover,
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu .current-menu-item a {
background-color: #f3f2f2;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu .fusion-megamenu-icon img {
margin-top: -3px;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu:nth-child(4n) {
border-right: none;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-title {
margin-top: 0;
padding: 0 34px 15px 34px;
font: 18px/20px 'MuseoSlab500Regular',arial,helvetica,sans-serif;
font-weight:normal!important;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-title a:hover {
text-decoration: none;
color: #000;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-icon,
.fusion-megamenu-icon {
display: inline;
margin-right: 12px;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-icon img,
.fusion-megamenu-icon img {
margin-top: -2px;
max-height: 15px;
vertical-align: middle;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-bullet,
.fusion-megamenu-bullet {
display: block;
float: left;
margin-top: 0.5em;
margin-right: 10px;
border-top: 3px solid transparent;
border-bottom: 3px solid transparent;
border-left: 3px solid #333;
height: 0;
width: 0;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-widgets-container {
margin-bottom: 10px;
color: #333 !important;
font-size: 13px !important;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-widgets-container.second-level-widget {
padding: 0 34px;
}
}
/* v3.4 specific styles */
#wrapper .fusion-navbar-nav li.fusion-megamenu-menu:hover .fusion-megamenu-wrapper {
//display: block;
}
#wrapper .fusion-megamenu-wrapper * {
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#wrapper #sticky-nav .fusion-megamenu-wrapper {
top: 65px;
}
#wrapper .fusion-megamenu-wrapper .row {
clear: both;
}
#wrapper #sticky-nav .fusion-megamenu-wrapper .fusion-megamenu-holder {
top: 0 !important;
}
#wrapper #sticky-nav .fusion-megamenu-wrapper .fusion-megamenu {
top: 0 !important;
}
#nav .fusion-navbar-nav .fusion-megamenu-wrapper .fusion-megamenu-holder .fusion-megamenu .fusion-megamenu-submenu,
#sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper .fusion-megamenu-holder .fusion-megamenu .fusion-megamenu-submenu {
display: table-cell !important;
float: none !important;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu {
border-top: none !important;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-title {
color: #333 !important;
}
#wrapper #nav .fusion-megamenu-wrapper .fusion-megamenu-title a,
#wrapper #sticky-nav .fusion-megamenu-wrapper .fusion-megamenu-title a{
padding: 0 !important;
background: none !important;
border: none !important;
font: inherit !important;
}
#nav .fusion-navbar-nav .fusion-megamenu-wrapper ul,
#sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper ul {
position: relative !important;
top: auto;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
#nav .fusion-navbar-nav .fusion-megamenu-wrapper ul ul,
#sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper ul ul {
display: table !important;
table-layout: fixed;
width: 100% !important;
border-color: #dcd9d9 !important;
top:0;
left:0;
}
#wrapper #nav .fusion-navbar-nav .fusion-megamenu-wrapper ul ul ul.sub-menu,
#wrapper #sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper ul ul ul.sub-menu {
border: none !important;
background: none !important;
display: block !important;
}
#nav .fusion-navbar-nav .fusion-megamenu-wrapper li ul li li,
#sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper li ul li li {
display: block !important;
}
#wrapper #nav .fusion-navbar-nav .fusion-megamenu-wrapper li ul li a,
#wrapper #sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper li ul li a {
border-bottom: none !important;
}
#nav .fusion-navbar-nav .fusion-megamenu-wrapper li:hover > ul,
#sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper li:hover > ul {
display: table;
}
#nav .fusion-navbar-nav .fusion-megamenu-wrapper ul li:hover ul,
#sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper ul li:hover ul {
left: 0 !important;
top: 0 !important;
}
#wrapper #nav .fusion-megamenu-wrapper .fusion-megamenu-widgets-container a,
#wrapper #sticky-nav .fusion-megamenu-wrapper .fusion-megamenu-widgets-container a {
background: none !important;
border: none !important;
}
/* mega menu RTL styles */
.rtl #wrapper .fusion-megamenu-wrapper {
left: auto;
right: 0;
}
.rtl #wrapper .fusion-megamenu-wrapper .fusion-megamenu-icon, .rtl .fusion-megamenu-icon {
margin-left: 9px;
margin-right: 0;
}
.rtl #wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu {
border-left: 1px solid #DCD9D9;
border-right: 0;
}
.rtl #wrapper #nav .fusion-navbar-nav .fusion-megamenu-wrapper ul li:hover ul,
.rtl #wrapper #sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper ul li:hover ul {
right: 0 !important;
}
.rtl #wrapper .fusion-megamenu-wrapper .fusion-megamenu-bullet, .rtl .fusion-megamenu-bullet {
border-left: none;
border-right: 3px solid #333333;
float: right;
margin-left: 10px;
margin-right: 0;
}
h3.fusion-megamenu-title {
font-weight: normal !important;
}
span.links {
color: #fff;
}
.button-2.button.large.red.animated.fadeInRight {
margin-left: 80px;
} | docs/static/avada-stub/style.css | html{
overflow-y:scroll;
}
input[type=submit],
input[type=text],
input[type=password],
input[type=file],
textarea{
-webkit-appearance:none;
-webkit-border-radius:0;
}
input[type="image"]{
padding:0;
border:none;
}
body {
margin:0;
color:#747474;
min-width:320px;
-webkit-text-size-adjust:100%;
font:13px/20px 'PTSansRegular', Arial, Helvetica, sans-serif;
}
html {
overflow-x: hidden;
}
#wrapper {
overflow: visible;
}
.body_blank {
display:table;
height:100%;
width:100%!important;
position:absolute;
margin:0;
left:0;
top:0;
overflow-x: hidden;
}
body.body_blank.admin-bar {
top: 31px;
}
body.body_blank.admin-bar #wrapper #slidingbar-area {
top: 0;
}
.wrapper_blank {
display: table-cell;
float: none;
vertical-align: middle;
width: 100%;
}
.wrapper_blank .page-title-container {
margin-bottom: 25px;
}
.wrapper_blank #main{
background: transparent !important;
padding: 0;
}
img{
border-style:none;
vertical-align:top;
max-width:100%;
height:auto;
}
object{
max-width:100%;
}
a{
text-decoration:none;
color:#333;
}
a:hover {
color:#a0ce4e;
text-decoration:none;
}
input,
textarea,
select {
font:100% Arial, Helvetica, sans-serif;
vertical-align:middle;
color:#000;
}
form, fieldset {
margin:0;
padding:0;
border-style:none;
}
.clearfix:after,#content:after {
content: "";
display: table;
clear: both;
}
.clear{clear:both;}
.wp-caption{max-width:100% !important;}
#header{padding:0 10px 0;}
.avada-row{
margin:0 auto;
max-width:940px;
}
.avada-row:after{
content:"";
display:block;
clear:both;
}
#header-sticky .logo, #header .logo{
float:left;
overflow:hidden;
margin:31px 0;
}
#header-sticky .logo a, #header .logo a{
height:100%;
display:block;
}
#header-sticky .retina_logo,#header .retina_logo{display:none;}
#header-sticky .login-box,#header .login-box,#small-nav .login-box{
left:auto;
right:0;
}
#header-sticky .login-box .forgetmenot,#header .login-box .forgetmenot,#small-nav .login-box .forgetmenot{line-height:32px !important;}
#header-sticky .login-box .forgetmenot input,#header .login-box .forgetmenot input,#small-nav .login-box .forgetmenot input{margin:0;}
#header-sticky .login-box p,#header .login-box p,#small-nav .login-box p{font-size:11px !important;}
#header-sticky .login-box p .input-text,#header .login-box p .input-text,#small-nav .login-box p .input-text{margin-bottom:10px;}
.nav-holder .fusion-navbar-nav > li > ul, .nav-holder .fusion-navbar-nav > li > div, .nav-holder .fusion-navbar-nav .fusion-dropdown-menu ul,
.top-menu li > div, .top-menu li > .sub-menu {
-webkit-transition: opacity .2s, visibility .2s ease-in;
-moz-transition: opacity .2s, visibility .2s ease-in;
-o-transition: opacity .2s, visibility .2s ease-in;
transition: opacity .2s, visibility .2s ease-in;
/* fix flicker and use hardware acceleration */
-webkit-transform: translate3d(0, 0, 0);
z-index:-1;
visibility:hidden;
opacity:0;
}
#main-nav-search-form, #sticky-nav-search-form{
z-index:99998;
visibility:visible;
opacity:1;
}
#wrapper .nav-holder li:hover .fusion-megamenu-wrapper .fusion-megamenu-widgets-container{display:block;}
.nav-holder .fusion-navbar-nav li:hover > .sub-menu, .nav-holder .fusion-navbar-nav li:hover > div,
.top-menu li:hover > .sub-menu, .top-menu .cart:hover .cart-contents{
z-index:100000;
visibility:visible;
opacity:1;
}
nav#nav, nav#sticky-nav{
float:right;
font:14px/16px 'MuseoSlab500Regular', arial, helvetica, sans-serif;
z-index: 99999;
}
#nav ul, #sticky-nav ul{
list-style:none;
margin:0;
padding:0;
}
#nav ul li, #sticky-nav ul li{
float:left;
padding: 0 35px 0 0;
margin: 0;
}
ul#navigation > li:last-child{padding-right:0;}
#nav ul a,#sticky-nav ul a,.navigation li.current-menu-ancestor a{
display:block;
height:83px;
line-height:82px;
border-top:3px solid transparent;
}
#nav ul .current_page_item a, #nav ul .current-menu-item a, #nav ul > .current-menu-parent a,
#sticky-nav ul .current_page_item a, #sticky-nav ul .current-menu-item a, #sticky-nav ul > .current-menu-parent a{
color:#a0ce4e;
text-decoration:none;
border-color:#a0ce4e;
}
#nav ul li, #sticky-nav ul li{
position:relative;
}
#nav ul ul, #sticky-nav ul ul{
position:absolute;top:86px;left:0px;
width:170px;
background:#edebeb;
z-index:100000;
border-top:3px solid #a0ce4e;
z-index: 99999;
-moz-box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.06);
-webkit-box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.06);
box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.06);
/*-moz-box-shadow: -1px 1px 10px rgba(0,0,0,.22);
-webkit-box-shadow: -1px 1px 10px rgba(0,0,0,.22);
box-shadow: -1px 1px 10px rgba(0,0,0,.22);*/
}
#nav ul li ul li, #sticky-nav ul li ul li{
float:none;
margin:0;
padding: 0;
}
#wrapper #nav ul li ul li a, #wrapper #sticky-nav ul li ul li a{
border:0;
border-bottom:1px solid #dcdadb;
height:auto;
text-indent:0px;
font:13px/30px 'PT Sans', Arial, Helvetica, sans-serif;
color:#333333 !important;
padding:7px 20px;
line-height:19px;
}
#wrapper #nav ul li ul li a:hover,#wrapper #nav ul li ul li.current-menu-item > a,
#wrapper #sticky-nav ul li ul li a:hover,#wrapper #sticky-nav ul li ul li.current-menu-item > a{
background-color:rgba(255,255,255,0.5);
}
#nav ul ul ul, #sticky-nav ul ul ul{
top:-3px;
left:170px!important;
}
#nav .fusion-megamenu-wrapper ul,#sticky-nav .fusion-megamenu-wrapper ul{left:auto!important;}
#nav .dd-container,#sticky-nav .dd-container,.top-menu .dd-container{
max-width:100%;
display:none;
}
.main-nav-search {
width:50px;
}
a.search-link {
font-size: 14px;
font-family: FontAwesome !important;
cursor: pointer;
}
a.search-link:after {
border: 1px solid;
border-radius: 50% 50% 50% 50%;
padding: 5px;
content: "\f002";
}
.main-nav-search a:hover {
border-top: 3px solid transparent !important;
}
#header-sticky.sticky-header .main-nav-search a:hover {
border-top: none !important;
padding-top:3px !important;
}
.main-nav-search-form {
display: none;
left: auto;
position: absolute;
right: 0;
top: auto;
z-index: 99999;
width: 200px;
padding: 25px;
background-color: #ffffff;
border: 1px solid #E6E5E6;
text-align:right;
font-size: 0;
}
#header-sticky.sticky-header .main-nav-search-form {
top: 65px;
}
.main-nav-search-form input{
display: inline-block !important;
color: #AAA9A9;
background-color: #ffffff;
border: 1px solid #D2D2D2;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) inset;
-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) inset;
-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) inset;
color: #747474;
font-size: 13px;
height: 16px;
padding: 8px 5px !important;
width:150px;
}
.header-wrapper .header-v4 .main-nav-search-form input#s,.header-wrapper .header-v5 .main-nav-search-form input#s {
width:150px;
}
.main-nav-search-form input[type="submit"], .search-page-search-form input[type="submit"] {
background: #000000 !important;
border: none !important;
color: #FFFFFF !important;
font-size: 14px;
height: 34px;
line-height: 34px;
margin: 0;
padding: 0 !important;
width: 34px;
text-indent: 0 !important;
display: inline-block !important;
cursor: pointer;
font-family: FontAwesome !important;
}
.main-nav-search-form input[type="submit"]:hover,.search-page-search-form input[type="submit"]:hover {
background: #A0CE4E;
}
.search-page-search-form {
padding-bottom: 60px;
border-bottom: 1px solid #E6E5E6;
margin-bottom: 60px;
}
.search-page-search-form .seach-form { text-align: right; margin-left:-3px; font-size: 0;}
.search-page-search-form input {
color: #AAA9A9;
background-color: #ffffff;
border: 1px solid #D2D2D2;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) inset;
-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) inset;
-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) inset;
color: #747474;
font-size: 13px;
height: 16px;
padding: 8px 2% !important;
width: -moz-calc(96% - 39px);
width: -webkit-calc(96% - 39px);
width: -ms-calc(96% - 39px);
width: -o-calc(96% - 39px);
width: calc(96% - 39px);
display: inline-block !important;
}
#fallback-slide{display:none;}
#fallback-slide img{width:100%;}
body #header-sticky.sticky-header{background:transparent !important;margin:0;position:fixed;top:0;left:0;z-index:99998;display:none;padding:0;width:100%;height: 105px;}
body.admin-bar #header-sticky.sticky-header{top:32px;}
body #header-sticky.sticky-header.sticky{display:block;}
body #header-sticky.sticky-header .logo{margin-top:0;margin-bottom:0;max-height:65px;width:auto; float: left;}
body #header-sticky.sticky-header #sticky-nav ul ul{top:65px !important;}
body #header-sticky.sticky-header #sticky-nav ul ul ul{top:-3px !important;}
body #header-sticky.sticky-header .sticky-shadow {
height:102px;
background:rgba(255,255,255,0.97) !important;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
padding: 0 10px;
}
.sticky-header #sticky-nav ul li a {
border-top-width: 0;
padding-top: 3px;
}
.sticky-header #sticky-nav ul .current_page_item a, .sticky-header #sticky-nav ul .current-menu-item a, .sticky-header #sticky-nav ul > .current-menu-parent a, .sticky-header .navigation li.current-menu-ancestor a, .sticky-header #sticky-nav ul > li > a:hover {
border-top-width: 3px;
padding-top: 0;
}
.sticky-header #sticky-nav ul li ul li a, .sticky-header #sticky-nav ul li ul li a:hover { padding: 7px 20px; }
body #header-sticky.sticky-header .sticky-shadow .mobile-nav-holder { padding-top: 17px; }
body #header-sticky.sticky-header .sticky-shadow .nav-holder .dd-container { padding-top: 17px; }
body #header-sticky.sticky-header .sticky-shadow .nav-holder .dd-options li a { padding: 10px; }
/*
body #header-sticky.sticky-header .navigation > li > a, .navigation li.current-menu-ancestor a,
body #header-sticky.sticky-header #sticky-nav ul.menu .cart a{
height: 83px;
line-height: 83px;
}
*/
.gallery-box{
background:#3d3c3c;
padding:0 10px;
}
.gallery{
margin:0 auto;
max-width:1400px;
}
.gallery-box img{width:100%;}
#main{
padding:55px 10px 45px;
background:#fff;
clear:both;
}
.reading-box-container{
margin:0 0 84px;
}
.reading-box{
padding:28px 28px 27px 31px;
border-left:3px solid #a0ce4e;
background:#f2efef;
}
#main .reading-box h2{
margin:0 0 7px;
font:18px/20px 'MuseoSlab500Regular', arial, helvetica, sans-serif;
}
.reading-box p{margin:0 !important;}
.continue{
float:right;
}
.columns{
overflow:hidden;
margin:0 0 60px;
}
.columns .col{
float:left;
width:22%;
margin:0 4% 20px 0;
}
.columns .col:nth-child(4n) {
margin-right: 0;
}
.columns-3 .col{
width:30.6666%
}
.columns-2 .col{
width:48%
}
.columns-1 .col{
width:100%
}
.columns-3 .col:nth-child(3n+1){
clear:both;
}
.columns-3 .col:nth-child(3n){
margin-right:0;
}
.columns-2 .col:nth-child(1n){
margin-right:0;
float:left;
clear:left;
}
.columns-2 .col:nth-child(2n){
margin-right:0 !important;
float:right;
clear:right;
}
.columns-4 .col{
width:22%;
margin:0 4% 0 0;
}
.columns-4 .col:nth-child(4n+1){
clear:both;
}
.columns-4 .col:nth-child(4n){
margin-right:0 !important;
}
.columns-5 .col:nth-child(5n+1){
clear:both;
}
.columns-5 .col:nth-child(5n){
margin-right:0 !important;
}
.columns .col.last{margin-right:0;}
.col .heading{
overflow:hidden;
margin:0 0 15px;
}
.col .heading img{
float:left;
margin:0 10px 0 0;
}
.col p{margin:0 0 23px;}
.col .flexslider{margin:0;}
#main h2{
color:#333;
margin:0 0 20px;
font:18px/20px 'MuseoSlab500Regular', arial, helvetica, sans-serif;
}
#main .columns h2{margin:0; line-height:35px !important;}
.more{
overflow:hidden;
display:block;
font:13px/15px 'PTSansRegular', arial, helvetica, sans-serif;
}
.more a{
float:right;
padding:0 0 0 0;
}
.more a:after,.read-more:after{
font-family: FontAwesome;
content:'\f054';
font-size:8px;
padding-left:5px;
}
.more a.active{
color:#a0ce4e;
text-decoration:none;
}
.more a.active:after{
font-family: FontAwesome;
content:'\f054';
color:#a0ce4e;
font-size:8px;
padding-left:5px;
}
.content-boxes .more{margin-top:18px;}
.container{overflow:hidden;}
.avada-container .columns{
margin:0 0 50px;
}
#main .container h2{margin:0;}
.container .columns .col{
width:31.42857%;
padding:0 2.85714% 0 0;
}
.container .col img{width:100%;}
.container .columns .col.last{margin-right:0;}
.container .holder{overflow:hidden;}
.avada-container h3{
margin:18px 0 5px;
font:13px/15px 'PTSansBold', arial, helvetica, sans-serif;
}
.container h3 a.active{
text-decoration:none;
color:#a0ce4e;
}
.avada-container h4{
margin-top:15px;
margin-bottom:5px;
}
.slider{overflow:hidden;}
.review{
width:100%;
}
.title{
margin:0 0 31px;
overflow:hidden;
display:table;
}
.title h1,.title h2,.title h3,.title h4,.title h5,.title h6{display:table-cell;white-space:pre;}
.title h1,#main .post-content .title h1{
float:left;
padding:0 8px 0 0 !important;
margin:0 !important;
}
.title h2,#main .post-content .title h2{
float:left;
padding:0 8px 0 0 !important;
margin:0 !important;
font-size:18px !important;
}
.title h3,#main .post-content .title h3{
float:left;
padding:0 8px 0 0 !important;
margin:0 !important;
}
.title h4,#main .post-content .title h4{
float:left;
padding:0 8px 0 0 !important;
margin:0 !important;
}
.title h5,#main .post-content .title h5{
float:left;
padding:0 8px 0 0 !important;
margin:0 !important;
}
.title h6,#main .post-content .title h6{
float:left;
padding:0 8px 0 0 !important;
margin:0 !important;
}
.title .title-sep-container{
display:table-cell;
vertical-align:middle;
width:100%;
position:relative;
height:6px;
}
.title-sep{
display:block;
border-top:1px solid #e7e6e6;
border-bottom:1px solid #e7e6e6;
width:100%;
position:relative;
height:6px;
}
.border-below-title{display:block;}
.border-below-title h1,.border-below-title h2,.border-below-title h3,.border-below-title h4,.border-below-title h5,.border-below-title h6{white-space:normal;}
#main .post-content .border-below-title h1,#main .post-content .border-below-title h2,#main .post-content .border-below-title h3,#main .post-content .border-below-title h4,#main .post-content .border-below-title h5,#main .post-content .border-below-title h6{float:none;padding-right:0 !important;}
.border-below-title .title-sep-container{display:none;height:8px;}
.meta{
list-style:none;
margin:0 0 13px;
padding:0;
overflow:hidden;
font-size:12px;
line-height:14px;
color:#333;
}
.meta li{
float:left;
padding:0 8px 0 9px;
border-left:1px solid #333333;
}
.meta li:first-child{
padding-left:0;
border-left:0;
}
.layout-thumbnails-on-side.layout-columns-3 .meta li:first-child,.layout-thumbnails-on-side.layout-columns-4 .meta li:first-child,
.layout-date-on-side.layout-columns-3 .meta li:first-child,.layout-date-on-side.layout-columns-4 .meta li:first-child{
margin-bottom:5px;
}
.meta .date{font:12px/14px 'PTSansItalic', arial, helvetica, sans-serif;}
.review blockquote{
background:none !important;
border-left:none !important;
padding:0 !important;
margin:0 !important;
}
.review blockquote q{
display:block;
padding:25px 14px 24px 24px;
background:#f6f3f3;
font:13px/20px 'PTSansItalic', arial, helvetica, sans-serif;
}
.review blockquote q::before,.review blockquote q::after,
.review blockquote q:before,.review blockquote q:after{
content:'';
}
.review blockquote q p:first-child::before{
content:open-quote;
}
.review blockquote q p:last-child::after{
content:close-quote;
}
.review blockquote div{
display:block;
padding:12px 0 0 2px;
color:#333;
font-style:normal !important;
position:relative;
}
.review blockquote div:after{
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.review blockquote div:after{
border-color: rgba(72, 71, 71, 0);
border-top-color: #f6f3f3;
border-width: 10px;
bottom:auto;
top:0px;
left:30px;
}
.review blockquote div strong{
padding:0;
font:13px/15px 'PTSansBold', arial, helvetica, sans-serif;
font-style:normal !important;
}
.review blockquote div span{
font-style:normal !important;
}
.review blockquote div{
float:left;
line-height:15px;
}
.review blockquote div .company-name{
padding-left:53px;
background:url(images/ico-user.png) no-repeat;
display:block;
min-height:29px;
padding-top:6px;
font-style:normal !important;
}
.review.male blockquote div .company-name{
background:url(images/ico-user.png) no-repeat;
}
.review.female blockquote div .company-name{
background:url(images/ico-user-girl.png) no-repeat;
}
.footer-widget-col{margin-bottom:20px;}
.footer-widget-col:last-child{margin-bottom:0;}
.footer-area{
border-top:12px solid #e9eaee;
background:#363839;
padding:43px 10px 40px;
color:#8c8989;
position: relative;
}
.footer-area .logo{
float:none;
display:block;
margin:0 0 22px;
background:url(images/logo-footer.gif) no-repeat;
}
.footer-area h3{
margin:0 0 28px;
color:#ddd;
text-transform:uppercase;
font:13px/20px 'PTSansBold', arial, helvetica, sans-serif;
}
.footer-area .columns{margin:0;}
.footer-area .text-block{
text-shadow:1px 2px 1px #000;
}
.footer-area .holder-block img{width:100%;}
.footer-area ul{
list-style:none;
margin:0;
padding:0;
font-size:12px;
line-height:15px;
}
.footer-area ul li a{
padding:12px 0;
border-bottom: 1px solid #282a2b;
display:block;
}
.footer-area .footer-widget-col ul:first-child > li:first-child > a,.footer-area .footer-widget-col > ul > li:first-child > a{background-image:none;padding-top:0px;}
.footer-area a{
text-shadow:1px 2px 1px #000;
color:#bfbfbf;
}
.footer-area ul li a:hover{
color:#a0ce4e;
}
.footer-area ul#recentcomments li.recentcomments:first-child{
padding-top:0px !important;
background:none !important;
}
.footer-area li.recentcomments {
padding:12px 0;
border-bottom: 1px solid #282a2b;
display:block;
}
.footer-area li.recentcomments a{
border: none !important;
}
#footer{
padding:18px 10px 12px;
background:#282a2b;
border-top:1px solid #4b4c4d;
}
.copyright{
list-style:none;
margin:0;
padding:0;
float:left;
color:#8c8989;
font-size:12px;
text-shadow:1px 2px 1px #000;
}
.copyright li{
float:left;
padding:0 9px 0 10px;
background:url(images/divider-02.gif) no-repeat 0 50%;
}
.copyright li:first-child{
padding-left:0;
background:none;
}
.copyright a{color:#bfbfbf;}
#footer .social-networks{width:40%;}
.social-networks{
list-style:none;
margin:0;
padding:0;
float:right;
}
.social-networks li{
float:right;
margin:0 0 0 20px;
position:relative;
height:26px;
}
.social-networks a{
text-indent:-9999px;
overflow:hidden;
float:left;
background-repeat:no-repeat;
background-position:top left !important;
}
.social-networks li.custom a{
background:none;
text-indent:0;
}
.social_links_shortcode .social-networks{float:none !important;}
#sidebar .social-networks{float:none !important;}
#sidebar .social-networks li,.social_links_shortcode li{float:left !important; margin-left:0 !important; margin-right:0px !important; width:35px !important;}
#sidebar .social-networks a{border-bottom:0 !important; padding:0 !important;}
#sidebar .social-networks li{margin-bottom:10px !important;}
.social-networks .facebook a{background-image:url(images/facebook.png) !important; width:9px; height:17px;}
.social-networks .twitter a{background-image:url(images/twitter.png) !important; width:13px; height:16px;}
.social-networks .linkedin a{background-image:url(images/linkedin.png) !important; width:14px; height:13px;}
.social-networks .rss a{background-image:url(images/rss.png) !important; width:13px; height:13px;}
.social-networks .dribbble a{background-image:url(images/dribbble.png) !important; width:16px; height:16px;}
.social-networks .youtube a{background-image:url(images/youtube.png) !important; width:23px; height:25px;}
.social-networks .tf-pinterest a{background-image:url(images/pinterest.png) !important; width:16px !important; height:20px !important;}
.social-networks .vimeo a{background-image:url(images/vimeo.png) !important; width:18px; height:16px;}
.social-networks .flickr a{background-image:url(images/flickr.png) !important; width:25px; height:17px;}
.social-networks .tumblr a{background-image:url(images/tumblr.png) !important; width:15px; height:16px;}
.social-networks .google a{background-image:url(images/google.png) !important; width:21px; height:18px;}
.social-networks .digg a{background-image:url(images/digg.png) !important; width:21px; height:19px;}
.social-networks .blogger a{background-image:url(images/blogger.png) !important; width:16px; height:15px;}
.social-networks .skype a{background-image:url(images/skype.png) !important; width:19px; height: 19px;}
.social-networks .myspace a{background-image:url(images/myspace.png) !important; width:18px; height:18px;}
.social-networks .deviantart a{background-image:url(images/deviantart.png) !important; width:23px; height:18px;}
.social-networks .yahoo a{background-image:url(images/yahoo.png) !important; width:22px; height:14px;}
.social-networks .reddit a{background-image:url(images/reddit.png) !important; width:19px; height:15px;}
.social-networks .forrst a{background-image:url(images/forrst.png) !important; width:15px; height:19px;}
.social-networks .email a{background-image:url(images/mail.png) !important; width:20px; height:14px; margin-top:2px;}
.social-networks-light .facebook a{background-image:url(images/white/facebook.png) !important;}
.social-networks-light .twitter a{background-image:url(images/white/twitter.png) !important;}
.social-networks-light .linkedin a{background-image:url(images/white/linkedin.png) !important;}
.social-networks-light .rss a{background-image:url(images/white/rss.png) !important;}
.social-networks-light .dribbble a{background-image:url(images/white/dribbble.png) !important;}
.social-networks-light .youtube a{background-image:url(images/white/youtube.png) !important;}
.social-networks-light .tf-pinterest a{background-image:url(images/white/pinterest.png) !important;}
.social-networks-light .vimeo a{background-image:url(images/white/vimeo.png) !important;}
.social-networks-light .flickr a{background-image:url(images/white/flickr.png) !important;}
.social-networks-light .tumblr a{background-image:url(images/white/tumblr.png) !important;}
.social-networks-light .google a{background-image:url(images/white/google.png) !important;}
.social-networks-light .digg a{background-image:url(images/white/digg.png) !important;}
.social-networks-light .blogger a{background-image:url(images/white/blogger.png) !important;}
.social-networks-light .skype a{background-image:url(images/white/skype.png) !important;}
.social-networks-light .myspace a{background-image:url(images/white/myspace.png) !important;}
.social-networks-light .deviantart a{background-image:url(images/white/deviantart.png) !important;}
.social-networks-light .yahoo a{background-image:url(images/white/yahoo.png) !important;}
.social-networks-light .reddit a{background-image:url(images/white/reddit.png) !important;}
.social-networks-light .forrst a{background-image:url(images/white/forrst.png) !important;}
.social-networks-light .email a{background-image:url(images/white/mail.png) !important;}
.popup{
display:none;
position:absolute;
padding:0 0 6px;
color:#d1d1d2;
font-size:11px;
line-height:15px;
bottom:110%;
left:-17px;
background:url(images/bg-popup.png) no-repeat 0 100%;
}
.popup p{margin:0 !important;}
.popup .holder{
padding:4px 11px;
background:#46494a;
}
.popup span{display:inline-block;}
.mobile-button{
display:none !important;
margin:20px 0 0;
}
.page-title-container{
height:87px;
background-position:center center;
background-repeat:no-repeat;
background-color:#f6f6f6;
border-top:1px solid #d2d3d4;
border-bottom:1px solid #d2d3d4;
display: table;
width:100%;
}
.page-title{
display: table-cell;
vertical-align: middle;
width:940px;
margin:0 auto;
overflow:hidden;
}
.page-title-wrapper{
width: 100%;
margin: 0 auto;
max-width: 960px;
padding: 0 10px;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
}
.page-title-captions {
float:left;
width:45%;
}
.page-title h1{
font-weight:normal;
font:18px 'MuseoSlab500Regular', arial, helvetica, sans-serif;
line-height:26px;
color:#343333;
margin:0;
padding:0;
}
.page-title h3{
font-weight:normal;
font:14px 'MuseoSlab500Regular', arial, helvetica, sans-serif;
line-height:26px;
color:#343333;
margin:0;
padding:0;
}
.page-title ul{
float:right;
list-style:none;
margin:0;
padding:0;
width:45%;
text-align:right;
}
.page-title ul li{
margin:0;
padding:0;
display:inline;
color:#333333;
font-size:10px;
margin-left:5px;
}
.page-title ul li a{
color:#333333;
padding-right:5px;
}
.page-title ul li:after{
content:'/';
}
.page-title ul li:last-child:after{
content:'';
}
.page-title-container .search{
width:219px;
float:right;
}
#content{
width:71.1702128%;
float:left;
}
#content.full-width{
width:100% !important;
}
#posts-container {
position: relative !important;
}
.image{
position:relative;
overflow:hidden;
z-index:1;
}
/*.image > img{
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.image:hover > img{
-webkit-transform: translateX(300px);
-moz-transform: translateX(300px);
-o-transform: translateX(300px);
-ms-transform: translateX(300px);
transform: translateX(300px);
}*/
.image .image-extras{
width:101%;
height:100%;
background-image: linear-gradient(top, #D1E990 0%, #AAD75B 100%);
background-image: -o-linear-gradient(top, #D1E990 0%, #AAD75B 100%);
background-image: -moz-linear-gradient(top, #D1E990 0%, #AAD75B 100%);
background-image: -webkit-linear-gradient(top, #D1E990 0%, #AAD75B 100%);
background-image: -ms-linear-gradient(top, #D1E990 0%, #AAD75B 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #D1E990),
color-stop(1, #AAD75B)
);
position:absolute; top:0; left:0;
text-align:center;
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-o-transform: translateX(-100%);
-ms-transform: translateX(-100%);
transform: translateX(-100%);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
-webkit-transform-style: preserve-3d;
-webkit-backface-visibility: hidden;
}
.image:hover .image-extras{
-webkit-transform: translateX(0%);
-moz-transform: translateX(0%);
-o-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
-webkit-transform-style: preserve-3d;
-webkit-backface-visibility: hidden;
}
.no-csstransforms .image .image-extras{
display:none;
}
.no-csstransforms .image:hover .image-extras{
display:block;
}
.image .image-extras:before{
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
.image a{
display:block;
}
.image .image-extras .image-extras-content{
display: inline-block;
vertical-align: middle;
width:90%;
height:auto;
}
.image .image-extras .image-extras-content h3,.image .image-extras .image-extras-content h2,.image .image-extras .image-extras-content a{
font:13px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#333333 !important;
text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
margin:0 !important;
margin-top:10px !important;
}
.image .image-extras .image-extras-content h4,.image .image-extras .image-extras-content .cats,.image .image-extras .image-extras-content .cats a,.image .image-extras .image-extras-content .price{
font:11px 'PTSansRegular', arial, helvetica, sans-serif !important;
color:#333333 !important;
text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
margin:0;
margin-top:5px !important;
}
.image .image-extras .image-extras-content h4 a{
display:inline;
color:#333333 !important;
font:11px 'PTSansRegular', arial, helvetica, sans-serif !important;
}
.image .image-extras .image-extras-content h4 a:hover{
color:#444 !important;
}
.image .image-extras .image-extras-content img{
width:auto !important;
display:inline !important;
}
.image .image-extras .image-extras-content .icon{
display:inline;
}
.image .image-extras .image-extras-content .icon,
.image .image-extras .image-extras-content .icon img{width:35px; height:36px; display:inline-block; vertical-align:top; text-indent:-10000px;}
.image-extras .link-icon{background:url(images/link-ico.png);}
.image-extras .gallery-icon{background:url(images/finder-ico.png);}
.image-extras .cats{display:block;}
.image-extras .cats a{display:inline;line-height:normal !important;}
body .post-content .image-extras .link-icon{margin-right:3px !important;}
.post-content .image-extras h3,.post-content .image-extras h4{line-height:normal !important;}
.post-content .image-extras h4{font-size:11px !important;margin-top:3px !important;}
.post{
margin-bottom:65px;
}
.post .image{
margin-bottom:40px;
}
#main .post h2{
font:18px 'MuseoSlab500Regular', arial, helvetica, sans-serif;
color:#333333;
margin:0 0 25px 0;
padding:0;
}
#main .post h2 a{
color:#333333;
}
.post .post-content{
color:#747474;
}
.post .meta-info{
line-height:34px;
border-top:1px solid #e7e6e6;
border-bottom:1px solid #e7e6e6;
margin-top:36px;
font-size:12px;
clear:both;
overflow:hidden;
min-height:34px;
}
.single-post .post .meta-info, .avada_faq .meta-info{
margin-bottom:55px;
}
.post .meta-info .sep{
padding:0px 5px;
}
.post .meta-info .alignleft{
width:80%;
}
.search input,#searchform input{
border:1px solid #e7e6e6;
padding:5px 0px;
font-size:13px;
color:#333333;
text-indent:10px;
display:block;
}
#sidebar{
width:23.4042553%;
float:right;
}
#sidebar .widget{
margin-bottom:45px;
position:relative;
}
#sidebar .widget.flickr{
overflow:hidden;
}
#sidebar .widget h3{
margin:0;
padding:0;
font:13px 'MuseoSlab500Regular', arial, helvetica, sans-serif;
margin-bottom:18px;
color:#333333;
}
#sidebar .widget ul{
list-style:none;
margin:0;
padding:0;
}
#sidebar .widget li{
margin:0;
padding:0;
}
#sidebar .widget li a, #sidebar .widget .recentcomments, #sidebar .widget_categories li{
display:block;
border-bottom:1px solid #e7e6e6;
color:#838383;
padding:10px;padding-left:0;
}
#sidebar .widget .recentcomments a{
background:none !important;
border:none !important;
}
#sidebar .contact_info .address{
margin:0;
margin-bottom:15px;
}
#sidebar .contact_info p, .footer-area .contact_info p, #slidingbar .contact_info p{
margin:0;
}
#sidebar .social_links .social li,.footer-area .social_links .social li,#slidingbar-area .social_links .social li{
display:inline-block;
margin-bottom:20px;
width:15%;
position:relative;
}
#sidebar .social_links .social li a,.footer-area .social_links .social li a,#slidingar-area .social_links .social li a{
background:none;
display:inline-block;
border-bottom: none;
line-height:normal;
text-indent:-10000px;
height:18px;
padding:0 !important;
background-image:url(images/social_links.png);
}
#sidebar .social_links .social li a.rss,.footer-area .social_links .social li a.rss,#slidingbar-area .social_links .social li a.rss{
background-position:-168px -1px;
width:13px;
}
#sidebar .social_links .social li a.facebook,.footer-area .social_links .social li a.facebook,#slidingbar-area .social_links .social li a.facebook{
background-position:-3px 0px;
width:9px;
}
#sidebar .social_links .social li a.twitter,.footer-area .social_links .social li a.twitter,#slidingbar-area .social_links .social li a.twitter{
background-position:-45px 0px;
width:13px;
}
#sidebar .social_links .social li a.dribble,.footer-area .social_links .social li a.dribble,#slidingbar-area .social_links .social li a.dribble{
background-position:-88px -39px;
width:16px;
}
#sidebar .social_links .social li a.google,.footer-area .social_links .social li a.google,#slidingbar-area .social_links .social li a.google{
background-position:-45px -39px;
width:21px;
}
#sidebar .social_links .social li a.linkedin,.footer-area .social_links .social li a.linkedin,#slidingbar-area .social_links .social li a.linkedin{
background-position:-90px -1px;
width:14px;
}
#sidebar .social_links .social li a.blogger,.footer-area .social_links .social li a.blogger,#slidingbar-area .social_links .social li a.blogger{
background-position:-204px -1px;
width:16px;
}
#sidebar .social_links .social li a.tumblr,.footer-area .social_links .social li a.tumblr,#slidingbar-area .social_links .social li a.tumblr{
background-position:-129px 0px;
width:15px;
}
#sidebar .social_links .social li a.reddit,.footer-area .social_links .social li a.reddit,#slidingbar-area .social_links .social li a.reddit{
background-position:0px -39px;
width:19px;
}
#sidebar .social_links .social li a.yahoo,.footer-area .social_links .social li a.yahoo,#slidingbar-area .social_links .social li a.yahoo{
background-position:-125px -40px;
width:22px;
}
#sidebar .social_links .social li a.deviantart,.footer-area .social_links .social li a.deviantart,#slidingbar-area .social_links .social li a.deviantart{
background-position:-165px -40px;
width:23px;
}
#sidebar .social_links .social li a.vimeo,.footer-area .social_links .social li a.vimeo,#slidingbar-area .social_links .social li a.vimeo{
background-position:-202px -38px;
width:19px;
}
#sidebar .social_links .social li a.custom,.footer-area .social_links .social li a.custom,#slidingbar-area .social_links .social li a.custom{
background:none !important;
text-indent:0 !important;
width:auto !important;
}
.footer-area .social_links .social li,#slidingbar-area .social_links .social li{
background:none !important;
padding:0 !important;
}
.footer-area .social_links .social-networks li a,#slidingbar-area .social_links .social-networks li a{
border: none;
}
#sidebar .flickr-photo a{
background:none !important;
float:left;
border:0 !important;
}
#sidebar .widget_categories li a{
display:block;
border:0;
background:none;
padding:0;
}
#sidebar #s,.footer-area #s,#slidingbar-area #s{width:100%;}
.tab-holder{
border:1px solid #eaeaea;
}
.tab-holder .tabs{
height:39px;
list-style:none;
margin:0;
padding:0;
overflow:hidden;
}
.tab-holder .tabs li{
margin:0;
padding:0;
border-right:1px solid #d9d9d9;
height:39px;
float:left;
}
.tab-holder .tabs li a{
border:0 !important;
height:39px !important;
line-height:39px !important;
font:13px/39px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
text-indent:0 !important;
color:#333333 !important;
padding:0 15px !important;
border-bottom:1px solid #dcdcdc !important;
}
.tab-holder .tabs li:last-child{
border-right:0 !important;
}
.tab-holder .tabs li:last-child a{
width:100% !important;
}
.tab-holder .tabs li.active a{
background:none !important;
border-top:3px solid #84c650 !important;
height:36px !important;
line-height:36px !important;
border-bottom:0 !important;
}
.tab-holder .tabs li img{
margin-top:9px;
}
.tab-holder .news-list{
list-style:none;
margin:0;
padding:0;
}
.tab-holder .news-list li{
border-bottom:1px solid #e2e2e2;
padding:20px 15px !important;
overflow:hidden;
}
.tab-holder .news-list li a{
background:none !important;
padding:0 !important;
}
.tab-holder .news-list li:last-child{
border-bottom:0;
}
.tab-holder .news-list .post-holder a, #slidingbar-area .tab-holder .news-list .post-holder a{
margin:0;
padding:0;
overflow:hidden;
background:none !important;
border:0 !important;
text-indent:0 !important;
height:auto !important;
line-height:normal !important;
}
.tab-holder .news-list li .image{
float:left;
margin-right:13px;
}
.tab-holder .news-list li .post-holder{
}
.tab-holder .news-list li .post-holder a{
color:#444444;
font-size:13px !important;
line-height:17px !important;
}
.tab-holder .news-list li .post-holder p {
margin:0;
margin-bottom:5px;
}
.tab-holder .news-list li .post-holder .meta{
margin:0;
margin-top:2px;
font-size:12px !important;
color:#747474 !important;
}
.tab-holder .news-list li .post-holder .meta em{
font-style:normal !important;
font-size:12px !important;
color:#747474 !important;
}
.tab-holder .news-list li .post-holder .comment-text-side{
line-height:16px !important;
}
.pyre_tabs .tab-holder .tabs li a{
padding:0 3px !important;
text-align:center;
background: #F1F2F2 !important;
display: block;
}
.footer-area .pyre_tabs .tab-holder .tabs li, #slidingbar-area .pyre_tabs .tab-holder .tabs li {
border:none;
}
.footer-area .pyre_tabs .tab-holder .tabs li.active a, #slidingbar-area .pyre_tabs .tab-holder .tabs li.active a,
.footer-area .pyre_tabs .tab-holder .tabs li a:hover, #slidingbar-area .pyre_tabs .tab-holder .tabs li a:hover{
background: none !important;
}
.footer-area .pyre_tabs .tab-holder .tabs li a, #slidingbar-area .pyre_tabs .tab-holder .tabs li a {
background: rgba(0,0,0,0.2) !important;
}
.footer-area .pyre_tabs .tab-holder, #slidingbar-area .pyre_tabs .tab-holder {
border: none !important;
}
.footer-area .pyre_tabs .tab-holder .tabs-wrapper, #slidingbar-area .pyre_tabs .tab-holder .tabs-wrapper {
border:1px solid #3E3E3E;
border-top:none;
}
.pyre_tabs .image{
width:52px;
height:50px;
}
.pyre_tabs .image a{
text-indent:0 !important;
height:auto !important;
line-height:normal !important;
width:auto !important;
}
.pyre_tabs .image .image-extras-content img{
width:20px;
height:20px;
}
#jtwt li{
background:none !important;
}
#jtwt .jtwt_tweet{
margin-bottom:30px;
color:#838383;
font-size:13px;
line-height:20px;
background:url(images/twitter-icon.png) no-repeat top left !important;
padding-left:45px !important;
padding-top:0px !important;
}
#jtwt .jtwt_tweet a{
background:none !important;
color:#BFBFBF;
display:inline !important;
padding:0 !important;
border:0 !important;
}
#jtwt .jtwt_tweet a:hover{
color:#A0CE4E;
}
#jtwt .jtwt_tweet .jtwt_tweet_text{margin-bottom:0 !important;}
.recent-works-items{
overflow:hidden;
}
.recent-works-items a{
float:left;
padding:3px;
}
.footer-area .columns-4 .recent-works-items a,#slidingbar-area .columns-4 .recent-works-items a{
max-width: 60px;
}
.pagination.infinite-scroll { display: none; }
.pagination,.woocommerce-pagination{
float:right;
margin-top:40px;
font-size:9px;
}
.pagination a.inactive,.woocommerce-pagination .page-numbers{
border:1px solid #747474;
display:inline-block;
height:15px;
line-height:15px;
color:#747474;
padding:0 5px;
margin-left:5px;
}
.pagination a.inactive:hover,.woocommerce-pagination .page-numbers:hover{
border:1px solid #a0ce4e;
}
.pagination .current,.woocommerce-pagination .current{
border:1px solid #a0ce4e;
display:inline-block;
height:15px;
line-height:15px;
color:#fff;
padding:0 5px;
margin-left:5px;
background:#a0ce4e;
}
.pagination .pagination-prev,.woocommerce-pagination .prev{
margin-right:8px;
font-size:12px;
}
.pagination .pagination-next,.woocommerce-pagination .next{
margin-left:8px;
font-size:12px;
}
.img-list{
overflow:hidden;
}
.img-list li{
padding:5px !important;
background:none !important;
float:left;
}
.img-list a{
background:none !important;
height:auto !important;
width:auto !important;
text-indent:0 !important;
border:0px !important;
}
.blog-medium-image{
float:left;
margin:0 !important;
margin-right:25px !important;
width:320px;
}
.share-box{
background:#f5f5f5;
height:71px;
margin-bottom:55px;
}
.share-box h4{
color:#343333 !important;
margin:0;
padding:0 20px 0 25px;
font:13px/20px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
float:left;
margin-top:26px;
}
.share-box ul{
float:right;
list-style:none;
margin:0;
padding:0;
margin-top:28px;
}
.share-box li{
float:left;
list-style:none;
margin:0;
padding:0;
margin-right:29px;
position:relative;
}
.share-box li a{
float:left;
height:19px;
}
.share-box li.facebook a{
width:9px;
background-position:0 0;
}
.share-box li.twitter a{
width:13px;
background-position:-38px 0;
}
.share-box li.linkedin a{
width:14px;
background-position:-80px 0;
}
.share-box li.reddit a{
width:19px;
background-position:-205px 0;
}
.share-box li.tumblr a{
width:15px;
background-position:-122px 0;
}
.share-box li.google a{
width:21px;
background-position:-250px 0;
}
.share-box li.email a{
width:20px;
background-position:-293px 0;
}
.about-author{
margin-bottom:55px;
overflow:hidden;
}
.about-author .title a{
color:#a0ce4e !important;
}
.about-author div.avatar{
float:left;
margin-right:20px;
margin-bottom:5px;
}
.clientslider-container,
.images-carousel-container {
height:118px;
overflow:hidden;
}
.recent-works-carousel {
height:138px;
overflow:hidden;
}
.related-posts{
margin-bottom:55px;
}
.related-posts .image{
width:180px;
height:138px;
margin-bottom:0;
}
.single-related-posts .es-carousel ul{margin-left:7px !important;}
.related-posts .image-extras-content{
}
.es-carousel-wrapper{
background:none;
padding:0px 0px;
position:relative;
overflow: hidden:
}
.es-carousel{
overflow:hidden;
}
.related-projects .es-carousel{
padding-left:44px;
}
.clients-carousel{
padding:0;
}
.clients-carousel .es-carousel{
padding-left:13px;
}
.clients-carousel .es-carousel li{
height:118px;
text-align:center;
line-height:118px;
width:159px;
margin-right:13px;
}
.clients-carousel .es-carousel li img{
vertical-align:middle;
max-height:115px;
border:1px solid #eeeded;
}
.es-carousel ul{
list-style:none;
margin:0;
padding:0;
}
.es-carousel ul li{
height:100%;
float:left;
display:block;
margin:0;
padding:0;
margin-right:44px;
}
.es-carousel ul li a{
display:block;
}
.es-carousel ul li a img{
border:none;
}
.es-nav-prev, .es-nav-next {
background-color: rgba(0, 0, 0, 0.5);
background-repeat: no-repeat;
width: 29px;
height: 29px;
position: absolute;
top: 50%;
margin-top:-14px;
//text-indent:-10000px;
color: transparent;
cursor: pointer;
opacity:0.8;
z-index:1000;
}
.no-rgba .es-nav-prev, .no-rgba .es-nav-next{
background-color:#3e3e3e;
}
.es-nav-prev, .es-nav-next {
display: block;
}
.es-nav-prev:hover, .es-nav-next:hover{
opacity:1;
}
.es-nav-prev {
background-image: url(images/arrow-bullet.png);
background-position: center center;
-webkit-transform:rotate(180deg);
-moz-transform:rotate(180deg);
-o-transform:rotate(180deg);
transform:rotate(180deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-ms-filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
left: 0;
}
.no-csstransforms .es-nav-prev{
background-image: url(images/arrow-bullet-left.png);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
}
.es-nav-next {
background-image: url(images/arrow-bullet.png);
background-position: center center;
right: 0;
}
.commentlist{
list-style:none;
margin:0;
padding:0;
margin-bottom:65px;
}
.commentlist .children {
list-style: none outside none;
}
.commentlist li{
margin:0;
padding:0;
}
.commentlist .the-comment{
border-bottom:1px solid #e7e6e6;
padding-bottom:25px;
margin-bottom:25px;
}
.commentlist .the-comment .comment-text {
margin-left: 69px;
}
.commentlist .the-comment .comment-text *:last-child{
margin-bottom:0;
}
.commentlist div.avatar{
float:left;
margin-right:15px;
}
.commentlist .comment-text p{
margin:0;
}
.commentlist .comment-author strong{
padding-right:5px;
}
#respond { margin-bottom: 40px; }
#comment-input{
overflow:hidden;
margin-bottom:13px;
}
.comment-form input,#comment-input input,.wpcf7-form .wpcf7-text,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-captchar,.wpcf7-form .wpcf7-date{
border:1px solid #d2d2d2;
width:28%;
font-size:13px;
color:#747474;
-webkit-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
-moz-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
padding:8px 2%;
float:left;
margin-right:1%;
}
.comment-form input {
float: none;
}
#sidebar #comment-input input,#sidebar .wpcf7-form .wpcf7-text,#sidebar .wpcf7-form .wpcf7-quiz,#sidebar .wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-captchar,.wpcf7-form .wpcf7-date{
width: 100%;
margin-right: 0;
}
.wpcf7-form .wpcf7-text,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-number,.wpcf7-form textarea, .wpcf7-form .wpcf7-captchar,.wpcf7-form .wpcf7-date{
width: 100%;
margin-right:0;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
}
.gform_wrapper{margin-bottom:50px !important;}
.gform_wrapper .gfield input[type=text],
.gform_wrapper .gfield input[type=email]{
border:1px solid #d2d2d2;
font-size:13px;
color:#747474;
-webkit-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
-moz-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
padding:5px 8px;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
}
.wpcf7-form input{float:none !important;}
#comment-textarea textarea,.comment-form-comment textarea,.wpcf7-form textarea{
border:1px solid #d2d2d2;
width:96%;
height:150px;
font-size:13px;
color:#747474;
-webkit-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
-moz-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
padding:8px 11px;
}
.gform_wrapper .gfield textarea{
border:1px solid #d2d2d2;
font-size:13px;
color:#747474;
-webkit-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
-moz-box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
padding:8px;
}
.wpcf7-form textarea {
width: 100%;
margin-right:0;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
}
.gform_wrapper .gfield_select[multiple=multiple]{
border:1px solid #d2d2d2;
}
.gform_wrapper select {
padding: 5px 1px !important;
width: 99.8% !important;
}
.gform_wrapper label{font-weight:normal !important;}
.gform_wrapper .gfield_time_hour label{display:inline !important;}
.gform_wrapper .gform_footer{padding:0 !important;}
.gform_wrapper span.ginput_total {font-size: 18px !important;}
.ui-datepicker-div,.ui-datepicker-inline, #ui-datepicker-div {border-color: #E9EAEE !important;}
table.ui-datepicker td a,.ui-datepicker-header select {background-color: #E9EAEE !important;}
ui-datepicker-header select {border: 1px solid #D2D2D2;}
#comment-input input:last-child{
margin-right:0;
}
#comment-recaptcha{
margin-top:13px;
}
.input-text{
border:1px solid #d2d2d2;
font-size:13px;
color:#747474;
padding:8px 2%;
margin-right:1%;
width:100%;
-webkit-box-sizing:border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing:border-box; /* Firefox, other Gecko */
box-sizing:border-box; /* Opera/IE 8+ */
}
.input-radio,#shipping_method input[type=radio]{
background:none;
-webkit-appearance: checkbox;
-moz-appearance: checkbox;
-ms-appearance: checkbox; /* not currently supported */
-o-appearance: checkbox; /* not currently supported */
}
.portfolio-tabs,.faq-tabs{
height:auto;
border-top:1px solid #e7e6e6;
border-bottom:1px solid #e7e6e6;
list-style:none;
margin:0;
padding:0;
overflow:hidden;
margin-bottom:58px;
line-height:34px;
}
.portfolio-tabs li,.faq-tabs li{
float:left;
margin-right:30px;
}
.portfolio-tabs li a,.faq-tabs li a{
display:block;
}
.portfolio-tabs li.active,.faq-tabs li.active{
line-height:31px !important;
}
.portfolio-tabs li.active a,.faq-tabs li.active a{
color:#a0ce4e;
border-top:3px solid #a0ce4e;
}
.faq-item{
position:relative;
}
.portfolio-one .portfolio-item{
padding-bottom:50px;
overflow:hidden;
width:100%;
}
.portfolio-one .portfolio-item .image{
width:540px;
height:272px;
float:left;
margin-right:25px;
margin-bottom: 15px;
}
.portfolio-item .portfolio-content h2{
margin:0 !important;
padding:0 !important;
margin-bottom:10px !important;
}
.portfolio-item .portfolio-content h4{
margin:0 !important;
padding:0 !important;
margin-bottom:25px !important;
font-weight:normal;
font-size:13px;
}
.portfolio-item .portfolio-content p{
margin:0;
margin-bottom:20px;
}
.portfolio-two .portfolio-item{
width:460px;
height:295px;
margin:5px;
float:left;
}
.portfolio-three .portfolio-item{
width:300px;
height:214px;
margin:6px;
float:left;
}
.portfolio-four .portfolio-item{
width:220px;
height:161px;
margin:7px;
float:left;
}
.portfolio-four .image-extras-content{
}
.portfolio-full .flexslider{
margin-bottom:70px !important;
}
.portfolio-full .project-content{
margin-bottom:50px;
}
.portfolio-one .fluid-width-video-wrapper{
position:static !important;
}
.portfolio-wrapper{display:none;}
.portfolio-tabs{display:none;}
.faq-tabs{display:none;}
.loading-msg, #infscr-loading em {margin-left: 7px;}
.portfolio-masonry .portfolio-item{
float:left;
margin-bottom:9px;
width:32.4%;
overflow:hidden;
}
.portfolio-grid-2 .portfolio-item{
margin-bottom:9px;
width:49%;
}
#infscr-loading{position:absolute;bottom:0;}
.portfolio #infscr-loading {bottom: -30px;}
.single-navigation{
height:34px;
line-height:34px;
border-top:1px solid #e7e6e6;
border-bottom:1px solid #e7e6e6;
margin-bottom:60px;
text-align:right;
}
.single-navigation a[rel=prev]{
}
.single-navigation a[rel=next]{
margin-left:15px;
}
.single-navigation a[rel=prev]:before,.pagination-prev:before,.woocommerce-pagination .prev:before{
font-family: FontAwesome;
content:'\f053';
color:#333333;
padding-right:5px;
font-size:8px;
}
.single-navigation a[rel=next]:after,.pagination-next:after,.woocommerce-pagination .next:after{
font-family: FontAwesome;
content:'\f054';
color:#333333;
padding-left:5px;
font-size:8px;
}
.project-content h3{
font:13px/17px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#333333;
margin:0 !important;
margin-bottom:40px !important;
}
.project-content{
overflow:hidden;
}
.project-content .project-description{
float:left;
width:74.4681%;
}
.project-content .project-description p{
margin-top:0;
}
.project-content .project-info{
float:right;
width:23.4043%;
}
.project-content .project-info .project-info-box{
border-bottom:1px solid #e7e6e6;
padding-bottom:15px;
margin-bottom:15px;
overflow:hidden;
}
.project-content .project-info .project-info-box a{
color:#747474 !important;
}
.project-content .project-info .project-info-box a:hover{
color:#a0ce4e !important;
}
.project-content .project-info h4{
font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif;
color:#333333;
margin:0 !important;
float:left;
width:110px;
}
.with-sidebar .project-content .project-info .project-info-box h4{display:block;width:100%;margin-bottom:5px !important;}
.portfolio-full.with-sidebar .project-info{float:left;}
.portfolio-full.with-sidebar .project-description{float:right;width:72.5%;}
.project-content .project-info .project-terms{
float:left;
}
.portfolio-half .flexslider{
width:65.9574%;
float:left;
}
.portfolio-half .project-content{
width:31.9149%;
float:right;
}
.portfolio-half .project-description{
width:100%;
margin-bottom:50px;
}
.portfolio-half .project-description .flexslider {
width: auto;
}
.portfolio-half .project-info{
width:100%;
}
.portfolio-half .share-box {
margin-bottom: 50px;
}
.portfolio-sep {
clear:both;
}
.portfolio-half .portfolio-sep {
margin-bottom:50px;
}
.side-nav{
list-style:none;
margin:0;
padding:0;
border-top:1px solid #ededed;
border-right:1px solid #ededed;
margin-bottom:20px;
}
.side-nav ul{
list-style:none;
margin:0;
padding:0;
}
.side-nav li{
margin:0;
padding:0;
}
.side-nav li a{
border-bottom:1px solid #ededed !important;
display:block;
background:url(images/side_nav_bg.png) no-repeat top right;
height:auto;
font-weight:normal !important;
font:14px/39px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#333333 !important;
}
.side-nav li a {
line-height: 1.69em!important;
padding: 8px 0!important;
background-repeat: repeat-y!important;
}
.side-nav li a:hover{
background:none !important;
}
.side-nav li.current_page_item > a{
background:none !important;
color:#a0ce4e !important;
border-right:3px solid #a0ce4e;
}
.side-nav li.current_page_item li a{
color:#333333 !important;
border-bottom:1px solid #ededed;
}
.side-nav ul.children{
margin-left:15px;
display:none;
}
.side-nav .arrow,.woocommerce-tabs .tabs a:hover .arrow,.woocommerce-tabs .tabs li.active a .arrow{
display:inline-block;
margin-left:10px;
padding-right:0 !important;
}
h5.toggle{
overflow:hidden;
margin:0;
}
h5.toggle a{
font:13px/20px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
cursor:pointer;
color:#333333 !important;
border-bottom:1px solid #e8e6e6;
overflow:hidden;
margin:0;
padding:10px 0px;
float:left;
width:100%;
}
h5.toggle.active a{
border-bottom:0;
}
h5.toggle span.arrow{
background:#333333 url(images/toggle_plus.png) no-repeat center center;
display:block;
width:22px;
height:22px;
float:left;
margin-right:18px;
}
h5.toggle.active span.arrow{
background-color:#a0ce4e;
background-image:url(images/toggle_minus.png);
}
h5.toggle span.toggle-title{
float:left;
width:90%;
}
.toggle-content{
padding-top:10px;
padding-bottom:15px;
position:relative;
}
h5.toggle.active + .toggle-content{
border-bottom:1px solid #E8E6E6;
}
.full-boxed-pricing{
background:#f7f5f5;
padding:9px;
overflow:hidden;
float:left;
margin-bottom:20px;
}
.full-boxed-pricing .column{
border:1px solid #e5e4e3;border-right:0;border-bottom:0;
float:left;
}
.full-boxed-pricing .column:last-child{
border-right:1px solid #e5e4e3;
}
.full-boxed-pricing ul{
list-style:none;
margin:0;
padding:0;
width:183px;
}
.full-boxed-pricing ul li{
margin:0;
padding:0;
background:#ffffff;
text-align:center;
padding:15px 0px;
border-bottom:1px solid #ededed;
}
.full-boxed-pricing ul li.title-row{
font:18px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#333333;
}
.full-boxed-pricing ul li.pricing-row{
background:#f8f8f8;
font:25px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#a0ce4e;
}
.full-boxed-pricing ul li.pricing-row span{
font-size:11px !important;
color:#888888 !important;
}
.full-boxed-pricing ul li.footer-row{
background:#f7f7f6;
}
.sep-boxed-pricing{
overflow:hidden;
margin-bottom:20px;
}
.sep-boxed-pricing .column{
background:#f7f5f5;
padding:9px;
overflow:hidden;
float:left;
}
.sep-boxed-pricing ul{
list-style:none;
margin:0;
padding:0;
}
.sep-boxed-pricing ul li{
width:283px;
background:#fff;
border:1px solid #dddcdc;border-bottom:0;
margin:0;padding:0;
padding:15px 0px;
text-align:center;
}
.sep-boxed-pricing ul li:last-child{
border-bottom:1px solid #dddcdc;
}
.sep-boxed-pricing ul li.title-row{
background:#92c563;
border-color:#92c563;
font:18px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#333333;
}
.sep-boxed-pricing ul li.pricing-row{
background:#f8f8f8;
font:25px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#a0ce4e;
}
.sep-boxed-pricing ul li.pricing-row span{
font-size:11px !important;
color:#888888 !important;
}
.sep-boxed-pricing ul li.footer-row{
background:#f7f7f6;
}
.full-boxed-pricing .price strong{
position:relative;
top:-15px;
font-size:21px;
color:#505050;
}
.full-boxed-pricing .price em.exact_price{
display:inline !important;
font-size:55px !important;
font-weight:bold !important;
font-style:normal !important;
}
.full-boxed-pricing .price sup{
position:relative;
top:-16px;
font-size:17px;
font-weight:bold;
}
.full-boxed-pricing .price em.time{
color:#888 !important;
font-size:11px !important;
margin-left:0px !important;
position:relative;
top:-5px;
}
.full-boxed-pricing.columns-1{width:100%;}
.full-boxed-pricing.columns-1 .column,.full-boxed-pricing.columns-1 .column ul{width:100%;}
.full-boxed-pricing.columns-2{width:100%;}
.full-boxed-pricing.columns-2 .column{width:49.75%;}
.full-boxed-pricing.columns-2 .column ul{width:100%;}
.full-boxed-pricing.columns-3{width:100%;}
.full-boxed-pricing.columns-3 .column{width:33.1%;}
.full-boxed-pricing.columns-3 .column ul{width:100%;}
.full-boxed-pricing.columns-4{width:100%;}
.full-boxed-pricing.columns-4 .column{width:24.7%;}
.full-boxed-pricing.columns-4 .column ul{width:100%;}
.full-width .full-boxed-pricing.columns-1 .column,.full-width .full-boxed-pricing.columns-1 .column ul{width:100%;}
.full-width .full-boxed-pricing.columns-2{width:100%;}
.full-width .full-boxed-pricing.columns-2 .column{width:49.8%;}
.full-width .full-boxed-pricing.columns-2 .column ul{width:100%;}
.full-width .full-boxed-pricing.columns-3{width:100%;}
.full-width .full-boxed-pricing.columns-3 .column{width:33.1%;}
.full-width .full-boxed-pricing.columns-3 .column ul{width:100%;}
.full-width .full-boxed-pricing.columns-4{width:100%;}
.full-width .full-boxed-pricing.columns-4 .column{width:24.83%;}
.full-width .full-boxed-pricing.columns-4 .column ul{width:100%;}
.full-boxed-pricing .price-with-decimal em.time{
margin-left:-12px !important;
}
.full-boxed-pricing.columns-1,
.full-boxed-pricing.columns-2,
.full-boxed-pricing.columns-3,
.full-boxed-pricing.columns-4,
.full-boxed-pricing.columns-5,
.full-width .full-boxed-pricing.columns-1,
.full-width .full-boxed-pricing.columns-2,
.full-width .full-boxed-pricing.columns-3,
.full-width .full-boxed-pricing.columns-4,
.full-width .full-boxed-pricing.columns-5{
width: -moz-calc(100% - 18px);
width: -webkit-calc(100% - 18px);
width: -ms-calc(100% - 18px);
width: -o-calc(100% - 18px);
width: calc(100% - 18px);
}
.sep-boxed-pricing .price strong{
position:relative;
top:-30px;
font-size:28px;
color:#505050;
}
.sep-boxed-pricing .price em.exact_price{
display:inline !important;
font-size:75px !important;
font-weight:bold !important;
font-style:normal !important;
}
.sep-boxed-pricing .price sup{
position:relative;
top:-24px;
font-size:23px;
font-weight:bold;
}
.sep-boxed-pricing .price em.time{
color:#888 !important;
font-size:26px !important;
margin-left:0px !important;
position:relative;
top:-2px;
}
.sep-boxed-pricing .price-with-decimal em.time{
margin-left:-18px !important;
}
.sep-boxed-pricing .column{
margin-left:2%;
}
.sep-boxed-pricing .column:first-child{
margin-left:0;
}
.sep-boxed-pricing .column li{
width: -moz-calc(100% - 2px);
width: -webkit-calc(100% - 2px);
width: -ms-calc(100% - 2px);
width: -o-calc(100% - 2px);
width: calc(100% - 2px);
}
.sep-boxed-pricing.columns-1{width:100%;}
.sep-boxed-pricing.columns-1 .column {
width: -moz-calc(100% - 18px);
width: -webkit-calc(100% - 18px);
width: -ms-calc(100% - 18px);
width: -o-calc(100% - 18px);
width: calc(100% - 18px);
}
.sep-boxed-pricing.columns-1 .column ul{width:100%;}
.sep-boxed-pricing.columns-2{width:100%;}
.sep-boxed-pricing.columns-2 .column {
width: -moz-calc(49% - 18px);
width: -webkit-calc(49% - 18px);
width: -ms-calc(49% - 18px);
width: -o-calc(49% - 18px);
width: calc(49% - 18px);
}
.sep-boxed-pricing.columns-2 .column ul{width:100%;}
.sep-boxed-pricing.columns-3{width:100%;}
.sep-boxed-pricing.columns-3 .column {
width: -moz-calc(32% - 18px);
width: -webkit-calc(32% - 18px);
width: -ms-calc(32% - 18px);
width: -o-calc(32% - 18px);
width: calc(32% - 18px);
}
.sep-boxed-pricing.columns-3 .column ul{width:100%;}
.sep-boxed-pricing.columns-4{width:100%;}
.sep-boxed-pricing.columns-4 .column {
width: -moz-calc(23.5% - 18px);
width: -webkit-calc(23.5% - 18px);
width: -ms-calc(23.5% - 18px);
width: -o-calc(23.5% - 18px);
width: calc(23.5% - 18px);
}
.sep-boxed-pricing.columns-4 .column ul{width:100%;}
/* Shortcodes */
.one_half, .one_third, .two_third, .three_fourth, .one_fourth { margin-right: 4%; float: left; margin-bottom:20px; position:relative; }
.one_half { width: 48%; }
.one_third { width: 30.6666%; }
.two_third { width: 65.3332%; }
.one_fourth { width: 22%; }
.three_fourth { width: 74%; }
#main .last { margin-right: 0 !important; }
.clearboth{clear: both; display: block; font-size: 0px; height: 0px; line-height: 0; width: 100%; overflow:hidden; }
.shortcode-tabs .tab-hold .tabs li{
border-right:0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.shortcode-tabs .tab-hold .tabs li a{
display:block !important;
width:100% !important;
padding:0 !important;
text-indent:15px !important;
background-image:url(images/shortcode_sep.png) no-repeat center right;
}
.shortcode-tabs .tab-hold .tabs li:last-child a{
}
.shortcode-tabs .tab-hold .tabs li.active a{
background:none !important;
}
.shortcode-tabs .tab_content{
padding:15px !important;
overflow:hidden;
}
.shortcode-tabs .tab_content *:last-child{
margin-bottom:0;
}
.shortcode-tabs{
margin-bottom:50px;
}
/* Progress Bar */
.progress-bar {
background: #e6e7e8;
height: 37px;
border-bottom:1px solid #f0f1f1;
position: relative;
margin-bottom: 10px;
visibility: hidden;
}
.progress-bar-content {
background:#a0ce4e;
height: 37px;
border-bottom:1px solid #c0dc8f;
}
.progress-bar .progress-title {
font-size: 13px;
color: #ffffff;
font-weight: normal;
position: absolute;
top: 10px;
left: 13px;
}
.progress-bar .percentage {
font-size: 13px;
color: #626363;
font-weight: normal;
position: absolute;
top: 10px;
left: 90%;
}
/* Meet the team */
.person-img{
margin-bottom:25px;
}
.person-author{
}
.person-author-wrapper{
float:left;
font:13px/20px 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
color:#333333 !important;
margin-bottom:25px;
}
.person-author-wrapper span{
display:block;
}
.person-author a{
display:inline-block;
height:19px;
}
.person-author .social-icon{
display:block;
float:right;
position:relative;
margin-left:19px;
margin-top:10px;
}
.person-author .social-icon a{
text-indent:-10000px;
}
.person-author .facebook {background-image:url(images/facebook.png) !important; width:9px; height:17px;}
.person-author .twitter {background-image:url(images/twitter.png) !important; width:13px; height:16px;}
.person-author .linkedin {background-image:url(images/linkedin.png) !important; width:14px; height:13px;}
.person-author .rss {background-image:url(images/rss.png) !important; width:13px; height:13px;}
.person-author .dribbble {background-image:url(images/dribbble.png) !important; width:16px; height:16px;}
.person-author .youtube {background-image:url(images/youtube.png) !important; width:23px; height:25px;}
.person-author .tf-pinterest {background-image:url(images/pinterest.png) !important; width:16px; height:20px;}
.person-author .vimeo {background-image:url(images/vimeo.png) !important; width:18px; height:16px;}
.person-author .flickr {background-image:url(images/flickr.png) !important; width:25px; height:17px;}
.person-author .tumblr {background-image:url(images/tumblr.png) !important; width:15px; height:16px;}
.person-author .google {background-image:url(images/google.png) !important; width:21px; height:18px;}
.person-author .digg {background-image:url(images/digg.png) !important; width:21px; height:19px;}
.person-author .blogger {background-image:url(images/blogger.png) !important; width:16px; height:15px;}
.person-author .skype {background-image:url(images/skype.png) !important; width:19px; height: 19px;}
.person-author .myspace {background-image:url(images/myspace.png) !important; width:18px; height:18px;}
.person-author .deviantart {background-image:url(images/deviantart.png) !important; width:23px; height:18px;}
.person-author .yahoo {background-image:url(images/yahoo.png) !important; width:22px; height:14px;}
.person-author .reddit {background-image:url(images/reddit.png) !important; width:19px; height:15px;}
.person-author .forrst {background-image:url(images/forrst.png) !important; width:15px; height:19px;}
.person-author .email {background-image:url(images/mail.png) !important; margin-top:2px;width:20px; height:14px;}
.person-author-light .facebook {background-image:url(images/white/facebook.png) !important;}
.person-author-light .twitter {background-image:url(images/white/twitter.png) !important;}
.person-author-light .linkedin {background-image:url(images/white/linkedin.png) !important;}
.person-author-light .rss {background-image:url(images/white/rss.png) !important;}
.person-author-light .dribbble {background-image:url(images/white/dribbble.png) !important;}
.person-author-light .youtube {background-image:url(images/white/youtube.png) !important;}
.person-author-light .tf-pinterest {background-image:url(images/white/pinterest.png) !important;}
.person-author-light .vimeo {background-image:url(images/white/vimeo.png) !important;}
.person-author-light .flickr {background-image:url(images/white/flickr.png) !important;}
.person-author-light .tumblr {background-image:url(images/white/tumblr.png) !important;}
.person-author-light .google {background-image:url(images/white/google.png) !important;}
.person-author-light .digg {background-image:url(images/white/digg.png) !important;}
.person-author-light .blogger {background-image:url(images/white/blogger.png) !important;}
.person-author-light .skype {background-image:url(images/white/skype.png) !important;}
.person-author-light .myspace {background-image:url(images/white/myspace.png) !important;}
.person-author-light .deviantart {background-image:url(images/white/deviantart.png) !important;}
.person-author-light .yahoo {background-image:url(images/white/yahoo.png) !important;}
.person-author-light .reddit {background-image:url(images/white/reddit.png) !important;}
.person-author-light .forrst {background-image:url(images/white/forrst.png) !important;}
.person-author-light .email {background-image:url(images/white/mail.png) !important;}
.person-author .social-icon .popup p{
margin:0 !important;
}
/* Post Content HTML */
.post-content p{
margin:0;
margin-bottom:20px;
}
.post-content ul.arrow{
list-style:none;
margin:0;
padding:0;
}
.post-content ul.arrow li:before{
display:inline-block;
background-image:url(images/check.png);
background-repeat:no-repeat;
background-position:center center;
background-color:#a0ce4e;
height:18px;
-moz-border-radius:75px;
-webkit-border-radius:75px;
border-radius:75px;
width:18px;
content:' ';
float:left;
margin-right:0;
margin-left:-25px;
padding-left: 1px;
}
.post-content ul.arrow li{
line-height:18px;
margin:0;
padding:0;
margin-bottom:15px;
padding-left:25px;
}
.post-content blockquote{
background:#f5f5f5;
font:13px/20px 'PTSansItalic', arial, helvetica, sans-serif;
color:#444444;
border-left:4px solid #a0ce4e;
padding:15px;
}
.post-content blockquote *:last-child{
margin-bottom:0;
}
#gmap{
height:416px;
margin-bottom:50px;
overflow:hidden;
}
#gmap img,.shortcode-map img{
max-width:none !important;
}
body #wrapper .gomapMarker{color:#333 !important;}
.post-slideshow{
margin-bottom:30px !important;
}
.post-slideshow .image,.floated-post-slideshow .image{
margin-bottom:0 !important;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
font-family:'MuseoSlab500Regular', arial, helvetica, sans-serif;
color:#333333;
font-weight:normal;
}
.post-content h4{
font-size:13px !important;
}
.post-content h5{
font-size:12px !important;
}
.post-content h6{
font-size:11px !important;
}
.excerpt-container .highlight1{background-color:transparent !important;}
.excerpt-container .dropcap{color:inherit !important;float:none;padding:0 !important;margin:0 !important;font-size:inherit !important;top:0 !important;}
.excerpt-container .tooltip-shortcode{color:inherit !important;border-bottom:1px dotted;}
/* Button */
.buttons a{
margin: 0 30px 15px 0;
}
.portfolio-wrapper .buttons {
margin-top: 20px;
}
.button,#reviews input#submit,.price_slider_amount button,.gform_wrapper .gform_button{
display:inline-block;
}
.button.large, .wpcf7-form input.button.large, .gform_wrapper .gform_button.large{
min-height:43px;
line-height:43px;
font:13px/43px 'PTSansBold', arial, helvetica, sans-serif;
text-transform:uppercase;
text-align:center;
text-shadow:0 1px 0 #000000;
padding:0 30px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
box-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
.button.small,#reviews input#submit,.wpcf7-form input[type="submit"], .wpcf7-form input.button, .comment-form input[type="submit"],.price_slider_amount button,.gform_wrapper .gform_button{
min-height:32px;
font:13px/32px 'PTSansBold', arial, helvetica, sans-serif;
text-transform:uppercase;
text-align:center;
text-shadow:0 1px 0 #fff;
padding:0 20px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
box-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
.wpcf7-form input[type="submit"],.comment-form input[type="submit"] { font-weight: bold !important; }
.button.green{
color:#54770f !important;
background: #AAD75D;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #AAD75D), color-stop(1, #D1E990) );
background-image: -webkit-linear-gradient(bottom, #AAD75D, #D1E990);
background-image: -moz-linear-gradient(bottom, #AAD75D, #D1E990);
background-image: -ms-linear-gradient(bottom, #AAD75D, #D1E990);
background-image: -o-linear-gradient(bottom, #AAD75D, #D1E990);
background-image: linear-gradient(to top, #AAD75D, #D1E990);
border:1px solid #9dba60;
}
.button.green:hover{
color:#54770f !important;
background: #D1E990;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #AAD75D), color-stop(1, #D1E990) );
background-image: -webkit-linear-gradient(bottom, #D1E990, #AAD75D);
background-image: -moz-linear-gradient(bottom, #D1E990, #AAD75D);
background-image: -ms-linear-gradient(bottom, #D1E990, #AAD75D);
background-image: -o-linear-gradient(bottom, #D1E990, #AAD75D);
background-image: linear-gradient(to top, #D1E990, #AAD75D);
border:1px solid #9dba60;
}
.no-cssgradients .button.green{
background-color:#D1E990;
}
.no-cssgradients .button.green:hover{
background-color:#AAD75D;
}
.button.darkgreen{
color:#54770f !important;
background-image: linear-gradient(top, #d0e0a5 0%, #a8c76a 100%);
background-image: -o-linear-gradient(top, #d0e0a5 0%, #a8c76a 100%);
background-image: -moz-linear-gradient(top, #d0e0a5 0%, #a8c76a 100%);
background-image: -webkit-linear-gradient(top, #d0e0a5 0%, #a8c76a 100%);
background-image: -ms-linear-gradient(top, #d0e0a5 0%, #a8c76a 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #d0e0a5),
color-stop(1, #a8c76a)
);
border:1px solid #9dba60;
}
.button.darkgreen:hover{
color:#54770f !important;
background-image: linear-gradient(top, #a8c76a 0%, #d0e0a5 100%);
background-image: -o-linear-gradient(top, #a8c76a 0%, #d0e0a5 100%);
background-image: -moz-linear-gradient(top, #a8c76a 0%, #d0e0a5 100%);
background-image: -webkit-linear-gradient(top, #a8c76a 0%, #d0e0a5 100%);
background-image: -ms-linear-gradient(top, #a8c76a 0%, #d0e0a5 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #a8c76a),
color-stop(1, #d0e0a5)
);
border:1px solid #9dba60;
}
.no-cssgradients .button.darkgreen{
background-color:#d0e0a5;
}
.no-cssgradients .button.darkgreen:hover{
background-color:#a8c76a;
}
.button.orange{
color:#c0830b !important;
background-image: linear-gradient(top, #fbdc86 0%, #f8bf56 100%);
background-image: -o-linear-gradient(top, #fbdc86 0%, #f8bf56 100%);
background-image: -moz-linear-gradient(top, #fbdc86 0%, #f8bf56 100%);
background-image: -webkit-linear-gradient(top, #fbdc86 0%, #f8bf56 100%);
background-image: -ms-linear-gradient(top, #fbdc86 0%, #f8bf56 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #fbdc86),
color-stop(1, #f8bf56)
);
border:1px solid #c0830b;
}
.button.orange:hover{
color:#c0830b !important;
background-image: linear-gradient(top, #f8bf56 0%, #fbdc86 100%);
background-image: -o-linear-gradient(top, #f8bf56 0%, #fbdc86 100%);
background-image: -moz-linear-gradient(top, #f8bf56 0%, #fbdc86 100%);
background-image: -webkit-linear-gradient(top, #f8bf56 0%, #fbdc86 100%);
background-image: -ms-linear-gradient(top, #f8bf56 0%, #fbdc86 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #f8bf56),
color-stop(1, #fbdc86)
);
border:1px solid #c0830b;
}
.no-cssgradients .button.orange{
background-color:#fbdc86;
}
.no-cssgradients .button.orange:hover{
background-color:#f8bf56;
}
.button.blue{
color:#1172c1 !important;
background-image: linear-gradient(top, #b5e0f7 0%, #76c7f1 100%);
background-image: -o-linear-gradient(top, #b5e0f7 0%, #76c7f1 100%);
background-image: -moz-linear-gradient(top, #b5e0f7 0%, #76c7f1 100%);
background-image: -webkit-linear-gradient(top, #b5e0f7 0%, #76c7f1 100%);
background-image: -ms-linear-gradient(top, #b5e0f7 0%, #76c7f1 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #b5e0f7),
color-stop(1, #76c7f1)
);
border:1px solid #1172c1;
text-shadow:0 1px 0 rgba(255,255,255,0.6);
}
.button.blue:hover{
color:#1172c1 !important;
background-image: linear-gradient(top, #76c7f1 0%, #b5e0f7 100%);
background-image: -o-linear-gradient(top, #76c7f1 0%, #b5e0f7 100%);
background-image: -moz-linear-gradient(top, #76c7f1 0%, #b5e0f7 100%);
background-image: -webkit-linear-gradient(top, #76c7f1 0%, #b5e0f7 100%);
background-image: -ms-linear-gradient(top, #76c7f1 0%, #b5e0f7 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #76c7f1),
color-stop(1, #b5e0f7)
);
border:1px solid #1172c1;
}
.no-cssgradients .button.blue{
background-color:#b5e0f7;
}
.no-cssgradients .button.blue:hover{
background-color:#76c7f1;
}
.button.red{
color:#FFFFFF !important;
background-image: linear-gradient(top, #e80707 0%, #d60707 100%);
background-image: -o-linear-gradient(top, #e80707 0%, #d60707 100%);
background-image: -moz-linear-gradient(top, #e80707 0%, #d60707 100%);
background-image: -webkit-linear-gradient(top, #e80707 0%, #d60707 100%);
background-image: -ms-linear-gradient(top, #e80707 0%, #d60707 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #e80707),
color-stop(1, #d60707)
);
border:1px solid #780404;
text-shadow:0 1px 0 #000000;
}
.button.red:hover{
background-image: linear-gradient(top, #d60707 0%, #e80707 100%);
background-image: -o-linear-gradient(top, #d60707 0%, #e80707 100%);
background-image: -moz-linear-gradient(top, #d60707 0%, #e80707 100%);
background-image: -webkit-linear-gradient(top, #d60707 0%, #e80707 100%);
background-image: -ms-linear-gradient(top, #d60707 0%, #e80707 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #d60707),
color-stop(1, #e80707)
);
border:1px solid #780404;
}
.no-cssgradients .button.red{
background-color:#e80707;
}
.no-cssgradients .button.red:hover{
background-color:#d60707;
}
.button.pink{
color:#a31366 !important;
background-image: linear-gradient(top, #fda1d5 0%, #fc84c8 100%);
background-image: -o-linear-gradient(top, #fda1d5 0%, #fc84c8 100%);
background-image: -moz-linear-gradient(top, #fda1d5 0%, #fc84c8 100%);
background-image: -webkit-linear-gradient(top, #fda1d5 0%, #fc84c8 100%);
background-image: -ms-linear-gradient(top, #fda1d5 0%, #fc84c8 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #fda1d5),
color-stop(1, #fc84c8)
);
border:1px solid #a31366;
text-shadow:0 1px 0 rgba(255,255,255,0.6);
}
.button.pink:hover{
color:#a31366 !important;
background-image: linear-gradient(top, #fc84c8 0%, #fda1d5 100%);
background-image: -o-linear-gradient(top, #fc84c8 0%, #fda1d5 100%);
background-image: -moz-linear-gradient(top, #fc84c8 0%, #fda1d5 100%);
background-image: -webkit-linear-gradient(top, #fc84c8 0%, #fda1d5 100%);
background-image: -ms-linear-gradient(top, #fc84c8 0%, #fda1d5 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #fc84c8),
color-stop(1, #fda1d5)
);
border:1px solid #a31366;
}
.no-cssgradients .button.pink{
background-color:#fda1d5;
}
.no-cssgradients .button.pink:hover{
background-color:#fc84c8;
}
.button.darkgray{
color:#434c50 !important;
background-image: linear-gradient(top, #c0c0c0 0%, #9e9e9e 100%);
background-image: -o-linear-gradient(top, #c0c0c0 0%, #9e9e9e 100%);
background-image: -moz-linear-gradient(top, #c0c0c0 0%, #9e9e9e 100%);
background-image: -webkit-linear-gradient(top, #c0c0c0 0%, #9e9e9e 100%);
background-image: -ms-linear-gradient(top, #c0c0c0 0%, #9e9e9e 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #c0c0c0),
color-stop(1, #9e9e9e)
);
border:1px solid #434c50;
text-shadow:0 1px 0 rgba(255,255,255,0.6);
}
.button.darkgray:hover{
color:#434c50 !important;
background-image: linear-gradient(top, #9e9e9e 0%, #c0c0c0 100%);
background-image: -o-linear-gradient(top, #9e9e9e 0%, #c0c0c0 100%);
background-image: -moz-linear-gradient(top, #9e9e9e 0%, #c0c0c0 100%);
background-image: -webkit-linear-gradient(top, #9e9e9e 0%, #c0c0c0 100%);
background-image: -ms-linear-gradient(top, #9e9e9e 0%, #c0c0c0 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #9e9e9e),
color-stop(1, #c0c0c0)
);
border:1px solid #434c50;
}
.no-cssgradients .button.darkgray{
background-color:#c0c0c0;
}
.no-cssgradients .button.darkgray:hover{
background-color:#9e9e9e;
}
.button.lightgray{
color:#ababab !important;
background-image: linear-gradient(top, #fbfbfb 0%, #f0f0f0 100%);
background-image: -o-linear-gradient(top, #fbfbfb 0%, #f0f0f0 100%);
background-image: -moz-linear-gradient(top, #fbfbfb 0%, #f0f0f0 100%);
background-image: -webkit-linear-gradient(top, #fbfbfb 0%, #f0f0f0 100%);
background-image: -ms-linear-gradient(top, #fbfbfb 0%, #f0f0f0 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #fbfbfb),
color-stop(1, #f0f0f0)
);
border:1px solid #ababab;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}
.button.lightgray:hover{
color:#ababab !important;
background-image: linear-gradient(top, #f0f0f0 0%, #fbfbfb 100%);
background-image: -o-linear-gradient(top, #f0f0f0 0%, #fbfbfb 100%);
background-image: -moz-linear-gradient(top, #f0f0f0 0%, #fbfbfb 100%);
background-image: -webkit-linear-gradient(top, #f0f0f0 0%, #fbfbfb 100%);
background-image: -ms-linear-gradient(top, #f0f0f0 0%, #fbfbfb 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #f0f0f0),
color-stop(1, #fbfbfb)
);
border:1px solid #ababab;
}
.no-cssgradients .button.lightgray{
background-color:#fbfbfb;
}
.no-cssgradients .button.lightgray:hover{
background-color:#f0f0f0;
}
.button.transparent {
color: #333;
border:1px solid #D2D3D4;
-webkit-box-shadow: 0 1px 1px rgba(99,99,99,0.2);
-moz-box-shadow: 0 1px 1px rgba(99,99,99,0.2);
box-shadow: 0 1px 1px rgba(99,99,99,0.2);
}
.button.transparent:hover {
color: #666;
}
/* Alert */
.alert{
padding:8px;
text-align:center;
position:relative;
}
.alert .msg{
padding:0 50px;
}
.alert .toggle-alert{
position:absolute;top:14px;right:25px;
display:block;
text-indent:-10000px;
background:url(images/x-icon.png) no-repeat top left;
width:12px;
height:12px;
}
.alert.general{
background:#ffffff url(images/general-icon.png) no-repeat 25px 8px;
border:1px solid #d7d6d6;
}
.alert.error{
background:#ffe9e9 url(images/error-icon.png) no-repeat 25px 8px;
border:1px solid #e7a9a9;
color:#d04544;
}
.alert.success{
background:#e9f3d2 url(images/success-icon.png) no-repeat 25px 8px;
border:1px solid #acd556;
color:#92b750;
}
.alert.notice{
background:#fbf6e3 url(images/notice-icon.png) no-repeat 25px 8px;
border:1px solid #e7d48d;
color:#cfb306;
}
/* More Shortcodes */
.highlight1 { background:#f6f67a; padding:2px; }
.highlight2 { background:#000; color:#CCC; padding:2px; }
.dropcap { font-size:62px; margin-right:6px; padding-top:11px; text-transform: uppercase; float: left; position: relative; top: 5px; color:#83c54f; padding-bottom:11px;}
.video-shortcode{margin-bottom:25px;}
/* Fade Images */
.recent-works-items img:hover, .flickr_badge_image img:hover, .pyre_tabs img:hover{
opacity:0.5;
}
.social_links_shortcode ul{
margin-left:0; padding-left:0;
}
.social_links_shortcode .social li{
display:inline-block;
position:relative;
width:30px;
margin-bottom:20px;
}
.social_links_shortcode .social li a{
background:none;
display:inline-block;
border-bottom:0;
line-height:normal;
text-indent:-10000px;
height:18px;
padding:0 !important;
background-image:url(images/social_links.png);
}
.social_links_shortcode .social li a.rss{
background-position:-168px -1px;
width:13px;
}
.social_links_shortcode .social li a.facebook{
background-position:-3px 0px;
width:9px;
}
.social_links_shortcode .social li a.twitter{
background-position:-45px 0px;
width:13px;
}
.social_links_shortcode .social li a.dribble{
background-position:-88px -39px;
width:16px;
}
.social_links_shortcode .social li a.google{
background-position:-45px -39px;
width:21px;
}
.social_links_shortcode .social li a.linkedin{
background-position:-90px -1px;
width:14px;
}
.social_links_shortcode .social li a.blogger{
background-position:-204px -1px;
width:16px;
}
.social_links_shortcode .social li a.tumblr{
background-position:-129px 0px;
width:15px;
}
.social_links_shortcode .social li a.reddit{
background-position:0px -39px;
width:19px;
}
.social_links_shortcode .social li a.yahoo{
background-position:-125px -40px;
width:22px;
}
.social_links_shortcode .social li a.deviantart{
background-position:-165px -40px;
width:23px;
}
.social_links_shortcode .social li a.vimeo{
background-position:-202px -38px;
width:19px;
}
.social_links_shortcode .social li a.custom{
background:none !important;
text-indent:0 !important;
width:auto !important;
}
.error_page .useful_links{
width:25.06%;
padding-left:5%;
}
.error_page .oops {
font-size: 117px !important;
margin: 0 0 20px 0;
line-height: 117px !important;
font-weight: bolder !important;
color: #F0F0F0 !important;
font-family: "PT Sans",Arial,Helvetica,sans-serif !important;
}
.error_page .sidebar-oops {
font-size: 90px !important;
line-height: 90px !important;
}
.error_page .oops h1 {
font-family: "PT Sans",Arial,Helvetica,sans-serif !important;
}
.fontawesome-icon{
display:inline-block !important;
float:left;
}
.fontawesome-icon{margin-right:10px;}
.fontawesome-icon.circle-yes{
-moz-border-radius:75px;
-webkit-border-radius:75px;
border-radius:75px;
border-width: 1px;
border-style: solid;
background-color:#333333;
color:#fff;
text-align:center;
margin-top:2px;
}
.fontawesome-icon.large{
font-size:40px;
}
.fontawesome-icon.large.circle-yes{
width:70px;
height:70px;
line-height:70px;
}
.fontawesome-icon.medium{
font-size:18px;
}
.fontawesome-icon.medium.circle-yes{
width:35px;
height:35px;
line-height:36px;
}
.fontawesome-icon.small{
font-size:10px;
}
.fontawesome-icon.small.circle-yes{
width:18px;
height:18px;
line-height:19px;
}
.fontawesome-icon.circle-no.large{
margin-top:2px;
}
.fontawesome-icon.circle-no.medium{
margin-top:3px;
}
.fontawesome-icon.circle-no.small{
margin-top:5px;
}
.icon-heading .fontawesome-icon{margin-top:-6px !important;}
.content-boxes .heading .fontawesome-icon{
float:left;
}
.content-boxes .heading-and-icon h2{
padding-left:45px;
}
.main-flex{overflow:hidden;width:100%; margin-left:auto !important; margin-right:auto !important;}
#sidebar .widget_nav_menu li a,#sidebar .widget_categories li a{
color: #333!important;
display: block;
border-bottom: 1px solid #E7E6E6;
padding: 10px 10px 10px 0;
}
#sidebar .widget_nav_menu li a:before,#sidebar .widget_categories li a:before,
#sidebar .widget .recentcomments:before,#sidebar .widget_recent_entries li a:before,
#sidebar .widget_archive li a:before,#sidebar .widget_pages li a:before,
#sidebar .widget_links li a:before,.side-nav .arrow:after,
.woocommerce-tabs .tabs a:hover .arrow:after,.woocommerce-tabs .tabs li.active a .arrow:after,
.widget_layered_nav li a:before,.widget_product_categories li a:before{
font-family: FontAwesome !important;
content:'\f054';
font-size:8px;
padding-right:10px;
}
#sidebar .widget_nav_menu li a,#sidebar .widget_categories li a{
display: block;
color: #333;
}
#sidebar .widget_categories li {
position:relative;
}
#sidebar .widget_categories li span{
position:absolute;
}
#sidebar .widget_categories .children{
margin-left:5px;
}
.shortcode-tabs .tab_content ul.arrow{
float:none;
}
#sidebar ul.arrow{
list-style:none;
margin:0;
padding:0;
}
#sidebar ul.arrow li:before{
display:inline-block;
background-image:url(images/arrow-bullet.png);
background-repeat:no-repeat;
background-position:center center;
background-color:#a0ce4e;
height:18px;
-moz-border-radius:75px;
-webkit-border-radius:75px;
border-radius:75px;
width:18px;
content:' ';
float:left;
margin-right:10px;
margin-left:0px;
}
#sidebar ul.arrow li{
line-height:18px;
margin:0;
padding:0;
margin-bottom:15px !important;
padding-left:0px;
}
#sidebar .sub-menu,#sidebar .children,.footer-area .sub-menu,.footer-area .children,#slidingbar-area .sub-menu,#slidingbar-area .children{margin-left:15px !important;}
.footer-area .columns-1 .col,#slidingbar-area .columns-1 .col{
width:100%;
padding-right:0;
}
.footer-area .columns-2 .col,#slidingbar-area .columns-2 .col{
width:48%;
margin-right: 4%;
}
.footer-area .columns-3 .col,#slidingbar-area .columns-3 .col{
width:31%;
margin-right: 3.5%;
}
.footer-area .columns-1 .col:nth-child(2),.footer-area .columns-1 .col:nth-child(3),
.footer-area .columns-1 .col:nth-child(4),
.footer-area .columns-2 .col:nth-child(3),.footer-area .columns-2 .col:nth-child(4),
.footer-area .columns-3 .col:nth-child(4),#slidingbar-area .columns-1 .col:nth-child(2),#slidingbar-area .columns-1 .col:nth-child(3),
#slidingbar-area .columns-1 .col:nth-child(4),
#slidingbar-area .columns-2 .col:nth-child(3),#slidingbar-area .columns-2 .col:nth-child(4),
#slidingbar-area .columns-3 .col:nth-child(4){display:none;}
.widget_categories li{
background:none !important;
padding:0 !important;
border-bottom:0 !important;
}
.footer-area .widget_categories li:first-child a,#slidingbar-area .widget_categories li:first-child a{
padding-top:0;
}
.footer-area .widget_categories li a,#slidingbar-area .widget_categories li a{
border-bottom: 1px solid #282a2b;
padding:12px 0px;
display:block;
}
.footer-area .widget_categories .children,#slidingbar-area .widget_categories .children{
margin-left:5px;
}
/* New Headers */
.header-social{
border-bottom:1px solid #e1e1e1;
padding:10px 0px;
}
.header-social .header-info, .header-social .top-menu{
line-height:43px;
}
.header-social { padding: 0px 10px; }
.header-social .sep{padding: 0 6px;}
.header-social .social-networks{margin-top:11px;max-width:400px;margin-left:auto;margin-right:auto;}
.header-social .social-networks li{float:left; margin-bottom:6px;}
.header-social .alignright{margin-left:0;}
.header-social .alignleft{margin-right:0;}
.header-v2 .header-social .alignleft, .header-v2 .header-social .alignleft a{color:#b3b3b3 !important;}
.header-v2 .header-social .alignleft a:hover{}
.header-v2 #header{border-bottom:1px solid #e1e1e1;}
.header-v2 .social-networks li{}
.header-v2 .social-networks a{opacity:0.2;}
.header-v2 .social-networks a:hover{opacity:0.5;}
.header-v2{border-top:4px solid #a0ce4e;}
.header-v3 .header-social{background-color:#a0ce4e;}
.header-v3 .header-social .alignleft,.header-v3 .header-social .alignleft a{color:#fff !important;}
.header-v3 .header-social .alignleft a:hover{}
.header-v3 #header{border-bottom:1px solid #e1e1e1;}
.header-v3 .social-networks li{float:right;}
.header-v3 .social-networks img {
}
.header-v3 .social-networks a{opacity:0.5;}
.header-v3 .social-networks a:hover{opacity:1;}
.header-v3 #nav ul a, .header-v3 .navigation li.current-menu-ancestor a{border-top:0px; padding-top:3px;}
.header-v3 #nav ul #main-nav-search-link{border-top:3px solid transparent; padding-top:0;}
.header-v4 .header-social{background-color:#a0ce4e;}
.header-v4 .header-social .alignleft,.header-v4 .header-social .alignleft a,.header-v4 .header-social .alignright .menu li a{color:#fff !important;}
.header-v4 #header{border-bottom:1px solid #e1e1e1;}
.header-v4 .social-networks li{margin-left:0; margin-right:22px;}
.header-v4 .social-networks img {
}
.header-v4 .social-networks a{opacity:0.5;}
.header-v4 .social-networks a:hover{opacity:1;}
.header-v4 #header{padding:30px 0px;}
.header-v4 #header .logo{margin:0;}
.header-v4 #header .tagline{float:right; margin:0 !important; padding:0; line-height:32px; text-align:right;}
.header-v4 #header .search{width:270px; float:right;margin-left:15px !important;}
.header-v4 #small-nav{border-bottom:1px solid #e1e1e1;}
.header-v4 #nav{float:left;}
.header-v4 #nav ul a, .header-v4 .navigation li.current-menu-ancestor a{border-top:0; padding-top:3px;}
.header-v4 #nav ul #main-nav-search-link{border-top:3px solid transparent; padding-top:0;}
.header-v4 .navigation li:last-child{padding-right:0;}
#header-banner{float:right;}
.header-v5 .header-social{background-color:#a0ce4e;}
.header-v5 .header-social .alignleft,.header-v5 .header-social .alignleft a,.header-v5 .header-social .alignright .menu li a{color:#fff !important;}
.header-v5 #header{border-bottom:1px solid #e1e1e1;}
.header-v5 .social-networks li:last-child{margin-right:0;}
.header-v5 .social-networks img {
}
.header-v5 .header-social .social-networks li{float:right;}
.header-v5 .social-networks a{opacity:0.5;}
.header-v5 .social-networks a:hover{opacity:1;}
.header-v5 .header-social .alignright .menu, .header-v5 .header-social .alignright .menu ul{list-style:none; margin:0; padding:0;}
.header-v5 .header-social .alignright .menu li:first-child{border-left:0;}
.header-v5 #header .logo{margin:0; text-align:center;}
.header-v5 #header .tagline{width:300px; float:right; margin:0; margin-right:15px; line-height:32px;}
.header-v5 #header .search{width:220px; float:right;}
.header-v5 #small-nav{border-bottom:1px solid #e1e1e1;}
.header-v5 #nav{float:none;}
.header-v5 #nav > ul{float:none; text-align:center;}
.header-v5 #nav > ul > li,.header-v5 #nav > ul > li > a{float:none;display:inline-block;}
.header-v5 #nav > ul ul{text-align:left;}
.header-v5 #nav ul a, .header-v5 .navigation li.current-menu-ancestor a{border-top:0; padding-top:3px;}
.header-v5 #nav ul #main-nav-search-link{border-top:3px solid transparent; padding-top:0;}
.header-v5 #header .logo{float:none;}
#header .tagline{font-weight:normal; font-family:'MuseoSlab500Regular', arial, helvetica, sans-serif !important; margin-top:7px !important;}
.header-social .alignleft .social-networks li{float:left;margin-left:0;margin-right:20px;}
.header-social .alignright .social-networks li{float:right;}
.header-social .menu,.header-social .menu ul{list-style:none; margin:0; padding:0;}
.header-social .menu li{position:relative;margin:0; padding:0; padding:0 8px; display:inline-block; border-left:1px solid #fff;}
.header-social .menu li:first-child{border-left:0;}
.header-social .menu li .sub-menu{display:block;position:absolute;left:-1px;z-index:100000;}
.header-social .menu li:hover > .sub-menu{display:block;position:absolute;left:-1px;}
.header-social .menu > li:hover > .sub-menu > li:hover .sub-menu{top:-1px;left:100px;}
.header-social .menu .sub-menu{background:#ffffff;
-webkit-border-bottom-right-radius: 2px;
-webkit-border-bottom-left-radius: 2px;
-moz-border-radius-bottomright: 2px;
-moz-border-radius-bottomleft: 2px;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
border:1px solid #e0dfdf;
width:100px;
line-height:normal !important;
}
#wrapper .header-social{min-height:43px;}
#wrapper .header-social .menu .sub-menu li{
float:none;
display:inline-block;
border:0;
border-bottom:1px solid #e0dfdf !important;
line-height:normal !important;
padding:0 !important;
}
#wrapper .header-social .menu .sub-menu li a{
width:80px;
padding:7px 10px;
display:inline-block;
}
#wrapper .header-social .menu .sub-menu li a:hover{
background-color:#fafafa;
}
#wrapper .header-social .menu .sub-menu li:last-child{
border-bottom:0 !important;
}
#wrapper .header-social .menu .sub-menu li,#wrapper .header-social .menu .sub-menu li a{
color:#333333 !important;
}
.header-social .alignleft .menu li:first-child{padding-left:0;}
.header-social .alignright .menu li:last-child{padding-right:0;}
.header-wrapper .header-v4 #s{width: 268px;}
.widget_wooslider_slideshow_slides li a{background:none !important; border:0 !important; margin:0 !important; padding:0 !important;}
#sidebar .flickr_badge_image img{width:66px; height:66px; float:left; padding:3px;}
.footer-area .flickr_badge_image img,#slidingbar-area .flickr_badge_image img{width:66px; height:66px; float:left; padding:3px;}
.footer-area .columns-4 .flickr_badge_image img, #slidingbar-area .columns-4 .flickr_badge_image img{width:60px; height:60px;}
.footer-area .social-networks,#slidingbar-area .social-networks{float:left;}
.footer-area .social-networks li,#slidingbar-area .social-networks li{float:left;margin-left:0;margin-right:20px;padding:0;}
.footer-area .social-networks li, .footer-area .social-networks a,#slidingbar-area .social-networks li, #slidingbar-area .social-networks a{background-image:none;}
.footer-area .social-networks li:first-child,#slidingbar-area .social-networks li:first-child{padding:0;}
.footer-area .flexslider .slides > li,#slidingbar-area .flexslider .slides > li{padding-top:0; padding-bottom:0;}
.chat-icon{display:inline-block; width:26px; height:19px; background-image:url(images/speech-bubble.png); margin-top:9px;}
/* WPML */
#icl_lang_sel_widget {
z-index:999;
}
#icl_lang_sel_widget:after {
content: "";
display: table;
clear: both;
}
#icl_lang_sel_widget li a{background-image:none !important;}
#lang_sel_list,#lang_sel_list ul,#lang_sel_list ul li{width:100%;}
#lang_sel_list ul{border-top:0;}
#lang_sel_list ul li a{border-left:0!important; border-right:0 !important;}
#lang_sel_footer ul li img{top:6px;}
.header-social .menu > li > a > .iclflag{display:inline-block;}
.header-social .sub-menu{display:inline-block;}
.footer-area #lang_sel_list li a,#slidingbar-area #lang_sel_list li a{background-color:transparent !important; padding-top:8px; padding-bottom:8px;}
#lang_sel ul ul,#lang_sel li{width:100%;background:#fff;}
#lang_sel > ul > li > a{padding:0px !important;padding-left:10px !important;}
#lang_sel > ul > li > a .iclflag{top:5px;}
ul.navigation > li > a > .iclflag,.top-menu > ul > li > a .iclflag{
position:relative;
top:50%;
}
#mobile-nav .iclflag {
margin: 3px 5px 0 0;
}
#mobile-nav .submenu-languages li.mobile-nav-item li a:before {
content: "";
}
.qtrans_flag_and_text{background-position:center right !important;}
#lang_sel{display:block;}
#lang_sel li ul li a{padding:10px !important;}
/* Google Recaptcha Hack */
iframe[src="about:blank"]{display:none;}
/* New Portfolio Templates */
.portfolio-one-text .portfolio-item .image{width:100%; height:100%; float:none; margin-right:0;}
.portfolio-one-text .portfolio-item .portfolio-content{margin-top:25px;}
.portfolio-two-text .portfolio-item{float:left;height:auto;}
.portfolio-two-text .portfolio-item .portfolio-content{margin-top:25px;}
.portfolio-three-text .portfolio-item{float:left;height:auto;}
.portfolio-three-text .portfolio-item .portfolio-content{margin-top:25px;}
.portfolio-four-text .portfolio-item{float:left;height:auto;}
.portfolio-four-text .portfolio-item .portfolio-content{margin-top:25px;}
.portfolio-item .portfolio-content h4{margin: 0 0 15px !important;}
.portfolio-item .portfolio-content h2 {margin: 0 0 5px !important;}
.portfolio-one-sidebar .portfolio-item .image{float:none;}
.portfolio-one-sidebar .portfolio-item .portfolio-content{margin-top:25px;}
.portfolio-two-sidebar .portfolio-item{width:324px; height:auto;}
.portfolio-three-sidebar .portfolio-item{width:211px; height:auto;}
.portfolio-four-sidebar .portfolio-item{width:153px; height:auto;}
/* Date and Formats Box */
.date-and-formats{float:left;width:82px;text-align:center;}
.date-and-formats .date-box{color:#fff;padding:8px 0 5px 0px;}
.date-and-formats .date-box .date{font-size:29px;font-weight:bold;display:block;line-height:29px;}
.date-and-formats .format-box{background-color:#eef0f2;margin-top:3px;}
.date-and-formats .format-box i{font-size:25px;display:block;line-height:55px;}
.large-alternate .post-content{float:right;width:84%;}
.large-alternate .meta-info,.medium-alternate .meta-info{border-top:0;margin-top:0;}
.medium-alternate .date-and-formats{margin-right:17px;}
.medium-alternate .flexslider{margin-right:17px !important;}
.medium-alternate .post-content{float:left;width:34%;}
.full-width .medium-alternate .post-content{width:53%;}
h2.post-title{margin-bottom:5px !important;}
.single-line-meta .sep{padding:0px 5px;}
.single-line-meta .sep:last-child,.meta-info .sep:last-child{display:none;}
/* Masonry Grid Layout */
.grid-layout .post{margin-bottom:40px; border:1px solid #EAEAEA;border-bottom-width:3px;}
.grid-layout .post .flexslider{border-bottom:1px solid #EAEAEA;margin-bottom:0 !important;}
.grid-layout .post-content-container{padding:0 25px;padding-top:30px;}
.grid-full-layout-4 .post-content-container { word-wrap: break-word; }
.grid-layout .post .content-sep{margin-bottom:20px;height:4px;border-top:1px solid #EAEAEA;border-bottom:1px solid #EAEAEA;}
.grid-layout .post .meta-info{border:0;margin-top:0; margin-bottom:20px;}
.grid-layout .post .meta-info .alignleft{width:50%;}
.has-sidebar .grid-full-layout-4 .meta-info .alignleft{width:100%;margin-right:0;float:none;display: block;margin-bottom: -7px;}
.has-sidebar .grid-full-layout-4 .meta-info .alignright{width:100%;margin-left:0;float:none;}
/* Timeline Layout */
.timeline-layout{background:url(images/timeline_line.png) center center repeat-y;width:775px;margin:0 auto;padding-top:60px;position:relative;}
.timeline-icon{font-size:46px;color:#ebeaea;text-align:center;margin-bottom:-8px;}
.timeline-layout .post{margin-bottom:40px; border:1px solid #EAEAEA;border-bottom-width:3px;}
.timeline-layout .post .flexslider{border-bottom:1px solid #EAEAEA;margin-bottom:0 !important;}
.timeline-layout .post-content-container{padding:0 25px;padding-top:30px;}
.timeline-layout .post .content-sep{margin-bottom:20px;height:4px;border-top:1px solid #EAEAEA;border-bottom:1px solid #EAEAEA;}
.timeline-layout .post .meta-info{border:0;margin-top:0; margin-bottom:20px;}
.timeline-layout .post .meta-info .alignleft{width:50%;}
.timeline-layout .post.align-left{width:300px;float:left;clear:left;}
.timeline-layout .post.align-right{width:300px;float:right;clear:right;}
h3.timeline-title{font-size:13px;font-weight:normal;border:1px solid #efeeee;height:auto;line-height:25px;width:96px;text-align:center;margin: -31px auto 0 auto;background:#fff;clear:both;}
.blog-shortcode h3.timeline-title { color: #747474; font-size:13px !important;}
.timeline-circle{background-color:#efeeee;border-radius:50%;width:10px;height:10px;position:absolute;left:383px;margin-top:-3px;}
.timeline-sidebar-layout{width:669px;}
.timeline-sidebar-layout h3.timeline-title{display:none;}
.timeline-sidebar-layout .timeline-circle{left:330px;}
.align-right .timeline-arrow {
position: absolute;
background: #ffffff;
}
.align-right .timeline-arrow:after, .align-right .timeline-arrow:before {
right: 100%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.align-right .timeline-arrow:after {
border-color: rgba(0, 0, 0, 0);
border-right-color: #ffffff;
border-width: 8px;
top: 50%;
margin-top: -8px;
}
.align-right .timeline-arrow:before {
border-color: rgba(239, 239, 239, 0);
border-right-color: #e5e4e4;
border-width: 9px;
top: 50%;
margin-top: -9px;
}
.align-left .timeline-arrow {
position: absolute;
background: #ffffff;
}
.align-left .timeline-arrow:after, .align-left .timeline-arrow:before {
left: 100%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.align-left .timeline-arrow:after {
border-color: rgba(0, 0, 0, 0);
border-left-color: #ffffff;
border-width: 8px;
top: 50%;
margin-top: -8px;
}
.align-left .timeline-arrow:before {
border-color: rgba(239, 239, 239, 0);
border-left-color: #e5e4e4;
border-width: 9px;
top: 50%;
margin-top: -9px;
}
.align-right .timeline-arrow{right:301px;}
.align-left .timeline-arrow{left:301px;}
/* New Shortcode CSS */
.reading-box-container{position:relative;z-index:1;}
.reading-box{position:relative;}
.tagline-shadow:before,
.tagline-shadow:after {
bottom:15px;
left:10px;
width:50%;
height:20%;
max-width:300px;
max-height:100px;
position:absolute;
content:'';
z-index:-1;
-webkit-box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);
-moz-box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);
box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);
-webkit-transform:rotate(-3deg);
-moz-transform:rotate(-3deg);
-ms-transform:rotate(-3deg);
-o-transform:rotate(-3deg);
transform:rotate(-3deg);
}
.tagline-shadow:after {
right:10px;
left:auto;
-webkit-transform:rotate(3deg);
-moz-transform:rotate(3deg);
-ms-transform:rotate(3deg);
-o-transform:rotate(3deg);
transform:rotate(3deg);
}
.demo-sep{clear:both;}
.sep-none{height:1px;}
.sep-single{height:1px;background-color:#e7e6e6;}
.sep-double{height:6px;border-top:1px solid #e7e6e6;border-bottom:1px solid #e7e6e6;}
.sep-dotted{border-bottom:2px dotted #e7e6e6;}
.sep-dashed{border-bottom:2px dashed #e7e6e6;}
.sep-shadow{background:transparent url(images/sep-shadow.png) no-repeat top center;height:7px;width:100%;}
.tooltip-shortcode{position:relative;display:inline;cursor:pointer;color:#747474;}
ul.list-icon{
list-style:none;
margin:0;
padding:0;
margin-top:10px;
}
ul.list-icon li:before{
display:inline-block;
height:18px;
width:18px;
content:' ';
float:left;
margin-right:0;
margin-left:-25px;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
}
ul.circle-yes li:before{
-moz-border-radius:75px;
-webkit-border-radius:75px;
border-radius:75px;
text-align:center;
font-size:9px;
}
ul.list-icon-color-light li:before{
color:#fff;
}
ul.list-icon li{
line-height:18px;
margin:0;
padding:0;
margin-bottom:15px;
padding-left:25px;
}
ul.list-icon-check li:before{
content:'\f00c';
}
ul.list-icon-star li:before{
content:'\f006';
}
ul.list-icon-arrow li:before,
ul.list-icon-angle-right li:before{
content:'\f105';
}
ul.list-icon-asterik li:before,
ul.list-icon-asterisk li:before{
content:'\f069';
}
ul.list-icon-cross li:before,
ul.list-icon-remove li:before{
content:'\f00d';
}
ul.list-icon-plus li:before{
content:'\f067';
}
.content-boxes-icon-on-top .col{text-align:center;}
.content-boxes-icon-on-top .col .more a{float:none;}
.content-boxes-icon-on-top .col .heading-and-icon .fontawesome-icon{float:none;width:64px;height:64px;line-height:64px;font-size:24px;margin:0;}
.content-boxes-icon-on-top .col .heading-and-icon img{float:none; margin-right: 0;}
.content-boxes-icon-on-top .col .heading-and-icon h2{padding-left:0;}
.content-boxes-icon-on-side .col-content-container{padding-left:45px;}
.content-boxes-icon-boxed{overflow:visible !important;}
.content-boxes-icon-boxed .col{overflow:visible !important;text-align:center;padding:2%;padding-top:50px;}
.content-boxes-icon-boxed .col .more a{float:none;}
.content-boxes-icon-boxed .col .heading-and-icon{overflow:visible;position:relative;}
.content-boxes-icon-boxed .col .heading-and-icon .fontawesome-icon,.content-boxes-icon-boxed .col .heading-and-icon img{float:none;position:absolute;top:-80px;width:64px;height:64px;line-height:64px;font-size:24px;margin:0;margin-left:-32px;left:50%;}
.content-boxes-icon-boxed .col .heading-and-icon img{float:none;}
.content-boxes-icon-boxed .col .heading-and-icon h2{padding-left:0;}
.content-boxes-icon-boxed.columns-5 .col{width:12.8%;}
.content-boxes-icon-boxed.columns-4 .col{width:18%;}
.content-boxes-icon-boxed.columns-3 .col{width:26.65%;}
.content-boxes-icon-boxed.columns-2 .col{width:44%;}
.content-boxes-icon-boxed.columns-1 .col{width:96%;}
.counters-circle {margin-bottom: 40px;text-align: center;}
.counter-circle-wrapper{vertical-align:middle;display:inline-block;margin-right:16px;width:220px;height:220px;position:relative;text-align:center;}
.counter-circle-wrapper:last-child{margin-right:0;}
.counter-circle-content{font-size:50px;width:220px;height:220px;text-align:center;line-height:220px;position:relative;}
.counter-circle-content .fontawesome-icon{margin:0 !important;float:none !important;font-size:50px !important;}
.counter-circle-content canvas {left: 0;position: absolute;top: 0;}
.counters-box { font-size: 0; }
.counters-box .counter-box-content { font-size: 13px; }
//.counter-box-wrapper{border:1px solid #e7e6e6;width:20%;padding:2%;display:inline-block;margin-right:1%; text-align:center;}
.counters-box .counter-box-wrapper {border:1px solid #e7e6e6;width:24.1%;margin-right:1%;display:inline-block;-moz-box-sizing: border-box;box-sizing: border-box;padding: 20px;text-align:center;}
.counters-box .counter-box-wrapper:last-child{margin-right:0;}
.content-box-percentage{font-size:50px;line-height:50px;}
.post-content .wooslider .overlay-natural.layout-text-bottom .slide-excerpt{bottom:15% !important;}
.post-content .wooslider .overlay-natural.layout-text-top .slide-excerpt{top:15% !important;}
.post-content .wooslider .slide-excerpt .slide-title,.post-content .wooslider .slide-excerpt .slide-title a{color:#fff !important;}
.post-content .wooslider .overlay-full .slide-excerpt{padding:50px !important;opacity:0.7 !important;}
.post-content .wooslider .wooslider-control-thumbs{position:relative !important;width:auto !important;margin:0 auto !important;margin-top:33px !important; text-align:center !important;}
.post-content .wooslider .wooslider-control-thumbs li{float:none !important;width:56px !important;}
.post-content .wooslider .wooslider-prev,.post-content .wooslider .wooslider-next{top:50% !important;margin-top:-29px !important;}
.post-content .wooslider-type-attachments .wooslider-prev,.post-content .wooslider-type-attachments .wooslider-next{top:50% !important;margin-top:-59px !important;}
.post-content .wooslider .overlay-none .slide-excerpt{margin-top:10px;}
.post-content .wooslider .overlay-none .slide-excerpt .slide-title, .post-content .wooslider .overlay-none .slide-excerpt .slide-title a{color:#333 !important;}
.tabs-vertical{border:0px;}
.tabs-vertical .tabset{border-left:1px solid #d3d3d3;border-top:1px solid #d3d3d3;border-bottom:1px solid #d3d3d3;width:15.7446808511%;float:left;height:auto;position:relative;left:1px;z-index:10;}
.tabs-vertical .tab-hold .tabset li{float:none !important;width:auto;height:auto;border:0;background:none !important;}
.tabs-vertical .tab-hold .tabset li a,.tabs-vertical .tab-hold .tabset li:last-child a{background:url(images/tab-bg.png) !important;border-bottom:0 !important;}
.tabs-vertical .tab-hold .tabset li a{width:auto !important;text-indent:0 !important;border-bottom:1px solid #d3d3d3 !important;height:auto !important;line-height:normal !important;padding:10px !important;}
.tabs-vertical .tab-hold .tabset li a:hover{}
.tabs-vertical .tab-hold .tabset li.active a{background:#fff !important;border-width:0px !important;border-style:solid !important;border-left-width:3px !important;height:auto !important;line-height:normal !important;}
.tabs-vertical .tabs-container{width:83.9361702128%;float:left;}
.tabs-vertical .tabs-container .tab_content{border:1px solid #d3d3d3;padding:30px !important;}
.portfolio-grid{margin-bottom:80px !important;}
.portfolio-grid .portfolio-tabs{margin-top:0 !important;}
.portfolio-grid.portfolio-one .portfolio-item:last-child{margin-bottom:0px !important;}
.portfolio-grid.portfolio-one .image{width:100% !important;float:none !important;}
.avada-container.layout-thumbnails-on-side .col{margin-bottom:20px;}
.avada-container.layout-thumbnails-on-side .flexslider{width:144px;float:left;overflow:hidden;margin-right:20px;}
.avada-container.layout-thumbnails-on-side .flexslider li img{}
.avada-container.layout-thumbnails-on-side .recent-posts-content{}
.avada-container.layout-thumbnails-on-side .recent-posts-content h4{margin:0;margin-bottom:3px;}
.avada-container.layout-thumbnails-on-side .recent-posts-content .meta{margin-bottom:15px;}
.avada-container.layout-date-on-side .col{margin-bottom:20px;}
.avada-container.layout-date-on-side .date-and-formats{width:82px;float:left;overflow:hidden;margin-right:20px;}
.avada-container.layout-date-on-side .recent-posts-content{}
.avada-container.layout-date-on-side .recent-posts-content h4{margin:0;margin-bottom:3px;}
.avada-container.layout-date-on-side .recent-posts-content .meta{margin-bottom:15px;}
.avada-container.layout-thumbnails-on-side .columns-1 .flexslider,.avada-container.layout-thumbnails-on-side .columns-2 .flexslider{margin-bottom:5px;}
.imageframe-align-center { text-align: center; }
.imageframe{position:relative;display:inline-block;max-width:100%;}
.imageframe-border img{border:4px solid #eef0f2;}
.imageframe-glow img{
border: 4px solid #fff; /* stroke */
-moz-box-shadow: 0 0 3px rgba(3,3,3,.3); /* outer glow */
-webkit-box-shadow: 0 0 3px rgba(3,3,3,.3); /* outer glow */
box-shadow: 0 0 3px rgba(3,3,3,.3); /* outer glow */
}
.imageframe-dropshadow img{
-moz-box-shadow: 2px 3px 7px rgba(0,0,0,.3); /* drop shadow */
-webkit-box-shadow: 2px 3px 7px rgba(0,0,0,.3); /* drop shadow */
box-shadow: 2px 3px 7px rgba(0,0,0,.3); /* drop shadow */
}
.imageframe-bottomshadow .imageframe-shadow-left{
background:url(images/imageframe_shadow.png) no-repeat top left;
height:22px;
width:230px;
display:inline-block;
position:absolute;
bottom:-22px;
left:0;
}
.imageframe-bottomshadow .imageframe-shadow-right{
background:url(images/imageframe_shadow.png) no-repeat top right;
height:22px;
width:230px;
display:inline-block;
position:absolute;
bottom:-22px;
right:0;
}
.imageframe img{
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
}
table{
border-collapse:collapse;
border-spacing:0;
}
.table-1 table{
border: 1px solid#dcdcdc;
background-color:#fff;
-moz-box-shadow:0 1px 3px rgba(0,0,0,.08), inset 0 0 0 1px rgba(255,255,255,.5);
-webkit-box-shadow:0 1px 3px rgba(0,0,0,.08), inset 0 0 0 1px rgba(255,255,255,.5);
box-shadow:0 1px 3px rgba(0,0,0,.08), inset 0 0 0 1px rgba(255,255,255,.5);
}
.table-1 table th{
border:1px solid #dcdcdc;
background:#f6f6f6;
padding:20px;
font-family:'MuseoSlab500Regular', arial, helvetica, sans-serif;
text-align:left;
}
.table-1 tr:nth-child(even){
background:#f6f6f6;
}
.table-1 tr td{
border:1px solid #dcdcdc;
padding:10px 20px;
}
.table-2 table thead{
border: 1px solid #d3d3d3;
font-family:'MuseoSlab500Regular', arial, helvetica, sans-serif;
text-align:left;
}
.table-2 table th{
padding:20px;
color:#fff;
}
.table-2 tr td{
border-bottom:1px solid #dcdcdc;
padding:10px 20px;
}
/* Avada 3.0 Images */
.error-image{background:url(images/404_image.png);width:311px;height:133px;margin-top:14px;}
/* DD Slick */
#wrapper .dd-container{font-size:12px !important;font-weight:normal !important;}
#wrapper .dd-container .dd-select{background-image:url(images/mobile_menu_bg.png)!important;height:29px;line-height:29px;border-color:#dadada !important;border-radius:0px !important;text-align:left !important;}
#wrapper .dd-container .dd-selected{padding:0 15px;}
#wrapper .dd-container .dd-pointer{border:0 !important;background:url(images/mobile_menu_icon.png) no-repeat top left;width:48px;height:29px;margin:0 !important;top:0px;right:5px;}
#wrapper .dd-container label,#wrapper .dd-container a{color:#333333 !important;}
#wrapper .dd-options{border-color:#dadada !important;box-shadow:none !important;position:relative !important;}
#wrapper .dd-options li{float:none;height:auto;padding:0;line-height:normal;border-bottom:1px solid #dbdbdb !important;}
#wrapper .dd-options li a{border:0 !important;float:none;height:auto;margin:0;padding:10px;line-height:normal;color:#333 !important;}
#wrapper .dd-options li a:hover,#wrapper .dd-options li.dd-option-selected a{background-color:#f6f6f6 !important;color:#333 !important;}
.top-menu .dd-container{text-align:left !important;font-size:12px !important;}
#wrapper .dd-selected{font-weight:normal !important;}
#wrapper .dd-options li:first-child{display:none !important;}
/* WP 3.6 media player responsive */
.mejs-container.mejs-video {
width: 100% !important;
height: auto !important;
padding-top: 57%;
}
.mejs-overlay, .mejs-poster {
width: 100% !important;
height: 100% !important;
}
.mejs-mediaelement video {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
width: 100% !important;
height: 100% !important;
}
.mejs-container, .mejs-embed, .mejs-embed body {
background:transparent;
}
/* Author page */
.author .avatar {
float: left;
margin-right:20px;
}
.author .author_description .author_title {
margin-top: 0;
font-family: 'MuseoSlab500Regular',arial,helvetica,sans-serif;
color: #333333;
font-weight: normal;
}
.author .author_title .edit_profile {
font-size: 12px;
}
.author .author_description {
overflow: hidden;
}
.author .author_social {
min-height: 34px;
line-height: 34px;
border-top: 1px solid #E0DEDE;
border-bottom: 1px solid #E0DEDE;
margin: 20px 0 80px 0;
}
.author .author_social .custom_msg {
float: left;
max-width: 70%;
font-weight: bold;
}
.author .author_social .social-networks {
margin-top: 8px;
}
/* Woocommerce */
.woocommerce-info{ margin-bottom: 20px;}
.woocommerce-message{margin-bottom:15px;background: url("images/success-icon.png") no-repeat scroll 25px 8px #E9F3D2;border: 1px solid #ACD556;color: #92B750;padding: 8px;position: relative;text-align: center;}
.single-product .woocommerce-message{margin-bottom:40px;padding:20px 0;background:none; border:none;border-top:1px solid #e0dede;border-bottom:1px solid #e0dede;color:#333;text-align:left;}
.single-product .woocommerce-message:before {font-family:'FontAwesome';content:"\f05d";margin-right:5px;}
.single-product .woocommerce-message .wc-forward{float:right;}
.single-product .woocommerce-message .wc-forward:before{font-family:'FontAwesome';content:"\f07a";margin-right:6px;}
.woocommerce-error{list-style:none;padding:0;}
.woocommerce-error li{margin-bottom:15px;background: url("images/error-icon.png") no-repeat scroll 25px 8px #FFE9E9;border: 1px solid #E7A9A9;color: #D04544;padding: 8px;position: relative;text-align: center;}
.woocommerce .single_add_to_cart_button,
.woocommerce .shipping-calculator-form .button,
.woocommerce form.checkout #place_order,
.woocommerce .checkout_coupon .button,
.woocommerce .login .button,
.woocommerce .register .button,
.woocommerce .avada-order-details .order-again .button{
min-height:32px;
font:13px/32px 'PTSansBold', arial, helvetica, sans-serif;
text-transform:uppercase;
text-align:center;
text-shadow:0 1px 0 #fff;
padding:0 20px;
margin: 0;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
box-shadow: 0 1px 1px rgba(0,0,0,0.2);
cursor:pointer;
}
.woocommerce .button{
cursor:pointer;
}
@-moz-document url-prefix() {
.woocommerce .single_add_to_cart_button {
margin-top: -1px;
}
}
.woocommerce .shipping-calculator-form .button{
float: right;
}
.woocommerce .login .form-row{text-align:initial;margin:0 20px 0 15px;float:right;}
.woocommerce .login .form-row.form-row-first,.woocommerce .login .form-row.form-row-last{margin:0 0 20px 0;float:none;}
.woocommerce .login .button {margin-left:15px;}
.woocommerce .login .inline {float:left;margin-top:5px;}
.woocommerce .login .lost_password{float:right;margin-top:5px;}
.woocommerce #customer_login .login .form-row{text-align:initial;margin:0 18px 0 0;float:left;}
.woocommerce #customer_login .login .form-row.form-row-wide{margin:0 0 20px 0;float:none;}
.woocommerce #customer_login .login .button {margin-left:0;}
.woocommerce #customer_login .login .inline {float:none;display:inline;margin-top:10px;margin-left:15px;}
.woocommerce #customer_login .login .lost_password {float: left; margin-top: 6px;}
@-moz-document url-prefix() {
.woocommerce #customer_login .login .lost_password{margin-top: 5px;}
}
.woocommerce .checkout_coupon {margin-bottom:30px;display:block!important;}
.woocommerce .checkout_coupon .promo-code-heading{margin:0!important;padding:0;border:none;}
.woocommerce .checkout_coupon .coupon-input{width:240px;}
.woocommerce .checkout_coupon .coupon-input .input-text{padding:8px 15px;}
.woocommerce .checkout_coupon .coupon-button{margin-right:0;}
.product_meta {clear: both;padding-top: 20px;}
.cart_totals, .shipping_calculator, .coupon, #customer_login .col-1, #customer_login .col-2, .checkout_coupon
{box-sizing: border-box;-moz-box-sizing: border-box;border: 1px solid;overflow: hidden;padding: 30px;}
.woocommerce .checkout h3, .cart_totals h2, .shipping_calculator h2, .coupon h2, #customer_login h2
{margin-top:0;border-bottom: 1px solid;margin-bottom: 30px !important;padding-bottom: 10px;}
.woocommerce-ordering { display: none; }
.catalog-ordering > ul{float:left;margin-bottom:42px;}
.catalog-ordering a{color:#333 !important;}
.order-dropdown{float:left;width:175px;margin:0;padding:0;list-style:none;margin-right:10px;position:relative;}
.order-dropdown ul{margin:0;padding:0;list-style:none;}
.catalog-ordering .order{margin:0;padding:0;list-style:none;}
.order-dropdown .current-li{background:#fbfaf9 !important;border:1px solid #dbdbdb !important;display:block;height:29px;line-height:29px;text-indent:13px;font-size:12px;}
.current-li-content {display: block;height: 30px;overflow: hidden;width: 139px;}
.order-dropdown > li{position:relative;z-index:101;}
.order-dropdown ul{display:none;}
.order-dropdown > li:hover > ul{display:block;position:absolute;top:31px;}
.order-dropdown li ul li {height: 30px;overflow: hidden;}
.order-dropdown ul li a{width:160px;background:#fbfaf9;border:1px solid #dbdbdb;border-top:0;display:block;height:29px;line-height:29px;text-indent:13px;font-size:12px;padding:0;padding-right:13px;}
.order-dropdown ul li a:hover{background:#fff;}
.order-dropdown ul li a strong{font-weight:normal;}
.catalog-ordering .order{margin-right:10px;float:left;}
.catalog-ordering .order li a{background:#fbfaf9;border:1px solid #dbdbdb;display:block;height:29px;line-height:29px;padding:0 13px;font-size:12px;padding:0 10px;}
.order-dropdown > li:after{display:block;font-family:"FontAwesome";content:"\f107";z-index:101;position:absolute;top:0;right:0;height:30px;line-height:30px;width:26px;text-align:center;border-left:1px solid #dbdbdb;}
.orderby-order-container{float:left;}
.products{list-style:none;margin:0;padding:0;}
.products li{border:1px solid #efefef;border-bottom-size:2px;}
.products-4 li{float:left;width:23.9%;margin-right:1.0%;margin-bottom:11px;}
.products-4 li:nth-child(4n){margin-right:0;}
.products-4 li:nth-child(4n+1){clear:both;}
.products-3 li{float:left;width:32.2%;margin-right:1.1%;margin-bottom:11px;}
.products-3 li:nth-child(3n){margin-right:0;}
.products-3 li:nth-child(3n+1){clear:both;}
.products-2 li{float:left;width:49.1%;margin-right:0.9%;margin-bottom:11px;}
.products-2 li:nth-child(2n){margin-right:0;}
.products-2 li:nth-child(2n+1){clear:both;}
.products-1 li{float:left;width:99.6%;margin-bottom:11px;}
.products-1 li:nth-child(2n){margin-right:0;}
.products-1 li:nth-child(2n+1){clear:both;}
.product-images{display:block;text-align:center;position:relative;}
.onsale{-webkit-backface-visibility: hidden;display:block;z-index:99;color:#fff;border-radius:50%;line-height:39px;text-align:center;position:absolute;padding:0px 5px !important;}
.product-details{padding:20px 15px 0px 15px;}
.product-title{font-size:13px;margin-top:0;margin-bottom:5px;font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif;font-weight:normal;}
.products-slider .product-buttons{height:40px;}
.products-slider .product-buttons a { padding-left: 18px !important; }
.product .product-buttons{padding-bottom: 12px; padding-top: 12px; margin: 0 15px; margin-top:4px; border-top: 1px solid #EBEAEA;}
.star-rating {
overflow: hidden;
position: relative;
height: 1em;
line-height: 1em;
font-size: 1em;
width: 5.1em;
font-family: "fontawesome";
}
.star-rating:before {
content: "\f006\f006\f006\f006\f006";
float: left;
top: 0;
left: 0;
position: absolute;
letter-spacing: 0.1em;
}
.star-rating span {
overflow: hidden;
float: left;
top: 0;
left: 0;
position: absolute;
padding-top: 1.5em;
}
.star-rating span:before {
content: "\f005\f005\f005\f005\f005";
top: 0;
position: absolute;
left: 0;
letter-spacing: 0.1em;
}
.product-details .star-rating{float:right;}
.price del .amount,.product-details .price .from{font-size:13px;margin-right:5px;}
.price ins{text-decoration:none;}
.price ins .amount{font-size:18px;text-decoration:none;}
.price > .amount{font-size:18px;}
.product-details-container{border-bottom:1px solid #e7e6e6;padding-bottom:20px;min-height:50px;}
//.product-buttons-container{border-top:1px solid #e7e6e6;margin-top:4px;}
.product-buttons .add_to_cart_button{float:left;font-size:12px;line-height:40px; position:relative; padding-left:15px;}
.product-buttons .add_to_cart_button:before{font-family:"fontawesome";content:"\f07a";position:absolute;left:0;padding-top:2px;}
.product-buttons .align-right {float:right; width:41%;position:relative;line-height:normal !important; display:inline-block;line-height:40px;}
.product-buttons .show_details_button{float:right;font-size:12px; line-height:40px; position:relative; padding-left:15px; text-align:right;}
.product-buttons .show_details_button:before{font-family:"fontawesome";content:"\f03a";position:absolute;left:0;padding-top:2px;}
.product-buttons .button.product_type_variable,.product-buttons .button.product_type_grouped{float:left;font-size:12px;line-height:40px;position:relative; padding-left:15px;}
.product-buttons .button.product_type_variable:before,.product-buttons .button.product_type_grouped:before{font-family:"fontawesome";content:"\f013";position:absolute;left:0;padding-top:2px;}
.product-buttons .button.product_type_simple{float:left;font-size:12px;line-height:40px;position:relative; padding-left:15px;}
.product-buttons .button.product_type_simple:before{font-family:"fontawesome";content:"\f07a";position:absolute;left:0;padding-top:2px;}
.product-buttons .added_to_cart{display:none;}
.product-buttons .button,.product-buttons .show_details_button{width:41%;line-height:normal !important;}
.product-buttons .show_details_button{width:auto !important; max-width:41%;}
.has-sidebar .products-4 .product-buttons .button, .product-buttons .show_details_button { width:36%; }
.has-sidebar .products-4 .product-buttons .show_details_button{width:auto !important; max-width:36%;}
.product-buttons .button{text-align:left;}
.product-images .crossfade-images{display:block;}
.product-images .crossfade-images img{
-webkit-transition: opacity 0.5s ease-in-out;
-moz-transition: opacity 0.5s ease-in-out;
-o-transition: opacity 0.5s ease-in-out;
transition: opacity 0.5s ease-in-out;
position:relative;
z-index:50;
}
.product-images .crossfade-images img:hover{opacity:0;}
.product-images .hover-image{position:absolute !important;}
.woocommerce-pagination .next,.woocommerce-pagination .prev,.woocommerce-pagination .next:hover,.woocommerce-pagination .prev:hover{border:0;}
.product{position:relative;}
.product .images{float:left;margin-right:39px;}
.woocommerce-tabs{clear:both;}
#main .product .product_title{margin-bottom:0px;}
.product .onsale{top:20px;left:15px;}
.product .price{margin:0;margin-top:5px;}
.product .product-border{height:4px;border-top:1px solid #e7e6e6;border-bottom:1px solid #e7e6e6;margin-top:10px;margin-bottom:10px;}
.quantity{border:1px solid #dbdbdb;overflow:hidden;width:95px;}
.quantity .minus,.quantity .plus,.quantity .qty{float:left;border:0;margin:0;padding:0;height:31px;text-align:center;vertical-align:middle;font-size:12px;color:#333;}
.quantity .qty{background:transparent;width:43px;}
.quantity .minus,.quantity .plus{background:#fbfaf9;width:26px;cursor:pointer;}
.quantity .minus,.quantity .qty{border-right:1px solid #dadada;}
.quantity .qty::-webkit-inner-spin-button,
.quantity .qty::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.input-text,.quantity .minus,.quantity .plus{-webkit-appearance:none;border-radius:0;}
form.cart{margin-bottom:40px;margin-top:40px;}
.summary .cart .gform_wrapper { overflow: visible; }
.summary .cart .quantity { float: left; margin-right: 10px;}
.group_table{margin-bottom:10px;}
.group_table tr{vertical-align:top;height:41px;}
.group_table td{vertical-align:middle;height:31px;}
.group_table td.label{padding:0 10px;}
.product_meta > span{display:block;}
.woocommerce-tabs{overflow:hidden;padding-top:50px;}
.woocommerce-tabs > .tabs{list-style:none;padding:0;margin:0;width:220px;float:left;}
.woocommerce-tabs .tabs li a{display:block;padding:10px 0px;border-bottom:1px solid #e7e6e6;}
.woocommerce-tabs .tabs li a .arrow,.woocommerce-tabs .tabs li a:hover .arrow{display:none;}
.woocommerce-tabs .tabs li.active a .arrow,.woocommerce-tabs .tabs li.active a:hover .arrow{display:inline-block;}
.woocommerce-tabs .panel{float:left;border:1px solid #e7e6e6;margin-left:20px;}
.has-sidebar .woocommerce-tabs .panel{width:394px;padding:16px;}
#reviews .overall-rating{float:right;}
#reviews .review-title{margin:0;}
#reviews .review-main-title{margin-bottom:25px;}
#reviews #comments > h2 { font-size: 13px; font-weight: bold; color: #747474;}
#reviews .commentlist{margin-bottom:0;}
#reviews li{margin-bottom:15px;}
#reviews li:last-child{margin-bottom:0;}
#reviews li .comment-text{float:right;padding:15px;border:1px solid #f2efef;margin-left:10px;}
#reviews li .avatar{float:left; max-width: 60px;}
#reviews li .comment-text .meta{display: inline-block;margin-bottom:10px;}
#reviews li .comment-text .star-rating{float:right;margin-left:5px;}
#reviews li .comment-text .description{clear:both;}
#reviews .add_review{margin:0;margin-top:15px;float:right;}
.has-sidebar #reviews li .comment-text{width:292px;}
#review_form_wrapper{margin-top:50px;}
#review_form_wrapper textarea{
width: -moz-calc(100% - 23px);
width: -webkit-calc(100% - 23px);
width: -ms-calc(100% - 23px);
width: -o-calc(100% - 23px);
width: calc(100% - 23px);
}
#reviews #reply-title{font-size:15px;margin:0;margin-bottom:25px;}
.comment-respond .comment-reply-title {margin-top: 0; padding-top: 1em;}
.comment-form-rating label{display:none;}
#reviews .comment-form-comment label{display:block;margin-bottom:4px;}
#reviews input#submit{border:0;font-size:13px;font-weight:bold;}
p.stars {
position: relative;
line-height: 1em;
font-size: 1em;
}
p.stars:after {
content: "";
display: block;
clear: both;
}
p.stars a {
width: 19%;
display: block;
position: relative;
float: left;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: .5em .5em .5em .75em;
background: rgba(0, 0, 0, 0.025);
margin-right: 1%;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
font-weight: bold;
}
p.stars a:hover,
p.stars a.active {
background: rgba(0, 0, 0, 0.075);
}
p.stars a.star-1:after,
p.stars a.star-2:after,
p.stars a.star-3:after,
p.stars a.star-4:after,
p.stars a.star-5:after {
font-family: "FontAwesome";
content: "\f005";
position: absolute;
top: .85em;
width: 5.3em;
right: 1em;
font-size: .5em;
-webkit-border-radius: 1em;
-moz-border-radius: 1em;
border-radius: 1em;
color: #999;
text-align: right;
font-weight: normal;
}
p.stars a.star-1:hover,
p.stars a.star-2:hover,
p.stars a.star-3:hover,
p.stars a.star-4:hover,
p.stars a.star-5:hover {
text-decoration: none;
}
p.stars a.star-1:after {
content: "\f005";
}
p.stars a.star-2:after {
content: "\f005\f005";
}
p.stars a.star-3:after {
content: "\f005\f005\f005";
}
p.stars a.star-4:after {
content: "\f005\f005\f005\f005";
}
p.stars a.star-5:after {
content: "\f005\f005\f005\f005\f005";
}
.related.products,.upsells.products{margin-top:50px;}
.shop_attributes{width:100%;}
.shop_attributes tr{border-bottom:1px solid #e0e0e0;}
.shop_attributes tr:last-child{border-bottom:0;}
.shop_attributes tr th{text-align:left;width:30%;font-weight:bold;padding:5px 0px;}
.shop_attributes tr td{text-align:left;width:70%;padding:5px 0px;}
.shop_attributes p{margin:0;}
.product .images{width:500px;margin-right:30px;}
.product .summary.entry-summary{float:left;width:410px;}
.product .images .flexslider .slides img{width:auto;}
.product .images #slider,.product .images #carousel{margin-bottom:7px;}
.product .images #carousel li{margin-right:9px;opacity:0.5!important;}
.product .images #carousel li.flex-active-slide{opacity:1!important;}
.product .images #slider .flex-direction-nav,.product .images #carousel .flex-direction-nav{display:none;}
.product .images:hover #slider .flex-direction-nav,.product .images:hover #carousel .flex-direction-nav{display:block;}
.has-sidebar .product .images{width:320px;}
.has-sidebar .summary.entry-summary{float:left;width:318px;}
.woocommerce-tabs .panel{width:657px;padding:20px;}
#reviews li .comment-text{width:554px;}
.woocommerce .social-share{text-align:center;border-top:1px solid #e7e6e6;border-bottom:1px solid #e7e6e6;margin-top:50px !important;}
.woocommerce .social-share,.woocommerce .social-share li{list-style:none;margin:0;padding:0;}
.has-sidebar .woocommerce .social-share li,.has-sidebar .woocommerce-container .social-share li{padding:10px 19px !important;}
.woocommerce .social-share li{display:inline-block;text-align:left;width:120px;border-right:1px solid #e7e6e6;padding:10px 30px;}
.woocommerce .social-share li:last-child{border-right:0;}
.woocommerce .social-share li span{display:block;}
.woocommerce-message{margin-bottom:15px;}
.woocommerce-success-message{border-top:1px solid;border-bottom:1px solid;padding:20px 0px;font-size:14px;font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif;margin-bottom:40px;}
.woocommerce-success-message .button{float:right;}
.woocommerce-success-message .msg:before{font-family:'FontAwesome';content:"\f05d";margin-right:5px;}
.woocommerce-success-message .button{font-size:12px;}
.woocommerce-success-message .button:before{font-family:'FontAwesome';content:"\f07a";margin-right:6px;}
.empty-cart-message .msg{font-size:18px;}
.empty-cart-message .msg:before{content:'';}
.login-box{position:absolute;top:auto;left:-1px;z-index:1000;}
.login-box{padding:20px;width:187px;border: 1px solid #dedddd;}
.login-box p{margin:0;padding:0;}
.login-box .forgetmenot{float:left;}
.login-box .submit{float:right;}
.top-menu .cart{background:#f6f6f6;border-right:1px solid;padding-left:25px !important;padding-right:25px !important;padding:0 !important;}
.top-menu .cart > a{display:block;padding-right:0px;text-transform:uppercase;text-align:center !important;min-width:150px;padding:0 13px !important;}
.top-menu .cart > a.empty-cart{width:auto !important;}
.top-menu .cart > a:before{font-family:'FontAwesome';content:"\f07a";margin-right:10px;}
.top-menu .cart > a:after{font-family:'FontAwesome';content:"\f107";margin-left:10px;}
.top-menu .cart-contents{position:absolute;top:auto;right:-1px;z-index:1001;}
.top-menu .cart-contents{border:1px solid;}
.top-menu .cart-content a{display:block;line-height:normal;padding:15px 13px;width:150px;border-bottom:1px solid;overflow:hidden;}
.top-menu .cart-contents .cart-content:last-child a{border-bottom:0;}
.top-menu .cart-content a:hover{background:#f6f6f6;}
.top-menu .cart-content .cart-desc{float:left;}
.top-menu .cart-content a img{float:left;display:inline-block;max-width:36px;margin-right:15px;}
.top-menu .cart-content a .cart-desc{display:inline-block;width:94px;}
.top-menu .cart-contents a span{line-height:normal;}
.top-menu .cart-content a .cart-title, .top-menu .cart-content a .quantity{display:block;font-size:12px;}
.top-menu .cart-content a .cart-title{margin-bottom:5px;}
.cart-checkout{background:#f6f6f6;overflow:hidden; padding:0 15px;}
.cart-checkout a{ display:inline-block; width: 40%; float:left;line-height: 15px;padding: 14px 0; border:none !important; }
.cart-checkout .cart-link a:before{font-family:'FontAwesome';content:"\f07a";position:absolute;left:0;padding-top:1px;}
.cart-checkout .checkout-link a:before{font-family:'FontAwesome';content:"\f046";position:absolute;left:0;padding-top:1px;}
.cart-checkout .cart-link a, .cart-checkout .checkout-link a{position:relative;padding-left:1.1em;}
.checkout-link { float: right; }
#header-sticky .cart, #header .cart{margin-left: 0;}
#header-sticky .cart-contents, #header .cart-contents{position:absolute;top:auto;left:auto;right:0;z-index:100;}
//#header-sticky .cart:hover .cart-contents, #header .cart:hover .cart-contents{display:block;}
#header-sticky .cart-contents, #header .cart-contents{border:1px solid;}
#header-sticky .cart-content a, #header .cart-content a{display:block;line-height:normal;padding:15px !important;width:150px;border-top:0 !important;border-bottom:1px solid !important;line-height:normal !important;height:auto !important;}
#header-sticky .cart-contents .cart-content:last-child a, #header .cart-contents .cart-content:last-child a{border-bottom:0;}
#header-sticky .cart-content a:hover, #header .cart-content a:hover{border-top:0 !important;background:#f6f6f6 !important;height:auto !important;}
#header-sticky .cart-content a img, #header .cart-content a img{display:inline-block;max-width:36px;margin-right:5px;}
#header-sticky .cart-content a .cart-desc, #header .cart-content a .cart-desc{display:inline-block;width:102px;font-size:12px !important;}
#header-sticky .cart-contents a span, #header .cart-contents a span{line-height:normal;}
#header-sticky .cart-content a .cart-title,#header-sticky .cart-content a .quantity,
#header .cart-content a .cart-title,#header .cart-content a .quantity{display:block;font-size:12px !important;}
#header-sticky .cart-content a .cart-title, #header .cart-content a .cart-title{margin-bottom:5px;}
#header-sticky .cart-checkout, #header .cart-checkout{background:#f6f6f6;overflow:hidden;}
#header-sticky .cart-checkout a, #header .cart-checkout a{display:inline-block;width:40%;float:left;line-height: 15px;padding: 14px 0; padding-top:14px !important;height: auto; font-size:12px; border:none !important;}
#header-sticky .cart-checkout .cart-link a:before, #header .cart-checkout .cart-link a:before{font-family:'FontAwesome';content:"\f07a";}
#header-sticky .cart-checkout .checkout-link a:before, #header .cart-checkout .checkout-link a:before{font-family:'FontAwesome';content:"\f046";}
#header-sticky .cart-checkout .cart-link a, #header-sticky .cart-checkout .checkout-link a,
#header .cart-checkout .cart-link a, #header .cart-checkout .checkout-link a{position:relative;padding-left:1.1em;}
#header-sticky .my-cart-link:hover, #header .my-cart-link:hover{border-top-color:transparent !important;}
#header-sticky .my-cart-link:after, #header .my-cart-link:after{font-family:'FontAwesome';content:"\f07a";padding:5px;
border-radius:50%;
-moz-border-radius:50%;
-webkit-border-radius:50%;
border:1px solid;
}
.cart-content a img{border:1px solid;}
#small-nav .cart-contents{position:absolute;top:auto;left:auto;right:0;z-index:100;}
#small-nav .cart-contents{border:1px solid;}
#small-nav .cart-content a{display:block;line-height:normal;padding:15px !important;width:150px;border-top:0 !important;border-bottom:1px solid !important;line-height:normal !important;height:auto !important;}
#small-nav .cart-contents .cart-content:last-child a{border-bottom:0;}
#small-nav .cart-content a:hover{border-top:0 !important;background:#f6f6f6 !important;height:auto !important;}
#small-nav .cart-content a img{display:inline-block;max-width:36px;margin-right:6px;}
#small-nav .cart-content a .cart-desc{display:inline-block;width:102px;font-size:12px !important;text-align: left;}
#small-nav .cart-contents a span{line-height:normal;}
#small-nav .cart-content a .cart-title,#small-nav .cart-content a .quantity{display:block;font-size:12px !important;}
#small-nav .cart-content a .cart-title{margin-bottom:5px;}
#small-nav .cart-checkout{background:#f6f6f6;overflow:hidden;}
#small-nav .cart-checkout a{display:block;line-height: 15px;padding: 14px 0; padding-top:14px !important;height: auto;font-size:12px; border:none !important;}
#small-nav .cart-checkout .cart-link a:before{font-family:'FontAwesome';content:"\f07a";}
#small-nav .cart-checkout .checkout-link a:before{font-family:'FontAwesome';content:"\f046";}
#small-nav .cart-checkout .cart-link a, #small-nav .cart-checkout .checkout-link a{position:relative;padding-left:1.1em;}
#small-nav .my-cart-link:hover{border-top-color:transparent !important;}
#small-nav .my-cart-link:after{font-family:'FontAwesome';content:"\f07a";padding:5px;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;border:1px solid;}
.sticky-header .cart-contents { top: 65px !important; }
.cart-checkout { font-size: 0; }
.cart-checkout .checkout-link, .cart-checkout .cart-link {width:48% !important; display:inline-block; float: none; vertical-align: top;}
.cart-checkout .cart-link { margin-right: 4%; }
.top-menu .cart-checkout .cart-link { margin-right: 1%; }
.cart-checkout .cart-link a { padding-left: 1.4em !important; width: auto !important; display: block !important; float: none !important; text-align: left !important;}
.cart-checkout .checkout-link a { padding-left: 1.4em !important; width: auto !important; display: block !important; float: right !important; text-align: left !important;}
.single_variation_wrap{margin:10px 0px;}
.single_variation_wrap .variations_button .quantity{float:left;}
.single_variation_wrap .variations_button .button{float:left;margin-left:10px;}
table.variations { width: 100%; }
table.variations td {padding-bottom: 5px;}
.variations .label { padding-right: 10px; }
.variations .value { min-width: 150px; }
.single_variation_price_reset .single_variation_wrap{float:left;margin-top:5px;}
.product .single_variation_price_reset .single_variation_wrap .price {margin-top: 0;}
.single_variation_price_reset .reset_variations {float: right;margin-top: 5px;}
.product_list_widget .wp-post-image{max-width:58px;float:right;margin-left:15px;}
.product_list_widget li,.widget_layered_nav li{padding:15px 0px !important;border-bottom:1px solid;overflow:hidden;}
.product_list_widget li a,.widget_layered_nav li a{border-bottom:0 !important;padding:0 !important;}
.product_list_widget li .amount,.product_list_widget li .quantity{font-size:15px;font-weight:bold;padding-top:3px;}
.product_list_widget li .quantity{border:0;}
.product_list_widget li dl{margin:0;}
.product_list_widget li dt, .product_list_widget li dd{margin:0;display:inline;}
.product_list_widget li dt{font-weight:bold;margin-right:5px;}
.product_list_widget li .star-rating{margin:5px 0px;}
.widget_shopping_cart_content .total .amount{display:inline-block;margin-left:25px;}
.widget_shopping_cart_content .buttons{background:#f6f6f6;overflow:hidden;}
.widget_shopping_cart_content .buttons a{display:inline-block;width:50%;float:left;text-indent:10px;margin:0;height:35px;line-height:35px;}
.widget_shopping_cart_content .buttons > a:before{font-family:'FontAwesome';content:"\f07a";margin-right:10px;}
.widget_shopping_cart_content .buttons a.checkout:before{font-family:'FontAwesome';content:"\f046";margin-right:10px;}
.widget_layered_nav li{overflow:hidden;padding:10px 0px !important;}
.widget_layered_nav li a{float:left;}
.widget_layered_nav li .count{float:right;font-size:12px;}
.price_slider_wrapper{border-bottom:1px solid;padding-bottom:18px;}
.price_slider_amount {
text-align: right;
margin-top:15px;
}
.price_slider_amount .button {
}
.price_slider_amount .button {
float: left;
font-weight: bold;
height:25px;
line-height:25px !important;
font-size: 13px;
padding:0 6px;
}
.price_label{
line-height:25px;
}
.price_label .from{margin-left:3px;}
.price_label .from,.price_label .to{font-size:14px;font-weight:bold;}
.ui-slider {
position: relative;
text-align: left;
}
.ui-slider .ui-slider-handle {
position: absolute;
z-index: 2;
width: 12px;
height: 12px;
top: -.3em;
outline:none;
}
.ui-slider .ui-slider-handle:before{
border: 1px solid #333;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
background-color: #fff;
width: 12px;
height: 12px;
outline:none;
content:'';
display:block;
position:absolute;
top:0;left:0;
}
.ui-slider .ui-slider-handle:after{
border: 1px solid #333;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
background-color: #fff;
width: 2px;
height: 2px;
outline:none;
content:'';
display:block;
position:absolute;
top:5px;left:5px;
z-index:3;
}
.ui-slider .ui-slider-handle:last-child {
margin-left: -1em;
}
.ui-slider .ui-slider-range {
position: absolute;
z-index: 1;
font-size:.7em;
display: block;
border: 0;
-webkit-border-radius: 1em;
-moz-border-radius: 1em;
border-radius: 1em;
}
.price_slider_wrapper .ui-widget-content {
-webkit-border-radius: 1em;
-moz-border-radius: 1em;
border-radius: 1em;
}
.ui-slider-horizontal {
height:.5em;
}
.ui-slider-horizontal .ui-slider-range {
top: 0;
height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
left: -1px;
}
.ui-slider-horizontal .ui-slider-range-max {
right: -1px;
}
.tagcloud a{font-size:13px !important;display:inline-block;padding:0 10px;min-height:28px;line-height:28px;border:1px solid; margin: 2px 0;}
.tagcloud a:hover{color:#fff !important;}
.products-slider{position:relative;}
.products-slider ul{}
.products-slider li{margin-right:0 !important;height:auto !important;}
.products-slider li img{display:block;float:left;}
.products-slider .es-nav span{
cursor:pointer;
-webkit-transform:none;
-moz-transform:none;
-o-transform:none;
transform:none;
filter:none;
-ms-filter:none;
}
.products-slider{margin-bottom:25px;}
.products-slider .image-extras h2{margin-bottom:2px !important;}
.products-slider .price{display:inline-block;margin-top:10px;}
.products-slider .price .amount{font-size:25px;}
.products-slider .product-buttons{position:absolute;left:0;width:80%;bottom:10px;padding:0 10%;}
.products-slider .product-buttons .add_to_cart_button:before{padding-top:0;}
.products-slider .product-buttons .show_details_button:before{padding-top:0;}
.products-slider .product-buttons .button.product_type_variable:before,.product-buttons .button.product_type_grouped:before{padding-top:0;}
.products-slider .product-buttons .button.product_type_simple:before{padding-top:0;}
.simple-products-slider { overflow: hidden; }
#main .simple-products-slider .image .image-extras .image-extras-content h3{margin-top:0px !important;margin-bottom:5px !important;font-size:13px !important;}
.simple-products-slider .cats{font-size:11px;margin-bottom:5px;line-height:normal !important;}
.simple-products-slider .price{display:inline-block;margin-bottom:5px;}
.simple-products-slider .price .amount{font-size:18px;}
.simple-products-slider .product-buttons{padding:0;height:auto;}
.simple-products-slider .product-buttons a{display:inline;height:auto;line-height:normal !important;float:none !important;}
.simple-products-slider .product-buttons a:before{margin-right:0 !important;}
.simple-products-slider .product-buttons .show_details_button{margin-left:5px;}
.product-category h3{padding:0 20px;}
#customer_login h2{margin-bottom:5px;}
#customer_login .sep-double{margin-bottom:40px;}
#customer_login_box{border:1px solid;padding:30px;
-webkit-box-sizing:border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing:border-box; /* Firefox, other Gecko */
box-sizing:border-box; /* Opera/IE 8+ */
}
#customer_login .one_half.last{padding-top:29px;}
#customer_login_box .remember-box{padding-left:20px;padding-right:20px;}
#customer_login .col-1, #customer_login .col-2{width:48%;float:left}
#customer_login .col-1{margin-right:4%;}
.myaccount_user_container{display:table-row;}
.myaccount_user_container span{display:table-cell;padding:25px 0px;border-right:1px solid;}
.myaccount_user_container span.msg{padding-left:20px;padding-right:20px;}
.myaccount_user_container span:last-child{border-right:0;padding-left:20px;}
.myaccount_user_container .username{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;font-size:18px;font-weight:normal;}
.myaccount_user_container .username:before{font-family:'FontAwesome';content:"\f05d";margin-right:5px;}
.myaccount_user_container .view-cart a{text-transform:uppercase;}
.myaccount_user_container .view-cart a:before{font-family:'FontAwesome';content:"\f07a";margin-right:10px;}
.myaccount_user {display:none;}
.avada_myaccount_user{display:table;width:100%;border-top:1px solid;border-bottom:1px solid;margin-bottom:30px !important;}
#main .avada-myaccount-data{overflow:visible;}
.avada-myaccount-data h2, .avada-myaccount-data .digital-downloads, .avada-myaccount-data .my_account_orders, .avada-myaccount-data .myaccount_address, .avada-myaccount-data .addresses,
.avada-myaccount-data .edit-account-heading, .avada-myaccount-data .edit-account-form, .edit-address
{display:none;}
.avada-myaccount-data .digital-downloads,
.avada-thank-you .order_details
{list-style:none;margin:10px 0 0;padding:0;}
.avada-myaccount-data .digital-downloads li,
.avada-thank-you .order_details li
{line-height: 18px;margin: 0 0 15px;padding: 0 0 0 25px;}
.avada-myaccount-data .digital-downloads li:before,
.avada-thank-you .order_details li:before
{border-radius: 75px;font-size: 9px;text-align: center;content:'\f00c';display: inline-block;float: left;font-family: FontAwesome;font-style: normal;font-weight: normal;
height: 18px;margin-left: -25px;margin-right: 0;text-decoration: inherit;width: 18px;}
.avada-myaccount-data .my_account_orders .order-total{border-top: none;}
.avada-myaccount-data .my_account_orders.shop_table tbody tr {height:46px;}
.avada-myaccount-data .addresses .col-1, .avada-myaccount-data .addresses .col-2,
.avada-customer-details .addresses .col-1, .avada-customer-details .addresses .col-2
{width:48%;float:left;}
.avada-myaccount-data .addresses .col-1,
.avada-customer-details .addresses .col-1
{margin-right:4%;}
.avada-myaccount-data .addresses .title,
.avada-customer-details .addresses .title
{margin-top:0;border-bottom: 1px solid;margin-bottom: 15px !important;padding-bottom: 5px!important;display:block;}
.avada-myaccount-data .addresses .title h3,
.avada-customer-details .addresses .title h3
{font-weight:bold;}
.avada-myaccount-data .addresses .title .edit{display: inline-block;margin: 2px 0 0 10px;}
@-moz-document url-prefix() {
.avada-myaccount-data .addresses .title .edit{margin-top:3px;}
}
.avada-myaccount-data .input-text {padding: 8px 15px;}
.avada-myaccount-data #billing_country_chosen,
.avada-myaccount-data #billing_state_chosen,
.avada-myaccount-data #shipping_country_chosen,
.avada-myaccount-data #shipping_state_chosen,
.avada-checkout #billing_country_chosen,
.avada-checkout #billing_state_chosen,
.avada-checkout #shipping_country_chosen,
.avada-checkout #shipping_state_chosen
{width:100%!important;}
.avada-order-details{margin-bottom:20px;}
.avada-order-details .shop_table.order_details .product-total{text-align:right;}
.avada-order-details .shop_table.order_details tfoot tr{border:none;}
.avada-order-details .shop_table.order_details tfoot tr th{border:none;}
.avada-order-details .shop_table.order_details tfoot tr td{padding-top:0;}
.avada-order-details .shop_table.order_details tfoot tr:last-child td{padding-top:10px;}
.avada-order-details .order-again{margin:15px 0 0 0;text-align:right;}
.avada-order-details .shop_table.order_details tfoot tr:last-child .amount{font-size:18px;font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;}
.avada-customer-details .customer_details dt, .avada-customer-details .customer_details dd {display: inline-block;margin: 0;}
.avada-customer-details .customer_details dt{font-weight:bold;}
.avada-thank-you{margin-bottom:20px;}
#main .cart-empty {float: left;font-size: 18px;border-top: 1px solid;border-bottom: 1px solid;width:50%;line-height:55px!important;height:55px!important;}
#main .return-to-shop {float: left;border-top: 1px solid;border-bottom: 1px solid;width:50%;text-align:right;line-height:55px!important;height:55px!important;}
.return-to-shop .wc-backward:before{content:"\f07a";font-family:fontawesome;margin-right:10px;}
.woocommerce-side-nav{float:left;list-style:none;margin:0;padding:0;width:220px;}
.woocommerce-side-nav li a{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;display:block;height:36px;line-height:36px;border-bottom:1px solid;}
.woocommerce-side-nav li.active a:after{font-family:'FontAwesome';content:"\f105";margin-left:5px;}
.woocommerce-content-box{float:left;border:1px solid;padding:30px;margin-left:20px;width:698px;overflow:hidden;
-webkit-box-sizing:border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing:border-box; /* Firefox, other Gecko */
box-sizing:border-box; /* Opera/IE 8+ */
}
.woocommerce-content-box.full-width{margin-left:0;width:100%;float:none;}
.woocommerce-content-box.no-bottom-space{padding-bottom:0;}
.woocommerce-content-box.one_half{margin-left:0;width: 48%;margin-right: 4%; float: left; margin-bottom:20px; position:relative;}
.woocommerce-content-box.avada-checkout {
overflow: visible;
}
.woocommerce-content-box h2{border-bottom:1px solid;padding-bottom:10px;margin-bottom:30px !important;}
.available-downloads{margin-bottom:50px !important;}
.my_account_orders{width:100%;text-align:left;margin:0;}
.my_account_orders tr{border-bottom:1px solid;}
.my_account_orders tbody tr:last-child{border-bottom:0;}
.my_account_orders thead tr th{padding-bottom:12px;font-weight:bold;font-size:13px !important;}
.my_account_orders thead tr th{height:auto;line-height:normal;}
.my_account_orders .order-number a{font-size:18px;font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;}
.my_account_orders .order-actions a{display:block;}
.my_account_orders .order-actions a:after{font-family:'FontAwesome';content:"\f105";margin-left:10px;}
#main .page-info{margin-bottom:10px !important;}
.woocommerce .addresses{margin-top:40px;overflow:hidden;}
.woocommerce .address h4{font-weight:bold;margin-top:0;border-bottom:1px solid;padding-bottom:5px;}
.woocommerce address{font-style:normal;margin-bottom:20px;}
.woocommerce .address .edit{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;}
.woocommerce .address .edit:after{font-family:'FontAwesome';content:"\f105";margin-left:10px;}
.checkout .input-text {padding: 8px 15px;}
.shop_table{width:100%;text-align:left;margin:0;}
.shop_table tr{border-bottom:1px solid;}
.shop_table td{padding: 10px 0;}
.shop_table tbody tr:last-child{border-bottom:0;}
.shop_table thead tr th{padding-bottom:12px;font-weight:bold;font-size:13px !important;}
.shop_table thead tr th{height:auto;line-height:normal;}
.shop_table tbody tr{height:140px;}
.shop_table .product-thumbnail{width:90px;margin-right:25px;float:left;}
.shop_table .product-thumbnail img{max-width:90px;}
.shop_table .product-name{width:50%;}
.shop_table .product-title a{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;}
.product-info {margin-left: 115px;margin-top: 20px;}
.shop_table .product-thumbnail .product-info{margin-top:20px;}
.shop_table .product-thumbnail .product-info .variation dt {float: left; margin-right: 5px; }
.shop_table .product-thumbnail .product-info .variation dd {margin-left: 0; }
.shop_table .product-remove a{font-size:24px;float:right;}
.shop_table .product-price{text-align:center;}
.shop_table .product-quantity{text-align:left;}
.checkout .shop_table .product-quantity{text-align:initial;}
.shop_table .product-quantity .quantity{margin:0 auto;}
.shop_table .product-subtotal{text-align:center;}
.shop_table .product-subtotal .amount{font-size:18px;font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;}
.shop_table .product-remove{width:5%;}
.shop_table .variation dt, .shop_table .variation dd {margin:0; display:inline-block;}
.shop_table .variation p {margin-bottom: 5px;}
.one_half_container{float:left;}
.cart-collaterals{margin-top:20px;overflow:hidden;}
.cart-collaterals .one_half .woocommerce-content-box{margin-bottom:20px;}
.cart-collaterals .form-row input {padding: 9px 15px;}
.shipping-calculator-form-nohide #calc_shipping_state{min-width:100%;}
.shipping-calculator-form-nohide .button{float:right;}
.coupon{overflow:hidden;}
.coupon .input-text{float:left;width:300px;padding: 8px 15px;}
.coupon .button{float:left;margin-top:2px;}
.cart-totals-container .button{display:block;}
.shipping-coupon{float:left;width:48%;margin-right:4%;}
.cart_totals {float: left; width: 48%;}
.shipping_calculator {margin-bottom:20px;}
.shipping-calculator-form{display:block!important;}
.shipping-calculator-form .one_half .avada-select-parent{margin-bottom:0;}
.shipping-calculator-button:hover{color:inherit!important;cursor:auto;}
.cart-collaterals .shipping_calculator #calc_shipping_state{min-width:150px;}
.cart-collaterals .shipping_calculator #calc_shipping_postcode { height: 36px; }
.woocommerce p.one_half {margin-left:0;margin-right:4%;}
.coupon .button{margin-top:0;}
.order-total {border-top: 1px solid;height: 50px;}
.order-total th, .order-total td {padding-top: 20px;}
.checkout .order-total{ border:none; height:auto;}
.checkout .order-total th, .checkout .order-total td {padding-top: 0;}
.cart_totals .order-total .amount{font-size:18px;font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;}
.cart_totals table{width:100%;text-align:left;}
.cart_totals table th{width:50%;padding-bottom:20px;}
.cart_totals table td{width:50%;padding-bottom:20px;text-align:right;}
.cart_totals table .total th,.cart_totals table .total td{padding-top:20px;}
.cart_totals .cart-subtotal td,.cart_totals .total td{text-align:right;}
.cart_totals .cart-subtotal td strong{font-weight:normal;}
.cart_totals .total{border-top:1px solid;height:50px;}
#shipping_method{list-style:none !important;margin:0 !important;padding:0 !important;float:right;text-align:right;}
.cart_totals .button{float:right;display:block;}
.cart_totals .checkout-button{clear:both;margin-top:10px;width:185px !important;}
.woocommerce form.checkout .col-2, .woocommerce form.checkout #order_review_heading, .woocommerce form.checkout #order_review {
display: none;
}
#wrapper .custom_select_box .dd-container .dd-select,#wrapper .custom_select_box .dd-options li a{background:#fbfaf9 !important;background-image:none !important;}
#wrapper .custom_select_box .dd-container .dd-selected{padding:0 !important;text-indent:10px;padding-right:15px !important;}
#wrapper .custom_select_box .dd-options li a:hover{background-color:transparent !important;}
#wrapper .custom_select_box .dd-pointer{background-image:none !important;width:10px !important;border-left:1px solid !important;padding-left:10px;}
#wrapper .custom_select_box .dd-pointer-down:after{font-family:'FontAwesome' !important;content:"\f107";font-weight:bold;}
#wrapper .custom_select_box .dd-options{position:absolute !important;top:auto !important;max-height:143px;}
#wrapper .custom_select_box .dd-pointer-down{border-color:#dadada !important;}
#billing_country_field > label, #shipping_country_field > label {
padding-right: 5px;
}
#billing_country_field > label:after, #shipping_country_field > label:after {
content: ":";
}
.admin-bar p.demo_store {
top: 32px;
}
p.demo_store {
position: fixed;
top: 0;
left: 0;
right: 0;
margin: 0;
width: -moz-calc(100%-20px);
width: -webkit-calc(100%-20px);
width: -ms-calc(100%-20px);
width: -o-calc(100%-20px);
width: calc(100%-20px);
font-size: 16px;
padding: 10px;
text-align: center;
background: #A0CE4E;
color: #ffffff;
z-index: 99998;
}
.woocommerce-invalid:after { content: 'Please enter correct details for this required field.'; display: inline-block; margin-top: 5px; color: red; }
.product .entry-summary .price { float: left; margin-top: 10px; }
.product .entry-summary .woocommerce-product-rating { float: left; margin-left: 20px; margin-top: 11px; }
.product .entry-summary .woocommerce-product-rating .star-rating { display: inline-block; }
.product .entry-summary .woocommerce-product-rating .woocommerce-review-link { position: relative; top: -2px; }
/*.post-content .gform_wrapper .ginput_complex .ginput_left, .post-content .gform_wrapper .ginput_complex .ginput_right, .post-content .gform_wrapper .ginput_complex .ginput_full,.post-content .gform_wrapper .ginput_complex{overflow:visible;}
.chzn-container-single .chzn-single,.chzn-drop{background:#fbfaf9 !important;border-bottom:1px solid !important;
border-radius:0 !important;
box-shadow:none !important;
}
.chzn-container-single .chzn-single div{border-left:1px solid;padding-left:10px;}
#wrapper .chzn-container-single .chzn-single div b{background:none !important;}
#wrapper .chzn-container-single .chzn-single div b:after{font-family:'FontAwesome' !important;content:"\f107";font-weight:bold;}
#wrapper .chzn-container-single .chzn-single-with-drop div b:after{font-family:'FontAwesome' !important;content:"\f106";font-weight:bold;}
*/
#wrapper .chzn-container-single .chzn-single div b{background:none !important;}
#billing_country_field .select-arrow, #shipping_country_field .select-arrow, #billing_state_field .select-arrow, #shipping_state_field .select-arrow{ height: 34px; line-height: 34px; }
.wpcf7-select-parent {
overflow: hidden !important;
position: relative;
width: 100%;
}
.wpcf7-select-parent .select-arrow {
//background: #fbfaf9;
width: 35px;
height: 33px;
border-left: 1px solid #dadada;
position: absolute; top: 1px; right: 1px;
pointer-events: none;
z-index: 10;
font-family: 'FontAwesome';
text-align: center;
line-height: 33px;
}
.wpcf7-select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
text-indent: 0.01px;
text-overflow: '';
-o-appearance: none;
-ms-appearance: none;
background: #fbfaf9;
border: 1px solid #dadada;
/*box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;*/
color: #333333;
cursor: pointer;
display: block;
font-size: 13px;
outline: none;
height: auto;
/*overflow: ellipsis;*/
width: 100%;
padding: 8px 15px;
position: relative;
text-indent: 0.01px;
/*text-overflow: '';
-webkit-text-overflow: none;
-moz-text-overflow: none;
-o-text-overflow: none;*/
vertical-align: middle;
z-index: 5;
margin: 0;
border-radius: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
}
.gravity-select-parent {
position: relative;
overflow: hidden;
}
.gravity-select-parent .select-arrow {
//background: #fff;
width: 35px;
height: 34px;
border-left: 1px solid #dadada;
position: absolute; top: 1px; right: 3px;
pointer-events: none;
z-index: 10;
font-family: 'FontAwesome';
text-align: center;
line-height: 31px;
}
.gravity-select-parent select {
appearance: none;
-webkit-appearance: none;
text-indent: 0.01px;
text-overflow: '';
-o-appearance: none;
-ms-appearance: none;
background: #fbfaf9;
border: 1px solid #dadada;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
color: #333333;
cursor: pointer;
display: block;
font-size: 13px;
outline: none;
height: auto;
/*overflow: ellipsis;*/
padding: 8px 15px !important;
position: relative;
text-indent: 0.01px;
/*text-overflow: '';
-webkit-text-overflow: none;
-moz-text-overflow: none;
-o-text-overflow: none;*/
vertical-align: middle;
z-index: 5;
margin: 0;
border-radius: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
min-width: 90px;
}
.select-arrow {
//background: #fff;
width: 35px;
height: 34px;
border-left: 1px solid #dadada;
position: absolute; top: 1px; right: 1px;
pointer-events: none;
z-index: 10;
font-family: 'FontAwesome';
text-align: center;
line-height: 31px;
}
@-moz-document url-prefix() {
.wpcf7-select-parent .wpcf7-select {
width: 99.9%;
}
.wpcf7-select-parent .select-arrow {
height: 35px;
line-height: 35px;
}
.gravity-select-parent select {
margin-left: 0 !important;
}
}
.ginput_complex .select-arrow {
right: 4%;
}
.avada-select-parent {
position: relative;
overflow: hidden !important;
}
#billing_country_field .avada-select-parent,
#shipping_country_field .avada-select-parent,
#billing_state_field .avada-select-parent,
#shipping_state_field .avada-select-parent,
.shipping-calculator-form .avada-select-parent {
overflow: visible !important;
}
.bbpress .avada-select-parent {
overflow: hidden;
}
.avada-select-parent select {
appearance: none;
-webkit-appearance: none;
text-indent: 0.01px;
text-overflow: '';
-o-appearance: none;
-ms-appearance: none;
background: #fbfaf9;
border: 1px solid #dadada;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
color: #333333;
cursor: pointer;
display: block;
font-size: 13px;
outline: none;
height: auto;
padding: 8px 15px !important;
position: relative;
text-indent: 0.01px;
/*text-overflow: '';
-webkit-text-overflow: none;
-moz-text-overflow: none;
-o-text-overflow: none;*/
vertical-align: middle;
z-index: 5;
margin: 0;
border-radius: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
min-width: 200px;
}
.shipping-calculator-form .avada-select-parent select {
padding-top: 10px !important;
}
.avada-select-parent .avada-select-arrow {
//background: #fff;
width: 35px;
height: 34px;
border-left: 1px solid #dadada;
position: absolute; top: 1px; right: 3px;
pointer-events: none;
z-index: 10;
font-family: 'FontAwesome';
text-align: center;
line-height: 31px;
}
.woocommerce .avada-select-parent select, #bbpress-forums .avada-select-parent select {
width: 99.99%;
}
#bbpress-forums fieldset select#bbp_forum_id { max-width: none; }
.woocommerce .lost_password {
margin-top: 7px;
}
form.checkout #shipping,form.checkout #payment-container{display:none;}
form.checkout #billing_first_name_field, form.checkout #shipping_first_name_field{float:left;width:48%;}
form.checkout #billing_last_name_field, form.checkout #shipping_last_name_field{float:right;width:48%;}
form.checkout .continue-checkout{float:right;}
form.checkout label{margin-bottom:2px;display:inline-block;}
form.checkout .shop_table tbody .product-thumbnail{width:90px;}
form.checkout .shop_table th.product-total{width:40%;text-align:right;}
form.checkout .shop_table tbody .product-total{width:40%;text-align:right;}
form.checkout .shop_table .product-thumbnail .product-info{float:none;}
form.checkout .shop_table .product-thumbnail .product-info p{margin-left:115px;}
form.checkout .shop_table tfoot{border-top:1px solid;border-bottom:1px solid;}
form.checkout .shop_table tfoot tr{border-bottom:0;}
form.checkout .shop_table tfoot th{text-align:right;padding-right:100px;padding-bottom:20px;}
form.checkout .shop_table tfoot td{width:100%;text-align:right;padding-bottom:20px;}
form.checkout .shop_table tfoot tr:first-child th,form.checkout .shop_table tfoot tr:first-child td{padding-top:20px;}
form.checkout .shop_table tfoot .order-total .amount{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;font-size:18px;font-weight:normal;}
form.checkout .payment_methods{list-style:none;margin:0;padding:0;margin-top:40px;}
form.checkout .payment_methods li{margin-bottom:30px;}
form.checkout .payment_methods label{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;}
form.checkout .payment_methods .payment_box{padding:20px;margin-top:10px;}
form.checkout #place_order {float: right;}
#thank-you-box{margin-bottom:20px;}
#final-order-details .woocommerce-content-box{margin-bottom:20px;}
#final-order-details .shop_table{margin-bottom:30px;}
#final-order-details .shop_table .product-thumbnail .product-info{float:none;}
#final-order-details .shop_table .product-subtotal{text-align:right;}
#final-order-details .shop_table .product-total{text-align:right;}
#final-order-details .shop_table tr:last-child{border-bottom:1px solid;}
#final-order-details .mini-order-details{float:right;width:50%;}
#final-order-details .mini-order-details tr{border-bottom:0;}
#final-order-details .mini-order-details th{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;padding-bottom:10px;text-align:left;}
#final-order-details .mini-order-details td{text-align:right;padding-bottom:10px;}
#final-order-details .mini-order-details tr:last-child .amount{font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;font-size:18px;font-weight:normal;}
#final-order-details .mini-order-details tr:last-child{border-top:1px solid;}
#final-order-details .mini-order-details tr:last-child th,#final-order-details .mini-order-details tr:last-child td{padding-top:10px;padding-bottom:0;}
#final-order-details .customer_details{list-style:none;margin:0;padding:0;}
p.order-info {border-bottom: 1px solid;border-top: 1px solid;line-height: normal;margin-bottom: 50px;padding: 20px 0;}
p.order-info mark{background-color:transparent;font-weight:bold;}
.product-images{position:relative;}
.cart-loading{display:block;height:70px;width:70px;line-height:70px;font-size:25px;color:#fff;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
position:absolute;
top:50%;
left:50%;
margin-top:-35px;
margin-left:-35px;
z-index:100;
display:none;
}
#wrapper .cart-loading{background-color:rgba(0,0,0,0.8) !important;}
.no-rgba #wrapper .cart-loading{background-color:#000;}
.cart-loading .icon-spinner{
-webkit-animation: mask 3s infinite alternate;
-moz-animation: mask 3s infinite alternate;
-ms-animation: mask 3s infinite alternate;
-o-animation: mask 3s infinite alternate;
animation: mask 3s infinite alternate;
display:inline-block;
}
@-webkit-keyframes mask {
25% { -webkit-transform: rotate(270deg); }
50% { -webkit-transform: rotate( 90deg); }
75% { -webkit-transform: rotate(360deg); }
100% { -webkit-transform: rotate(180deg); }
}
@-moz-keyframes mask {
25% { -moz-transform: rotate(270deg); }
50% { -moz-transform: rotate( 90deg); }
75% { -moz-transform: rotate(360deg); }
100% { -moz-transform: rotate(180deg); }
}
@-ms-keyframes mask {
25% { -ms-transform: rotate(270deg); }
50% { -ms-transform: rotate( 90deg); }
75% { -ms-transform: rotate(360deg); }
100% { -ms-transform: rotate(180deg); }
}
@-o-keyframes mask {
25% { -o-transform: rotate(270deg); }
50% { -o-transform: rotate( 90deg); }
75% { -o-transform: rotate(360deg); }
100% { -o-transform: rotate(180deg); }
}
@keyframes mask {
25% { transform: rotate(270deg); }
50% { transform: rotate( 90deg); }
75% { transform: rotate(360deg); }
100% { transform: rotate(180deg); }
}
.woocommerce .thumbnails .clients-carousel .es-carousel{padding:0;}
.added_to_cart{display:none !important;}
#sidebar .products a, .footer-area .products a,#slidingbar-area .products a{
padding:0 !important;
border:0 !important;
background:none !important;
}
#sidebar .products .product-title, .footer-area .products .product-title, #slidingbar-area .products .product-title{
margin:0 !important;margin-bottom:10px !important;
}
.footer-area .product_list_widget li,#slidingbar-area .product_list_widget li{border:0 !important;border-bottom: 1px solid #282a2b !important;}
.footer-area .product_list_widget li a,#slidingbar-area .product_list_widget li a{border:none !important;}
.footer-area .widget_shopping_cart_content .total,#slidingbar-area .widget_shopping_cart_content .total{margin:10px 0px;}
.footer-area .widget_shopping_cart_content .buttons,#slidingbar-area .widget_shopping_cart_content .buttons{background:#282a2b !important;}
.footer-area .products-slider a,.footer-area .simple-products-slider a,#slidingbar-area .products-slider a,#slidingbar-area .simple-products-slider a,#sidebar .products-slider a,#sidebar .simple-products-slider a{border:0 !important;background:none !important;margin:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;display:inline-block !important;width:auto;}
.footer-area .products-slider li .image,#slidingbar-area .products-slider li .image{width:auto;height:auto;}
.footer-area .simple-products-slider .es-carousel,#slidingbar-area .simple-products-slider .es-carousel{padding-left:38px;}
.footer-area .simple-products-slider .es-carousel li,.footer-area .simple-products-slider .es-carousel li .image,#slidingbar-area .simple-products-slider .es-carousel li,#slidingbar-area .simple-products-slider .es-carousel li .image{width:149px;height:auto;}
.footer-area .image-extras-content h3,#slidingbar-area .image-extras-content h3,#sidebar .image-extras-content h3{margin-bottom:0;text-transform:none;margin-bottom:5px;}
.footer-area .product-category mark,#slidingbar-area .product-category mark,#sidebar .product-category mark{background-color:transparent;color:inherit;}
.footer-area .product-category h3,#slidingbar-area .product-category h3,#sidebar .product-category h3{margin-bottom:0;}
.products-slider .product-buttons .product_type_variable, .products-slider .product-buttons .show_details_button, .products-slider .product-buttons .add_to_cart_button { padding-left: 15px !important; max-width: 41% !important; }
.section-separator {
position: relative;
}
.divider-candy {
position: absolute;
left: 50%;
margin-left: -20px;
height: 40px;
width: 40px;
z-index: 100;
border-bottom: 1px solid #E6E5E6;
border-left: 1px solid #E6E5E6;
background:#ffffff;
content: "";
}
.divider-candy.bottom {
bottom: -21px;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.divider-candy.top {
top: -21px;
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-o-transform: rotate(135deg);
-ms-transform: rotate(135deg);
transform: rotate(135deg);
}
.section-separator .icon {
position: absolute;
left: 50%;
top: -10px;
margin-left: -20px;
width: 40px;
font-size: 20px;
z-index: 200;
font-family: fontawesome;
}
.section-separator .icon:after {
display: block;
text-align: center;
}
/* RTL */
.rtl{direction:rtl;unicode-bidi:embed;}
.rtl .alignleft{float:right;margin-right:0;margin-left:15px;}
.rtl .alignright{float:left;margin-left:0;margin-right:15px;}
.rtl .more a:after,.rtl .read-more:after{content:'';padding-left:0;}
.rtl .more a:before,.rtl .read-more:before{
font-family: FontAwesome;
content:'\f053';
color:#000;
font-size:8px;
padding-right:5px;
}
.rtl .sb_toggle { left: 0; -ms-transform: rotate(-90deg); -webkit-transform: rotate(-90deg); transform: rotate(-90deg); right: auto; }
.rtl .sb_toggle.open:after { left: 32px; top: -8px; -ms-transform: rotate(-90deg); -webkit-transform: rotate(-90deg); transform: rotate(-90deg); }
.rtl .header-social .alignright{float:right;}
.rtl .header-social .alignleft{float:left;}
.rtl .header-social .menu > li{float:right;}
.rtl .header-social .menu > li:hover .sub-menu{left:auto;right:0;}
.rtl .header-social .cart-contents{left:auto;right:-1px;}
.rtl .header-social .cart-content a img{margin-right:0;margin-left:15px; float:right;}
.rtl .header-social .cart-content .cart-desc {float: right;}
.rtl .header-social .alignright .menu > li:first-child{border-left:1px solid;}
.rtl .header-social .alignright .menu li:last-child{padding-right:8px;}
.rtl .header-social .alignright .social-networks li{float:right;margin-right:0;margin-left:20px;}
.rtl #small-nav .cart-contents {left: 35px; right: auto;}
.rtl #small-nav .cart-content a img, .rtl #header .cart-content a img {margin-left: 6px; margin-right: 0;}
.rtl #small-nav .cart-content a .cart-desc {text-align: right;}
.rtl .cart-checkout .cart-link {margin-left: 4%;margin-right: 0;}
.rtl .top-menu .cart-checkout .cart-link {margin-left: 1%;margin-right: 0;}
.rtl .cart-checkout .checkout-link a {float: left !important;}
.rtl #header-sticky .logo, .rtl #header .logo{float:right;}
.rtl .main-nav-search-form {left:0;right: auto;}
.rtl #header nav#nav, .rtl .sticky-header nav#sticky-nav {float:left;}
.rtl #header-sticky ul.navigation > li,.rtl #header ul.navigation > li{float:right;padding-right:0;padding-left:35px;}
.rtl #header-sticky ul.navigation > li:last-child,.rtl #header ul.navigation > li:last-child{padding-left:0;}
.rtl #header-sticky .cart-contents,.rtl #header .cart-contents{right:auto; left: 0;}
.rtl #header #nav ul ul, .rtl .sticky-header #sticky-nav ul ul{left:auto; text-align:right;}
.rtl #header #nav ul ul li:hover ul,.rtl #small-nav #nav ul ul li:hover ul, .rtl .sticky-header #sticky-nav ul ul li:hover ul{right:170px;}
.rtl .header-v4 #nav{float:right;}
.rtl .header-v4 #small-nav ul.navigation > li,.rtl .header-v5 #small-nav ul.navigation > li{padding-right:0;padding-left:35px;float:right;}
.rtl .header-v4 #header .tagline{float:left; text-align:left !important;}
.rtl .header-v4 #header .search{float:left; margin-left:0 !important; margin-right:15px !important;}
.rtl .header-v5 #nav{float:none;text-align:center;}
.rtl .header-v5 #nav > ul{float:none;display: inline-block;margin-bottom: -3px;}
.rtl #header-sticky.sticky-header .logo { float: right !important; }
.rtl #nav ul ul, .rtl #sticky-nav ul ul {right: 0; left: auto;}
.rtl .header-social .menu > li:hover > .sub-menu > li:hover .sub-menu{left:auto;right:100px;}
.rtl #wrapper .dd-container .dd-pointer{left:0;right:auto;border-left:0;border-right:1px solid;}
.rtl #wrapper .dd-container .dd-selected{text-align:right;}
.rtl .menu-item-language img.iclflag{margin-right:0;margin-left:5px;}
.rtl #sidebar .widget_nav_menu li a,.rtl #sidebar .widget_categories li a,
.rtl #sidebar .widget .recentcomments,.rtl #sidebar .widget_recent_entries li a,
.rtl #sidebar .widget_archive li a,.rtl #sidebar .widget_pages li a,
.rtl #sidebar .widget_links li a,.rtl .side-nav .arrow{
padding-right:0;
}
.rtl #sidebar .widget_nav_menu li a:before,.rtl #sidebar .widget_categories li a:before,
.rtl #sidebar .widget .recentcomments:before,.rtl #sidebar .widget_recent_entries li a:before,
.rtl #sidebar .widget_archive li a:before,.rtl #sidebar .widget_pages li a:before,
.rtl #sidebar .widget_links li a:before,.rtl .side-nav .arrow:after,
.rtl .woocommerce-tabs .tabs a:hover .arrow:after,.rtl .woocommerce-tabs .tabs li.active a .arrow:after,
.rtl .widget_layered_nav li a:before,.rtl .widget_product_categories li a:before{
font-family: FontAwesome !important;
content:'\f053';
color:#333333;
font-size:8px;
padding-right:0;
padding-left:10px;
float:right;
}
.rtl .meta-info .alignleft{float:right;margin-right:0;margin-left:15px;text-align:right;}
.rtl .meta-info .alignright{float:left;margin-left:0;margin-right:15px;}
.rtl .page-title-captions { float: right; }
.rtl .page-title ul{float:left;text-align:left;}
.rtl .page-title ul li a { padding-left: 5px; padding-right: 0; unicode-bidi: embed;}
.rtl .fontawesome-icon{margin-right:0px;margin-left:10px;float:right;}
.rtl .content-boxes .heading .fontawesome-icon{float:right;}
.rtl ul.list-icon li{padding: 0 25px 0 0;text-align: right;}
.rtl ul.list-icon li:before{float: right;margin-right: -25px;}
.rtl .avada-container.layout-thumbnails-on-side .flexslider{float:right;margin-right:0;margin-left:20px;}
.rtl .meta li{float:right;border-left:0;border-right:1px solid;}
.rtl .meta li:first-child{padding-right:0;padding-left:9px;border-right:0;}
.rtl .continue{float:left;}
.rtl #jtwt .jtwt_tweet{background-position:top right !important;padding-left:0 !important;padding-right:45px !important;}
.rtl .social-networks{float:left;}
.rtl .social-networks li{float:left;margin-left:0;margin-right:20px;}
.rtl .review blockquote div{float:right;}
.rtl .review blockquote div .company-name{background-position:top right;padding-left:0;padding-right:53px;}
.rtl .review blockquote div:after{left:auto;right:23px;}
.rtl #main .title h1,.rtl #main .title h2,.rtl #main .title h3,.rtl #main .title h4,.rtl #main .title h5,.rtl #main .title h6{padding-right:0 !important;padding-left:8px !important;}
.rtl .content-boxes .heading-and-icon h2{padding-left:0;padding-right:0px;}
.rtl .post-content ul.arrow li{padding-left:0;padding-right:25px;}
.rtl .post-content ul.arrow li:before{float:right;margin-left:0;margin-right:-25px;
-webkit-transform:rotate(180deg);
-moz-transform:rotate(180deg);
-o-transform:rotate(180deg);
}
.rtl .tab-holder .tabs li{float:right;}
.rtl h5.toggle span.arrow{float:right;margin-right:0;margin-left:18px;}
.rtl .progress-bar-content{float:left;}
.rtl #sidebar .social-networks li,.rtl .social_links_shortcode li{float:right !important;}
.rtl .person-author-wrapper{float:right;}
.rtl .person-author .social-icon{float:left;margin-left:0;margin-right:19px;}
.rtl .full-boxed-pricing .column{float:right;}
.rtl .full-boxed-pricing .column:first-child{float:right;border-right:1px solid;}
.rtl .sep-boxed-pricing .column{float:right;}
.rtl .side-nav{border-right:0;border-left:1px solid;}
.rtl .side-nav li a{padding-right:10px !important;}
.rtl .side-nav ul.children{margin-left:0;margin-right:15px;}
.rtl .side-nav li.current_page_item > a{border-right:0;border-left:3px solid;}
.rtl .woocommerce-tabs .tabs li .arrow{display:none;}
.rtl .side-nav .arrow,.rtl .woocommerce-tabs .tabs li a:hover .arrow,.rtl .woocommerce-tabs .tabs li.active a .arrow{height:15px;margin-left:0;margin-right:5px;display:inline-block;}
.rtl #comment-input input{float:right;}
.rtl #comment-input input:first-child{margin-right:0;}
.rtl #comment-input input:last-child{margin-right:1%;}
.rtl .portfolio-tabs li,.rtl .faq-tabs li{float:right;margin-right:0px;margin-left:30px;}
.rtl .portfolio-item .buttons{overflow:hidden;}
.rtl .portfolio-item .buttons a{float:right;margin-right:0;margin-left:30px;}
.rtl .portfolio-one .portfolio-item .image{float:right;margin-right:0;margin-left:25px;}
.rtl .project-content .project-description{float:right;}
.rtl .project-content .project-info{float:left;}
.rtl .project-content .project-info h4{float:right;}
.rtl .project-content .project-info .project-terms{float:right;}
.rtl .portfolio-half .flexslider{float:right;}
.rtl .portfolio-half .project-content{float:left;}
.rtl .share-box h4{float:right;}
.rtl .share-box li{margin-right:0;margin-left:29px;}
.rtl .commentlist div.avatar{float:right;margin-right:0;margin-left:15px;}
.rtl .about-author div.avatar{float:right;margin-right:0;margin-left:20px;}
.rtl .medium-alternate .date-and-formats{float:right;margin-right:0;margin-left:17px;}
.rtl .medium-alternate .flexslider{float:right;margin-right:0 !important;margin-left:17px !important;}
.rtl .medium-alternate .post-content{float:right;}
.rtl .date-and-formats{float:right;}
.rtl .large-alternate .post-content{float:left;}
.rtl .blog-medium-image{float:right;margin-right:0 !important;margin-left:25px !important;}
.rtl .alert{background-position:97% 8px;}
.rtl .alert .toggle-alert{right:auto;left:25px;}
.rtl .avada-container.layout-date-on-side .date-and-formats{float:right;margin-right:0;margin-left:20px;}
.rtl.single-product .woocommerce-message .wc-forward {float: left;}
.rtl.single-product .woocommerce-message .wc-forward:before{content:"";}
.rtl.single-product .woocommerce-message .wc-forward:after{font-family:'FontAwesome';content:"\f07a";margin-left:6px;}
.rtl.single-product .woocommerce-message{text-align:right;}
.rtl.single-product .woocommerce-message:before {color: transparent!important;}
.rtl.single-product .woocommerce-message:after {content: "\f05d";font-family: 'FontAwesome';margin-left: 5px;}
.rtl .product .entry-summary .price {float: right;}
.rtl .product .entry-summary .woocommerce-product-rating {float: right;margin-right: 20px;margin-left:0;}
.rtl .single_variation_price_reset .single_variation_wrap {float: right;}
.rtl .single_variation_price_reset .reset_variations {float: left;}
.rtl .shop_table .product-thumbnail {float: right;margin-left: 25px;margin-right:0;}
.rtl .woocommerce .shipping-calculator-form .button {float: left;}
.rtl .cart_totals table td {text-align: left;}
.rtl .cart_totals .cart-subtotal td, .cart_totals .total td {text-align: left;}
.rtl .cart_totals .button {float: left;}
.rtl .woocommerce .checkout_coupon .coupon-button {margin: 0;}
.rtl form.checkout .continue-checkout {float: left;}
.rtl form.checkout .shop_table tfoot th {text-align: left;}
.rtl form.checkout .shop_table tfoot td {text-align: left;}
.rtl form.checkout #place_order {float: left;}
.rtl .avada-myaccount-data .digital-downloads li:before, .rtl .avada-thank-you .order_details li:before{float:right;margin-left:0;margin-right:-25px;}
.rtl .avada-myaccount-data .digital-downloads li, .rtl .avada-thank-you .order_details li{padding:0 25px 0 0;}
.rtl #main .avada-myaccount-data .addresses .title h3, .rtl #main .avada-customer-details .addresses .title h3{float:right;}
.rtl .avada-myaccount-data .addresses .title .edit{margin-right:10px;}
.rtl .woocommerce #customer_login .login .form-row{float:right;margin-right:0;margin-left:18px;}
.rtl .woocommerce #customer_login .login .inline{margin-right:15px;margin-left:0;}
.rtl .woocommerce #customer_login .login .lost_password{float:right;}
.rtl .myaccount_user_container .username:before{content:'';margin-right:0;}
.rtl .myaccount_user_container .username:after{font-family:'FontAwesome';content:"\f05d";margin-left:5px;}
.rtl .myaccount_user_container span{border-right:0;border-left:1px solid;}
.rtl .myaccount_user_container span:last-child{border-left:0;padding-right:20px;}
.rtl .myaccount_user_container .view-cart a:before{content:"";margin-right:0;}
.rtl .myaccount_user_container .view-cart a:after{font-family:'FontAwesome';content:"\f07a";margin-left:10px;}
@-moz-document url-prefix() {
.rtl .myaccount_user_container .view-cart a:before{content:" ";margin-right:0;}
}
.rtl .avada-order-details .shop_table.order_details .product-total {text-align: left;}
.rtl .avada-myaccount-data .addresses .col-1, .rtl .avada-customer-details .addresses .col-1{margin-left:4%;}
.rtl .avada-myaccount-data .addresses .col-1, .rtl .avada-myaccount-data .addresses .col-2, .rtl .avada-customer-details .addresses .col-1, .rtl .avada-customer-details .addresses .col-2{float:right;margin-right:0;}
.rtl .my_account_orders{text-align:right;}
.rtl .my_account_orders .order-status{text-align:right;}
.rtl .my_account_orders .order-actions a:after{content:'';margin-left:0;}
.rtl .my_account_orders .order-actions a:before{font-family:'FontAwesome';content:"\f104";margin-right:10px;}
.rtl .woocommerce-side-nav{float:right;}
.rtl .woocommerce-side-nav li.active a:after{content:"";margin-left:0px;}
.rtl .woocommerce-side-nav li.active a:before{font-family:'FontAwesome';content:"\f104";margin-right:5px;}
.rtl .woocommerce .address .edit:after{content:"";margin-left:0px;}
.rtl .woocommerce .address .edit:before{font-family:'FontAwesome';content:"\f104";margin-right:10px;}
.rtl .shop_table{text-align:right;}
.rtl .shop_table .product-thumbnail img{float:right;margin-right:0;margin-left:25px;}
.rtl #final-order-details .mini-order-details{text-align:right !important;}
.rtl #final-order-details .mini-order-details th{text-align:right !important;}
.rtl .widget_shopping_cart_content .buttons > a:before{content:"";margin-right:0px;}
.rtl .widget_shopping_cart_content .buttons a.checkout:before{content:"";margin-right:0px;}
.rtl .widget_shopping_cart_content .buttons > a:after{font-family:'FontAwesome';content:"\f07a";margin-left:10px;}
.rtl .widget_shopping_cart_content .buttons a.checkout:after{font-family:'FontAwesome';content:"\f046";margin-left:10px;}
.rtl .widget_layered_nav li a{float:right;}
.rtl .widget_layered_nav li .count{float:left;}
.rtl .product-details .star-rating{float:left;}
.rtl .product-buttons .add_to_cart_button:before{font-family:"fontawesome";content:"";margin-right:0px;}
.rtl .product-buttons .show_details_button:before{font-family:"fontawesome";content:"";margin-right:0px;}
.rtl .product-buttons .button.product_type_variable:before,.rtl .product-buttons .button.product_type_grouped:before{font-family:"fontawesome";content:"";margin-right:0px;}
.rtl .product-buttons .button.product_type_simple:before{font-family:"fontawesome";content:"";margin-right:0px;}
.rtl .product-buttons .add_to_cart_button:after{font-family:"fontawesome";content:"\f07a";margin-left:6px;}
.rtl .product-buttons .show_details_button:after{font-family:"fontawesome";content:"\f03a";margin-left:6px;}
.rtl .product-buttons .button.product_type_variable:after,.rtl .product-buttons .button.product_type_grouped:after{font-family:"fontawesome";content:"\f013";margin-left:3px;}
.rtl .product-buttons .button.product_type_simple:after{font-family:"fontawesome";content:"\f07a";margin-left:6px;}
.rtl .product .images{float:right;margin-right:0;margin-left:30px;}
.rtl .product .images .flex-viewport{direction:ltr;}
.rtl .simple-cart .quantity{float:right;margin-right:0;margin-left:10px;}
.rtl .woocommerce-tabs > .tabs{float:right;}
.rtl .woocommerce-tabs .panel{float:left;margin-left:0;margin-right:20px;}
.rtl .shop_attributes{text-align:right;}
.rtl .woocommerce .social-share li{border-right:0;border-left:1px solid;}
.rtl .woocommerce .social-share li:last-child{border-left:0;}
.rtl .products li{float:right;margin-right:0;}
.rtl .products-4 li{margin-left:1.0%;}
.rtl .products-3 li{margin-left:1.2%;}
.rtl .products-2 li{margin-left:0.9%;}
.rtl .products-1 li{margin-left:0;}
.rtl .products-4 li:nth-child(4n){margin-left:0;}
.rtl .products-3 li:nth-child(3n){margin-left:0;}
.rtl .products-2 li:nth-child(2n){margin-left:0;}
.rtl .products-1 li:nth-child(1n){margin-left:0;}
.rtl p.stars a{float:right;}
.rtl p.stars a:after{right:auto;left:1em;}
.rtl #reviews li .avatar{float:right;}
.rtl #reviews li .comment-text{float:left;margin-left:0 !important;margin-right:6px !important;}
.rtl #reviews li .comment-text .meta,.rtl #reviews li .comment-text .meta strong{float:right;}
.rtl #reviews .overall-rating{float:left;}
.rtl .catalog-ordering > ul,.rtl .orderby-order-container > ul,.rtl .orderby-order-container{float:right;margin-right:0;}
.rtl .catalog-ordering > ul,.rtl .orderby-order-container > ul{margin-left:10px;}
.rtl .shop_table .product-thumbnail .product-info{float:right;}
.rtl .cart_totals table{text-align:right;}
.rtl form.checkout .shop_table tbody .product-total,.rtl form.checkout .shop_table th.product-total{text-align:left;}
.rtl form.checkout .shop_table tfoot th{padding-right:0;}
/*.rtl .chzn-container{direction:ltr;}*/
.rtl .order-dropdown > li:after{right:auto;left:0;border-left:0;border-right:1px solid #dbdbdb;}
.rtl .copyright{float:right;}
.rtl.woocommerce .social-share li {
border: none;
border-right: 1px solid #E7E6E6;
text-align: right;
}
.rtl.woocommerce .social-share li:first-child {
border-right: 0 none;
}
.rtl .product .onsale {
left: auto;
right: 15px;
}
.rtl .single_variation_wrap .variations_button .quantity {
float: right;
}
.rtl .single_variation_wrap .variations_button .button {
float: right;
margin-left: 0;
margin-right: 10px;
}
.rtl .variations .label {
padding-left: 15px;
padding-right: 0;
}
.rtl .avada-select-parent .avada-select-arrow {
border-right: 1px solid #DADADA;
border-left: none;
left: 0;
right: auto;
}
.rtl .select-arrow {
right: auto;
left: 1px;
border-right: 1px solid #DADADA;
border-left: none;
}
.rtl.woocommerce .images #carousel .slides {
float: right;
}
.rtl.woocommerce .images #carousel .slides li {
float: right !important;
margin-right: 0;
margin-left: 9px;
}
.rtl #billing_country_field > label, .rtl #shipping_country_field > label {
padding-right: 0;
padding-left: 5px;
}
.rtl .cart-collaterals .one_half {
float:right;
margin-left: 4%;
margin-right: 0;
}
.rtl .cart-collaterals .one_half.last {
clear: left !important;
margin-left: 0;
}
.rtl .cart-collaterals .shipping_calculator, .rtl .cart-collaterals .coupon {
float: left;
}
.rtl .shipping-calculator-form-nohide .button {
float: left;
}
.rtl .cart-totals-container .button {
float: left;
}
.rtl .input-text {
margin-right: 0;
margin-left: 1%;
}
.rtl .coupon .input-text {
float:right;
}
.rtl .coupon .button {
float:right;
}
.rtl .quantity .minus, .rtl .quantity .plus, .rtl .quantity .qty {
margin: 0;
}
.rtl .woocommerce-content-box {
margin-left: 0;
margin-right: 20px;
}
.rtl .woocommerce-content-box.full-width {
margin-right: 0;
}
.rtl .product_type_variable, .rtl .show_details_button, .rtl .add_to_cart_button {
padding-left: 0 !important;
}
.rtl .product_type_variable, .rtl .show_details_button {
max-width: 47%;
width: 47%;
}
.rtl .product .images .flexslider .slides img {
float: right;
}
.rtl .mobile-nav-holder .mobile-selector span, .rtl .mobile-topnav-holder .mobile-selector span {
padding-left: 0;
padding-right: 10px;
}
.rtl .mobile-topnav-holder {
text-align: right;
}
.rtl .mobile-nav-holder .mobile-selector .selector-down:before, .rtl .mobile-topnav-holder .mobile-selector .selector-down:before {
margin-left: 0;
margin-right: 12px;
}
.rtl .mobile-nav-holder .mobile-selector .selector-down, .rtl .mobile-topnav-holder .mobile-selector .selector-down {
border-left: medium none;
border-right: 1px solid #DADADA;
left: 5px;
right: auto;
}
.rtl .avada-thank-you .order_details li:before {
float: right;
margin-left: 5px;
}
.rtl .isotope .isotope-item {
-webkit-transition-property: right, top, -webkit-transform, opacity;
-moz-transition-property: right, top, -moz-transform, opacity;
-ms-transition-property: right, top, -ms-transform, opacity;
-o-transition-property: right, top, -o-transform, opacity;
transition-property: right, top, transform, opacity;
}
.rtl .timeline-layout .post.align-left {
clear: right;
float: right;
}
.rtl .timeline-layout .post.align-right {
clear: left;
float: left;
}
.rtl .align-right .timeline-arrow {
position: absolute;
background: #ffffff;
}
.rtl .align-right .timeline-arrow:after, .rtl .align-right .timeline-arrow:before {
left: 100%;
right: auto;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.rtl .align-right .timeline-arrow:before, .rtl .align-right .timeline-arrow:after {
border-left-color: #EBEAEA !important;
border-right-color: transparent !important;
}
.rtl .align-right .timeline-arrow:after {
border-color: rgba(0, 0, 0, 0);
border-left-color: #ffffff;
border-right-color: transparent;
border-width: 8px;
top: 50%;
margin-top: -8px;
}
.rtl .align-right .timeline-arrow:before {
border-color: rgba(239, 239, 239, 0);
border-left-color: #e5e4e4;
border-right-color: transparent;
border-width: 9px;
top: 50%;
margin-top: -9px;
}
.rtl .align-left .timeline-arrow {
position: absolute;
background: #ffffff;
}
.rtl .align-left .timeline-arrow:after, .rtl .align-left .timeline-arrow:before {
right: 100%;
left: auto;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.rtl .align-left .timeline-arrow:before, .rtl .align-left .timeline-arrow:after {
border-right-color: #EBEAEA !important;
border-left-color: transparent !important;
}
.rtl .align-left .timeline-arrow:after {
border-color: rgba(0, 0, 0, 0);
border-right-color: #ffffff;
border-left-color: transparent;
border-width: 8px;
top: 50%;
margin-top: -8px;
}
.rtl .align-left .timeline-arrow:before {
border-color: rgba(239, 239, 239, 0);
border-right-color: #e5e4e4;
border-left-color: transparent;
border-width: 9px;
top: 50%;
margin-top: -9px;
}
.rtl .align-right .timeline-arrow{left:301px; right:auto;}
.rtl .align-left .timeline-arrow{right:301px;left:auto;}
.rtl .dropcap { float: right; margin-right: 0; margin-left: 6px; }
.rtl .one_half, .rtl .one_third, .rtl .two_third, .rtl .three_fourth, .rtl .one_fourth { float: right; margin-left: 4%; margin-right: 0; }
.rtl .one_half.last, .rtl .one_third.last, .rtl .three_fourth.last, .rtl .one_fourth.last, .rtl .two_third.last, .rtl .three_fourth.last { margin-left: 0% !important; margin-right: 4%; }
.rtl .footer-area .columns .col { float: right !important; }
.rtl .footer-area .columns .col:first-child { margin-right: 0% !important; }
.rtl .footer-area .columns .col.last{ margin-left: 0% !important; margin-right: 4% !important; }
.rtl .columns-2 .col:nth-child(2n) {clear:left; margin-right:4%!important;}
.rtl .columns-3 .col:nth-child(3n) {clear:left; margin-right:3.5%!important;}
/* to top */
#toTop {
background-color: #333333;
border-radius: 4px 4px 0 0;
bottom: 0;
color: #FFFFFF;
display: none;
height: 28px;
position: fixed;
right: 30px;
text-align: center;
text-transform: uppercase;
width: 48px;
padding-top: 10px;
opacity: 0.9;
z-index: 10000;
transition: all 0.2s ease-in-out 0s;
}
#toTop:before {
font-family: "fontawesome";
content: "\f077";
}
#toTop:hover {
background-color: #A0CE4E;
}
#toTopHover {
display:block;
overflow:hidden;
float:left;
opacity: 0;
-moz-opacity: 0;
filter:alpha(opacity=0);
}
#toTop:active, #toTop:focus {
outline:none;
background-color: #333333;
}
/* slidingbar */
#slidingbar-area {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 99999;
margin-left: auto;
margin-right: auto;
}
body.admin-bar #wrapper #slidingbar-area {
top: 32px;
}
#slidingbar {
height: auto;
color: #8c8989;
background: #363839;
background: rgba(54,56,57,0.9);
overflow: hidden;
position: relative;
z-index: 3;
display: none;
//visibility: hidden;
padding: 35px 10px;
}
.sb_toggle {
border-color: transparent #363839 transparent transparent;
border-style: solid;
border-width: 0 40px 40px 0;
bottom: -40px;
height: 0;
position: absolute;
right: 0;
width: 0;
z-index: 999;
}
.sb_toggle:after {
font-size: 11px;
font-family: "fontawesome";
content: "\f067";
display: block;
height: 40px;
position: absolute;
left: 24px;
top: 3px;
color: #FFFFFF;
text-shadow: none !important;
-moz-text-shadow: none !important;
-webkit-text-shadow: none !important;
}
.sb_toggle.open:after {
font-size: 12px;
font-family: "fontawesome";
content: "\f068";
display: block;
height: 40px;
position: absolute;
left: 24px;
top: 3px;
}
.slidingbar-widget-col{margin-bottom:20px;}
.slidingbar-widget-col:last-child{margin-bottom:0;}
#slidingbar-area .logo{
float:none;
display:block;
margin:0 0 22px;
background:url(images/logo-footer.gif) no-repeat;
}
#slidingbar-area h3{
margin:0 0 28px;
color:#ddd;
text-transform:uppercase;
font:13px/20px 'PTSansBold', arial, helvetica, sans-serif;
}
#slidingbar-area .columns{margin:0;}
#slidingbar-area .text-block{
text-shadow:1px 2px 1px #000;
}
#slidingbar-area .holder-block img{width:100%;}
#slidingbar-area ul{
list-style:none;
margin:0;
padding:0;
font-size:12px;
line-height:15px;
}
#slidingbar-area ul li a{
padding:12px 0;
border-bottom: 1px solid #282a2b;
display:block;
}
#slidingbar-area .slidingbar-widget-col ul:first-child > li:first-child > a,#slidingbar-area .slidingbar-widget-col > ul > li:first-child > a{background-image:none;padding-top:0px;}
#slidingbar-area a{
text-shadow:1px 2px 1px #000;
color:#bfbfbf;
}
#slidingbar-area ul li a:hover{
color:#a0ce4e;
}
#slidingbar-area ul#recentcomments li.recentcomments:first-child{
padding-top:0px !important;
background:none !important;
}
#slidingbar-area li.recentcomments {
padding:12px 0;
border-bottom: 1px solid #282a2b;
display:block;
}
#slidingbar-area li.recentcomments a{
border: none !important;
}
.wpcf7-form input[type="submit"] {
cursor: pointer;
}
/* Style.css */
a.pp_next {
display: block;
float: right;
height: 100%;
text-indent: -10000px;
width: 49%;
}
a.pp_previous {
display: block;
float: left;
height: 100%;
text-indent: -10000px;
width: 49%;
}
div.pp_default .pp_top,div.pp_default .pp_top .pp_middle,div.pp_default .pp_top .pp_left,div.pp_default .pp_top .pp_right,div.pp_default .pp_bottom,div.pp_default .pp_bottom .pp_left,div.pp_default .pp_bottom .pp_middle,div.pp_default .pp_bottom .pp_right{height:13px}
div.pp_default .pp_top .pp_left{background:url(images/prettyPhoto/default/sprite.png) -78px -93px no-repeat}
div.pp_default .pp_top .pp_middle{background:url(images/prettyPhoto/default/sprite_x.png) top left repeat-x}
div.pp_default .pp_top .pp_right{background:url(images/prettyPhoto/default/sprite.png) -112px -93px no-repeat}
div.pp_default .pp_content .ppt{color:#f8f8f8}
div.pp_default .pp_content_container .pp_left{background:url(images/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y;padding-left:13px}
div.pp_default .pp_content_container .pp_right{background:url(images/prettyPhoto/default/sprite_y.png) top right repeat-y;padding-right:13px}
div.pp_default .pp_next:hover{background:url(images/prettyPhoto/default/sprite_next.png) center right no-repeat;cursor:pointer}
div.pp_default .pp_previous:hover{background:url(images/prettyPhoto/default/sprite_prev.png) center left no-repeat;cursor:pointer}
div.pp_default .pp_expand{background:url(images/prettyPhoto/default/sprite.png) 0 -29px no-repeat;cursor:pointer;width:28px;height:28px}
div.pp_default .pp_expand:hover{background:url(images/prettyPhoto/default/sprite.png) 0 -56px no-repeat;cursor:pointer}
div.pp_default .pp_contract{background:url(images/prettyPhoto/default/sprite.png) 0 -84px no-repeat;cursor:pointer;width:28px;height:28px}
div.pp_default .pp_contract:hover{background:url(images/prettyPhoto/default/sprite.png) 0 -113px no-repeat;cursor:pointer}
div.pp_default .pp_close{width:30px;height:30px;background:url(images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;cursor:pointer}
div.pp_default .pp_gallery ul li a{background:url(images/prettyPhoto/default/default_thumb.png) center center #f8f8f8;border:1px solid #aaa}
div.pp_default .pp_social{margin-top:7px}
div.pp_default .pp_gallery a.pp_arrow_previous,div.pp_default .pp_gallery a.pp_arrow_next{position:static;left:auto}
div.pp_default .pp_nav .pp_play,div.pp_default .pp_nav .pp_pause{background:url(images/prettyPhoto/default/sprite.png) -51px 1px no-repeat;height:30px;width:30px}
div.pp_default .pp_nav .pp_pause{background-position:-51px -29px}
div.pp_default a.pp_arrow_previous,div.pp_default a.pp_arrow_next{background:url(images/prettyPhoto/default/sprite.png) -31px -3px no-repeat;height:20px;width:20px;margin:4px 0 0}
div.pp_default a.pp_arrow_next{left:52px;background-position:-82px -3px}
div.pp_default .pp_content_container .pp_details{margin-top:5px}
div.pp_default .pp_nav{clear:none;height:30px;width:110px;position:relative}
div.pp_default .pp_nav .currentTextHolder{font-family:Georgia;font-style:italic;color:#999;font-size:11px;left:75px;line-height:25px;position:absolute;top:2px;margin:0;padding:0 0 0 10px}
div.pp_default .pp_close:hover,div.pp_default .pp_nav .pp_play:hover,div.pp_default .pp_nav .pp_pause:hover,div.pp_default .pp_arrow_next:hover,div.pp_default .pp_arrow_previous:hover{opacity:0.7}
div.pp_default .pp_description{font-size:11px;font-weight:700;line-height:14px;margin:5px 50px 5px 0}
div.pp_default .pp_bottom .pp_left{background:url(images/prettyPhoto/default/sprite.png) -78px -127px no-repeat}
div.pp_default .pp_bottom .pp_middle{background:url(images/prettyPhoto/default/sprite_x.png) bottom left repeat-x}
div.pp_default .pp_bottom .pp_right{background:url(images/prettyPhoto/default/sprite.png) -112px -127px no-repeat}
div.pp_default .pp_loaderIcon{background:url(images/prettyPhoto/default/loader.gif) center center no-repeat}
div.facebook .pp_top .pp_left{background:url(images/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat}
div.facebook .pp_top .pp_middle{background:url(images/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x}
div.facebook .pp_top .pp_right{background:url(images/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat}
div.facebook .pp_content_container .pp_left{background:url(images/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y}
div.facebook .pp_content_container .pp_right{background:url(images/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y}
div.facebook .pp_expand{background:url(images/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.facebook .pp_expand:hover{background:url(images/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.facebook .pp_contract{background:url(images/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.facebook .pp_contract:hover{background:url(images/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.facebook .pp_close{width:22px;height:22px;background:url(images/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.facebook .pp_description{margin:0 37px 0 0}
div.facebook .pp_loaderIcon{background:url(images/prettyPhoto/facebook/loader.gif) center center no-repeat}
div.facebook .pp_arrow_previous{background:url(images/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat;height:22px;margin-top:0;width:22px}
div.facebook .pp_arrow_previous.disabled{background-position:0 -96px;cursor:default}
div.facebook .pp_arrow_next{background:url(images/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat;height:22px;margin-top:0;width:22px}
div.facebook .pp_arrow_next.disabled{background-position:-32px -96px;cursor:default}
div.facebook .pp_nav{margin-top:0}
div.facebook .pp_nav p{font-size:15px;padding:0 3px 0 4px}
div.facebook .pp_nav .pp_play{background:url(images/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_nav .pp_pause{background:url(images/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_next:hover{background:url(images/prettyPhoto/facebook/btnNext.png) center right no-repeat;cursor:pointer}
div.facebook .pp_previous:hover{background:url(images/prettyPhoto/facebook/btnPrevious.png) center left no-repeat;cursor:pointer}
div.facebook .pp_bottom .pp_left{background:url(images/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat}
div.facebook .pp_bottom .pp_middle{background:url(images/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x}
div.facebook .pp_bottom .pp_right{background:url(images/prettyPhoto/facebook/sprite.png) -110px -80px no-repeat}
div.pp_pic_holder a:focus{outline:none}
div.pp_overlay{background:#000;display:none;left:0;position:absolute;top:0;width:100%;z-index:110000;}
div.pp_pic_holder{display:none;position:absolute;width:100px;z-index:120000;}
.pp_content{height:40px;min-width:40px}
* html .pp_content{width:40px}
.pp_content_container{position:relative;text-align:left;width:100%}
.pp_content_container .pp_left{padding-left:20px}
.pp_content_container .pp_right{padding-right:20px}
.pp_content_container .pp_details{float:left;margin:10px 0 2px}
.pp_description{display:none;margin:0}
.pp_social{float:left;margin:0}
.pp_social .facebook{float:left;margin-left:5px;width:auto;overflow:hidden; width:75px !important;}
.pp_social .twitter{float:left}
.pp_nav{clear:right;float:left;margin:3px 10px 0 0}
.pp_nav p{float:left;white-space:nowrap;margin:2px 4px}
.pp_nav .pp_play,.pp_nav .pp_pause{float:left;margin-right:4px;text-indent:-10000px}
a.pp_arrow_previous,a.pp_arrow_next{display:block;float:left;height:15px;margin-top:3px;overflow:hidden;text-indent:-10000px;width:14px}
.pp_hoverContainer{position:absolute;top:0;width:100%;z-index:2000}
.pp_gallery{display:none;left:50%;margin-top:-50px;position:absolute;z-index:10000}
.pp_gallery div{float:left;overflow:hidden;position:relative}
.pp_gallery ul{float:left;height:35px;position:relative;white-space:nowrap;margin:0 0 0 5px;padding:0}
.pp_gallery ul a{border:1px rgba(0,0,0,0.5) solid;display:block;float:left;height:33px;overflow:hidden}
.pp_gallery ul a img{border:0}
.pp_gallery li{display:block;float:left;margin:0 5px 0 0;padding:0}
.pp_gallery li.default a{background:url(images/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;display:block;height:33px;width:50px}
.pp_gallery .pp_arrow_previous,.pp_gallery .pp_arrow_next{margin-top:7px!important}
a.pp_expand,a.pp_contract{cursor:pointer;display:none;height:20px;position:absolute;right:30px;text-indent:-10000px;top:10px;width:20px;z-index:20000}
a.pp_close{position:absolute;right:0;top:0;display:block;line-height:22px;text-indent:-10000px}
.pp_loaderIcon{display:block;height:24px;left:50%;position:absolute;top:50%;width:24px;margin:-12px 0 0 -12px}
#pp_full_res{line-height:1!important}
#pp_full_res .pp_inline{text-align:left}
#pp_full_res .pp_inline p{margin:0 0 15px}
div.ppt{color:#fff;display:none;font-size:17px;z-index:9999;margin:0 0 5px 15px}
div.pp_default .pp_content,div.light_rounded .pp_content{background-color:#fff}
div.pp_default #pp_full_res .pp_inline,div.light_rounded .pp_content .ppt,div.light_rounded #pp_full_res .pp_inline,div.light_square .pp_content .ppt,div.light_square #pp_full_res .pp_inline,div.facebook .pp_content .ppt,div.facebook #pp_full_res .pp_inline{color:#000}
div.pp_default .pp_gallery ul li a:hover,div.pp_default .pp_gallery ul li.selected a,.pp_gallery ul a:hover,.pp_gallery li.selected a{border-color:#fff}
div.pp_default .pp_details,div.light_rounded .pp_details,div.dark_rounded .pp_details,div.dark_square .pp_details,div.light_square .pp_details,div.facebook .pp_details{position:relative}
.pp_top,.pp_bottom{height:20px;position:relative}
* html .pp_top,* html .pp_bottom{padding:0 20px}
.pp_top .pp_left,.pp_bottom .pp_left{height:20px;left:0;position:absolute;width:20px}
.pp_top .pp_middle,.pp_bottom .pp_middle{height:20px;left:20px;position:absolute;right:20px}
* html .pp_top .pp_middle,* html .pp_bottom .pp_middle{left:0;position:static}
.pp_top .pp_right,.pp_bottom .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}
.pp_fade,.pp_gallery li.default a img{display:none}
/*
* jQuery FlexSlider v2.0
* http://www.woothemes.com/flexslider/
*
* Copyright 2012 WooThemes
* Free to use under the GPLv2 license.
* http://www.gnu.org/licenses/gpl-2.0.html
*
* Contributing author: <NAME> (@mbmufffin)
*/
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {outline: none;}
.flexslider .slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none; z-index:1000;}
/* FlexSlider Necessary Styles
*********************************/
.flexslider {margin: 0; padding: 0;}
.flexslider .slides {overflow:hidden;}
.flexslider .slides li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {width: 100%; max-width: 100%; display: block;}
.flex-pauseplay span {text-transform: capitalize;}
/* Clearfix for the .slides element */
.flexslider .slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .flexslider .slides {display: block;}
* html .flexslider .slides {height: 1%;}
.flexslider .slides, .flex-control-nav, .flex-direction-nav{z-index:100;}
/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
* include js that eliminates this class on page load */
/*.no-js .flexslider .slides > li:first-child {display: block;}*/
/* FlexSlider Default Theme
*********************************/
.flexslider {margin: 0 0 60px; background-color: transparent; position: relative; zoom: 1;}
.flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
.loading .flex-viewport {max-height: 300px;}
.flexslider .slides {zoom: 1;}
.carousel li {margin-right: 5px}
/* Direction Nav */
.flex-direction-nav {height: 0;}
.flex-direction-nav a {width: 30px; height: 30px; margin: -20px 0 0; background-color:rgba(0, 0, 0, 0.5); background-repeat:no-repeat; position: absolute; top: 50%; cursor: pointer; text-indent: -9999px; opacity: 0; -webkit-transition: all .3s ease;z-index:100; overflow:hidden;}
.no-opacity .flex-direction-nav a{display:none;}
.no-opacity .flexslider:hover .flex-direction-nav a{display:block;}
.flex-direction-nav .flex-next {
background-image: url(images/arrow-bullet.png);
background-position: center center;
right: 0;
}
.flex-direction-nav .flex-prev {
background-image: url(images/arrow-bullet.png);
background-position: center center;
-webkit-transform:rotate(180deg);
-moz-transform:rotate(180deg);
-o-transform:rotate(180deg);
transform:rotate(180deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
left: 0;
}
.no-rgba .flex-direction-nav .flex-next, .no-rgba .flex-direction-nav .flex-prev{
background-color:#000;
}
.no-csstransforms .flex-direction-nav .flex-prev{
background-image: url(images/arrow-bullet-left.png) !important;
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
}
.no-csstransforms .main-flex .flex-direction-nav .flex-prev{
background-image: url(images/ls_prev.png) !important;
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
}
.flexslider:hover .flex-next {opacity: 0.8; right: 0px;}
.flexslider:hover .flex-prev {opacity: 0.8; left: 0px;}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {opacity: 1;}
.flex-direction-nav .flex-disabled {opacity: 0!important;filter:alpha(opacity=0);cursor:default;display:none !important;}
/* Control Nav */
.flex-control-nav {width: 100%; position: absolute; bottom: 0px; text-align: center;}
.flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; box-shadow: inset 0 0 3px rgba(0,0,0,0.3);}
.flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
.flex-control-paging li a.flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }
.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}
.flex-caption{position:absolute; background:rgba(0, 0, 0, 0.6); width:96%; padding:2%; color:#fff; left:0; bottom:0; margin:0;}
.no-rgba .flex-caption{background-color:#000;}
.main-flex{margin-bottom:0;}
@media screen and (max-width: 860px) {
.flex-direction-nav .flex-prev {opacity: 1; left: 0;}
.flex-direction-nav .flex-next {opacity: 1; right: 0;}
}
.wp-caption{}
.wp-caption-text{}
.sticky{}
.gallery-caption{}
.bypostauthor{}
/* Alignment */
.alignleft {
display: inline;
float: left;
margin-right: 15px;
}
.alignright {
display: inline;
float: right;
margin-left: 15px;
}
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
}
/* Slider */
//#wrapper .fullwidthbanner-container{width:auto !important;}
#layerslider-container{margin:0 auto;}
#layerslider-wrapper{
position:relative;
}
#layerslider-wrapper .ls-shadow-top{
position:absolute;
background-image:url(images/shadow-top.png);
background-repeat:no-repeat;
background-position:top center;
height:42px;
width:100%;
top:0;
z-index:99;
}
#layerslider-wrapper .ls-shadow-bottom{
position:absolute;
background-image:url(images/shadow-bottom.png);
background-repeat:no-repeat;
background-position:bottom center;
height:32px;
width:100%;
bottom:0;
z-index:99;
}
.ls-avada{
border-top: 1px solid #d2d3d4;
border-bottom: 1px solid #d2d3d4;
}
.ls-avada .ls-layer{
background-repeat:no-repeat;
background-position:center center;
}
.ls-avada .ls-nav-prev, .ls-avada .ls-nav-next,.products-slider .es-nav span{
background-color: rgba(0, 0, 0, 0.5);
background-repeat: no-repeat;
width: 63px !important;
height: 63px !important;
display: none;
position: absolute;
top: 50% !important;
margin-top:-31px !important;
opacity:0.8 !important;
}
.no-rgba .ls-avada .ls-nav-prev, .no-rgba .ls-avada .ls-nav-next, .no-rgba .wooslider .wooslider-prev, .no-rgba .wooslider .wooslider-next,.no-rgba .products-slider .es-nav span{
background-color:#ccc !important;
}
.ls-avada .ls-nav-prev:hover, .ls-avada .ls-nav-next:hover,
.products-slider .es-nav span:hover{
opacity:1 !important;
}
.ls-avada:hover .ls-nav-prev, .ls-avada:hover .ls-nav-next {
display: block;
}
.ls-avada .ls-nav-prev,.products-slider .es-nav span.es-nav-prev {
background-image: url(images/ls_prev.png) !important;
background-position: 19px 19px !important;
left: 0 !important;
margin-left:0 !important;
z-index:10;
}
.ls-avada .ls-nav-next,.products-slider .es-nav span.es-nav-next {
background-image: url(images/ls_next.png) !important;
background-position: 29px 19px !important;
right: 0 !important;
margin-left:0 !important;
z-index:10;
}
.ls-avada .ls-playvideo {
width: 50px;
height: 50px;
margin-left: -25px;
margin-top: -25px;
}
.ls-avada .ls-playvideo{
background-image: url(images/skin.png);
}
.ls-avada .ls-playvideo {
background-position: -300px -150px;
}
.ls-avada .ls-playvideo:hover,
.ls-avada .ls-vpcontainer:hover .ls-playvideo {
background-position: -375px -150px;
}
/**** Isotope Filtering ****/
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-ms-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
-ms-transition-property: height, width;
-o-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-ms-transition-property: -ms-transform, opacity;
-o-transition-property: top, left, opacity;
transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
-webkit-transition-duration: 0s;
-moz-transition-duration: 0s;
-ms-transition-duration: 0s;
-o-transition-duration: 0s;
transition-duration: 0s;
}
/**** Isotope filtering ****/
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
/* WooSlider */
.wooslider{
border:0 !important;
background:none !important;
-moz-box-shadow:none !important;
-webkit-box-shadow:none !important;
box-shadow:none !important;
-moz-border-radius:none !important;
-webkit-border-radius:none !important;
border-radius:none !important;
margin:0 auto !important;
max-width:940px;
}
.wooslider .slide-content{
margin:0 !important;
}
.wooslider .wooslider-pauseplay{
position:absolute;
margin:0 !important;
top:auto !important;
bottom:15px !important;
}
.wooslider .wooslider-control-nav{
position:absolute;
margin:0 !important;
top:auto !important;
bottom:20px !important;
}
.wooslider .wooslider-prev, .wooslider .wooslider-next, .main-flex .flex-prev, .main-flex .flex-next {
background-color: rgba(0, 0, 0, 0.5) !important;
background-repeat: no-repeat !important;
width: 63px !important;
height: 63px !important;
display: none !important;
position: absolute !important;
top: 42% !important;
margin:0 !important;
-webkit-transform:rotate(0deg);
-moz-transform:rotate(0deg);
-o-transform:rotate(0deg);
transform:rotate(0deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
}
.wooslider:hover .wooslider-prev, .wooslider:hover .wooslider-next, .main-flex:hover .flex-prev, .main-flex:hover .flex-next {
display: block !important;
}
.wooslider .wooslider-prev, .main-flex .flex-prev {
background-image: url(images/ls_prev.png) !important;
background-position: 19px 19px !important;
left: 0 !important;
padding:0 !important;
border:0 !important;
}
.wooslider .wooslider-next, .main-flex .flex-next {
background-image: url(images/ls_next.png) !important;
background-position: 29px 19px !important;
right: 0 !important;
padding:0 !important;
border:0 !important;
}
.no-rgba .wooslider .wooslider-next, .no-rgba .wooslider .wooslider-prev{
background-color:#000 !important;
}
#sliders-container .wooslider .slide-content p{margin:0;}
#sidebar .wooslider-control-nav li a,.footer-area .wooslider-control-nav li a{
padding:0 !important;
background:none !important;
border:0 !important;
background:#666 !important;
background:rgba(0, 0, 0, 0.5) !important;
margin-right:3px !important;
}
#sidebar .wooslider-next, #sidebar .wooslider-prev,.post-content .wooslider .wooslider-prev,.post-content .wooslider .wooslider-next,.footer-area .wooslider-next, .footer-area .wooslider-prev{
width:29px !important;
height:29px !important;
}
#sidebar .wooslider-prev,.footer-area .wooslider-prev,.post-content .wooslider .wooslider-prev{
background-image:url(images/arrow-bullet-left.png) !important;
background-position:center center !important;
}
#sidebar .wooslider-next,.footer-area .wooslider-next,.post-content .wooslider .wooslider-next{
background-image:url(images/arrow-bullet.png) !important;
background-position:center center !important;
}
#sidebar .wooslider .wooslider-control-nav,.footer-area .wooslider .wooslider-control-nav{bottom:5px !important;}
#sidebar .widget_wooslider_slideshow_slides .wooslider-control-nav,.footer-area .widget_wooslider_slideshow_slides .wooslider-control-nav{bottom:12px !important;}
.footer-area .slide-excerpt{overflow:hidden; position:absolute; bottom:-50px; padding:0px; width:100%; text-align:center;}
#sidebar .slide-excerpt { bottom:15%; width: 100%;}
#sidebar .slide-excerpt .slide-title { float: none; }
#sidebar .slide-excerpt .slide-title a { color: #ffffff !important; border: none; }
#sidebar .slide-excerpt .slide-title a:hover { color: #ffffff !important; }
#sidebar .widget .slides li div a { padding: 0; }
/* Elastic Slider */
.ei-slider{
position: relative;
width: 100%;
height: 400px;
margin: 0 auto;
}
.ei-slider-loading{
width: 100%;
height: 100%;
position: absolute;
top: 0px;
left: 0px;
z-index:999;
background: rgba(0,0,0,0.9);
color: #fff;
text-align: center;
line-height: 400px;
}
.ei-slider-large{
height: 100%;
width: 100%;
position:relative;
overflow: hidden;
margin: 0;
padding: 0;
}
.ei-slider-large li{
position: absolute;
top: 0px;
left: 0px;
overflow: hidden;
height: 100%;
width: 100%;
}
.ei-slider-large li img{
width: auto !important;
max-width:none !important;
}
.ei-title{
position: absolute;
right: 50%;
margin-right: 13%;
top: 30%;
}
.ei-title h2, .ei-title h3{
text-align: right;
margin: 0;
font-weight:normal;
}
.ei-title h2 {
font-family: 'MuseoSlab500Regular', arial, helvetica, sans-serif !important;
}
.ei-slider-thumbs{
height: 13px;
margin: 0 auto;
position: relative;
padding: 0;
bottom: 0px;
}
.ei-slider-thumbs li{
position: relative;
float: left;
height: 100%;
}
.ei-slider-thumbs li.ei-slider-element{
top: 0px;
left: 0px;
position: absolute;
height: 100%;
z-index: 10;
text-indent: -9000px;
background: #000;
background: rgba(0,0,0,0.9);
}
.ei-slider-thumbs li a{
display: block;
text-indent: -9000px;
background: #666 ;
width: 100%;
height: 100%;
cursor: pointer;
-webkit-box-shadow:
0px 0px 2px 0px rgba(255,255,255,1);
-moz-box-shadow:
0px 0px 2px 0px rgba(255,255,255,1);
box-shadow:
0px 0px 2px 0px rgba(255,255,255,1);
-webkit-transition: background 0.2s ease;
-moz-transition: background 0.2s ease;
-o-transition: background 0.2s ease;
-ms-transition: background 0.2s ease;
transition: background 0.2s ease;
}
.ei-slider-thumbs li a:hover{
background-color: #f0f0f0;
}
.ei-slider-thumbs li img{
position: absolute;
bottom: 50px;
opacity: 0;
z-index: 999;
max-width: 100%;
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
-ms-transition: all 0.4s ease;
transition: all 0.4s ease;
-webkit-box-reflect:
below 0px -webkit-gradient(
linear,
left top,
left bottom,
from(transparent),
color-stop(50%, transparent),
to(rgba(255,255,255,0.3))
);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.ei-slider-thumbs li:hover img{
opacity: 1;
bottom: 13px;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.ei-slider ul{list-style:none;}
@media screen and (max-width: 830px) {
.ei-title{
position: absolute;
right: 0px;
margin-right: 0px;
width: 100%;
text-align: center;
top: auto;
bottom: 10px;
padding: 5px 0;
}
.ei-title h2, .ei-title h3{
text-align: center;
}
#wrapper .ei-title h2{
font-size: 20px !important;
line-height: 24px !important;
}
#wrapper .ei-title h3{
font-size: 15px !important;
line-height: 30px !important;
}
}
#nav-uber #megaMenu{
float:right;
margin-top:20px;
margin-bottom:20px;
z-index: 1000;
}
#nav-uber #megaMenu.megaMenuVertical{
float:left;
margin-left:20px;
}
.header-v4 #nav-uber #megaMenu,.header-v5 #nav-uber #megaMenu{
margin-top:0;
margin-bottom:0;
float:left;
}
.header-v4 #nav-uber #megaMenu.megaMenuVertical,.header-v5 #nav-uber #megaMenu.megaMenuVertical{
margin-left:0;
}
.fullwidthbanner-container{
overflow:visible !important;
}
.tfs-slider .flex-caption{width:97%;}
.tfs-slider .flex-control-nav{bottom:20px;}
/* Revslider Fix */
.tp-simpleresponsive .slotholder, .tp-simpleresponsive .slotholder img{-webkit-backface-visibility:visible !important;-webkit-transform:none !important;}
body #sidebar .button { padding-left: 15px !important; }
/* responsive menu */
.mobile-nav-holder, .mobile-topnav-holder { display: none; }
.mobile-nav-holder .mobile-selector, .mobile-topnav-holder .mobile-selector {
background-image: url("images/mobile_menu_bg.png");
border: 1px solid #DADADA;
line-height:29px;
width:100%;
position: relative;
font-size:12px;
cursor: pointer;
}
.sticky-header .mobile-nav-holder .mobile-selector {
width: auto;
}
.mobile-nav-holder .mobile-selector span, .mobile-topnav-holder .mobile-selector span{
padding-left: 10px;
}
.mobile-nav-holder .mobile-selector .selector-down,
.mobile-topnav-holder .mobile-selector .selector-down{
border-left: 1px solid #DADADA;
height: 29px;
margin: 0;
right: 5px;
top: 0;
width: 40px;
position: absolute;
}
.mobile-nav-holder .mobile-selector .selector-down:before,
.mobile-topnav-holder .mobile-selector .selector-down:before {
content: "\f0c9";
font-family: "FontAwesome";
font-size: 24px;
margin-left: 12px;
color: #C7C5C5 !important;
}
.mobile-topnav-holder {
margin: 0 auto;
width: 50%;
color: #333333 !important;
text-align: left;
}
#mobile-nav {
display: none;
border-left: 1px solid #DBDBDB;
border-right: 1px solid #DBDBDB;
list-style-type: none;
padding: 0px;
margin: 0px;
width: 100%;
background: #ffffff;
}
#mobile-nav .sub-menu{
list-style-type: none;
padding: 0px;
margin: 0px;
display: block;
}
#mobile-nav li a {
border-bottom: 1px solid #DBDBDB;
color: #333333;
padding: 10px;
font-size: 12px;
display: block;
line-height: normal;
}
#mobile-nav.mobile-sticky-nav {
border-bottom: 1px solid #DBDBDB;
height: 200px;
overflow-y: scroll;
overflow-x: hidden;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#mobile-nav.mobile-sticky-nav li a {
height: auto !important;
line-height: normal !important;
}
#mobile-nav li a:hover {
background-color: #F6F6F6;
border-color: #DBDBDB;
color: #333333;
}
#mobile-nav li.mobile-nav-item li a:before {
content: "-";
margin-left:3px;
margin-right:2px;
}
#mobile-nav li.mobile-nav-item li li a:before {
content: "--";
margin-left:6px;
margin-right:2px;
}
#mobile-nav li.mobile-nav-item li li li a:before {
content: "---";
margin-left:9px;
margin-right:2px;
}
#mobile-nav li.mobile-nav-item li li li li a:before {
content: "----";
margin-left:12px;
margin-right:2px;
}
#header-sticky #mobile-nav .my-cart-link:after,
#header #mobile-nav .my-cart-link:after {
content: "";
border: none;
}
#learndash_lessons .learndash_topic_dots {
float: none !important;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 13/10), only screen and (min-resolution: 120dpi) {
#jtwt .jtwt_tweet {
background-image: url(images/[email protected]) !important;
-webkit-background-size:31px 23px !important;
-moz-background-size:31px 23px !important;
-o-background-size:31px 23px !important;
background-size:31px 23px !important;
}
.review.male blockquote div .company-name {
background-image: url(images/[email protected]) !important;
-webkit-background-size:26px 29px;
-moz-background-size:26px 29px;
-o-background-size:26px 29px;
background-size:26px 29px;
}
.review.female blockquote div .company-name {
background-image: url(images/[email protected]) !important;
-webkit-background-size:26px 29px;
-moz-background-size:26px 29px;
-o-background-size:26px 29px;
background-size:26px 29px;
}
.flex-direction-nav .flex-prev, .flex-direction-nav .flex-next, .post-content ul.arrow li::before, .es-nav-next, .es-nav-prev {
background-image: url(images/[email protected]) !important;
-webkit-background-size:5px 8px;
-moz-background-size:5px 8px;
-o-background-size:5px 8px;
background-size:5px 8px;
}
#sidebar .wooslider .wooslider-next, .footer-area .wooslider .wooslider-next,.post-content .wooslider .wooslider-next {
background-image: url(images/[email protected]) !important;
-webkit-background-size:5px 8px !important;
-moz-background-size:5px 8px !important;
-o-background-size:5px 8px !important;
background-size:5px 8px !important;
}
#sidebar .wooslider .wooslider-prev, .footer-area .wooslider .wooslider-prev,.post-content .wooslider .wooslider-prev {
background-image: url(images/[email protected]) !important;
-webkit-background-size:5px 8px !important;
-moz-background-size:5px 8px !important;
-o-background-size:5px 8px !important;
background-size:5px 8px !important;
-webkit-transform:rotate(180deg);
-moz-transform:rotate(180deg);
-o-transform:rotate(180deg);
transform:rotate(180deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.ls-avada .ls-nav-prev, .wooslider .wooslider-prev, .main-flex .flex-prev,
.products-slider .es-nav span.es-nav-prev {
background-image: url(images/[email protected]) !important;
-webkit-background-size:12px 24px !important;
-moz-background-size:12px 24px !important;
-o-background-size:12px 24px !important;
background-size:12px 24px !important;
}
.ls-avada .ls-nav-next, .wooslider .wooslider-next, .main-flex .flex-next,
.products-slider .es-nav span.es-nav-next {
background-image: url(images/[email protected]) !important;
-webkit-background-size:12px 24px !important;
-moz-background-size:12px 24px !important;
-o-background-size:12px 24px !important;
background-size:12px 24px !important;
}
h5.toggle span.arrow {
background-image: url(images/[email protected]) !important;
-webkit-background-size:7px 7px;
-moz-background-size:7px 7px;
-o-background-size:7px 7px;
background-size:7px 7px;
}
h5.toggle.active span.arrow {
background-image: url(images/[email protected]) !important;
-webkit-background-size:7px 1px;
-moz-background-size:7px 1px;
-o-background-size:7px 1px;
background-size:7px 1px;
}
.alert.general {
background-image: url(images/[email protected]) !important;
-webkit-background-size:19px 20px;
-moz-background-size:19px 20px;
-o-background-size:19px 20px;
background-size:19px 20px;
}
.alert.error {
background-image: url(images/[email protected]) !important;
-webkit-background-size:24px 19px;
-moz-background-size:24px 19px;
-o-background-size:24px 19px;
background-size:24px 19px;
}
.alert.success {
background-image: url(images/[email protected]) !important;
-webkit-background-size:19px 23px;
-moz-background-size:19px 23px;
-o-background-size:19px 23px;
background-size:19px 23px;
}
.alert.notice {
background-image: url(images/[email protected]) !important;
-webkit-background-size:22px 22px;
-moz-background-size:22px 22px;
-o-background-size:22px 22px;
background-size:22px 22px;
}
.alert .toggle-alert {
background-image: url(images/[email protected]) !important;
-webkit-background-size:12px 11px;
-moz-background-size:12px 11px;
-o-background-size:12px 11px;
background-size:12px 11px;
}
.social-networks .facebook a,.person-author .facebook{background-image:url(images/[email protected]) !important;
-webkit-background-size:9px 17px;
-moz-background-size:9px 17px;
-o-background-size:9px 17px;
background-size:9px 17px;
}
.social-networks .twitter a,.person-author .twitter{background-image:url(images/[email protected]) !important;
-webkit-background-size:13px 16px;
-moz-background-size:13px 16px;
-o-background-size:13px 16px;
background-size:13px 16px;
}
.social-networks .linkedin a,.person-author .linkedin{background-image:url(images/[email protected]) !important;
-webkit-background-size:14px 13px;
-moz-background-size:14px 13px;
-o-background-size:14px 13px;
background-size:14px 13px;
}
.social-networks .rss a,.person-author .rss{background-image:url(images/[email protected]) !important;
-webkit-background-size:13px 13px;
-moz-background-size:13px 13px;
-o-background-size:13px 13px;
background-size:13px 13px;
}
.social-networks .dribbble a,.person-author .dribbble{background-image:url(images/[email protected]) !important;
-webkit-background-size:16px 16px;
-moz-background-size:16px 16px;
-o-background-size:16px 16px;
background-size:16px 16px;
}
.social-networks .youtube a,.person-author .youtube{background-image:url(images/[email protected]) !important;
-webkit-background-size:23px 25px;
-moz-background-size:23px 25px;
-o-background-size:23px 25px;
background-size:23px 25px;
}
.social-networks .tf-pinterest a,.person-author .tf-pinterest{background-image:url(images/[email protected]) !important;
-webkit-background-size:16px 20px;
-moz-background-size:16px 20px;
-o-background-size:16px 20px;
background-size:16px 20px;
}
.social-networks .vimeo a,.person-author .vimeo{background-image:url(images/[email protected]) !important;
-webkit-background-size:18px 16px;
-moz-background-size:18px 16px;
-o-background-size:18px 16px;
background-size:18px 16px;
}
.social-networks .flickr a,.person-author .flickr{background-image:url(images/[email protected]) !important;
-webkit-background-size:25px 17px;
-moz-background-size:25px 17px;
-o-background-size:25px 17px;
background-size:25px 17px;
}
.social-networks .tumblr a,.person-author .tumblr{background-image:url(images/[email protected]) !important;
-webkit-background-size:15px 16px;
-moz-background-size:15px 16px;
-o-background-size:15px 16px;
background-size:15px 16px;
}
.social-networks .google a,.person-author .google{background-image:url(images/[email protected]) !important;
-webkit-background-size:21px 18px;
-moz-background-size:21px 18px;
-o-background-size:21px 18px;
background-size:21px 18px;
}
.social-networks .digg a,.person-author .digg{background-image:url(images/[email protected]) !important;
-webkit-background-size:21px 19px;
-moz-background-size:21px 19px;
-o-background-size:21px 19px;
background-size:21px 19px;
}
.social-networks .blogger a,.person-author .blogger{background-image:url(images/blogger<EMAIL>) !important;
-webkit-background-size:16px 15px;
-moz-background-size:16px 15px;
-o-background-size:16px 15px;
background-size:16px 15px;
}
.social-networks .skype a,.person-author .skype{background-image:url(images/[email protected]) !important;
-webkit-background-size:19px 19px;
-moz-background-size:19px 19px;
-o-background-size:19px 19px;
background-size:19px 19px;
}
.social-networks .myspace a,.person-author .myspace{background-image:url(images/[email protected]) !important;
-webkit-background-size:18px 18px;
-moz-background-size:18px 18px;
-o-background-size:18px 18px;
background-size:18px 18px;
}
.social-networks .deviantart a,.person-author .deviantart{background-image:url(images/[email protected]) !important;
-webkit-background-size:23px 18px;
-moz-background-size:23px 18px;
-o-background-size:23px 18px;
background-size:23px 18px;
}
.social-networks .yahoo a,.person-author .yahoo{background-image:url(images/[email protected]) !important;
-webkit-background-size:22px 14px;
-moz-background-size:22px 14px;
-o-background-size:22px 14px;
background-size:22px 14px;
}
.social-networks .reddit a,.person-author .reddit{background-image:url(images/[email protected]) !important;
-webkit-background-size:19px 15px;
-moz-background-size:19px 15px;
-o-background-size:19px 15px;
background-size:19px 15px;
}
.social-networks .forrst a,.person-author .forrst{background-image:url(images/[email protected]) !important;
-webkit-background-size:15px 19px;
-moz-background-size:15px 19px;
-o-background-size:15px 19px;
background-size:15px 19px;
}
.social-networks .email a,.person-author .email{background-image:url(images/[email protected]) !important;
-webkit-background-size:20px 14px;
-moz-background-size:20px 14px;
-o-background-size:20px 14px;
background-size:20px 14px;
}
.social-networks-light .facebook a,.person-author-light .facebook{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:9px 17px;
-moz-background-size:9px 17px;
-o-background-size:9px 17px;
background-size:9px 17px;
}
.social-networks-light .twitter a,.person-author-light .twitter{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:13px 16px;
-moz-background-size:13px 16px;
-o-background-size:13px 16px;
background-size:13px 16px;
}
.social-networks-light .linkedin a,.person-author-light .linkedin{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:14px 13px;
-moz-background-size:14px 13px;
-o-background-size:14px 13px;
background-size:14px 13px;
}
.social-networks-light .rss a,.person-author-light .rss{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:13px 13px;
-moz-background-size:13px 13px;
-o-background-size:13px 13px;
background-size:13px 13px;
}
.social-networks-light .dribbble a,.person-author-light .dribbble{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:16px 16px;
-moz-background-size:16px 16px;
-o-background-size:16px 16px;
background-size:16px 16px;
}
.social-networks-light .youtube a,.person-author-light .youtube{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:23px 25px;
-moz-background-size:23px 25px;
-o-background-size:23px 25px;
background-size:23px 25px;
}
.social-networks-light .tf-pinterest a,.person-author-light .tf-pinterest{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:16px 20px;
-moz-background-size:16px 20px;
-o-background-size:16px 20px;
background-size:16px 20px;
}
.social-networks-light .vimeo a,.person-author-light .vimeo{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:18px 16px;
-moz-background-size:18px 16px;
-o-background-size:18px 16px;
background-size:18px 16px;
}
.social-networks-light .flickr a,.person-author-light .flickr{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:25px 17px;
-moz-background-size:25px 17px;
-o-background-size:25px 17px;
background-size:25px 17px;
}
.social-networks-light .tumblr a,.person-author-light .tumblr{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:15px 16px;
-moz-background-size:15px 16px;
-o-background-size:15px 16px;
background-size:15px 16px;
}
.social-networks-light .google a,.person-author-light .google{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:21px 18px;
-moz-background-size:21px 18px;
-o-background-size:21px 18px;
background-size:21px 18px;
}
.social-networks-light .digg a,.person-author-light .digg{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:21px 19px;
-moz-background-size:21px 19px;
-o-background-size:21px 19px;
background-size:21px 19px;
}
.social-networks-light .blogger a,.person-author-light .blogger{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:16px 15px;
-moz-background-size:16px 15px;
-o-background-size:16px 15px;
background-size:16px 15px;
}
.social-networks-light .skype a,.person-author-light .skype{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:19px 19px;
-moz-background-size:19px 19px;
-o-background-size:19px 19px;
background-size:19px 19px;
}
.social-networks-light .myspace a,.person-author-light .myspace{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:18px 18px;
-moz-background-size:18px 18px;
-o-background-size:18px 18px;
background-size:18px 18px;
}
.social-networks-light .deviantart a,.person-author-light .deviantart{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:23px 18px;
-moz-background-size:23px 18px;
-o-background-size:23px 18px;
background-size:23px 18px;
}
.social-networks-light .yahoo a,.person-author-light .yahoo{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:22px 14px;
-moz-background-size:22px 14px;
-o-background-size:22px 14px;
background-size:22px 14px;
}
.social-networks-light .reddit a,.person-author-light .reddit{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:19px 15px;
-moz-background-size:19px 15px;
-o-background-size:19px 15px;
background-size:19px 15px;
}
.social-networks-light .forrst a,.person-author-light .forrst{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:15px 19px;
-moz-background-size:15px 19px;
-o-background-size:15px 19px;
background-size:15px 19px;
}
.social-networks-light .email a,.person-author-light .email{background-image:url(images/white/[email protected]) !important;
-webkit-background-size:20px 14px;
-moz-background-size:20px 14px;
-o-background-size:20px 14px;
background-size:20px 14px;
}
.popup{
background-image: url(images/[email protected]) !important;
-webkit-background-size:23px 6px;
-moz-background-size:23px 6px;
-o-background-size:23px 6px;
background-size:23px 6px;
}
.image-extras .link-icon{
background-image:url(images/[email protected]) !important;
-webkit-background-size:35px 36px;
-moz-background-size:35px 36px;
-o-background-size:35px 36px;
background-size:35px 36px;
}
.image-extras .gallery-icon{
background-image:url(images/[email protected]) !important;
-webkit-background-size:35px 36px;
-moz-background-size:35px 36px;
-o-background-size:35px 36px;
background-size:35px 36px;
}
.chat-icon{
background-image:url(images/[email protected]) !important;
-webkit-background-size:26px 19px;
-moz-background-size:26px 19px;
-o-background-size:26px 19px;
background-size:26px 19px;
}
.error-image{
background-image:url(images/[email protected]) !important;
-webkit-background-size:311px 133px;
-moz-background-size:311px 133px;
-o-background-size:311px 133px;
background-size:311px 133px;
}
#wrapper .custom_select_box .dd-container .dd-pointer{
background-image:none !important;
-webkit-background-size:48px 29px;
-moz-background-size:48px 29px;
-o-background-size:48px 29px;
background-size:48px 29px;
}
}
.video-background {
position: relative;
overflow: hidden;
}
.video-bg {
position: relative;
padding-bottom: 56.25%;
height: 0; overflow: hidden;
}
.video-bg iframe,
.video-bg object,
.video-bg embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.video-content {
position: absolute;
top: 0;
padding: 15px; 0;
width: 100%;
}
/*---------------------------------------------------------------------------*/
/* Bootstrap Classes
/*---------------------------------------------------------------------------*/
#wrapper .col-xs-1, #wrapper .col-sm-1, #wrapper .col-md-1, #wrapper .col-lg-1, #wrapper .col-xs-2, #wrapper .col-sm-2, #wrapper .col-md-2, #wrapper .col-lg-2, #wrapper .col-xs-3, #wrapper .col-sm-3, #wrapper .col-md-3, #wrapper .col-lg-3, #wrapper .col-xs-4, #wrapper .col-sm-4, #wrapper .col-md-4, #wrapper .col-lg-4, #wrapper .col-xs-5, #wrapper .col-sm-5, #wrapper .col-md-5, #wrapper .col-lg-5, #wrapper .col-xs-6, #wrapper .col-sm-6, #wrapper .col-md-6, #wrapper .col-lg-6, #wrapper .col-xs-7, #wrapper .col-sm-7, #wrapper .col-md-7, #wrapper .col-lg-7, #wrapper .col-xs-8, #wrapper .col-sm-8, #wrapper .col-md-8, #wrapper .col-lg-8, #wrapper .col-xs-9, #wrapper .col-sm-9, #wrapper .col-md-9, #wrapper .col-lg-9, #wrapper .col-xs-10, #wrapper .col-sm-10, #wrapper .col-md-10, #wrapper .col-lg-10, #wrapper .col-xs-11, #wrapper .col-sm-11, #wrapper .col-md-11, #wrapper .col-lg-11, #wrapper .col-xs-12, #wrapper .col-sm-12, #wrapper .col-md-12, #wrapper .col-lg-12 {
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
}
#wrapper .col-xs-1, #wrapper .col-xs-2, #wrapper .col-xs-3, #wrapper .col-xs-4, #wrapper .col-xs-5, #wrapper .col-xs-6, #wrapper .col-xs-7, #wrapper .col-xs-8, #wrapper .col-xs-9, #wrapper .col-xs-10, #wrapper .col-xs-11, #wrapper .col-xs-12 {
float: left !important;
}
#wrapper .col-xs-12 {
width: 100% ;
}
#wrapper .col-xs-11 {
width: 91.66666666666666% !important;
}
#wrapper .col-xs-10 {
width: 83.33333333333334% !important;
}
#wrapper .col-xs-9 {
width: 75% !important;
}
#wrapper .col-xs-8 {
width: 66.66666666666666% !important;
}
#wrapper .col-xs-7 {
width: 58.333333333333336% !important;
}
#wrapper .col-xs-6 {
width: 50% !important;
}
#wrapper .col-xs-5 {
width: 41.66666666666667% !important;
}
#wrapper .col-xs-4 {
width: 33.33333333333333% !important;
}
#wrapper .col-xs-3 {
width: 25% !important;
}
#wrapper .col-xs-2 {
width: 16.666666666666664% !important;
}
#wrapper .col-xs-1 {
width: 8.333333333333332% !important;
}
@media (min-width: 768px) {
#wrapper .col-sm-1, #wrapper .col-sm-2, #wrapper .col-sm-3, #wrapper .col-sm-4, #wrapper .col-sm-5, #wrapper .col-sm-6, #wrapper .col-sm-7, #wrapper .col-sm-8, #wrapper .col-sm-9, #wrapper .col-sm-10, #wrapper .col-sm-11, #wrapper .col-sm-12 {
float: left !important;
}
#wrapper .col-sm-12 {
width: 100% !important;
}
#wrapper .col-sm-11 {
width: 91.66666666666666% !important;
}
#wrapper .col-sm-10 {
width: 83.33333333333334% !important;
}
#wrapper .col-sm-9 {
width: 75% !important;
}
#wrapper .col-sm-8 {
width: 66.66666666666666% !important;
}
#wrapper .col-sm-7 {
width: 58.333333333333336% !important;
}
#wrapper .col-sm-6 {
width: 50% !important;
}
#wrapper .col-sm-5 {
width: 41.66666666666667% !important;
}
#wrapper .col-sm-4 {
width: 33.33333333333333% !important;
}
#wrapper .col-sm-3 {
width: 25% !important;
}
#wrapper .col-sm-2 {
width: 16.666666666666664% !important;
}
#wrapper .col-sm-1 {
width: 8.333333333333332% !important;
}
}
@media (min-width: 992px) {
#wrapper .col-md-1, #wrapper .col-md-2, #wrapper .col-md-3, #wrapper .col-md-4, #wrapper .col-md-5, #wrapper .col-md-6, #wrapper .col-md-7, #wrapper .col-md-8, #wrapper .col-md-9, #wrapper .col-md-10, #wrapper .col-md-11, #wrapper .col-md-12 {
float: left !important;
}
#wrapper .col-md-12 {
width: 100% !important;
}
#wrapper .col-md-11 {
width: 91.66666666666666% !important;
}
#wrapper .col-md-10 {
width: 83.33333333333334% !important;
}
#wrapper .col-md-9 {
width: 75% !important;
}
#wrapper .col-md-8 {
width: 66.66666666666666% !important;
}
#wrapper .col-md-7 {
width: 58.333333333333336% !important;
}
#wrapper .col-md-6 {
width: 50% !important;
}
#wrapper .col-md-5 {
width: 41.66666666666667% !important;
}
#wrapper .col-md-4 {
width: 33.33333333333333% !important;
}
#wrapper .col-md-3 {
width: 25% !important;
}
#wrapper .col-md-2 {
width: 16.666666666666664% !important;
}
#wrapper .col-md-1 {
width: 8.333333333333332% !important;
}
}
@media (min-width: 1200px) {
#wrapper .col-lg-1, #wrapper .col-lg-2, #wrapper .col-lg-3, #wrapper .col-lg-4, #wrapper .col-lg-5, #wrapper .col-lg-6, #wrapper .col-lg-7, #wrapper .col-lg-8, #wrapper .col-lg-9, #wrapper .col-lg-10, #wrapper .col-lg-11, #wrapper .col-lg-12 {
float: left !important;
}
#wrapper .col-lg-12 {
width: 100% !important;;
}
#wrapper .col-lg-11 {
width: 91.66666666666666% !important;
}
#wrapper .col-lg-10 {
width: 83.33333333333334% !important;
}
#wrapper .col-lg-9 {
width: 75%;
}
#wrapper .col-lg-8 {
width: 66.66666666666666% !important;
}
#wrapper .col-lg-7 {
width: 58.333333333333336% !important;
}
#wrapper .col-lg-6 {
width: 50% !important;
}
#wrapper .col-lg-5 {
width: 41.66666666666667% !important;
}
#wrapper .col-lg-4 {
width: 33.33333333333333% !important;
}
#wrapper .col-lg-3 {
width: 25% !important;
}
#wrapper .col-lg-2 {
width: 16.666666666666664% !important;
}
#wrapper .col-lg-1 {
width: 8.333333333333332% !important;
}
}
/*---------------------------------------------------------------------------*/
/* Megamenu
/*---------------------------------------------------------------------------*/
#wrapper .fusion-megamenu-wrapper.col-span-1 {
width: 192px;
}
#wrapper .fusion-megamenu-wrapper.col-span-2 {
width: 384px;
}
#wrapper .fusion-megamenu-wrapper.col-span-3 {
width: 576px;
}
#wrapper .fusion-megamenu-wrapper {
width: 768px;
-webkit-box-shadow: 0 2px 2px #999 !important;
-moz-box-shadow: 0 2px 2px #999 !important;
box-shadow: 0 2px 2px #999 !important;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-holder,
#wrapper .fusion-megamenu-wrapper .fusion-megamenu,
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu,
#wrapper .fusion-megamenu-wrapper .sub-menu {
padding: 0;
list-style: none;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-title {
margin: 0;
font-size: 13px;
line-height: 20px;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-icon,
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-bullet,
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-widgets-container {
display: none;
}
#wrapper .mobile-nav-item .fusion-megamenu-icon,
#wrapper .mobile-nav-item .fusion-megamenu-bullet{
display: none;
}
#wrapper .fusion-megamenu-wrapper .text-menu-icon {
position: absolute;
}
#wrapper .fusion-megamenu-wrapper .menu-text {
margin-left: 23px;
}
#wrapper .mobile-nav-item .fusion-megamenu-wrapper .row {
padding: 0;
}
#wrapper .mobile-nav-item .fusion-megamenu-title {
font-weight: normal;
margin: 0;
}
@media (min-width: 940px) {
#wrapper .fusion-megamenu-wrapper.col-span-1 {
width: 235px;
}
#wrapper .fusion-megamenu-wrapper.col-span-2 {
width: 470px;
}
#wrapper .fusion-megamenu-wrapper.col-span-3 {
width: 705px;
}
#wrapper .fusion-megamenu-wrapper {
width: 940px;
}
}
@media (min-width: 768px) {
#wrapper .fusion-megamenu-wrapper {
position: absolute;
left: 0;
z-index: 20000;
}
#wrapper .fusion-megamenu-wrapper a:hover {
color: #333;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-holder {
width: 100% !important;
padding: 0;
border-top: 3px solid #a0ce4e;
background-color: #edebeb;
}
#wrapper .fusion-megamenu-wrapper .sub-menu {
padding: 0;
list-style: none;
}
#wrapper .fusion-megamenu-wrapper .sub-menu.deep-level a {
padding-left: 49px !important;
}
#wrapper .fusion-megamenu-wrapper .sub-menu.deep-level .deep-level a {
padding-left: 64px !important;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu {
display: table;
padding: 0;
width: 100%;
list-style: none;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-border {
border-bottom: 1px solid #dcd9d9;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu {
display: table-cell;
float: none;
padding: 29px 0;
border-right: 1px solid #dcd9d9;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu li a {
display: block;
padding: 5px 34px !important;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu li a:hover,
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu .current-menu-item a {
background-color: #f3f2f2;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu .fusion-megamenu-icon img {
margin-top: -3px;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu:nth-child(4n) {
border-right: none;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-title {
margin-top: 0;
padding: 0 34px 15px 34px;
font: 18px/20px 'MuseoSlab500Regular',arial,helvetica,sans-serif;
font-weight:normal!important;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-title a:hover {
text-decoration: none;
color: #000;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-icon,
.fusion-megamenu-icon {
display: inline;
margin-right: 12px;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-icon img,
.fusion-megamenu-icon img {
margin-top: -2px;
max-height: 15px;
vertical-align: middle;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-bullet,
.fusion-megamenu-bullet {
display: block;
float: left;
margin-top: 0.5em;
margin-right: 10px;
border-top: 3px solid transparent;
border-bottom: 3px solid transparent;
border-left: 3px solid #333;
height: 0;
width: 0;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-widgets-container {
margin-bottom: 10px;
color: #333 !important;
font-size: 13px !important;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-widgets-container.second-level-widget {
padding: 0 34px;
}
}
/* v3.4 specific styles */
#wrapper .fusion-navbar-nav li.fusion-megamenu-menu:hover .fusion-megamenu-wrapper {
//display: block;
}
#wrapper .fusion-megamenu-wrapper * {
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#wrapper #sticky-nav .fusion-megamenu-wrapper {
top: 65px;
}
#wrapper .fusion-megamenu-wrapper .row {
clear: both;
}
#wrapper #sticky-nav .fusion-megamenu-wrapper .fusion-megamenu-holder {
top: 0 !important;
}
#wrapper #sticky-nav .fusion-megamenu-wrapper .fusion-megamenu {
top: 0 !important;
}
#nav .fusion-navbar-nav .fusion-megamenu-wrapper .fusion-megamenu-holder .fusion-megamenu .fusion-megamenu-submenu,
#sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper .fusion-megamenu-holder .fusion-megamenu .fusion-megamenu-submenu {
display: table-cell !important;
float: none !important;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu {
border-top: none !important;
}
#wrapper .fusion-megamenu-wrapper .fusion-megamenu-title {
color: #333 !important;
}
#wrapper #nav .fusion-megamenu-wrapper .fusion-megamenu-title a,
#wrapper #sticky-nav .fusion-megamenu-wrapper .fusion-megamenu-title a{
padding: 0 !important;
background: none !important;
border: none !important;
font: inherit !important;
}
#nav .fusion-navbar-nav .fusion-megamenu-wrapper ul,
#sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper ul {
position: relative !important;
top: auto;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
#nav .fusion-navbar-nav .fusion-megamenu-wrapper ul ul,
#sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper ul ul {
display: table !important;
table-layout: fixed;
width: 100% !important;
border-color: #dcd9d9 !important;
top:0;
left:0;
}
#wrapper #nav .fusion-navbar-nav .fusion-megamenu-wrapper ul ul ul.sub-menu,
#wrapper #sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper ul ul ul.sub-menu {
border: none !important;
background: none !important;
display: block !important;
}
#nav .fusion-navbar-nav .fusion-megamenu-wrapper li ul li li,
#sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper li ul li li {
display: block !important;
}
#wrapper #nav .fusion-navbar-nav .fusion-megamenu-wrapper li ul li a,
#wrapper #sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper li ul li a {
border-bottom: none !important;
}
#nav .fusion-navbar-nav .fusion-megamenu-wrapper li:hover > ul,
#sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper li:hover > ul {
display: table;
}
#nav .fusion-navbar-nav .fusion-megamenu-wrapper ul li:hover ul,
#sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper ul li:hover ul {
left: 0 !important;
top: 0 !important;
}
#wrapper #nav .fusion-megamenu-wrapper .fusion-megamenu-widgets-container a,
#wrapper #sticky-nav .fusion-megamenu-wrapper .fusion-megamenu-widgets-container a {
background: none !important;
border: none !important;
}
/* mega menu RTL styles */
.rtl #wrapper .fusion-megamenu-wrapper {
left: auto;
right: 0;
}
.rtl #wrapper .fusion-megamenu-wrapper .fusion-megamenu-icon, .rtl .fusion-megamenu-icon {
margin-left: 9px;
margin-right: 0;
}
.rtl #wrapper .fusion-megamenu-wrapper .fusion-megamenu-submenu {
border-left: 1px solid #DCD9D9;
border-right: 0;
}
.rtl #wrapper #nav .fusion-navbar-nav .fusion-megamenu-wrapper ul li:hover ul,
.rtl #wrapper #sticky-nav .fusion-navbar-nav .fusion-megamenu-wrapper ul li:hover ul {
right: 0 !important;
}
.rtl #wrapper .fusion-megamenu-wrapper .fusion-megamenu-bullet, .rtl .fusion-megamenu-bullet {
border-left: none;
border-right: 3px solid #333333;
float: right;
margin-left: 10px;
margin-right: 0;
}
h3.fusion-megamenu-title {
font-weight: normal !important;
}
span.links {
color: #fff;
}
.button-2.button.large.red.animated.fadeInRight {
margin-left: 80px;
} | 0.156911 | 0.033844 |
body {
font-family: Papyrus;
font-size: 4vh;
color: white;
Background-color: black;
}
.head {
overflow: hidden;
}
.header1 {
margin-top: -315px;
font-size: 7vh;
color: #FE9001;
text-shadow: -1px 0 black, 0 3px black, 1px 0 black, 0 -1px black;
position: absolute;
}
#headImage {
margin-bottom: 4em;
background-size: cover;
Background-position: 100% 85%;
height: 40vh;
opacity: 0.4;
}
#header2 {
margin-bottom: 1em;
}
.ingredient {
color: #622813;
text-decoration: underline;
}
.burgerName {
font-size: 4.5vh;
}
#veg {
color: #0C560C;
}
.burgers {
font-size: 3.7vh;
font-weight: bold;
color: black;
border-width: 4px;
border-style: dashed;
border-color: black;
background-image: url(https://sandyridgefarmsinc.com/wp-content/uploads/2018/07/light-wood-background.jpg);
background-size: cover;
background-position: 100% 50%;
}
.select {
display: grid;
grid-row-gap: 30px;
}
.check1 {
grid-column: 1;
grid-row: 1;
}
.check2 {
grid-column: 2;
grid-row: 1;
}
.check3 {
grid-column: 3;
grid-row: 1;
}
#burger1 {
grid-column: 1;
grid-row: 2;
}
#burger2 {
grid-column: 2;
grid-row: 2;
}
#burger3 {
grid-column: 3;
grid-row: 2;
}
#img1 {
grid-column: 1;
grid-row: 3;
}
#img2 {
grid-column: 2;
grid-row: 3;
}
#img3 {
grid-column: 3;
grid-row: 3;
}
#info1 {
grid-column: 1;
grid-row: 4;
}
#info2 {
grid-column: 2;
grid-row: 4;
}
#info3 {
grid-column: 3;
grid-row: 4;
}
#custInfo {
margin-bottom: 4em;
margin-top: 4em;
border-width: 2px;
border-style: dashed;
border-color: white;
}
#info {
margin-top: 2em;
}
button:hover {
background-color:#4CAF50;
cursor: progress;
}
.form {
font-size: 3.5vh;
}
#gender {
font-size: 4vh;
}
#order {
visibility: hidden;
}
#button {
margin: 5em;
} | public/css/style.css | body {
font-family: Papyrus;
font-size: 4vh;
color: white;
Background-color: black;
}
.head {
overflow: hidden;
}
.header1 {
margin-top: -315px;
font-size: 7vh;
color: #FE9001;
text-shadow: -1px 0 black, 0 3px black, 1px 0 black, 0 -1px black;
position: absolute;
}
#headImage {
margin-bottom: 4em;
background-size: cover;
Background-position: 100% 85%;
height: 40vh;
opacity: 0.4;
}
#header2 {
margin-bottom: 1em;
}
.ingredient {
color: #622813;
text-decoration: underline;
}
.burgerName {
font-size: 4.5vh;
}
#veg {
color: #0C560C;
}
.burgers {
font-size: 3.7vh;
font-weight: bold;
color: black;
border-width: 4px;
border-style: dashed;
border-color: black;
background-image: url(https://sandyridgefarmsinc.com/wp-content/uploads/2018/07/light-wood-background.jpg);
background-size: cover;
background-position: 100% 50%;
}
.select {
display: grid;
grid-row-gap: 30px;
}
.check1 {
grid-column: 1;
grid-row: 1;
}
.check2 {
grid-column: 2;
grid-row: 1;
}
.check3 {
grid-column: 3;
grid-row: 1;
}
#burger1 {
grid-column: 1;
grid-row: 2;
}
#burger2 {
grid-column: 2;
grid-row: 2;
}
#burger3 {
grid-column: 3;
grid-row: 2;
}
#img1 {
grid-column: 1;
grid-row: 3;
}
#img2 {
grid-column: 2;
grid-row: 3;
}
#img3 {
grid-column: 3;
grid-row: 3;
}
#info1 {
grid-column: 1;
grid-row: 4;
}
#info2 {
grid-column: 2;
grid-row: 4;
}
#info3 {
grid-column: 3;
grid-row: 4;
}
#custInfo {
margin-bottom: 4em;
margin-top: 4em;
border-width: 2px;
border-style: dashed;
border-color: white;
}
#info {
margin-top: 2em;
}
button:hover {
background-color:#4CAF50;
cursor: progress;
}
.form {
font-size: 3.5vh;
}
#gender {
font-size: 4vh;
}
#order {
visibility: hidden;
}
#button {
margin: 5em;
} | 0.328745 | 0.114369 |
1) variable
2) mixin
3) button
4) base
5) color
6) header
7) mega-menu
8) footer
9) banner
10) title
11) effect
12) feature-box
13) video
14) portfolio
15) process-bar
16) testimonial
17) team
18) client
19) accordion
20) price-table
21) blog
22) social
23) form
24) list
25) space
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap");
/*----------------------------------
* Buttons
----------------------------------*/
.m-btn-link {
display: inline-block;
text-decoration: none;
font-size: 14px;
text-decoration: none;
text-transform: uppercase;
font-weight: 600;
color: #d9832e;
border-bottom: 2px solid currentColor; }
.m-btn-link:hover {
color: #090a0c; }
.m-btn {
display: inline-block;
border: 2px solid transparent;
color: inherit;
line-height: inherit;
border-radius: 0;
width: auto;
padding: 10px 20px;
font-size: 14px;
cursor: pointer;
font-weight: 500;
text-transform: uppercase;
-moz-transition: ease-in-out all 0.55s;
-o-transition: ease-in-out all 0.55s;
-webkit-transition: ease-in-out all 0.55s;
transition: ease-in-out all 0.55s;
text-align: center; }
.m-btn.m-btn-xsm {
font-size: 10px;
padding: 2px 17px; }
.m-btn.m-btn-sm {
font-size: 11px;
padding: 4px 24px; }
.m-btn.m-btn-lg {
font-size: 13px;
padding: 12px 34px;
line-height: 25px; }
.m-btn.m-btn-xl {
font-size: 15px;
padding: 15px 40px;
line-height: 25px; }
.m-btn.m-btn-theme {
background: #d9832e;
color: #ffffff;
border-color: #d9832e; }
.m-btn.m-btn-theme:hover {
background: #090a0c;
border-color: #090a0c; }
.m-btn.m-btn-t-theme {
background: transparent;
color: #d9832e;
border-color: #d9832e; }
.m-btn.m-btn-t-theme:hover {
background: #d9832e;
border-color: #d9832e;
color: #ffffff; }
.m-btn.m-btn-dark {
background: #090a0c;
color: #ffffff;
border-color: #090a0c; }
.m-btn.m-btn-dark:hover {
background: #d9832e;
border-color: #d9832e; }
.m-btn.m-btn-t-dark {
background: transparent;
color: #090a0c;
border-color: #090a0c; }
.m-btn.m-btn-t-dark:hover {
background: #090a0c;
border-color: #090a0c;
color: #ffffff; }
.m-btn.m-btn-white {
background: #ffffff;
color: #d9832e;
border-color: #ffffff; }
.m-btn.m-btn-white:hover {
background: transparent;
border-color: #ffffff;
color: #ffffff; }
.m-btn.m-btn-t-white {
background: transparent;
color: #ffffff;
border-color: #ffffff; }
.m-btn.m-btn-t-white:hover {
background: #ffffff;
border-color: #ffffff;
color: #090a0c; }
/* Icon
----------------*/
.video-btn {
position: relative;
width: 80px;
height: 80px;
text-align: center;
display: inline-block;
vertical-align: middle;
border-radius: 50%;
-moz-transition: ease all 0.55s;
-o-transition: ease all 0.55s;
-webkit-transition: ease all 0.55s;
transition: ease all 0.55s;
z-index: 1;
border: none; }
.video-btn:after {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
pointer-events: none;
z-index: -1; }
.video-btn.white {
background: #ffffff; }
.video-btn.white:after {
background: #ffffff; }
.video-btn.white span {
color: #d9832e; }
.video-btn.theme {
background: #d9832e; }
.video-btn.theme:after {
background: #d9832e; }
.video-btn.theme span {
color: #ffffff; }
.video-btn span {
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
border-left: 20px solid currentcolor;
position: absolute;
top: 0;
bottom: 0;
left: 9px;
right: 0;
margin: auto;
width: 0px;
height: 0px; }
@keyframes pulse-border {
0% {
-moz-transform: scale(0.8);
-o-transform: scale(0.8);
-ms-transform: scale(0.8);
-webkit-transform: scale(0.8);
transform: scale(0.8);
opacity: 1; }
100% {
-moz-transform: scale(2);
-o-transform: scale(2);
-ms-transform: scale(2);
-webkit-transform: scale(2);
transform: scale(2);
opacity: 0; } }
/* ------------------------
* General
------------------------*/
body {
font-family: "Poppins", sans-serif;
font-size: 15px;
color: #555a64;
font-weight: 400;
line-height: 1.6;
font-smoothing: antialiased; }
html {
overflow-x: hidden; }
a {
color: #d9832e; }
a:hover {
color: #bc6f22;
text-decoration: none; }
img {
max-width: 100%; }
.fa,
.fab,
.fal,
.far,
.fas {
line-height: inherit; }
mark {
background-image: linear-gradient(#7ef6e7, #81f1e7);
background-size: 100% 34%;
background-repeat: no-repeat;
background-position: 0 bottom;
background-color: transparent;
padding: 0;
color: currentColor; }
/* ----------------------
* Loading
---------------------------*/
#loading {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #d9832e;
z-index: 99999; }
.load-circle {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
width: 50px;
height: 50px; }
.load-circle span {
display: inline-block;
width: 64px;
height: 64px; }
.load-circle span:after {
content: " ";
display: block;
width: 46px;
height: 46px;
margin: 1px;
border-radius: 50%;
border: 5px solid #ffffff;
border-color: #ffffff transparent #ffffff transparent;
animation: lds-dual-ring 1.2s linear infinite; }
@keyframes lds-dual-ring {
0% {
transform: rotate(0deg); }
100% {
transform: rotate(360deg); } }
/* ----------------------
*Heading fonts size
---------------------------*/
.h1,
h1 {
font-size: 50px; }
@media (max-width: 991px) {
.h1,
h1 {
font-size: 40px; } }
@media (max-width: 767px) {
.h1,
h1 {
font-size: 35px; } }
.h2,
h2 {
font-size: 44px; }
@media (max-width: 991px) {
.h2,
h2 {
font-size: 36px; } }
@media (max-width: 767px) {
.h2,
h2 {
font-size: 32px; } }
.h3,
h3 {
font-size: 32px; }
@media (max-width: 991px) {
.h3,
h3 {
font-size: 28px; } }
@media (max-width: 767px) {
.h3,
h3 {
font-size: 24px; } }
.h4,
h4 {
font-size: 26px; }
@media (max-width: 767px) {
.h4,
h4 {
font-size: 22px; } }
.h5,
h5 {
font-size: 20px; }
.h6,
h6 {
font-size: 18px; }
/* ----------------------
* owl
---------------------------*/
.owl-dots {
text-align: center; }
.owl-dots .owl-dot {
display: inline-block;
vertical-align: top;
width: 15px;
height: 15px;
background: #ffffff;
border: 1px solid #d9832e;
-moz-transition: ease all 0.55s;
-o-transition: ease all 0.55s;
-webkit-transition: ease all 0.55s;
transition: ease all 0.55s;
border-radius: 50%;
margin: 0 5px; }
.owl-carousel-white .owl-dots .owl-dot {
border-color: #ffffff;
background: none; }
.owl-dots .owl-dot.active {
background: #d9832e; }
.owl-carousel-white .owl-dots .owl-dot.active {
background: #ffffff; }
.owl-carousel .owl-item img {
width: auto;
max-width: 100%; }
/* Background color
-------------------------------*/
.theme-bg {
background-color: #d9832e; }
.dark-bg {
background-color: #090a0c; }
.gray-bg {
background-color: #eaedf2; }
.white-bg {
background-color: #ffffff; }
.blue-bg {
background-color: #49bedf; }
/* Text color
-------------------------------*/
.white-color {
color: #ffffff; }
.white-color-light {
color: rgba(255, 255, 255, 0.65); }
.dark-color {
color: #090a0c; }
.body-color {
color: #555a64; }
.theme-color {
color: #d9832e; }
.green-color {
color: #11e279; }
/* Toggle Menu
-------------------------*/
.navbar-toggler,
.toggler-menu {
width: 40px;
height: 40px;
position: relative;
margin: 0;
border-radius: 0;
padding: 0;
margin-left: 15px;
background: #d9832e;
border: none; }
.navbar-toggler span,
.toggler-menu span {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 25px;
height: 2px;
margin: auto;
box-shadow: 0px -8px 0 0px currentColor, 0px 8px 0 0px currentColor;
background: #ffffff;
color: #ffffff; }
.mob-header {
position: fixed;
top: 0;
right: 0;
z-index: 3;
left: 0;
padding: 6px 10px;
background: #ffffff; }
.mob-header .toggler-menu {
margin-left: auto; }
.mob-header .navbar-brand {
font-size: 20px; }
.mob-header .navbar-brand a {
color: #d9832e;
font-weight: 600; }
@media (min-width: 992px) {
.mob-header {
display: none; } }
/* Side Menu
-----------------------------*/
.header-left {
position: fixed;
top: 0;
left: 0;
width: 95px;
background: #ffffff;
overflow: hidden;
border-radius: 0;
bottom: 0;
box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.29);
z-index: 3; }
@media (max-width: 991px) {
.header-left {
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s;
left: -150px; }
.header-left.menu-open {
left: 0; } }
.header-left .navbar-brand {
margin: 0;
text-align: center;
width: 100%;
padding: 0; }
.header-left .navbar-brand a {
padding: 10px 0;
background: #d9832e;
font-weight: 600;
font-size: 14px;
color: #ffffff;
display: block; }
.header-left .nav li {
width: 100%;
text-align: center; }
.header-left .nav li a {
font-size: 12px;
font-weight: 500;
padding: 10px 0;
display: block;
position: relative;
border-bottom: 1px solid rgba(9, 10, 12, 0.06);
text-transform: uppercase;
letter-spacing: 0.055rem;
color: #090a0c; }
.header-left .nav li a:after {
content: "";
position: absolute;
right: 0;
width: 2px;
height: 0;
background: #d9832e;
top: auto;
bottom: 0;
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s; }
.header-left .nav li a i {
font-size: 20px;
width: 100%; }
.header-left .nav li a.active, .header-left .nav li a:hover {
color: #d9832e; }
.header-left .nav li a.active:after {
height: 100%;
bottom: auto;
top: 0; }
/* Header Dark
-----------------------------*/
@media (min-width: 992px) {
.header-dark {
padding: 0;
background: rgba(255, 255, 255, 0.72);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 5; }
.fixed-header .header-dark {
background: #ffffff; }
.header-dark.header-transparent {
background: transparent; }
.fixed-header .header-dark.header-transparent {
background: #ffffff; }
.header-dark .navbar-brand {
font-weight: 600;
font-size: 24px;
text-transform: uppercase;
color: #090a0c; }
.header-dark .navbar-nav .nav-link {
line-height: 60px;
padding: 0 10px !important;
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.035rem;
color: #090a0c;
margin-left: 10px; }
.header-dark .navbar-nav .nav-link.active, .header-dark .navbar-nav .nav-link:hover {
color: #d9832e; } }
/* Header Dark
-----------------------------*/
@media (min-width: 992px) {
.header-white {
padding: 0;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 5; }
.fixed-header .header-white {
background: #ffffff; }
.header-white .navbar-brand {
font-weight: 600;
font-size: 24px;
text-transform: uppercase;
color: #ffffff; }
.fixed-header .header-white .navbar-brand {
color: #090a0c; }
.header-white .navbar-nav .nav-link {
line-height: 60px;
padding: 0 10px !important;
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.035rem;
color: rgba(255, 255, 255, 0.7);
margin-left: 10px; }
.fixed-header .header-white .navbar-nav .nav-link {
color: #090a0c; }
.header-white .navbar-nav .nav-link.active, .header-white .navbar-nav .nav-link:hover {
color: #ffffff; }
.fixed-header .header-white .navbar-nav .nav-link.active, .fixed-header .header-white .navbar-nav .nav-link:hover {
color: #d9832e; } }
/* Mobile
-----------------------------*/
@media (max-width: 991px) {
.header-nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 5; }
.fixed-header .header-nav {
background: #ffffff; }
.header-nav .navbar-brand {
font-weight: 600;
font-size: 24px;
text-transform: uppercase;
color: #090a0c; }
.header-nav.header-white .navbar-brand {
color: #ffffff; }
.fixed-header .header-nav.header-white .navbar-brand {
color: #090a0c; }
.header-nav .navbar-nav {
padding: 8px 15px;
border: 1px solid #ddd;
background: #ffffff; }
.header-nav .navbar-nav > li + li .nav-link {
border-top: 1px solid #ddd; }
.header-nav .navbar-nav .nav-link {
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.035rem;
color: #090a0c; }
.header-nav .navbar-nav .nav-link.active, .header-nav .navbar-nav .nav-link:hover {
color: #d9832e; } }
.footer {
padding: 12px 0;
background: #111; }
.footer .nav a {
color: rgba(255, 255, 255, 0.5);
font-size: 14px;
margin-right: 17px; }
.footer .nav a:hover {
color: #ffffff; }
.footer p {
color: rgba(255, 255, 255, 0.5);
font-size: 12px;
margin: 0; }
.section-title h3 {
font-weight: 700;
font-size: 35px;
margin: 0 0 10px;
position: relative;
display: inline-block;
vertical-align: top;
z-index: 1;
padding: 0 0 10px; }
.section-title h3:after {
content: "";
position: absolute;
bottom: 0;
left: 0;
margin: auto;
height: 2px;
z-index: -1;
background: #d9832e;
width: 50px; }
.section-title p {
margin: 0;
font-size: 14px;
letter-spacing: 2px; }
.skill-lt:not(:first-child) {
margin-top: 30px; }
.skill-lt h6 {
font-size: 16px;
margin: 0 0 10px; }
.skill-lt .skill-bar {
position: relative;
background: #eee; }
.skill-lt .skill-bar .skill-bar-in {
width: 0px;
-moz-transition: ease all 0.55s;
-o-transition: ease all 0.55s;
-webkit-transition: ease all 0.55s;
transition: ease all 0.55s;
height: 5px;
position: relative; }
.skill-lt .skill-bar .skill-bar-in span {
position: absolute;
right: 0;
top: -30px;
font-size: 14px; }
.skill-lt.md .skill-bar .skill-bar-in {
height: 8px; }
.skill-lt.lg .skill-bar .skill-bar-in {
height: 10px; }
.skill-lt.light .skill-bar {
background: rgba(0, 0, 0, 0.5); }
/*---------------------------------
* sec-round
-----------------------------------*/
.sec-round {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0; }
.sec-round .full-height {
height: 100%; }
.sec-round .round-item {
float: left;
width: 20%;
height: 100%;
box-sizing: border-box;
border-right: 1px solid rgba(153, 153, 153, 0.11);
height: 100%;
position: relative; }
.sec-round .round-item:first-child {
border-left: 1px solid rgba(153, 153, 153, 0.11); }
/* ----------------------
* Section
-------------------------*/
.container-large {
max-width: 1440px; }
.container-small {
max-width: 750px; }
.section {
padding: 100px 0; }
@media (max-width: 991px) {
.section {
padding-top: 80px;
padding-bottom: 80px; } }
@media (max-width: 767px) {
.section {
padding-top: 60px;
padding-bottom: 60px; } }
.section-top-up .container {
margin-top: -190px;
position: relative;
z-index: 1; }
.section-top-up-100 .container {
margin-top: -100px;
position: relative;
z-index: 1; }
/* ----------------------
* Box shadow
---------------------------*/
.box-shadow-lg {
box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1); }
.box-shadow {
box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1); }
.box-shadow-hover {
box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1); }
.box-shadow-hover:hover {
box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1); }
.box-shadow-only-hover:hover {
box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1); }
.border-radius-50 {
border-radius: 50%; }
/* ----------------------
* Opacity
---------------------------*/
.opacity-1 {
opacity: 0.1; }
.opacity-2 {
opacity: 0.2; }
.opacity-3 {
opacity: 0.3; }
.opacity-4 {
opacity: 0.4; }
.opacity-5 {
opacity: 0.5; }
.opacity-6 {
opacity: 0.6; }
.opacity-7 {
opacity: 0.7; }
.opacity-8 {
opacity: 0.8; }
.opacity-9 {
opacity: 0.9; }
/* ----------------------
* transeition
---------------------------*/
.transition {
-moz-transition: ease-in-out all 0.35s;
-o-transition: ease-in-out all 0.35s;
-webkit-transition: ease-in-out all 0.35s;
transition: ease-in-out all 0.35s; }
/* ----------------------
* Image Hover
---------------------------*/
.img-hover .img-hover-in {
overflow: hidden; }
.img-hover .img-hover-in img {
-moz-transition: ease-in-out all 0.33s;
-o-transition: ease-in-out all 0.33s;
-webkit-transition: ease-in-out all 0.33s;
transition: ease-in-out all 0.33s;
-moz-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1); }
.img-hover:hover .img-hover-in img {
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
-ms-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1); }
/* ----------------------
* Top Hover
---------------------------*/
.hover-top {
position: relative;
top: 0; }
.hover-top:hover {
top: -10px; }
/* ----------------------
* Grayscale Hover
---------------------------*/
.grayscale {
-webkit-filter: grayscale(100%);
filter: grayscale(100%); }
.grayscale-hover img {
-webkit-filter: grayscale(100%);
filter: grayscale(100%); }
.grayscale-hover:hover img {
-webkit-filter: grayscale(0);
filter: grayscale(0);
opacity: 1; }
.font-alt {
font-family: "Poppins", sans-serif; }
/* Property
---------------------------*/
.bg-cover {
background-size: cover; }
.bg-no-repeat {
background-repeat: no-repeat; }
.bg-fixed {
background-attachment: fixed; }
.bg-center {
background-position: center; }
/* Letter spacing
-------------------------------*/
.letter-spacing-1 {
letter-spacing: 1px; }
.letter-spacing-2 {
letter-spacing: 2px; }
.letter-spacing-3 {
letter-spacing: 3px; }
.letter-spacing-4 {
letter-spacing: 4px; }
.letter-spacing-5 {
letter-spacing: 5px; }
.letter-spacing-6 {
letter-spacing: 6px; }
.letter-spacing-7 {
letter-spacing: 7px; }
.letter-spacing-8 {
letter-spacing: 8px; }
.letter-spacing-9 {
letter-spacing: 9px; }
.letter-spacing-10 {
letter-spacing: 10px; }
/* Height Width
--------------------*/
.w-5px {
width: 5px; }
.w-10px {
width: 10px; }
.w-15px {
width: 15px; }
.w-20px {
width: 20px; }
.w-25px {
width: 25px; }
.w-30px {
width: 30px; }
.w-35px {
width: 35px; }
.w-40px {
width: 40px; }
.w-45px {
width: 45px; }
.w-50px {
width: 50px; }
.w-55px {
width: 55px; }
.w-60px {
width: 60px; }
.w-65px {
width: 65px; }
.w-70px {
width: 70px; }
.w-75px {
width: 75px; }
.w-80px {
width: 80px; }
.w-85px {
width: 85px; }
.w-90px {
width: 90px; }
.w-95px {
width: 95px; }
.w-100px {
width: 100px; }
.w-150px {
width: 150px; }
.w-200px {
width: 200px; }
.w-250px {
width: 250px; }
.w-300px {
width: 300px; }
.w-350px {
width: 350px; }
.w-400px {
width: 400px; }
.w-450px {
width: 450px; }
.w-500px {
width: 500px; }
.w-550px {
width: 550px; }
.w-600px {
width: 600px; }
.w-650px {
width: 650px; }
.w-700px {
width: 700px; }
.w-750px {
width: 750px; }
.w-800px {
width: 800px; }
.w-850px {
width: 850px; }
.w-900px {
width: 900px; }
.w-950px {
width: 950px; }
.w-1000px {
width: 1000px; }
.max-w-100 {
max-width: 100%; }
.min-h-350px {
min-height: 350px; }
.min-h-50vw {
min-height: 65vh; }
.full-screen {
min-height: 100vh; }
.screen-85 {
min-height: 85vh; }
.screen-65 {
min-height: 65vh; }
@media (max-width: 767px) {
.sm-full-screen-auto {
min-height: auto; } }
.max-width-auto {
max-width: none; }
@media (max-width: 991px) {
.max-width-auto {
max-width: 100%; } }
/* Font wight
--------------------*/
.font-w-100 {
font-weight: 100; }
.font-w-200 {
font-weight: 200; }
.font-w-300 {
font-weight: 300; }
.font-w-400 {
font-weight: 400; }
.font-w-500 {
font-weight: 500; }
.font-w-600 {
font-weight: 600; }
.font-w-700 {
font-weight: 700; }
.font-w-800 {
font-weight: 800; }
.font-w-900 {
font-weight: 900; }
/* Margin Padding
--------------------*/
.m-0px {
margin: 0px; }
.m-0px-tb {
margin-top: 0px;
margin-bottom: 0px; }
.m-0px-lr {
margin-left: 0px;
margin-right: 0px; }
.m-0px-t {
margin-top: 0px; }
.m-0px-l {
margin-left: 0px; }
.m-0px-r {
margin-right: 0px; }
.m-0px-b {
margin-bottom: 0px; }
.p-0px {
padding: 0px; }
.p-0px-tb {
padding-top: 0px;
padding-bottom: 0px; }
.p-0px-lr {
padding-left: 0px;
padding-right: 0px; }
.p-0px-t {
padding-top: 0px; }
.p-0px-l {
padding-left: 0px; }
.p-0px-r {
padding-right: 0px; }
.p-0px-b {
padding-bottom: 0px; }
.m-5px {
margin: 5px; }
.m-5px-tb {
margin-top: 5px;
margin-bottom: 5px; }
.m-5px-lr {
margin-left: 5px;
margin-right: 5px; }
.m-5px-t {
margin-top: 5px; }
.m-5px-l {
margin-left: 5px; }
.m-5px-r {
margin-right: 5px; }
.m-5px-b {
margin-bottom: 5px; }
.p-5px {
padding: 5px; }
.p-5px-tb {
padding-top: 5px;
padding-bottom: 5px; }
.p-5px-lr {
padding-left: 5px;
padding-right: 5px; }
.p-5px-t {
padding-top: 5px; }
.p-5px-l {
padding-left: 5px; }
.p-5px-r {
padding-right: 5px; }
.p-5px-b {
padding-bottom: 5px; }
.m-10px {
margin: 10px; }
.m-10px-tb {
margin-top: 10px;
margin-bottom: 10px; }
.m-10px-lr {
margin-left: 10px;
margin-right: 10px; }
.m-10px-t {
margin-top: 10px; }
.m-10px-l {
margin-left: 10px; }
.m-10px-r {
margin-right: 10px; }
.m-10px-b {
margin-bottom: 10px; }
.p-10px {
padding: 10px; }
.p-10px-tb {
padding-top: 10px;
padding-bottom: 10px; }
.p-10px-lr {
padding-left: 10px;
padding-right: 10px; }
.p-10px-t {
padding-top: 10px; }
.p-10px-l {
padding-left: 10px; }
.p-10px-r {
padding-right: 10px; }
.p-10px-b {
padding-bottom: 10px; }
.m-15px {
margin: 15px; }
.m-15px-tb {
margin-top: 15px;
margin-bottom: 15px; }
.m-15px-lr {
margin-left: 15px;
margin-right: 15px; }
.m-15px-t {
margin-top: 15px; }
.m-15px-l {
margin-left: 15px; }
.m-15px-r {
margin-right: 15px; }
.m-15px-b {
margin-bottom: 15px; }
.p-15px {
padding: 15px; }
.p-15px-tb {
padding-top: 15px;
padding-bottom: 15px; }
.p-15px-lr {
padding-left: 15px;
padding-right: 15px; }
.p-15px-t {
padding-top: 15px; }
.p-15px-l {
padding-left: 15px; }
.p-15px-r {
padding-right: 15px; }
.p-15px-b {
padding-bottom: 15px; }
.m-20px {
margin: 20px; }
.m-20px-tb {
margin-top: 20px;
margin-bottom: 20px; }
.m-20px-lr {
margin-left: 20px;
margin-right: 20px; }
.m-20px-t {
margin-top: 20px; }
.m-20px-l {
margin-left: 20px; }
.m-20px-r {
margin-right: 20px; }
.m-20px-b {
margin-bottom: 20px; }
.p-20px {
padding: 20px; }
.p-20px-tb {
padding-top: 20px;
padding-bottom: 20px; }
.p-20px-lr {
padding-left: 20px;
padding-right: 20px; }
.p-20px-t {
padding-top: 20px; }
.p-20px-l {
padding-left: 20px; }
.p-20px-r {
padding-right: 20px; }
.p-20px-b {
padding-bottom: 20px; }
.m-25px {
margin: 25px; }
.m-25px-tb {
margin-top: 25px;
margin-bottom: 25px; }
.m-25px-lr {
margin-left: 25px;
margin-right: 25px; }
.m-25px-t {
margin-top: 25px; }
.m-25px-l {
margin-left: 25px; }
.m-25px-r {
margin-right: 25px; }
.m-25px-b {
margin-bottom: 25px; }
.p-25px {
padding: 25px; }
.p-25px-tb {
padding-top: 25px;
padding-bottom: 25px; }
.p-25px-lr {
padding-left: 25px;
padding-right: 25px; }
.p-25px-t {
padding-top: 25px; }
.p-25px-l {
padding-left: 25px; }
.p-25px-r {
padding-right: 25px; }
.p-25px-b {
padding-bottom: 25px; }
.m-30px {
margin: 30px; }
.m-30px-tb {
margin-top: 30px;
margin-bottom: 30px; }
.m-30px-lr {
margin-left: 30px;
margin-right: 30px; }
.m-30px-t {
margin-top: 30px; }
.m-30px-l {
margin-left: 30px; }
.m-30px-r {
margin-right: 30px; }
.m-30px-b {
margin-bottom: 30px; }
.p-30px {
padding: 30px; }
.p-30px-tb {
padding-top: 30px;
padding-bottom: 30px; }
.p-30px-lr {
padding-left: 30px;
padding-right: 30px; }
.p-30px-t {
padding-top: 30px; }
.p-30px-l {
padding-left: 30px; }
.p-30px-r {
padding-right: 30px; }
.p-30px-b {
padding-bottom: 30px; }
.m-35px {
margin: 35px; }
.m-35px-tb {
margin-top: 35px;
margin-bottom: 35px; }
.m-35px-lr {
margin-left: 35px;
margin-right: 35px; }
.m-35px-t {
margin-top: 35px; }
.m-35px-l {
margin-left: 35px; }
.m-35px-r {
margin-right: 35px; }
.m-35px-b {
margin-bottom: 35px; }
.p-35px {
padding: 35px; }
.p-35px-tb {
padding-top: 35px;
padding-bottom: 35px; }
.p-35px-lr {
padding-left: 35px;
padding-right: 35px; }
.p-35px-t {
padding-top: 35px; }
.p-35px-l {
padding-left: 35px; }
.p-35px-r {
padding-right: 35px; }
.p-35px-b {
padding-bottom: 35px; }
.m-40px {
margin: 40px; }
.m-40px-tb {
margin-top: 40px;
margin-bottom: 40px; }
.m-40px-lr {
margin-left: 40px;
margin-right: 40px; }
.m-40px-t {
margin-top: 40px; }
.m-40px-l {
margin-left: 40px; }
.m-40px-r {
margin-right: 40px; }
.m-40px-b {
margin-bottom: 40px; }
.p-40px {
padding: 40px; }
.p-40px-tb {
padding-top: 40px;
padding-bottom: 40px; }
.p-40px-lr {
padding-left: 40px;
padding-right: 40px; }
.p-40px-t {
padding-top: 40px; }
.p-40px-l {
padding-left: 40px; }
.p-40px-r {
padding-right: 40px; }
.p-40px-b {
padding-bottom: 40px; }
.m-45px {
margin: 45px; }
.m-45px-tb {
margin-top: 45px;
margin-bottom: 45px; }
.m-45px-lr {
margin-left: 45px;
margin-right: 45px; }
.m-45px-t {
margin-top: 45px; }
.m-45px-l {
margin-left: 45px; }
.m-45px-r {
margin-right: 45px; }
.m-45px-b {
margin-bottom: 45px; }
.p-45px {
padding: 45px; }
.p-45px-tb {
padding-top: 45px;
padding-bottom: 45px; }
.p-45px-lr {
padding-left: 45px;
padding-right: 45px; }
.p-45px-t {
padding-top: 45px; }
.p-45px-l {
padding-left: 45px; }
.p-45px-r {
padding-right: 45px; }
.p-45px-b {
padding-bottom: 45px; }
.m-50px {
margin: 50px; }
.m-50px-tb {
margin-top: 50px;
margin-bottom: 50px; }
.m-50px-lr {
margin-left: 50px;
margin-right: 50px; }
.m-50px-t {
margin-top: 50px; }
.m-50px-l {
margin-left: 50px; }
.m-50px-r {
margin-right: 50px; }
.m-50px-b {
margin-bottom: 50px; }
.p-50px {
padding: 50px; }
.p-50px-tb {
padding-top: 50px;
padding-bottom: 50px; }
.p-50px-lr {
padding-left: 50px;
padding-right: 50px; }
.p-50px-t {
padding-top: 50px; }
.p-50px-l {
padding-left: 50px; }
.p-50px-r {
padding-right: 50px; }
.p-50px-b {
padding-bottom: 50px; }
.m-55px {
margin: 55px; }
.m-55px-tb {
margin-top: 55px;
margin-bottom: 55px; }
.m-55px-lr {
margin-left: 55px;
margin-right: 55px; }
.m-55px-t {
margin-top: 55px; }
.m-55px-l {
margin-left: 55px; }
.m-55px-r {
margin-right: 55px; }
.m-55px-b {
margin-bottom: 55px; }
.p-55px {
padding: 55px; }
.p-55px-tb {
padding-top: 55px;
padding-bottom: 55px; }
.p-55px-lr {
padding-left: 55px;
padding-right: 55px; }
.p-55px-t {
padding-top: 55px; }
.p-55px-l {
padding-left: 55px; }
.p-55px-r {
padding-right: 55px; }
.p-55px-b {
padding-bottom: 55px; }
.m-60px {
margin: 60px; }
.m-60px-tb {
margin-top: 60px;
margin-bottom: 60px; }
.m-60px-lr {
margin-left: 60px;
margin-right: 60px; }
.m-60px-t {
margin-top: 60px; }
.m-60px-l {
margin-left: 60px; }
.m-60px-r {
margin-right: 60px; }
.m-60px-b {
margin-bottom: 60px; }
.p-60px {
padding: 60px; }
.p-60px-tb {
padding-top: 60px;
padding-bottom: 60px; }
.p-60px-lr {
padding-left: 60px;
padding-right: 60px; }
.p-60px-t {
padding-top: 60px; }
.p-60px-l {
padding-left: 60px; }
.p-60px-r {
padding-right: 60px; }
.p-60px-b {
padding-bottom: 60px; }
.m-65px {
margin: 65px; }
.m-65px-tb {
margin-top: 65px;
margin-bottom: 65px; }
.m-65px-lr {
margin-left: 65px;
margin-right: 65px; }
.m-65px-t {
margin-top: 65px; }
.m-65px-l {
margin-left: 65px; }
.m-65px-r {
margin-right: 65px; }
.m-65px-b {
margin-bottom: 65px; }
.p-65px {
padding: 65px; }
.p-65px-tb {
padding-top: 65px;
padding-bottom: 65px; }
.p-65px-lr {
padding-left: 65px;
padding-right: 65px; }
.p-65px-t {
padding-top: 65px; }
.p-65px-l {
padding-left: 65px; }
.p-65px-r {
padding-right: 65px; }
.p-65px-b {
padding-bottom: 65px; }
.m-70px {
margin: 70px; }
.m-70px-tb {
margin-top: 70px;
margin-bottom: 70px; }
.m-70px-lr {
margin-left: 70px;
margin-right: 70px; }
.m-70px-t {
margin-top: 70px; }
.m-70px-l {
margin-left: 70px; }
.m-70px-r {
margin-right: 70px; }
.m-70px-b {
margin-bottom: 70px; }
.p-70px {
padding: 70px; }
.p-70px-tb {
padding-top: 70px;
padding-bottom: 70px; }
.p-70px-lr {
padding-left: 70px;
padding-right: 70px; }
.p-70px-t {
padding-top: 70px; }
.p-70px-l {
padding-left: 70px; }
.p-70px-r {
padding-right: 70px; }
.p-70px-b {
padding-bottom: 70px; }
.m-75px {
margin: 75px; }
.m-75px-tb {
margin-top: 75px;
margin-bottom: 75px; }
.m-75px-lr {
margin-left: 75px;
margin-right: 75px; }
.m-75px-t {
margin-top: 75px; }
.m-75px-l {
margin-left: 75px; }
.m-75px-r {
margin-right: 75px; }
.m-75px-b {
margin-bottom: 75px; }
.p-75px {
padding: 75px; }
.p-75px-tb {
padding-top: 75px;
padding-bottom: 75px; }
.p-75px-lr {
padding-left: 75px;
padding-right: 75px; }
.p-75px-t {
padding-top: 75px; }
.p-75px-l {
padding-left: 75px; }
.p-75px-r {
padding-right: 75px; }
.p-75px-b {
padding-bottom: 75px; }
.m-80px {
margin: 80px; }
.m-80px-tb {
margin-top: 80px;
margin-bottom: 80px; }
.m-80px-lr {
margin-left: 80px;
margin-right: 80px; }
.m-80px-t {
margin-top: 80px; }
.m-80px-l {
margin-left: 80px; }
.m-80px-r {
margin-right: 80px; }
.m-80px-b {
margin-bottom: 80px; }
.p-80px {
padding: 80px; }
.p-80px-tb {
padding-top: 80px;
padding-bottom: 80px; }
.p-80px-lr {
padding-left: 80px;
padding-right: 80px; }
.p-80px-t {
padding-top: 80px; }
.p-80px-l {
padding-left: 80px; }
.p-80px-r {
padding-right: 80px; }
.p-80px-b {
padding-bottom: 80px; }
.m-85px {
margin: 85px; }
.m-85px-tb {
margin-top: 85px;
margin-bottom: 85px; }
.m-85px-lr {
margin-left: 85px;
margin-right: 85px; }
.m-85px-t {
margin-top: 85px; }
.m-85px-l {
margin-left: 85px; }
.m-85px-r {
margin-right: 85px; }
.m-85px-b {
margin-bottom: 85px; }
.p-85px {
padding: 85px; }
.p-85px-tb {
padding-top: 85px;
padding-bottom: 85px; }
.p-85px-lr {
padding-left: 85px;
padding-right: 85px; }
.p-85px-t {
padding-top: 85px; }
.p-85px-l {
padding-left: 85px; }
.p-85px-r {
padding-right: 85px; }
.p-85px-b {
padding-bottom: 85px; }
.m-90px {
margin: 90px; }
.m-90px-tb {
margin-top: 90px;
margin-bottom: 90px; }
.m-90px-lr {
margin-left: 90px;
margin-right: 90px; }
.m-90px-t {
margin-top: 90px; }
.m-90px-l {
margin-left: 90px; }
.m-90px-r {
margin-right: 90px; }
.m-90px-b {
margin-bottom: 90px; }
.p-90px {
padding: 90px; }
.p-90px-tb {
padding-top: 90px;
padding-bottom: 90px; }
.p-90px-lr {
padding-left: 90px;
padding-right: 90px; }
.p-90px-t {
padding-top: 90px; }
.p-90px-l {
padding-left: 90px; }
.p-90px-r {
padding-right: 90px; }
.p-90px-b {
padding-bottom: 90px; }
.m-95px {
margin: 95px; }
.m-95px-tb {
margin-top: 95px;
margin-bottom: 95px; }
.m-95px-lr {
margin-left: 95px;
margin-right: 95px; }
.m-95px-t {
margin-top: 95px; }
.m-95px-l {
margin-left: 95px; }
.m-95px-r {
margin-right: 95px; }
.m-95px-b {
margin-bottom: 95px; }
.p-95px {
padding: 95px; }
.p-95px-tb {
padding-top: 95px;
padding-bottom: 95px; }
.p-95px-lr {
padding-left: 95px;
padding-right: 95px; }
.p-95px-t {
padding-top: 95px; }
.p-95px-l {
padding-left: 95px; }
.p-95px-r {
padding-right: 95px; }
.p-95px-b {
padding-bottom: 95px; }
.m-100px {
margin: 100px; }
.m-100px-tb {
margin-top: 100px;
margin-bottom: 100px; }
.m-100px-lr {
margin-left: 100px;
margin-right: 100px; }
.m-100px-t {
margin-top: 100px; }
.m-100px-l {
margin-left: 100px; }
.m-100px-r {
margin-right: 100px; }
.m-100px-b {
margin-bottom: 100px; }
.p-100px {
padding: 100px; }
.p-100px-tb {
padding-top: 100px;
padding-bottom: 100px; }
.p-100px-lr {
padding-left: 100px;
padding-right: 100px; }
.p-100px-t {
padding-top: 100px; }
.p-100px-l {
padding-left: 100px; }
.p-100px-r {
padding-right: 100px; }
.p-100px-b {
padding-bottom: 100px; }
@media (max-width: 1200px) {
/* Margin Padding
--------------------*/
.lg-m-0px {
margin: 0px; }
.lg-m-0px-tb {
margin-top: 0px;
margin-bottom: 0px; }
.lg-m-0px-lr {
margin-left: 0px;
margin-right: 0px; }
.lg-m-0px-t {
margin-top: 0px; }
.lg-m-0px-l {
margin-left: 0px; }
.lg-m-0px-r {
margin-right: 0px; }
.lg-m-0px-b {
margin-bottom: 0px; }
.lg-p-0px {
padding: 0px; }
.lg-p-0px-tb {
padding-top: 0px;
padding-bottom: 0px; }
.lg-p-0px-lr {
padding-left: 0px;
padding-right: 0px; }
.lg-p-0px-t {
padding-top: 0px; }
.lg-p-0px-l {
padding-left: 0px; }
.lg-p-0px-r {
padding-right: 0px; }
.lg-p-0px-b {
padding-bottom: 0px; }
.lg-m-5px {
margin: 5px; }
.lg-m-5px-tb {
margin-top: 5px;
margin-bottom: 5px; }
.lg-m-5px-lr {
margin-left: 5px;
margin-right: 5px; }
.lg-m-5px-t {
margin-top: 5px; }
.lg-m-5px-l {
margin-left: 5px; }
.lg-m-5px-r {
margin-right: 5px; }
.lg-m-5px-b {
margin-bottom: 5px; }
.lg-p-5px {
padding: 5px; }
.lg-p-5px-tb {
padding-top: 5px;
padding-bottom: 5px; }
.lg-p-5px-lr {
padding-left: 5px;
padding-right: 5px; }
.lg-p-5px-t {
padding-top: 5px; }
.lg-p-5px-l {
padding-left: 5px; }
.lg-p-5px-r {
padding-right: 5px; }
.lg-p-5px-b {
padding-bottom: 5px; }
.lg-m-10px {
margin: 10px; }
.lg-m-10px-tb {
margin-top: 10px;
margin-bottom: 10px; }
.lg-m-10px-lr {
margin-left: 10px;
margin-right: 10px; }
.lg-m-10px-t {
margin-top: 10px; }
.lg-m-10px-l {
margin-left: 10px; }
.lg-m-10px-r {
margin-right: 10px; }
.lg-m-10px-b {
margin-bottom: 10px; }
.lg-p-10px {
padding: 10px; }
.lg-p-10px-tb {
padding-top: 10px;
padding-bottom: 10px; }
.lg-p-10px-lr {
padding-left: 10px;
padding-right: 10px; }
.lg-p-10px-t {
padding-top: 10px; }
.lg-p-10px-l {
padding-left: 10px; }
.lg-p-10px-r {
padding-right: 10px; }
.lg-p-10px-b {
padding-bottom: 10px; }
.lg-m-15px {
margin: 15px; }
.lg-m-15px-tb {
margin-top: 15px;
margin-bottom: 15px; }
.lg-m-15px-lr {
margin-left: 15px;
margin-right: 15px; }
.lg-m-15px-t {
margin-top: 15px; }
.lg-m-15px-l {
margin-left: 15px; }
.lg-m-15px-r {
margin-right: 15px; }
.lg-m-15px-b {
margin-bottom: 15px; }
.lg-p-15px {
padding: 15px; }
.lg-p-15px-tb {
padding-top: 15px;
padding-bottom: 15px; }
.lg-p-15px-lr {
padding-left: 15px;
padding-right: 15px; }
.lg-p-15px-t {
padding-top: 15px; }
.lg-p-15px-l {
padding-left: 15px; }
.lg-p-15px-r {
padding-right: 15px; }
.lg-p-15px-b {
padding-bottom: 15px; }
.lg-m-20px {
margin: 20px; }
.lg-m-20px-tb {
margin-top: 20px;
margin-bottom: 20px; }
.lg-m-20px-lr {
margin-left: 20px;
margin-right: 20px; }
.lg-m-20px-t {
margin-top: 20px; }
.lg-m-20px-l {
margin-left: 20px; }
.lg-m-20px-r {
margin-right: 20px; }
.lg-m-20px-b {
margin-bottom: 20px; }
.lg-p-20px {
padding: 20px; }
.lg-p-20px-tb {
padding-top: 20px;
padding-bottom: 20px; }
.lg-p-20px-lr {
padding-left: 20px;
padding-right: 20px; }
.lg-p-20px-t {
padding-top: 20px; }
.lg-p-20px-l {
padding-left: 20px; }
.lg-p-20px-r {
padding-right: 20px; }
.lg-p-20px-b {
padding-bottom: 20px; }
.lg-m-25px {
margin: 25px; }
.lg-m-25px-tb {
margin-top: 25px;
margin-bottom: 25px; }
.lg-m-25px-lr {
margin-left: 25px;
margin-right: 25px; }
.lg-m-25px-t {
margin-top: 25px; }
.lg-m-25px-l {
margin-left: 25px; }
.lg-m-25px-r {
margin-right: 25px; }
.lg-m-25px-b {
margin-bottom: 25px; }
.lg-p-25px {
padding: 25px; }
.lg-p-25px-tb {
padding-top: 25px;
padding-bottom: 25px; }
.lg-p-25px-lr {
padding-left: 25px;
padding-right: 25px; }
.lg-p-25px-t {
padding-top: 25px; }
.lg-p-25px-l {
padding-left: 25px; }
.lg-p-25px-r {
padding-right: 25px; }
.lg-p-25px-b {
padding-bottom: 25px; }
.lg-m-30px {
margin: 30px; }
.lg-m-30px-tb {
margin-top: 30px;
margin-bottom: 30px; }
.lg-m-30px-lr {
margin-left: 30px;
margin-right: 30px; }
.lg-m-30px-t {
margin-top: 30px; }
.lg-m-30px-l {
margin-left: 30px; }
.lg-m-30px-r {
margin-right: 30px; }
.lg-m-30px-b {
margin-bottom: 30px; }
.lg-p-30px {
padding: 30px; }
.lg-p-30px-tb {
padding-top: 30px;
padding-bottom: 30px; }
.lg-p-30px-lr {
padding-left: 30px;
padding-right: 30px; }
.lg-p-30px-t {
padding-top: 30px; }
.lg-p-30px-l {
padding-left: 30px; }
.lg-p-30px-r {
padding-right: 30px; }
.lg-p-30px-b {
padding-bottom: 30px; }
.lg-m-35px {
margin: 35px; }
.lg-m-35px-tb {
margin-top: 35px;
margin-bottom: 35px; }
.lg-m-35px-lr {
margin-left: 35px;
margin-right: 35px; }
.lg-m-35px-t {
margin-top: 35px; }
.lg-m-35px-l {
margin-left: 35px; }
.lg-m-35px-r {
margin-right: 35px; }
.lg-m-35px-b {
margin-bottom: 35px; }
.lg-p-35px {
padding: 35px; }
.lg-p-35px-tb {
padding-top: 35px;
padding-bottom: 35px; }
.lg-p-35px-lr {
padding-left: 35px;
padding-right: 35px; }
.lg-p-35px-t {
padding-top: 35px; }
.lg-p-35px-l {
padding-left: 35px; }
.lg-p-35px-r {
padding-right: 35px; }
.lg-p-35px-b {
padding-bottom: 35px; }
.lg-m-40px {
margin: 40px; }
.lg-m-40px-tb {
margin-top: 40px;
margin-bottom: 40px; }
.lg-m-40px-lr {
margin-left: 40px;
margin-right: 40px; }
.lg-m-40px-t {
margin-top: 40px; }
.lg-m-40px-l {
margin-left: 40px; }
.lg-m-40px-r {
margin-right: 40px; }
.lg-m-40px-b {
margin-bottom: 40px; }
.lg-p-40px {
padding: 40px; }
.lg-p-40px-tb {
padding-top: 40px;
padding-bottom: 40px; }
.lg-p-40px-lr {
padding-left: 40px;
padding-right: 40px; }
.lg-p-40px-t {
padding-top: 40px; }
.lg-p-40px-l {
padding-left: 40px; }
.lg-p-40px-r {
padding-right: 40px; }
.lg-p-40px-b {
padding-bottom: 40px; }
.lg-m-45px {
margin: 45px; }
.lg-m-45px-tb {
margin-top: 45px;
margin-bottom: 45px; }
.lg-m-45px-lr {
margin-left: 45px;
margin-right: 45px; }
.lg-m-45px-t {
margin-top: 45px; }
.lg-m-45px-l {
margin-left: 45px; }
.lg-m-45px-r {
margin-right: 45px; }
.lg-m-45px-b {
margin-bottom: 45px; }
.lg-p-45px {
padding: 45px; }
.lg-p-45px-tb {
padding-top: 45px;
padding-bottom: 45px; }
.lg-p-45px-lr {
padding-left: 45px;
padding-right: 45px; }
.lg-p-45px-t {
padding-top: 45px; }
.lg-p-45px-l {
padding-left: 45px; }
.lg-p-45px-r {
padding-right: 45px; }
.lg-p-45px-b {
padding-bottom: 45px; }
.lg-m-50px {
margin: 50px; }
.lg-m-50px-tb {
margin-top: 50px;
margin-bottom: 50px; }
.lg-m-50px-lr {
margin-left: 50px;
margin-right: 50px; }
.lg-m-50px-t {
margin-top: 50px; }
.lg-m-50px-l {
margin-left: 50px; }
.lg-m-50px-r {
margin-right: 50px; }
.lg-m-50px-b {
margin-bottom: 50px; }
.lg-p-50px {
padding: 50px; }
.lg-p-50px-tb {
padding-top: 50px;
padding-bottom: 50px; }
.lg-p-50px-lr {
padding-left: 50px;
padding-right: 50px; }
.lg-p-50px-t {
padding-top: 50px; }
.lg-p-50px-l {
padding-left: 50px; }
.lg-p-50px-r {
padding-right: 50px; }
.lg-p-50px-b {
padding-bottom: 50px; }
.lg-m-55px {
margin: 55px; }
.lg-m-55px-tb {
margin-top: 55px;
margin-bottom: 55px; }
.lg-m-55px-lr {
margin-left: 55px;
margin-right: 55px; }
.lg-m-55px-t {
margin-top: 55px; }
.lg-m-55px-l {
margin-left: 55px; }
.lg-m-55px-r {
margin-right: 55px; }
.lg-m-55px-b {
margin-bottom: 55px; }
.lg-p-55px {
padding: 55px; }
.lg-p-55px-tb {
padding-top: 55px;
padding-bottom: 55px; }
.lg-p-55px-lr {
padding-left: 55px;
padding-right: 55px; }
.lg-p-55px-t {
padding-top: 55px; }
.lg-p-55px-l {
padding-left: 55px; }
.lg-p-55px-r {
padding-right: 55px; }
.lg-p-55px-b {
padding-bottom: 55px; }
.lg-m-60px {
margin: 60px; }
.lg-m-60px-tb {
margin-top: 60px;
margin-bottom: 60px; }
.lg-m-60px-lr {
margin-left: 60px;
margin-right: 60px; }
.lg-m-60px-t {
margin-top: 60px; }
.lg-m-60px-l {
margin-left: 60px; }
.lg-m-60px-r {
margin-right: 60px; }
.lg-m-60px-b {
margin-bottom: 60px; }
.lg-p-60px {
padding: 60px; }
.lg-p-60px-tb {
padding-top: 60px;
padding-bottom: 60px; }
.lg-p-60px-lr {
padding-left: 60px;
padding-right: 60px; }
.lg-p-60px-t {
padding-top: 60px; }
.lg-p-60px-l {
padding-left: 60px; }
.lg-p-60px-r {
padding-right: 60px; }
.lg-p-60px-b {
padding-bottom: 60px; }
.lg-m-65px {
margin: 65px; }
.lg-m-65px-tb {
margin-top: 65px;
margin-bottom: 65px; }
.lg-m-65px-lr {
margin-left: 65px;
margin-right: 65px; }
.lg-m-65px-t {
margin-top: 65px; }
.lg-m-65px-l {
margin-left: 65px; }
.lg-m-65px-r {
margin-right: 65px; }
.lg-m-65px-b {
margin-bottom: 65px; }
.lg-p-65px {
padding: 65px; }
.lg-p-65px-tb {
padding-top: 65px;
padding-bottom: 65px; }
.lg-p-65px-lr {
padding-left: 65px;
padding-right: 65px; }
.lg-p-65px-t {
padding-top: 65px; }
.lg-p-65px-l {
padding-left: 65px; }
.lg-p-65px-r {
padding-right: 65px; }
.lg-p-65px-b {
padding-bottom: 65px; }
.lg-m-70px {
margin: 70px; }
.lg-m-70px-tb {
margin-top: 70px;
margin-bottom: 70px; }
.lg-m-70px-lr {
margin-left: 70px;
margin-right: 70px; }
.lg-m-70px-t {
margin-top: 70px; }
.lg-m-70px-l {
margin-left: 70px; }
.lg-m-70px-r {
margin-right: 70px; }
.lg-m-70px-b {
margin-bottom: 70px; }
.lg-p-70px {
padding: 70px; }
.lg-p-70px-tb {
padding-top: 70px;
padding-bottom: 70px; }
.lg-p-70px-lr {
padding-left: 70px;
padding-right: 70px; }
.lg-p-70px-t {
padding-top: 70px; }
.lg-p-70px-l {
padding-left: 70px; }
.lg-p-70px-r {
padding-right: 70px; }
.lg-p-70px-b {
padding-bottom: 70px; }
.lg-m-75px {
margin: 75px; }
.lg-m-75px-tb {
margin-top: 75px;
margin-bottom: 75px; }
.lg-m-75px-lr {
margin-left: 75px;
margin-right: 75px; }
.lg-m-75px-t {
margin-top: 75px; }
.lg-m-75px-l {
margin-left: 75px; }
.lg-m-75px-r {
margin-right: 75px; }
.lg-m-75px-b {
margin-bottom: 75px; }
.lg-p-75px {
padding: 75px; }
.lg-p-75px-tb {
padding-top: 75px;
padding-bottom: 75px; }
.lg-p-75px-lr {
padding-left: 75px;
padding-right: 75px; }
.lg-p-75px-t {
padding-top: 75px; }
.lg-p-75px-l {
padding-left: 75px; }
.lg-p-75px-r {
padding-right: 75px; }
.lg-p-75px-b {
padding-bottom: 75px; }
.lg-m-80px {
margin: 80px; }
.lg-m-80px-tb {
margin-top: 80px;
margin-bottom: 80px; }
.lg-m-80px-lr {
margin-left: 80px;
margin-right: 80px; }
.lg-m-80px-t {
margin-top: 80px; }
.lg-m-80px-l {
margin-left: 80px; }
.lg-m-80px-r {
margin-right: 80px; }
.lg-m-80px-b {
margin-bottom: 80px; }
.lg-p-80px {
padding: 80px; }
.lg-p-80px-tb {
padding-top: 80px;
padding-bottom: 80px; }
.lg-p-80px-lr {
padding-left: 80px;
padding-right: 80px; }
.lg-p-80px-t {
padding-top: 80px; }
.lg-p-80px-l {
padding-left: 80px; }
.lg-p-80px-r {
padding-right: 80px; }
.lg-p-80px-b {
padding-bottom: 80px; }
.lg-m-85px {
margin: 85px; }
.lg-m-85px-tb {
margin-top: 85px;
margin-bottom: 85px; }
.lg-m-85px-lr {
margin-left: 85px;
margin-right: 85px; }
.lg-m-85px-t {
margin-top: 85px; }
.lg-m-85px-l {
margin-left: 85px; }
.lg-m-85px-r {
margin-right: 85px; }
.lg-m-85px-b {
margin-bottom: 85px; }
.lg-p-85px {
padding: 85px; }
.lg-p-85px-tb {
padding-top: 85px;
padding-bottom: 85px; }
.lg-p-85px-lr {
padding-left: 85px;
padding-right: 85px; }
.lg-p-85px-t {
padding-top: 85px; }
.lg-p-85px-l {
padding-left: 85px; }
.lg-p-85px-r {
padding-right: 85px; }
.lg-p-85px-b {
padding-bottom: 85px; }
.lg-m-90px {
margin: 90px; }
.lg-m-90px-tb {
margin-top: 90px;
margin-bottom: 90px; }
.lg-m-90px-lr {
margin-left: 90px;
margin-right: 90px; }
.lg-m-90px-t {
margin-top: 90px; }
.lg-m-90px-l {
margin-left: 90px; }
.lg-m-90px-r {
margin-right: 90px; }
.lg-m-90px-b {
margin-bottom: 90px; }
.lg-p-90px {
padding: 90px; }
.lg-p-90px-tb {
padding-top: 90px;
padding-bottom: 90px; }
.lg-p-90px-lr {
padding-left: 90px;
padding-right: 90px; }
.lg-p-90px-t {
padding-top: 90px; }
.lg-p-90px-l {
padding-left: 90px; }
.lg-p-90px-r {
padding-right: 90px; }
.lg-p-90px-b {
padding-bottom: 90px; }
.lg-m-95px {
margin: 95px; }
.lg-m-95px-tb {
margin-top: 95px;
margin-bottom: 95px; }
.lg-m-95px-lr {
margin-left: 95px;
margin-right: 95px; }
.lg-m-95px-t {
margin-top: 95px; }
.lg-m-95px-l {
margin-left: 95px; }
.lg-m-95px-r {
margin-right: 95px; }
.lg-m-95px-b {
margin-bottom: 95px; }
.lg-p-95px {
padding: 95px; }
.lg-p-95px-tb {
padding-top: 95px;
padding-bottom: 95px; }
.lg-p-95px-lr {
padding-left: 95px;
padding-right: 95px; }
.lg-p-95px-t {
padding-top: 95px; }
.lg-p-95px-l {
padding-left: 95px; }
.lg-p-95px-r {
padding-right: 95px; }
.lg-p-95px-b {
padding-bottom: 95px; }
.lg-m-100px {
margin: 100px; }
.lg-m-100px-tb {
margin-top: 100px;
margin-bottom: 100px; }
.lg-m-100px-lr {
margin-left: 100px;
margin-right: 100px; }
.lg-m-100px-t {
margin-top: 100px; }
.lg-m-100px-l {
margin-left: 100px; }
.lg-m-100px-r {
margin-right: 100px; }
.lg-m-100px-b {
margin-bottom: 100px; }
.lg-p-100px {
padding: 100px; }
.lg-p-100px-tb {
padding-top: 100px;
padding-bottom: 100px; }
.lg-p-100px-lr {
padding-left: 100px;
padding-right: 100px; }
.lg-p-100px-t {
padding-top: 100px; }
.lg-p-100px-l {
padding-left: 100px; }
.lg-p-100px-r {
padding-right: 100px; }
.lg-p-100px-b {
padding-bottom: 100px; } }
@media (max-width: 991px) {
/* Margin Padding
--------------------*/
.md-m-0px {
margin: 0px; }
.md-m-0px-tb {
margin-top: 0px;
margin-bottom: 0px; }
.md-m-0px-lr {
margin-left: 0px;
margin-right: 0px; }
.md-m-0px-t {
margin-top: 0px; }
.md-m-0px-l {
margin-left: 0px; }
.md-m-0px-r {
margin-right: 0px; }
.md-m-0px-b {
margin-bottom: 0px; }
.md-p-0px {
padding: 0px; }
.md-p-0px-tb {
padding-top: 0px;
padding-bottom: 0px; }
.md-p-0px-lr {
padding-left: 0px;
padding-right: 0px; }
.md-p-0px-t {
padding-top: 0px; }
.md-p-0px-l {
padding-left: 0px; }
.md-p-0px-r {
padding-right: 0px; }
.md-p-0px-b {
padding-bottom: 0px; }
.md-m-5px {
margin: 5px; }
.md-m-5px-tb {
margin-top: 5px;
margin-bottom: 5px; }
.md-m-5px-lr {
margin-left: 5px;
margin-right: 5px; }
.md-m-5px-t {
margin-top: 5px; }
.md-m-5px-l {
margin-left: 5px; }
.md-m-5px-r {
margin-right: 5px; }
.md-m-5px-b {
margin-bottom: 5px; }
.md-p-5px {
padding: 5px; }
.md-p-5px-tb {
padding-top: 5px;
padding-bottom: 5px; }
.md-p-5px-lr {
padding-left: 5px;
padding-right: 5px; }
.md-p-5px-t {
padding-top: 5px; }
.md-p-5px-l {
padding-left: 5px; }
.md-p-5px-r {
padding-right: 5px; }
.md-p-5px-b {
padding-bottom: 5px; }
.md-m-10px {
margin: 10px; }
.md-m-10px-tb {
margin-top: 10px;
margin-bottom: 10px; }
.md-m-10px-lr {
margin-left: 10px;
margin-right: 10px; }
.md-m-10px-t {
margin-top: 10px; }
.md-m-10px-l {
margin-left: 10px; }
.md-m-10px-r {
margin-right: 10px; }
.md-m-10px-b {
margin-bottom: 10px; }
.md-p-10px {
padding: 10px; }
.md-p-10px-tb {
padding-top: 10px;
padding-bottom: 10px; }
.md-p-10px-lr {
padding-left: 10px;
padding-right: 10px; }
.md-p-10px-t {
padding-top: 10px; }
.md-p-10px-l {
padding-left: 10px; }
.md-p-10px-r {
padding-right: 10px; }
.md-p-10px-b {
padding-bottom: 10px; }
.md-m-15px {
margin: 15px; }
.md-m-15px-tb {
margin-top: 15px;
margin-bottom: 15px; }
.md-m-15px-lr {
margin-left: 15px;
margin-right: 15px; }
.md-m-15px-t {
margin-top: 15px; }
.md-m-15px-l {
margin-left: 15px; }
.md-m-15px-r {
margin-right: 15px; }
.md-m-15px-b {
margin-bottom: 15px; }
.md-p-15px {
padding: 15px; }
.md-p-15px-tb {
padding-top: 15px;
padding-bottom: 15px; }
.md-p-15px-lr {
padding-left: 15px;
padding-right: 15px; }
.md-p-15px-t {
padding-top: 15px; }
.md-p-15px-l {
padding-left: 15px; }
.md-p-15px-r {
padding-right: 15px; }
.md-p-15px-b {
padding-bottom: 15px; }
.md-m-20px {
margin: 20px; }
.md-m-20px-tb {
margin-top: 20px;
margin-bottom: 20px; }
.md-m-20px-lr {
margin-left: 20px;
margin-right: 20px; }
.md-m-20px-t {
margin-top: 20px; }
.md-m-20px-l {
margin-left: 20px; }
.md-m-20px-r {
margin-right: 20px; }
.md-m-20px-b {
margin-bottom: 20px; }
.md-p-20px {
padding: 20px; }
.md-p-20px-tb {
padding-top: 20px;
padding-bottom: 20px; }
.md-p-20px-lr {
padding-left: 20px;
padding-right: 20px; }
.md-p-20px-t {
padding-top: 20px; }
.md-p-20px-l {
padding-left: 20px; }
.md-p-20px-r {
padding-right: 20px; }
.md-p-20px-b {
padding-bottom: 20px; }
.md-m-25px {
margin: 25px; }
.md-m-25px-tb {
margin-top: 25px;
margin-bottom: 25px; }
.md-m-25px-lr {
margin-left: 25px;
margin-right: 25px; }
.md-m-25px-t {
margin-top: 25px; }
.md-m-25px-l {
margin-left: 25px; }
.md-m-25px-r {
margin-right: 25px; }
.md-m-25px-b {
margin-bottom: 25px; }
.md-p-25px {
padding: 25px; }
.md-p-25px-tb {
padding-top: 25px;
padding-bottom: 25px; }
.md-p-25px-lr {
padding-left: 25px;
padding-right: 25px; }
.md-p-25px-t {
padding-top: 25px; }
.md-p-25px-l {
padding-left: 25px; }
.md-p-25px-r {
padding-right: 25px; }
.md-p-25px-b {
padding-bottom: 25px; }
.md-m-30px {
margin: 30px; }
.md-m-30px-tb {
margin-top: 30px;
margin-bottom: 30px; }
.md-m-30px-lr {
margin-left: 30px;
margin-right: 30px; }
.md-m-30px-t {
margin-top: 30px; }
.md-m-30px-l {
margin-left: 30px; }
.md-m-30px-r {
margin-right: 30px; }
.md-m-30px-b {
margin-bottom: 30px; }
.md-p-30px {
padding: 30px; }
.md-p-30px-tb {
padding-top: 30px;
padding-bottom: 30px; }
.md-p-30px-lr {
padding-left: 30px;
padding-right: 30px; }
.md-p-30px-t {
padding-top: 30px; }
.md-p-30px-l {
padding-left: 30px; }
.md-p-30px-r {
padding-right: 30px; }
.md-p-30px-b {
padding-bottom: 30px; }
.md-m-35px {
margin: 35px; }
.md-m-35px-tb {
margin-top: 35px;
margin-bottom: 35px; }
.md-m-35px-lr {
margin-left: 35px;
margin-right: 35px; }
.md-m-35px-t {
margin-top: 35px; }
.md-m-35px-l {
margin-left: 35px; }
.md-m-35px-r {
margin-right: 35px; }
.md-m-35px-b {
margin-bottom: 35px; }
.md-p-35px {
padding: 35px; }
.md-p-35px-tb {
padding-top: 35px;
padding-bottom: 35px; }
.md-p-35px-lr {
padding-left: 35px;
padding-right: 35px; }
.md-p-35px-t {
padding-top: 35px; }
.md-p-35px-l {
padding-left: 35px; }
.md-p-35px-r {
padding-right: 35px; }
.md-p-35px-b {
padding-bottom: 35px; }
.md-m-40px {
margin: 40px; }
.md-m-40px-tb {
margin-top: 40px;
margin-bottom: 40px; }
.md-m-40px-lr {
margin-left: 40px;
margin-right: 40px; }
.md-m-40px-t {
margin-top: 40px; }
.md-m-40px-l {
margin-left: 40px; }
.md-m-40px-r {
margin-right: 40px; }
.md-m-40px-b {
margin-bottom: 40px; }
.md-p-40px {
padding: 40px; }
.md-p-40px-tb {
padding-top: 40px;
padding-bottom: 40px; }
.md-p-40px-lr {
padding-left: 40px;
padding-right: 40px; }
.md-p-40px-t {
padding-top: 40px; }
.md-p-40px-l {
padding-left: 40px; }
.md-p-40px-r {
padding-right: 40px; }
.md-p-40px-b {
padding-bottom: 40px; }
.md-m-45px {
margin: 45px; }
.md-m-45px-tb {
margin-top: 45px;
margin-bottom: 45px; }
.md-m-45px-lr {
margin-left: 45px;
margin-right: 45px; }
.md-m-45px-t {
margin-top: 45px; }
.md-m-45px-l {
margin-left: 45px; }
.md-m-45px-r {
margin-right: 45px; }
.md-m-45px-b {
margin-bottom: 45px; }
.md-p-45px {
padding: 45px; }
.md-p-45px-tb {
padding-top: 45px;
padding-bottom: 45px; }
.md-p-45px-lr {
padding-left: 45px;
padding-right: 45px; }
.md-p-45px-t {
padding-top: 45px; }
.md-p-45px-l {
padding-left: 45px; }
.md-p-45px-r {
padding-right: 45px; }
.md-p-45px-b {
padding-bottom: 45px; }
.md-m-50px {
margin: 50px; }
.md-m-50px-tb {
margin-top: 50px;
margin-bottom: 50px; }
.md-m-50px-lr {
margin-left: 50px;
margin-right: 50px; }
.md-m-50px-t {
margin-top: 50px; }
.md-m-50px-l {
margin-left: 50px; }
.md-m-50px-r {
margin-right: 50px; }
.md-m-50px-b {
margin-bottom: 50px; }
.md-p-50px {
padding: 50px; }
.md-p-50px-tb {
padding-top: 50px;
padding-bottom: 50px; }
.md-p-50px-lr {
padding-left: 50px;
padding-right: 50px; }
.md-p-50px-t {
padding-top: 50px; }
.md-p-50px-l {
padding-left: 50px; }
.md-p-50px-r {
padding-right: 50px; }
.md-p-50px-b {
padding-bottom: 50px; }
.md-m-55px {
margin: 55px; }
.md-m-55px-tb {
margin-top: 55px;
margin-bottom: 55px; }
.md-m-55px-lr {
margin-left: 55px;
margin-right: 55px; }
.md-m-55px-t {
margin-top: 55px; }
.md-m-55px-l {
margin-left: 55px; }
.md-m-55px-r {
margin-right: 55px; }
.md-m-55px-b {
margin-bottom: 55px; }
.md-p-55px {
padding: 55px; }
.md-p-55px-tb {
padding-top: 55px;
padding-bottom: 55px; }
.md-p-55px-lr {
padding-left: 55px;
padding-right: 55px; }
.md-p-55px-t {
padding-top: 55px; }
.md-p-55px-l {
padding-left: 55px; }
.md-p-55px-r {
padding-right: 55px; }
.md-p-55px-b {
padding-bottom: 55px; }
.md-m-60px {
margin: 60px; }
.md-m-60px-tb {
margin-top: 60px;
margin-bottom: 60px; }
.md-m-60px-lr {
margin-left: 60px;
margin-right: 60px; }
.md-m-60px-t {
margin-top: 60px; }
.md-m-60px-l {
margin-left: 60px; }
.md-m-60px-r {
margin-right: 60px; }
.md-m-60px-b {
margin-bottom: 60px; }
.md-p-60px {
padding: 60px; }
.md-p-60px-tb {
padding-top: 60px;
padding-bottom: 60px; }
.md-p-60px-lr {
padding-left: 60px;
padding-right: 60px; }
.md-p-60px-t {
padding-top: 60px; }
.md-p-60px-l {
padding-left: 60px; }
.md-p-60px-r {
padding-right: 60px; }
.md-p-60px-b {
padding-bottom: 60px; }
.md-m-65px {
margin: 65px; }
.md-m-65px-tb {
margin-top: 65px;
margin-bottom: 65px; }
.md-m-65px-lr {
margin-left: 65px;
margin-right: 65px; }
.md-m-65px-t {
margin-top: 65px; }
.md-m-65px-l {
margin-left: 65px; }
.md-m-65px-r {
margin-right: 65px; }
.md-m-65px-b {
margin-bottom: 65px; }
.md-p-65px {
padding: 65px; }
.md-p-65px-tb {
padding-top: 65px;
padding-bottom: 65px; }
.md-p-65px-lr {
padding-left: 65px;
padding-right: 65px; }
.md-p-65px-t {
padding-top: 65px; }
.md-p-65px-l {
padding-left: 65px; }
.md-p-65px-r {
padding-right: 65px; }
.md-p-65px-b {
padding-bottom: 65px; }
.md-m-70px {
margin: 70px; }
.md-m-70px-tb {
margin-top: 70px;
margin-bottom: 70px; }
.md-m-70px-lr {
margin-left: 70px;
margin-right: 70px; }
.md-m-70px-t {
margin-top: 70px; }
.md-m-70px-l {
margin-left: 70px; }
.md-m-70px-r {
margin-right: 70px; }
.md-m-70px-b {
margin-bottom: 70px; }
.md-p-70px {
padding: 70px; }
.md-p-70px-tb {
padding-top: 70px;
padding-bottom: 70px; }
.md-p-70px-lr {
padding-left: 70px;
padding-right: 70px; }
.md-p-70px-t {
padding-top: 70px; }
.md-p-70px-l {
padding-left: 70px; }
.md-p-70px-r {
padding-right: 70px; }
.md-p-70px-b {
padding-bottom: 70px; }
.md-m-75px {
margin: 75px; }
.md-m-75px-tb {
margin-top: 75px;
margin-bottom: 75px; }
.md-m-75px-lr {
margin-left: 75px;
margin-right: 75px; }
.md-m-75px-t {
margin-top: 75px; }
.md-m-75px-l {
margin-left: 75px; }
.md-m-75px-r {
margin-right: 75px; }
.md-m-75px-b {
margin-bottom: 75px; }
.md-p-75px {
padding: 75px; }
.md-p-75px-tb {
padding-top: 75px;
padding-bottom: 75px; }
.md-p-75px-lr {
padding-left: 75px;
padding-right: 75px; }
.md-p-75px-t {
padding-top: 75px; }
.md-p-75px-l {
padding-left: 75px; }
.md-p-75px-r {
padding-right: 75px; }
.md-p-75px-b {
padding-bottom: 75px; }
.md-m-80px {
margin: 80px; }
.md-m-80px-tb {
margin-top: 80px;
margin-bottom: 80px; }
.md-m-80px-lr {
margin-left: 80px;
margin-right: 80px; }
.md-m-80px-t {
margin-top: 80px; }
.md-m-80px-l {
margin-left: 80px; }
.md-m-80px-r {
margin-right: 80px; }
.md-m-80px-b {
margin-bottom: 80px; }
.md-p-80px {
padding: 80px; }
.md-p-80px-tb {
padding-top: 80px;
padding-bottom: 80px; }
.md-p-80px-lr {
padding-left: 80px;
padding-right: 80px; }
.md-p-80px-t {
padding-top: 80px; }
.md-p-80px-l {
padding-left: 80px; }
.md-p-80px-r {
padding-right: 80px; }
.md-p-80px-b {
padding-bottom: 80px; }
.md-m-85px {
margin: 85px; }
.md-m-85px-tb {
margin-top: 85px;
margin-bottom: 85px; }
.md-m-85px-lr {
margin-left: 85px;
margin-right: 85px; }
.md-m-85px-t {
margin-top: 85px; }
.md-m-85px-l {
margin-left: 85px; }
.md-m-85px-r {
margin-right: 85px; }
.md-m-85px-b {
margin-bottom: 85px; }
.md-p-85px {
padding: 85px; }
.md-p-85px-tb {
padding-top: 85px;
padding-bottom: 85px; }
.md-p-85px-lr {
padding-left: 85px;
padding-right: 85px; }
.md-p-85px-t {
padding-top: 85px; }
.md-p-85px-l {
padding-left: 85px; }
.md-p-85px-r {
padding-right: 85px; }
.md-p-85px-b {
padding-bottom: 85px; }
.md-m-90px {
margin: 90px; }
.md-m-90px-tb {
margin-top: 90px;
margin-bottom: 90px; }
.md-m-90px-lr {
margin-left: 90px;
margin-right: 90px; }
.md-m-90px-t {
margin-top: 90px; }
.md-m-90px-l {
margin-left: 90px; }
.md-m-90px-r {
margin-right: 90px; }
.md-m-90px-b {
margin-bottom: 90px; }
.md-p-90px {
padding: 90px; }
.md-p-90px-tb {
padding-top: 90px;
padding-bottom: 90px; }
.md-p-90px-lr {
padding-left: 90px;
padding-right: 90px; }
.md-p-90px-t {
padding-top: 90px; }
.md-p-90px-l {
padding-left: 90px; }
.md-p-90px-r {
padding-right: 90px; }
.md-p-90px-b {
padding-bottom: 90px; }
.md-m-95px {
margin: 95px; }
.md-m-95px-tb {
margin-top: 95px;
margin-bottom: 95px; }
.md-m-95px-lr {
margin-left: 95px;
margin-right: 95px; }
.md-m-95px-t {
margin-top: 95px; }
.md-m-95px-l {
margin-left: 95px; }
.md-m-95px-r {
margin-right: 95px; }
.md-m-95px-b {
margin-bottom: 95px; }
.md-p-95px {
padding: 95px; }
.md-p-95px-tb {
padding-top: 95px;
padding-bottom: 95px; }
.md-p-95px-lr {
padding-left: 95px;
padding-right: 95px; }
.md-p-95px-t {
padding-top: 95px; }
.md-p-95px-l {
padding-left: 95px; }
.md-p-95px-r {
padding-right: 95px; }
.md-p-95px-b {
padding-bottom: 95px; }
.md-m-100px {
margin: 100px; }
.md-m-100px-tb {
margin-top: 100px;
margin-bottom: 100px; }
.md-m-100px-lr {
margin-left: 100px;
margin-right: 100px; }
.md-m-100px-t {
margin-top: 100px; }
.md-m-100px-l {
margin-left: 100px; }
.md-m-100px-r {
margin-right: 100px; }
.md-m-100px-b {
margin-bottom: 100px; }
.md-p-100px {
padding: 100px; }
.md-p-100px-tb {
padding-top: 100px;
padding-bottom: 100px; }
.md-p-100px-lr {
padding-left: 100px;
padding-right: 100px; }
.md-p-100px-t {
padding-top: 100px; }
.md-p-100px-l {
padding-left: 100px; }
.md-p-100px-r {
padding-right: 100px; }
.md-p-100px-b {
padding-bottom: 100px; } }
@media (max-width: 767px) {
/* Margin Padding
--------------------*/
.sm-m-0px {
margin: 0px; }
.sm-m-0px-tb {
margin-top: 0px;
margin-bottom: 0px; }
.sm-m-0px-lr {
margin-left: 0px;
margin-right: 0px; }
.sm-m-0px-t {
margin-top: 0px; }
.sm-m-0px-l {
margin-left: 0px; }
.sm-m-0px-r {
margin-right: 0px; }
.sm-m-0px-b {
margin-bottom: 0px; }
.sm-p-0px {
padding: 0px; }
.sm-p-0px-tb {
padding-top: 0px;
padding-bottom: 0px; }
.sm-p-0px-lr {
padding-left: 0px;
padding-right: 0px; }
.sm-p-0px-t {
padding-top: 0px; }
.sm-p-0px-l {
padding-left: 0px; }
.sm-p-0px-r {
padding-right: 0px; }
.sm-p-0px-b {
padding-bottom: 0px; }
.sm-m-5px {
margin: 5px; }
.sm-m-5px-tb {
margin-top: 5px;
margin-bottom: 5px; }
.sm-m-5px-lr {
margin-left: 5px;
margin-right: 5px; }
.sm-m-5px-t {
margin-top: 5px; }
.sm-m-5px-l {
margin-left: 5px; }
.sm-m-5px-r {
margin-right: 5px; }
.sm-m-5px-b {
margin-bottom: 5px; }
.sm-p-5px {
padding: 5px; }
.sm-p-5px-tb {
padding-top: 5px;
padding-bottom: 5px; }
.sm-p-5px-lr {
padding-left: 5px;
padding-right: 5px; }
.sm-p-5px-t {
padding-top: 5px; }
.sm-p-5px-l {
padding-left: 5px; }
.sm-p-5px-r {
padding-right: 5px; }
.sm-p-5px-b {
padding-bottom: 5px; }
.sm-m-10px {
margin: 10px; }
.sm-m-10px-tb {
margin-top: 10px;
margin-bottom: 10px; }
.sm-m-10px-lr {
margin-left: 10px;
margin-right: 10px; }
.sm-m-10px-t {
margin-top: 10px; }
.sm-m-10px-l {
margin-left: 10px; }
.sm-m-10px-r {
margin-right: 10px; }
.sm-m-10px-b {
margin-bottom: 10px; }
.sm-p-10px {
padding: 10px; }
.sm-p-10px-tb {
padding-top: 10px;
padding-bottom: 10px; }
.sm-p-10px-lr {
padding-left: 10px;
padding-right: 10px; }
.sm-p-10px-t {
padding-top: 10px; }
.sm-p-10px-l {
padding-left: 10px; }
.sm-p-10px-r {
padding-right: 10px; }
.sm-p-10px-b {
padding-bottom: 10px; }
.sm-m-15px {
margin: 15px; }
.sm-m-15px-tb {
margin-top: 15px;
margin-bottom: 15px; }
.sm-m-15px-lr {
margin-left: 15px;
margin-right: 15px; }
.sm-m-15px-t {
margin-top: 15px; }
.sm-m-15px-l {
margin-left: 15px; }
.sm-m-15px-r {
margin-right: 15px; }
.sm-m-15px-b {
margin-bottom: 15px; }
.sm-p-15px {
padding: 15px; }
.sm-p-15px-tb {
padding-top: 15px;
padding-bottom: 15px; }
.sm-p-15px-lr {
padding-left: 15px;
padding-right: 15px; }
.sm-p-15px-t {
padding-top: 15px; }
.sm-p-15px-l {
padding-left: 15px; }
.sm-p-15px-r {
padding-right: 15px; }
.sm-p-15px-b {
padding-bottom: 15px; }
.sm-m-20px {
margin: 20px; }
.sm-m-20px-tb {
margin-top: 20px;
margin-bottom: 20px; }
.sm-m-20px-lr {
margin-left: 20px;
margin-right: 20px; }
.sm-m-20px-t {
margin-top: 20px; }
.sm-m-20px-l {
margin-left: 20px; }
.sm-m-20px-r {
margin-right: 20px; }
.sm-m-20px-b {
margin-bottom: 20px; }
.sm-p-20px {
padding: 20px; }
.sm-p-20px-tb {
padding-top: 20px;
padding-bottom: 20px; }
.sm-p-20px-lr {
padding-left: 20px;
padding-right: 20px; }
.sm-p-20px-t {
padding-top: 20px; }
.sm-p-20px-l {
padding-left: 20px; }
.sm-p-20px-r {
padding-right: 20px; }
.sm-p-20px-b {
padding-bottom: 20px; }
.sm-m-25px {
margin: 25px; }
.sm-m-25px-tb {
margin-top: 25px;
margin-bottom: 25px; }
.sm-m-25px-lr {
margin-left: 25px;
margin-right: 25px; }
.sm-m-25px-t {
margin-top: 25px; }
.sm-m-25px-l {
margin-left: 25px; }
.sm-m-25px-r {
margin-right: 25px; }
.sm-m-25px-b {
margin-bottom: 25px; }
.sm-p-25px {
padding: 25px; }
.sm-p-25px-tb {
padding-top: 25px;
padding-bottom: 25px; }
.sm-p-25px-lr {
padding-left: 25px;
padding-right: 25px; }
.sm-p-25px-t {
padding-top: 25px; }
.sm-p-25px-l {
padding-left: 25px; }
.sm-p-25px-r {
padding-right: 25px; }
.sm-p-25px-b {
padding-bottom: 25px; }
.sm-m-30px {
margin: 30px; }
.sm-m-30px-tb {
margin-top: 30px;
margin-bottom: 30px; }
.sm-m-30px-lr {
margin-left: 30px;
margin-right: 30px; }
.sm-m-30px-t {
margin-top: 30px; }
.sm-m-30px-l {
margin-left: 30px; }
.sm-m-30px-r {
margin-right: 30px; }
.sm-m-30px-b {
margin-bottom: 30px; }
.sm-p-30px {
padding: 30px; }
.sm-p-30px-tb {
padding-top: 30px;
padding-bottom: 30px; }
.sm-p-30px-lr {
padding-left: 30px;
padding-right: 30px; }
.sm-p-30px-t {
padding-top: 30px; }
.sm-p-30px-l {
padding-left: 30px; }
.sm-p-30px-r {
padding-right: 30px; }
.sm-p-30px-b {
padding-bottom: 30px; }
.sm-m-35px {
margin: 35px; }
.sm-m-35px-tb {
margin-top: 35px;
margin-bottom: 35px; }
.sm-m-35px-lr {
margin-left: 35px;
margin-right: 35px; }
.sm-m-35px-t {
margin-top: 35px; }
.sm-m-35px-l {
margin-left: 35px; }
.sm-m-35px-r {
margin-right: 35px; }
.sm-m-35px-b {
margin-bottom: 35px; }
.sm-p-35px {
padding: 35px; }
.sm-p-35px-tb {
padding-top: 35px;
padding-bottom: 35px; }
.sm-p-35px-lr {
padding-left: 35px;
padding-right: 35px; }
.sm-p-35px-t {
padding-top: 35px; }
.sm-p-35px-l {
padding-left: 35px; }
.sm-p-35px-r {
padding-right: 35px; }
.sm-p-35px-b {
padding-bottom: 35px; }
.sm-m-40px {
margin: 40px; }
.sm-m-40px-tb {
margin-top: 40px;
margin-bottom: 40px; }
.sm-m-40px-lr {
margin-left: 40px;
margin-right: 40px; }
.sm-m-40px-t {
margin-top: 40px; }
.sm-m-40px-l {
margin-left: 40px; }
.sm-m-40px-r {
margin-right: 40px; }
.sm-m-40px-b {
margin-bottom: 40px; }
.sm-p-40px {
padding: 40px; }
.sm-p-40px-tb {
padding-top: 40px;
padding-bottom: 40px; }
.sm-p-40px-lr {
padding-left: 40px;
padding-right: 40px; }
.sm-p-40px-t {
padding-top: 40px; }
.sm-p-40px-l {
padding-left: 40px; }
.sm-p-40px-r {
padding-right: 40px; }
.sm-p-40px-b {
padding-bottom: 40px; }
.sm-m-45px {
margin: 45px; }
.sm-m-45px-tb {
margin-top: 45px;
margin-bottom: 45px; }
.sm-m-45px-lr {
margin-left: 45px;
margin-right: 45px; }
.sm-m-45px-t {
margin-top: 45px; }
.sm-m-45px-l {
margin-left: 45px; }
.sm-m-45px-r {
margin-right: 45px; }
.sm-m-45px-b {
margin-bottom: 45px; }
.sm-p-45px {
padding: 45px; }
.sm-p-45px-tb {
padding-top: 45px;
padding-bottom: 45px; }
.sm-p-45px-lr {
padding-left: 45px;
padding-right: 45px; }
.sm-p-45px-t {
padding-top: 45px; }
.sm-p-45px-l {
padding-left: 45px; }
.sm-p-45px-r {
padding-right: 45px; }
.sm-p-45px-b {
padding-bottom: 45px; }
.sm-m-50px {
margin: 50px; }
.sm-m-50px-tb {
margin-top: 50px;
margin-bottom: 50px; }
.sm-m-50px-lr {
margin-left: 50px;
margin-right: 50px; }
.sm-m-50px-t {
margin-top: 50px; }
.sm-m-50px-l {
margin-left: 50px; }
.sm-m-50px-r {
margin-right: 50px; }
.sm-m-50px-b {
margin-bottom: 50px; }
.sm-p-50px {
padding: 50px; }
.sm-p-50px-tb {
padding-top: 50px;
padding-bottom: 50px; }
.sm-p-50px-lr {
padding-left: 50px;
padding-right: 50px; }
.sm-p-50px-t {
padding-top: 50px; }
.sm-p-50px-l {
padding-left: 50px; }
.sm-p-50px-r {
padding-right: 50px; }
.sm-p-50px-b {
padding-bottom: 50px; }
.sm-m-55px {
margin: 55px; }
.sm-m-55px-tb {
margin-top: 55px;
margin-bottom: 55px; }
.sm-m-55px-lr {
margin-left: 55px;
margin-right: 55px; }
.sm-m-55px-t {
margin-top: 55px; }
.sm-m-55px-l {
margin-left: 55px; }
.sm-m-55px-r {
margin-right: 55px; }
.sm-m-55px-b {
margin-bottom: 55px; }
.sm-p-55px {
padding: 55px; }
.sm-p-55px-tb {
padding-top: 55px;
padding-bottom: 55px; }
.sm-p-55px-lr {
padding-left: 55px;
padding-right: 55px; }
.sm-p-55px-t {
padding-top: 55px; }
.sm-p-55px-l {
padding-left: 55px; }
.sm-p-55px-r {
padding-right: 55px; }
.sm-p-55px-b {
padding-bottom: 55px; }
.sm-m-60px {
margin: 60px; }
.sm-m-60px-tb {
margin-top: 60px;
margin-bottom: 60px; }
.sm-m-60px-lr {
margin-left: 60px;
margin-right: 60px; }
.sm-m-60px-t {
margin-top: 60px; }
.sm-m-60px-l {
margin-left: 60px; }
.sm-m-60px-r {
margin-right: 60px; }
.sm-m-60px-b {
margin-bottom: 60px; }
.sm-p-60px {
padding: 60px; }
.sm-p-60px-tb {
padding-top: 60px;
padding-bottom: 60px; }
.sm-p-60px-lr {
padding-left: 60px;
padding-right: 60px; }
.sm-p-60px-t {
padding-top: 60px; }
.sm-p-60px-l {
padding-left: 60px; }
.sm-p-60px-r {
padding-right: 60px; }
.sm-p-60px-b {
padding-bottom: 60px; }
.sm-m-65px {
margin: 65px; }
.sm-m-65px-tb {
margin-top: 65px;
margin-bottom: 65px; }
.sm-m-65px-lr {
margin-left: 65px;
margin-right: 65px; }
.sm-m-65px-t {
margin-top: 65px; }
.sm-m-65px-l {
margin-left: 65px; }
.sm-m-65px-r {
margin-right: 65px; }
.sm-m-65px-b {
margin-bottom: 65px; }
.sm-p-65px {
padding: 65px; }
.sm-p-65px-tb {
padding-top: 65px;
padding-bottom: 65px; }
.sm-p-65px-lr {
padding-left: 65px;
padding-right: 65px; }
.sm-p-65px-t {
padding-top: 65px; }
.sm-p-65px-l {
padding-left: 65px; }
.sm-p-65px-r {
padding-right: 65px; }
.sm-p-65px-b {
padding-bottom: 65px; }
.sm-m-70px {
margin: 70px; }
.sm-m-70px-tb {
margin-top: 70px;
margin-bottom: 70px; }
.sm-m-70px-lr {
margin-left: 70px;
margin-right: 70px; }
.sm-m-70px-t {
margin-top: 70px; }
.sm-m-70px-l {
margin-left: 70px; }
.sm-m-70px-r {
margin-right: 70px; }
.sm-m-70px-b {
margin-bottom: 70px; }
.sm-p-70px {
padding: 70px; }
.sm-p-70px-tb {
padding-top: 70px;
padding-bottom: 70px; }
.sm-p-70px-lr {
padding-left: 70px;
padding-right: 70px; }
.sm-p-70px-t {
padding-top: 70px; }
.sm-p-70px-l {
padding-left: 70px; }
.sm-p-70px-r {
padding-right: 70px; }
.sm-p-70px-b {
padding-bottom: 70px; }
.sm-m-75px {
margin: 75px; }
.sm-m-75px-tb {
margin-top: 75px;
margin-bottom: 75px; }
.sm-m-75px-lr {
margin-left: 75px;
margin-right: 75px; }
.sm-m-75px-t {
margin-top: 75px; }
.sm-m-75px-l {
margin-left: 75px; }
.sm-m-75px-r {
margin-right: 75px; }
.sm-m-75px-b {
margin-bottom: 75px; }
.sm-p-75px {
padding: 75px; }
.sm-p-75px-tb {
padding-top: 75px;
padding-bottom: 75px; }
.sm-p-75px-lr {
padding-left: 75px;
padding-right: 75px; }
.sm-p-75px-t {
padding-top: 75px; }
.sm-p-75px-l {
padding-left: 75px; }
.sm-p-75px-r {
padding-right: 75px; }
.sm-p-75px-b {
padding-bottom: 75px; }
.sm-m-80px {
margin: 80px; }
.sm-m-80px-tb {
margin-top: 80px;
margin-bottom: 80px; }
.sm-m-80px-lr {
margin-left: 80px;
margin-right: 80px; }
.sm-m-80px-t {
margin-top: 80px; }
.sm-m-80px-l {
margin-left: 80px; }
.sm-m-80px-r {
margin-right: 80px; }
.sm-m-80px-b {
margin-bottom: 80px; }
.sm-p-80px {
padding: 80px; }
.sm-p-80px-tb {
padding-top: 80px;
padding-bottom: 80px; }
.sm-p-80px-lr {
padding-left: 80px;
padding-right: 80px; }
.sm-p-80px-t {
padding-top: 80px; }
.sm-p-80px-l {
padding-left: 80px; }
.sm-p-80px-r {
padding-right: 80px; }
.sm-p-80px-b {
padding-bottom: 80px; }
.sm-m-85px {
margin: 85px; }
.sm-m-85px-tb {
margin-top: 85px;
margin-bottom: 85px; }
.sm-m-85px-lr {
margin-left: 85px;
margin-right: 85px; }
.sm-m-85px-t {
margin-top: 85px; }
.sm-m-85px-l {
margin-left: 85px; }
.sm-m-85px-r {
margin-right: 85px; }
.sm-m-85px-b {
margin-bottom: 85px; }
.sm-p-85px {
padding: 85px; }
.sm-p-85px-tb {
padding-top: 85px;
padding-bottom: 85px; }
.sm-p-85px-lr {
padding-left: 85px;
padding-right: 85px; }
.sm-p-85px-t {
padding-top: 85px; }
.sm-p-85px-l {
padding-left: 85px; }
.sm-p-85px-r {
padding-right: 85px; }
.sm-p-85px-b {
padding-bottom: 85px; }
.sm-m-90px {
margin: 90px; }
.sm-m-90px-tb {
margin-top: 90px;
margin-bottom: 90px; }
.sm-m-90px-lr {
margin-left: 90px;
margin-right: 90px; }
.sm-m-90px-t {
margin-top: 90px; }
.sm-m-90px-l {
margin-left: 90px; }
.sm-m-90px-r {
margin-right: 90px; }
.sm-m-90px-b {
margin-bottom: 90px; }
.sm-p-90px {
padding: 90px; }
.sm-p-90px-tb {
padding-top: 90px;
padding-bottom: 90px; }
.sm-p-90px-lr {
padding-left: 90px;
padding-right: 90px; }
.sm-p-90px-t {
padding-top: 90px; }
.sm-p-90px-l {
padding-left: 90px; }
.sm-p-90px-r {
padding-right: 90px; }
.sm-p-90px-b {
padding-bottom: 90px; }
.sm-m-95px {
margin: 95px; }
.sm-m-95px-tb {
margin-top: 95px;
margin-bottom: 95px; }
.sm-m-95px-lr {
margin-left: 95px;
margin-right: 95px; }
.sm-m-95px-t {
margin-top: 95px; }
.sm-m-95px-l {
margin-left: 95px; }
.sm-m-95px-r {
margin-right: 95px; }
.sm-m-95px-b {
margin-bottom: 95px; }
.sm-p-95px {
padding: 95px; }
.sm-p-95px-tb {
padding-top: 95px;
padding-bottom: 95px; }
.sm-p-95px-lr {
padding-left: 95px;
padding-right: 95px; }
.sm-p-95px-t {
padding-top: 95px; }
.sm-p-95px-l {
padding-left: 95px; }
.sm-p-95px-r {
padding-right: 95px; }
.sm-p-95px-b {
padding-bottom: 95px; }
.sm-m-100px {
margin: 100px; }
.sm-m-100px-tb {
margin-top: 100px;
margin-bottom: 100px; }
.sm-m-100px-lr {
margin-left: 100px;
margin-right: 100px; }
.sm-m-100px-t {
margin-top: 100px; }
.sm-m-100px-l {
margin-left: 100px; }
.sm-m-100px-r {
margin-right: 100px; }
.sm-m-100px-b {
margin-bottom: 100px; }
.sm-p-100px {
padding: 100px; }
.sm-p-100px-tb {
padding-top: 100px;
padding-bottom: 100px; }
.sm-p-100px-lr {
padding-left: 100px;
padding-right: 100px; }
.sm-p-100px-t {
padding-top: 100px; }
.sm-p-100px-l {
padding-left: 100px; }
.sm-p-100px-r {
padding-right: 100px; }
.sm-p-100px-b {
padding-bottom: 100px; } }
@media (min-width: 992px) {
.main-left {
padding-left: 95px; } }
.particles-box {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0; }
.video-bg {
overflow: hidden; }
/* Home Banner 1
----------------------*/
.home-banner-01 {
position: relative; }
@media (max-width: 767px) {
.home-banner-01 {
background-position: 70% center; } }
.home-banner-01 .container {
position: relative;
z-index: 1; }
@media (max-width: 767px) {
.home-banner-01 .ht-text {
background: rgba(255, 255, 255, 0.8);
padding: 25px; } }
.home-banner-01 h6 {
color: #090a0c;
font-size: 18px;
margin: 0 0 15px; }
@media (max-width: 991px) {
.home-banner-01 h6 {
font-size: 15px; } }
@media (max-width: 767px) {
.home-banner-01 h6 {
font-size: 14px; } }
.home-banner-01 h1 {
font-size: 60px;
color: #090a0c;
font-weight: 600;
margin: 0 0 15px;
line-height: 1; }
@media (max-width: 991px) {
.home-banner-01 h1 {
font-size: 40px; } }
@media (max-width: 767px) {
.home-banner-01 h1 {
font-size: 35px; } }
.home-banner-01 h2 {
font-weight: 500;
font-size: 20px;
color: #090a0c;
margin: 0 0 15px; }
@media (max-width: 991px) {
.home-banner-01 h2 {
font-size: 18px; } }
@media (max-width: 767px) {
.home-banner-01 h2 {
font-size: 16px; } }
.home-banner-01 h2 > span {
border-bottom: 1px solid #090a0c; }
.home-banner-01 p {
color: rgba(9, 10, 12, 0.8);
margin: 0; }
.home-banner-01 .btn-bar {
padding-top: 25px; }
.home-banner-01 .btn-bar a {
min-width: 120px;
margin-right: 12px; }
.home-banner-01 .go-to-next {
position: absolute;
bottom: 30px;
left: 0;
right: 0;
width: 35px;
margin: auto;
z-index: 1;
text-align: center; }
.home-banner-01 .go-to-next a {
width: 35px;
height: 35px;
position: relative;
display: inline-block;
background: #d9832e;
border-radius: 50%;
animation: down 1s linear infinite;
-webkit-animation: down 1s linear infinite; }
.home-banner-01 .go-to-next a span {
border-top: 1px solid #ffffff;
border-right: 1px solid #ffffff;
width: 10px;
height: 10px;
position: absolute;
top: -6px;
left: 0;
right: 0;
bottom: 0;
margin: auto;
-moz-transform: rotate(135deg);
-o-transform: rotate(135deg);
-ms-transform: rotate(135deg);
-webkit-transform: rotate(135deg);
transform: rotate(135deg); }
@-webkit-keyframes down {
0% {
top: 5px;
opacity: 0; }
30% {
top: 15px;
opacity: 1; }
60% {
top: 15px;
opacity: 0.60; }
100% {
top: 25px;
opacity: 0; } }
@keyframes down {
0% {
top: 5px;
opacity: 0; }
30% {
top: 15px;
opacity: 1; }
100% {
top: 25px;
opacity: 0; } }
/* Home Banner 2
----------------------*/
.home-banner-02 {
position: relative; }
.home-banner-02:after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #090a0c;
opacity: 0.8; }
.home-banner-02 .container {
position: relative;
z-index: 1; }
.home-banner-02 h6 {
color: #ffffff;
font-size: 24px;
margin: 0 0 8px; }
@media (max-width: 991px) {
.home-banner-02 h6 {
font-size: 15px; } }
@media (max-width: 767px) {
.home-banner-02 h6 {
font-size: 14px; } }
.home-banner-02 h1 {
font-size: 80px;
color: #ffffff;
font-weight: 600;
margin: 0 0 25px;
line-height: 1.3; }
@media (max-width: 991px) {
.home-banner-02 h1 {
font-size: 50px; } }
@media (max-width: 767px) {
.home-banner-02 h1 {
font-size: 35px; } }
.home-banner-02 .ht-list span {
background: rgba(255, 255, 255, 0.13);
margin: 0 3px;
padding: 7px 20px;
font-size: 12px;
font-weight: 400;
text-transform: uppercase;
color: #ffffff;
border-radius: 30px;
letter-spacing: 1px; }
.home-banner-02 .social-icons a {
background: rgba(255, 255, 255, 0.13);
margin: 0 3px;
width: 45px;
height: 45px;
line-height: 45px;
display: inline-block;
font-size: 18px;
color: #ffffff;
border-radius: 50%; }
.home-banner-02 .social-icons a:hover {
background: #ffffff;
color: #090a0c; }
.home-banner-02 .btn-bar {
padding-top: 25px; }
.home-banner-02 .go-to-next {
position: absolute;
bottom: 30px;
left: 0;
right: 0;
width: 35px;
margin: auto;
z-index: 1;
text-align: center; }
.home-banner-02 .go-to-next a {
width: 35px;
height: 35px;
position: relative;
display: inline-block;
background: #ffffff;
border-radius: 50%;
animation: down 1s linear infinite;
-webkit-animation: down 1s linear infinite; }
.home-banner-02 .go-to-next a span {
border-top: 1px solid #090a0c;
border-right: 1px solid #090a0c;
width: 10px;
height: 10px;
position: absolute;
top: -6px;
left: 0;
right: 0;
bottom: 0;
margin: auto;
-moz-transform: rotate(135deg);
-o-transform: rotate(135deg);
-ms-transform: rotate(135deg);
-webkit-transform: rotate(135deg);
transform: rotate(135deg); }
/* home-banner-03
----------------------*/
.home-banner-03 .full-scree {
height: 100vh;
background-size: cover;
background-position: center; }
.home-banner-03 .ht-text {
padding: 5%;
max-width: 700px; }
@media (max-width: 991px) {
.home-banner-03 .ht-text {
padding: 15% 5%; } }
.home-banner-03 .ht-text h1 {
color: #090a0c;
font-size: 65px;
font-weight: 600; }
@media (max-width: 991px) {
.home-banner-03 .ht-text h1 {
font-size: 50px; } }
@media (max-width: 767px) {
.home-banner-03 .ht-text h1 {
font-size: 40px; } }
.home-banner-03 .ht-text p {
font-size: 18px;
margin: 0 0 25px; }
.home-banner-03 .social-icons a {
background: #d9832e;
text-align: center;
margin: 0 7px 0 0;
width: 35px;
height: 35px;
line-height: 35px;
display: inline-block;
font-size: 16px;
color: #ffffff;
border-radius: 3px; }
.home-banner-03 .social-icons a:hover {
background: #090a0c;
color: #ffffff; }
/* About Us
----------------------*/
.about-me-img {
border: 14px solid #ffffff;
border-radius: 5px;
position: relative; }
.about-me-img .social-icon {
width: 50px;
position: absolute;
top: 20px;
left: -10px;
background: #ffffff;
padding: 8px; }
.about-me-img .social-icon a {
width: 34px;
height: 34px;
line-height: 34px;
text-align: center;
background: #d9832e;
color: #ffffff;
margin: 3px 0;
font-size: 12px; }
.about-me-img .social-icon a:hover {
background: #090a0c; }
.about-me-img .btns {
position: absolute;
bottom: 0;
left: 0;
right: 0;
display: flex; }
.about-me-img .btns a {
flex: 0 0 50%;
max-width: 50%;
background: #d9832e;
padding: 10px 5px;
color: #ffffff;
text-decoration: none;
text-align: center;
text-transform: uppercase;
font-size: 12px;
letter-spacing: 0.045rem; }
.about-me-img .btns a:hover {
background: #090a0c; }
.about-me-img .btns a + a {
border-left: 1px solid #ffffff; }
@media (min-width: 992px) {
.about-me {
padding-left: 40px; } }
.about-me h4 {
font-weight: 600;
font-size: 30px;
margin: 0 0 10px;
color: #090a0c; }
.about-me h6 {
color: #090a0c;
font-weight: 400;
margin: 0 0 20px; }
.about-me .about-list {
padding-top: 10px; }
.about-me .media {
padding: 6px 0;
line-height: normal; }
.about-me .media label {
margin: 0;
color: #090a0c;
font-weight: 500;
font-size: 14px;
flex: 0 0 90px;
border-right: 1px solid #c1c1c1;
max-width: 90px; }
.about-me .media p {
margin-bottom: 0;
padding-left: 15px;
font-size: 14px; }
.about-me .btn-bar {
margin-top: 30px; }
/* fun
------------------*/
.feature-box-2 {
padding: 18px 15px;
border-radius: 5px;
background: #ffffff;
border: 2px solid #d9832e;
box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s; }
.feature-box-2 .icon {
font-size: 30px;
width: 50px;
height: 50px;
line-height: 50px;
color: #d9832e; }
.feature-box-2 h5 {
margin: 0;
font-size: 16px;
color: #090a0c; }
.feature-box-2:hover {
background: #ffffff; }
.feature-box-2:hover .icon {
color: #d9832e; }
.feature-box-2:hover h5 {
color: #090a0c; }
/* Services
------------------*/
.feature-box-1 {
padding: 40px 30px;
background: #ffffff;
border: 1px solid #eee;
border-radius: 5px;
position: relative;
top: 0;
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s; }
.feature-box-1 .icon {
width: 80px;
height: 80px;
line-height: 80px;
text-align: center;
border-radius: 50%;
border: 2px dotted #d9832e;
color: #d9832e;
font-size: 32px;
margin-bottom: 22px; }
.feature-box-1 h5 {
color: #090a0c;
font-weight: 500;
font-size: 16px;
margin: 0 0 12px; }
.feature-box-1 p {
margin: 0; }
.feature-box-1:hover {
background: #d9832e;
border-color: #d9832e;
top: -10px; }
.feature-box-1:hover .icon {
border-color: #ffffff;
color: #ffffff; }
.feature-box-1:hover h5 {
color: #ffffff; }
.feature-box-1:hover p {
color: rgba(255, 255, 255, 0.6); }
/* Portfolio
------------------*/
.portfolio-content {
margin-left: -10px;
shape-margin: -10px; }
.portfolio-content .grid-item {
padding: 10px;
/* width: calc(100% / 3); */
width: 30%;
float: left; }
@media (max-width: 991px) {
.portfolio-content .grid-item {
width: calc(100% / 2); } }
@media (max-width: 567px) {
.portfolio-content .grid-item {
width: 100%; } }
.portfolio-box-01 {
position: relative;
overflow: hidden;
border-radius: 5px; }
.portfolio-box-01 .link-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0; }
.portfolio-box-01 img {
-moz-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s; }
.portfolio-box-01 .portfolio-info {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(9, 10, 12, 0.5);
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s;
opacity: 0;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
-ms-flex-pack: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
-ms-flex-align: center;
align-items: center; }
.portfolio-box-01 .portfolio-info h5 {
color: #ffffff;
font-size: 25px;
font-weight: 600;
display: inline-block;
margin: 0 0 10px;
position: relative;
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s;
left: -25px; }
@media (max-width: 991px) {
.portfolio-box-01 .portfolio-info h5 {
font-size: 20px; } }
.portfolio-box-01 .portfolio-info span {
color: rgba(255, 255, 255, 0.8);
font-weight: 500;
padding: 2px 12px;
display: inline-block;
vertical-align: top;
font-size: 14px;
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s;
position: relative;
left: -25px; }
.portfolio-box-01:hover .portfolio-info {
opacity: 1; }
.portfolio-box-01:hover .portfolio-info h5 {
left: 0; }
.portfolio-box-01:hover .portfolio-info span {
left: 0; }
.portfolio-box-01:hover img {
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
-ms-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1); }
/* Testimonials
------------------*/
.testimonial-col-01 {
background: #ffffff;
padding: 20px;
margin-top: 15px;
margin-bottom: 25px;
border: 1px solid #edd; }
.testimonial-col-01 .img {
width: 120px;
height: 120px;
overflow: hidden;
border-radius: 50% 0 50% 50%; }
@media (max-width: 767px) {
.testimonial-col-01 .img {
width: 60px;
height: 60px; } }
/* Blog
------------------*/
.blog-grid .blog-gird-info {
background: #ffffff;
margin: -30px 10px 0;
position: relative;
padding: 18px;
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.19); }
.blog-grid .blog-gird-info .date {
background: #d9832e;
font-size: 12px;
position: absolute;
top: -27px;
padding: 4px 20px;
color: #ffffff;
border-radius: 0;
left: 0px; }
.blog-grid .blog-gird-info .meta {
background: #ffffff;
padding: 0px 12px;
display: inline-block;
vertical-align: top;
font-size: 12px;
border-radius: 3px;
border: 1px solid #ddd; }
.blog-grid .blog-gird-info .b-meta {
margin-bottom: 8px; }
.blog-grid .blog-gird-info h5 {
font-weight: 500;
font-size: 17px; }
.blog-grid .blog-gird-info h5 a {
color: #090a0c; }
/* Contact Us
------------------*/
.contact-form {
border-radius: 5px;
background: #ffffff;
padding: 5%; }
.contact-form h4 {
font-weight: 600;
font-size: 18px;
text-transform: uppercase;
color: #090a0c;
margin-bottom: 20px; }
.contact-form .form-group {
position: relative;
margin-bottom: 20px; }
.contact-form .form-group .input-focus-effect {
position: absolute;
bottom: -1px;
left: auto;
right: 0;
width: 0px;
height: 2px;
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s; }
.contact-form .form-group .form-control {
border: none;
border-bottom: 1px solid #ccc;
border-radius: 0;
padding-left: 0;
box-shadow: none;
font-size: 14px; }
.contact-form .form-group .form-control.invalid {
border-color: #ff0000; }
.contact-form .form-group .form-control.invalid:focus + .input-focus-effect {
background: #ff0000; }
.contact-form .form-group .form-control:focus + .input-focus-effect {
width: 100%;
right: auto;
left: 0; }
.contact-form .form-group textarea {
height: 80px; }
.contact-info {
background: #ffffff;
padding: 20px; }
.contact-info:not(:first-child) {
margin-top: 20px; }
.contact-info .icon {
width: 40px;
height: 40px;
text-align: center;
border-radius: 50%;
color: #ffffff;
background: #d9832e;
font-size: 19px;
line-height: 40px;
margin-right: 20px; }
.contact-info .media-body h6 {
font-size: 15px;
font-weight: 500;
color: #090a0c;
margin-bottom: 8px; }
.contact-info .media-body p {
margin: 0;
font-size: 14px; }
/*# sourceMappingURL=master.css.map */ | beneficios/public/home-style/static/style/master.css | 1) variable
2) mixin
3) button
4) base
5) color
6) header
7) mega-menu
8) footer
9) banner
10) title
11) effect
12) feature-box
13) video
14) portfolio
15) process-bar
16) testimonial
17) team
18) client
19) accordion
20) price-table
21) blog
22) social
23) form
24) list
25) space
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap");
/*----------------------------------
* Buttons
----------------------------------*/
.m-btn-link {
display: inline-block;
text-decoration: none;
font-size: 14px;
text-decoration: none;
text-transform: uppercase;
font-weight: 600;
color: #d9832e;
border-bottom: 2px solid currentColor; }
.m-btn-link:hover {
color: #090a0c; }
.m-btn {
display: inline-block;
border: 2px solid transparent;
color: inherit;
line-height: inherit;
border-radius: 0;
width: auto;
padding: 10px 20px;
font-size: 14px;
cursor: pointer;
font-weight: 500;
text-transform: uppercase;
-moz-transition: ease-in-out all 0.55s;
-o-transition: ease-in-out all 0.55s;
-webkit-transition: ease-in-out all 0.55s;
transition: ease-in-out all 0.55s;
text-align: center; }
.m-btn.m-btn-xsm {
font-size: 10px;
padding: 2px 17px; }
.m-btn.m-btn-sm {
font-size: 11px;
padding: 4px 24px; }
.m-btn.m-btn-lg {
font-size: 13px;
padding: 12px 34px;
line-height: 25px; }
.m-btn.m-btn-xl {
font-size: 15px;
padding: 15px 40px;
line-height: 25px; }
.m-btn.m-btn-theme {
background: #d9832e;
color: #ffffff;
border-color: #d9832e; }
.m-btn.m-btn-theme:hover {
background: #090a0c;
border-color: #090a0c; }
.m-btn.m-btn-t-theme {
background: transparent;
color: #d9832e;
border-color: #d9832e; }
.m-btn.m-btn-t-theme:hover {
background: #d9832e;
border-color: #d9832e;
color: #ffffff; }
.m-btn.m-btn-dark {
background: #090a0c;
color: #ffffff;
border-color: #090a0c; }
.m-btn.m-btn-dark:hover {
background: #d9832e;
border-color: #d9832e; }
.m-btn.m-btn-t-dark {
background: transparent;
color: #090a0c;
border-color: #090a0c; }
.m-btn.m-btn-t-dark:hover {
background: #090a0c;
border-color: #090a0c;
color: #ffffff; }
.m-btn.m-btn-white {
background: #ffffff;
color: #d9832e;
border-color: #ffffff; }
.m-btn.m-btn-white:hover {
background: transparent;
border-color: #ffffff;
color: #ffffff; }
.m-btn.m-btn-t-white {
background: transparent;
color: #ffffff;
border-color: #ffffff; }
.m-btn.m-btn-t-white:hover {
background: #ffffff;
border-color: #ffffff;
color: #090a0c; }
/* Icon
----------------*/
.video-btn {
position: relative;
width: 80px;
height: 80px;
text-align: center;
display: inline-block;
vertical-align: middle;
border-radius: 50%;
-moz-transition: ease all 0.55s;
-o-transition: ease all 0.55s;
-webkit-transition: ease all 0.55s;
transition: ease all 0.55s;
z-index: 1;
border: none; }
.video-btn:after {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
pointer-events: none;
z-index: -1; }
.video-btn.white {
background: #ffffff; }
.video-btn.white:after {
background: #ffffff; }
.video-btn.white span {
color: #d9832e; }
.video-btn.theme {
background: #d9832e; }
.video-btn.theme:after {
background: #d9832e; }
.video-btn.theme span {
color: #ffffff; }
.video-btn span {
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
border-left: 20px solid currentcolor;
position: absolute;
top: 0;
bottom: 0;
left: 9px;
right: 0;
margin: auto;
width: 0px;
height: 0px; }
@keyframes pulse-border {
0% {
-moz-transform: scale(0.8);
-o-transform: scale(0.8);
-ms-transform: scale(0.8);
-webkit-transform: scale(0.8);
transform: scale(0.8);
opacity: 1; }
100% {
-moz-transform: scale(2);
-o-transform: scale(2);
-ms-transform: scale(2);
-webkit-transform: scale(2);
transform: scale(2);
opacity: 0; } }
/* ------------------------
* General
------------------------*/
body {
font-family: "Poppins", sans-serif;
font-size: 15px;
color: #555a64;
font-weight: 400;
line-height: 1.6;
font-smoothing: antialiased; }
html {
overflow-x: hidden; }
a {
color: #d9832e; }
a:hover {
color: #bc6f22;
text-decoration: none; }
img {
max-width: 100%; }
.fa,
.fab,
.fal,
.far,
.fas {
line-height: inherit; }
mark {
background-image: linear-gradient(#7ef6e7, #81f1e7);
background-size: 100% 34%;
background-repeat: no-repeat;
background-position: 0 bottom;
background-color: transparent;
padding: 0;
color: currentColor; }
/* ----------------------
* Loading
---------------------------*/
#loading {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #d9832e;
z-index: 99999; }
.load-circle {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
width: 50px;
height: 50px; }
.load-circle span {
display: inline-block;
width: 64px;
height: 64px; }
.load-circle span:after {
content: " ";
display: block;
width: 46px;
height: 46px;
margin: 1px;
border-radius: 50%;
border: 5px solid #ffffff;
border-color: #ffffff transparent #ffffff transparent;
animation: lds-dual-ring 1.2s linear infinite; }
@keyframes lds-dual-ring {
0% {
transform: rotate(0deg); }
100% {
transform: rotate(360deg); } }
/* ----------------------
*Heading fonts size
---------------------------*/
.h1,
h1 {
font-size: 50px; }
@media (max-width: 991px) {
.h1,
h1 {
font-size: 40px; } }
@media (max-width: 767px) {
.h1,
h1 {
font-size: 35px; } }
.h2,
h2 {
font-size: 44px; }
@media (max-width: 991px) {
.h2,
h2 {
font-size: 36px; } }
@media (max-width: 767px) {
.h2,
h2 {
font-size: 32px; } }
.h3,
h3 {
font-size: 32px; }
@media (max-width: 991px) {
.h3,
h3 {
font-size: 28px; } }
@media (max-width: 767px) {
.h3,
h3 {
font-size: 24px; } }
.h4,
h4 {
font-size: 26px; }
@media (max-width: 767px) {
.h4,
h4 {
font-size: 22px; } }
.h5,
h5 {
font-size: 20px; }
.h6,
h6 {
font-size: 18px; }
/* ----------------------
* owl
---------------------------*/
.owl-dots {
text-align: center; }
.owl-dots .owl-dot {
display: inline-block;
vertical-align: top;
width: 15px;
height: 15px;
background: #ffffff;
border: 1px solid #d9832e;
-moz-transition: ease all 0.55s;
-o-transition: ease all 0.55s;
-webkit-transition: ease all 0.55s;
transition: ease all 0.55s;
border-radius: 50%;
margin: 0 5px; }
.owl-carousel-white .owl-dots .owl-dot {
border-color: #ffffff;
background: none; }
.owl-dots .owl-dot.active {
background: #d9832e; }
.owl-carousel-white .owl-dots .owl-dot.active {
background: #ffffff; }
.owl-carousel .owl-item img {
width: auto;
max-width: 100%; }
/* Background color
-------------------------------*/
.theme-bg {
background-color: #d9832e; }
.dark-bg {
background-color: #090a0c; }
.gray-bg {
background-color: #eaedf2; }
.white-bg {
background-color: #ffffff; }
.blue-bg {
background-color: #49bedf; }
/* Text color
-------------------------------*/
.white-color {
color: #ffffff; }
.white-color-light {
color: rgba(255, 255, 255, 0.65); }
.dark-color {
color: #090a0c; }
.body-color {
color: #555a64; }
.theme-color {
color: #d9832e; }
.green-color {
color: #11e279; }
/* Toggle Menu
-------------------------*/
.navbar-toggler,
.toggler-menu {
width: 40px;
height: 40px;
position: relative;
margin: 0;
border-radius: 0;
padding: 0;
margin-left: 15px;
background: #d9832e;
border: none; }
.navbar-toggler span,
.toggler-menu span {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 25px;
height: 2px;
margin: auto;
box-shadow: 0px -8px 0 0px currentColor, 0px 8px 0 0px currentColor;
background: #ffffff;
color: #ffffff; }
.mob-header {
position: fixed;
top: 0;
right: 0;
z-index: 3;
left: 0;
padding: 6px 10px;
background: #ffffff; }
.mob-header .toggler-menu {
margin-left: auto; }
.mob-header .navbar-brand {
font-size: 20px; }
.mob-header .navbar-brand a {
color: #d9832e;
font-weight: 600; }
@media (min-width: 992px) {
.mob-header {
display: none; } }
/* Side Menu
-----------------------------*/
.header-left {
position: fixed;
top: 0;
left: 0;
width: 95px;
background: #ffffff;
overflow: hidden;
border-radius: 0;
bottom: 0;
box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.29);
z-index: 3; }
@media (max-width: 991px) {
.header-left {
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s;
left: -150px; }
.header-left.menu-open {
left: 0; } }
.header-left .navbar-brand {
margin: 0;
text-align: center;
width: 100%;
padding: 0; }
.header-left .navbar-brand a {
padding: 10px 0;
background: #d9832e;
font-weight: 600;
font-size: 14px;
color: #ffffff;
display: block; }
.header-left .nav li {
width: 100%;
text-align: center; }
.header-left .nav li a {
font-size: 12px;
font-weight: 500;
padding: 10px 0;
display: block;
position: relative;
border-bottom: 1px solid rgba(9, 10, 12, 0.06);
text-transform: uppercase;
letter-spacing: 0.055rem;
color: #090a0c; }
.header-left .nav li a:after {
content: "";
position: absolute;
right: 0;
width: 2px;
height: 0;
background: #d9832e;
top: auto;
bottom: 0;
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s; }
.header-left .nav li a i {
font-size: 20px;
width: 100%; }
.header-left .nav li a.active, .header-left .nav li a:hover {
color: #d9832e; }
.header-left .nav li a.active:after {
height: 100%;
bottom: auto;
top: 0; }
/* Header Dark
-----------------------------*/
@media (min-width: 992px) {
.header-dark {
padding: 0;
background: rgba(255, 255, 255, 0.72);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 5; }
.fixed-header .header-dark {
background: #ffffff; }
.header-dark.header-transparent {
background: transparent; }
.fixed-header .header-dark.header-transparent {
background: #ffffff; }
.header-dark .navbar-brand {
font-weight: 600;
font-size: 24px;
text-transform: uppercase;
color: #090a0c; }
.header-dark .navbar-nav .nav-link {
line-height: 60px;
padding: 0 10px !important;
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.035rem;
color: #090a0c;
margin-left: 10px; }
.header-dark .navbar-nav .nav-link.active, .header-dark .navbar-nav .nav-link:hover {
color: #d9832e; } }
/* Header Dark
-----------------------------*/
@media (min-width: 992px) {
.header-white {
padding: 0;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 5; }
.fixed-header .header-white {
background: #ffffff; }
.header-white .navbar-brand {
font-weight: 600;
font-size: 24px;
text-transform: uppercase;
color: #ffffff; }
.fixed-header .header-white .navbar-brand {
color: #090a0c; }
.header-white .navbar-nav .nav-link {
line-height: 60px;
padding: 0 10px !important;
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.035rem;
color: rgba(255, 255, 255, 0.7);
margin-left: 10px; }
.fixed-header .header-white .navbar-nav .nav-link {
color: #090a0c; }
.header-white .navbar-nav .nav-link.active, .header-white .navbar-nav .nav-link:hover {
color: #ffffff; }
.fixed-header .header-white .navbar-nav .nav-link.active, .fixed-header .header-white .navbar-nav .nav-link:hover {
color: #d9832e; } }
/* Mobile
-----------------------------*/
@media (max-width: 991px) {
.header-nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 5; }
.fixed-header .header-nav {
background: #ffffff; }
.header-nav .navbar-brand {
font-weight: 600;
font-size: 24px;
text-transform: uppercase;
color: #090a0c; }
.header-nav.header-white .navbar-brand {
color: #ffffff; }
.fixed-header .header-nav.header-white .navbar-brand {
color: #090a0c; }
.header-nav .navbar-nav {
padding: 8px 15px;
border: 1px solid #ddd;
background: #ffffff; }
.header-nav .navbar-nav > li + li .nav-link {
border-top: 1px solid #ddd; }
.header-nav .navbar-nav .nav-link {
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.035rem;
color: #090a0c; }
.header-nav .navbar-nav .nav-link.active, .header-nav .navbar-nav .nav-link:hover {
color: #d9832e; } }
.footer {
padding: 12px 0;
background: #111; }
.footer .nav a {
color: rgba(255, 255, 255, 0.5);
font-size: 14px;
margin-right: 17px; }
.footer .nav a:hover {
color: #ffffff; }
.footer p {
color: rgba(255, 255, 255, 0.5);
font-size: 12px;
margin: 0; }
.section-title h3 {
font-weight: 700;
font-size: 35px;
margin: 0 0 10px;
position: relative;
display: inline-block;
vertical-align: top;
z-index: 1;
padding: 0 0 10px; }
.section-title h3:after {
content: "";
position: absolute;
bottom: 0;
left: 0;
margin: auto;
height: 2px;
z-index: -1;
background: #d9832e;
width: 50px; }
.section-title p {
margin: 0;
font-size: 14px;
letter-spacing: 2px; }
.skill-lt:not(:first-child) {
margin-top: 30px; }
.skill-lt h6 {
font-size: 16px;
margin: 0 0 10px; }
.skill-lt .skill-bar {
position: relative;
background: #eee; }
.skill-lt .skill-bar .skill-bar-in {
width: 0px;
-moz-transition: ease all 0.55s;
-o-transition: ease all 0.55s;
-webkit-transition: ease all 0.55s;
transition: ease all 0.55s;
height: 5px;
position: relative; }
.skill-lt .skill-bar .skill-bar-in span {
position: absolute;
right: 0;
top: -30px;
font-size: 14px; }
.skill-lt.md .skill-bar .skill-bar-in {
height: 8px; }
.skill-lt.lg .skill-bar .skill-bar-in {
height: 10px; }
.skill-lt.light .skill-bar {
background: rgba(0, 0, 0, 0.5); }
/*---------------------------------
* sec-round
-----------------------------------*/
.sec-round {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0; }
.sec-round .full-height {
height: 100%; }
.sec-round .round-item {
float: left;
width: 20%;
height: 100%;
box-sizing: border-box;
border-right: 1px solid rgba(153, 153, 153, 0.11);
height: 100%;
position: relative; }
.sec-round .round-item:first-child {
border-left: 1px solid rgba(153, 153, 153, 0.11); }
/* ----------------------
* Section
-------------------------*/
.container-large {
max-width: 1440px; }
.container-small {
max-width: 750px; }
.section {
padding: 100px 0; }
@media (max-width: 991px) {
.section {
padding-top: 80px;
padding-bottom: 80px; } }
@media (max-width: 767px) {
.section {
padding-top: 60px;
padding-bottom: 60px; } }
.section-top-up .container {
margin-top: -190px;
position: relative;
z-index: 1; }
.section-top-up-100 .container {
margin-top: -100px;
position: relative;
z-index: 1; }
/* ----------------------
* Box shadow
---------------------------*/
.box-shadow-lg {
box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1); }
.box-shadow {
box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1); }
.box-shadow-hover {
box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1); }
.box-shadow-hover:hover {
box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1); }
.box-shadow-only-hover:hover {
box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1); }
.border-radius-50 {
border-radius: 50%; }
/* ----------------------
* Opacity
---------------------------*/
.opacity-1 {
opacity: 0.1; }
.opacity-2 {
opacity: 0.2; }
.opacity-3 {
opacity: 0.3; }
.opacity-4 {
opacity: 0.4; }
.opacity-5 {
opacity: 0.5; }
.opacity-6 {
opacity: 0.6; }
.opacity-7 {
opacity: 0.7; }
.opacity-8 {
opacity: 0.8; }
.opacity-9 {
opacity: 0.9; }
/* ----------------------
* transeition
---------------------------*/
.transition {
-moz-transition: ease-in-out all 0.35s;
-o-transition: ease-in-out all 0.35s;
-webkit-transition: ease-in-out all 0.35s;
transition: ease-in-out all 0.35s; }
/* ----------------------
* Image Hover
---------------------------*/
.img-hover .img-hover-in {
overflow: hidden; }
.img-hover .img-hover-in img {
-moz-transition: ease-in-out all 0.33s;
-o-transition: ease-in-out all 0.33s;
-webkit-transition: ease-in-out all 0.33s;
transition: ease-in-out all 0.33s;
-moz-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1); }
.img-hover:hover .img-hover-in img {
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
-ms-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1); }
/* ----------------------
* Top Hover
---------------------------*/
.hover-top {
position: relative;
top: 0; }
.hover-top:hover {
top: -10px; }
/* ----------------------
* Grayscale Hover
---------------------------*/
.grayscale {
-webkit-filter: grayscale(100%);
filter: grayscale(100%); }
.grayscale-hover img {
-webkit-filter: grayscale(100%);
filter: grayscale(100%); }
.grayscale-hover:hover img {
-webkit-filter: grayscale(0);
filter: grayscale(0);
opacity: 1; }
.font-alt {
font-family: "Poppins", sans-serif; }
/* Property
---------------------------*/
.bg-cover {
background-size: cover; }
.bg-no-repeat {
background-repeat: no-repeat; }
.bg-fixed {
background-attachment: fixed; }
.bg-center {
background-position: center; }
/* Letter spacing
-------------------------------*/
.letter-spacing-1 {
letter-spacing: 1px; }
.letter-spacing-2 {
letter-spacing: 2px; }
.letter-spacing-3 {
letter-spacing: 3px; }
.letter-spacing-4 {
letter-spacing: 4px; }
.letter-spacing-5 {
letter-spacing: 5px; }
.letter-spacing-6 {
letter-spacing: 6px; }
.letter-spacing-7 {
letter-spacing: 7px; }
.letter-spacing-8 {
letter-spacing: 8px; }
.letter-spacing-9 {
letter-spacing: 9px; }
.letter-spacing-10 {
letter-spacing: 10px; }
/* Height Width
--------------------*/
.w-5px {
width: 5px; }
.w-10px {
width: 10px; }
.w-15px {
width: 15px; }
.w-20px {
width: 20px; }
.w-25px {
width: 25px; }
.w-30px {
width: 30px; }
.w-35px {
width: 35px; }
.w-40px {
width: 40px; }
.w-45px {
width: 45px; }
.w-50px {
width: 50px; }
.w-55px {
width: 55px; }
.w-60px {
width: 60px; }
.w-65px {
width: 65px; }
.w-70px {
width: 70px; }
.w-75px {
width: 75px; }
.w-80px {
width: 80px; }
.w-85px {
width: 85px; }
.w-90px {
width: 90px; }
.w-95px {
width: 95px; }
.w-100px {
width: 100px; }
.w-150px {
width: 150px; }
.w-200px {
width: 200px; }
.w-250px {
width: 250px; }
.w-300px {
width: 300px; }
.w-350px {
width: 350px; }
.w-400px {
width: 400px; }
.w-450px {
width: 450px; }
.w-500px {
width: 500px; }
.w-550px {
width: 550px; }
.w-600px {
width: 600px; }
.w-650px {
width: 650px; }
.w-700px {
width: 700px; }
.w-750px {
width: 750px; }
.w-800px {
width: 800px; }
.w-850px {
width: 850px; }
.w-900px {
width: 900px; }
.w-950px {
width: 950px; }
.w-1000px {
width: 1000px; }
.max-w-100 {
max-width: 100%; }
.min-h-350px {
min-height: 350px; }
.min-h-50vw {
min-height: 65vh; }
.full-screen {
min-height: 100vh; }
.screen-85 {
min-height: 85vh; }
.screen-65 {
min-height: 65vh; }
@media (max-width: 767px) {
.sm-full-screen-auto {
min-height: auto; } }
.max-width-auto {
max-width: none; }
@media (max-width: 991px) {
.max-width-auto {
max-width: 100%; } }
/* Font wight
--------------------*/
.font-w-100 {
font-weight: 100; }
.font-w-200 {
font-weight: 200; }
.font-w-300 {
font-weight: 300; }
.font-w-400 {
font-weight: 400; }
.font-w-500 {
font-weight: 500; }
.font-w-600 {
font-weight: 600; }
.font-w-700 {
font-weight: 700; }
.font-w-800 {
font-weight: 800; }
.font-w-900 {
font-weight: 900; }
/* Margin Padding
--------------------*/
.m-0px {
margin: 0px; }
.m-0px-tb {
margin-top: 0px;
margin-bottom: 0px; }
.m-0px-lr {
margin-left: 0px;
margin-right: 0px; }
.m-0px-t {
margin-top: 0px; }
.m-0px-l {
margin-left: 0px; }
.m-0px-r {
margin-right: 0px; }
.m-0px-b {
margin-bottom: 0px; }
.p-0px {
padding: 0px; }
.p-0px-tb {
padding-top: 0px;
padding-bottom: 0px; }
.p-0px-lr {
padding-left: 0px;
padding-right: 0px; }
.p-0px-t {
padding-top: 0px; }
.p-0px-l {
padding-left: 0px; }
.p-0px-r {
padding-right: 0px; }
.p-0px-b {
padding-bottom: 0px; }
.m-5px {
margin: 5px; }
.m-5px-tb {
margin-top: 5px;
margin-bottom: 5px; }
.m-5px-lr {
margin-left: 5px;
margin-right: 5px; }
.m-5px-t {
margin-top: 5px; }
.m-5px-l {
margin-left: 5px; }
.m-5px-r {
margin-right: 5px; }
.m-5px-b {
margin-bottom: 5px; }
.p-5px {
padding: 5px; }
.p-5px-tb {
padding-top: 5px;
padding-bottom: 5px; }
.p-5px-lr {
padding-left: 5px;
padding-right: 5px; }
.p-5px-t {
padding-top: 5px; }
.p-5px-l {
padding-left: 5px; }
.p-5px-r {
padding-right: 5px; }
.p-5px-b {
padding-bottom: 5px; }
.m-10px {
margin: 10px; }
.m-10px-tb {
margin-top: 10px;
margin-bottom: 10px; }
.m-10px-lr {
margin-left: 10px;
margin-right: 10px; }
.m-10px-t {
margin-top: 10px; }
.m-10px-l {
margin-left: 10px; }
.m-10px-r {
margin-right: 10px; }
.m-10px-b {
margin-bottom: 10px; }
.p-10px {
padding: 10px; }
.p-10px-tb {
padding-top: 10px;
padding-bottom: 10px; }
.p-10px-lr {
padding-left: 10px;
padding-right: 10px; }
.p-10px-t {
padding-top: 10px; }
.p-10px-l {
padding-left: 10px; }
.p-10px-r {
padding-right: 10px; }
.p-10px-b {
padding-bottom: 10px; }
.m-15px {
margin: 15px; }
.m-15px-tb {
margin-top: 15px;
margin-bottom: 15px; }
.m-15px-lr {
margin-left: 15px;
margin-right: 15px; }
.m-15px-t {
margin-top: 15px; }
.m-15px-l {
margin-left: 15px; }
.m-15px-r {
margin-right: 15px; }
.m-15px-b {
margin-bottom: 15px; }
.p-15px {
padding: 15px; }
.p-15px-tb {
padding-top: 15px;
padding-bottom: 15px; }
.p-15px-lr {
padding-left: 15px;
padding-right: 15px; }
.p-15px-t {
padding-top: 15px; }
.p-15px-l {
padding-left: 15px; }
.p-15px-r {
padding-right: 15px; }
.p-15px-b {
padding-bottom: 15px; }
.m-20px {
margin: 20px; }
.m-20px-tb {
margin-top: 20px;
margin-bottom: 20px; }
.m-20px-lr {
margin-left: 20px;
margin-right: 20px; }
.m-20px-t {
margin-top: 20px; }
.m-20px-l {
margin-left: 20px; }
.m-20px-r {
margin-right: 20px; }
.m-20px-b {
margin-bottom: 20px; }
.p-20px {
padding: 20px; }
.p-20px-tb {
padding-top: 20px;
padding-bottom: 20px; }
.p-20px-lr {
padding-left: 20px;
padding-right: 20px; }
.p-20px-t {
padding-top: 20px; }
.p-20px-l {
padding-left: 20px; }
.p-20px-r {
padding-right: 20px; }
.p-20px-b {
padding-bottom: 20px; }
.m-25px {
margin: 25px; }
.m-25px-tb {
margin-top: 25px;
margin-bottom: 25px; }
.m-25px-lr {
margin-left: 25px;
margin-right: 25px; }
.m-25px-t {
margin-top: 25px; }
.m-25px-l {
margin-left: 25px; }
.m-25px-r {
margin-right: 25px; }
.m-25px-b {
margin-bottom: 25px; }
.p-25px {
padding: 25px; }
.p-25px-tb {
padding-top: 25px;
padding-bottom: 25px; }
.p-25px-lr {
padding-left: 25px;
padding-right: 25px; }
.p-25px-t {
padding-top: 25px; }
.p-25px-l {
padding-left: 25px; }
.p-25px-r {
padding-right: 25px; }
.p-25px-b {
padding-bottom: 25px; }
.m-30px {
margin: 30px; }
.m-30px-tb {
margin-top: 30px;
margin-bottom: 30px; }
.m-30px-lr {
margin-left: 30px;
margin-right: 30px; }
.m-30px-t {
margin-top: 30px; }
.m-30px-l {
margin-left: 30px; }
.m-30px-r {
margin-right: 30px; }
.m-30px-b {
margin-bottom: 30px; }
.p-30px {
padding: 30px; }
.p-30px-tb {
padding-top: 30px;
padding-bottom: 30px; }
.p-30px-lr {
padding-left: 30px;
padding-right: 30px; }
.p-30px-t {
padding-top: 30px; }
.p-30px-l {
padding-left: 30px; }
.p-30px-r {
padding-right: 30px; }
.p-30px-b {
padding-bottom: 30px; }
.m-35px {
margin: 35px; }
.m-35px-tb {
margin-top: 35px;
margin-bottom: 35px; }
.m-35px-lr {
margin-left: 35px;
margin-right: 35px; }
.m-35px-t {
margin-top: 35px; }
.m-35px-l {
margin-left: 35px; }
.m-35px-r {
margin-right: 35px; }
.m-35px-b {
margin-bottom: 35px; }
.p-35px {
padding: 35px; }
.p-35px-tb {
padding-top: 35px;
padding-bottom: 35px; }
.p-35px-lr {
padding-left: 35px;
padding-right: 35px; }
.p-35px-t {
padding-top: 35px; }
.p-35px-l {
padding-left: 35px; }
.p-35px-r {
padding-right: 35px; }
.p-35px-b {
padding-bottom: 35px; }
.m-40px {
margin: 40px; }
.m-40px-tb {
margin-top: 40px;
margin-bottom: 40px; }
.m-40px-lr {
margin-left: 40px;
margin-right: 40px; }
.m-40px-t {
margin-top: 40px; }
.m-40px-l {
margin-left: 40px; }
.m-40px-r {
margin-right: 40px; }
.m-40px-b {
margin-bottom: 40px; }
.p-40px {
padding: 40px; }
.p-40px-tb {
padding-top: 40px;
padding-bottom: 40px; }
.p-40px-lr {
padding-left: 40px;
padding-right: 40px; }
.p-40px-t {
padding-top: 40px; }
.p-40px-l {
padding-left: 40px; }
.p-40px-r {
padding-right: 40px; }
.p-40px-b {
padding-bottom: 40px; }
.m-45px {
margin: 45px; }
.m-45px-tb {
margin-top: 45px;
margin-bottom: 45px; }
.m-45px-lr {
margin-left: 45px;
margin-right: 45px; }
.m-45px-t {
margin-top: 45px; }
.m-45px-l {
margin-left: 45px; }
.m-45px-r {
margin-right: 45px; }
.m-45px-b {
margin-bottom: 45px; }
.p-45px {
padding: 45px; }
.p-45px-tb {
padding-top: 45px;
padding-bottom: 45px; }
.p-45px-lr {
padding-left: 45px;
padding-right: 45px; }
.p-45px-t {
padding-top: 45px; }
.p-45px-l {
padding-left: 45px; }
.p-45px-r {
padding-right: 45px; }
.p-45px-b {
padding-bottom: 45px; }
.m-50px {
margin: 50px; }
.m-50px-tb {
margin-top: 50px;
margin-bottom: 50px; }
.m-50px-lr {
margin-left: 50px;
margin-right: 50px; }
.m-50px-t {
margin-top: 50px; }
.m-50px-l {
margin-left: 50px; }
.m-50px-r {
margin-right: 50px; }
.m-50px-b {
margin-bottom: 50px; }
.p-50px {
padding: 50px; }
.p-50px-tb {
padding-top: 50px;
padding-bottom: 50px; }
.p-50px-lr {
padding-left: 50px;
padding-right: 50px; }
.p-50px-t {
padding-top: 50px; }
.p-50px-l {
padding-left: 50px; }
.p-50px-r {
padding-right: 50px; }
.p-50px-b {
padding-bottom: 50px; }
.m-55px {
margin: 55px; }
.m-55px-tb {
margin-top: 55px;
margin-bottom: 55px; }
.m-55px-lr {
margin-left: 55px;
margin-right: 55px; }
.m-55px-t {
margin-top: 55px; }
.m-55px-l {
margin-left: 55px; }
.m-55px-r {
margin-right: 55px; }
.m-55px-b {
margin-bottom: 55px; }
.p-55px {
padding: 55px; }
.p-55px-tb {
padding-top: 55px;
padding-bottom: 55px; }
.p-55px-lr {
padding-left: 55px;
padding-right: 55px; }
.p-55px-t {
padding-top: 55px; }
.p-55px-l {
padding-left: 55px; }
.p-55px-r {
padding-right: 55px; }
.p-55px-b {
padding-bottom: 55px; }
.m-60px {
margin: 60px; }
.m-60px-tb {
margin-top: 60px;
margin-bottom: 60px; }
.m-60px-lr {
margin-left: 60px;
margin-right: 60px; }
.m-60px-t {
margin-top: 60px; }
.m-60px-l {
margin-left: 60px; }
.m-60px-r {
margin-right: 60px; }
.m-60px-b {
margin-bottom: 60px; }
.p-60px {
padding: 60px; }
.p-60px-tb {
padding-top: 60px;
padding-bottom: 60px; }
.p-60px-lr {
padding-left: 60px;
padding-right: 60px; }
.p-60px-t {
padding-top: 60px; }
.p-60px-l {
padding-left: 60px; }
.p-60px-r {
padding-right: 60px; }
.p-60px-b {
padding-bottom: 60px; }
.m-65px {
margin: 65px; }
.m-65px-tb {
margin-top: 65px;
margin-bottom: 65px; }
.m-65px-lr {
margin-left: 65px;
margin-right: 65px; }
.m-65px-t {
margin-top: 65px; }
.m-65px-l {
margin-left: 65px; }
.m-65px-r {
margin-right: 65px; }
.m-65px-b {
margin-bottom: 65px; }
.p-65px {
padding: 65px; }
.p-65px-tb {
padding-top: 65px;
padding-bottom: 65px; }
.p-65px-lr {
padding-left: 65px;
padding-right: 65px; }
.p-65px-t {
padding-top: 65px; }
.p-65px-l {
padding-left: 65px; }
.p-65px-r {
padding-right: 65px; }
.p-65px-b {
padding-bottom: 65px; }
.m-70px {
margin: 70px; }
.m-70px-tb {
margin-top: 70px;
margin-bottom: 70px; }
.m-70px-lr {
margin-left: 70px;
margin-right: 70px; }
.m-70px-t {
margin-top: 70px; }
.m-70px-l {
margin-left: 70px; }
.m-70px-r {
margin-right: 70px; }
.m-70px-b {
margin-bottom: 70px; }
.p-70px {
padding: 70px; }
.p-70px-tb {
padding-top: 70px;
padding-bottom: 70px; }
.p-70px-lr {
padding-left: 70px;
padding-right: 70px; }
.p-70px-t {
padding-top: 70px; }
.p-70px-l {
padding-left: 70px; }
.p-70px-r {
padding-right: 70px; }
.p-70px-b {
padding-bottom: 70px; }
.m-75px {
margin: 75px; }
.m-75px-tb {
margin-top: 75px;
margin-bottom: 75px; }
.m-75px-lr {
margin-left: 75px;
margin-right: 75px; }
.m-75px-t {
margin-top: 75px; }
.m-75px-l {
margin-left: 75px; }
.m-75px-r {
margin-right: 75px; }
.m-75px-b {
margin-bottom: 75px; }
.p-75px {
padding: 75px; }
.p-75px-tb {
padding-top: 75px;
padding-bottom: 75px; }
.p-75px-lr {
padding-left: 75px;
padding-right: 75px; }
.p-75px-t {
padding-top: 75px; }
.p-75px-l {
padding-left: 75px; }
.p-75px-r {
padding-right: 75px; }
.p-75px-b {
padding-bottom: 75px; }
.m-80px {
margin: 80px; }
.m-80px-tb {
margin-top: 80px;
margin-bottom: 80px; }
.m-80px-lr {
margin-left: 80px;
margin-right: 80px; }
.m-80px-t {
margin-top: 80px; }
.m-80px-l {
margin-left: 80px; }
.m-80px-r {
margin-right: 80px; }
.m-80px-b {
margin-bottom: 80px; }
.p-80px {
padding: 80px; }
.p-80px-tb {
padding-top: 80px;
padding-bottom: 80px; }
.p-80px-lr {
padding-left: 80px;
padding-right: 80px; }
.p-80px-t {
padding-top: 80px; }
.p-80px-l {
padding-left: 80px; }
.p-80px-r {
padding-right: 80px; }
.p-80px-b {
padding-bottom: 80px; }
.m-85px {
margin: 85px; }
.m-85px-tb {
margin-top: 85px;
margin-bottom: 85px; }
.m-85px-lr {
margin-left: 85px;
margin-right: 85px; }
.m-85px-t {
margin-top: 85px; }
.m-85px-l {
margin-left: 85px; }
.m-85px-r {
margin-right: 85px; }
.m-85px-b {
margin-bottom: 85px; }
.p-85px {
padding: 85px; }
.p-85px-tb {
padding-top: 85px;
padding-bottom: 85px; }
.p-85px-lr {
padding-left: 85px;
padding-right: 85px; }
.p-85px-t {
padding-top: 85px; }
.p-85px-l {
padding-left: 85px; }
.p-85px-r {
padding-right: 85px; }
.p-85px-b {
padding-bottom: 85px; }
.m-90px {
margin: 90px; }
.m-90px-tb {
margin-top: 90px;
margin-bottom: 90px; }
.m-90px-lr {
margin-left: 90px;
margin-right: 90px; }
.m-90px-t {
margin-top: 90px; }
.m-90px-l {
margin-left: 90px; }
.m-90px-r {
margin-right: 90px; }
.m-90px-b {
margin-bottom: 90px; }
.p-90px {
padding: 90px; }
.p-90px-tb {
padding-top: 90px;
padding-bottom: 90px; }
.p-90px-lr {
padding-left: 90px;
padding-right: 90px; }
.p-90px-t {
padding-top: 90px; }
.p-90px-l {
padding-left: 90px; }
.p-90px-r {
padding-right: 90px; }
.p-90px-b {
padding-bottom: 90px; }
.m-95px {
margin: 95px; }
.m-95px-tb {
margin-top: 95px;
margin-bottom: 95px; }
.m-95px-lr {
margin-left: 95px;
margin-right: 95px; }
.m-95px-t {
margin-top: 95px; }
.m-95px-l {
margin-left: 95px; }
.m-95px-r {
margin-right: 95px; }
.m-95px-b {
margin-bottom: 95px; }
.p-95px {
padding: 95px; }
.p-95px-tb {
padding-top: 95px;
padding-bottom: 95px; }
.p-95px-lr {
padding-left: 95px;
padding-right: 95px; }
.p-95px-t {
padding-top: 95px; }
.p-95px-l {
padding-left: 95px; }
.p-95px-r {
padding-right: 95px; }
.p-95px-b {
padding-bottom: 95px; }
.m-100px {
margin: 100px; }
.m-100px-tb {
margin-top: 100px;
margin-bottom: 100px; }
.m-100px-lr {
margin-left: 100px;
margin-right: 100px; }
.m-100px-t {
margin-top: 100px; }
.m-100px-l {
margin-left: 100px; }
.m-100px-r {
margin-right: 100px; }
.m-100px-b {
margin-bottom: 100px; }
.p-100px {
padding: 100px; }
.p-100px-tb {
padding-top: 100px;
padding-bottom: 100px; }
.p-100px-lr {
padding-left: 100px;
padding-right: 100px; }
.p-100px-t {
padding-top: 100px; }
.p-100px-l {
padding-left: 100px; }
.p-100px-r {
padding-right: 100px; }
.p-100px-b {
padding-bottom: 100px; }
@media (max-width: 1200px) {
/* Margin Padding
--------------------*/
.lg-m-0px {
margin: 0px; }
.lg-m-0px-tb {
margin-top: 0px;
margin-bottom: 0px; }
.lg-m-0px-lr {
margin-left: 0px;
margin-right: 0px; }
.lg-m-0px-t {
margin-top: 0px; }
.lg-m-0px-l {
margin-left: 0px; }
.lg-m-0px-r {
margin-right: 0px; }
.lg-m-0px-b {
margin-bottom: 0px; }
.lg-p-0px {
padding: 0px; }
.lg-p-0px-tb {
padding-top: 0px;
padding-bottom: 0px; }
.lg-p-0px-lr {
padding-left: 0px;
padding-right: 0px; }
.lg-p-0px-t {
padding-top: 0px; }
.lg-p-0px-l {
padding-left: 0px; }
.lg-p-0px-r {
padding-right: 0px; }
.lg-p-0px-b {
padding-bottom: 0px; }
.lg-m-5px {
margin: 5px; }
.lg-m-5px-tb {
margin-top: 5px;
margin-bottom: 5px; }
.lg-m-5px-lr {
margin-left: 5px;
margin-right: 5px; }
.lg-m-5px-t {
margin-top: 5px; }
.lg-m-5px-l {
margin-left: 5px; }
.lg-m-5px-r {
margin-right: 5px; }
.lg-m-5px-b {
margin-bottom: 5px; }
.lg-p-5px {
padding: 5px; }
.lg-p-5px-tb {
padding-top: 5px;
padding-bottom: 5px; }
.lg-p-5px-lr {
padding-left: 5px;
padding-right: 5px; }
.lg-p-5px-t {
padding-top: 5px; }
.lg-p-5px-l {
padding-left: 5px; }
.lg-p-5px-r {
padding-right: 5px; }
.lg-p-5px-b {
padding-bottom: 5px; }
.lg-m-10px {
margin: 10px; }
.lg-m-10px-tb {
margin-top: 10px;
margin-bottom: 10px; }
.lg-m-10px-lr {
margin-left: 10px;
margin-right: 10px; }
.lg-m-10px-t {
margin-top: 10px; }
.lg-m-10px-l {
margin-left: 10px; }
.lg-m-10px-r {
margin-right: 10px; }
.lg-m-10px-b {
margin-bottom: 10px; }
.lg-p-10px {
padding: 10px; }
.lg-p-10px-tb {
padding-top: 10px;
padding-bottom: 10px; }
.lg-p-10px-lr {
padding-left: 10px;
padding-right: 10px; }
.lg-p-10px-t {
padding-top: 10px; }
.lg-p-10px-l {
padding-left: 10px; }
.lg-p-10px-r {
padding-right: 10px; }
.lg-p-10px-b {
padding-bottom: 10px; }
.lg-m-15px {
margin: 15px; }
.lg-m-15px-tb {
margin-top: 15px;
margin-bottom: 15px; }
.lg-m-15px-lr {
margin-left: 15px;
margin-right: 15px; }
.lg-m-15px-t {
margin-top: 15px; }
.lg-m-15px-l {
margin-left: 15px; }
.lg-m-15px-r {
margin-right: 15px; }
.lg-m-15px-b {
margin-bottom: 15px; }
.lg-p-15px {
padding: 15px; }
.lg-p-15px-tb {
padding-top: 15px;
padding-bottom: 15px; }
.lg-p-15px-lr {
padding-left: 15px;
padding-right: 15px; }
.lg-p-15px-t {
padding-top: 15px; }
.lg-p-15px-l {
padding-left: 15px; }
.lg-p-15px-r {
padding-right: 15px; }
.lg-p-15px-b {
padding-bottom: 15px; }
.lg-m-20px {
margin: 20px; }
.lg-m-20px-tb {
margin-top: 20px;
margin-bottom: 20px; }
.lg-m-20px-lr {
margin-left: 20px;
margin-right: 20px; }
.lg-m-20px-t {
margin-top: 20px; }
.lg-m-20px-l {
margin-left: 20px; }
.lg-m-20px-r {
margin-right: 20px; }
.lg-m-20px-b {
margin-bottom: 20px; }
.lg-p-20px {
padding: 20px; }
.lg-p-20px-tb {
padding-top: 20px;
padding-bottom: 20px; }
.lg-p-20px-lr {
padding-left: 20px;
padding-right: 20px; }
.lg-p-20px-t {
padding-top: 20px; }
.lg-p-20px-l {
padding-left: 20px; }
.lg-p-20px-r {
padding-right: 20px; }
.lg-p-20px-b {
padding-bottom: 20px; }
.lg-m-25px {
margin: 25px; }
.lg-m-25px-tb {
margin-top: 25px;
margin-bottom: 25px; }
.lg-m-25px-lr {
margin-left: 25px;
margin-right: 25px; }
.lg-m-25px-t {
margin-top: 25px; }
.lg-m-25px-l {
margin-left: 25px; }
.lg-m-25px-r {
margin-right: 25px; }
.lg-m-25px-b {
margin-bottom: 25px; }
.lg-p-25px {
padding: 25px; }
.lg-p-25px-tb {
padding-top: 25px;
padding-bottom: 25px; }
.lg-p-25px-lr {
padding-left: 25px;
padding-right: 25px; }
.lg-p-25px-t {
padding-top: 25px; }
.lg-p-25px-l {
padding-left: 25px; }
.lg-p-25px-r {
padding-right: 25px; }
.lg-p-25px-b {
padding-bottom: 25px; }
.lg-m-30px {
margin: 30px; }
.lg-m-30px-tb {
margin-top: 30px;
margin-bottom: 30px; }
.lg-m-30px-lr {
margin-left: 30px;
margin-right: 30px; }
.lg-m-30px-t {
margin-top: 30px; }
.lg-m-30px-l {
margin-left: 30px; }
.lg-m-30px-r {
margin-right: 30px; }
.lg-m-30px-b {
margin-bottom: 30px; }
.lg-p-30px {
padding: 30px; }
.lg-p-30px-tb {
padding-top: 30px;
padding-bottom: 30px; }
.lg-p-30px-lr {
padding-left: 30px;
padding-right: 30px; }
.lg-p-30px-t {
padding-top: 30px; }
.lg-p-30px-l {
padding-left: 30px; }
.lg-p-30px-r {
padding-right: 30px; }
.lg-p-30px-b {
padding-bottom: 30px; }
.lg-m-35px {
margin: 35px; }
.lg-m-35px-tb {
margin-top: 35px;
margin-bottom: 35px; }
.lg-m-35px-lr {
margin-left: 35px;
margin-right: 35px; }
.lg-m-35px-t {
margin-top: 35px; }
.lg-m-35px-l {
margin-left: 35px; }
.lg-m-35px-r {
margin-right: 35px; }
.lg-m-35px-b {
margin-bottom: 35px; }
.lg-p-35px {
padding: 35px; }
.lg-p-35px-tb {
padding-top: 35px;
padding-bottom: 35px; }
.lg-p-35px-lr {
padding-left: 35px;
padding-right: 35px; }
.lg-p-35px-t {
padding-top: 35px; }
.lg-p-35px-l {
padding-left: 35px; }
.lg-p-35px-r {
padding-right: 35px; }
.lg-p-35px-b {
padding-bottom: 35px; }
.lg-m-40px {
margin: 40px; }
.lg-m-40px-tb {
margin-top: 40px;
margin-bottom: 40px; }
.lg-m-40px-lr {
margin-left: 40px;
margin-right: 40px; }
.lg-m-40px-t {
margin-top: 40px; }
.lg-m-40px-l {
margin-left: 40px; }
.lg-m-40px-r {
margin-right: 40px; }
.lg-m-40px-b {
margin-bottom: 40px; }
.lg-p-40px {
padding: 40px; }
.lg-p-40px-tb {
padding-top: 40px;
padding-bottom: 40px; }
.lg-p-40px-lr {
padding-left: 40px;
padding-right: 40px; }
.lg-p-40px-t {
padding-top: 40px; }
.lg-p-40px-l {
padding-left: 40px; }
.lg-p-40px-r {
padding-right: 40px; }
.lg-p-40px-b {
padding-bottom: 40px; }
.lg-m-45px {
margin: 45px; }
.lg-m-45px-tb {
margin-top: 45px;
margin-bottom: 45px; }
.lg-m-45px-lr {
margin-left: 45px;
margin-right: 45px; }
.lg-m-45px-t {
margin-top: 45px; }
.lg-m-45px-l {
margin-left: 45px; }
.lg-m-45px-r {
margin-right: 45px; }
.lg-m-45px-b {
margin-bottom: 45px; }
.lg-p-45px {
padding: 45px; }
.lg-p-45px-tb {
padding-top: 45px;
padding-bottom: 45px; }
.lg-p-45px-lr {
padding-left: 45px;
padding-right: 45px; }
.lg-p-45px-t {
padding-top: 45px; }
.lg-p-45px-l {
padding-left: 45px; }
.lg-p-45px-r {
padding-right: 45px; }
.lg-p-45px-b {
padding-bottom: 45px; }
.lg-m-50px {
margin: 50px; }
.lg-m-50px-tb {
margin-top: 50px;
margin-bottom: 50px; }
.lg-m-50px-lr {
margin-left: 50px;
margin-right: 50px; }
.lg-m-50px-t {
margin-top: 50px; }
.lg-m-50px-l {
margin-left: 50px; }
.lg-m-50px-r {
margin-right: 50px; }
.lg-m-50px-b {
margin-bottom: 50px; }
.lg-p-50px {
padding: 50px; }
.lg-p-50px-tb {
padding-top: 50px;
padding-bottom: 50px; }
.lg-p-50px-lr {
padding-left: 50px;
padding-right: 50px; }
.lg-p-50px-t {
padding-top: 50px; }
.lg-p-50px-l {
padding-left: 50px; }
.lg-p-50px-r {
padding-right: 50px; }
.lg-p-50px-b {
padding-bottom: 50px; }
.lg-m-55px {
margin: 55px; }
.lg-m-55px-tb {
margin-top: 55px;
margin-bottom: 55px; }
.lg-m-55px-lr {
margin-left: 55px;
margin-right: 55px; }
.lg-m-55px-t {
margin-top: 55px; }
.lg-m-55px-l {
margin-left: 55px; }
.lg-m-55px-r {
margin-right: 55px; }
.lg-m-55px-b {
margin-bottom: 55px; }
.lg-p-55px {
padding: 55px; }
.lg-p-55px-tb {
padding-top: 55px;
padding-bottom: 55px; }
.lg-p-55px-lr {
padding-left: 55px;
padding-right: 55px; }
.lg-p-55px-t {
padding-top: 55px; }
.lg-p-55px-l {
padding-left: 55px; }
.lg-p-55px-r {
padding-right: 55px; }
.lg-p-55px-b {
padding-bottom: 55px; }
.lg-m-60px {
margin: 60px; }
.lg-m-60px-tb {
margin-top: 60px;
margin-bottom: 60px; }
.lg-m-60px-lr {
margin-left: 60px;
margin-right: 60px; }
.lg-m-60px-t {
margin-top: 60px; }
.lg-m-60px-l {
margin-left: 60px; }
.lg-m-60px-r {
margin-right: 60px; }
.lg-m-60px-b {
margin-bottom: 60px; }
.lg-p-60px {
padding: 60px; }
.lg-p-60px-tb {
padding-top: 60px;
padding-bottom: 60px; }
.lg-p-60px-lr {
padding-left: 60px;
padding-right: 60px; }
.lg-p-60px-t {
padding-top: 60px; }
.lg-p-60px-l {
padding-left: 60px; }
.lg-p-60px-r {
padding-right: 60px; }
.lg-p-60px-b {
padding-bottom: 60px; }
.lg-m-65px {
margin: 65px; }
.lg-m-65px-tb {
margin-top: 65px;
margin-bottom: 65px; }
.lg-m-65px-lr {
margin-left: 65px;
margin-right: 65px; }
.lg-m-65px-t {
margin-top: 65px; }
.lg-m-65px-l {
margin-left: 65px; }
.lg-m-65px-r {
margin-right: 65px; }
.lg-m-65px-b {
margin-bottom: 65px; }
.lg-p-65px {
padding: 65px; }
.lg-p-65px-tb {
padding-top: 65px;
padding-bottom: 65px; }
.lg-p-65px-lr {
padding-left: 65px;
padding-right: 65px; }
.lg-p-65px-t {
padding-top: 65px; }
.lg-p-65px-l {
padding-left: 65px; }
.lg-p-65px-r {
padding-right: 65px; }
.lg-p-65px-b {
padding-bottom: 65px; }
.lg-m-70px {
margin: 70px; }
.lg-m-70px-tb {
margin-top: 70px;
margin-bottom: 70px; }
.lg-m-70px-lr {
margin-left: 70px;
margin-right: 70px; }
.lg-m-70px-t {
margin-top: 70px; }
.lg-m-70px-l {
margin-left: 70px; }
.lg-m-70px-r {
margin-right: 70px; }
.lg-m-70px-b {
margin-bottom: 70px; }
.lg-p-70px {
padding: 70px; }
.lg-p-70px-tb {
padding-top: 70px;
padding-bottom: 70px; }
.lg-p-70px-lr {
padding-left: 70px;
padding-right: 70px; }
.lg-p-70px-t {
padding-top: 70px; }
.lg-p-70px-l {
padding-left: 70px; }
.lg-p-70px-r {
padding-right: 70px; }
.lg-p-70px-b {
padding-bottom: 70px; }
.lg-m-75px {
margin: 75px; }
.lg-m-75px-tb {
margin-top: 75px;
margin-bottom: 75px; }
.lg-m-75px-lr {
margin-left: 75px;
margin-right: 75px; }
.lg-m-75px-t {
margin-top: 75px; }
.lg-m-75px-l {
margin-left: 75px; }
.lg-m-75px-r {
margin-right: 75px; }
.lg-m-75px-b {
margin-bottom: 75px; }
.lg-p-75px {
padding: 75px; }
.lg-p-75px-tb {
padding-top: 75px;
padding-bottom: 75px; }
.lg-p-75px-lr {
padding-left: 75px;
padding-right: 75px; }
.lg-p-75px-t {
padding-top: 75px; }
.lg-p-75px-l {
padding-left: 75px; }
.lg-p-75px-r {
padding-right: 75px; }
.lg-p-75px-b {
padding-bottom: 75px; }
.lg-m-80px {
margin: 80px; }
.lg-m-80px-tb {
margin-top: 80px;
margin-bottom: 80px; }
.lg-m-80px-lr {
margin-left: 80px;
margin-right: 80px; }
.lg-m-80px-t {
margin-top: 80px; }
.lg-m-80px-l {
margin-left: 80px; }
.lg-m-80px-r {
margin-right: 80px; }
.lg-m-80px-b {
margin-bottom: 80px; }
.lg-p-80px {
padding: 80px; }
.lg-p-80px-tb {
padding-top: 80px;
padding-bottom: 80px; }
.lg-p-80px-lr {
padding-left: 80px;
padding-right: 80px; }
.lg-p-80px-t {
padding-top: 80px; }
.lg-p-80px-l {
padding-left: 80px; }
.lg-p-80px-r {
padding-right: 80px; }
.lg-p-80px-b {
padding-bottom: 80px; }
.lg-m-85px {
margin: 85px; }
.lg-m-85px-tb {
margin-top: 85px;
margin-bottom: 85px; }
.lg-m-85px-lr {
margin-left: 85px;
margin-right: 85px; }
.lg-m-85px-t {
margin-top: 85px; }
.lg-m-85px-l {
margin-left: 85px; }
.lg-m-85px-r {
margin-right: 85px; }
.lg-m-85px-b {
margin-bottom: 85px; }
.lg-p-85px {
padding: 85px; }
.lg-p-85px-tb {
padding-top: 85px;
padding-bottom: 85px; }
.lg-p-85px-lr {
padding-left: 85px;
padding-right: 85px; }
.lg-p-85px-t {
padding-top: 85px; }
.lg-p-85px-l {
padding-left: 85px; }
.lg-p-85px-r {
padding-right: 85px; }
.lg-p-85px-b {
padding-bottom: 85px; }
.lg-m-90px {
margin: 90px; }
.lg-m-90px-tb {
margin-top: 90px;
margin-bottom: 90px; }
.lg-m-90px-lr {
margin-left: 90px;
margin-right: 90px; }
.lg-m-90px-t {
margin-top: 90px; }
.lg-m-90px-l {
margin-left: 90px; }
.lg-m-90px-r {
margin-right: 90px; }
.lg-m-90px-b {
margin-bottom: 90px; }
.lg-p-90px {
padding: 90px; }
.lg-p-90px-tb {
padding-top: 90px;
padding-bottom: 90px; }
.lg-p-90px-lr {
padding-left: 90px;
padding-right: 90px; }
.lg-p-90px-t {
padding-top: 90px; }
.lg-p-90px-l {
padding-left: 90px; }
.lg-p-90px-r {
padding-right: 90px; }
.lg-p-90px-b {
padding-bottom: 90px; }
.lg-m-95px {
margin: 95px; }
.lg-m-95px-tb {
margin-top: 95px;
margin-bottom: 95px; }
.lg-m-95px-lr {
margin-left: 95px;
margin-right: 95px; }
.lg-m-95px-t {
margin-top: 95px; }
.lg-m-95px-l {
margin-left: 95px; }
.lg-m-95px-r {
margin-right: 95px; }
.lg-m-95px-b {
margin-bottom: 95px; }
.lg-p-95px {
padding: 95px; }
.lg-p-95px-tb {
padding-top: 95px;
padding-bottom: 95px; }
.lg-p-95px-lr {
padding-left: 95px;
padding-right: 95px; }
.lg-p-95px-t {
padding-top: 95px; }
.lg-p-95px-l {
padding-left: 95px; }
.lg-p-95px-r {
padding-right: 95px; }
.lg-p-95px-b {
padding-bottom: 95px; }
.lg-m-100px {
margin: 100px; }
.lg-m-100px-tb {
margin-top: 100px;
margin-bottom: 100px; }
.lg-m-100px-lr {
margin-left: 100px;
margin-right: 100px; }
.lg-m-100px-t {
margin-top: 100px; }
.lg-m-100px-l {
margin-left: 100px; }
.lg-m-100px-r {
margin-right: 100px; }
.lg-m-100px-b {
margin-bottom: 100px; }
.lg-p-100px {
padding: 100px; }
.lg-p-100px-tb {
padding-top: 100px;
padding-bottom: 100px; }
.lg-p-100px-lr {
padding-left: 100px;
padding-right: 100px; }
.lg-p-100px-t {
padding-top: 100px; }
.lg-p-100px-l {
padding-left: 100px; }
.lg-p-100px-r {
padding-right: 100px; }
.lg-p-100px-b {
padding-bottom: 100px; } }
@media (max-width: 991px) {
/* Margin Padding
--------------------*/
.md-m-0px {
margin: 0px; }
.md-m-0px-tb {
margin-top: 0px;
margin-bottom: 0px; }
.md-m-0px-lr {
margin-left: 0px;
margin-right: 0px; }
.md-m-0px-t {
margin-top: 0px; }
.md-m-0px-l {
margin-left: 0px; }
.md-m-0px-r {
margin-right: 0px; }
.md-m-0px-b {
margin-bottom: 0px; }
.md-p-0px {
padding: 0px; }
.md-p-0px-tb {
padding-top: 0px;
padding-bottom: 0px; }
.md-p-0px-lr {
padding-left: 0px;
padding-right: 0px; }
.md-p-0px-t {
padding-top: 0px; }
.md-p-0px-l {
padding-left: 0px; }
.md-p-0px-r {
padding-right: 0px; }
.md-p-0px-b {
padding-bottom: 0px; }
.md-m-5px {
margin: 5px; }
.md-m-5px-tb {
margin-top: 5px;
margin-bottom: 5px; }
.md-m-5px-lr {
margin-left: 5px;
margin-right: 5px; }
.md-m-5px-t {
margin-top: 5px; }
.md-m-5px-l {
margin-left: 5px; }
.md-m-5px-r {
margin-right: 5px; }
.md-m-5px-b {
margin-bottom: 5px; }
.md-p-5px {
padding: 5px; }
.md-p-5px-tb {
padding-top: 5px;
padding-bottom: 5px; }
.md-p-5px-lr {
padding-left: 5px;
padding-right: 5px; }
.md-p-5px-t {
padding-top: 5px; }
.md-p-5px-l {
padding-left: 5px; }
.md-p-5px-r {
padding-right: 5px; }
.md-p-5px-b {
padding-bottom: 5px; }
.md-m-10px {
margin: 10px; }
.md-m-10px-tb {
margin-top: 10px;
margin-bottom: 10px; }
.md-m-10px-lr {
margin-left: 10px;
margin-right: 10px; }
.md-m-10px-t {
margin-top: 10px; }
.md-m-10px-l {
margin-left: 10px; }
.md-m-10px-r {
margin-right: 10px; }
.md-m-10px-b {
margin-bottom: 10px; }
.md-p-10px {
padding: 10px; }
.md-p-10px-tb {
padding-top: 10px;
padding-bottom: 10px; }
.md-p-10px-lr {
padding-left: 10px;
padding-right: 10px; }
.md-p-10px-t {
padding-top: 10px; }
.md-p-10px-l {
padding-left: 10px; }
.md-p-10px-r {
padding-right: 10px; }
.md-p-10px-b {
padding-bottom: 10px; }
.md-m-15px {
margin: 15px; }
.md-m-15px-tb {
margin-top: 15px;
margin-bottom: 15px; }
.md-m-15px-lr {
margin-left: 15px;
margin-right: 15px; }
.md-m-15px-t {
margin-top: 15px; }
.md-m-15px-l {
margin-left: 15px; }
.md-m-15px-r {
margin-right: 15px; }
.md-m-15px-b {
margin-bottom: 15px; }
.md-p-15px {
padding: 15px; }
.md-p-15px-tb {
padding-top: 15px;
padding-bottom: 15px; }
.md-p-15px-lr {
padding-left: 15px;
padding-right: 15px; }
.md-p-15px-t {
padding-top: 15px; }
.md-p-15px-l {
padding-left: 15px; }
.md-p-15px-r {
padding-right: 15px; }
.md-p-15px-b {
padding-bottom: 15px; }
.md-m-20px {
margin: 20px; }
.md-m-20px-tb {
margin-top: 20px;
margin-bottom: 20px; }
.md-m-20px-lr {
margin-left: 20px;
margin-right: 20px; }
.md-m-20px-t {
margin-top: 20px; }
.md-m-20px-l {
margin-left: 20px; }
.md-m-20px-r {
margin-right: 20px; }
.md-m-20px-b {
margin-bottom: 20px; }
.md-p-20px {
padding: 20px; }
.md-p-20px-tb {
padding-top: 20px;
padding-bottom: 20px; }
.md-p-20px-lr {
padding-left: 20px;
padding-right: 20px; }
.md-p-20px-t {
padding-top: 20px; }
.md-p-20px-l {
padding-left: 20px; }
.md-p-20px-r {
padding-right: 20px; }
.md-p-20px-b {
padding-bottom: 20px; }
.md-m-25px {
margin: 25px; }
.md-m-25px-tb {
margin-top: 25px;
margin-bottom: 25px; }
.md-m-25px-lr {
margin-left: 25px;
margin-right: 25px; }
.md-m-25px-t {
margin-top: 25px; }
.md-m-25px-l {
margin-left: 25px; }
.md-m-25px-r {
margin-right: 25px; }
.md-m-25px-b {
margin-bottom: 25px; }
.md-p-25px {
padding: 25px; }
.md-p-25px-tb {
padding-top: 25px;
padding-bottom: 25px; }
.md-p-25px-lr {
padding-left: 25px;
padding-right: 25px; }
.md-p-25px-t {
padding-top: 25px; }
.md-p-25px-l {
padding-left: 25px; }
.md-p-25px-r {
padding-right: 25px; }
.md-p-25px-b {
padding-bottom: 25px; }
.md-m-30px {
margin: 30px; }
.md-m-30px-tb {
margin-top: 30px;
margin-bottom: 30px; }
.md-m-30px-lr {
margin-left: 30px;
margin-right: 30px; }
.md-m-30px-t {
margin-top: 30px; }
.md-m-30px-l {
margin-left: 30px; }
.md-m-30px-r {
margin-right: 30px; }
.md-m-30px-b {
margin-bottom: 30px; }
.md-p-30px {
padding: 30px; }
.md-p-30px-tb {
padding-top: 30px;
padding-bottom: 30px; }
.md-p-30px-lr {
padding-left: 30px;
padding-right: 30px; }
.md-p-30px-t {
padding-top: 30px; }
.md-p-30px-l {
padding-left: 30px; }
.md-p-30px-r {
padding-right: 30px; }
.md-p-30px-b {
padding-bottom: 30px; }
.md-m-35px {
margin: 35px; }
.md-m-35px-tb {
margin-top: 35px;
margin-bottom: 35px; }
.md-m-35px-lr {
margin-left: 35px;
margin-right: 35px; }
.md-m-35px-t {
margin-top: 35px; }
.md-m-35px-l {
margin-left: 35px; }
.md-m-35px-r {
margin-right: 35px; }
.md-m-35px-b {
margin-bottom: 35px; }
.md-p-35px {
padding: 35px; }
.md-p-35px-tb {
padding-top: 35px;
padding-bottom: 35px; }
.md-p-35px-lr {
padding-left: 35px;
padding-right: 35px; }
.md-p-35px-t {
padding-top: 35px; }
.md-p-35px-l {
padding-left: 35px; }
.md-p-35px-r {
padding-right: 35px; }
.md-p-35px-b {
padding-bottom: 35px; }
.md-m-40px {
margin: 40px; }
.md-m-40px-tb {
margin-top: 40px;
margin-bottom: 40px; }
.md-m-40px-lr {
margin-left: 40px;
margin-right: 40px; }
.md-m-40px-t {
margin-top: 40px; }
.md-m-40px-l {
margin-left: 40px; }
.md-m-40px-r {
margin-right: 40px; }
.md-m-40px-b {
margin-bottom: 40px; }
.md-p-40px {
padding: 40px; }
.md-p-40px-tb {
padding-top: 40px;
padding-bottom: 40px; }
.md-p-40px-lr {
padding-left: 40px;
padding-right: 40px; }
.md-p-40px-t {
padding-top: 40px; }
.md-p-40px-l {
padding-left: 40px; }
.md-p-40px-r {
padding-right: 40px; }
.md-p-40px-b {
padding-bottom: 40px; }
.md-m-45px {
margin: 45px; }
.md-m-45px-tb {
margin-top: 45px;
margin-bottom: 45px; }
.md-m-45px-lr {
margin-left: 45px;
margin-right: 45px; }
.md-m-45px-t {
margin-top: 45px; }
.md-m-45px-l {
margin-left: 45px; }
.md-m-45px-r {
margin-right: 45px; }
.md-m-45px-b {
margin-bottom: 45px; }
.md-p-45px {
padding: 45px; }
.md-p-45px-tb {
padding-top: 45px;
padding-bottom: 45px; }
.md-p-45px-lr {
padding-left: 45px;
padding-right: 45px; }
.md-p-45px-t {
padding-top: 45px; }
.md-p-45px-l {
padding-left: 45px; }
.md-p-45px-r {
padding-right: 45px; }
.md-p-45px-b {
padding-bottom: 45px; }
.md-m-50px {
margin: 50px; }
.md-m-50px-tb {
margin-top: 50px;
margin-bottom: 50px; }
.md-m-50px-lr {
margin-left: 50px;
margin-right: 50px; }
.md-m-50px-t {
margin-top: 50px; }
.md-m-50px-l {
margin-left: 50px; }
.md-m-50px-r {
margin-right: 50px; }
.md-m-50px-b {
margin-bottom: 50px; }
.md-p-50px {
padding: 50px; }
.md-p-50px-tb {
padding-top: 50px;
padding-bottom: 50px; }
.md-p-50px-lr {
padding-left: 50px;
padding-right: 50px; }
.md-p-50px-t {
padding-top: 50px; }
.md-p-50px-l {
padding-left: 50px; }
.md-p-50px-r {
padding-right: 50px; }
.md-p-50px-b {
padding-bottom: 50px; }
.md-m-55px {
margin: 55px; }
.md-m-55px-tb {
margin-top: 55px;
margin-bottom: 55px; }
.md-m-55px-lr {
margin-left: 55px;
margin-right: 55px; }
.md-m-55px-t {
margin-top: 55px; }
.md-m-55px-l {
margin-left: 55px; }
.md-m-55px-r {
margin-right: 55px; }
.md-m-55px-b {
margin-bottom: 55px; }
.md-p-55px {
padding: 55px; }
.md-p-55px-tb {
padding-top: 55px;
padding-bottom: 55px; }
.md-p-55px-lr {
padding-left: 55px;
padding-right: 55px; }
.md-p-55px-t {
padding-top: 55px; }
.md-p-55px-l {
padding-left: 55px; }
.md-p-55px-r {
padding-right: 55px; }
.md-p-55px-b {
padding-bottom: 55px; }
.md-m-60px {
margin: 60px; }
.md-m-60px-tb {
margin-top: 60px;
margin-bottom: 60px; }
.md-m-60px-lr {
margin-left: 60px;
margin-right: 60px; }
.md-m-60px-t {
margin-top: 60px; }
.md-m-60px-l {
margin-left: 60px; }
.md-m-60px-r {
margin-right: 60px; }
.md-m-60px-b {
margin-bottom: 60px; }
.md-p-60px {
padding: 60px; }
.md-p-60px-tb {
padding-top: 60px;
padding-bottom: 60px; }
.md-p-60px-lr {
padding-left: 60px;
padding-right: 60px; }
.md-p-60px-t {
padding-top: 60px; }
.md-p-60px-l {
padding-left: 60px; }
.md-p-60px-r {
padding-right: 60px; }
.md-p-60px-b {
padding-bottom: 60px; }
.md-m-65px {
margin: 65px; }
.md-m-65px-tb {
margin-top: 65px;
margin-bottom: 65px; }
.md-m-65px-lr {
margin-left: 65px;
margin-right: 65px; }
.md-m-65px-t {
margin-top: 65px; }
.md-m-65px-l {
margin-left: 65px; }
.md-m-65px-r {
margin-right: 65px; }
.md-m-65px-b {
margin-bottom: 65px; }
.md-p-65px {
padding: 65px; }
.md-p-65px-tb {
padding-top: 65px;
padding-bottom: 65px; }
.md-p-65px-lr {
padding-left: 65px;
padding-right: 65px; }
.md-p-65px-t {
padding-top: 65px; }
.md-p-65px-l {
padding-left: 65px; }
.md-p-65px-r {
padding-right: 65px; }
.md-p-65px-b {
padding-bottom: 65px; }
.md-m-70px {
margin: 70px; }
.md-m-70px-tb {
margin-top: 70px;
margin-bottom: 70px; }
.md-m-70px-lr {
margin-left: 70px;
margin-right: 70px; }
.md-m-70px-t {
margin-top: 70px; }
.md-m-70px-l {
margin-left: 70px; }
.md-m-70px-r {
margin-right: 70px; }
.md-m-70px-b {
margin-bottom: 70px; }
.md-p-70px {
padding: 70px; }
.md-p-70px-tb {
padding-top: 70px;
padding-bottom: 70px; }
.md-p-70px-lr {
padding-left: 70px;
padding-right: 70px; }
.md-p-70px-t {
padding-top: 70px; }
.md-p-70px-l {
padding-left: 70px; }
.md-p-70px-r {
padding-right: 70px; }
.md-p-70px-b {
padding-bottom: 70px; }
.md-m-75px {
margin: 75px; }
.md-m-75px-tb {
margin-top: 75px;
margin-bottom: 75px; }
.md-m-75px-lr {
margin-left: 75px;
margin-right: 75px; }
.md-m-75px-t {
margin-top: 75px; }
.md-m-75px-l {
margin-left: 75px; }
.md-m-75px-r {
margin-right: 75px; }
.md-m-75px-b {
margin-bottom: 75px; }
.md-p-75px {
padding: 75px; }
.md-p-75px-tb {
padding-top: 75px;
padding-bottom: 75px; }
.md-p-75px-lr {
padding-left: 75px;
padding-right: 75px; }
.md-p-75px-t {
padding-top: 75px; }
.md-p-75px-l {
padding-left: 75px; }
.md-p-75px-r {
padding-right: 75px; }
.md-p-75px-b {
padding-bottom: 75px; }
.md-m-80px {
margin: 80px; }
.md-m-80px-tb {
margin-top: 80px;
margin-bottom: 80px; }
.md-m-80px-lr {
margin-left: 80px;
margin-right: 80px; }
.md-m-80px-t {
margin-top: 80px; }
.md-m-80px-l {
margin-left: 80px; }
.md-m-80px-r {
margin-right: 80px; }
.md-m-80px-b {
margin-bottom: 80px; }
.md-p-80px {
padding: 80px; }
.md-p-80px-tb {
padding-top: 80px;
padding-bottom: 80px; }
.md-p-80px-lr {
padding-left: 80px;
padding-right: 80px; }
.md-p-80px-t {
padding-top: 80px; }
.md-p-80px-l {
padding-left: 80px; }
.md-p-80px-r {
padding-right: 80px; }
.md-p-80px-b {
padding-bottom: 80px; }
.md-m-85px {
margin: 85px; }
.md-m-85px-tb {
margin-top: 85px;
margin-bottom: 85px; }
.md-m-85px-lr {
margin-left: 85px;
margin-right: 85px; }
.md-m-85px-t {
margin-top: 85px; }
.md-m-85px-l {
margin-left: 85px; }
.md-m-85px-r {
margin-right: 85px; }
.md-m-85px-b {
margin-bottom: 85px; }
.md-p-85px {
padding: 85px; }
.md-p-85px-tb {
padding-top: 85px;
padding-bottom: 85px; }
.md-p-85px-lr {
padding-left: 85px;
padding-right: 85px; }
.md-p-85px-t {
padding-top: 85px; }
.md-p-85px-l {
padding-left: 85px; }
.md-p-85px-r {
padding-right: 85px; }
.md-p-85px-b {
padding-bottom: 85px; }
.md-m-90px {
margin: 90px; }
.md-m-90px-tb {
margin-top: 90px;
margin-bottom: 90px; }
.md-m-90px-lr {
margin-left: 90px;
margin-right: 90px; }
.md-m-90px-t {
margin-top: 90px; }
.md-m-90px-l {
margin-left: 90px; }
.md-m-90px-r {
margin-right: 90px; }
.md-m-90px-b {
margin-bottom: 90px; }
.md-p-90px {
padding: 90px; }
.md-p-90px-tb {
padding-top: 90px;
padding-bottom: 90px; }
.md-p-90px-lr {
padding-left: 90px;
padding-right: 90px; }
.md-p-90px-t {
padding-top: 90px; }
.md-p-90px-l {
padding-left: 90px; }
.md-p-90px-r {
padding-right: 90px; }
.md-p-90px-b {
padding-bottom: 90px; }
.md-m-95px {
margin: 95px; }
.md-m-95px-tb {
margin-top: 95px;
margin-bottom: 95px; }
.md-m-95px-lr {
margin-left: 95px;
margin-right: 95px; }
.md-m-95px-t {
margin-top: 95px; }
.md-m-95px-l {
margin-left: 95px; }
.md-m-95px-r {
margin-right: 95px; }
.md-m-95px-b {
margin-bottom: 95px; }
.md-p-95px {
padding: 95px; }
.md-p-95px-tb {
padding-top: 95px;
padding-bottom: 95px; }
.md-p-95px-lr {
padding-left: 95px;
padding-right: 95px; }
.md-p-95px-t {
padding-top: 95px; }
.md-p-95px-l {
padding-left: 95px; }
.md-p-95px-r {
padding-right: 95px; }
.md-p-95px-b {
padding-bottom: 95px; }
.md-m-100px {
margin: 100px; }
.md-m-100px-tb {
margin-top: 100px;
margin-bottom: 100px; }
.md-m-100px-lr {
margin-left: 100px;
margin-right: 100px; }
.md-m-100px-t {
margin-top: 100px; }
.md-m-100px-l {
margin-left: 100px; }
.md-m-100px-r {
margin-right: 100px; }
.md-m-100px-b {
margin-bottom: 100px; }
.md-p-100px {
padding: 100px; }
.md-p-100px-tb {
padding-top: 100px;
padding-bottom: 100px; }
.md-p-100px-lr {
padding-left: 100px;
padding-right: 100px; }
.md-p-100px-t {
padding-top: 100px; }
.md-p-100px-l {
padding-left: 100px; }
.md-p-100px-r {
padding-right: 100px; }
.md-p-100px-b {
padding-bottom: 100px; } }
@media (max-width: 767px) {
/* Margin Padding
--------------------*/
.sm-m-0px {
margin: 0px; }
.sm-m-0px-tb {
margin-top: 0px;
margin-bottom: 0px; }
.sm-m-0px-lr {
margin-left: 0px;
margin-right: 0px; }
.sm-m-0px-t {
margin-top: 0px; }
.sm-m-0px-l {
margin-left: 0px; }
.sm-m-0px-r {
margin-right: 0px; }
.sm-m-0px-b {
margin-bottom: 0px; }
.sm-p-0px {
padding: 0px; }
.sm-p-0px-tb {
padding-top: 0px;
padding-bottom: 0px; }
.sm-p-0px-lr {
padding-left: 0px;
padding-right: 0px; }
.sm-p-0px-t {
padding-top: 0px; }
.sm-p-0px-l {
padding-left: 0px; }
.sm-p-0px-r {
padding-right: 0px; }
.sm-p-0px-b {
padding-bottom: 0px; }
.sm-m-5px {
margin: 5px; }
.sm-m-5px-tb {
margin-top: 5px;
margin-bottom: 5px; }
.sm-m-5px-lr {
margin-left: 5px;
margin-right: 5px; }
.sm-m-5px-t {
margin-top: 5px; }
.sm-m-5px-l {
margin-left: 5px; }
.sm-m-5px-r {
margin-right: 5px; }
.sm-m-5px-b {
margin-bottom: 5px; }
.sm-p-5px {
padding: 5px; }
.sm-p-5px-tb {
padding-top: 5px;
padding-bottom: 5px; }
.sm-p-5px-lr {
padding-left: 5px;
padding-right: 5px; }
.sm-p-5px-t {
padding-top: 5px; }
.sm-p-5px-l {
padding-left: 5px; }
.sm-p-5px-r {
padding-right: 5px; }
.sm-p-5px-b {
padding-bottom: 5px; }
.sm-m-10px {
margin: 10px; }
.sm-m-10px-tb {
margin-top: 10px;
margin-bottom: 10px; }
.sm-m-10px-lr {
margin-left: 10px;
margin-right: 10px; }
.sm-m-10px-t {
margin-top: 10px; }
.sm-m-10px-l {
margin-left: 10px; }
.sm-m-10px-r {
margin-right: 10px; }
.sm-m-10px-b {
margin-bottom: 10px; }
.sm-p-10px {
padding: 10px; }
.sm-p-10px-tb {
padding-top: 10px;
padding-bottom: 10px; }
.sm-p-10px-lr {
padding-left: 10px;
padding-right: 10px; }
.sm-p-10px-t {
padding-top: 10px; }
.sm-p-10px-l {
padding-left: 10px; }
.sm-p-10px-r {
padding-right: 10px; }
.sm-p-10px-b {
padding-bottom: 10px; }
.sm-m-15px {
margin: 15px; }
.sm-m-15px-tb {
margin-top: 15px;
margin-bottom: 15px; }
.sm-m-15px-lr {
margin-left: 15px;
margin-right: 15px; }
.sm-m-15px-t {
margin-top: 15px; }
.sm-m-15px-l {
margin-left: 15px; }
.sm-m-15px-r {
margin-right: 15px; }
.sm-m-15px-b {
margin-bottom: 15px; }
.sm-p-15px {
padding: 15px; }
.sm-p-15px-tb {
padding-top: 15px;
padding-bottom: 15px; }
.sm-p-15px-lr {
padding-left: 15px;
padding-right: 15px; }
.sm-p-15px-t {
padding-top: 15px; }
.sm-p-15px-l {
padding-left: 15px; }
.sm-p-15px-r {
padding-right: 15px; }
.sm-p-15px-b {
padding-bottom: 15px; }
.sm-m-20px {
margin: 20px; }
.sm-m-20px-tb {
margin-top: 20px;
margin-bottom: 20px; }
.sm-m-20px-lr {
margin-left: 20px;
margin-right: 20px; }
.sm-m-20px-t {
margin-top: 20px; }
.sm-m-20px-l {
margin-left: 20px; }
.sm-m-20px-r {
margin-right: 20px; }
.sm-m-20px-b {
margin-bottom: 20px; }
.sm-p-20px {
padding: 20px; }
.sm-p-20px-tb {
padding-top: 20px;
padding-bottom: 20px; }
.sm-p-20px-lr {
padding-left: 20px;
padding-right: 20px; }
.sm-p-20px-t {
padding-top: 20px; }
.sm-p-20px-l {
padding-left: 20px; }
.sm-p-20px-r {
padding-right: 20px; }
.sm-p-20px-b {
padding-bottom: 20px; }
.sm-m-25px {
margin: 25px; }
.sm-m-25px-tb {
margin-top: 25px;
margin-bottom: 25px; }
.sm-m-25px-lr {
margin-left: 25px;
margin-right: 25px; }
.sm-m-25px-t {
margin-top: 25px; }
.sm-m-25px-l {
margin-left: 25px; }
.sm-m-25px-r {
margin-right: 25px; }
.sm-m-25px-b {
margin-bottom: 25px; }
.sm-p-25px {
padding: 25px; }
.sm-p-25px-tb {
padding-top: 25px;
padding-bottom: 25px; }
.sm-p-25px-lr {
padding-left: 25px;
padding-right: 25px; }
.sm-p-25px-t {
padding-top: 25px; }
.sm-p-25px-l {
padding-left: 25px; }
.sm-p-25px-r {
padding-right: 25px; }
.sm-p-25px-b {
padding-bottom: 25px; }
.sm-m-30px {
margin: 30px; }
.sm-m-30px-tb {
margin-top: 30px;
margin-bottom: 30px; }
.sm-m-30px-lr {
margin-left: 30px;
margin-right: 30px; }
.sm-m-30px-t {
margin-top: 30px; }
.sm-m-30px-l {
margin-left: 30px; }
.sm-m-30px-r {
margin-right: 30px; }
.sm-m-30px-b {
margin-bottom: 30px; }
.sm-p-30px {
padding: 30px; }
.sm-p-30px-tb {
padding-top: 30px;
padding-bottom: 30px; }
.sm-p-30px-lr {
padding-left: 30px;
padding-right: 30px; }
.sm-p-30px-t {
padding-top: 30px; }
.sm-p-30px-l {
padding-left: 30px; }
.sm-p-30px-r {
padding-right: 30px; }
.sm-p-30px-b {
padding-bottom: 30px; }
.sm-m-35px {
margin: 35px; }
.sm-m-35px-tb {
margin-top: 35px;
margin-bottom: 35px; }
.sm-m-35px-lr {
margin-left: 35px;
margin-right: 35px; }
.sm-m-35px-t {
margin-top: 35px; }
.sm-m-35px-l {
margin-left: 35px; }
.sm-m-35px-r {
margin-right: 35px; }
.sm-m-35px-b {
margin-bottom: 35px; }
.sm-p-35px {
padding: 35px; }
.sm-p-35px-tb {
padding-top: 35px;
padding-bottom: 35px; }
.sm-p-35px-lr {
padding-left: 35px;
padding-right: 35px; }
.sm-p-35px-t {
padding-top: 35px; }
.sm-p-35px-l {
padding-left: 35px; }
.sm-p-35px-r {
padding-right: 35px; }
.sm-p-35px-b {
padding-bottom: 35px; }
.sm-m-40px {
margin: 40px; }
.sm-m-40px-tb {
margin-top: 40px;
margin-bottom: 40px; }
.sm-m-40px-lr {
margin-left: 40px;
margin-right: 40px; }
.sm-m-40px-t {
margin-top: 40px; }
.sm-m-40px-l {
margin-left: 40px; }
.sm-m-40px-r {
margin-right: 40px; }
.sm-m-40px-b {
margin-bottom: 40px; }
.sm-p-40px {
padding: 40px; }
.sm-p-40px-tb {
padding-top: 40px;
padding-bottom: 40px; }
.sm-p-40px-lr {
padding-left: 40px;
padding-right: 40px; }
.sm-p-40px-t {
padding-top: 40px; }
.sm-p-40px-l {
padding-left: 40px; }
.sm-p-40px-r {
padding-right: 40px; }
.sm-p-40px-b {
padding-bottom: 40px; }
.sm-m-45px {
margin: 45px; }
.sm-m-45px-tb {
margin-top: 45px;
margin-bottom: 45px; }
.sm-m-45px-lr {
margin-left: 45px;
margin-right: 45px; }
.sm-m-45px-t {
margin-top: 45px; }
.sm-m-45px-l {
margin-left: 45px; }
.sm-m-45px-r {
margin-right: 45px; }
.sm-m-45px-b {
margin-bottom: 45px; }
.sm-p-45px {
padding: 45px; }
.sm-p-45px-tb {
padding-top: 45px;
padding-bottom: 45px; }
.sm-p-45px-lr {
padding-left: 45px;
padding-right: 45px; }
.sm-p-45px-t {
padding-top: 45px; }
.sm-p-45px-l {
padding-left: 45px; }
.sm-p-45px-r {
padding-right: 45px; }
.sm-p-45px-b {
padding-bottom: 45px; }
.sm-m-50px {
margin: 50px; }
.sm-m-50px-tb {
margin-top: 50px;
margin-bottom: 50px; }
.sm-m-50px-lr {
margin-left: 50px;
margin-right: 50px; }
.sm-m-50px-t {
margin-top: 50px; }
.sm-m-50px-l {
margin-left: 50px; }
.sm-m-50px-r {
margin-right: 50px; }
.sm-m-50px-b {
margin-bottom: 50px; }
.sm-p-50px {
padding: 50px; }
.sm-p-50px-tb {
padding-top: 50px;
padding-bottom: 50px; }
.sm-p-50px-lr {
padding-left: 50px;
padding-right: 50px; }
.sm-p-50px-t {
padding-top: 50px; }
.sm-p-50px-l {
padding-left: 50px; }
.sm-p-50px-r {
padding-right: 50px; }
.sm-p-50px-b {
padding-bottom: 50px; }
.sm-m-55px {
margin: 55px; }
.sm-m-55px-tb {
margin-top: 55px;
margin-bottom: 55px; }
.sm-m-55px-lr {
margin-left: 55px;
margin-right: 55px; }
.sm-m-55px-t {
margin-top: 55px; }
.sm-m-55px-l {
margin-left: 55px; }
.sm-m-55px-r {
margin-right: 55px; }
.sm-m-55px-b {
margin-bottom: 55px; }
.sm-p-55px {
padding: 55px; }
.sm-p-55px-tb {
padding-top: 55px;
padding-bottom: 55px; }
.sm-p-55px-lr {
padding-left: 55px;
padding-right: 55px; }
.sm-p-55px-t {
padding-top: 55px; }
.sm-p-55px-l {
padding-left: 55px; }
.sm-p-55px-r {
padding-right: 55px; }
.sm-p-55px-b {
padding-bottom: 55px; }
.sm-m-60px {
margin: 60px; }
.sm-m-60px-tb {
margin-top: 60px;
margin-bottom: 60px; }
.sm-m-60px-lr {
margin-left: 60px;
margin-right: 60px; }
.sm-m-60px-t {
margin-top: 60px; }
.sm-m-60px-l {
margin-left: 60px; }
.sm-m-60px-r {
margin-right: 60px; }
.sm-m-60px-b {
margin-bottom: 60px; }
.sm-p-60px {
padding: 60px; }
.sm-p-60px-tb {
padding-top: 60px;
padding-bottom: 60px; }
.sm-p-60px-lr {
padding-left: 60px;
padding-right: 60px; }
.sm-p-60px-t {
padding-top: 60px; }
.sm-p-60px-l {
padding-left: 60px; }
.sm-p-60px-r {
padding-right: 60px; }
.sm-p-60px-b {
padding-bottom: 60px; }
.sm-m-65px {
margin: 65px; }
.sm-m-65px-tb {
margin-top: 65px;
margin-bottom: 65px; }
.sm-m-65px-lr {
margin-left: 65px;
margin-right: 65px; }
.sm-m-65px-t {
margin-top: 65px; }
.sm-m-65px-l {
margin-left: 65px; }
.sm-m-65px-r {
margin-right: 65px; }
.sm-m-65px-b {
margin-bottom: 65px; }
.sm-p-65px {
padding: 65px; }
.sm-p-65px-tb {
padding-top: 65px;
padding-bottom: 65px; }
.sm-p-65px-lr {
padding-left: 65px;
padding-right: 65px; }
.sm-p-65px-t {
padding-top: 65px; }
.sm-p-65px-l {
padding-left: 65px; }
.sm-p-65px-r {
padding-right: 65px; }
.sm-p-65px-b {
padding-bottom: 65px; }
.sm-m-70px {
margin: 70px; }
.sm-m-70px-tb {
margin-top: 70px;
margin-bottom: 70px; }
.sm-m-70px-lr {
margin-left: 70px;
margin-right: 70px; }
.sm-m-70px-t {
margin-top: 70px; }
.sm-m-70px-l {
margin-left: 70px; }
.sm-m-70px-r {
margin-right: 70px; }
.sm-m-70px-b {
margin-bottom: 70px; }
.sm-p-70px {
padding: 70px; }
.sm-p-70px-tb {
padding-top: 70px;
padding-bottom: 70px; }
.sm-p-70px-lr {
padding-left: 70px;
padding-right: 70px; }
.sm-p-70px-t {
padding-top: 70px; }
.sm-p-70px-l {
padding-left: 70px; }
.sm-p-70px-r {
padding-right: 70px; }
.sm-p-70px-b {
padding-bottom: 70px; }
.sm-m-75px {
margin: 75px; }
.sm-m-75px-tb {
margin-top: 75px;
margin-bottom: 75px; }
.sm-m-75px-lr {
margin-left: 75px;
margin-right: 75px; }
.sm-m-75px-t {
margin-top: 75px; }
.sm-m-75px-l {
margin-left: 75px; }
.sm-m-75px-r {
margin-right: 75px; }
.sm-m-75px-b {
margin-bottom: 75px; }
.sm-p-75px {
padding: 75px; }
.sm-p-75px-tb {
padding-top: 75px;
padding-bottom: 75px; }
.sm-p-75px-lr {
padding-left: 75px;
padding-right: 75px; }
.sm-p-75px-t {
padding-top: 75px; }
.sm-p-75px-l {
padding-left: 75px; }
.sm-p-75px-r {
padding-right: 75px; }
.sm-p-75px-b {
padding-bottom: 75px; }
.sm-m-80px {
margin: 80px; }
.sm-m-80px-tb {
margin-top: 80px;
margin-bottom: 80px; }
.sm-m-80px-lr {
margin-left: 80px;
margin-right: 80px; }
.sm-m-80px-t {
margin-top: 80px; }
.sm-m-80px-l {
margin-left: 80px; }
.sm-m-80px-r {
margin-right: 80px; }
.sm-m-80px-b {
margin-bottom: 80px; }
.sm-p-80px {
padding: 80px; }
.sm-p-80px-tb {
padding-top: 80px;
padding-bottom: 80px; }
.sm-p-80px-lr {
padding-left: 80px;
padding-right: 80px; }
.sm-p-80px-t {
padding-top: 80px; }
.sm-p-80px-l {
padding-left: 80px; }
.sm-p-80px-r {
padding-right: 80px; }
.sm-p-80px-b {
padding-bottom: 80px; }
.sm-m-85px {
margin: 85px; }
.sm-m-85px-tb {
margin-top: 85px;
margin-bottom: 85px; }
.sm-m-85px-lr {
margin-left: 85px;
margin-right: 85px; }
.sm-m-85px-t {
margin-top: 85px; }
.sm-m-85px-l {
margin-left: 85px; }
.sm-m-85px-r {
margin-right: 85px; }
.sm-m-85px-b {
margin-bottom: 85px; }
.sm-p-85px {
padding: 85px; }
.sm-p-85px-tb {
padding-top: 85px;
padding-bottom: 85px; }
.sm-p-85px-lr {
padding-left: 85px;
padding-right: 85px; }
.sm-p-85px-t {
padding-top: 85px; }
.sm-p-85px-l {
padding-left: 85px; }
.sm-p-85px-r {
padding-right: 85px; }
.sm-p-85px-b {
padding-bottom: 85px; }
.sm-m-90px {
margin: 90px; }
.sm-m-90px-tb {
margin-top: 90px;
margin-bottom: 90px; }
.sm-m-90px-lr {
margin-left: 90px;
margin-right: 90px; }
.sm-m-90px-t {
margin-top: 90px; }
.sm-m-90px-l {
margin-left: 90px; }
.sm-m-90px-r {
margin-right: 90px; }
.sm-m-90px-b {
margin-bottom: 90px; }
.sm-p-90px {
padding: 90px; }
.sm-p-90px-tb {
padding-top: 90px;
padding-bottom: 90px; }
.sm-p-90px-lr {
padding-left: 90px;
padding-right: 90px; }
.sm-p-90px-t {
padding-top: 90px; }
.sm-p-90px-l {
padding-left: 90px; }
.sm-p-90px-r {
padding-right: 90px; }
.sm-p-90px-b {
padding-bottom: 90px; }
.sm-m-95px {
margin: 95px; }
.sm-m-95px-tb {
margin-top: 95px;
margin-bottom: 95px; }
.sm-m-95px-lr {
margin-left: 95px;
margin-right: 95px; }
.sm-m-95px-t {
margin-top: 95px; }
.sm-m-95px-l {
margin-left: 95px; }
.sm-m-95px-r {
margin-right: 95px; }
.sm-m-95px-b {
margin-bottom: 95px; }
.sm-p-95px {
padding: 95px; }
.sm-p-95px-tb {
padding-top: 95px;
padding-bottom: 95px; }
.sm-p-95px-lr {
padding-left: 95px;
padding-right: 95px; }
.sm-p-95px-t {
padding-top: 95px; }
.sm-p-95px-l {
padding-left: 95px; }
.sm-p-95px-r {
padding-right: 95px; }
.sm-p-95px-b {
padding-bottom: 95px; }
.sm-m-100px {
margin: 100px; }
.sm-m-100px-tb {
margin-top: 100px;
margin-bottom: 100px; }
.sm-m-100px-lr {
margin-left: 100px;
margin-right: 100px; }
.sm-m-100px-t {
margin-top: 100px; }
.sm-m-100px-l {
margin-left: 100px; }
.sm-m-100px-r {
margin-right: 100px; }
.sm-m-100px-b {
margin-bottom: 100px; }
.sm-p-100px {
padding: 100px; }
.sm-p-100px-tb {
padding-top: 100px;
padding-bottom: 100px; }
.sm-p-100px-lr {
padding-left: 100px;
padding-right: 100px; }
.sm-p-100px-t {
padding-top: 100px; }
.sm-p-100px-l {
padding-left: 100px; }
.sm-p-100px-r {
padding-right: 100px; }
.sm-p-100px-b {
padding-bottom: 100px; } }
@media (min-width: 992px) {
.main-left {
padding-left: 95px; } }
.particles-box {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0; }
.video-bg {
overflow: hidden; }
/* Home Banner 1
----------------------*/
.home-banner-01 {
position: relative; }
@media (max-width: 767px) {
.home-banner-01 {
background-position: 70% center; } }
.home-banner-01 .container {
position: relative;
z-index: 1; }
@media (max-width: 767px) {
.home-banner-01 .ht-text {
background: rgba(255, 255, 255, 0.8);
padding: 25px; } }
.home-banner-01 h6 {
color: #090a0c;
font-size: 18px;
margin: 0 0 15px; }
@media (max-width: 991px) {
.home-banner-01 h6 {
font-size: 15px; } }
@media (max-width: 767px) {
.home-banner-01 h6 {
font-size: 14px; } }
.home-banner-01 h1 {
font-size: 60px;
color: #090a0c;
font-weight: 600;
margin: 0 0 15px;
line-height: 1; }
@media (max-width: 991px) {
.home-banner-01 h1 {
font-size: 40px; } }
@media (max-width: 767px) {
.home-banner-01 h1 {
font-size: 35px; } }
.home-banner-01 h2 {
font-weight: 500;
font-size: 20px;
color: #090a0c;
margin: 0 0 15px; }
@media (max-width: 991px) {
.home-banner-01 h2 {
font-size: 18px; } }
@media (max-width: 767px) {
.home-banner-01 h2 {
font-size: 16px; } }
.home-banner-01 h2 > span {
border-bottom: 1px solid #090a0c; }
.home-banner-01 p {
color: rgba(9, 10, 12, 0.8);
margin: 0; }
.home-banner-01 .btn-bar {
padding-top: 25px; }
.home-banner-01 .btn-bar a {
min-width: 120px;
margin-right: 12px; }
.home-banner-01 .go-to-next {
position: absolute;
bottom: 30px;
left: 0;
right: 0;
width: 35px;
margin: auto;
z-index: 1;
text-align: center; }
.home-banner-01 .go-to-next a {
width: 35px;
height: 35px;
position: relative;
display: inline-block;
background: #d9832e;
border-radius: 50%;
animation: down 1s linear infinite;
-webkit-animation: down 1s linear infinite; }
.home-banner-01 .go-to-next a span {
border-top: 1px solid #ffffff;
border-right: 1px solid #ffffff;
width: 10px;
height: 10px;
position: absolute;
top: -6px;
left: 0;
right: 0;
bottom: 0;
margin: auto;
-moz-transform: rotate(135deg);
-o-transform: rotate(135deg);
-ms-transform: rotate(135deg);
-webkit-transform: rotate(135deg);
transform: rotate(135deg); }
@-webkit-keyframes down {
0% {
top: 5px;
opacity: 0; }
30% {
top: 15px;
opacity: 1; }
60% {
top: 15px;
opacity: 0.60; }
100% {
top: 25px;
opacity: 0; } }
@keyframes down {
0% {
top: 5px;
opacity: 0; }
30% {
top: 15px;
opacity: 1; }
100% {
top: 25px;
opacity: 0; } }
/* Home Banner 2
----------------------*/
.home-banner-02 {
position: relative; }
.home-banner-02:after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #090a0c;
opacity: 0.8; }
.home-banner-02 .container {
position: relative;
z-index: 1; }
.home-banner-02 h6 {
color: #ffffff;
font-size: 24px;
margin: 0 0 8px; }
@media (max-width: 991px) {
.home-banner-02 h6 {
font-size: 15px; } }
@media (max-width: 767px) {
.home-banner-02 h6 {
font-size: 14px; } }
.home-banner-02 h1 {
font-size: 80px;
color: #ffffff;
font-weight: 600;
margin: 0 0 25px;
line-height: 1.3; }
@media (max-width: 991px) {
.home-banner-02 h1 {
font-size: 50px; } }
@media (max-width: 767px) {
.home-banner-02 h1 {
font-size: 35px; } }
.home-banner-02 .ht-list span {
background: rgba(255, 255, 255, 0.13);
margin: 0 3px;
padding: 7px 20px;
font-size: 12px;
font-weight: 400;
text-transform: uppercase;
color: #ffffff;
border-radius: 30px;
letter-spacing: 1px; }
.home-banner-02 .social-icons a {
background: rgba(255, 255, 255, 0.13);
margin: 0 3px;
width: 45px;
height: 45px;
line-height: 45px;
display: inline-block;
font-size: 18px;
color: #ffffff;
border-radius: 50%; }
.home-banner-02 .social-icons a:hover {
background: #ffffff;
color: #090a0c; }
.home-banner-02 .btn-bar {
padding-top: 25px; }
.home-banner-02 .go-to-next {
position: absolute;
bottom: 30px;
left: 0;
right: 0;
width: 35px;
margin: auto;
z-index: 1;
text-align: center; }
.home-banner-02 .go-to-next a {
width: 35px;
height: 35px;
position: relative;
display: inline-block;
background: #ffffff;
border-radius: 50%;
animation: down 1s linear infinite;
-webkit-animation: down 1s linear infinite; }
.home-banner-02 .go-to-next a span {
border-top: 1px solid #090a0c;
border-right: 1px solid #090a0c;
width: 10px;
height: 10px;
position: absolute;
top: -6px;
left: 0;
right: 0;
bottom: 0;
margin: auto;
-moz-transform: rotate(135deg);
-o-transform: rotate(135deg);
-ms-transform: rotate(135deg);
-webkit-transform: rotate(135deg);
transform: rotate(135deg); }
/* home-banner-03
----------------------*/
.home-banner-03 .full-scree {
height: 100vh;
background-size: cover;
background-position: center; }
.home-banner-03 .ht-text {
padding: 5%;
max-width: 700px; }
@media (max-width: 991px) {
.home-banner-03 .ht-text {
padding: 15% 5%; } }
.home-banner-03 .ht-text h1 {
color: #090a0c;
font-size: 65px;
font-weight: 600; }
@media (max-width: 991px) {
.home-banner-03 .ht-text h1 {
font-size: 50px; } }
@media (max-width: 767px) {
.home-banner-03 .ht-text h1 {
font-size: 40px; } }
.home-banner-03 .ht-text p {
font-size: 18px;
margin: 0 0 25px; }
.home-banner-03 .social-icons a {
background: #d9832e;
text-align: center;
margin: 0 7px 0 0;
width: 35px;
height: 35px;
line-height: 35px;
display: inline-block;
font-size: 16px;
color: #ffffff;
border-radius: 3px; }
.home-banner-03 .social-icons a:hover {
background: #090a0c;
color: #ffffff; }
/* About Us
----------------------*/
.about-me-img {
border: 14px solid #ffffff;
border-radius: 5px;
position: relative; }
.about-me-img .social-icon {
width: 50px;
position: absolute;
top: 20px;
left: -10px;
background: #ffffff;
padding: 8px; }
.about-me-img .social-icon a {
width: 34px;
height: 34px;
line-height: 34px;
text-align: center;
background: #d9832e;
color: #ffffff;
margin: 3px 0;
font-size: 12px; }
.about-me-img .social-icon a:hover {
background: #090a0c; }
.about-me-img .btns {
position: absolute;
bottom: 0;
left: 0;
right: 0;
display: flex; }
.about-me-img .btns a {
flex: 0 0 50%;
max-width: 50%;
background: #d9832e;
padding: 10px 5px;
color: #ffffff;
text-decoration: none;
text-align: center;
text-transform: uppercase;
font-size: 12px;
letter-spacing: 0.045rem; }
.about-me-img .btns a:hover {
background: #090a0c; }
.about-me-img .btns a + a {
border-left: 1px solid #ffffff; }
@media (min-width: 992px) {
.about-me {
padding-left: 40px; } }
.about-me h4 {
font-weight: 600;
font-size: 30px;
margin: 0 0 10px;
color: #090a0c; }
.about-me h6 {
color: #090a0c;
font-weight: 400;
margin: 0 0 20px; }
.about-me .about-list {
padding-top: 10px; }
.about-me .media {
padding: 6px 0;
line-height: normal; }
.about-me .media label {
margin: 0;
color: #090a0c;
font-weight: 500;
font-size: 14px;
flex: 0 0 90px;
border-right: 1px solid #c1c1c1;
max-width: 90px; }
.about-me .media p {
margin-bottom: 0;
padding-left: 15px;
font-size: 14px; }
.about-me .btn-bar {
margin-top: 30px; }
/* fun
------------------*/
.feature-box-2 {
padding: 18px 15px;
border-radius: 5px;
background: #ffffff;
border: 2px solid #d9832e;
box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s; }
.feature-box-2 .icon {
font-size: 30px;
width: 50px;
height: 50px;
line-height: 50px;
color: #d9832e; }
.feature-box-2 h5 {
margin: 0;
font-size: 16px;
color: #090a0c; }
.feature-box-2:hover {
background: #ffffff; }
.feature-box-2:hover .icon {
color: #d9832e; }
.feature-box-2:hover h5 {
color: #090a0c; }
/* Services
------------------*/
.feature-box-1 {
padding: 40px 30px;
background: #ffffff;
border: 1px solid #eee;
border-radius: 5px;
position: relative;
top: 0;
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s; }
.feature-box-1 .icon {
width: 80px;
height: 80px;
line-height: 80px;
text-align: center;
border-radius: 50%;
border: 2px dotted #d9832e;
color: #d9832e;
font-size: 32px;
margin-bottom: 22px; }
.feature-box-1 h5 {
color: #090a0c;
font-weight: 500;
font-size: 16px;
margin: 0 0 12px; }
.feature-box-1 p {
margin: 0; }
.feature-box-1:hover {
background: #d9832e;
border-color: #d9832e;
top: -10px; }
.feature-box-1:hover .icon {
border-color: #ffffff;
color: #ffffff; }
.feature-box-1:hover h5 {
color: #ffffff; }
.feature-box-1:hover p {
color: rgba(255, 255, 255, 0.6); }
/* Portfolio
------------------*/
.portfolio-content {
margin-left: -10px;
shape-margin: -10px; }
.portfolio-content .grid-item {
padding: 10px;
/* width: calc(100% / 3); */
width: 30%;
float: left; }
@media (max-width: 991px) {
.portfolio-content .grid-item {
width: calc(100% / 2); } }
@media (max-width: 567px) {
.portfolio-content .grid-item {
width: 100%; } }
.portfolio-box-01 {
position: relative;
overflow: hidden;
border-radius: 5px; }
.portfolio-box-01 .link-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0; }
.portfolio-box-01 img {
-moz-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s; }
.portfolio-box-01 .portfolio-info {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(9, 10, 12, 0.5);
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s;
opacity: 0;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
-ms-flex-pack: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
-ms-flex-align: center;
align-items: center; }
.portfolio-box-01 .portfolio-info h5 {
color: #ffffff;
font-size: 25px;
font-weight: 600;
display: inline-block;
margin: 0 0 10px;
position: relative;
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s;
left: -25px; }
@media (max-width: 991px) {
.portfolio-box-01 .portfolio-info h5 {
font-size: 20px; } }
.portfolio-box-01 .portfolio-info span {
color: rgba(255, 255, 255, 0.8);
font-weight: 500;
padding: 2px 12px;
display: inline-block;
vertical-align: top;
font-size: 14px;
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s;
position: relative;
left: -25px; }
.portfolio-box-01:hover .portfolio-info {
opacity: 1; }
.portfolio-box-01:hover .portfolio-info h5 {
left: 0; }
.portfolio-box-01:hover .portfolio-info span {
left: 0; }
.portfolio-box-01:hover img {
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
-ms-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1); }
/* Testimonials
------------------*/
.testimonial-col-01 {
background: #ffffff;
padding: 20px;
margin-top: 15px;
margin-bottom: 25px;
border: 1px solid #edd; }
.testimonial-col-01 .img {
width: 120px;
height: 120px;
overflow: hidden;
border-radius: 50% 0 50% 50%; }
@media (max-width: 767px) {
.testimonial-col-01 .img {
width: 60px;
height: 60px; } }
/* Blog
------------------*/
.blog-grid .blog-gird-info {
background: #ffffff;
margin: -30px 10px 0;
position: relative;
padding: 18px;
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.19); }
.blog-grid .blog-gird-info .date {
background: #d9832e;
font-size: 12px;
position: absolute;
top: -27px;
padding: 4px 20px;
color: #ffffff;
border-radius: 0;
left: 0px; }
.blog-grid .blog-gird-info .meta {
background: #ffffff;
padding: 0px 12px;
display: inline-block;
vertical-align: top;
font-size: 12px;
border-radius: 3px;
border: 1px solid #ddd; }
.blog-grid .blog-gird-info .b-meta {
margin-bottom: 8px; }
.blog-grid .blog-gird-info h5 {
font-weight: 500;
font-size: 17px; }
.blog-grid .blog-gird-info h5 a {
color: #090a0c; }
/* Contact Us
------------------*/
.contact-form {
border-radius: 5px;
background: #ffffff;
padding: 5%; }
.contact-form h4 {
font-weight: 600;
font-size: 18px;
text-transform: uppercase;
color: #090a0c;
margin-bottom: 20px; }
.contact-form .form-group {
position: relative;
margin-bottom: 20px; }
.contact-form .form-group .input-focus-effect {
position: absolute;
bottom: -1px;
left: auto;
right: 0;
width: 0px;
height: 2px;
-moz-transition: ease all 0.35s;
-o-transition: ease all 0.35s;
-webkit-transition: ease all 0.35s;
transition: ease all 0.35s; }
.contact-form .form-group .form-control {
border: none;
border-bottom: 1px solid #ccc;
border-radius: 0;
padding-left: 0;
box-shadow: none;
font-size: 14px; }
.contact-form .form-group .form-control.invalid {
border-color: #ff0000; }
.contact-form .form-group .form-control.invalid:focus + .input-focus-effect {
background: #ff0000; }
.contact-form .form-group .form-control:focus + .input-focus-effect {
width: 100%;
right: auto;
left: 0; }
.contact-form .form-group textarea {
height: 80px; }
.contact-info {
background: #ffffff;
padding: 20px; }
.contact-info:not(:first-child) {
margin-top: 20px; }
.contact-info .icon {
width: 40px;
height: 40px;
text-align: center;
border-radius: 50%;
color: #ffffff;
background: #d9832e;
font-size: 19px;
line-height: 40px;
margin-right: 20px; }
.contact-info .media-body h6 {
font-size: 15px;
font-weight: 500;
color: #090a0c;
margin-bottom: 8px; }
.contact-info .media-body p {
margin: 0;
font-size: 14px; }
/*# sourceMappingURL=master.css.map */ | 0.361954 | 0.100216 |
@import url('https://fonts.googleapis.com/css?family=Roboto');
* {
/* To easily manage content in css */
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Roboto', sans-serif;
}
a {
text-decoration: none;
}
p {
/* because we set 0 in * */
margin: 0.75rem 0;
}
/* ***-----Utility Classes--------*** */
.container {
max-width: 1100px;
margin: auto;
padding: 0 2rem;
overflow: hidden;
}
.text-primary {
/* main color for scheme */
color: #93cb52;
}
.text-center {
text-align: center;
}
.l-heading {
font-size: 4rem;
margin-bottom: 0.75rem;
line-height: 1.1; /* Distance b/w lines */
}
.m-heading {
font-size: 2rem;
margin-bottom: 0.75rem;
line-height: 1.1; /* Distance b/w lines */
}
.list {
margin: 0.7rem 0;
list-style: none;
}
.list li {
padding: 0.5rem 0;
border-bottom: #444 dotted 1px;
}
.py-1 {padding: 1.5rem 0;}
.py-2 {padding: 2rem 0;}
.py-3 {padding: 3rem 0;}
.p-1 {padding: 1.5rem;}
.p-2 {padding: 2rem;}
.p-3 {padding: 3rem;}
.bg-light {
background-color: #f4f4f4;
color: #333;
}
.bg-dark {
background-color: #333;
color: #fff;
}
.bg-primary {
background: #93cb52;
color: white;
}
.lead {
font-size: 1.3rem;
margin-bottom: 2rem;
}
.btn {
display: inline-block;
color: #fff;
background-color: #93cb52;
padding: 0.55rem;
border: none; /* Used Later when its displayed as a link*/
border-radius: 5px;
}
.btn:hover {
background-color: #5e8b2b;
}
.btn-black {
background-color: #333;
color: white;
}
/* ***-----NAVBAR--------*** */
#navbar {
display: flex;
position: sticky; /* Sticky NAvbar */
top: 0;
background-color: #333;
color: #fff;
justify-content: space-between; /* We need space-bw Heading & Others*/
z-index: 1; /* Priority in 3d space, like bring to front etc */
padding: 1rem;
}
#navbar ul {
display: flex;
align-items: center; /*ALigns Vertically */
justify-content: space-between;
list-style: None; /* Remove pointers(circles, arrows etc) with list elements */
}
#navbar ul li a {
color: white;
padding: 0.75rem;
margin: 0 0.25rem;
}
#navbar ul li a:hover {
/* Color applies to padding */
background: #93cb52;
border-radius: 5px;
}
/* ***-------ShowCase--------*** */
#showcase {
background: #333 url('/resources/image_resources/showcase.jpg') no-repeat center center/cover;
height: 100vh;
color: #fff;
}
#showcase .showcase-content {
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
align-items: center;
height: 100%;
padding: 0rem 2rem;
/* Overlay (optional) */
position: absolute;
top: 59px;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.45);
}
/* Section-2 : What We Do */
#what .items {
display: flex;
padding: 1rem;
}
#what .items .item {
flex: 1;
text-align: center;
padding: 1rem;
}
#what .items .item i {
background-color: #93cb52;
padding: 1rem;
border-radius: 50%;
margin-bottom: 1rem;
}
/* Section-3: Who We Are */
#who {
display: flex;
}
#who div{
flex: 1;
}
#who .who-img {
background: url("/resources/image_resources/people.jpg") no-repeat center center/cover;
}
/* Section-4 : Clients */
#clients .items {
display: flex;
}
#clients .items img {
display: block;
width: 60%;
margin: auto;
}
/* Section-5 : Contact */
#contact {
display: flex;
}
#contact .map, #contact .contact-form {
flex: 1;
}
#contact .contact-form .form-group {
margin: 0.75rem;
}
/* To put labels on top of input */
#contact .contact-form label {
display: block;
}
#contact .form-group input,
#contact .form-group textarea {
padding: 0.5rem;
width:100%;
margin:0.1rem;
}
#contact .btn {
margin: auto;
width: 100%;
} | style.css |
@import url('https://fonts.googleapis.com/css?family=Roboto');
* {
/* To easily manage content in css */
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Roboto', sans-serif;
}
a {
text-decoration: none;
}
p {
/* because we set 0 in * */
margin: 0.75rem 0;
}
/* ***-----Utility Classes--------*** */
.container {
max-width: 1100px;
margin: auto;
padding: 0 2rem;
overflow: hidden;
}
.text-primary {
/* main color for scheme */
color: #93cb52;
}
.text-center {
text-align: center;
}
.l-heading {
font-size: 4rem;
margin-bottom: 0.75rem;
line-height: 1.1; /* Distance b/w lines */
}
.m-heading {
font-size: 2rem;
margin-bottom: 0.75rem;
line-height: 1.1; /* Distance b/w lines */
}
.list {
margin: 0.7rem 0;
list-style: none;
}
.list li {
padding: 0.5rem 0;
border-bottom: #444 dotted 1px;
}
.py-1 {padding: 1.5rem 0;}
.py-2 {padding: 2rem 0;}
.py-3 {padding: 3rem 0;}
.p-1 {padding: 1.5rem;}
.p-2 {padding: 2rem;}
.p-3 {padding: 3rem;}
.bg-light {
background-color: #f4f4f4;
color: #333;
}
.bg-dark {
background-color: #333;
color: #fff;
}
.bg-primary {
background: #93cb52;
color: white;
}
.lead {
font-size: 1.3rem;
margin-bottom: 2rem;
}
.btn {
display: inline-block;
color: #fff;
background-color: #93cb52;
padding: 0.55rem;
border: none; /* Used Later when its displayed as a link*/
border-radius: 5px;
}
.btn:hover {
background-color: #5e8b2b;
}
.btn-black {
background-color: #333;
color: white;
}
/* ***-----NAVBAR--------*** */
#navbar {
display: flex;
position: sticky; /* Sticky NAvbar */
top: 0;
background-color: #333;
color: #fff;
justify-content: space-between; /* We need space-bw Heading & Others*/
z-index: 1; /* Priority in 3d space, like bring to front etc */
padding: 1rem;
}
#navbar ul {
display: flex;
align-items: center; /*ALigns Vertically */
justify-content: space-between;
list-style: None; /* Remove pointers(circles, arrows etc) with list elements */
}
#navbar ul li a {
color: white;
padding: 0.75rem;
margin: 0 0.25rem;
}
#navbar ul li a:hover {
/* Color applies to padding */
background: #93cb52;
border-radius: 5px;
}
/* ***-------ShowCase--------*** */
#showcase {
background: #333 url('/resources/image_resources/showcase.jpg') no-repeat center center/cover;
height: 100vh;
color: #fff;
}
#showcase .showcase-content {
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
align-items: center;
height: 100%;
padding: 0rem 2rem;
/* Overlay (optional) */
position: absolute;
top: 59px;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.45);
}
/* Section-2 : What We Do */
#what .items {
display: flex;
padding: 1rem;
}
#what .items .item {
flex: 1;
text-align: center;
padding: 1rem;
}
#what .items .item i {
background-color: #93cb52;
padding: 1rem;
border-radius: 50%;
margin-bottom: 1rem;
}
/* Section-3: Who We Are */
#who {
display: flex;
}
#who div{
flex: 1;
}
#who .who-img {
background: url("/resources/image_resources/people.jpg") no-repeat center center/cover;
}
/* Section-4 : Clients */
#clients .items {
display: flex;
}
#clients .items img {
display: block;
width: 60%;
margin: auto;
}
/* Section-5 : Contact */
#contact {
display: flex;
}
#contact .map, #contact .contact-form {
flex: 1;
}
#contact .contact-form .form-group {
margin: 0.75rem;
}
/* To put labels on top of input */
#contact .contact-form label {
display: block;
}
#contact .form-group input,
#contact .form-group textarea {
padding: 0.5rem;
width:100%;
margin:0.1rem;
}
#contact .btn {
margin: auto;
width: 100%;
} | 0.326379 | 0.078749 |
===================
主体内容区域
===================
*/
.register{
margin-top:20px;
}
/*
===================
注册登录布局
===================
*/
.reg_cont_wrap{
float:left;
min-height:1px;
width:100%;
}
.reg_cont{
margin-right:220px;
position:relative;
}
.reg_side{
float:left;
width:200px;
margin-left:-200px;
padding-top:30px;
}
/*
===================
标题栏
===================
*/
.reg_head{
padding:10px 15px;
border-bottom:1px solid #ededed;
font-size:16px;
font-weight:700;
color:#666;
}
/*
===================
表单区域
===================
*/
.reg_form{
padding:25px 0 50px 15px;
}
.reg_form dl{
padding:15px 0 15px 10px;
width:690px;
min-height:32px;
zoom:1;
position:relative;
}
.reg_form dl.pick{
padding:10px 0 0 10px;
height:24px;
}
.reg_form dl:after{
content:'\20';
display:block;
height:0;
clear:both;
visibility: hidden;
}
.reg_form dl.current{
background:#eff7fe;
}
.reg_form dl.dl_cd{
height:115px;
}
.reg_form dl.dl_cd img{
vertical-align:top;
}
.reg_form dl.dl_cd .tips_icon_error,
.reg_form dl.dl_cd .tips_icon_success{
float:left;
margin-top:5px;
margin-left:5px;
}
.reg_form dl.dl_cd .dd_r .tips_icon_error,
.reg_form dl.dl_cd .dd_r .tips_icon_success{
float:inherit;
margin-top:0;
margin-left:0;
}
.reg_form dt{
float:left;
width:110px;
font-size:14px;
line-height:25px;
*line-height:28px;
text-align:right;
margin-right:15px;
}
.reg_form dd{
float:left;
width:250px;
/*height:30px;*/
}
.reg_form dd .input{
vertical-align:top;
}
.reg_form dd.dd_r{
width:308px;
line-height:26px;
}
.reg_form dd .reg_ddtext{
line-height:26px;
height:26px;
font-size:14px;
}
.reg_form .input,
.reg_form textarea{
margin-right:5px;
}
.reg_form dl.current .input,
.reg_form .input:focus,
.reg_form textarea:focus{
outline:2px solid #99d8f5;
border-color:#7bbff2;
}
.reg_form .username{
line-height:25px;
font-size:14px;
}
.reg_side_cont{
border-left:1px dotted #ccc;
padding:10px 20px 20px;
}
.reg_form .btn_submit{
padding-left:25px;
padding-right:25px;
position:relative;
}
.reg_form .tips{
padding:5px 10px;
line-height:20px;
margin-bottom:10px;
}
.reg_form .tips_icon_error,
.reg_form .tips_icon_success{
*margin-top:5px;
}
/*
===================
密码强度
===================
*/
.pwd_strength_1,
.pwd_strength_2,
.pwd_strength_3,
.pwd_strength_4{
width:84px;
height:9px;
overflow:hidden;
display:inline-block;
background:url(../../images/register/pwd_strength.png) no-repeat;
margin-right:5px;
}
.pwd_strength_2{
background-position:0 -9px;
}
.pwd_strength_3{
background-position:0 -18px;
}
.pwd_strength_4{
background-position:0 -27px;
}
/*
===================
条款协议
===================
*/
.agreements{
margin:10px 0 0 135px;
width:460px;
}
.agreements pre{
height:150px;
overflow-x:hidden;
overflow-y:scroll;
border:1px solid #e4e4e4;
}
/*
===================
操作提示
===================
*/
.reg_tips{
background:url(../../images/register/arrow_reg.png) 0 4px no-repeat;
display:inline-block;
padding:5px 10px 5px 20px;
vertical-align:middle;
color:#999;
line-height:1.5;
}
/*
===================
邮箱下拉
===================
*/
.mail_down{
position:absolute;
width:240px;
z-index:11;
}
.mail_down ul{
border:1px solid #cccccc;
padding:1px;
background:#fff;
}
.mail_down li{
line-height:21px;
height:21px;
overflow:hidden;
}
.mail_down li a{
display:block;
color:#999;
text-decoration:none;
padding:0 10px;
}
.mail_down li a:hover,
.mail_down li.current a{
background-color:#e8f4fc;
color:#333;
}
/*
===================
密码找回
===================
*/
.password_back_type{
padding:0 0 0 135px;
}
.password_back_type a{
border:1px solid #e0e0e0;
display:inline-block;
background:#fff;
height:100px;
width:160px;
text-align:center;
margin-right:10px;
color:#666;
background-repeat: no-repeat;
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#f0f0f0));
background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #f0f0f0);
background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #f0f0f0);
background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #f0f0f0);
background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #f0f0f0);
background-image: linear-gradient(#ffffff, #ffffff 25%, #f0f0f0);
}
.password_back_type a:hover{
background:#ffff9d;
border-color:#ffae12;
text-decoration:none;
color:#000;
}
.password_back_type img{
display:block;
vertical-align:top;
margin:7px auto 3px;
}
/*
===================
邀请注册
===================
*/
.invite_box_wrap{
border:1px solid #eeeeee;
padding:1px;
background:#fff;
margin:5px 0 10px 133px;
width:400px;
}
.invite_box{
background:#f6f6f6;
padding:5px 10px;
}
.invite_box .hd{
font-family:Simsun;
margin-bottom:8px;
}
.invite_box .hd a{
color:#666;
}
.invite_box .ct ul{
padding:10px 0 10px 10px;
}
.invite_box .ct li{
padding:10px 0 0;
color:#666;
}
.invite_box .ct li em{
display:inline-block;
width:60px;
}
.invite_box .ct .input{
padding:2px;
width:140px;
}
.invite_box .tips{
text-align:left;
padding:5px 10px;
line-height:1.5;
}
/*
===================
消息提示
===================
*/
.reg_message{
width:400px;
margin:40px auto 0;
padding:0 0 40px 100px;
background:url(../../images/tips/big.png) -100px 0 no-repeat;
min-height:100px;
_height:100px;
line-height:1.5;
}
.reg_message h2{
padding:5px 0 10px;
font-size:16px;
font-weight:100;
}
.reg_ignore{
background-position:0 -100px;
}
.reg_ignore ul{
padding-top:5px;
}
.reg_ignore .error_return{
padding-top:10px;
font-size:14px;
}
/*
===================
验证激活
===================
*/
.reg_activation{
width:610px;
margin:0 auto;
padding:30px 0;
}
.reg_activation h1{
font-size:20px;
font-family:"Microsoft Yahei";
font-weight:100;
color:#598403;
letter-spacing:1px;
margin-bottom:30px;
}
.reg_activation p{
line-height:1.8;
}
.reg_activation p.text{
line-height:2;
font-size:14px;
}
.reg_activation_tip h2{
font-size:12px;
border-top:1px solid #d0d4d7;
margin-top:50px;
padding:10px 0 5px;
}
.reg_activation_tip p{
padding-bottom:30px;
}
/*
===================
版块会员推荐
===================
*/
.reg_push{
padding:0 10px;
}
.reg_push_forum,
.reg_push_user{
border:1px solid #eaf1f7;
background:#f7fbfe;
margin-bottom:20px;
padding:15px;
}
.reg_push_forum h3,
.reg_push_user h3{
font-weight:100;
font-size:12px;
color:#333;
display:block;
border-bottom:1px dashed #c2c6c9;
padding-bottom:10px;
margin-bottom:10px;
line-height:26px;
}
.reg_push .ct{
overflow:hidden;
}
.reg_push .ct ul{
margin-left:-25px;
position:relative;
}
.reg_push .ct ul li{
float:left;
width:270px;
height:70px;
margin:10px 0;
margin-left:26px;
}
.reg_push h4{
margin-bottom:5px;
}
.reg_push .face{
float:left;
margin-right:10px;
}
.reg_push .text{
overflow:hidden;
}
/*
===================
地区学校资料库
===================
*/
.pop_region_list{
padding-bottom:10px;
}
.pop_region_list ul{
padding-left:2px;
}
.pop_region_list ul li{
float:left;
line-height:20px;
}
.pop_region_list ul li a,
.pop_region_list ul li span{
display:block;
padding:0 5px;
color:#333;
white-space:nowrap;
border-radius:2px;
}
.pop_region_list ul li a:hover{
background:#e0e0e0;
text-decoration:none;
}
.pop_region_list ul li.current a,
.pop_region_list ul li.current span{
background:#266aae;
color:#ffffff;
}
.pop_region_list .hr{
background:#e4e4e4;
height:1px;
overflow:hidden;
font:0/0 Arial;
clear:both;
margin:10px 0;
}
.pop_region_list .filter{
padding:10px 0;
}
.pop_region_list .filter a{
margin-right:12px;
}
.pop_region_list .filter a.current{
color:#333;
font-weight:700;
}
.pop_region_list .list{
border:1px solid #ccc;
height:108px;
overflow-x:hidden;
overflow-y:auto;
}
.pop_region_list .list ul{
padding:5px;
}
.pop_region_list .list li{
float:left;
width:33%;
cursor:pointer;
text-indent:5px;
}
.pop_region_list .list li:hover{
background:#f7f7f7;
}
/*验证码*/
#J_verify_code #J_verify_update_img{
float:left;
margin-right:10px;
} | public/assets/themes/site/default/css/dev/register.css | ===================
主体内容区域
===================
*/
.register{
margin-top:20px;
}
/*
===================
注册登录布局
===================
*/
.reg_cont_wrap{
float:left;
min-height:1px;
width:100%;
}
.reg_cont{
margin-right:220px;
position:relative;
}
.reg_side{
float:left;
width:200px;
margin-left:-200px;
padding-top:30px;
}
/*
===================
标题栏
===================
*/
.reg_head{
padding:10px 15px;
border-bottom:1px solid #ededed;
font-size:16px;
font-weight:700;
color:#666;
}
/*
===================
表单区域
===================
*/
.reg_form{
padding:25px 0 50px 15px;
}
.reg_form dl{
padding:15px 0 15px 10px;
width:690px;
min-height:32px;
zoom:1;
position:relative;
}
.reg_form dl.pick{
padding:10px 0 0 10px;
height:24px;
}
.reg_form dl:after{
content:'\20';
display:block;
height:0;
clear:both;
visibility: hidden;
}
.reg_form dl.current{
background:#eff7fe;
}
.reg_form dl.dl_cd{
height:115px;
}
.reg_form dl.dl_cd img{
vertical-align:top;
}
.reg_form dl.dl_cd .tips_icon_error,
.reg_form dl.dl_cd .tips_icon_success{
float:left;
margin-top:5px;
margin-left:5px;
}
.reg_form dl.dl_cd .dd_r .tips_icon_error,
.reg_form dl.dl_cd .dd_r .tips_icon_success{
float:inherit;
margin-top:0;
margin-left:0;
}
.reg_form dt{
float:left;
width:110px;
font-size:14px;
line-height:25px;
*line-height:28px;
text-align:right;
margin-right:15px;
}
.reg_form dd{
float:left;
width:250px;
/*height:30px;*/
}
.reg_form dd .input{
vertical-align:top;
}
.reg_form dd.dd_r{
width:308px;
line-height:26px;
}
.reg_form dd .reg_ddtext{
line-height:26px;
height:26px;
font-size:14px;
}
.reg_form .input,
.reg_form textarea{
margin-right:5px;
}
.reg_form dl.current .input,
.reg_form .input:focus,
.reg_form textarea:focus{
outline:2px solid #99d8f5;
border-color:#7bbff2;
}
.reg_form .username{
line-height:25px;
font-size:14px;
}
.reg_side_cont{
border-left:1px dotted #ccc;
padding:10px 20px 20px;
}
.reg_form .btn_submit{
padding-left:25px;
padding-right:25px;
position:relative;
}
.reg_form .tips{
padding:5px 10px;
line-height:20px;
margin-bottom:10px;
}
.reg_form .tips_icon_error,
.reg_form .tips_icon_success{
*margin-top:5px;
}
/*
===================
密码强度
===================
*/
.pwd_strength_1,
.pwd_strength_2,
.pwd_strength_3,
.pwd_strength_4{
width:84px;
height:9px;
overflow:hidden;
display:inline-block;
background:url(../../images/register/pwd_strength.png) no-repeat;
margin-right:5px;
}
.pwd_strength_2{
background-position:0 -9px;
}
.pwd_strength_3{
background-position:0 -18px;
}
.pwd_strength_4{
background-position:0 -27px;
}
/*
===================
条款协议
===================
*/
.agreements{
margin:10px 0 0 135px;
width:460px;
}
.agreements pre{
height:150px;
overflow-x:hidden;
overflow-y:scroll;
border:1px solid #e4e4e4;
}
/*
===================
操作提示
===================
*/
.reg_tips{
background:url(../../images/register/arrow_reg.png) 0 4px no-repeat;
display:inline-block;
padding:5px 10px 5px 20px;
vertical-align:middle;
color:#999;
line-height:1.5;
}
/*
===================
邮箱下拉
===================
*/
.mail_down{
position:absolute;
width:240px;
z-index:11;
}
.mail_down ul{
border:1px solid #cccccc;
padding:1px;
background:#fff;
}
.mail_down li{
line-height:21px;
height:21px;
overflow:hidden;
}
.mail_down li a{
display:block;
color:#999;
text-decoration:none;
padding:0 10px;
}
.mail_down li a:hover,
.mail_down li.current a{
background-color:#e8f4fc;
color:#333;
}
/*
===================
密码找回
===================
*/
.password_back_type{
padding:0 0 0 135px;
}
.password_back_type a{
border:1px solid #e0e0e0;
display:inline-block;
background:#fff;
height:100px;
width:160px;
text-align:center;
margin-right:10px;
color:#666;
background-repeat: no-repeat;
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#f0f0f0));
background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #f0f0f0);
background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #f0f0f0);
background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #f0f0f0);
background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #f0f0f0);
background-image: linear-gradient(#ffffff, #ffffff 25%, #f0f0f0);
}
.password_back_type a:hover{
background:#ffff9d;
border-color:#ffae12;
text-decoration:none;
color:#000;
}
.password_back_type img{
display:block;
vertical-align:top;
margin:7px auto 3px;
}
/*
===================
邀请注册
===================
*/
.invite_box_wrap{
border:1px solid #eeeeee;
padding:1px;
background:#fff;
margin:5px 0 10px 133px;
width:400px;
}
.invite_box{
background:#f6f6f6;
padding:5px 10px;
}
.invite_box .hd{
font-family:Simsun;
margin-bottom:8px;
}
.invite_box .hd a{
color:#666;
}
.invite_box .ct ul{
padding:10px 0 10px 10px;
}
.invite_box .ct li{
padding:10px 0 0;
color:#666;
}
.invite_box .ct li em{
display:inline-block;
width:60px;
}
.invite_box .ct .input{
padding:2px;
width:140px;
}
.invite_box .tips{
text-align:left;
padding:5px 10px;
line-height:1.5;
}
/*
===================
消息提示
===================
*/
.reg_message{
width:400px;
margin:40px auto 0;
padding:0 0 40px 100px;
background:url(../../images/tips/big.png) -100px 0 no-repeat;
min-height:100px;
_height:100px;
line-height:1.5;
}
.reg_message h2{
padding:5px 0 10px;
font-size:16px;
font-weight:100;
}
.reg_ignore{
background-position:0 -100px;
}
.reg_ignore ul{
padding-top:5px;
}
.reg_ignore .error_return{
padding-top:10px;
font-size:14px;
}
/*
===================
验证激活
===================
*/
.reg_activation{
width:610px;
margin:0 auto;
padding:30px 0;
}
.reg_activation h1{
font-size:20px;
font-family:"Microsoft Yahei";
font-weight:100;
color:#598403;
letter-spacing:1px;
margin-bottom:30px;
}
.reg_activation p{
line-height:1.8;
}
.reg_activation p.text{
line-height:2;
font-size:14px;
}
.reg_activation_tip h2{
font-size:12px;
border-top:1px solid #d0d4d7;
margin-top:50px;
padding:10px 0 5px;
}
.reg_activation_tip p{
padding-bottom:30px;
}
/*
===================
版块会员推荐
===================
*/
.reg_push{
padding:0 10px;
}
.reg_push_forum,
.reg_push_user{
border:1px solid #eaf1f7;
background:#f7fbfe;
margin-bottom:20px;
padding:15px;
}
.reg_push_forum h3,
.reg_push_user h3{
font-weight:100;
font-size:12px;
color:#333;
display:block;
border-bottom:1px dashed #c2c6c9;
padding-bottom:10px;
margin-bottom:10px;
line-height:26px;
}
.reg_push .ct{
overflow:hidden;
}
.reg_push .ct ul{
margin-left:-25px;
position:relative;
}
.reg_push .ct ul li{
float:left;
width:270px;
height:70px;
margin:10px 0;
margin-left:26px;
}
.reg_push h4{
margin-bottom:5px;
}
.reg_push .face{
float:left;
margin-right:10px;
}
.reg_push .text{
overflow:hidden;
}
/*
===================
地区学校资料库
===================
*/
.pop_region_list{
padding-bottom:10px;
}
.pop_region_list ul{
padding-left:2px;
}
.pop_region_list ul li{
float:left;
line-height:20px;
}
.pop_region_list ul li a,
.pop_region_list ul li span{
display:block;
padding:0 5px;
color:#333;
white-space:nowrap;
border-radius:2px;
}
.pop_region_list ul li a:hover{
background:#e0e0e0;
text-decoration:none;
}
.pop_region_list ul li.current a,
.pop_region_list ul li.current span{
background:#266aae;
color:#ffffff;
}
.pop_region_list .hr{
background:#e4e4e4;
height:1px;
overflow:hidden;
font:0/0 Arial;
clear:both;
margin:10px 0;
}
.pop_region_list .filter{
padding:10px 0;
}
.pop_region_list .filter a{
margin-right:12px;
}
.pop_region_list .filter a.current{
color:#333;
font-weight:700;
}
.pop_region_list .list{
border:1px solid #ccc;
height:108px;
overflow-x:hidden;
overflow-y:auto;
}
.pop_region_list .list ul{
padding:5px;
}
.pop_region_list .list li{
float:left;
width:33%;
cursor:pointer;
text-indent:5px;
}
.pop_region_list .list li:hover{
background:#f7f7f7;
}
/*验证码*/
#J_verify_code #J_verify_update_img{
float:left;
margin-right:10px;
} | 0.301671 | 0.055746 |
border: 1px solid #DBDBDB;
background-color: #00B86B;
padding: 10px 30px 8px 30px;
text-transform: uppercase;
font-family: 'Rubik', sans-serif;
text-align: center;
font-size: 14px;
font-weight: 500;
line-height: 16px;
border-radius: 21.5px;}
#_ht-container.RO-HT-templates .btn:hover{background-color: #009f5c;}
#ROtemplateZone {
z-index: 100000;
width: 244px;
float: right;
margin-left: 20px;
position: fixed;
right: 0px;
top: 90px;
height: 850px;
overflow-y: scroll;
background: #3A3F51;
padding: 10px;
border: 1px solid
#57595F;
border-top: 0px;
bottom:0px;
}
.ROslideArrow {
z-index: 100000;
width:36px;
padding: 12px 13px;
background: #3A3F51;
font:400 18px Arial, Helvetica, sans-serif;
color:white;
text-decoration:none;
position:fixed;
top:90px;
right:244px;
border: 1px solid #57595F;
border-right: 0px;
}
#ROcategory-container{
z-index: 100000;
width:244px;
padding: 6px 10px;
background: #3A3F51;
font:400 12px Arial, Helvetica, sans-serif;
position:fixed;
top:43px;
right:0px;
border: 1px solid #57595F;
border-bottom:0px;
border-right: 0px;
}
#ROcategory-container select{
margin-bottom:0px;
}
/*.fr-toolbar{ !**TODO Apply this with some smoothination Not working well for now **!*/
/*margin-top: -41px !important;*/
/*}*/
/*.fr-tooltip{*/
/*margin-top:-41px !important;*/
/*}*/
/*.fr-popup{*/
/*margin-top: -82px !important;*/
/*}*/
.ROtemplateContainer.ui-sortable-helper { padding-left: 35px;/*max-height: 150px !important;*/overflow-y: hidden;}
#_ht-container .ROtemplateContainer.ui-sortable-helper .ROhandlers{ left: 0;}
_:-ms-fullscreen, :root #ROtemplateZone , _:-ms-fullscreen, :root #ROcategory-container { right:19px; }
_:-ms-fullscreen, :root .ROslideArrow { right:262px; }
.ROtemplateContainer {
position: relative;
padding-left: 0;
margin-bottom: 20px;
padding: 10px 0;
word-break: break-word;
}
#_ht-container .ToolOpen{ position: absolute; top: 20%; left:0;}
.ROtemplateZone_main{ position: relative; float: right; width: 300px;}
#_ht-container .ROplaceHolder { height: auto; background: #d9d9d9; }
#_ht-container .ROtemplateContainer .ROhandlers{
color: hsla(0, 0%, 78%, 0.8);
display: none;
font-size: 15px;
left: -24px;
position: absolute;
top: 0;
width: 30px;
z-index: 2;
}
#_ht-container .ROemptyPlaceHolder{
min-height: 100px;
padding: 20px;
color: #999999;
font-size: 1.5em;
border: 2px solid #999;
}
/*#_ht-container .ROtemplateContainer:hover{outline: rgba(228, 156, 90, 0.5) solid 1px; }*/
#_ht-container .ROtemplateContainer:hover .ROhandlers,#_ht-container .ROtemplateContainer.ui-sortable-helper .ROhandlers{ display:block !important; }
.ROcontent_main{ margin: 0 auto; width: 810px;}
.ROtemplate{
cursor: pointer;
margin-bottom: 10px; background: #d9d9d9; padding:5px; text-align: center; border: 1px solid #d9d9d9;
}
.ROtemplate img{
/*height: 100%;*/
width: auto;
/*max-width: 1000px;*/
}
.ROtemplate:hover{ border: solid 1px #888;}
#_ht-container .ROtemplateContainer .ROhandlers .ROmover,
#_ht-container .ROtemplateContainer .ROhandlers .ROcloner,
#_ht-container .ROtemplateContainer .ROhandlers .ROyouTubeHandler,
#_ht-container .ROtemplateContainer .ROhandlers .ROEditHTML,
#_ht-container .ROtemplateContainer .ROhandlers .ROEditImageLink,
#_ht-container .ROtemplateContainer .ROhandlers .ROEditImage,
#_ht-container .ROtemplateContainer .ROhandlers .ROEditVideo,
#_ht-container .ROtemplateContainer .ROhandlers .ROremover{
border:0px solid white;
padding:0px;
color: white;
cursor: pointer;
height: 30px;
line-height: 30px;
text-align: center;
width: 30px;
}
.ROhandlers button:last-child{
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.ROtemplateContainer .ROhandlers .ROmover{
background-color: hsl(69, 99%, 41%);
border-top-left-radius: 5px;
border-top-right-radius: 5px;
cursor: move;
}
#_ht-container .ROtemplateContainer .ROhandlers .ROremover{
background-color:#DD4D40;
}
#_ht-container .ROtemplateContainer .ROhandlers .ROcloner { background-color: hsl(0, 0%, 30%); }
#_ht-container .ROtemplateContainer .ROhandlers .ROEditHTML { background: #009688; }
#_ht-container .ROtemplateContainer .ROhandlers .ROEditImage { background: #9C27B0;}
#_ht-container .ROtemplateContainer .ROhandlers .ROEditImageLink { background: #795548; }
#_ht-container .ROtemplateContainer .ROhandlers .ROyouTubeHandler { background: rgb(0, 172, 214); }
#_ht-container .ROtemplateContainer .ROhandlers .ROEditVideo { background: #337AB7;}
.ROEditor_btns .btn,#fancyConfirm_cancel{
background: #337AB7;
text-transform: none;
font-family: sans-serif;
font-weight: normal;
font-size: 1em;
padding: 5px 13px;
margin-top: 5px;
border-radius: 3px;
border: 1px solid #275781;
}
.ROEditor_btns .btn:focus , #fancyConfirm_cancel:focus , .ROEditor_btns .btn:active,#fancyConfirm_cancel:active ,.ROEditor_btns .btn:hover,#fancyConfirm_cancel:hover {
background: #286396;
border:1px solid #275781;
}
.ROEditor_btns .btn:nth-of-type(1){
margin-right: 10px;
}
#_ht-container .ROtemplateContainer .ROimageContainer{display: block; position: relative;text-align: center}
.ROslideArrow{ cursor: pointer;}
.RObtns_main{ width: 100%; display: block;}
.ROimageHandler{ margin: 10px 0;z-index:10;}
.ROimageHandler .btn { margin: 0 5px; background-color: rgba(255, 0, 0, 0.3); color: #fff;}
.ROimageHandler .btn:hover{background-color: rgba(76, 76, 76,1);}
.ROyoutubeContainer:hover .ROyouTubeHandler{ display: inline-block;}
.ROyouTubeHandler .btn{ position: absolute; top: 56px; left:28px; background-color: rgba(255, 0, 0, 0.3); color: #fff; display: none;}
.ROyouTubeHandler .btn:hover ,.ROyouTubeHandler .btn:active { background-color: rgba(255, 0, 0, 0.5) !important;}
.ROimageHandler .btn:hover{ background-color: rgba(76, 76, 76,1);}
.fancybox-wrap .ROyouTubeEditor .RO-popup-message, .fancybox-wrap .ROimageEditor .RO-popup-message {
color: red;
padding-left: 130px;
margin-top: -9px;
}
.fancybox-wrap .ROimageEditor .ROimgSmartKeyCustomTextNote {
/*color: red;*/
padding-left: 130px;
margin-top: -9px;
margin-bottom: 10px;
}
.fancybox-wrap .ROyouTubeEditor .RO-popup-message {
padding-left: 40px;
}
.fancybox-wrap .ROyouTubeEditor .ROEditor_btns {
margin-left: 38px;
}
.ROyouTubeEditor {
height: 76px;
}
.ROyouTubeEditor.ROtwoVideos{
height: 153px;
}
.ROimageEditor {
height: 218px;
}
.ROimageEditor.ROFormSelect{
height: 98px;
}
.ROimageEditor.ROFormSelect select{ width: 200px;padding: 6px 2px;display: inline-block;}
.ROimageEditor.ROCampaignSelect{
height: 98px;
}
.ROimageEditor.ROCampaignSelect select.campaign{ width: 200px;padding: 6px 2px;display: inline-block;}
.ROimageEditor.ROLinkEditor {height: 179px;}
.ROimageEditor.ROLinkEditor.ROPageEditor {height: 93px;}
.ROHtmlEditor.ROHtmlEditor {
height: 300px;
width: 650px;
}
.fancybox-wrap .ROimageEditor lable,.fancybox-wrap .ROyouTubeEditor lable{ display: inline-block; width: 130px; margin-bottom: 10px;}
.fancybox-wrap .ROimageEditor input,.fancybox-wrap .ROyouTubeEditor input { display: inline-block; width: 200px; margin-bottom: 10px; padding: 0 5px;}
.fancybox-wrap .ROimageEditor select{display: inline-block;width: 200px;}
.fancybox-wrap .ROyouTubeEditor input {
width: 290px;
}
.fancybox-wrap .ROyouTubeEditor lable {
width: 35px;
}
.fancybox-wrap .ROyouTubeEditor.ROtwoVideos lable {
width: 38px;
}
.ROyouTubeEditor.ROtwoVideos .right{
margin-top:7px;
}
.ROJavascriptEditor {
height: 380px;
width: 650px;
}
.ROHtmlEditor.ROHtmlEditor lable {
width: 64px;
}
.ROHtmlEditor.ROHtmlEditor textarea {
width: 586px;
height: 250px;
resize: none;
}
.fancybox-wrap .ROJavascriptEditor lable{
width: 64px;
}
.fancybox-wrap .ROJavascriptEditor .ROEditor_btns {
margin-left: 64px;
margin-top: 15px;
}
.ROJavascriptEditor textarea {
width: 586px;
height: 250px;
resize: none;
}
.ROJavascriptEditor-text { width: 586px;
display: inline-block;
margin-left: 64px;
margin-top: 15px;
font-size: 12px;
color: red;
font-weight: bold;}
.ROHtmlEditor.ROHtmlEditor .ROEditor_btns {
margin-left: 64px;
margin-top: 15px;
}
.fancybox-wrap .ROimageEditor input[type="checkbox"],.fancybox-wrap .ROyouTubeEditor input[type="checkbox"]{ width: 20px;}
.ROEditor_btns{ margin-left: 130px;}
.ROimageHandler{ position: absolute; top:41%; left: 45%; margin: 0;}
.ROFormHandler.ROimageHandler{left:45%;top:36%}
.ROfull-image-btn .ROimageHandler{left: 46%; top:45%;}
.ROeditMode .ROFormContainer{height: 100px;width: 100%;background: gray;text-align: center;color:white;padding-top:40px}
.ROeditMode .ROFormContainer h4{margin-top:0px}
.ROeditMode .ROJavascriptContainer{height: 100px;width: 100%;background: gray;text-align: center;color:white;padding-top:40px}
.ROeditMode .ROJavascriptContainer span{margin-top:0px}
.ROtemplateContainer .ROJavascriptContainer .placeholder {display: none;}
.ROeditMode .ROtemplateContainer .ROJavascriptContainer .placeholder {display: block;}
.ROtemplateContainer hr{ border-bottom: solid 1px #ccc; border-top: none; margin-top: 20px; margin-bottom: 20px;}
.ROtemplateContainer a::selection, .ROtemplateContainer a , .ROtemplateContainer a:hover,.ROtemplateContainer a:active,.ROtemplateContainer a:focus {color:#169c6e;text-decoration:none;}
/*full_description*/
.ROtemplateContainer.ROfull_description .ROeditable{ width: 100%; padding:0; margin: 0;}
/*fulltitle_description*/
.ROtemplateContainer.ROfulltitle_description .ROeditable{ width: 100%; padding:0; margin: 0;}
.ROtemplateContainer.ROfulltitle_description .ROeditable h1{ text-transform: uppercase; font-weight: bold;}
/*fulltitleh1_description*/
.ROtemplateContainer.ROfulltitleh1_description .ROeditable{ width: 100%; padding:0; margin: 0;}
.ROtemplateContainer.ROfulltitleh1_description .ROeditable h1{ text-transform: none;}
/*fulltitleh2_description*/
.ROtemplateContainer.ROfulltitleh2_description .ROeditable{ width: 100%; padding:0; margin: 0;}
.ROtemplateContainer.ROfulltitleh2_description .ROeditable h2{ text-transform: none;}
/*ROfullbr_description*/
.ROtemplateContainer.ROfullbr_description .RObr_Container{ width: 100%; padding:0; margin: 0;}
/*ROfullhr_description*/
.ROtemplateContainer.ROfullhr_description{ margin-bottom: 0;}
.ROtemplateContainer.ROfullhr_description .ROhr_Container{ width: 100%; padding:0; margin: 0;}
.ROtemplateContainer.ROfullhr_description .ROhr_Container hr{ border-bottom: solid 1px #ccc; border-top: none; margin-top: 20px; margin-bottom: 20px;}
/*logo_image*/
/*.ROtemplateContainer.ROlogo_image_description .ROeditable{ width: 49%; padding-left:1%;}*/
.ROtemplateContainer.ROlogo_image_description .ROeditable h2{ margin-top: 20px;}
.ROtemplateContainer.ROlogo_image_description .ROimage{ width:100%;margin-top:20px;}
/*left_image_description*/
.ROtemplateContainer.ROleft_image_description .ROeditable{ float: left; width: 49%; padding-left:1%;}
.ROtemplateContainer.ROleft_image_description .ROeditable h2{ padding-top: 0; margin-top: 0;}
.ROtemplateContainer.ROleft_image_description .ROimage{ float: left; width:49%; padding-right: 1%; }
.ROtemplateContainer.ROleft_image_description .ROimage .ROimageHandler{ left: 41%;}
/*right_image_description*/
.ROtemplateContainer.ROright_image_description .ROeditable{ float: left; width: 49%; padding-right:1%;}
.ROtemplateContainer.ROright_image_description .ROeditable h2{ padding-top: 0; margin-top: 0;}
.ROtemplateContainer.ROright_image_description .ROimage{ float: left; width:49%; padding-left: 1%; }
/*left_video_description*/
.ROtemplateContainer.ROleft_video_description .ROleft_video{ float: left; width: 48%; padding-right: 0;}
.ROtemplateContainer.ROleft_video_description .ROright_description{ float: right; width: 48%; padding-left: 0;}
/*right_video_description*/
.ROtemplateContainer.ROright_video_description .ROleft_description{ float: left; width: 48%; padding-right:0;}
.ROtemplateContainer.ROright_video_description .ROright_video{ float: right; width: 48%; padding-left: 0; }
/*two_column_content*/
.ROtemplateContainer.ROtwo_column_content .ROcolumn_one{ float: left; width: 49%; padding: 0 1% 0 0; }
.ROtemplateContainer.ROtwo_column_content .ROcolumn_two{ float: left; width: 49%; padding: 0 0 0 1%;}
/*three_column_content*/
.ROtemplateContainer.ROthree_column_content .ROcolumn_one{ float: left; width: 33.33%; padding: 0 1% 0 0; }
.ROtemplateContainer.ROthree_column_content .ROcolumn_two{ float: left; width: 33.33%; padding: 0 1%;}
.ROtemplateContainer.ROthree_column_content .ROcolumn_three{ float: left; width: 33.33%; padding: 0 0 0 1%;}
/*two_column_image_description*/
.ROtemplateContainer.ROtwo_column_image_description .ROcolumn_one{ float: left; width: 49%; padding-right: 1%;}
.ROtemplateContainer.ROtwo_column_image_description .ROcolumn_two{ float: left; width: 49%; padding-left: 1%; padding-right: 0; }
.ROtemplateContainer.ROtwo_column_image_description .ROtop_image{ margin-bottom: 10px; width: 100%;}
.ROtemplateContainer.ROtwo_column_image_description .ROtop_image img{ padding: 0; margin: 0;}
/*three_column_image_description*/
.ROtemplateContainer.ROthree_column_image_description .ROcolumn_one{ float: left; width: 33.33%; padding: 0 1%; }
.ROtemplateContainer.ROthree_column_image_description .ROcolumn_two{ float: left; width: 33.33%; padding: 0 1%; }
.ROtemplateContainer.ROthree_column_image_description .ROcolumn_three{ float: left; width: 33.33%; padding: 0 1%; }
.ROtemplateContainer.ROthree_column_image_description .ROtop_image{ margin-bottom: 10px; width: 100%;}
.ROtemplateContainer.ROthree_column_image_description .ROtop_image img{ padding: 0; margin: 0;}
/*full_image_caption*/
.ROtemplateContainer.ROfull_image_caption{ position: relative; text-align: center; padding: 10px;}
.ROtemplateContainer.ROfull_image_caption .ROimage_caption{ position: absolute; top: 35%; z-index: 5; padding: 0 5%;}
.ROtemplateContainer.ROfull_image_caption .ROeditable{ width: 100%; }
.ROtemplateContainer.ROfull_image_caption .ROeditable h1{ color: #fff;}
.ROtemplateContainer.ROfull_image_caption .ROeditable p{ color: #fff;}
/*ROfull_testimonials*/
.ROfull_testimonials .fa-quote-left{ padding-right: 10px; }
.ROfull_testimonials .fa-quote-right{ padding-left: 10px;}
.ROfull_testimonials .fa-quote-left,.ROfull_testimonials .fa-quote-right{ color:#ccc; font-size: 25px;}
.ROtop-header{margin-top: -50px;border-bottom: 1px solid gray; text-align: center;}
.ROeditable p { word-wrap: break-word;}
.ROeditable table td,.ROeditable table th {border: 1px solid #ddd;}
.ROeditable table td.fr-highlighted, .ROeditable table th.fr-highlighted {
border: 1px double red;
}
.ROeditable table td.fr-thick, .ROeditable table th.fr-thick {
border-width: 2px;
}
.ROeditable table.fr-alternate-rows tbody tr:nth-child(2n){
background: #f5f5f5;
}
.editor-header-present{
margin-top:43px;
}
.editor-header {
width: 100%;
height: 43px;
position: fixed;
top: 0px;
z-index: 110000;
background: #3A3F51;
color:white;
border-bottom: 1px solid #57595F;
}
.editor-header .pageName{
font-size: 1.8em;
display: inline-block;
padding-top: 3px;
text-transform: uppercase;
width: 45%;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.editor-header .btn{
background: #337AB7;
text-transform: none;
font-family: sans-serif;
font-weight: normal;
font-size: 1em;
padding: 5px 13px;
margin-top: 5px;
border-radius: 3px;
border: 1px solid #2C5D88;
}
.editor-header .btn:focus , .editor-header .btn:active ,.editor-header .btn:hover{
background: #286396;
}
.editor-header .btn.btn-primary{background: #337ab7; border-color: #337ab7;}
.editor-header .btn.save-btn{background: #337ab7; border-color: #337ab7;}
.editor-header .btn.cancel-btn{background: #d9534f; border-color: #D9534D;}
.header-footer-overlay{
height: 100%;
background: #000000;
opacity: 0.2;
z-index: 100000;
position: absolute;
width: 100%;
top: 0px;
}
header,footer,.menusidebar > div{
position: relative;
}
/*TODO add parent class*/
.treeview ul{
display: none;
}
.ROright_video_description .ROyouTubeHandler .btn{ left: inherit; right: 28px;}
.ROwhats-hot-section{ background:#f6f6f6; text-align: center; padding: 35px 0 35px 0;}
.ROwhats-hot-section h2{ color: #f07474; background:#f6f6f6 ; font-size: 24px; font-family: 'Oswald', sans-serif; font-weight: normal; text-transform: uppercase; text-align: center; position: relative; display: inline-block; margin:50px 0 0 0; padding: 0;}
.ROwhats-hot-section h2:after{ border-top: solid 2px #e5e5e5; content: ""; position: absolute; right: 140px; top: 12px; width: 40px;}
.ROwhats-hot-section h2:before{ border-top: solid 2px #e5e5e5; content: ""; position: absolute; left: 140px; top: 12px; width: 40px;}
.ROwhats-hot-section ul{padding: 0; margin: 50px 0 0 -30px;}
.ROwhats-hot-section ul li{padding: 20px; margin:0 0 20px 15px ; display: inline-block; text-align: center; border-radius: 2px; background-color: rgb(255, 255, 255); box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.08); font-size: 0; width: 381px; vertical-align: top;}
.ROwhats-hot-section ul li h3{ font-size: 24px; font-family: 'Oswald', sans-serif; font-weight: normal; text-transform: uppercase; padding: 0; margin: 0 0 10px 0; }
.ROwhats-hot-section ul li p{ color: #959595; font-family: 'Open Sans', sans-serif; font-weight: 300; font-size: 14px;}
.ROwhats-hot-section ul li a:hover,.ROwhats-hot-section ul li a:focus{text-decoration: none;}
.ROwhats-hot-section ul li.shopping-new h3{ color:#169c6e;}
.ROwhats-hot-section ul li.weekly-new h3{ color:#0fa5d6;}
.ROwhats-hot-section ul li.e-vic-new h3{ color:#ee6072;}
.ROwhats-hot-section ul li.order-new h3{ color:#ffa415;}
.ROwhats-hot-section ul li.education-new h3{ color:#7dbd43;}
.ROwhats-hot-section ul li.pharmacy-new h3{ color:#a076cb;}
.ROwhats-hot-section ul li .whats-hot-image{ display:block; margin: 5px 0 0 0;}
.ROwhats-hot-section .whats-hot-navigation .next3{background:url('/assets/images/whats-hot-navigation.png') right top no-repeat; width: 13px; height:25px; display: inline-block;margin-left: 20px; cursor: pointer; }
.ROwhats-hot-section .whats-hot-navigation .next3:hover{ background-position: right -30px;}
.ROwhats-hot-section .whats-hot-navigation .previous3{background:url('/assets/images/whats-hot-navigation.png') left top no-repeat; width: 13px; height:25px; display: inline-block; cursor: pointer; }
.ROwhats-hot-section .whats-hot-navigation .previous3:hover{ background-position: left -30px; }
.ROsearchbox {float: none; text-align: center; width: 468px; margin: 0 auto; }
.ROsearchbox h2{ color: #000; font-size: 36px; font-family: 'Rubik', sans-serif; font-weight: 300; margin-top: 0; margin-bottom: 20px;}
.ROsearchbox .btn i{ font-size: 27px; color:#666666; font-weight: bold;}
.ROsearchbox .btn:hover i{ color: #fff;}
.ROsearchbox .btn:hover{background: #fff; }
.ROsearchbox .btn:hover i{color: #149267;}
.ROsearchbox .btn{ background: #fff; height: 57px; width: 50px; border-radius: 0; padding: 0; border-style: solid; border-width: 4px; border-color: rgb(54, 52,52); border-left:none;}
.ROsearchbox #custom-search-input input { border-radius: 0; border-style: solid; border-width: 4px; border-color: rgb(54, 52,52); border-right: none; background-color: rgb(255, 255, 255); height: 57px; font-size: 14px; color: #888888; font-family: 'Rubik', sans-serif;}
/*.ROeditable a{color:#169C6E;text-decoration: none;}
.ROeditable a:hover,.ROeditable a:focus{color:#169C6E;text-decoration: underline;}*/
.ROfleft{float: left;}
.ROfright{float: right;}
.ROtwo_image .ROimage{ width: 49%;}
.ROtwo_image .ROimage.ROimage-left{ float: left;}
.ROtwo_image .ROimage.ROimage-right{ float: right;}
.ROthree-image-main {
margin-left: -1%;
}
.ROthree-image-main .ROimage {
float: left;
width: 32.3%;
margin-left: 1%;
}
.ROthree-image-main .ROimageHandler{left: 40%;}
.ROsigle_image300 .ROimage-300 img{ max-height: 300px;}
.ROsigle_image500 .ROimage-500 img{ max-height: 500px;}
.ROcontent-image-50-50 .btn{ color: #fff; margin-top: 20px;}
.ROcontent-image-50-50 .btn:hover{ color: #fff; text-decoration: none;}
.ROcontent-image-50-50 .ROeditable{width: 49%;}
.ROcontent-image-50-50 .ROimage{width: 49%;}
.ROimage-content-50-50 .btn{ color: #fff; margin-top: 20px;}
.ROimage-content-50-50 .btn:hover{color: #fff; text-decoration: none;}
.ROeditable .btn{
color: #fff !important;
margin-top: 20px;
text-decoration: none !important;
}
.ROeditable .btn:hover,.ROeditable .btn:active,.ROeditable .btn:focus{ color: #fff;}
.ROimage-content-50-50 .ROeditable{width: 49%;}
.ROimage-content-50-50 .ROimage{width: 49%;}
.ROimage-content-50-50 .ROimageHandler{ left: 40%;}
/*common button style*/
/*button.btn, html input[type="button"].btn , input[type="reset"].btn , input[type="submit"].btn , .btn, a.btn{ background: #169c6e; font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 14px; color: #fff; line-height: 20px; padding: 6px 12px; text-transform: uppercase; -webkit-border-radius: 0px; border-radius: 0px; }
button.btn:hover, html input[type="button"].btn:hover , input[type="reset"].btn:hover, input[type="submit"].btn:hover, .btn:hover, a.btn:hover{background: #169c6e; color: #fff; text-decoration: none;}
.touch .button.btn:hover, html.touch input.btn[type="button"]:hover,.touch input.btn[type="reset"]:hover,.touch input.btn[type="submit"]:hover,.touch .btn:hover{background: #169c6e; color: #fff !important;}
.btn:focus, .btn.focus{background: #169c6e; color: #fff;}
.btn.green{background: #169c6e;}
.btn.green:hover{background: #ee3a43;}
.btn.grey{background: #666;}
.btn.grey:hover{background: #ee3a43;}
.btn.ghost{background:transparent; color: #169c6e; border: solid 1px #169c6e; }
.btn.ghost:hover{background:transparent; color: #169c6e !important;}*/
/*.btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.btn-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .dropdown-toggle.btn-info:focus, .btn-info.focus:active, .btn-info.active.focus, .open > .dropdown-toggle.btn-info.focus { border: inherit; box-shadow: none;}*/
.ROcontent-image-30-70 .ROeditable{width: 28%;}
.ROcontent-image-30-70 .ROimage{width: 68%;}
.ROcontent-image-30-70 .ROeditable .btn{ color: #fff; margin-top: 20px; }
.ROcontent-image-30-70 .ROeditable .btn:hover{color: #fff; text-decoration: none;}
.ROcontent-image-70-30 .ROeditable{width: 68%;}
.ROcontent-image-70-30 .ROimage{width: 28%;}
.ROcontent-image-70-30 .ROeditable .btn{ color: #fff; margin-top: 20px; }
.ROcontent-image-70-30 .ROeditable .btn:hover{color: #fff; text-decoration: none;}
.ROcontent-image-70-30 .ROimageHandler{left: 39%;}
.ROimage-content-30-70 .ROeditable{width: 68%;}
.ROimage-content-30-70 .ROimage{width:28%;}
.ROimage-content-30-70 .ROeditable .btn{ color: #fff; margin-top: 20px; }
.ROimage-content-30-70 .ROeditable .btn:hover{color: #fff; text-decoration: none;}
.ROimage-content-30-70 .ROeditable h2{ margin-top: 0;}
.ROimage-content-30-70 .ROimageHandler{left: 39%;}
.ROimage-content-70-30 .ROeditable{width: 28%;}
.ROimage-content-70-30 .ROimage{width: 68%;}
.ROimage-content-70-30 .ROeditable .btn{ color: #fff; margin-top: 20px; }
.ROimage-content-70-30 .ROeditable .btn:hover{color: #fff; text-decoration: none;}
.ROfull-image-btn{ text-align: center; margin-bottom: 0; padding-bottom: 0;}
.ROfull-content-btn{ text-align: center;}
.ROleft_testimonials .ROfleft{ width: 68%;}
.ROleft_testimonials .ROfright{ width: 28%;}
.ROright_testimonials .ROfleft{ width: 68%;}
.ROright_testimonials .ROfright{ width: 28%;}
/*chnages by pintu patel */
.ROtwoimage-sidecaption .ROfleft, .ROtwoimage-bottomcaption .ROfleft, .two-col-text .ROfleft {
width: 49%;
padding-right: 1%;
}
.ROtwoimage-sidecaption .ROfright, .ROtwoimage-bottomcaption .ROfright, .two-col-text .ROfright {
width: 49%;
padding-left: 1%;
}
.ROtwoimage-sidecaption .ROimage {
float: left;
width: 49%;
padding-right: 1%;
}
.ROtwoimage-sidecaption .ROeditable {
float: right;
width: 49%;
padding-left: 1%;
}
.ROtwoimage-sidecaption .ROimageHandler{ left: 33%;}
.ROtwoimage-bottomcaption .ROimage, .ROthreeimage-bottomcaption .ROimage {
padding-bottom: 2%;
margin-top: 0px;
}
.ROthreeimage-bottomcaption{ margin-left: -1%;}
.ROtwoimage-bottomcaption .ROimage .ROimageHandler, .ROthreeimage-bottomcaption .ROimage .ROimageHandler{ left: 41%;}
.ROthreeimage-bottomcaption .ROthreecol, .three-col-text .ROthreecol {
width: 32.3%;
float: left;
margin-left: 1%;
}
/*.ROthreeimage-bottomcaption .col1, .ROthreeimage-bottomcaption .col2 {
padding-right: 1%;
}*/
/*.ROthreeimage-bottomcaption .col3 {
padding-left: 1%;
}*/
.three-col-text .col1, .three-col-text .col2 {
padding-right: 2%;
}
.bold {
font-weight: bolder;
}
.two-col-text h2, .three-col-text h2 {
font-size: 36px;
}
.three-col-text-img h1 {
text-align: center;
}
.three-col-text-img h2 {
font-size: 30px;
}
/* .three-col-text-img img {
border-radius: 50%;
} */
.ROtemplateContainer.ROfulltitleh2_description .col1 {
width: 33.3%;
padding-right: 2%;
float: left;
}
.ROtemplateContainer.ROfulltitleh2_description .col2 {
width: 66.7%;
float: left;
}
.mtop0 {
margin-top: 0px;
}
.mtopbt15 {
margin-bottom: 15px;
margin-top: 15px;
}
.fr-dashed-borders td, .fr-dashed-borders th {
border-style: dashed;
}
.content-editor-media-popup .hovereffect{
float:none;
}
.ROeditable table {
margin-bottom: 10px;
}
.ROfulltitleh2_description .ROimageHandler{ left: 44%; top: 45%;}
.ROtemplateContainer ul li{ list-style-position: inside;}
.whats-hot-section.content-editor-home-tile ul li .whats-hot-image {
position: relative;
}
.whats-hot-section.content-editor-home-tile ul li {
width: 330px;
}
.ROeditable .table-responsive table td, .ROeditable .table-responsive table th{ word-break: normal; word-wrap: normal;}
.ROyoutubeContainer{ overflow: hidden;}
.ROeditable .responsive-table-test th{ background: #ccc; color: #000;}
.ROeditable .responsive-table-test th,.ROeditable .responsive-table-test td{ padding: 5px;}
.ROfulltitleh2_description2 .ROimage{ float: right; padding:10px 0 10px 10px; width: 500px;}
.ROfulltitleh2_description2 h2,.ROfulltitleh2_description2 h3{ font-weight:normal}
.ROeditMode .ROremoveImageButton { display: none; margin: 4px 5px 0px 5px !important;}
.ROeditMode .ROshowClearImageButton .ROremoveImageButton { display: inline-block;}
.ROeditMode .ROshowClearImageButton .ROimageContainer img[src=''] { display: block; height: 317px;}
.ROMediaAlert .ROmover{border-radius: 5px;}
.ROMediaAlert table th,.ROMediaAlert table tr{background:none;}
#_ht-container > .ROMediaAlert > .RODisalbedWrapper ,
#_ht-container .RODisabled .RODisalbedWrapper {
z-index: 10;
position: absolute;
height: 100%;
width: 100%;
top: 0px;
background: rgba(0,0,0,0.2);
}
/** IF the container is selected as a container fluid then set the template
container css same as container css of bootstrap to match the other template pages **/
/** We need to set the container fluid because in the career pages we need some templates with full width **/
#_ht-container.container-fluid .ROtemplateContainer,#_ht-container.container-fluid .ROtemplateContainerInner {
width: 1200px;
margin: 0 auto;
}
#_ht-container.container-fluid .ROtemplateContainer ,#_ht-container.container-fluid .ROtemplateContainerInner{
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media only screen and (max-width: 1169px) {
#_ht-container.container-fluid .ROtemplateContainer ,#_ht-container.container-fluid .ROtemplateContainerInner{
width: 1024px;
}
}
@media only screen and (max-width: 1025px) {
#_ht-container.container-fluid .ROtemplateContainer,#_ht-container.container-fluid .ROtemplateContainerInner {
padding-left: 7.5px;
padding-right: 7.5px;
}
}
@media only screen and (max-width: 1023px) {
#_ht-container.container-fluid .ROtemplateContainer,#_ht-container.container-fluid .ROtemplateContainerInner {
padding-left: 7.5px;
padding-right: 7.5px;
}
}
@media only screen and (max-width: 1023px) {
#_ht-container.container-fluid .ROtemplateContainer ,#_ht-container.container-fluid .ROtemplateContainerInner{
width: 768px;
}
}
@media only screen and (max-width: 767px) {
#_ht-container.container-fluid .ROtemplateContainer,#_ht-container.container-fluid .ROtemplateContainerInner {
width: 100%;
}
}
#_ht-container.container-fluid{padding:0px;}/*remove padding to set the full width banner*/
#_ht-container.container-fluid .ROtemplateContainer.ROFullTemplate {width: 100%;padding:0px;}
#_ht-container.container-fluid .ROtemplateContainer.ROFullTemplate .ROhandlers{left:0px;}
#_ht-container.container-fluid .ROtemplateContainer.ROFullTemplate.ROFullTemplateWithImage .ROhandlers .ROEditImage,
#_ht-container.container-fluid .ROtemplateContainer.ROFullTemplate.ROFullTemplateWithImage .ROhandlers .ROEditImageLink{display:block !important;}
#_ht-container.container-fluid .ROtemplateContainer.ROFullTemplate .ROCenterText{left:0px;}
#_ht-container .ROtemplateContainer.ROFullTemplate .ROimageHandler{display:none;}
.ROtemplateContainer .ROContentCenter{position: absolute;color: white;width: 100%;text-align:center;top:50%;transform: translateY(-50%);-ms-transform: translateY(-50%);-webkit-transform: translateY(-50%);-moz-transform: translateY(-50%);-o-transform: translateY(-50%);}
.ROtemplateContainer.ROCanNotDelete .ROhandlers .ROremover,
.ROtemplateContainer.ROCanNotDelete .ROhandlers .ROcloner,
.ROtemplateContainer.ROCanNotDeleteOREdit .ROhandlers .ROremover,
.ROtemplateContainer.ROCanNotDeleteOREdit .ROhandlers .ROcloner,
.ROtemplateContainer.ROCanNotDeleteOREdit .ROhandlers .ROEditHTML,
.careerlanding-video.ROtemplateContainer .ROcloner,
.careerlanding-video.ROtemplateContainer .ROEditImageLink
{display:none;}
.ROtemplateContainer.ROCanNotDelete .ROhandlers .ROEditHTML,
.ROtemplateContainer.ROCanNotDeleteOREdit .ROhandlers .ROmover
{border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;}
.ROeditMode #_ht-container.container-fluid.career-template .ROtemplateContainer:first-child{margin-top:-43px;}
#_ht-container.container-fluid.career-template {margin-bottom:-20px;}
#_ht-container .ROtemplateContainer.ROFullTemplateOnRight .ROimageContainer{position: absolute;}
.ROFaModel{padding:0px 6px; width: 900px; height: 545px; overflow-y: scroll;}
.ROFaModel .icon-container{float: left;width: 200px;padding-top: 10px;padding-bottom: 10px;padding-left: 43px;position: relative;margin-bottom: 6px;}
.ROFaModel .icon-container .fa{ font-size: 25px;cursor: pointer;text-align: center;position: absolute;left: 0px;}
.ROFaModel .icon-container span{display: inline-block;}
#_ht-container .ROFullTemplateWithImage .ROhandlers .ROEditHTML{display:none;}
#_ht-container .ROFullTemplateWithImage .ROhandlers .ROEditImageLink{border-bottom-left-radius:5px;border-bottom-right-radius:5px; }
#_ht-container .ROtemplateContainer .ROContentCenter {
padding: 0px 30px 0px 10px;
}
#_ht-container.container-fluid .ROtemplateContainer .ROContentCenter {
padding: 0px 10px 0px 10px;
}
.three-li-col{ padding: 0; margin: 0;}
.three-li-col li{ padding: 0; margin: 0 10px; float: left; width: 255px; }
.ROtemplateContainer .career-benefits-box h3 a {color: black !important;}
.career-donate-area.ROtemplateContainer .ROyouTubeHandler{display: block !important;}
.career-donate-area.ROtemplateContainer .ROmover{border-radius:5px 5px 0px 0px !important;}
.career-donate-area.ROtemplateContainer .ROyouTubeHandler{border-bottom-left-radius:5px;border-bottom-right-radius:5px;}
.careerlanding-video.ROtemplateContainer .ROEditVideo{display: block !important;}
.careerlanding-video.ROtemplateContainer .ROEditHTML {display: none !important;}
.careerlanding-video.ROtemplateContainer .ROEditImage{display: block !important;}
#_ht-container .ROtemplateContainer.careerlanding-video .ROhandlers { z-index: 99999;}
#_ht-container .ROtwo_image.ROthankyou-page .ROimage.ROimage-left .ROimageContainer {text-align: right;}
#_ht-container .ROtwo_image.ROthankyou-page .ROimage.ROimage-right .ROimageContainer {text-align: left;}
.color-type label{ display: inline-block; width: 130px; margin-bottom: 10px;}
.color-type input{border: 1px solid #e6d8c2; border-radius: 2px; -webkit-border-radius: 2px; margin-bottom: 15px; padding: 0;}
.color-type .ROEditor_btns{ text-align: center; margin-left: 0;}
.color-type .ROEditor_btns .btn{ margin-right: 0; }
.color-type .ROButtonColor{ margin-bottom: 10px;}
.color-type .sp-replacer{ border-color:#ccc;}
/*starts -- style for the image info line on images for pages*/
.image-breif-hidden{background-color: rgba(0, 0, 0, 0.4 ) !important; color: #DDDDDD; position: absolute; left: 31px; z-index: 99999; width:auto;
top: 0;display: none;}
.image-breif-hidden .image-breif-note{
color: #DDDDDD;top: 0; margin: 10px; left: 0; font-size: 18px;
}
.career-benefits-list .image-breif-hidden{background-color: rgba(0, 0, 0, 0.4 ) !important; color: #DDDDDD; position: absolute; left: 31px; z-index: 99999; width:auto;
top: 25px;display: none;}
.ROeditMode .image-breif-hidden { display: block !important;}
/*ends -- style for the image info line on images for pages*/
.ROeditMode .select2-container{
z-index:1000000;
}
/*for tie login cms page */
.ROtemplateContainer .tie-login .coordinators-infobox-main{ margin-top: 0; }
.ROtemplateContainer .tie-login .coordinators-infobox-main .coordinators-info-box{position: relative;}
.ROtemplateContainer .tie-login .coordinators-infobox-main .coordinators-info-box .RODisabled .RODisalbedWrapper{ left: 0;}
.ROtemplateContainer .tie-login .right-coordinators-form md-input-container,.ROtemplateContainer .tie-login .right-coordinators-form md-input-container input{ width: 100%;}
.tie-banner-image .image-breif-hidden {position: absolute; left:11px !important; top:10px !important;}
.top-floating-icon-hide { display:none;}
.ROimage a {
cursor: default;
}
.ROimage a[href^="http"] {
cursor: pointer;
}
.ROfull_youtube_video .ROyoutubeContainer {overflow: hidden; padding-top: 56.25%; position: relative;}
.ROfull_youtube_video .ROyoutubeContainer iframe {border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%; }
.ROright_video_description.ROleft_video_description .ROyoutubeContainer{overflow: hidden; padding-top:27.1%; position: relative;}
.ROright_video_description.ROleft_video_description .ROyoutubeContainer iframe {border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%; }
.ROleft_right_video_description .ROyoutubeContainer-vid{overflow: hidden; padding-top: 56.20%; position: relative;}
.ROleft_right_video_description .ROyoutubeContainer-vid iframe {border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%; }
.ROright_video_description.ROleft_video_description.ROleft_right_video_description .ROyoutubeContainer{ padding-top: 0; padding-right: 0; padding-left: 0;}
.ROleft_video_description_main .ROyoutubeContainer{overflow: hidden; padding-top:27.6%; position: relative;}
.ROleft_video_description_main .ROyoutubeContainer iframe {border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%;}
.ROright_video_description_main .ROyoutubeContainer{overflow: hidden; padding-top:27.6%; position: relative;}
.ROright_video_description_main .ROyoutubeContainer iframe {border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%;}
.campaign-page-main .product-section{ margin-bottom: 24px;}
.campaign-page-main .section-products ul li{padding-bottom: 20px;}
.campaign-page-main .selectedCampaign{ display: none; }
.campaign-page-main .section-category-titlebar h2 span{color: #696B79; font-family: Roboto; font-size: 13px; line-height: 15px; display: block; margin-top: 12px;}
.section-category-titlebar{ margin-bottom: 30px;}
.section-category-titlebar h2{float: left; color: #1B1B1B; font-family: 'Rubik', sans-serif;; text-transform: uppercase; font-size: 22px; line-height: 25px; margin-top: 5px;}
.section-category-titlebar .viewmore-btn{float: right;}
.product-section{ margin-bottom: 40px;}
.hidden {display: none!important;}
.d-block {display: block!important;}
.page-not-found-page{border-radius: 3px; background-color: #FFFFFF; padding:60px 20px 60px 20px; margin: 30px 0 50px 0;}
.page-not-found-main{text-align: center; width:530px; margin: 0 auto; }
.page-not-found-main h2{display: block; margin-bottom: 10px; margin-top: 10px; color: #282C3F; font-family: 'Rubik', sans-serif;; font-size: 40px; font-weight: bold; line-height: 47px; text-align: center;}
.page-not-found-main span{display: block; color: #696B79; font-size: 13px; line-height: 15px; text-align: center;}
.page-not-found-main .btn{ margin-top: 30px;}
@media screen and (max-width:767px){
.section-category-titlebar h2{font-size: 16px; line-height: 20px;}
.section-category-titlebar{ margin-bottom: 10px;}
.product-section{ margin-bottom: 15px;}
.campaign-page-main .section-category-titlebar h2 span{margin-top: 5px;}
.page-not-found-main {width: 100%;}
} | src/styles/content-editor.css | border: 1px solid #DBDBDB;
background-color: #00B86B;
padding: 10px 30px 8px 30px;
text-transform: uppercase;
font-family: 'Rubik', sans-serif;
text-align: center;
font-size: 14px;
font-weight: 500;
line-height: 16px;
border-radius: 21.5px;}
#_ht-container.RO-HT-templates .btn:hover{background-color: #009f5c;}
#ROtemplateZone {
z-index: 100000;
width: 244px;
float: right;
margin-left: 20px;
position: fixed;
right: 0px;
top: 90px;
height: 850px;
overflow-y: scroll;
background: #3A3F51;
padding: 10px;
border: 1px solid
#57595F;
border-top: 0px;
bottom:0px;
}
.ROslideArrow {
z-index: 100000;
width:36px;
padding: 12px 13px;
background: #3A3F51;
font:400 18px Arial, Helvetica, sans-serif;
color:white;
text-decoration:none;
position:fixed;
top:90px;
right:244px;
border: 1px solid #57595F;
border-right: 0px;
}
#ROcategory-container{
z-index: 100000;
width:244px;
padding: 6px 10px;
background: #3A3F51;
font:400 12px Arial, Helvetica, sans-serif;
position:fixed;
top:43px;
right:0px;
border: 1px solid #57595F;
border-bottom:0px;
border-right: 0px;
}
#ROcategory-container select{
margin-bottom:0px;
}
/*.fr-toolbar{ !**TODO Apply this with some smoothination Not working well for now **!*/
/*margin-top: -41px !important;*/
/*}*/
/*.fr-tooltip{*/
/*margin-top:-41px !important;*/
/*}*/
/*.fr-popup{*/
/*margin-top: -82px !important;*/
/*}*/
.ROtemplateContainer.ui-sortable-helper { padding-left: 35px;/*max-height: 150px !important;*/overflow-y: hidden;}
#_ht-container .ROtemplateContainer.ui-sortable-helper .ROhandlers{ left: 0;}
_:-ms-fullscreen, :root #ROtemplateZone , _:-ms-fullscreen, :root #ROcategory-container { right:19px; }
_:-ms-fullscreen, :root .ROslideArrow { right:262px; }
.ROtemplateContainer {
position: relative;
padding-left: 0;
margin-bottom: 20px;
padding: 10px 0;
word-break: break-word;
}
#_ht-container .ToolOpen{ position: absolute; top: 20%; left:0;}
.ROtemplateZone_main{ position: relative; float: right; width: 300px;}
#_ht-container .ROplaceHolder { height: auto; background: #d9d9d9; }
#_ht-container .ROtemplateContainer .ROhandlers{
color: hsla(0, 0%, 78%, 0.8);
display: none;
font-size: 15px;
left: -24px;
position: absolute;
top: 0;
width: 30px;
z-index: 2;
}
#_ht-container .ROemptyPlaceHolder{
min-height: 100px;
padding: 20px;
color: #999999;
font-size: 1.5em;
border: 2px solid #999;
}
/*#_ht-container .ROtemplateContainer:hover{outline: rgba(228, 156, 90, 0.5) solid 1px; }*/
#_ht-container .ROtemplateContainer:hover .ROhandlers,#_ht-container .ROtemplateContainer.ui-sortable-helper .ROhandlers{ display:block !important; }
.ROcontent_main{ margin: 0 auto; width: 810px;}
.ROtemplate{
cursor: pointer;
margin-bottom: 10px; background: #d9d9d9; padding:5px; text-align: center; border: 1px solid #d9d9d9;
}
.ROtemplate img{
/*height: 100%;*/
width: auto;
/*max-width: 1000px;*/
}
.ROtemplate:hover{ border: solid 1px #888;}
#_ht-container .ROtemplateContainer .ROhandlers .ROmover,
#_ht-container .ROtemplateContainer .ROhandlers .ROcloner,
#_ht-container .ROtemplateContainer .ROhandlers .ROyouTubeHandler,
#_ht-container .ROtemplateContainer .ROhandlers .ROEditHTML,
#_ht-container .ROtemplateContainer .ROhandlers .ROEditImageLink,
#_ht-container .ROtemplateContainer .ROhandlers .ROEditImage,
#_ht-container .ROtemplateContainer .ROhandlers .ROEditVideo,
#_ht-container .ROtemplateContainer .ROhandlers .ROremover{
border:0px solid white;
padding:0px;
color: white;
cursor: pointer;
height: 30px;
line-height: 30px;
text-align: center;
width: 30px;
}
.ROhandlers button:last-child{
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.ROtemplateContainer .ROhandlers .ROmover{
background-color: hsl(69, 99%, 41%);
border-top-left-radius: 5px;
border-top-right-radius: 5px;
cursor: move;
}
#_ht-container .ROtemplateContainer .ROhandlers .ROremover{
background-color:#DD4D40;
}
#_ht-container .ROtemplateContainer .ROhandlers .ROcloner { background-color: hsl(0, 0%, 30%); }
#_ht-container .ROtemplateContainer .ROhandlers .ROEditHTML { background: #009688; }
#_ht-container .ROtemplateContainer .ROhandlers .ROEditImage { background: #9C27B0;}
#_ht-container .ROtemplateContainer .ROhandlers .ROEditImageLink { background: #795548; }
#_ht-container .ROtemplateContainer .ROhandlers .ROyouTubeHandler { background: rgb(0, 172, 214); }
#_ht-container .ROtemplateContainer .ROhandlers .ROEditVideo { background: #337AB7;}
.ROEditor_btns .btn,#fancyConfirm_cancel{
background: #337AB7;
text-transform: none;
font-family: sans-serif;
font-weight: normal;
font-size: 1em;
padding: 5px 13px;
margin-top: 5px;
border-radius: 3px;
border: 1px solid #275781;
}
.ROEditor_btns .btn:focus , #fancyConfirm_cancel:focus , .ROEditor_btns .btn:active,#fancyConfirm_cancel:active ,.ROEditor_btns .btn:hover,#fancyConfirm_cancel:hover {
background: #286396;
border:1px solid #275781;
}
.ROEditor_btns .btn:nth-of-type(1){
margin-right: 10px;
}
#_ht-container .ROtemplateContainer .ROimageContainer{display: block; position: relative;text-align: center}
.ROslideArrow{ cursor: pointer;}
.RObtns_main{ width: 100%; display: block;}
.ROimageHandler{ margin: 10px 0;z-index:10;}
.ROimageHandler .btn { margin: 0 5px; background-color: rgba(255, 0, 0, 0.3); color: #fff;}
.ROimageHandler .btn:hover{background-color: rgba(76, 76, 76,1);}
.ROyoutubeContainer:hover .ROyouTubeHandler{ display: inline-block;}
.ROyouTubeHandler .btn{ position: absolute; top: 56px; left:28px; background-color: rgba(255, 0, 0, 0.3); color: #fff; display: none;}
.ROyouTubeHandler .btn:hover ,.ROyouTubeHandler .btn:active { background-color: rgba(255, 0, 0, 0.5) !important;}
.ROimageHandler .btn:hover{ background-color: rgba(76, 76, 76,1);}
.fancybox-wrap .ROyouTubeEditor .RO-popup-message, .fancybox-wrap .ROimageEditor .RO-popup-message {
color: red;
padding-left: 130px;
margin-top: -9px;
}
.fancybox-wrap .ROimageEditor .ROimgSmartKeyCustomTextNote {
/*color: red;*/
padding-left: 130px;
margin-top: -9px;
margin-bottom: 10px;
}
.fancybox-wrap .ROyouTubeEditor .RO-popup-message {
padding-left: 40px;
}
.fancybox-wrap .ROyouTubeEditor .ROEditor_btns {
margin-left: 38px;
}
.ROyouTubeEditor {
height: 76px;
}
.ROyouTubeEditor.ROtwoVideos{
height: 153px;
}
.ROimageEditor {
height: 218px;
}
.ROimageEditor.ROFormSelect{
height: 98px;
}
.ROimageEditor.ROFormSelect select{ width: 200px;padding: 6px 2px;display: inline-block;}
.ROimageEditor.ROCampaignSelect{
height: 98px;
}
.ROimageEditor.ROCampaignSelect select.campaign{ width: 200px;padding: 6px 2px;display: inline-block;}
.ROimageEditor.ROLinkEditor {height: 179px;}
.ROimageEditor.ROLinkEditor.ROPageEditor {height: 93px;}
.ROHtmlEditor.ROHtmlEditor {
height: 300px;
width: 650px;
}
.fancybox-wrap .ROimageEditor lable,.fancybox-wrap .ROyouTubeEditor lable{ display: inline-block; width: 130px; margin-bottom: 10px;}
.fancybox-wrap .ROimageEditor input,.fancybox-wrap .ROyouTubeEditor input { display: inline-block; width: 200px; margin-bottom: 10px; padding: 0 5px;}
.fancybox-wrap .ROimageEditor select{display: inline-block;width: 200px;}
.fancybox-wrap .ROyouTubeEditor input {
width: 290px;
}
.fancybox-wrap .ROyouTubeEditor lable {
width: 35px;
}
.fancybox-wrap .ROyouTubeEditor.ROtwoVideos lable {
width: 38px;
}
.ROyouTubeEditor.ROtwoVideos .right{
margin-top:7px;
}
.ROJavascriptEditor {
height: 380px;
width: 650px;
}
.ROHtmlEditor.ROHtmlEditor lable {
width: 64px;
}
.ROHtmlEditor.ROHtmlEditor textarea {
width: 586px;
height: 250px;
resize: none;
}
.fancybox-wrap .ROJavascriptEditor lable{
width: 64px;
}
.fancybox-wrap .ROJavascriptEditor .ROEditor_btns {
margin-left: 64px;
margin-top: 15px;
}
.ROJavascriptEditor textarea {
width: 586px;
height: 250px;
resize: none;
}
.ROJavascriptEditor-text { width: 586px;
display: inline-block;
margin-left: 64px;
margin-top: 15px;
font-size: 12px;
color: red;
font-weight: bold;}
.ROHtmlEditor.ROHtmlEditor .ROEditor_btns {
margin-left: 64px;
margin-top: 15px;
}
.fancybox-wrap .ROimageEditor input[type="checkbox"],.fancybox-wrap .ROyouTubeEditor input[type="checkbox"]{ width: 20px;}
.ROEditor_btns{ margin-left: 130px;}
.ROimageHandler{ position: absolute; top:41%; left: 45%; margin: 0;}
.ROFormHandler.ROimageHandler{left:45%;top:36%}
.ROfull-image-btn .ROimageHandler{left: 46%; top:45%;}
.ROeditMode .ROFormContainer{height: 100px;width: 100%;background: gray;text-align: center;color:white;padding-top:40px}
.ROeditMode .ROFormContainer h4{margin-top:0px}
.ROeditMode .ROJavascriptContainer{height: 100px;width: 100%;background: gray;text-align: center;color:white;padding-top:40px}
.ROeditMode .ROJavascriptContainer span{margin-top:0px}
.ROtemplateContainer .ROJavascriptContainer .placeholder {display: none;}
.ROeditMode .ROtemplateContainer .ROJavascriptContainer .placeholder {display: block;}
.ROtemplateContainer hr{ border-bottom: solid 1px #ccc; border-top: none; margin-top: 20px; margin-bottom: 20px;}
.ROtemplateContainer a::selection, .ROtemplateContainer a , .ROtemplateContainer a:hover,.ROtemplateContainer a:active,.ROtemplateContainer a:focus {color:#169c6e;text-decoration:none;}
/*full_description*/
.ROtemplateContainer.ROfull_description .ROeditable{ width: 100%; padding:0; margin: 0;}
/*fulltitle_description*/
.ROtemplateContainer.ROfulltitle_description .ROeditable{ width: 100%; padding:0; margin: 0;}
.ROtemplateContainer.ROfulltitle_description .ROeditable h1{ text-transform: uppercase; font-weight: bold;}
/*fulltitleh1_description*/
.ROtemplateContainer.ROfulltitleh1_description .ROeditable{ width: 100%; padding:0; margin: 0;}
.ROtemplateContainer.ROfulltitleh1_description .ROeditable h1{ text-transform: none;}
/*fulltitleh2_description*/
.ROtemplateContainer.ROfulltitleh2_description .ROeditable{ width: 100%; padding:0; margin: 0;}
.ROtemplateContainer.ROfulltitleh2_description .ROeditable h2{ text-transform: none;}
/*ROfullbr_description*/
.ROtemplateContainer.ROfullbr_description .RObr_Container{ width: 100%; padding:0; margin: 0;}
/*ROfullhr_description*/
.ROtemplateContainer.ROfullhr_description{ margin-bottom: 0;}
.ROtemplateContainer.ROfullhr_description .ROhr_Container{ width: 100%; padding:0; margin: 0;}
.ROtemplateContainer.ROfullhr_description .ROhr_Container hr{ border-bottom: solid 1px #ccc; border-top: none; margin-top: 20px; margin-bottom: 20px;}
/*logo_image*/
/*.ROtemplateContainer.ROlogo_image_description .ROeditable{ width: 49%; padding-left:1%;}*/
.ROtemplateContainer.ROlogo_image_description .ROeditable h2{ margin-top: 20px;}
.ROtemplateContainer.ROlogo_image_description .ROimage{ width:100%;margin-top:20px;}
/*left_image_description*/
.ROtemplateContainer.ROleft_image_description .ROeditable{ float: left; width: 49%; padding-left:1%;}
.ROtemplateContainer.ROleft_image_description .ROeditable h2{ padding-top: 0; margin-top: 0;}
.ROtemplateContainer.ROleft_image_description .ROimage{ float: left; width:49%; padding-right: 1%; }
.ROtemplateContainer.ROleft_image_description .ROimage .ROimageHandler{ left: 41%;}
/*right_image_description*/
.ROtemplateContainer.ROright_image_description .ROeditable{ float: left; width: 49%; padding-right:1%;}
.ROtemplateContainer.ROright_image_description .ROeditable h2{ padding-top: 0; margin-top: 0;}
.ROtemplateContainer.ROright_image_description .ROimage{ float: left; width:49%; padding-left: 1%; }
/*left_video_description*/
.ROtemplateContainer.ROleft_video_description .ROleft_video{ float: left; width: 48%; padding-right: 0;}
.ROtemplateContainer.ROleft_video_description .ROright_description{ float: right; width: 48%; padding-left: 0;}
/*right_video_description*/
.ROtemplateContainer.ROright_video_description .ROleft_description{ float: left; width: 48%; padding-right:0;}
.ROtemplateContainer.ROright_video_description .ROright_video{ float: right; width: 48%; padding-left: 0; }
/*two_column_content*/
.ROtemplateContainer.ROtwo_column_content .ROcolumn_one{ float: left; width: 49%; padding: 0 1% 0 0; }
.ROtemplateContainer.ROtwo_column_content .ROcolumn_two{ float: left; width: 49%; padding: 0 0 0 1%;}
/*three_column_content*/
.ROtemplateContainer.ROthree_column_content .ROcolumn_one{ float: left; width: 33.33%; padding: 0 1% 0 0; }
.ROtemplateContainer.ROthree_column_content .ROcolumn_two{ float: left; width: 33.33%; padding: 0 1%;}
.ROtemplateContainer.ROthree_column_content .ROcolumn_three{ float: left; width: 33.33%; padding: 0 0 0 1%;}
/*two_column_image_description*/
.ROtemplateContainer.ROtwo_column_image_description .ROcolumn_one{ float: left; width: 49%; padding-right: 1%;}
.ROtemplateContainer.ROtwo_column_image_description .ROcolumn_two{ float: left; width: 49%; padding-left: 1%; padding-right: 0; }
.ROtemplateContainer.ROtwo_column_image_description .ROtop_image{ margin-bottom: 10px; width: 100%;}
.ROtemplateContainer.ROtwo_column_image_description .ROtop_image img{ padding: 0; margin: 0;}
/*three_column_image_description*/
.ROtemplateContainer.ROthree_column_image_description .ROcolumn_one{ float: left; width: 33.33%; padding: 0 1%; }
.ROtemplateContainer.ROthree_column_image_description .ROcolumn_two{ float: left; width: 33.33%; padding: 0 1%; }
.ROtemplateContainer.ROthree_column_image_description .ROcolumn_three{ float: left; width: 33.33%; padding: 0 1%; }
.ROtemplateContainer.ROthree_column_image_description .ROtop_image{ margin-bottom: 10px; width: 100%;}
.ROtemplateContainer.ROthree_column_image_description .ROtop_image img{ padding: 0; margin: 0;}
/*full_image_caption*/
.ROtemplateContainer.ROfull_image_caption{ position: relative; text-align: center; padding: 10px;}
.ROtemplateContainer.ROfull_image_caption .ROimage_caption{ position: absolute; top: 35%; z-index: 5; padding: 0 5%;}
.ROtemplateContainer.ROfull_image_caption .ROeditable{ width: 100%; }
.ROtemplateContainer.ROfull_image_caption .ROeditable h1{ color: #fff;}
.ROtemplateContainer.ROfull_image_caption .ROeditable p{ color: #fff;}
/*ROfull_testimonials*/
.ROfull_testimonials .fa-quote-left{ padding-right: 10px; }
.ROfull_testimonials .fa-quote-right{ padding-left: 10px;}
.ROfull_testimonials .fa-quote-left,.ROfull_testimonials .fa-quote-right{ color:#ccc; font-size: 25px;}
.ROtop-header{margin-top: -50px;border-bottom: 1px solid gray; text-align: center;}
.ROeditable p { word-wrap: break-word;}
.ROeditable table td,.ROeditable table th {border: 1px solid #ddd;}
.ROeditable table td.fr-highlighted, .ROeditable table th.fr-highlighted {
border: 1px double red;
}
.ROeditable table td.fr-thick, .ROeditable table th.fr-thick {
border-width: 2px;
}
.ROeditable table.fr-alternate-rows tbody tr:nth-child(2n){
background: #f5f5f5;
}
.editor-header-present{
margin-top:43px;
}
.editor-header {
width: 100%;
height: 43px;
position: fixed;
top: 0px;
z-index: 110000;
background: #3A3F51;
color:white;
border-bottom: 1px solid #57595F;
}
.editor-header .pageName{
font-size: 1.8em;
display: inline-block;
padding-top: 3px;
text-transform: uppercase;
width: 45%;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.editor-header .btn{
background: #337AB7;
text-transform: none;
font-family: sans-serif;
font-weight: normal;
font-size: 1em;
padding: 5px 13px;
margin-top: 5px;
border-radius: 3px;
border: 1px solid #2C5D88;
}
.editor-header .btn:focus , .editor-header .btn:active ,.editor-header .btn:hover{
background: #286396;
}
.editor-header .btn.btn-primary{background: #337ab7; border-color: #337ab7;}
.editor-header .btn.save-btn{background: #337ab7; border-color: #337ab7;}
.editor-header .btn.cancel-btn{background: #d9534f; border-color: #D9534D;}
.header-footer-overlay{
height: 100%;
background: #000000;
opacity: 0.2;
z-index: 100000;
position: absolute;
width: 100%;
top: 0px;
}
header,footer,.menusidebar > div{
position: relative;
}
/*TODO add parent class*/
.treeview ul{
display: none;
}
.ROright_video_description .ROyouTubeHandler .btn{ left: inherit; right: 28px;}
.ROwhats-hot-section{ background:#f6f6f6; text-align: center; padding: 35px 0 35px 0;}
.ROwhats-hot-section h2{ color: #f07474; background:#f6f6f6 ; font-size: 24px; font-family: 'Oswald', sans-serif; font-weight: normal; text-transform: uppercase; text-align: center; position: relative; display: inline-block; margin:50px 0 0 0; padding: 0;}
.ROwhats-hot-section h2:after{ border-top: solid 2px #e5e5e5; content: ""; position: absolute; right: 140px; top: 12px; width: 40px;}
.ROwhats-hot-section h2:before{ border-top: solid 2px #e5e5e5; content: ""; position: absolute; left: 140px; top: 12px; width: 40px;}
.ROwhats-hot-section ul{padding: 0; margin: 50px 0 0 -30px;}
.ROwhats-hot-section ul li{padding: 20px; margin:0 0 20px 15px ; display: inline-block; text-align: center; border-radius: 2px; background-color: rgb(255, 255, 255); box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.08); font-size: 0; width: 381px; vertical-align: top;}
.ROwhats-hot-section ul li h3{ font-size: 24px; font-family: 'Oswald', sans-serif; font-weight: normal; text-transform: uppercase; padding: 0; margin: 0 0 10px 0; }
.ROwhats-hot-section ul li p{ color: #959595; font-family: 'Open Sans', sans-serif; font-weight: 300; font-size: 14px;}
.ROwhats-hot-section ul li a:hover,.ROwhats-hot-section ul li a:focus{text-decoration: none;}
.ROwhats-hot-section ul li.shopping-new h3{ color:#169c6e;}
.ROwhats-hot-section ul li.weekly-new h3{ color:#0fa5d6;}
.ROwhats-hot-section ul li.e-vic-new h3{ color:#ee6072;}
.ROwhats-hot-section ul li.order-new h3{ color:#ffa415;}
.ROwhats-hot-section ul li.education-new h3{ color:#7dbd43;}
.ROwhats-hot-section ul li.pharmacy-new h3{ color:#a076cb;}
.ROwhats-hot-section ul li .whats-hot-image{ display:block; margin: 5px 0 0 0;}
.ROwhats-hot-section .whats-hot-navigation .next3{background:url('/assets/images/whats-hot-navigation.png') right top no-repeat; width: 13px; height:25px; display: inline-block;margin-left: 20px; cursor: pointer; }
.ROwhats-hot-section .whats-hot-navigation .next3:hover{ background-position: right -30px;}
.ROwhats-hot-section .whats-hot-navigation .previous3{background:url('/assets/images/whats-hot-navigation.png') left top no-repeat; width: 13px; height:25px; display: inline-block; cursor: pointer; }
.ROwhats-hot-section .whats-hot-navigation .previous3:hover{ background-position: left -30px; }
.ROsearchbox {float: none; text-align: center; width: 468px; margin: 0 auto; }
.ROsearchbox h2{ color: #000; font-size: 36px; font-family: 'Rubik', sans-serif; font-weight: 300; margin-top: 0; margin-bottom: 20px;}
.ROsearchbox .btn i{ font-size: 27px; color:#666666; font-weight: bold;}
.ROsearchbox .btn:hover i{ color: #fff;}
.ROsearchbox .btn:hover{background: #fff; }
.ROsearchbox .btn:hover i{color: #149267;}
.ROsearchbox .btn{ background: #fff; height: 57px; width: 50px; border-radius: 0; padding: 0; border-style: solid; border-width: 4px; border-color: rgb(54, 52,52); border-left:none;}
.ROsearchbox #custom-search-input input { border-radius: 0; border-style: solid; border-width: 4px; border-color: rgb(54, 52,52); border-right: none; background-color: rgb(255, 255, 255); height: 57px; font-size: 14px; color: #888888; font-family: 'Rubik', sans-serif;}
/*.ROeditable a{color:#169C6E;text-decoration: none;}
.ROeditable a:hover,.ROeditable a:focus{color:#169C6E;text-decoration: underline;}*/
.ROfleft{float: left;}
.ROfright{float: right;}
.ROtwo_image .ROimage{ width: 49%;}
.ROtwo_image .ROimage.ROimage-left{ float: left;}
.ROtwo_image .ROimage.ROimage-right{ float: right;}
.ROthree-image-main {
margin-left: -1%;
}
.ROthree-image-main .ROimage {
float: left;
width: 32.3%;
margin-left: 1%;
}
.ROthree-image-main .ROimageHandler{left: 40%;}
.ROsigle_image300 .ROimage-300 img{ max-height: 300px;}
.ROsigle_image500 .ROimage-500 img{ max-height: 500px;}
.ROcontent-image-50-50 .btn{ color: #fff; margin-top: 20px;}
.ROcontent-image-50-50 .btn:hover{ color: #fff; text-decoration: none;}
.ROcontent-image-50-50 .ROeditable{width: 49%;}
.ROcontent-image-50-50 .ROimage{width: 49%;}
.ROimage-content-50-50 .btn{ color: #fff; margin-top: 20px;}
.ROimage-content-50-50 .btn:hover{color: #fff; text-decoration: none;}
.ROeditable .btn{
color: #fff !important;
margin-top: 20px;
text-decoration: none !important;
}
.ROeditable .btn:hover,.ROeditable .btn:active,.ROeditable .btn:focus{ color: #fff;}
.ROimage-content-50-50 .ROeditable{width: 49%;}
.ROimage-content-50-50 .ROimage{width: 49%;}
.ROimage-content-50-50 .ROimageHandler{ left: 40%;}
/*common button style*/
/*button.btn, html input[type="button"].btn , input[type="reset"].btn , input[type="submit"].btn , .btn, a.btn{ background: #169c6e; font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 14px; color: #fff; line-height: 20px; padding: 6px 12px; text-transform: uppercase; -webkit-border-radius: 0px; border-radius: 0px; }
button.btn:hover, html input[type="button"].btn:hover , input[type="reset"].btn:hover, input[type="submit"].btn:hover, .btn:hover, a.btn:hover{background: #169c6e; color: #fff; text-decoration: none;}
.touch .button.btn:hover, html.touch input.btn[type="button"]:hover,.touch input.btn[type="reset"]:hover,.touch input.btn[type="submit"]:hover,.touch .btn:hover{background: #169c6e; color: #fff !important;}
.btn:focus, .btn.focus{background: #169c6e; color: #fff;}
.btn.green{background: #169c6e;}
.btn.green:hover{background: #ee3a43;}
.btn.grey{background: #666;}
.btn.grey:hover{background: #ee3a43;}
.btn.ghost{background:transparent; color: #169c6e; border: solid 1px #169c6e; }
.btn.ghost:hover{background:transparent; color: #169c6e !important;}*/
/*.btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.btn-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .dropdown-toggle.btn-info:focus, .btn-info.focus:active, .btn-info.active.focus, .open > .dropdown-toggle.btn-info.focus { border: inherit; box-shadow: none;}*/
.ROcontent-image-30-70 .ROeditable{width: 28%;}
.ROcontent-image-30-70 .ROimage{width: 68%;}
.ROcontent-image-30-70 .ROeditable .btn{ color: #fff; margin-top: 20px; }
.ROcontent-image-30-70 .ROeditable .btn:hover{color: #fff; text-decoration: none;}
.ROcontent-image-70-30 .ROeditable{width: 68%;}
.ROcontent-image-70-30 .ROimage{width: 28%;}
.ROcontent-image-70-30 .ROeditable .btn{ color: #fff; margin-top: 20px; }
.ROcontent-image-70-30 .ROeditable .btn:hover{color: #fff; text-decoration: none;}
.ROcontent-image-70-30 .ROimageHandler{left: 39%;}
.ROimage-content-30-70 .ROeditable{width: 68%;}
.ROimage-content-30-70 .ROimage{width:28%;}
.ROimage-content-30-70 .ROeditable .btn{ color: #fff; margin-top: 20px; }
.ROimage-content-30-70 .ROeditable .btn:hover{color: #fff; text-decoration: none;}
.ROimage-content-30-70 .ROeditable h2{ margin-top: 0;}
.ROimage-content-30-70 .ROimageHandler{left: 39%;}
.ROimage-content-70-30 .ROeditable{width: 28%;}
.ROimage-content-70-30 .ROimage{width: 68%;}
.ROimage-content-70-30 .ROeditable .btn{ color: #fff; margin-top: 20px; }
.ROimage-content-70-30 .ROeditable .btn:hover{color: #fff; text-decoration: none;}
.ROfull-image-btn{ text-align: center; margin-bottom: 0; padding-bottom: 0;}
.ROfull-content-btn{ text-align: center;}
.ROleft_testimonials .ROfleft{ width: 68%;}
.ROleft_testimonials .ROfright{ width: 28%;}
.ROright_testimonials .ROfleft{ width: 68%;}
.ROright_testimonials .ROfright{ width: 28%;}
/*chnages by pintu patel */
.ROtwoimage-sidecaption .ROfleft, .ROtwoimage-bottomcaption .ROfleft, .two-col-text .ROfleft {
width: 49%;
padding-right: 1%;
}
.ROtwoimage-sidecaption .ROfright, .ROtwoimage-bottomcaption .ROfright, .two-col-text .ROfright {
width: 49%;
padding-left: 1%;
}
.ROtwoimage-sidecaption .ROimage {
float: left;
width: 49%;
padding-right: 1%;
}
.ROtwoimage-sidecaption .ROeditable {
float: right;
width: 49%;
padding-left: 1%;
}
.ROtwoimage-sidecaption .ROimageHandler{ left: 33%;}
.ROtwoimage-bottomcaption .ROimage, .ROthreeimage-bottomcaption .ROimage {
padding-bottom: 2%;
margin-top: 0px;
}
.ROthreeimage-bottomcaption{ margin-left: -1%;}
.ROtwoimage-bottomcaption .ROimage .ROimageHandler, .ROthreeimage-bottomcaption .ROimage .ROimageHandler{ left: 41%;}
.ROthreeimage-bottomcaption .ROthreecol, .three-col-text .ROthreecol {
width: 32.3%;
float: left;
margin-left: 1%;
}
/*.ROthreeimage-bottomcaption .col1, .ROthreeimage-bottomcaption .col2 {
padding-right: 1%;
}*/
/*.ROthreeimage-bottomcaption .col3 {
padding-left: 1%;
}*/
.three-col-text .col1, .three-col-text .col2 {
padding-right: 2%;
}
.bold {
font-weight: bolder;
}
.two-col-text h2, .three-col-text h2 {
font-size: 36px;
}
.three-col-text-img h1 {
text-align: center;
}
.three-col-text-img h2 {
font-size: 30px;
}
/* .three-col-text-img img {
border-radius: 50%;
} */
.ROtemplateContainer.ROfulltitleh2_description .col1 {
width: 33.3%;
padding-right: 2%;
float: left;
}
.ROtemplateContainer.ROfulltitleh2_description .col2 {
width: 66.7%;
float: left;
}
.mtop0 {
margin-top: 0px;
}
.mtopbt15 {
margin-bottom: 15px;
margin-top: 15px;
}
.fr-dashed-borders td, .fr-dashed-borders th {
border-style: dashed;
}
.content-editor-media-popup .hovereffect{
float:none;
}
.ROeditable table {
margin-bottom: 10px;
}
.ROfulltitleh2_description .ROimageHandler{ left: 44%; top: 45%;}
.ROtemplateContainer ul li{ list-style-position: inside;}
.whats-hot-section.content-editor-home-tile ul li .whats-hot-image {
position: relative;
}
.whats-hot-section.content-editor-home-tile ul li {
width: 330px;
}
.ROeditable .table-responsive table td, .ROeditable .table-responsive table th{ word-break: normal; word-wrap: normal;}
.ROyoutubeContainer{ overflow: hidden;}
.ROeditable .responsive-table-test th{ background: #ccc; color: #000;}
.ROeditable .responsive-table-test th,.ROeditable .responsive-table-test td{ padding: 5px;}
.ROfulltitleh2_description2 .ROimage{ float: right; padding:10px 0 10px 10px; width: 500px;}
.ROfulltitleh2_description2 h2,.ROfulltitleh2_description2 h3{ font-weight:normal}
.ROeditMode .ROremoveImageButton { display: none; margin: 4px 5px 0px 5px !important;}
.ROeditMode .ROshowClearImageButton .ROremoveImageButton { display: inline-block;}
.ROeditMode .ROshowClearImageButton .ROimageContainer img[src=''] { display: block; height: 317px;}
.ROMediaAlert .ROmover{border-radius: 5px;}
.ROMediaAlert table th,.ROMediaAlert table tr{background:none;}
#_ht-container > .ROMediaAlert > .RODisalbedWrapper ,
#_ht-container .RODisabled .RODisalbedWrapper {
z-index: 10;
position: absolute;
height: 100%;
width: 100%;
top: 0px;
background: rgba(0,0,0,0.2);
}
/** IF the container is selected as a container fluid then set the template
container css same as container css of bootstrap to match the other template pages **/
/** We need to set the container fluid because in the career pages we need some templates with full width **/
#_ht-container.container-fluid .ROtemplateContainer,#_ht-container.container-fluid .ROtemplateContainerInner {
width: 1200px;
margin: 0 auto;
}
#_ht-container.container-fluid .ROtemplateContainer ,#_ht-container.container-fluid .ROtemplateContainerInner{
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media only screen and (max-width: 1169px) {
#_ht-container.container-fluid .ROtemplateContainer ,#_ht-container.container-fluid .ROtemplateContainerInner{
width: 1024px;
}
}
@media only screen and (max-width: 1025px) {
#_ht-container.container-fluid .ROtemplateContainer,#_ht-container.container-fluid .ROtemplateContainerInner {
padding-left: 7.5px;
padding-right: 7.5px;
}
}
@media only screen and (max-width: 1023px) {
#_ht-container.container-fluid .ROtemplateContainer,#_ht-container.container-fluid .ROtemplateContainerInner {
padding-left: 7.5px;
padding-right: 7.5px;
}
}
@media only screen and (max-width: 1023px) {
#_ht-container.container-fluid .ROtemplateContainer ,#_ht-container.container-fluid .ROtemplateContainerInner{
width: 768px;
}
}
@media only screen and (max-width: 767px) {
#_ht-container.container-fluid .ROtemplateContainer,#_ht-container.container-fluid .ROtemplateContainerInner {
width: 100%;
}
}
#_ht-container.container-fluid{padding:0px;}/*remove padding to set the full width banner*/
#_ht-container.container-fluid .ROtemplateContainer.ROFullTemplate {width: 100%;padding:0px;}
#_ht-container.container-fluid .ROtemplateContainer.ROFullTemplate .ROhandlers{left:0px;}
#_ht-container.container-fluid .ROtemplateContainer.ROFullTemplate.ROFullTemplateWithImage .ROhandlers .ROEditImage,
#_ht-container.container-fluid .ROtemplateContainer.ROFullTemplate.ROFullTemplateWithImage .ROhandlers .ROEditImageLink{display:block !important;}
#_ht-container.container-fluid .ROtemplateContainer.ROFullTemplate .ROCenterText{left:0px;}
#_ht-container .ROtemplateContainer.ROFullTemplate .ROimageHandler{display:none;}
.ROtemplateContainer .ROContentCenter{position: absolute;color: white;width: 100%;text-align:center;top:50%;transform: translateY(-50%);-ms-transform: translateY(-50%);-webkit-transform: translateY(-50%);-moz-transform: translateY(-50%);-o-transform: translateY(-50%);}
.ROtemplateContainer.ROCanNotDelete .ROhandlers .ROremover,
.ROtemplateContainer.ROCanNotDelete .ROhandlers .ROcloner,
.ROtemplateContainer.ROCanNotDeleteOREdit .ROhandlers .ROremover,
.ROtemplateContainer.ROCanNotDeleteOREdit .ROhandlers .ROcloner,
.ROtemplateContainer.ROCanNotDeleteOREdit .ROhandlers .ROEditHTML,
.careerlanding-video.ROtemplateContainer .ROcloner,
.careerlanding-video.ROtemplateContainer .ROEditImageLink
{display:none;}
.ROtemplateContainer.ROCanNotDelete .ROhandlers .ROEditHTML,
.ROtemplateContainer.ROCanNotDeleteOREdit .ROhandlers .ROmover
{border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;}
.ROeditMode #_ht-container.container-fluid.career-template .ROtemplateContainer:first-child{margin-top:-43px;}
#_ht-container.container-fluid.career-template {margin-bottom:-20px;}
#_ht-container .ROtemplateContainer.ROFullTemplateOnRight .ROimageContainer{position: absolute;}
.ROFaModel{padding:0px 6px; width: 900px; height: 545px; overflow-y: scroll;}
.ROFaModel .icon-container{float: left;width: 200px;padding-top: 10px;padding-bottom: 10px;padding-left: 43px;position: relative;margin-bottom: 6px;}
.ROFaModel .icon-container .fa{ font-size: 25px;cursor: pointer;text-align: center;position: absolute;left: 0px;}
.ROFaModel .icon-container span{display: inline-block;}
#_ht-container .ROFullTemplateWithImage .ROhandlers .ROEditHTML{display:none;}
#_ht-container .ROFullTemplateWithImage .ROhandlers .ROEditImageLink{border-bottom-left-radius:5px;border-bottom-right-radius:5px; }
#_ht-container .ROtemplateContainer .ROContentCenter {
padding: 0px 30px 0px 10px;
}
#_ht-container.container-fluid .ROtemplateContainer .ROContentCenter {
padding: 0px 10px 0px 10px;
}
.three-li-col{ padding: 0; margin: 0;}
.three-li-col li{ padding: 0; margin: 0 10px; float: left; width: 255px; }
.ROtemplateContainer .career-benefits-box h3 a {color: black !important;}
.career-donate-area.ROtemplateContainer .ROyouTubeHandler{display: block !important;}
.career-donate-area.ROtemplateContainer .ROmover{border-radius:5px 5px 0px 0px !important;}
.career-donate-area.ROtemplateContainer .ROyouTubeHandler{border-bottom-left-radius:5px;border-bottom-right-radius:5px;}
.careerlanding-video.ROtemplateContainer .ROEditVideo{display: block !important;}
.careerlanding-video.ROtemplateContainer .ROEditHTML {display: none !important;}
.careerlanding-video.ROtemplateContainer .ROEditImage{display: block !important;}
#_ht-container .ROtemplateContainer.careerlanding-video .ROhandlers { z-index: 99999;}
#_ht-container .ROtwo_image.ROthankyou-page .ROimage.ROimage-left .ROimageContainer {text-align: right;}
#_ht-container .ROtwo_image.ROthankyou-page .ROimage.ROimage-right .ROimageContainer {text-align: left;}
.color-type label{ display: inline-block; width: 130px; margin-bottom: 10px;}
.color-type input{border: 1px solid #e6d8c2; border-radius: 2px; -webkit-border-radius: 2px; margin-bottom: 15px; padding: 0;}
.color-type .ROEditor_btns{ text-align: center; margin-left: 0;}
.color-type .ROEditor_btns .btn{ margin-right: 0; }
.color-type .ROButtonColor{ margin-bottom: 10px;}
.color-type .sp-replacer{ border-color:#ccc;}
/*starts -- style for the image info line on images for pages*/
.image-breif-hidden{background-color: rgba(0, 0, 0, 0.4 ) !important; color: #DDDDDD; position: absolute; left: 31px; z-index: 99999; width:auto;
top: 0;display: none;}
.image-breif-hidden .image-breif-note{
color: #DDDDDD;top: 0; margin: 10px; left: 0; font-size: 18px;
}
.career-benefits-list .image-breif-hidden{background-color: rgba(0, 0, 0, 0.4 ) !important; color: #DDDDDD; position: absolute; left: 31px; z-index: 99999; width:auto;
top: 25px;display: none;}
.ROeditMode .image-breif-hidden { display: block !important;}
/*ends -- style for the image info line on images for pages*/
.ROeditMode .select2-container{
z-index:1000000;
}
/*for tie login cms page */
.ROtemplateContainer .tie-login .coordinators-infobox-main{ margin-top: 0; }
.ROtemplateContainer .tie-login .coordinators-infobox-main .coordinators-info-box{position: relative;}
.ROtemplateContainer .tie-login .coordinators-infobox-main .coordinators-info-box .RODisabled .RODisalbedWrapper{ left: 0;}
.ROtemplateContainer .tie-login .right-coordinators-form md-input-container,.ROtemplateContainer .tie-login .right-coordinators-form md-input-container input{ width: 100%;}
.tie-banner-image .image-breif-hidden {position: absolute; left:11px !important; top:10px !important;}
.top-floating-icon-hide { display:none;}
.ROimage a {
cursor: default;
}
.ROimage a[href^="http"] {
cursor: pointer;
}
.ROfull_youtube_video .ROyoutubeContainer {overflow: hidden; padding-top: 56.25%; position: relative;}
.ROfull_youtube_video .ROyoutubeContainer iframe {border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%; }
.ROright_video_description.ROleft_video_description .ROyoutubeContainer{overflow: hidden; padding-top:27.1%; position: relative;}
.ROright_video_description.ROleft_video_description .ROyoutubeContainer iframe {border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%; }
.ROleft_right_video_description .ROyoutubeContainer-vid{overflow: hidden; padding-top: 56.20%; position: relative;}
.ROleft_right_video_description .ROyoutubeContainer-vid iframe {border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%; }
.ROright_video_description.ROleft_video_description.ROleft_right_video_description .ROyoutubeContainer{ padding-top: 0; padding-right: 0; padding-left: 0;}
.ROleft_video_description_main .ROyoutubeContainer{overflow: hidden; padding-top:27.6%; position: relative;}
.ROleft_video_description_main .ROyoutubeContainer iframe {border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%;}
.ROright_video_description_main .ROyoutubeContainer{overflow: hidden; padding-top:27.6%; position: relative;}
.ROright_video_description_main .ROyoutubeContainer iframe {border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%;}
.campaign-page-main .product-section{ margin-bottom: 24px;}
.campaign-page-main .section-products ul li{padding-bottom: 20px;}
.campaign-page-main .selectedCampaign{ display: none; }
.campaign-page-main .section-category-titlebar h2 span{color: #696B79; font-family: Roboto; font-size: 13px; line-height: 15px; display: block; margin-top: 12px;}
.section-category-titlebar{ margin-bottom: 30px;}
.section-category-titlebar h2{float: left; color: #1B1B1B; font-family: 'Rubik', sans-serif;; text-transform: uppercase; font-size: 22px; line-height: 25px; margin-top: 5px;}
.section-category-titlebar .viewmore-btn{float: right;}
.product-section{ margin-bottom: 40px;}
.hidden {display: none!important;}
.d-block {display: block!important;}
.page-not-found-page{border-radius: 3px; background-color: #FFFFFF; padding:60px 20px 60px 20px; margin: 30px 0 50px 0;}
.page-not-found-main{text-align: center; width:530px; margin: 0 auto; }
.page-not-found-main h2{display: block; margin-bottom: 10px; margin-top: 10px; color: #282C3F; font-family: 'Rubik', sans-serif;; font-size: 40px; font-weight: bold; line-height: 47px; text-align: center;}
.page-not-found-main span{display: block; color: #696B79; font-size: 13px; line-height: 15px; text-align: center;}
.page-not-found-main .btn{ margin-top: 30px;}
@media screen and (max-width:767px){
.section-category-titlebar h2{font-size: 16px; line-height: 20px;}
.section-category-titlebar{ margin-bottom: 10px;}
.product-section{ margin-bottom: 15px;}
.campaign-page-main .section-category-titlebar h2 span{margin-top: 5px;}
.page-not-found-main {width: 100%;}
} | 0.182244 | 0.084833 |
@charset "gb2312";
.infos { width: 100%; background-color: rgba(255,255,255,0); overflow: hidden; margin-top: 20px; }
.newsview { padding: 20px }
.intitle { line-height: 40px; height: 40px; font-size: 14px; ; border-bottom: #000 2px solid; }
.intitle a { font-weight: normal; }
.news_title { font-size: 24px; font-weight: normal; padding: 20px 0; color: #f5fafd; }
.news_author { width: 100%; color: #f5fafd; line-height: 18px; }
.news_author span { margin-right: 10px; padding-left: 20px }
.au01 { background: url(../images/author2.png) no-repeat left center }
.au02 { background: url(../images/date.png) no-repeat left center }
.au03 b { color: #f5fafd; padding: 0 5px }
.au04 { font-weight: normal; }
.news_about { color: #F6F6F6; border: 1px solid #F3F3F3; padding: 10px; margin: 20px auto 15px auto; line-height: 23px; background: none repeat 0 0 rgba(246,246,246,0.5); }
.news_about strong { color: #38485A; font-weight: 400 !important; font-size: 13px; padding-right: 8px; }
.news_content { line-height: 24px; font-size: 14px; }
.news_content p { overflow: hidden; padding-bottom: 4px; padding-top: 6px; word-wrap: break-word; }
.tags a { background: #F4650E; padding: 3px 8px; margin: 0 5px 0 0; color: #fff; }
.tags { margin: 10px 0; }
.news_infos { line-height: 24px ; text-align: justify;}
.news_infos p { margin-bottom: 10px }
.news_infos img { max-width: 650px }
.share { padding: 20px; }
.nextinfo { line-height: 24px; width: 100%; background: #FFF; overflow: hidden; }
.nextinfo p { padding: 4px 10px; border-radius: 5px;color: #686868 }
.nextinfo a{ color: #000;}
.nextinfo a:hover { text-decoration: underline }
.otherlink, .xzsm, .ffsm { width: 100%; background: #FFF; overflow: hidden; }
.otherlink h2 { border-bottom: #000 2px solid; line-height: 40px; font-size: 14px; background: url(../images/5794.png) left 10px center no-repeat; padding-left: 40px; color: #000 }
.otherlink ul { margin: 10px 0; overflow:hidden; padding:0 20px }
.otherlink li { line-height: 24px; height: 24px; display: block; width: 40%; float:left; overflow: hidden; padding-left: 10px; background:url(../images/navline.jpg) no-repeat left center }
.otherlink li a{
color: #686868;
}
.otherlink li a:hover { text-decoration: underline; color: #000 }
.news_pl { margin: 10px 0; width: 100%; background: #FFF; overflow: hidden; margin: 20px 0 }
.news_pl h2 { background: url(../images/newsbg03.png) no-repeat left 10px center; border-bottom: #000 2px solid; line-height: 40px; font-size: 14px; padding-left: 30px; color: #000 }
.news_pl ul li{
padding-top: 30px;
padding-bottom: 10px;
border-bottom: 1px solid darkgray;
color: #686868;
font-size: 16px;
margin-left: 20px;
margin-right: 20px;
}
.news_pl ul li p:first-child{
height: 30px;
line-height: 30px;
margin-bottom: 15px;
}
.news_pl ul li p span:first-child{
float: left;
font-weight: bold;
font-size: 18px;
}
.news_pl ul li p span:last-child{
float: right;
}
.xzsm ul, .ffsm ul { padding: 20px; line-height: 24px; border-top: 6px solid #a6b5c5; }
.bt-blue { display: block; line-height: 40px; height: 40px; background: #1e8ec5; width: 100px; text-align: center; }
.bt-blue a { color: #fff }
#plpost{
margin: 10px 20px;
}
#plpost>p:first-child{
height: 30px;
line-height: 30px;
}
#plpost>p>span:first-child{
float: left;
font-size: 22px;
color: darkgray;
}
#plpost>p>span:last-child{
float: right;
font-size: 18px;
color: red;
}
#plpost p{
margin-bottom: 10px;
} | static/css/info.css | @charset "gb2312";
.infos { width: 100%; background-color: rgba(255,255,255,0); overflow: hidden; margin-top: 20px; }
.newsview { padding: 20px }
.intitle { line-height: 40px; height: 40px; font-size: 14px; ; border-bottom: #000 2px solid; }
.intitle a { font-weight: normal; }
.news_title { font-size: 24px; font-weight: normal; padding: 20px 0; color: #f5fafd; }
.news_author { width: 100%; color: #f5fafd; line-height: 18px; }
.news_author span { margin-right: 10px; padding-left: 20px }
.au01 { background: url(../images/author2.png) no-repeat left center }
.au02 { background: url(../images/date.png) no-repeat left center }
.au03 b { color: #f5fafd; padding: 0 5px }
.au04 { font-weight: normal; }
.news_about { color: #F6F6F6; border: 1px solid #F3F3F3; padding: 10px; margin: 20px auto 15px auto; line-height: 23px; background: none repeat 0 0 rgba(246,246,246,0.5); }
.news_about strong { color: #38485A; font-weight: 400 !important; font-size: 13px; padding-right: 8px; }
.news_content { line-height: 24px; font-size: 14px; }
.news_content p { overflow: hidden; padding-bottom: 4px; padding-top: 6px; word-wrap: break-word; }
.tags a { background: #F4650E; padding: 3px 8px; margin: 0 5px 0 0; color: #fff; }
.tags { margin: 10px 0; }
.news_infos { line-height: 24px ; text-align: justify;}
.news_infos p { margin-bottom: 10px }
.news_infos img { max-width: 650px }
.share { padding: 20px; }
.nextinfo { line-height: 24px; width: 100%; background: #FFF; overflow: hidden; }
.nextinfo p { padding: 4px 10px; border-radius: 5px;color: #686868 }
.nextinfo a{ color: #000;}
.nextinfo a:hover { text-decoration: underline }
.otherlink, .xzsm, .ffsm { width: 100%; background: #FFF; overflow: hidden; }
.otherlink h2 { border-bottom: #000 2px solid; line-height: 40px; font-size: 14px; background: url(../images/5794.png) left 10px center no-repeat; padding-left: 40px; color: #000 }
.otherlink ul { margin: 10px 0; overflow:hidden; padding:0 20px }
.otherlink li { line-height: 24px; height: 24px; display: block; width: 40%; float:left; overflow: hidden; padding-left: 10px; background:url(../images/navline.jpg) no-repeat left center }
.otherlink li a{
color: #686868;
}
.otherlink li a:hover { text-decoration: underline; color: #000 }
.news_pl { margin: 10px 0; width: 100%; background: #FFF; overflow: hidden; margin: 20px 0 }
.news_pl h2 { background: url(../images/newsbg03.png) no-repeat left 10px center; border-bottom: #000 2px solid; line-height: 40px; font-size: 14px; padding-left: 30px; color: #000 }
.news_pl ul li{
padding-top: 30px;
padding-bottom: 10px;
border-bottom: 1px solid darkgray;
color: #686868;
font-size: 16px;
margin-left: 20px;
margin-right: 20px;
}
.news_pl ul li p:first-child{
height: 30px;
line-height: 30px;
margin-bottom: 15px;
}
.news_pl ul li p span:first-child{
float: left;
font-weight: bold;
font-size: 18px;
}
.news_pl ul li p span:last-child{
float: right;
}
.xzsm ul, .ffsm ul { padding: 20px; line-height: 24px; border-top: 6px solid #a6b5c5; }
.bt-blue { display: block; line-height: 40px; height: 40px; background: #1e8ec5; width: 100px; text-align: center; }
.bt-blue a { color: #fff }
#plpost{
margin: 10px 20px;
}
#plpost>p:first-child{
height: 30px;
line-height: 30px;
}
#plpost>p>span:first-child{
float: left;
font-size: 22px;
color: darkgray;
}
#plpost>p>span:last-child{
float: right;
font-size: 18px;
color: red;
}
#plpost p{
margin-bottom: 10px;
} | 0.395368 | 0.2505 |
* {
margin: 0;
padding: 0;
}
body{
overflow: hidden;
}
a {
text-decoration: none;
color: white;
}
li {
list-style-type: none;
font-size: 1.4em;
}
/* buttons */
.toggle_btn {
position: absolute;
display: inline-block;
padding: 1em 1em;
text-decoration: none;
cursor: pointer;
background: transparent;
border: none;
top: .5em;
right: 1rem ;
}
.toggle_btn_ {
position: absolute;
display: inline-block;
padding: 1em 1em;
text-decoration: none;
cursor: pointer;
background: transparent;
border: none;
top: .5em;
right: 1rem;
}
.toggle_btn3 {
position: absolute;
display: inline-block;
padding: 1em 1em;
text-decoration: none;
cursor: pointer;
background: transparent;
border: none;
top: .5em;
right: 1rem;
}
.hamburger {
display: block;
position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
background: white;
width: 1.2em;
height: 3px;
border-radius: .5em;
}
.hamburger::before,
.hamburger::after {
content: '';
position: absolute;
left: 0;
right: 0;
}
.hamburger::before { top: 6px; }
.hamburger::after { bottom: 6px; }
/*side nav */
.side_nav_bar {
position: fixed;
text-align: center;
max-height: 400px;
display: none;
}
.side_nav_bar li {
position: relative;
line-height: 2em;
padding: 1em;
top: -1em;
}
.side_nav_bar li:hover{
background: darkslategray;
}
/* top nav */
.nav_bar{
position: relative;
text-align: center;
display: none;
}
.nav_bar li{
position: relative;
display: inline;
padding: 1em .5em 1em;
font-size: 1.1em;
top: 3em;
}
.nav_bar li:hover{
background: darkslategray;
}
.navbar{
width: 100%;
height: 89%;
position: relative;
display: none;
text-align: center;
z-index: 10;
}
.navbar li{
padding: 1.4em .5em 1em;
}
.navbar li:hover{
background: darkslategray;
}
#demo{
display: flex;
justify-items: center;
margin: 3em 7em;
}
/* containers */
.container{
width: 500px;
height: 500px;
background-color: lightblue;
margin:2em 2em;
}
.container_2{
width: 500px;
height: 500px;
background-color: lightblue;
margin:2em 2em;
position: relative;
}
.container_3{
width: 500px;
height: 500px;
background-color: lightblue;
margin: 2em 2em;
}
/* boxes */
.first {
position: relative;
width: 400px;
height: 400px;
border: 1px solid #000;
background-color: rgb(34, 109, 109);
top: 3em;
left: 3em;
}
.second {
position: relative;
width: 400px;
height: 400px;
border: 1px solid #000;
background-color: rgb(81, 52, 109);
top: 3em;
left: 3em;
}
.third{
position: relative;
width: 400px;
height: 400px;
border: 1px solid #000;
background-color: rgb(145, 27, 27);
top: 3em;
left: 3em;
}
.sidebar_content{
font-size: 1.2em;
text-align: center;
margin: 1em 0 0 0;
color: rgb(175, 189, 202);
}
.first_text{
color: rgb(175, 189, 202);
text-align: left;
max-width: 350px;
margin: .75em 4.5em;
font-size: .9em;
}
.first_text_{
color: rgb(175, 189, 202);
text-align: left;
max-width: 350px;
margin: .75em 4.5em;
font-size: .9em;
}
.top_content{
font-size: 1.2em;
text-align: center;
margin: 1em 0 0 0;
color: rgb(175, 189, 202);
}
.second_text{
color: rgb(198, 220, 241);
text-align: left;
max-width: 350px;
margin: 1.5em 4.5em;
font-size: .9em;
}
.hidden_content{
font-size: 1em;
text-align: left;
margin: 2em 2em;
color: rgb(175, 189, 202);
display: block;
}
.third_text{
color: rgb(198, 220, 241);
text-align: left;
max-width: 350px;
margin: 1.5em 4.5em;
font-size: .9em;
}
.main_h1{
position: relative;
left: 25em;
margin: 5em 0;
} | components/index.css | * {
margin: 0;
padding: 0;
}
body{
overflow: hidden;
}
a {
text-decoration: none;
color: white;
}
li {
list-style-type: none;
font-size: 1.4em;
}
/* buttons */
.toggle_btn {
position: absolute;
display: inline-block;
padding: 1em 1em;
text-decoration: none;
cursor: pointer;
background: transparent;
border: none;
top: .5em;
right: 1rem ;
}
.toggle_btn_ {
position: absolute;
display: inline-block;
padding: 1em 1em;
text-decoration: none;
cursor: pointer;
background: transparent;
border: none;
top: .5em;
right: 1rem;
}
.toggle_btn3 {
position: absolute;
display: inline-block;
padding: 1em 1em;
text-decoration: none;
cursor: pointer;
background: transparent;
border: none;
top: .5em;
right: 1rem;
}
.hamburger {
display: block;
position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
background: white;
width: 1.2em;
height: 3px;
border-radius: .5em;
}
.hamburger::before,
.hamburger::after {
content: '';
position: absolute;
left: 0;
right: 0;
}
.hamburger::before { top: 6px; }
.hamburger::after { bottom: 6px; }
/*side nav */
.side_nav_bar {
position: fixed;
text-align: center;
max-height: 400px;
display: none;
}
.side_nav_bar li {
position: relative;
line-height: 2em;
padding: 1em;
top: -1em;
}
.side_nav_bar li:hover{
background: darkslategray;
}
/* top nav */
.nav_bar{
position: relative;
text-align: center;
display: none;
}
.nav_bar li{
position: relative;
display: inline;
padding: 1em .5em 1em;
font-size: 1.1em;
top: 3em;
}
.nav_bar li:hover{
background: darkslategray;
}
.navbar{
width: 100%;
height: 89%;
position: relative;
display: none;
text-align: center;
z-index: 10;
}
.navbar li{
padding: 1.4em .5em 1em;
}
.navbar li:hover{
background: darkslategray;
}
#demo{
display: flex;
justify-items: center;
margin: 3em 7em;
}
/* containers */
.container{
width: 500px;
height: 500px;
background-color: lightblue;
margin:2em 2em;
}
.container_2{
width: 500px;
height: 500px;
background-color: lightblue;
margin:2em 2em;
position: relative;
}
.container_3{
width: 500px;
height: 500px;
background-color: lightblue;
margin: 2em 2em;
}
/* boxes */
.first {
position: relative;
width: 400px;
height: 400px;
border: 1px solid #000;
background-color: rgb(34, 109, 109);
top: 3em;
left: 3em;
}
.second {
position: relative;
width: 400px;
height: 400px;
border: 1px solid #000;
background-color: rgb(81, 52, 109);
top: 3em;
left: 3em;
}
.third{
position: relative;
width: 400px;
height: 400px;
border: 1px solid #000;
background-color: rgb(145, 27, 27);
top: 3em;
left: 3em;
}
.sidebar_content{
font-size: 1.2em;
text-align: center;
margin: 1em 0 0 0;
color: rgb(175, 189, 202);
}
.first_text{
color: rgb(175, 189, 202);
text-align: left;
max-width: 350px;
margin: .75em 4.5em;
font-size: .9em;
}
.first_text_{
color: rgb(175, 189, 202);
text-align: left;
max-width: 350px;
margin: .75em 4.5em;
font-size: .9em;
}
.top_content{
font-size: 1.2em;
text-align: center;
margin: 1em 0 0 0;
color: rgb(175, 189, 202);
}
.second_text{
color: rgb(198, 220, 241);
text-align: left;
max-width: 350px;
margin: 1.5em 4.5em;
font-size: .9em;
}
.hidden_content{
font-size: 1em;
text-align: left;
margin: 2em 2em;
color: rgb(175, 189, 202);
display: block;
}
.third_text{
color: rgb(198, 220, 241);
text-align: left;
max-width: 350px;
margin: 1.5em 4.5em;
font-size: .9em;
}
.main_h1{
position: relative;
left: 25em;
margin: 5em 0;
} | 0.562898 | 0.092401 |
.modal-background {
display: none !important;
position: fixed;
top: 0;
bottom: 0;
right: 0;
left: 0;
background: rgba(0, 0, 0, 0.3);
z-index: 10;
}
.modal-background div {
text-align: right;
font-weight: 200;
font-size: 15px;
}
.modal-background div h2 {
text-align: right;
}
.modal-child {
position: absolute;
background-color: white;
height: 280px;
width: 400px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 10px 30px 30px 30px;
border-radius: 5px;
line-height: 17px;
box-shadow: 0px 0px 3px 1px rgba(213, 207, 207, 0.776);
user-select: none;
}
.right-side {
display: flex;
flex-direction: column;
}
#links {
display: flex;
justify-content: center;
margin-left: 5px;
}
.designed-by {
align-self: center;
margin-left: 0px;
margin-bottom: 30px;
font-weight: 300;
}
.fab, .fas{
margin: 0px 10px 30px 5px;
width: 30px;
height: 30px;
font-size: 40px;
color: rgb(225, 225, 225);
cursor: pointer;
}
.feature-select {
width: 430px;
height: 350px;
}
.chart {
height: 320px;
}
h4 {
margin: 20px 0px 0px 0px;
}
.recommendations {
height: 200px;
}
.emphasis {
color: rgb(139, 139, 235);
font-weight: 300;
}
.time-period {
height: 320px;
}
.subtitle {
font-size: 17px;
color: rgb(96, 96, 168);
text-align: right;
}
.modal-child li {
border-left: 2px solid rgb(139, 139, 235);
padding-left: 5px;
user-select: none;
}
.titles {
display: flex;
}
.question-btn {
margin-left: 10px;
margin-bottom: 3px;
font-weight: 400;
width: 22px;
height: 22px;
border-radius: 50%;
text-align: center;
color: white;
user-select: none;
background-color: rgb(210, 210, 210);
}
.modal4 {
margin-top: 5px;
font-size: 19px;
}
.show-modal {
display: block !important;
}
.modal0 .modal-child {
text-align: center;
display: flex;
justify-content: center;
flex-direction: column;
}
.modal0 .modal-child p {
font-size: 20px;
line-height: 25px;
}
.modal-child .exit-modal {
cursor: pointer;
display: flex;
align-items: left;
user-select:none;
position: relative;
right: 10px;
bottom: -20px;
font-family: sans-serif;
font-size: 20px;
position: relative;
font-weight: 800;
color: gray;
}
.welcome .exit-modal {
position: relative;
top: -15px;
font-size: 20px;
} | public/stylesheets/info-modal.css | .modal-background {
display: none !important;
position: fixed;
top: 0;
bottom: 0;
right: 0;
left: 0;
background: rgba(0, 0, 0, 0.3);
z-index: 10;
}
.modal-background div {
text-align: right;
font-weight: 200;
font-size: 15px;
}
.modal-background div h2 {
text-align: right;
}
.modal-child {
position: absolute;
background-color: white;
height: 280px;
width: 400px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 10px 30px 30px 30px;
border-radius: 5px;
line-height: 17px;
box-shadow: 0px 0px 3px 1px rgba(213, 207, 207, 0.776);
user-select: none;
}
.right-side {
display: flex;
flex-direction: column;
}
#links {
display: flex;
justify-content: center;
margin-left: 5px;
}
.designed-by {
align-self: center;
margin-left: 0px;
margin-bottom: 30px;
font-weight: 300;
}
.fab, .fas{
margin: 0px 10px 30px 5px;
width: 30px;
height: 30px;
font-size: 40px;
color: rgb(225, 225, 225);
cursor: pointer;
}
.feature-select {
width: 430px;
height: 350px;
}
.chart {
height: 320px;
}
h4 {
margin: 20px 0px 0px 0px;
}
.recommendations {
height: 200px;
}
.emphasis {
color: rgb(139, 139, 235);
font-weight: 300;
}
.time-period {
height: 320px;
}
.subtitle {
font-size: 17px;
color: rgb(96, 96, 168);
text-align: right;
}
.modal-child li {
border-left: 2px solid rgb(139, 139, 235);
padding-left: 5px;
user-select: none;
}
.titles {
display: flex;
}
.question-btn {
margin-left: 10px;
margin-bottom: 3px;
font-weight: 400;
width: 22px;
height: 22px;
border-radius: 50%;
text-align: center;
color: white;
user-select: none;
background-color: rgb(210, 210, 210);
}
.modal4 {
margin-top: 5px;
font-size: 19px;
}
.show-modal {
display: block !important;
}
.modal0 .modal-child {
text-align: center;
display: flex;
justify-content: center;
flex-direction: column;
}
.modal0 .modal-child p {
font-size: 20px;
line-height: 25px;
}
.modal-child .exit-modal {
cursor: pointer;
display: flex;
align-items: left;
user-select:none;
position: relative;
right: 10px;
bottom: -20px;
font-family: sans-serif;
font-size: 20px;
position: relative;
font-weight: 800;
color: gray;
}
.welcome .exit-modal {
position: relative;
top: -15px;
font-size: 20px;
} | 0.462959 | 0.106784 |
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;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body{background-image: url("dum.jpg");
background-repeat:no-repeat;
background-size: cover;
background-position: center center;
background-attachment: fixed;}
.main_wrapper{
width:100%;
height:100%;
margin:auto;}
.header_wrapper{
width:100%;
height:85px;
margin:auto;
background:#323232;
color:white;
}
.cart_page {
width: 1000px;
margin: auto;
}
.cart_form {
position: relative;
z-index: 1;
background: #FFFFFF;
max-width: 1000px;
margin: 0 auto 100px;
padding: 45px;
text-align: center;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
#search{
float:right;
padding:15px;
padding-right:10px;
line-height:50px;
}
#cats{
padding:0;
margin:0;
line-height:40px;
text-align:center;
text-transform:uppercase;
}
#cats a{
text-decoration:none;
color:#C9BD9E;
padding:25px;
margin:5px;
font-size:18px;
font-family:DIN Next Light;
}
#cats li{
list-style:none;
display:inline;
}
#cats li+li {
padding:4px;
border-left: 1px solid #fff3e6
}
#cats a:hover {
color:#fff3e6;
font-weight:bolder;
}
.menubar{
width:100%;
height:45px;
background:#323232;
text-transform:uppercase;
}
#menu{
padding:0;
margin:0;
line-height:40px;
text-align:center;
}
#menu li{
list-style:none;
display:inline;
}
#menu li+li {
padding:4px;
border-left: 1px solid #fff3e6;
}
#menu a{
text-decoration:none;
color:#C9BD9E;
padding:25px;
margin:5px;
font-size:18px;
font-family:DIN Next Light;
}
#menu a:hover {
color:#fff3e6;
font-weight:bolder;
}
.content_wrapper{
width:100%;
height:auto;
margin:auto;
}
#content_area1{
width:100%;
height:600px;
background:transparent;
}
#mainheading{
position: absolute;
top: 200px;
left:175px;
font-size:93;
text-align:center;
font-family:enriqueta;
letter-spacing:10px;
color:white;
font-weight:bold;
}
#subheading{
position: absolute;
top: 300px;
left:430px;
font-size:40;
word-spacing:10px;
font-family:lulo clean;
color:white;
font-weight:bold;
}
#heading{
position: absolute;
top: 800px;
left:420px;
font-size:40;
font-family:Tahoma;
word-spacing:20px;
color:#AE9A64;
font-weight:bold;
}
#heading1{
position: absolute;
top: 1100px;
left:100px;
width: 300px;
padding:15px;
border: 2px solid #fff3e6;
font-size:30;
font-family:Tahoma;
color:#AE9A64;
}
#heading2{
position: absolute;
top: 1100px;
left:480px;
width: 300px;
padding:15px;
border: 2px solid #fff3e6;
font-size:30px;
font-family:Tahoma;
color:#AE9A64;
}
#heading3{
position: absolute;
top: 1100px;
right:100px;
width: 300px;
padding:15px;
border: 2px solid #fff3e6;
font-size:30;
font-family:Tahoma;
color:#AE9A64;
}
#content_area2{
width:100%;
height:700px;
background: linear-gradient(
rgba(50, 50, 50, 0.9),
rgba(50, 50, 50, 0.9)
),url(kitchen3.jpg);
background-size: cover;
}
#content_area3{
width:100%;
height:350px;
background:linear-gradient(
rgba(174, 154, 100, 0.9),
rgba(174, 154, 100, 0.9)
),url(stove.jpg);
background-size: cover;
}
#content_area4{
width:100%;
height:350px;
background:linear-gradient(
rgba(50, 50, 50, 0.9),
rgba(50, 50, 50, 0.9)
),url(kitchen4.jpg);
background-size: cover;
}
#page3_area1{
width:100%;
height:100%;
}
#items_box{
width:100%;
height:100%;
text-align:center;
margin-left:40px;
}
td
{
padding-top: 5px;
padding-bottom: 5px;
}
.button {
display: inline-block;
border-radius: 4px;
background-color: #4CAF50;
border: none;
color: #FFFFFF;
text-align: center;
font-size: 12px;
padding: 3px;
width: 120px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
border: 2px solid #4CAF50;
}
.button1:hover {
background-color: white;
color:#4CAF50 ;
}
.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: '>>';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
.textbox {
background: white;
border: 1px double #DDD;
border-radius: 5px;
box-shadow: 0 0 5px #333;
color: #666;
outline: none;
height:25px;
width: 225px;
}
#register_form{padding-left:40px;}
#single_item{float:left; margin-left:10px; padding:10px;}
#single_item img{border;2px solid black;}
#shopping_cart{width:100%; height:45px; background:#323232; color:#AE9A64;}
#footer {
background-color: #efefef;
text-align: center;
} | Ecommerce/styles/style1.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;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body{background-image: url("dum.jpg");
background-repeat:no-repeat;
background-size: cover;
background-position: center center;
background-attachment: fixed;}
.main_wrapper{
width:100%;
height:100%;
margin:auto;}
.header_wrapper{
width:100%;
height:85px;
margin:auto;
background:#323232;
color:white;
}
.cart_page {
width: 1000px;
margin: auto;
}
.cart_form {
position: relative;
z-index: 1;
background: #FFFFFF;
max-width: 1000px;
margin: 0 auto 100px;
padding: 45px;
text-align: center;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
#search{
float:right;
padding:15px;
padding-right:10px;
line-height:50px;
}
#cats{
padding:0;
margin:0;
line-height:40px;
text-align:center;
text-transform:uppercase;
}
#cats a{
text-decoration:none;
color:#C9BD9E;
padding:25px;
margin:5px;
font-size:18px;
font-family:DIN Next Light;
}
#cats li{
list-style:none;
display:inline;
}
#cats li+li {
padding:4px;
border-left: 1px solid #fff3e6
}
#cats a:hover {
color:#fff3e6;
font-weight:bolder;
}
.menubar{
width:100%;
height:45px;
background:#323232;
text-transform:uppercase;
}
#menu{
padding:0;
margin:0;
line-height:40px;
text-align:center;
}
#menu li{
list-style:none;
display:inline;
}
#menu li+li {
padding:4px;
border-left: 1px solid #fff3e6;
}
#menu a{
text-decoration:none;
color:#C9BD9E;
padding:25px;
margin:5px;
font-size:18px;
font-family:DIN Next Light;
}
#menu a:hover {
color:#fff3e6;
font-weight:bolder;
}
.content_wrapper{
width:100%;
height:auto;
margin:auto;
}
#content_area1{
width:100%;
height:600px;
background:transparent;
}
#mainheading{
position: absolute;
top: 200px;
left:175px;
font-size:93;
text-align:center;
font-family:enriqueta;
letter-spacing:10px;
color:white;
font-weight:bold;
}
#subheading{
position: absolute;
top: 300px;
left:430px;
font-size:40;
word-spacing:10px;
font-family:lulo clean;
color:white;
font-weight:bold;
}
#heading{
position: absolute;
top: 800px;
left:420px;
font-size:40;
font-family:Tahoma;
word-spacing:20px;
color:#AE9A64;
font-weight:bold;
}
#heading1{
position: absolute;
top: 1100px;
left:100px;
width: 300px;
padding:15px;
border: 2px solid #fff3e6;
font-size:30;
font-family:Tahoma;
color:#AE9A64;
}
#heading2{
position: absolute;
top: 1100px;
left:480px;
width: 300px;
padding:15px;
border: 2px solid #fff3e6;
font-size:30px;
font-family:Tahoma;
color:#AE9A64;
}
#heading3{
position: absolute;
top: 1100px;
right:100px;
width: 300px;
padding:15px;
border: 2px solid #fff3e6;
font-size:30;
font-family:Tahoma;
color:#AE9A64;
}
#content_area2{
width:100%;
height:700px;
background: linear-gradient(
rgba(50, 50, 50, 0.9),
rgba(50, 50, 50, 0.9)
),url(kitchen3.jpg);
background-size: cover;
}
#content_area3{
width:100%;
height:350px;
background:linear-gradient(
rgba(174, 154, 100, 0.9),
rgba(174, 154, 100, 0.9)
),url(stove.jpg);
background-size: cover;
}
#content_area4{
width:100%;
height:350px;
background:linear-gradient(
rgba(50, 50, 50, 0.9),
rgba(50, 50, 50, 0.9)
),url(kitchen4.jpg);
background-size: cover;
}
#page3_area1{
width:100%;
height:100%;
}
#items_box{
width:100%;
height:100%;
text-align:center;
margin-left:40px;
}
td
{
padding-top: 5px;
padding-bottom: 5px;
}
.button {
display: inline-block;
border-radius: 4px;
background-color: #4CAF50;
border: none;
color: #FFFFFF;
text-align: center;
font-size: 12px;
padding: 3px;
width: 120px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
border: 2px solid #4CAF50;
}
.button1:hover {
background-color: white;
color:#4CAF50 ;
}
.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: '>>';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
.textbox {
background: white;
border: 1px double #DDD;
border-radius: 5px;
box-shadow: 0 0 5px #333;
color: #666;
outline: none;
height:25px;
width: 225px;
}
#register_form{padding-left:40px;}
#single_item{float:left; margin-left:10px; padding:10px;}
#single_item img{border;2px solid black;}
#shopping_cart{width:100%; height:45px; background:#323232; color:#AE9A64;}
#footer {
background-color: #efefef;
text-align: center;
} | 0.228415 | 0.054424 |
.column {
width: 50%;
height: 100vh;
}
.left-about {
position: relative;
left: 0;
display: flex;
flex-direction: column;
justify-content: space-between;
background: url("/src/images/hanger.jpg") no-repeat 50% 50%;
background-size: cover;
}
.right {
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.images{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
grid-auto-rows: auto;
grid-gap: 1em;
padding-top: 4em;
}
.img {
height: 200px;
width: 100%;
object-fit: cover;
}
.img-1 {
background: url("/src/images/photo.jpg") no-repeat 50% 50%;
background-size: cover;
}
.img-2 {
background: url("/src/images/photo.jpg") no-repeat 50% 50%;
background-size: cover;
}
.img-3 {
background: url("/src/images/photo.jpg") no-repeat 50% 50%;
background-size: cover;
}
.img-4 {
background: url("/src/images/photo.jpg") no-repeat 50% 50%;
background-size: cover;
}
.header-text-left{
padding: 1em;
}
.header-text {
color: #b5dceb;
text-transform: uppercase;
font-size: 40px;
}
.header-text h1 {
position: relative;
}
.ml12 .letter {
display: inline-block;
line-height: 1em;
}
.link{
color: #f1ede4;
padding-bottom: 1em;
}
.link a {
padding: 1em;
color: #f1ede4;
text-transform: uppercase;
font-size: 40px;
}
@media (min-width: 768px) {
.container-landing {
display: flex;
}
}
@media (max-width: 968px){
.header-text {
font-size: 30px;
}
.header-text-left{
padding-top: 2em;
}
.images {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
}
@media (max-width: 768px) {
.column {
margin-top: 0em;
width: 100%;
}
.header-text {
font-size: 25px;
padding: 80px 0;
}
.images {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
padding: 1em;
display: block;
background-color: black;
}
.img {
height: 400px;
width: auto;
object-fit: cover;
}
.link a {
padding: 0em;
}
}
@media (max-width: 568px){
.header-text {
padding: 80px 32px;
}
.link a{
padding: 0 32px;
}
} | src/styles/components/shop.css | .column {
width: 50%;
height: 100vh;
}
.left-about {
position: relative;
left: 0;
display: flex;
flex-direction: column;
justify-content: space-between;
background: url("/src/images/hanger.jpg") no-repeat 50% 50%;
background-size: cover;
}
.right {
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.images{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
grid-auto-rows: auto;
grid-gap: 1em;
padding-top: 4em;
}
.img {
height: 200px;
width: 100%;
object-fit: cover;
}
.img-1 {
background: url("/src/images/photo.jpg") no-repeat 50% 50%;
background-size: cover;
}
.img-2 {
background: url("/src/images/photo.jpg") no-repeat 50% 50%;
background-size: cover;
}
.img-3 {
background: url("/src/images/photo.jpg") no-repeat 50% 50%;
background-size: cover;
}
.img-4 {
background: url("/src/images/photo.jpg") no-repeat 50% 50%;
background-size: cover;
}
.header-text-left{
padding: 1em;
}
.header-text {
color: #b5dceb;
text-transform: uppercase;
font-size: 40px;
}
.header-text h1 {
position: relative;
}
.ml12 .letter {
display: inline-block;
line-height: 1em;
}
.link{
color: #f1ede4;
padding-bottom: 1em;
}
.link a {
padding: 1em;
color: #f1ede4;
text-transform: uppercase;
font-size: 40px;
}
@media (min-width: 768px) {
.container-landing {
display: flex;
}
}
@media (max-width: 968px){
.header-text {
font-size: 30px;
}
.header-text-left{
padding-top: 2em;
}
.images {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
}
@media (max-width: 768px) {
.column {
margin-top: 0em;
width: 100%;
}
.header-text {
font-size: 25px;
padding: 80px 0;
}
.images {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
padding: 1em;
display: block;
background-color: black;
}
.img {
height: 400px;
width: auto;
object-fit: cover;
}
.link a {
padding: 0em;
}
}
@media (max-width: 568px){
.header-text {
padding: 80px 32px;
}
.link a{
padding: 0 32px;
}
} | 0.32029 | 0.15876 |
body{
padding:0;
margin:0;
background:#fff;
position:relative;
font-family: 'ABeeZee', sans-serif;
}
body a{
transition:0.5s all;
-webkit-transition:0.5s all;
-moz-transition:0.5s all;
-o-transition:0.5s all;
-ms-transition:0.5s all;
}
a:hover{
text-decoration:none;
}
input[type="button"],input[type="submit"],.contact-form input[type="submit"]{
transition:0.5s all;
-webkit-transition:0.5s all;
-moz-transition:0.5s all;
-o-transition:0.5s all;
-ms-transition:0.5s all;
}
h1,h2,h3,h4,h5,h6{
margin:0;
font-family: 'Convergence', sans-serif;
}
p{
margin:0;
font-family: 'ABeeZee', sans-serif;
letter-spacing:1px;
}
ul{
margin:0;
padding:0;
}
label{
margin:0;
}
/*-- banner --*/
.banner{
background:url(../images/bg1.jpg) no-repeat 0px 0px;
background-size:cover;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
-ms-background-size:cover;
min-height:848px;
}
.banner-2{
background:url(../images/bg1.jpg) no-repeat 0px 0px;
background-size:cover;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
-ms-background-size:cover;
min-height:365px;
}
.navbar-default {
background: none;
border: none;
}
.navbar-default .navbar-nav > li > a {
color:#fff;
}
.navbar-nav > li > a {
padding: 10px 15px 10px;
font-size: 1.1em;
letter-spacing: 1px;
}
.navbar-header {
float: none;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
color: #fff;
background: none;
background:transparent;
}
nav ul {
list-style: none;
text-align: center;
}
nav ul li a,
nav ul li a:after,
nav ul li a:before {
transition: all .5s;
}
nav ul li a:hover {
color: #555;
}
/* stroke */
nav.stroke ul li a,
nav.fill ul li a {
position: relative;
}
nav.stroke ul li a:after,
nav.fill ul li a:after {
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 0%;
content: '.';
color: transparent;
background:#00a0f0;
height: 1px;
}
nav.stroke ul li.active a:after,
nav.fill ul li.active a:after {
display:none;
}
nav.stroke ul li a:hover:after {
width: 100%;
}
nav.fill ul li a {
transition: all 2s;
}
nav.fill ul li a:after {
text-align: left;
content: '.';
margin: 0;
opacity: 0;
}
nav.fill ul li a:hover {
color: #fff;
z-index: 1;
}
nav.fill ul li a:hover:after {
z-index: -10;
animation: fill 1s forwards;
-webkit-animation: fill 1s forwards;
-moz-animation: fill 1s forwards;
opacity: 1;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
color:#fff;
border-bottom: 1px solid #00a0f0;
background: none;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color:#fff;
}
.navbar-nav > li {
float: none;
display: block !important;
}
.logo {
text-align: center;
}
.logo-w3l {
font-size: 3em;
color:#fff;
}
.logo h1 a {
font-size: 1.2em;
color: #fff;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 700;
font-family: 'Convergence', sans-serif;
}
.logo h1 a span {
display: block;
font-size: 14px;
line-height: 1;
margin-top: 0.5em;
}
.ph-agile {
text-align: center;
}
.ph-agile i {
font-size: 1.5em;
color: #fff;
padding-top: 10px;
}
.ph-agile p span {
font-size: 1.1em;
color: #fff;
margin-left: 0.5em;
letter-spacing: 0px;
}
.ph-agile p{
background: #00a0f0;
width: 170px;
height: 46px;
line-height: 2.5;
display: inline-block;
}
/*-- banner-text --*/
.header-w3layouts{
position: absolute;
top: 0;
z-index: 99;
text-align: center;
left: 0;
width: 100%;
}
.agileits-banner-info h3 {
color: #fff;
font-size: 3em;
margin: 0;
letter-spacing: 6px;
text-transform: uppercase;
font-weight: 700;
}
.agileits-banner-info h3 span{
background: #2529d8;
padding: 0 15px;
}
.agileits-banner-info {
text-align: center;
padding-top: 1em;
}
.agileits-banner-info p {
color: #cac8c9;
font-size: 1em;
line-height: 1.9em;
letter-spacing: 7px;
margin: 2em auto;
font-weight: 500;
}
.agileits_w3layouts_more{
position:relative;
}
.agileits_w3layouts_more a{
font-size: 17px;
color: #fff;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 4px;
position: relative;
}
.agileits_w3layouts_more a:focus{
outline:none;
}
.agileits_w3layouts_more a:hover{
color:#fff;
}
.agileits_w3layouts_more a:before, .agileits_w3layouts_more a:after {
content: '';
background: #fff;
width: 45%;
height: 2px;
position: absolute;
left: 25%;
top: 181%;
}
.agileits_w3layouts_more a:after{
-webkit-transition-delay: 0.4s;
transition-delay: 0.4s;
-webkit-transform: scale3d(0, 1, 1);
transform: scale3d(0, 1, 1);
-webkit-transform-origin: center left;
transform-origin: center left;
-webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.agileits_w3layouts_more a:hover::before, .agileits_w3layouts_more a:hover::after {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
-webkit-transition-delay: 0s;
transition-delay: 0s;
}
.agileits_w3layouts_more a::after {
background:#f39c12;
}
/*--slider--*/
#slider2,
#slider3 {
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
margin: 0 auto;
}
.rslides_tabs li:first-child {
margin-left: 0;
}
.rslides_tabs .rslides_here a {
background: rgba(255,255,255,.1);
color: #fff;
font-weight: bold;
}
.events {
list-style: none;
}
.callbacks_container {
position: relative;
float: left;
width: 100%;
}
.callbacks {
position: relative;
list-style: none;
overflow: hidden;
width: 100%;
padding: 0;
margin: 0;
}
.callbacks li {
position: absolute;
width: 100%;
}
.callbacks img {
position: relative;
z-index: 1;
height: auto;
border: 0;
}
.callbacks .caption {
display: block;
position: absolute;
z-index: 2;
font-size: 20px;
text-shadow: none;
color: #fff;
left: 0;
right: 0;
padding: 10px 20px;
margin: 0;
max-width: none;
top: 10%;
text-align: center;
}
.callbacks_nav {
position: absolute;
-webkit-tap-highlight-color: rgba(0,0,0,0);
top:55%;
left: 40px;
opacity: 0.7;
z-index: 3;
text-indent: -9999px;
overflow: hidden;
text-decoration: none;
height: 34px;
width: 34px;
background: url(../images/left.png) no-repeat 0px 0px;
}
.callbacks_nav.next {
left: auto;
background: url(../images/right.png) no-repeat 0px 0px;
right: -62px;
}
.callbacks_nav.prev {
left: auto;
background: url(../images/left.png) no-repeat 0px 0px;
left: -58px;
}
#slider3-pager a {
display: inline-block;
}
#slider3-pager span{
float: left;
}
#slider3-pager span{
width:100px;
height:15px;
background:#fff;
display:inline-block;
border-radius:30em;
opacity:0.6;
}
#slider3-pager .rslides_here a {
background: #FFF;
border-radius:30em;
opacity:1;
}
#slider3-pager a {
padding: 0;
}
#slider3-pager li{
display:inline-block;
}
.rslides {
position: relative;
list-style: none;
overflow: hidden;
width: 100%;
padding: 0;
}
.rslides li {
-webkit-backface-visibility: hidden;
position: absolute;
display:none;
width: 100%;
left: 0;
top: 0;
}
.rslides li{
position: relative;
display:block;
float: left;
}
.rslides img {
height: auto;
border: 0;
}
.callbacks_tabs {
list-style: none;
position: absolute;
top: 106%;
left: 46%;
padding: 0;
margin: 0;
display: block;
z-index: 99;
}
.slider-top span{
font-weight:600;
}
.callbacks_tabs li {
display:inline-block;
margin: 0px 7px;
}
/*----*/
.callbacks_tabs a{
visibility: hidden;
}
.callbacks_tabs a:after {
content: "\f111";
font-size: 0;
font-family: FontAwesome;
visibility: visible;
display: block;
height:16px;
width:16px;
display: inline-block;
background: #ffffff;
border-radius: 50%;
-webkit-border-radius: 50%;
-o-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
}
.callbacks_here a:after{
background: #00a0f0;
}
/*-- //slider --*/
/*-- //banner-text --*/
/*-- Appointment-form --*/
.app-w3 {
background: rgba(0, 0, 0, 0.54);
margin-top: 13em;
padding-bottom: 4em;
}
.app-sub-w3 {
width: 80%;
text-align: center;
margin: 0 auto;
padding: 1.5em 1em 2.5em;
background: #000;
border: 1px solid rgba(255, 255, 255, 0.19);
margin-top: 1em;
}
.app-sub-w3 input[type="text"], .ag-w3 {
width: 19%;
outline: none;
font-size: 0.9em;
padding: 13px 10px;
border: none;
color: #abaaaa;
font-weight: 100;
-webkit-appearance: none;
background: #fff;
display: inline-block;
text-align: left;
}
input#timepicker {
display: inline-block;
border-radius: 0px !important;
padding: 13px 10px;
height: inherit;
}
.app-sub-w3 form input[type="submit"] {
text-transform: uppercase;
background: #00a0f0;
color: #FFFFFF;
padding: .75em 0em;
border: 1px solid #ee4f4f;
font-size: 1em;
outline: none;
width: 18%;
letter-spacing:1px;
font-weight: 600;
margin-top:1em;
margin-left:2em;
cursor: pointer;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.app-sub-w3 form input[type="submit"]:hover{
background:#ee4f4f;
border:1px solid #00a0f0;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.app-w3 h4 {
font-size: 1.8em;
text-align: center;
padding: 1em 0em;
color: #fff;
text-transform: uppercase;
letter-spacing: 1px;
}
.agile1, .ph-agile {
padding-top: 3em;
}
li.dropdown.menu__item {
list-style: none;
}
a.dropdown-toggle.menu__link {
color: #abaaaa;
font-size: 1em;
}
.caret {
float: right;
margin-top: 9px;
}
.dropdown-menu {
top: 125% !important;
left: -10px !important;
}
.dropdown-menu {
min-width: 140px !important;
}
.ag-w3 .dropdown-menu {
top: 153% !important;
}
.ag-w3 .dropdown-menu {
min-width: 235px !important;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
color: #fff !important;
text-decoration: none;
background-color: #00a0f0 !important;
}
/*-- //Appointment-form --*/
/*-- //banner --*/
/*-- About --*/
.welcome-img {
overflow: hidden;
-webkit-box-shadow: 0px 0px 10px 0px #656060;
-moz-box-shadow: 0px 0px 10px 0px #656060;
box-shadow: 0px 0px 10px 0px #656060;
}
.welcome-left .img-responsive {
width: 100%;
}
.welcome-left-grids {
padding: 0;
margin-top: 3em;
}
.welcome-left-grids:nth-child(2) {
padding-right: 0.5em;
}
.welcome-left-grids:nth-child(3) {
padding-left: 0.5em;
}
.welcome-left p {
font-size: 1em;
color: #777;
line-height: 1.9em;
margin-top: 2em;
}
.open-hours-row {
/*background: #83d6ff;*/
background: #45B39D;
/*border:2px dotted #00a0f0;*/
border: .5px dotted #45B39D ;
}
.open-hours-left {
padding: 4.06em 0;
text-align: center;
-webkit-transition: .5s all;
-moz-transition: .5s all;
transition: .5s all;
/*background: #ee4f4f;*/
background: #45B39D;
}
.open-hours-left:nth-child(1) {
background: #116EB3;
padding: 3em 0;
}
.open-hours-left:nth-child(3) {
border-left: 2px dashed #00a0f0;
border-right: 2px dashed #00a0f0;
}
.open-hours-left h4 {
font-size: 1.5em;
color: #fff;
line-height: 1.8em;
}
.open-hours-left h6 {
font-size: 1em;
color: #f1efef;
-webkit-transition: .5s all;
-moz-transition: .5s all;
transition: .5s all;
}
.open-hours-left:hover h6{
color: #fff;
}
.open-hours-left h5 {
font-size: 1.3em;
color: #000;
margin-top: 0.5em;
font-weight: 700;
}
.open-hours-left:hover {
background: #00a0f0;
}
img.zoom-img{
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
-moz-transform: scale(1, 1);
-ms-transform: scale(1, 1);
-o-transform: scale(1, 1);
transition-timing-function: ease-out;
-webkit-transition-timing-function: ease-out;
-moz-transition-timing-function: ease-out;
-ms-transition-timing-function: ease-out;
-o-transition-timing-function: ease-out;
-webkit-transition-duration: .5s;
-moz-transition-duration: .5s;
-ms-transition-duration: .5s;
-o-transition-duration: .5s;
}
img.zoom-img:hover{
-webkit-transform: scale(1.2);
transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
-webkit-transition-timing-function: ease-in-out;
-webkit-transition-duration: 750ms;
-moz-transition-timing-function: ease-in-out;
-moz-transition-duration: 750ms;
-ms-transition-timing-function: ease-in-out;
-o-transition-timing-function: ease-in-out;
-ms-transition-duration: 750ms;
-o-transition-duration: 750ms;
overflow: hidden;
}
/*-- //about --*/
/*-- Services --*/
.feature-w3l, .tips.w3agile, .welcome, .team, #review, .events, .blog, .codes, .typo, #gallery, .mail {
padding: 5em 0;
text-align:center;
}
.codes{
text-align:left;
}
.feature-grid:hover h4 {
color: #116EB3;
}
.feature-grid h4 {
font-size: 1.73em;
margin-top: 0.5em;
color: #730709;
}
.feature-grid p {
font-size: 1em;
line-height: 1.9em;
color: #777;
}
.feature-grid span {
width: 15%;
display: block;
background: #116EB3;
height: 2px;
margin: 1.3em auto;
-webkit-transition: .5s all;
-moz-transition: .5s all;
transition: .5s all;
}
.feature-grid:hover span {
width: 35%;
background: #730709;
}
.feature-grid:hover div.icons i {
background: #730709;
}
.what-left {
float: left;
width: 15%;
text-align: center;
}
.what-right {
float: left;
width: 85%;
}
.what-grid1 h4 {
font-size: 1.8em;
color: #007ea3;
}
.what-grid1 p {
font-size: 1em;
line-height: 1.8em;
padding-top: 0.8em;
}
.what-grid1 i {
height: 60px;
width: 60px;
margin: 3px;
font-size: 1.3em;
border-radius: 15%;
line-height: 60px;
text-align: center;
background: #f47721;
color: #fff;
}
/*-- effect-7 css --*/
.text-desc{
position: absolute;
left: 0;
top: 0;
background: #730709;
height: 100%;
opacity: 0;
width: 100%;
padding: 20px;
}
.port-7{
width: 100%;
position: relative;
overflow: hidden;
text-align: center;
border: 5px solid rgba(255, 255, 255, 0.9);
overflow: hidden;
box-shadow: 0px 0px 12px 0px #969696;
}
.port-7 .text-desc{
opacity: 0;
transition: 0.5s;
color: #000;
}
.port-7.effect-2 img{
transition: 0.5s;
position: relative;
width: 100%;
top: 0;
}
.port-7.effect-2:hover img{
top: 50%;
}
.port-7.effect-2 .text-desc{
transform: perspective(600px) rotateX(90deg);
transform-origin: top center 0;
width: 100%;
position: absolute;
left: 0;
top: 0;
height: 50%;
padding:32px 10px 0;
}
.port-7.effect-2:hover .text-desc{
opacity: 1;
transform: perspective(600px) rotateX(0deg);
z-index: 99;
}
.text-desc h4 {
color: #fff;
font-size: 1.8em;
margin-bottom: 0.5em;
}
.text-desc p {
font-size: 1em;
color: #fff;
line-height: 1.8em;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 3em;
color: #333;
text-align: center;
text-transform: uppercase;
margin-bottom:1.3em;
}
h3.tittle span, h3.tittle-one span, .agile-title h3 span, h4.tittle-two span, .team-heading h3 span, .team-w3l h3 span, h3.w3l-sing span, h3.tittle-agw3 span, h3.tittle-agilew3 span, h3.w3l_head span, h3.mail-w3 span{
display: block;
width: 86px;
height: 2px;
background: #116EB3;
margin: 13px auto 0;
}
.icons-w3 i {
height: 180px;
width: 180px;
margin: 3px;
font-size: 4em;
border-radius: 100%;
line-height: 172px;
text-align: center;
background: #116EB3;
color: #fff;
border: 3px solid #ffffff;
box-shadow: inset 0 0 0 5px #f2f2f2;
-webkit-box-shadow: inset 0 0 0 5px #f2f2f2;
-webkit-transition: 500ms;
-moz-transition: 500ms;
-o-transition: 500ms;
transition: 500ms;
}
.icons-w3 i:hover {
background: #730709;
-webkit-transition: 500ms;
-moz-transition: 500ms;
-o-transition: 500ms;
transition: 500ms;
}
/*-- //Services --*/
/*-- What-we-do --*/
.tips.w3agile {
background: #eee;
}
.tip-grid img{
width:100%;
}
.tip-grid {
position: relative;
margin: 0 auto;
list-style: none;
text-align: center;
}
/* Common style */
.tip-grid figure {
position: relative;
float: left;
overflow: hidden;
height: auto;
background: #3085a3;
text-align: center;
cursor: pointer;
}
.tip-grid figure img {
position: relative;
display: block;
max-width: 100%;
opacity: 0.8;
}
.tip-grid figure figcaption {
padding: 2px 25px 0px 25px;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.tip-grid figure figcaption,
.tip-grid figure figcaption > a {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.tip-grid figure figcaption > a {
z-index: 1000;
text-indent: 200%;
white-space: nowrap;
font-size: 0;
opacity: 0;
}
.tip-grid figure h4,
.grid figure p {
margin: 0;
}
.tip-grid figure p {
letter-spacing: 1px;
font-size: 68.5%;
}
/***** Julia *****/
figure.effect-julia {
background: #2f3238;
}
figure.effect-julia img {
max-width: none;
-webkit-transition: opacity 1s, -webkit-transform 1s;
transition: opacity 1s, transform 1s;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
figure.effect-julia h4 {
color: #fff;
font-size: 2em;
position: relative;
padding: 0.5em 0;
font-weight: 500;
margin-bottom: 2em;
}
figure.effect-julia p {
display: block;
margin: 0.4em auto;
padding: 7px 0px;
background: rgba(0, 0, 0, 0.76);
color: #fff;
text-transform: none;
font-size: 14px;
text-align: center;
width: 93%;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(-500px,0,0);
transform: translate3d(-500px,0,0);
}
figure.effect-julia p:first-child {
-webkit-transition-delay: 0.15s;
transition-delay: 0.15s;
}
figure.effect-julia p:nth-of-type(2) {
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
}
figure.effect-julia p:nth-of-type(3) {
-webkit-transition-delay: 0.05s;
transition-delay: 0.05s;
}
figure.effect-julia:hover p:first-child {
-webkit-transition-delay: 0s;
transition-delay: 0s;
}
figure.effect-julia:hover p:nth-of-type(2) {
-webkit-transition-delay: 0.05s;
transition-delay: 0.05s;
}
figure.effect-julia:hover p:nth-of-type(3) {
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
}
figure.effect-julia:hover img {
opacity: 0.4;
-webkit-transform: scale3d(1.1,1.1,1);
transform: scale3d(1.1,1.1,1);
}
figure.effect-julia:hover p {
opacity: 1;
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
/*-- //What-we-do --*/
/*-- Testimonials --*/
#review {
background: url("../images/tes.jpg") no-repeat 0px 0px;
background-size: cover;
-o-background-size: cover;
-moz-background-size: cover;
-ms-background-size: cover;
-webkit-background-size: cover;
min-height: 540px;
}
h3.title {
color:#333;
font-size:3em;
text-align:center;
}
h3.tittle-two{
color:#fff;
}
.test-monials h5{
font-size: 2em;
color: #FFE500;
text-transform: none;
margin-top: 0.7em;
}
.test-review p {
font-size: 1em;
font-weight: 400;
line-height: 2em;
margin: 2em 1em;
color:#fff;
}
.test-review img{
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
box-shadow:0 10px 20px rgba(0, 0, 0, 0.41);
-webkit-box-shadow:0 10px 20px rgba(0, 0, 0, 0.41);
-moz-box-shadow:0 10px 20px rgba(0, 0, 0, 0.41);
-o-box-shadow:0 10px 20px rgba(0, 0, 0, 0.41);
-ms-box-shadow:0 10px 20px rgba(0, 0, 0, 0.41);
}
.test-review p img {
margin: 0 10px!important;
box-shadow:none;
}
.test-review img {
margin: 0 auto;
}
.test-monials {
text-align: center;
}
.test-left-img{
background: url(../images/banner.jpg) no-repeat 0px 0px;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
min-height:700px;
}
/*-- //Testimonials --*/
/*---//Social Networks --*/
.social-networks{
background:#E1E1E1;
}
/*-- Footer --*/
.footer {
padding: 4em 0em;
background: #494949;
position: relative;
}
.ftr-grid h3, .services-grids h3{
color: #00a0f0;
font-size: 1.6em;
letter-spacing:1px;
margin-bottom: 0.5em;
}
.ftr-grid p {
font-size: 1em;
color: #CFD5D5;
line-height: 2;
margin-top: 5%;
}
.ftr-grid.fg1 a {
color: #fff;
margin-top: 0.5em;
display: inline-block;
font-size: 1em;
}
.ftr-text p a {
color: #CFD5D5;
}
.ftr-text p a:hover {
color: #fff;
transition: all 0.5s ease-in-out;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
}
.ftr-grid ul {
padding: 0em;
list-style: none;
}
.ftr-grid ul li {
font-size: 0.95em;
color: #fff;
line-height: 1.8em;
}
.local {
float: left;
width: 13%;
}
.ftr-text {
float: right;
width: 86%;
}
.local i {
font-size: 1.5em;
color: #fff;
margin-top: 41%;
}
.logo-fo {
text-align: center;
}
.logo-fo h2 a {
font-size: 1.2em;
color: #fff;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 700;
font-family: 'Convergence', sans-serif;
}
.logo-fo h2 a span {
display: block;
font-size: 14px;
line-height: 1;
margin-top: 0.5em;
}
.right-w3l.fotw3 {
width: 100%;
margin-top: 11%;
text-align: left;
}
ul.top-links li {
display: inline-block;
margin-left: 12px;
}
.right-w3l ul.top-links li a i.fa {
color: #fff;
background-color: #116EB3;
width: 35px;
height: 35px;
font-size: 14px;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
line-height: 35px;
text-align: center;
transition: all 0.5s ease-in-out;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
}
.right-w3l ul.top-links li a i.fa:hover {
background-color: #AD1114;
}
.right-w3-2 {
float: right;
width: 82%;
}
.right-w3-2 ul.text-w3 li a {
color: #999;
font-size: 1.1em;
margin: 16px 0px 4px;
display: inline-block;
letter-spacing: 1px;
vertical-align: top;
}
.fotw3 ul.top-links li a i.fa:hover , .fotw33 ul.top-links li a i.fa:hover {
background-color: #478bca;
}
.services-grids ul {
list-style: none;
margin-top: 2em;
padding: 0;
}
.services-grids ul li:nth-child(1) {
margin: 0;
}
.services-grids ul li {
padding-bottom: 1em;
}
.services-grids ul li a {
color: #999;
font-size: 1em;
padding-left: 10px;
font-weight: 300;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
i.fa.fa-angle-double-right {
font-size: 1em;
color: #ee4f4f;
}
.services-grids ul li a:hover{
color:#ee4f4f;
padding-left: 1em;
transition:0.5s all;
-webkit-transition:0.5s all;
-moz-transition:0.5s all;
-o-transition:0.5s all;
-ms-transition:0.5s all;
}
li.get-w3 a {
color: #fff;
font-size: 1.1em;
}
li.get-w3 {
background: #ee4f4f;
padding: 0.5em 1em;
margin-right: 11em;
}
li.get-w3 a i {
margin-right: 0.8em;
}
.right-w3l {
position: absolute;
top: -7%;
right: 26%;
}
.copyrights {
text-align: center;
padding-top: 2em;
}
.copyrights p {
color: #fff;
letter-spacing: 2px;
font-size: 1em;
}
.copyrights p a {
color: #00a0f0;
}
.copyrights p a:hover{
color: #fff;
}
/*-- //Footer --*/
/*-- Inner-Pages --*/
/*-- team --*/
.team{
background:url(../images/55.jpg) no-repeat 0px 0px;
background-size:cover;
}
.jarallax {
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: 50% 50%;
}
.team-heading h3{
color:#fff;
}
.team-heading p{
color: #000000;
font-size: .9em;
margin: 1em auto 0;
width: 40%;
}
.agileits-team-grids {
margin: 4em 0 0 0;
}
.team-info{
position: relative;
overflow: hidden;
}
.team-info img{
width:100%;
border:solid 2px #333333;
}
.team-caption h4{
color: #FFFFFF;
font-size: 1.5em;
font-weight: 600;
margin: .5em 0 0 0;
}
.team-caption p {
color: #000;
font-size: .9em;
margin-top: 0.4em;
}
.team-caption ul{
padding: 0;
margin: 1em 0 0 0;
}
.team-caption ul li{
display: inline-block;
}
.team-caption ul li a {
color: #333;
text-align: center;
}
.team-caption ul li a i.fa.fa-facebook{
height: 30px;
width: 30px;
line-height: 30px;
border: solid 2px #FFF;
background: none;
color: #FFF;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.team-caption ul li a i.fa.fa-facebook:hover {
background: #3b5998;
}
.team-caption ul li a i.fa.fa-twitter{
height: 30px;
width: 30px;
line-height: 30px;
border: solid 2px #FFF;
background: none;
color: #FFF;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.team-caption ul li a i.fa.fa-twitter:hover{
background: #33ccff;
}
.team-caption ul li a i.fa.fa-google-plus{
height: 30px;
width: 30px;
line-height: 30px;
border: solid 2px #FFF;
background: none;
color: #FFF;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.team-caption ul li a i.fa.fa-google-plus:hover{
background: #DD4B39;
}
.team-caption {
background: #00a0f0;
padding: 1em;
position: absolute;
left: 0;
bottom: -105%;
text-align: center;
width: 100%;
height: 154px;
-webkit-transition: .5s all;
transition: .5s all;
-moz-transition: .5s all;
}
.team-info:hover .team-caption{
bottom: 0%;
}
.team-info:hover .team-caption {
bottom: 0%;
}
.jarallax {
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: 50% 50%;
}
/*-- //team --*/
/*-- News --*/
.w3l-event-grid a{
display:block;
}
.w3l-event-grid a img{
width:100%;
}
.news-grid-info {
margin-top: 1em;
}
.news-grid-info a {
font-size: 1.3em;
color: #ee4f4f;
text-decoration: none;
font-weight: 600;
text-transform: capitalize;
}
.news-grid-info a:hover{
color:#00a0f0;
}
.news-grid-info h5 {
color: #000;
font-size: 1.1em;
margin: 1em 0;
}
.news-grid-info p {
color: #777;
font-size: 1em;
margin: 1em 0 0 0;
line-height: 1.9em;
}
a.re-w3 {
border: 1px solid #000;
width: 29%;
margin: 1em auto;
padding: 0.6em 0em;
font-size: 1em;
letter-spacing: 1px;
color: #00a0f0;
text-align:center;
}
a.re-w3:hover {
color:#ee4f4f;
}
/*-- //News --*/
/*-- Single-Page --*/
.response {
margin: 1em 0 4em;
}
.response h3 {
color: #000000;
font-size: 1.5em;
margin: 0 0 .5em 0;
font-weight: 800;
line-height: 1.4em;
}
.media.response-info {
margin-top: 3em;
}
.media-left.response-text-left {
width: 13%;
float: left;
}
.media-left.response-text-left a img {
width: 100%;
}
.media-left.response-text-left h5 a {
color: #00a0f0;
}
.media-left.response-text-left h5 a:hover {
color: #3b3b3b;
text-decoration:none;
}
.response-text-left h5 {
font-size: 1em;
margin: 1em 0 0 0;
}
.response-text-right p {
color: #999999;
font-size: .9em;
margin: 0em 0 2em 0;
line-height: 1.8em;
}
.response-text-right ul {
padding: 0;
text-align: right;
}
.response-text-right ul li {
display: inline-block;
color: #b7b7b7;
font-size: .9em;
margin-right: 1em;
}
.response-text-right ul li a {
color: #00a0f0;
text-decoration: none;
}
.response-text-right ul li a:hover {
color: #3b3b3b;
}
.media.response-info {
margin-top: 1em;
}
.opinion h3{
color: #000000;
font-size: 1.5em;
margin: 0 0 .5em 0;
font-weight: 800;
line-height: 1.4em;
}
.opinion form{
margin: 1em 0 0 0;
}
.opinion form input[type="text"], .opinion form input[type="email"] {
width: 100%;
color: #999999;
outline: none;
font-size: .9em;
padding: .5em;
margin: 0 .5em 1em 0;
border: solid 1px #999999;
-webkit-appearance: none;
background: none;
}
.opinion form textarea {
resize: none;
width: 100%;
color: #999999;
font-size: .9em;
outline: none;
resize: none;
padding: .5em;
border: solid 1px #999999;
min-height: 125px;
background: none;
}
.opinion form input[type="submit"] {
color: #00a0f0;
font-size: 1em;
padding: .5em 0em;
border: solid 2px #00a0f0;
text-align: center;
text-decoration: none;
width: 22%;
margin: 1em 0 0 0;
background: none;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
margin: 1em auto;
display: inherit;
}
.opinion form input[type="submit"]:hover {
background: #00a0f0;
color: #FFFFFF;
}
/*-- blog --*/
.blog{
text-align:left;
}
.agile-blog-grid-left-img a img{
width: 100%;
margin-bottom: 1em;
}
.blog-left-left{
float: left;
width: 100px;
height: 100px;
background: #00a0f0;
text-align: center;
padding: 1.6em 0 0 0;
}
i.fa.fa-pencil{
color:#FFFFFF;
font-size:2.5em;
}
.blog-left-right {
float: left;
width: 83%;
margin-left: 1em;
}
.blog-left-right-top h4{
color: #000000;
font-size: 1.4em;
margin: 0 0 .5em 0;
font-weight: 800;
line-height: 1.4em;
}
.blog-left-right-top h4 a{
text-decoration:none;
color: #000000;
}
.blog-left-right-top h4 a:hover{
color:#00a0f0;
}
.blog-left-right-top p {
margin: 0 0 1em;
font-size: .9em;
font-weight: 500;
color: #333333;
}
.blog-left-right-top p a {
color: #00a0f0;
text-decoration: none;
}
.blog-left-right-top p a:hover{
color:#000000;
}
.blog-left-right-bottom p{
color: #999999;
font-size: .9em;
margin: 1em 0 2em 0;
line-height: 1.8em;
}
.blog-left-right-bottom p span{
display:block;
margin:1em 0 0 0;
}
.blog-left-right-bottom a {
color: #00a0f0;
font-size: 1em;
padding: .5em 1em;
border: solid 2px #00a0f0;
text-align: center;
text-decoration: none;
margin: 2em auto 0;
background: none;
}
.blog-left-right-bottom a:hover {
background: #00a0f0;
color: #FFFFFF;
}
.agile-blog-grid:nth-child(2){
margin:2em 0;
}
.categories h3 {
color: #000000;
font-size: 1.5em;
margin: 0 0 .5em 0;
font-weight: 800;
line-height: 1.4em;
}
.categories ul {
margin: 1em 0 0 0;
padding: 0;
}
.categories ul li {
display: block;
background: url(../images/arrow.png) no-repeat 0px 2px;
margin-bottom: 1em;
}
.categories ul li a {
font-size: .9em;
margin: 0;
color: #999999;
padding-left: 2em;;
}
.categories ul li a:hover {
color: #ee4f4f;
text-decoration: none;
transition: .5s all;
-webkit-transition: .5s all;
-moz-transition: .5s all;
-o-transition: .5s all;
-ms-transition: .5s all;
}
.categories:nth-child(2) {
margin: 1em 0 0 0;
}
.pagination {
margin: 4em 0 0 0;
}
.pagination > li > a, .pagination > li > span {
color: #999999;
}
/*-- //blog --*/
/*-- //Single-Page --*/
/*-- Short-codes --*/
.code-banner{
padding: 1em 0 2em;
}
.codes-heading {
text-align: center;
}
h3.hdg {
font-size: 2.5em;
color:#00a0f0 !important;
}
.show-grid [class^=col-] {
background: #fff;
text-align: center;
margin-bottom: 10px;
line-height: 2em;
border: 10px solid #f0f0f0;
}
.show-grid [class*="col-"]:hover {
background: #e0e0e0;
}
.grid_3{
margin-bottom:2em;
}
.xs h3, h3.m_1{
color:#000;
font-size:1.7em;
font-weight:300;
margin-bottom: 1em;
}
.grid_3 p{
color: #555;
font-size: 0.85em;
margin-bottom: 1em;
font-weight: 300;
}
.grid_4{
background:none;
}
.label {
font-weight: 300 !important;
border-radius:4px;
}
.grid_5{
background:none;
padding:2em 0;
}
.grid_5 h3, .grid_5 h2, .grid_5 h1, .grid_5 h4, .grid_5 h5, h3.hdg {
margin-bottom:1em;
color: #333;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
border-top: none !important;
}
.tab-content > .active {
display: block;
visibility: visible;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
z-index: 0;
}
.badge-primary {
background-color: #03a9f4;
}
.badge-success {
background-color: #8bc34a;
}
.badge-warning {
background-color: #ffc107;
}
.badge-danger {
background-color: #e51c23;
}
.grid_3 p{
line-height: 2em;
color: #888;
font-size: 0.9em;
margin-bottom: 1em;
font-weight: 300;
}
.bs-docs-example {
margin: 1em 0;
}
section#tables p {
margin-top: 1em;
}
.tab-container .tab-content {
border-radius: 0 2px 2px 2px;
border: 1px solid #e0e0e0;
padding: 16px;
background-color: #ffffff;
}
.table td, .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
padding: 15px!important;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
font-size: 0.9em;
color: #555;
border-top: none !important;
}
.tab-content > .active {
display: block;
visibility: visible;
}
.label {
font-weight: 300 !important;
}
.label {
padding: 4px 6px;
border: none;
text-shadow: none;
}
.nav-tabs {
margin-bottom: 1em;
}
.alert {
font-size: 0.85em;
}
h1.t-button,h2.t-button,h3.t-button,h4.t-button,h5.t-button {
line-height:1.8em;
margin-top:0.5em;
margin-bottom: 0.5em;
}
li.list-group-item1 {
line-height: 2.5em;
}
.input-group {
margin-bottom: 20px;
}
.in-gp-tl{
padding:0;
}
.in-gp-tb{
padding-right:0;
}
.list-group {
margin-bottom: 48px;
}
ol {
margin-bottom: 44px;
}
h2.typoh2{
margin: 0 0 10px;
}
@media (max-width:768px){
.grid_5 {
padding: 0 0 1em;
}
.grid_3 {
margin-bottom: 0em;
}
}
@media (max-width:640px){
h1, .h1, h2, .h2, h3, .h3 {
margin-top: 0px;
margin-bottom: 0px;
}
.grid_5 h3, .grid_5 h2, .grid_5 h1, .grid_5 h4, .grid_5 h5, h3.hdg, h3.bars {
margin-bottom: .5em;
}
.progress {
height: 10px;
margin-bottom: 10px;
}
ol.breadcrumb li,.grid_3 p,ul.list-group li,li.list-group-item1 {
font-size: 14px;
}
.breadcrumb {
margin-bottom: 10px;
}
.well {
font-size: 14px;
margin-bottom: 10px;
}
h2.typoh2 {
font-size: 1.5em;
}
.grid_4 {
margin-top: 30px;
}
}
@media (max-width:480px){
.table h1 {
font-size: 26px;
}
.table h2 {
font-size: 23px;
}
.table h3 {
font-size: 20px;
}
.label {
font-size: 53%;
}
.alert,p {
font-size: 14px;
}
.pagination {
margin: 20px 0 0px;
}
}
@media (max-width: 320px){
.grid_4 {
margin-top: 18px;
}
.alert, p,ol.breadcrumb li, .grid_3 p,.well, ul.list-group li, li.list-group-item1,a.list-group-item {
font-size: 13px;
}
.alert {
padding: 10px;
margin-bottom: 10px;
}
ul.pagination li a {
font-size: 14px;
padding: 5px 11px !important;
}
.list-group {
margin-bottom: 10px;
}
.well {
padding: 10px;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
font-size: 0.81em;
}
.table td, .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
padding: 12px!important;
}
.codes .row {
margin: 0;
}
}
/*-- //Shortcodes --*/
/*-- icons --*/
.icon-box {
padding: 8px 15px;
background: rgba(149, 149, 149, 0.18);
margin: 1em 0 1em 0;
border: 5px solid #ffffff;
text-align: left;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-size: 13px;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
-moz-transition: 0.5s all;
cursor: pointer;
}
.bs-glyphicons li {
float: left;
width: 18%;
height: 115px;
padding: 10px;
line-height: 1.4;
text-align: center;
font-size: 12px;
list-style-type: none;
background: rgba(149, 149, 149, 0.18);
margin: 1%;
}
.bs-glyphicons li .glyphicon {
margin-top: 5px;
margin-bottom: 10px;
font-size: 24px;
color: #282a2b;
}
.icons a {
color: #999;
}
.bs-glyphicons .glyphicon-class {
display: block;
text-align: center;
word-wrap: break-word;
}
.icon-box i {
margin-right: 10px !important;
font-size: 20px !important;
color: #282a2b !important;
}
.icon-box:hover {
background: #000;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
-moz-transition: 0.5s all;
}
/*-- //icons --*/
/*-- Gallery --*/
.agileits_portfolio_grids {
margin: 2em 0 0 0;
}
.hovereffect {
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
text-align: center;
}
.hovereffect .overlay {
position: absolute;
overflow: hidden;
width: 80%;
height: 80%;
left: 10%;
top: 10%;
border-bottom: 1px solid #FFF;
border-top: 1px solid #FFF;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: scale(0,1);
-ms-transform: scale(0,1);
transform: scale(0,1);
}
.hovereffect:hover .overlay {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.hovereffect img {
display: block;
position: relative;
-webkit-transition: all 0.35s;
transition: all 0.35s;
margin-bottom: 7px;
}
.hovereffect:hover img {
filter: brightness(0.6);
-webkit-filter: brightness(0.6);
-moz-filter: brightness(0.6);
-o-filter: brightness(0.6);
-ms-filter: brightness(0.6);
}
.hovereffect h4 {
text-transform: uppercase;
text-align: center;
position: relative;
font-size: 1.6em;
background-color: rgba(0, 0, 0, 0.68);
color: #ee4f4f;
padding: 0.5em 0em;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(0,-100%,0);
transform: translate3d(0,-100%,0);
letter-spacing: 2px;
margin-top: 3.5em;
}
.hovereffect p{
color: #FFF;
line-height: 1.8em;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0);
}
.hovereffect:hover p, .hovereffect:hover h4 {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
.agileits_portfolio_grid {
padding: 0 4px;
}
/*-- //Gallery --*/
/*-- Mail --*/
.w3agile_mail_grid input[type="text"], .w3agile_mail_grid input[type="email"], .w3agile_mail_grids textarea {
outline: none;
border: 2px solid #000;
font-size: 14px;
color: #898484;
padding: 10px;
width: 47%;
background: #fff;
}
.w3agile_mail_grid input[type="email"],.w3agile_mail_grid input[type="text"]:nth-child(2){
margin:1em 0 2em;
}
.w3agile_mail_grid input[type="text"] {
margin-right: 2.1em;
}
.w3agile_mail_grids textarea {
resize: none;
min-height: 18em;
margin: 0 auto;
width: 97.3% !important;
}
.w3agile_mail_grids input[type="submit"] {
outline: none;
border: none;
font-size: 1em;
color: #fff;
padding: 0.8em 0em;
width: 21%;
background: #ee4f4f;
margin: 2em auto 0em;
text-transform: uppercase;
}
.w3agile_mail_grids input[type="submit"]:hover{
background:#00a0f0;
}
.faq li {
margin-top: 0.5em;
}
.faq li:nth-child(1) {
margin: 0;
}
.faq li a {
padding: 1.2em;
width: 100%;
display: block;
position: relative;
color: #fff;
text-decoration: none;
background: #00a0f0;
text-align: center;
font-size: 1.1em;
text-transform: uppercase;
letter-spacing: 1px;
}
.faq li a:hover,.faq li a.active{
color: #fff;
background:#ee4f4f;
}
.faq span.glyphicon {
margin-left: 1em;
vertical-align: middle;
font-size: 1.1em;
top: 0;
}
.faq li a.active span.glyphicon {
-webkit-transform: rotatex(180deg);
transform: rotatex(180deg);
-moz-transform: rotatex(180deg);
-o-transform: rotatex(180deg);
-ms-transform: rotatex(180deg);
}
.faq iframe {
width: 100%;
min-height: 25em;
border: none;
margin:0 0 -6px;
}
/*-- //Mail --*/
/*-- //Inner-Pages --*/
/*--responsive--*/
@media(max-width: 1680px){
}
@media(max-width: 1600px){
}
@media(max-width: 1440px){
.test-review p {
margin: 2em 0em;
}
.right-w3l {
right: 23%;
}
.app-sub-w3 {
width: 86%;
}
.ag-w3 .dropdown-menu {
min-width: 227px !important;
}
}
@media(max-width: 1366px){
.agileits-banner-info h3 {
font-size: 2.8em;
}
.banner {
min-height: 780px;
}
.app-w3 {
margin-top: 10em;
padding-bottom: 3em;
}
.app-sub-w3 {
margin-top: 0.3em;
}
.app-sub-w3 {
width: 90%;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 2.8em;
}
.feature-w3l, .tips.w3agile, .welcome, .team, #review, .events, .blog, .codes, .typo, #gallery, .mail {
padding: 4.5em 0;
}
.test-review p {
letter-spacing: 0px;
}
.right-w3l {
right: 22%;
}
.banner-2 {
min-height: 340px;
}
}
@media(max-width: 1280px){
.logo h1 a, .logo-fo h2 a {
font-size: 1.1em;
}
.agileits-banner-info h3 {
font-size: 2.6em;
letter-spacing: 5px;
}
.app-w3 {
margin-top: 9em;
}
.banner {
min-height: 761px;
}
.app-w3 h4 {
font-size: 1.7em;
}
.app-sub-w3 {
width: 92%;
}
.ag-w3 .dropdown-menu {
min-width: 214px !important;
}
.right-w3l {
right: 19.5%;
}
}
@media(max-width: 1080px){
.logo h1 a, .logo-fo h2 a {
font-size: 1em;
}
.agileits-banner-info h3 {
font-size: 2.4em;
letter-spacing: 4px;
}
.agileits-banner-info p {
margin: 1.5em auto;
}
.callbacks_tabs {
left: 44.5%;
}
.app-w3 {
margin-top: 8em;
}
.banner {
min-height: 700px;
}
.agileits-banner-info {
padding-top: 0em;
}
.app-w3 h4 {
font-size: 1.55em;
}
.app-sub-w3 {
width: 94%;
}
.app-sub-w3 form input[type="submit"] {
letter-spacing: 0px;
margin-left: 1em;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 2.5em;
}
.ag-w3 .dropdown-menu {
min-width: 183px !important;
font-size: 13px;
}
.feature-w3l, .tips.w3agile, .welcome, .team, #review, .events, .blog, .codes, .typo, #gallery, .mail {
padding: 4em 0;
}
.open-hours-left h4 {
font-size: 1.3em;
}
.open-hours-left:nth-child(1) {
padding: 3.35em 0;
}
.open-hours-left h5 {
font-size: 1.1em;
}
.open-hours-left h6 {
font-size: 0.95em;
}
.open-hours-left {
padding: 4.3em 0;
}
.welcome-left p {
margin-top: 1.5em;
}
figure.effect-julia h4 {
font-size: 1.8em;
}
.tip-grid figure p {
letter-spacing: 0px;
}
figure.effect-julia h4 {
margin-bottom: 1.5em;
}
.feature-grid h4 {
font-size: 1.39em;
}
p {
letter-spacing: 0px;
}
li.get-w3 {
margin-right: 9em;
}
.right-w3l {
right: 17%;
}
.services-grids {
padding: 0 !important;
}
.footer {
padding: 4em 0em 3em;
}
.team-caption h4 {
font-size: 1.3em;
}
.team-caption p {
font-size: .85em;
}
.team-caption {
height: 142px;
}
.blog-left-left {
width: 80px;
height: 80px;
}
.blog-left-right-top h4 {
font-size: 1.2em;
}
.hovereffect h4 {
font-size: 1.3em;
letter-spacing: 1px;
margin-top: 3.6em;
}
.banner-2 {
min-height: 320px;
}
}
@media(max-width: 1050px){
figure.effect-julia p {
font-size: 13px;
}
.hovereffect h4 {
margin-top: 3.8em;
}
.right-w3l {
right: 15%;
}
}
@media(max-width: 1024px){
.agileits-banner-info h3 {
font-size: 2.25em;
}
.navbar-nav > li > a {
padding: 8px 15px 8px;
font-size: 1em;
}
.app-w3 h4 {
font-size: 1.4em;
}
.banner {
min-height: 672px;
}
.ag-w3 .dropdown-menu {
min-width: 174px !important;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 2.4em;
}
.test-review p {
font-size: 0.95em;
}
.test-review p {
font-size: 0.95em;
}
li.get-w3 {
margin-right: 8em;
}
.hovereffect h4 {
margin-top: 3.6em;
}
}
@media(max-width: 991px){
.agile1{
float: left;
width: 33%;
}
.logo {
float: left;
width: 36%;
}
.ph-agile {
float:right;
width:21%;
}
.logo h1 a, .logo-fo h2 a {
font-size: 0.9em;
letter-spacing: 1px;
}
.ph-agile p span {
font-size: 1em;
}
.ph-agile p{
width: 155px;
}
.logo h1 a span, .logo-fo h2 a span {
font-size: 13px;
}
.agileits-banner-info h3 {
font-size: 2.1em;
}
.agileits-banner-info p {
margin: 1.3em auto;
letter-spacing: 6px;
}
.callbacks_tabs a:after {
height: 15px;
width: 15px;
}
.app-w3 h4 {
font-size: 1.3em;
}
.callbacks_tabs {
left: 42.7%;
}
.navbar {
margin-bottom: 8px !important;
}
.app-w3 {
margin-top: 7em;
}
.ag-w3 .dropdown-menu {
min-width: 168px !important;
}
.app-sub-w3 form input[type="submit"] {
font-size: 0.95em;
}
.banner {
min-height: 630px;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 2.35em;
}
.welcome-left {
float: left;
width: 50%;
}
.welcome-right {
float: right;
width: 50%;
}
.open-hours-left {
float: left;
width: 25%;
}
.welcome-left-grids {
float: left;
width: 50%;
}
.open-hours-left h4 {
font-size: 1.1em;
}
.open-hours-left:nth-child(1) {
padding: 4.3em 0;
}
.open-hours-left h5 {
font-size: 0.9em;
}
.open-hours-left h6 {
font-size: 0.8em;
}
.open-hours-left {
padding: 5.1em 0;
}
.tip-grid {
float: left;
width: 50%;
}
figure.effect-julia h4 {
margin-bottom: 1em;
font-size: 1.5em;
}
.feature-grid {
float: left;
width: 25%;
}
.icons-w3 i {
height: 150px;
width: 150px;
font-size: 3em;
line-height: 145px;
}
.feature-grid h4 {
font-size: 1.02em;
}
.test-review p {
font-size: 0.9em;
}
.test-monials h5 {
font-size: 1.8em;
}
.services-grids, .ftr-grid{
float: left;
width: 33%;
}
.services-grids ul li a {
font-size: 0.81em;
}
.ftr-grid p {
font-size: 0.85em;
}
.right-w3l {
right: 17%;
}
li.get-w3 {
margin-right: 6em;
}
.agileits-team-grid {
float: left;
width: 25%;
padding: 0px 8px;
}
.team-caption h4 {
font-size: 1em;
}
.team-caption p {
font-size: .8em;
}
.team-caption ul li a i {
height: 20px;
width: 20px;
line-height: 27px;
font-size: 0.8em;
}
.team-caption {
height: 110px;
}
.w3l-event-grid {
float: left;
width: 50%;
}
.agileits_portfolio_grid {
float: left;
width: 33%;
}
.hovereffect h4 {
margin-top: 3.2em;
font-size: 1.1em;
}
.w3agile_mail_grid input[type="text"] {
margin-right: 1.2em;
}
.w3agile_mail_grids textarea {
min-height: 16em;
}
.agile-blog-grid-left {
float: left;
width: 60%;
}
.blog-left-left {
width: 54px;
height: 54px;
padding: 1.2em 0 0 0;
font-size: 0.8em;
}
.agile-blog-grid-right {
float: right;
width: 40%;
}
.blog-left-right-top h4 {
font-size: 1.1em;
}
.categories ul li a {
font-size: .82em;
}
.banner-2 {
min-height: 300px;
}
}
@media(max-width: 800px){
.ph-agile {
float: right;
width: 26%;
}
.agile1, .ph-agile {
padding-top: 2em;
}
.navbar {
margin-bottom: 0px !important;
}
.navbar-nav > li > a {
padding: 7px 15px 7px;
}
.agileits-banner-info p {
margin: 1em auto;
}
.app-w3 {
margin-top: 6.5em;
padding-bottom: 2.5em;
}
.app-w3 h4 {
font-size: 1.2em;
}
.app-sub-w3 {
width: 97%;
padding: 1em 0.5em 2em;
}
.banner {
min-height: 562px;
}
.ag-w3 .dropdown-menu {
min-width: 140px !important;
}
.app-sub-w3 form input[type="submit"] {
font-size: 0.8em;
padding: 1em 0em;
}
.feature-w3l, .tips.w3agile, .welcome, .team, #review, .events, .blog, .codes, .typo, #gallery, .mail {
padding: 3.5em 0;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 2.2em;
}
.right-w3l {
right: 10%;
}
.banner-2 {
min-height: 270px;
}
.media-left.response-text-left {
width: 20%;
}
}
@media(max-width: 768px){
.agile1 {
float: left;
width: 32%;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 2.1em;
}
li.get-w3 {
margin-right: 5em;
}
.right-w3l {
right: 8%;
}
a.re-w3 {
width: 36%;
}
.news-grid-info a {
font-size: 1.2em;
}
.test-review p {
font-size: 0.85em;
}
}
@media(max-width: 767px){
.navbar-toggle {
float: left !important;
}
.icon-bar {
background-color: #ee4f4f !important;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: #00a0f0 !important;
}
.navbar-nav {
margin: 18.5px -15px !important;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
border-color: #00a0f0 !important;
background: rgba(238, 79, 79, 0.5);
}
.navbar-nav > li > a {
padding: 9px 15px 9px;
}
.agileits-banner-info {
padding-top: 5.5em;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #fff !important;
}
}
@media(max-width: 736px){
.ph-agile p span {
font-size: 0.95em;
}
.agileits-banner-info h3 {
font-size: 1.8em;
}
.agileits-banner-info p {
font-size: 0.9em;
}
.agileits-banner-info {
padding-top: 4em;
}
.callbacks_tabs a:after {
height: 14px;
width: 14px;
}
.callbacks_tabs {
left: 41%;
}
.app-w3 h4 {
font-size: 1.15em;
}
.app-sub-w3 input[type="text"], .ag-w3 {
font-size: 0.85em;
padding: 11px 10px;
}
input#timepicker {
padding: 11px 10px;
}
.app-sub-w3 form input[type="submit"] {
font-size: 0.75em;
}
.banner {
min-height: 510px;
}
.ag-w3 .dropdown-menu {
min-width: 120px !important;
}
.dropdown-menu > li > a {
padding: 3px 15px;
}
.feature-w3l, .tips.w3agile, .welcome, .team, #review, .events, .blog, .codes, .typo, #gallery, .mail {
padding: 3em 0;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 2em;
margin-bottom: 1em;
}
.open-hours-left h5 {
font-size: 0.85em;
}
.welcome-left p {
font-size: 0.95em;
}
figure.effect-julia h4 {
margin-bottom: 0.5em;
}
.feature-grid {
width: 50%;
}
.feature-grid:nth-child(3), .feature-grid:nth-child(4) {
margin-top: 1.5em;
}
.feature-grid h4 {
font-size: 1.4em;
}
.icons-w3 i {
height: 180px;
width: 180px;
margin: 3px;
font-size: 4em;
line-height: 172px;
}
.test-monials h5 {
font-size: 1.7em;
}
.services-grids ul li a {
font-size: 0.77em;
}
.right-w3l {
right: 7%;
}
.news-grid-info p {
font-size: 0.95em;
}
a.re-w3 {
font-size: 1em;
letter-spacing: 0px;
}
.banner-2 {
min-height: 220px;
}
.blog-left-right-top p {
font-size: .8em;
}
.categories ul li a {
font-size: .78em;
}
.hovereffect h4 {
margin-top: 3em;
}
.ph-agile {
float: right;
width: 27%;
}
.blog-left-right {
width: 86%;
margin-left: 0em;
margin-top: 1em;
}
.media-left.response-text-left {
width: 24%;
}
.navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
text-align: center;
}
}
@media(max-width: 667px){
.ph-agile p span {
font-size: 0.9em;
}
.ph-agile p {
width: 139px;
height: 41px;
}
.logo h1 a, .logo-fo h2 a {
font-size: 0.85em;
letter-spacing: 0px;
}
.ph-agile i {
font-size: 1.3em;
}
.navbar-toggle {
margin-top: 0px;
}
.agileits-banner-info h3 {
font-size: 1.7em;
}
.agileits-banner-info h3 {
font-size: 1.7em;
}
.agileits-banner-info {
padding-top: 3.5em;
}
.app-w3 h4 {
font-size: 1.1em;
}
.app-sub-w3 form input[type="submit"] {
font-size: 0.7em;
padding: 1.2em 0em;
margin-left: 0.5em;
}
.app-w3 {
margin-top: 5.5em;
padding-bottom: 2.2em;
}
.banner {
min-height: 480px;
}
.welcome-left {
width: 100%;
}
.welcome-right {
width: 100%;
margin-top: 2.5em;
}
.open-hours-left h4 {
font-size: 1.4em;
}
.open-hours-left h6 {
font-size: 1.1em;
}
.open-hours-left h5 {
font-size: 1.2em;
}
.open-hours-left {
padding: 5.3em 0;
}
.welcome-left p {
margin-top: 2em;
}
.tip-grid {
width: 100%;
}
.tip-grid:nth-child(2) {
margin-top: 3em;
}
figure.effect-julia h4 {
margin-bottom: 2.4em;
font-size: 1.8em;
}
figure.effect-julia p {
width: 87%;
}
.open-hours-left:nth-child(1) {
padding: 4.32em 0;
}
figure.effect-julia p {
width: 87%;
margin: 1em auto;
padding: 9px 0px;
font-size: 14px;
}
.test-review p {
font-size: 0.8em;
}
.test-monials h5 {
font-size: 1.6em;
}
.services-grids, .ftr-grid {
float: left;
width: 50%;
}
.ftr-grid.fg2 {
float: left;
width: 100%;
margin-top:1em;
}
.services-grids ul li a {
font-size: 0.9em;
}
.ftr-grid p {
font-size: 0.9em;
margin-top: 3%;
}
.local {
width: 7%;
}
.ftr-text {
width: 93%;
}
.copyrights p {
letter-spacing: 1px;
}
.footer {
padding: 3em 0em;
}
li.get-w3 a {
font-size: 1em;
}
li.get-w3 {
padding: 0.4em 0.8em;
}
li.get-w3 {
margin-right: 4em;
}
.right-w3l {
top: -5%;
}
.agileits-team-grid {
width: 50%;
padding: 0px 25px;
}
.agileits-team-grid:nth-child(3), .agileits-team-grid:nth-child(4) {
margin-top: 2.5em;
}
.team-caption h4 {
font-size: 1.4em;
}
.team-caption p {
font-size: .9em;
}
.team-caption {
height: 148px;
}
.news-grid-info p {
font-size: 0.9em;
}
.news-grid-info a {
font-size: 1.1em;
}
.news-grid-info h5 {
font-size: 1em;
}
a.re-w3 {
font-size: 0.95em;
width: 38%;
}
.agile-blog-grid-left {
width: 100%;
}
.agile-blog-grid-right {
width: 100%;
}
.hovereffect h4 {
margin-top: 2.8em;
font-size: 1em;
}
.w3agile_mail_grid input[type="email"], .w3agile_mail_grid input[type="text"]:nth-child(2) {
margin: 1em 0 1.5em;
}
.w3agile_mail_grid input[type="text"] {
margin-right: 1em;
}
.w3agile_mail_grid input[type="text"], .w3agile_mail_grid input[type="email"], .w3agile_mail_grids textarea {
font-size: 13px;
}
.w3agile_mail_grids input[type="submit"] {
margin: 1em auto 1em;
}
.navbar-nav > li > a {
padding: 8px 15px 8px;
letter-spacing: 0px;
}
.agile1 {
float: left;
width: 30%;
}
.callbacks_tabs {
left: 39%;
}
.services-grids {
padding: 0 15px !important;
}
.dropdown-menu > li > a {
font-size: 0.9em;
}
}
@media(max-width: 640px){
.app-sub-w3 form input[type="submit"] {
font-size: 0.8em;
padding: 1em 0em;
margin-top: 1.5em;
width: 27%;
}
.app-sub-w3 input[type="text"], .ag-w3 {
width: 23%;
}
.app-sub-w3 {
width: 93%;
padding: 1em 0.5em 1em;
}
.open-hours-left h5 {
font-size: 1.1em;
}
.open-hours-left h6 {
font-size: 1em;
}
.open-hours-left h4 {
font-size: 1.3em;
}
.open-hours-left:nth-child(1) {
padding: 4.38em 0;
}
figure.effect-julia p {
font-size: 13px;
}
li.get-w3 {
margin-right: 3em;
}
.ag-w3 .dropdown-menu {
min-width: 130px !important;
}
}
@media(max-width: 600px){
.logo h1 a, .logo-fo h2 a {
font-size: 0.8em;
}
.logo {
float: left;
width: 40%;
}
.agileits-banner-info h3 {
font-size: 1.5em;
}
.callbacks_tabs {
top: 102%;
}
.app-w3 {
margin-top: 5em;
padding-bottom: 2em;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 1.9em;
}
.navbar-nav > li > a {
font-size: 0.9em;
}
li.get-w3 {
margin-right: 2em;
}
.team-caption h4 {
font-size: 1.2em;
}
.hovereffect h4 {
font-size: 0.95em;
}
.services-grids ul li a {
font-size: 0.84em;
}
.dropdown-menu {
min-width: 100px !important;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
font-size: 0.9em;
}
.app-sub-w3 input[type="text"], .ag-w3 {
width: 24%;
}
}
@media(max-width: 568px){
.logo h1 a, .logo-fo h2 a {
font-size: .75em;
}
.ph-agile p span {
font-size: 0.85em;
margin-left: 0.3em;
}
.ph-agile i {
font-size: 1.2em;
}
.ph-agile p{
width: 124px;
}
.logo-w3l {
font-size: 2.5em;
}
.agileits-banner-info h3 {
font-size: 1.4em;
}
.app-w3 h4 {
font-size: 1.05em;
}
.app-w3 {
margin-top: 4.5em;
}
.agileits-banner-info p {
font-size: 0.85em;
}
.app-sub-w3 form input[type="submit"] {
font-size: 0.75em;
}
.feature-w3l, .tips.w3agile, .welcome, .team, #review, .events, .blog, .codes, .typo, #gallery, .mail {
padding: 2.5em 0;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 1.8em;
}
h3.tittle span, h3.tittle-one span, .agile-title h3 span, h4.tittle-two span, .team-heading h3 span, .team-w3l h3 span, h3.w3l-sing span, h3.tittle-agw3 span, h3.tittle-agilew3 span, h3.w3l_head span, h3.mail-w3 span {
width: 58px;
margin: 9px auto 0;
}
.banner-2 {
min-height: 200px;
}
.team-caption h4 {
font-size: 1.1em;
}
.team-caption {
height: 134px;
}
.agileits_portfolio_grid {
float: left;
width: 100%;
}
.hovereffect img {
margin-bottom: 18px;
}
.hovereffect .overlay {
height: 75%;
}
.hovereffect h4 {
font-size: 1.6em;
letter-spacing: 2px;
margin-top: 5em;
}
.w3agile_mail_grids textarea {
min-height: 15em;
}
.w3agile_mail_grids input[type="submit"] {
font-size: 0.9em;
width: 22%;
}
.faq li a {
font-size: 1em;
}
.w3agile_mail_grid input[type="text"] {
margin-right: 0.8em;
}
.services-grids ul li a {
font-size: 0.78em;
}
a.re-w3 {
font-size: 0.85em;
width: 41%;
}
.test-review p {
font-size: 0.75em;
}
.navbar-toggle {
padding: 8px 9px !important;
}
.navbar-toggle .icon-bar {
width: 20px !important;
}
.navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 16px;
}
.ag-w3 .dropdown-menu {
min-width: 120px !important;
}
}
@media(max-width: 480px){
.logo h1 a, .logo-fo h2 a {
font-size: .7em;
}
.agile1 {
width: 28%;
}
.logo {
padding: 0 !important;
width: 40%;
}
.ph-agile p span {
font-size: 0.75em;
margin-left: 0.4em;
}
.ph-agile p {
width: 114px;
height: 40px;
}
.ph-agile {
width: 31%;
}
.agileits-banner-info h3 {
font-size: 1.25em;
}
.agileits-banner-info p {
font-size: 0.75em;
letter-spacing: 5px;
}
.callbacks_tabs a:after {
height: 13px;
width: 13px;
}
.callbacks_tabs li {
margin: 0px 5px;
}
.callbacks_tabs {
top: 101%;
left: 37%;
}
.agileits-banner-info {
padding-top: 3em;
}
.app-sub-w3 input[type="text"], .ag-w3 {
width: 32%;
font-size: 0.8em;
padding: 9px 8px;
}
.agileits-banner-info {
padding-top: 2.5em;
}
.app-sub-w3 form input[type="submit"] {
width: 32%;
padding: 0.95em 0em;
}
input#timepicker {
padding: 10px 8px;
}
.banner {
min-height: 455px;
}
.agile1, .ph-agile {
padding-top: 1.5em;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 1.75em;
}
h3.tittle span, h3.tittle-one span, .agile-title h3 span, h4.tittle-two span, .team-heading h3 span, .team-w3l h3 span, h3.w3l-sing span, h3.tittle-agw3 span, h3.tittle-agilew3 span, h3.w3l_head span, h3.mail-w3 span {
width: 48px;
}
.app-w3 h4 {
font-size: 1em;
}
.welcome-left p {
font-size: 0.9em;
}
.open-hours-left h4 {
font-size: 1.15em;
}
.open-hours-left h6 {
font-size: 0.9em;
}
.open-hours-left h5 {
font-size: 1em;
}
.open-hours-left:nth-child(1) {
padding: 4.55em 0;
}
.welcome-left-grids {
margin-top: 2.5em;
}
figure.effect-julia h4 {
margin-bottom: 1.5em;
font-size: 1.5em;
}
figure.effect-julia p {
margin: 0.7em auto;
padding: 8px 0px;
}
.feature-grid {
width: 100%;
}
.feature-grid:hover span {
width: 24%;
}
.services-grids, .ftr-grid {
width: 100%;
}
.services-grids ul li a {
font-size: 0.85em;
}
.logo-fo {
margin:0.5em 0em 0.5em;
}
.local i {
font-size: 1.3em;
}
.ftr-text {
width: 90%;
}
.ftr-grid h3, .services-grids h3 {
font-size: 1.35em;
letter-spacing: 0px;
margin-bottom: 0.5em;
}
.services-grids ul {
margin-top: 1.3em;
}
.copyrights p {
font-size: 0.9em;
line-height: 2em;
}
.footer {
padding: 3em 0em 2em;
}
.agile1 {
padding: 1.5em 0.5em 0em 0em;
}
.navbar-nav > li > a {
font-size: 0.85em;
}
li.get-w3 a {
font-size: 0.95em;
}
.right-w3l ul.top-links li a i.fa {
width: 33px;
height: 33px;
font-size: 13px;
line-height: 34px;
}
li.get-w3 {
padding: 0.35em 0.8em;
}
li.get-w3 {
margin-right: 7em;
}
.right-w3l {
top: -4%;
right: 6%;
}
.agileits-team-grid {
padding: 0px 10px;
}
.agileits-team-grid:nth-child(3), .agileits-team-grid:nth-child(4) {
margin-top: 1.5em;
}
.team-caption h4 {
font-size: 1em;
}
.news-grid-info a {
font-size: 0.95em;
}
.news-grid-info h5 {
font-size: 0.9em;
margin: 0.8em 0;
}
.news-grid-info p {
font-size: 0.8em;
}
a.re-w3 {
font-size: 0.75em;
width: 47%;
padding: 0.7em 0em;
}
.blog-left-right-top h4 {
font-size: 0.95em;
}
.blog-left-right-bottom p {
font-size: .85em;
}
.response-text-right p {
font-size: .85em;
}
.response-text-right ul li {
font-size: .85em;
}
.response-text-left h5 {
font-size: 0.9em;
}
.opinion h3 {
font-size: 1.25em;
}
.opinion form textarea {
font-size: .85em;
}
.opinion form input[type="text"] {
font-size: .85em;
}
.opinion form input[type="submit"] {
font-size: 0.9em;
width: 25%;
}
.categories h3 {
color: #000000;
font-size: 1.25em;
}
.hovereffect h4 {
font-size: 1.5em;
margin-top: 4.5em;
}
.faq iframe {
min-height: 20em;
}
.w3agile_mail_grid input[type="text"] {
margin-right: 0em;
padding: 9px;
width: 97%;
}
.w3agile_mail_grids textarea {
min-height: 14em;
}
.w3agile_mail_grids input[type="submit"] {
width: 27%;
}
.w3agile_mail_grid input[type="text"], .w3agile_mail_grid input[type="email"], .w3agile_mail_grids textarea {
width: 97%;
}
.feature-grid:nth-child(2), .feature-grid:nth-child(3), .feature-grid:nth-child(4) {
margin-top: 1.5em;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
font-size: 0.85em;
}
.ag-w3 .dropdown-menu {
min-width: 136px !important;
}
}
@media(max-width: 414px){
.agile1 {
width: 100%;
padding: 1.3em 1em 0em;
}
.logo {
width: 50%;
}
.ph-agile {
width: 50%;
padding-top: 3em;
}
.agileits-banner-info p {
letter-spacing: 4px;
}
.ph-agile p {
width: 126px;
}
.ph-agile p span {
font-size: 0.8em;
}
.app-sub-w3 form input[type="submit"] {
width: 35%;
font-size: 0.7em;
}
.agileits-banner-info h3 {
letter-spacing: 3px;
}
.agileits-banner-info {
padding-top: 2em;
}
.callbacks_tabs {
top: 94%;
left: 35%;
}
.app-w3 {
margin-top: 4em;
}
.navbar {
min-height: 38px!important;
}
.navbar-toggle .icon-bar {
width: 19px !important;
}
.navbar-toggle {
padding: 7px 8px !important;
}
.callbacks_tabs a:after {
height: 12px;
width: 12px;
}
.welcome-left p {
font-size: 0.85em;
}
.open-hours-left h4 {
font-size: 1em;
}
.open-hours-left h6 {
font-size: 0.85em;
}
.open-hours-left h5 {
font-size: 0.9em;
}
.open-hours-left:nth-child(1) {
padding: 4.67em 0;
}
.welcome-right {
margin-top: 2em;
}
.welcome-left-grids {
width: 100%;
}
.welcome-left-grids {
margin-top: 2em;
}
figure.effect-julia p {
width: 98%;
}
figure.effect-julia h4 {
margin-bottom: 0.9em;
font-size: 1.4em;
}
.tip-grid:nth-child(2) {
margin-top: 2em;
}
.test-review p {
font-size: 0.7em;
}
li.get-w3 {
margin-right: 4em;
}
.ftr-grid h3, .services-grids h3 {
font-size: 1.3em;
}
.team-caption {
height: 123px;
}
.w3l-event-grid {
width: 100%;
}
.w3l-event-grid:nth-child(2) {
margin-top: 1.5em;
}
.hovereffect h4 {
font-size: 1.3em;
}
.w3agile_mail_grids textarea {
min-height: 12em;
}
.dropdown-menu > li > a {
font-size: 0.85em;
}
.ag-w3 .dropdown-menu {
min-width: 118px !important;
}
}
@media(max-width: 384px){
.agileits-banner-info h3 {
letter-spacing: 2px;
font-size: 1.2em;
}
.agileits-banner-info p {
letter-spacing: 3px;
}
.app-w3 h4 {
font-size: 0.95em;
letter-spacing:0px;
}
.app-w3 {
margin-top: 3em;
}
.app-sub-w3 input[type="text"], .ag-w3 {
width: 47%;
font-size: 0.75em;
margin-top: 11px;
}
.app-sub-w3 {
padding: 0em 0.5em 0.9em;
}
.app-sub-w3 form input[type="submit"] {
width: 45%;
font-size: 0.75em;
padding: 0.85em 0em;
}
.app-w3 {
padding-bottom: 1.5em;
}
.callbacks_tabs {
top: 89%;
}
.welcome-left p {
font-size: 0.8em;
}
.open-hours-left h5 {
font-size: 0.8em;
}
.open-hours-left {
padding: 5.35em 0;
}
figure.effect-julia p {
width: 100%;
margin: 0.5em auto;
}
.feature-grid:nth-child(2), .feature-grid:nth-child(3), .feature-grid:nth-child(4) {
margin-top: 1em;
}
.hovereffect h4 {
margin-top: 4em;
}
li.get-w3 {
margin-right: 2em;
}
.ph-agile {
width: 44%;
}
.test-monials h5 {
font-size: 1.4em;
}
.feature-grid span {
margin: 1em auto;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 1.7em;
}
.ag-w3 .dropdown-menu {
min-width: 156px !important;
}
}
@media(max-width: 375px){
ul.top-links li {
margin-left: 7px;
}
.hovereffect h4 {
margin-top: 3.9em;
}
.copyrights p {
font-size: 0.85em;
}
.w3agile_mail_grids textarea {
min-height: 11em;
}
.ag-w3 .dropdown-menu {
min-width: 152px !important;
}
}
@media(max-width: 320px){
.logo {
width: 100%;
}
.ph-agile {
width: 100%;
padding-top: 1.1em;
}
.ph-agile p span {
font-size: 0.7em;
}
.ph-agile i {
font-size: 1.1em;
padding-top: 2px;
}
.ph-agile p {
width: 114px;
height: 36px;
}
.agileits-banner-info h3 {
font-size: 1.1em;
}
.agileits-banner-info p {
letter-spacing: 1px;
font-size: 0.7em;
}
.callbacks_tabs a:after {
height: 11px;
width: 11px;
}
.callbacks_tabs {
left: 33.5%;
}
.agileits-banner-info {
padding-top: 1.5em;
}
.app-w3 h4 {
font-size: 0.85em;
}
.app-sub-w3 input[type="text"], .ag-w3 {
font-size: 0.7em;
}
.app-sub-w3 form input[type="submit"] {
width: 46%;
font-size: 0.7em;
}
.feature-w3l, .tips.w3agile, .welcome, .team, #review, .events, .blog, .codes, .typo, #gallery, .mail {
padding: 2em 0;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 1.6em;
}
.welcome-left p {
font-size: 0.75em;
margin-top: 1.5em;
}
.open-hours-left {
width: 50%;
}
.open-hours-left:nth-child(3), .open-hours-left:nth-child(4) {
border-top: 2px dashed #00a0f0;
}
.open-hours-left h4 {
font-size: 1.1em;
}
.open-hours-left:nth-child(1) {
padding: 4.6em 0;
}
.open-hours-left h6 {
font-size: 0.9em;
}
.open-hours-left h5 {
font-size: 0.95em;
}
figure.effect-julia h4 {
margin-bottom: 0.1em;
font-size: 1.3em;
}
figure.effect-julia p {
margin: 0.2em auto;
padding: 2px 0px;
}
li.get-w3 {
margin-right: 0em;
}
li.get-w3 a {
font-size: 0.85em;
}
.services-grids ul li a {
font-size: 0.8em;
}
.local i {
font-size: 1.2em;
}
.ftr-grid p {
font-size: 0.8em;
}
.ftr-text {
width: 86%;
}
.copyrights {
padding-top: 1.5em;
}
.feature-grid p {
font-size: 0.85em;
}
.navbar-nav > li > a {
padding: 6px 90px 6px;
font-size: 0.8em;
}
.copyrights p {
font-size: 0.8em;
}
.footer {
padding: 3em 0em 1.5em;
}
.logo-w3l {
font-size: 2em;
}
.logo h1 a span, .logo-fo h2 a span {
font-size: 12px;
}
.logo h1 a, .logo-fo h2 a {
font-size: .6em;
}
.banner-2 {
min-height: 222px;
}
.agileits-team-grid {
width: 100%;
}
.team-caption h4 {
font-size: 1.2em;
}
.agileits-team-grid:nth-child(2), .agileits-team-grid:nth-child(3), .agileits-team-grid:nth-child(4) {
margin-top: 1.5em;
}
.team-caption {
height: 141px;
}
.blog-left-right-top h4 {
font-size: 0.85em;
}
.blog-left-right-bottom p {
font-size: .75em;
}
.blog-left-right-top p {
font-size: .7em;
}
.response-text-right p {
font-size: .75em;
}
.response-text-left h5 {
font-size: 0.8em;
}
.response-text-right ul li {
font-size: .75em;
}
.opinion h3 {
font-size: 1em;
}
.opinion form textarea {
font-size: 0.75em;
min-height: 104px;
}
.opinion form input[type="submit"] {
font-size: 0.85em;
width: 40%;
}
.categories ul li a {
font-size: .75em;
}
.hovereffect h4 {
font-size: 1.1em;
letter-spacing: 1px;
}
.faq li a {
font-size: 0.9em;
letter-spacing: 0px;
padding: 1em;
}
.w3agile_mail_grid input[type="email"], .w3agile_mail_grid input[type="text"]:nth-child(2) {
margin: 1em 0 1em;
}
.w3agile_mail_grids textarea {
min-height: 10em;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
font-size: 0.8em;
}
.ag-w3 .dropdown-menu {
min-width: 129px !important;
}
input#timepicker {
padding: 9px 10px;
}
} | css/style.css | body{
padding:0;
margin:0;
background:#fff;
position:relative;
font-family: 'ABeeZee', sans-serif;
}
body a{
transition:0.5s all;
-webkit-transition:0.5s all;
-moz-transition:0.5s all;
-o-transition:0.5s all;
-ms-transition:0.5s all;
}
a:hover{
text-decoration:none;
}
input[type="button"],input[type="submit"],.contact-form input[type="submit"]{
transition:0.5s all;
-webkit-transition:0.5s all;
-moz-transition:0.5s all;
-o-transition:0.5s all;
-ms-transition:0.5s all;
}
h1,h2,h3,h4,h5,h6{
margin:0;
font-family: 'Convergence', sans-serif;
}
p{
margin:0;
font-family: 'ABeeZee', sans-serif;
letter-spacing:1px;
}
ul{
margin:0;
padding:0;
}
label{
margin:0;
}
/*-- banner --*/
.banner{
background:url(../images/bg1.jpg) no-repeat 0px 0px;
background-size:cover;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
-ms-background-size:cover;
min-height:848px;
}
.banner-2{
background:url(../images/bg1.jpg) no-repeat 0px 0px;
background-size:cover;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
-ms-background-size:cover;
min-height:365px;
}
.navbar-default {
background: none;
border: none;
}
.navbar-default .navbar-nav > li > a {
color:#fff;
}
.navbar-nav > li > a {
padding: 10px 15px 10px;
font-size: 1.1em;
letter-spacing: 1px;
}
.navbar-header {
float: none;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
color: #fff;
background: none;
background:transparent;
}
nav ul {
list-style: none;
text-align: center;
}
nav ul li a,
nav ul li a:after,
nav ul li a:before {
transition: all .5s;
}
nav ul li a:hover {
color: #555;
}
/* stroke */
nav.stroke ul li a,
nav.fill ul li a {
position: relative;
}
nav.stroke ul li a:after,
nav.fill ul li a:after {
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 0%;
content: '.';
color: transparent;
background:#00a0f0;
height: 1px;
}
nav.stroke ul li.active a:after,
nav.fill ul li.active a:after {
display:none;
}
nav.stroke ul li a:hover:after {
width: 100%;
}
nav.fill ul li a {
transition: all 2s;
}
nav.fill ul li a:after {
text-align: left;
content: '.';
margin: 0;
opacity: 0;
}
nav.fill ul li a:hover {
color: #fff;
z-index: 1;
}
nav.fill ul li a:hover:after {
z-index: -10;
animation: fill 1s forwards;
-webkit-animation: fill 1s forwards;
-moz-animation: fill 1s forwards;
opacity: 1;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
color:#fff;
border-bottom: 1px solid #00a0f0;
background: none;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color:#fff;
}
.navbar-nav > li {
float: none;
display: block !important;
}
.logo {
text-align: center;
}
.logo-w3l {
font-size: 3em;
color:#fff;
}
.logo h1 a {
font-size: 1.2em;
color: #fff;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 700;
font-family: 'Convergence', sans-serif;
}
.logo h1 a span {
display: block;
font-size: 14px;
line-height: 1;
margin-top: 0.5em;
}
.ph-agile {
text-align: center;
}
.ph-agile i {
font-size: 1.5em;
color: #fff;
padding-top: 10px;
}
.ph-agile p span {
font-size: 1.1em;
color: #fff;
margin-left: 0.5em;
letter-spacing: 0px;
}
.ph-agile p{
background: #00a0f0;
width: 170px;
height: 46px;
line-height: 2.5;
display: inline-block;
}
/*-- banner-text --*/
.header-w3layouts{
position: absolute;
top: 0;
z-index: 99;
text-align: center;
left: 0;
width: 100%;
}
.agileits-banner-info h3 {
color: #fff;
font-size: 3em;
margin: 0;
letter-spacing: 6px;
text-transform: uppercase;
font-weight: 700;
}
.agileits-banner-info h3 span{
background: #2529d8;
padding: 0 15px;
}
.agileits-banner-info {
text-align: center;
padding-top: 1em;
}
.agileits-banner-info p {
color: #cac8c9;
font-size: 1em;
line-height: 1.9em;
letter-spacing: 7px;
margin: 2em auto;
font-weight: 500;
}
.agileits_w3layouts_more{
position:relative;
}
.agileits_w3layouts_more a{
font-size: 17px;
color: #fff;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 4px;
position: relative;
}
.agileits_w3layouts_more a:focus{
outline:none;
}
.agileits_w3layouts_more a:hover{
color:#fff;
}
.agileits_w3layouts_more a:before, .agileits_w3layouts_more a:after {
content: '';
background: #fff;
width: 45%;
height: 2px;
position: absolute;
left: 25%;
top: 181%;
}
.agileits_w3layouts_more a:after{
-webkit-transition-delay: 0.4s;
transition-delay: 0.4s;
-webkit-transform: scale3d(0, 1, 1);
transform: scale3d(0, 1, 1);
-webkit-transform-origin: center left;
transform-origin: center left;
-webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.agileits_w3layouts_more a:hover::before, .agileits_w3layouts_more a:hover::after {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
-webkit-transition-delay: 0s;
transition-delay: 0s;
}
.agileits_w3layouts_more a::after {
background:#f39c12;
}
/*--slider--*/
#slider2,
#slider3 {
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
margin: 0 auto;
}
.rslides_tabs li:first-child {
margin-left: 0;
}
.rslides_tabs .rslides_here a {
background: rgba(255,255,255,.1);
color: #fff;
font-weight: bold;
}
.events {
list-style: none;
}
.callbacks_container {
position: relative;
float: left;
width: 100%;
}
.callbacks {
position: relative;
list-style: none;
overflow: hidden;
width: 100%;
padding: 0;
margin: 0;
}
.callbacks li {
position: absolute;
width: 100%;
}
.callbacks img {
position: relative;
z-index: 1;
height: auto;
border: 0;
}
.callbacks .caption {
display: block;
position: absolute;
z-index: 2;
font-size: 20px;
text-shadow: none;
color: #fff;
left: 0;
right: 0;
padding: 10px 20px;
margin: 0;
max-width: none;
top: 10%;
text-align: center;
}
.callbacks_nav {
position: absolute;
-webkit-tap-highlight-color: rgba(0,0,0,0);
top:55%;
left: 40px;
opacity: 0.7;
z-index: 3;
text-indent: -9999px;
overflow: hidden;
text-decoration: none;
height: 34px;
width: 34px;
background: url(../images/left.png) no-repeat 0px 0px;
}
.callbacks_nav.next {
left: auto;
background: url(../images/right.png) no-repeat 0px 0px;
right: -62px;
}
.callbacks_nav.prev {
left: auto;
background: url(../images/left.png) no-repeat 0px 0px;
left: -58px;
}
#slider3-pager a {
display: inline-block;
}
#slider3-pager span{
float: left;
}
#slider3-pager span{
width:100px;
height:15px;
background:#fff;
display:inline-block;
border-radius:30em;
opacity:0.6;
}
#slider3-pager .rslides_here a {
background: #FFF;
border-radius:30em;
opacity:1;
}
#slider3-pager a {
padding: 0;
}
#slider3-pager li{
display:inline-block;
}
.rslides {
position: relative;
list-style: none;
overflow: hidden;
width: 100%;
padding: 0;
}
.rslides li {
-webkit-backface-visibility: hidden;
position: absolute;
display:none;
width: 100%;
left: 0;
top: 0;
}
.rslides li{
position: relative;
display:block;
float: left;
}
.rslides img {
height: auto;
border: 0;
}
.callbacks_tabs {
list-style: none;
position: absolute;
top: 106%;
left: 46%;
padding: 0;
margin: 0;
display: block;
z-index: 99;
}
.slider-top span{
font-weight:600;
}
.callbacks_tabs li {
display:inline-block;
margin: 0px 7px;
}
/*----*/
.callbacks_tabs a{
visibility: hidden;
}
.callbacks_tabs a:after {
content: "\f111";
font-size: 0;
font-family: FontAwesome;
visibility: visible;
display: block;
height:16px;
width:16px;
display: inline-block;
background: #ffffff;
border-radius: 50%;
-webkit-border-radius: 50%;
-o-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
}
.callbacks_here a:after{
background: #00a0f0;
}
/*-- //slider --*/
/*-- //banner-text --*/
/*-- Appointment-form --*/
.app-w3 {
background: rgba(0, 0, 0, 0.54);
margin-top: 13em;
padding-bottom: 4em;
}
.app-sub-w3 {
width: 80%;
text-align: center;
margin: 0 auto;
padding: 1.5em 1em 2.5em;
background: #000;
border: 1px solid rgba(255, 255, 255, 0.19);
margin-top: 1em;
}
.app-sub-w3 input[type="text"], .ag-w3 {
width: 19%;
outline: none;
font-size: 0.9em;
padding: 13px 10px;
border: none;
color: #abaaaa;
font-weight: 100;
-webkit-appearance: none;
background: #fff;
display: inline-block;
text-align: left;
}
input#timepicker {
display: inline-block;
border-radius: 0px !important;
padding: 13px 10px;
height: inherit;
}
.app-sub-w3 form input[type="submit"] {
text-transform: uppercase;
background: #00a0f0;
color: #FFFFFF;
padding: .75em 0em;
border: 1px solid #ee4f4f;
font-size: 1em;
outline: none;
width: 18%;
letter-spacing:1px;
font-weight: 600;
margin-top:1em;
margin-left:2em;
cursor: pointer;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.app-sub-w3 form input[type="submit"]:hover{
background:#ee4f4f;
border:1px solid #00a0f0;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.app-w3 h4 {
font-size: 1.8em;
text-align: center;
padding: 1em 0em;
color: #fff;
text-transform: uppercase;
letter-spacing: 1px;
}
.agile1, .ph-agile {
padding-top: 3em;
}
li.dropdown.menu__item {
list-style: none;
}
a.dropdown-toggle.menu__link {
color: #abaaaa;
font-size: 1em;
}
.caret {
float: right;
margin-top: 9px;
}
.dropdown-menu {
top: 125% !important;
left: -10px !important;
}
.dropdown-menu {
min-width: 140px !important;
}
.ag-w3 .dropdown-menu {
top: 153% !important;
}
.ag-w3 .dropdown-menu {
min-width: 235px !important;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
color: #fff !important;
text-decoration: none;
background-color: #00a0f0 !important;
}
/*-- //Appointment-form --*/
/*-- //banner --*/
/*-- About --*/
.welcome-img {
overflow: hidden;
-webkit-box-shadow: 0px 0px 10px 0px #656060;
-moz-box-shadow: 0px 0px 10px 0px #656060;
box-shadow: 0px 0px 10px 0px #656060;
}
.welcome-left .img-responsive {
width: 100%;
}
.welcome-left-grids {
padding: 0;
margin-top: 3em;
}
.welcome-left-grids:nth-child(2) {
padding-right: 0.5em;
}
.welcome-left-grids:nth-child(3) {
padding-left: 0.5em;
}
.welcome-left p {
font-size: 1em;
color: #777;
line-height: 1.9em;
margin-top: 2em;
}
.open-hours-row {
/*background: #83d6ff;*/
background: #45B39D;
/*border:2px dotted #00a0f0;*/
border: .5px dotted #45B39D ;
}
.open-hours-left {
padding: 4.06em 0;
text-align: center;
-webkit-transition: .5s all;
-moz-transition: .5s all;
transition: .5s all;
/*background: #ee4f4f;*/
background: #45B39D;
}
.open-hours-left:nth-child(1) {
background: #116EB3;
padding: 3em 0;
}
.open-hours-left:nth-child(3) {
border-left: 2px dashed #00a0f0;
border-right: 2px dashed #00a0f0;
}
.open-hours-left h4 {
font-size: 1.5em;
color: #fff;
line-height: 1.8em;
}
.open-hours-left h6 {
font-size: 1em;
color: #f1efef;
-webkit-transition: .5s all;
-moz-transition: .5s all;
transition: .5s all;
}
.open-hours-left:hover h6{
color: #fff;
}
.open-hours-left h5 {
font-size: 1.3em;
color: #000;
margin-top: 0.5em;
font-weight: 700;
}
.open-hours-left:hover {
background: #00a0f0;
}
img.zoom-img{
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
-moz-transform: scale(1, 1);
-ms-transform: scale(1, 1);
-o-transform: scale(1, 1);
transition-timing-function: ease-out;
-webkit-transition-timing-function: ease-out;
-moz-transition-timing-function: ease-out;
-ms-transition-timing-function: ease-out;
-o-transition-timing-function: ease-out;
-webkit-transition-duration: .5s;
-moz-transition-duration: .5s;
-ms-transition-duration: .5s;
-o-transition-duration: .5s;
}
img.zoom-img:hover{
-webkit-transform: scale(1.2);
transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
-webkit-transition-timing-function: ease-in-out;
-webkit-transition-duration: 750ms;
-moz-transition-timing-function: ease-in-out;
-moz-transition-duration: 750ms;
-ms-transition-timing-function: ease-in-out;
-o-transition-timing-function: ease-in-out;
-ms-transition-duration: 750ms;
-o-transition-duration: 750ms;
overflow: hidden;
}
/*-- //about --*/
/*-- Services --*/
.feature-w3l, .tips.w3agile, .welcome, .team, #review, .events, .blog, .codes, .typo, #gallery, .mail {
padding: 5em 0;
text-align:center;
}
.codes{
text-align:left;
}
.feature-grid:hover h4 {
color: #116EB3;
}
.feature-grid h4 {
font-size: 1.73em;
margin-top: 0.5em;
color: #730709;
}
.feature-grid p {
font-size: 1em;
line-height: 1.9em;
color: #777;
}
.feature-grid span {
width: 15%;
display: block;
background: #116EB3;
height: 2px;
margin: 1.3em auto;
-webkit-transition: .5s all;
-moz-transition: .5s all;
transition: .5s all;
}
.feature-grid:hover span {
width: 35%;
background: #730709;
}
.feature-grid:hover div.icons i {
background: #730709;
}
.what-left {
float: left;
width: 15%;
text-align: center;
}
.what-right {
float: left;
width: 85%;
}
.what-grid1 h4 {
font-size: 1.8em;
color: #007ea3;
}
.what-grid1 p {
font-size: 1em;
line-height: 1.8em;
padding-top: 0.8em;
}
.what-grid1 i {
height: 60px;
width: 60px;
margin: 3px;
font-size: 1.3em;
border-radius: 15%;
line-height: 60px;
text-align: center;
background: #f47721;
color: #fff;
}
/*-- effect-7 css --*/
.text-desc{
position: absolute;
left: 0;
top: 0;
background: #730709;
height: 100%;
opacity: 0;
width: 100%;
padding: 20px;
}
.port-7{
width: 100%;
position: relative;
overflow: hidden;
text-align: center;
border: 5px solid rgba(255, 255, 255, 0.9);
overflow: hidden;
box-shadow: 0px 0px 12px 0px #969696;
}
.port-7 .text-desc{
opacity: 0;
transition: 0.5s;
color: #000;
}
.port-7.effect-2 img{
transition: 0.5s;
position: relative;
width: 100%;
top: 0;
}
.port-7.effect-2:hover img{
top: 50%;
}
.port-7.effect-2 .text-desc{
transform: perspective(600px) rotateX(90deg);
transform-origin: top center 0;
width: 100%;
position: absolute;
left: 0;
top: 0;
height: 50%;
padding:32px 10px 0;
}
.port-7.effect-2:hover .text-desc{
opacity: 1;
transform: perspective(600px) rotateX(0deg);
z-index: 99;
}
.text-desc h4 {
color: #fff;
font-size: 1.8em;
margin-bottom: 0.5em;
}
.text-desc p {
font-size: 1em;
color: #fff;
line-height: 1.8em;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 3em;
color: #333;
text-align: center;
text-transform: uppercase;
margin-bottom:1.3em;
}
h3.tittle span, h3.tittle-one span, .agile-title h3 span, h4.tittle-two span, .team-heading h3 span, .team-w3l h3 span, h3.w3l-sing span, h3.tittle-agw3 span, h3.tittle-agilew3 span, h3.w3l_head span, h3.mail-w3 span{
display: block;
width: 86px;
height: 2px;
background: #116EB3;
margin: 13px auto 0;
}
.icons-w3 i {
height: 180px;
width: 180px;
margin: 3px;
font-size: 4em;
border-radius: 100%;
line-height: 172px;
text-align: center;
background: #116EB3;
color: #fff;
border: 3px solid #ffffff;
box-shadow: inset 0 0 0 5px #f2f2f2;
-webkit-box-shadow: inset 0 0 0 5px #f2f2f2;
-webkit-transition: 500ms;
-moz-transition: 500ms;
-o-transition: 500ms;
transition: 500ms;
}
.icons-w3 i:hover {
background: #730709;
-webkit-transition: 500ms;
-moz-transition: 500ms;
-o-transition: 500ms;
transition: 500ms;
}
/*-- //Services --*/
/*-- What-we-do --*/
.tips.w3agile {
background: #eee;
}
.tip-grid img{
width:100%;
}
.tip-grid {
position: relative;
margin: 0 auto;
list-style: none;
text-align: center;
}
/* Common style */
.tip-grid figure {
position: relative;
float: left;
overflow: hidden;
height: auto;
background: #3085a3;
text-align: center;
cursor: pointer;
}
.tip-grid figure img {
position: relative;
display: block;
max-width: 100%;
opacity: 0.8;
}
.tip-grid figure figcaption {
padding: 2px 25px 0px 25px;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.tip-grid figure figcaption,
.tip-grid figure figcaption > a {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.tip-grid figure figcaption > a {
z-index: 1000;
text-indent: 200%;
white-space: nowrap;
font-size: 0;
opacity: 0;
}
.tip-grid figure h4,
.grid figure p {
margin: 0;
}
.tip-grid figure p {
letter-spacing: 1px;
font-size: 68.5%;
}
/***** Julia *****/
figure.effect-julia {
background: #2f3238;
}
figure.effect-julia img {
max-width: none;
-webkit-transition: opacity 1s, -webkit-transform 1s;
transition: opacity 1s, transform 1s;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
figure.effect-julia h4 {
color: #fff;
font-size: 2em;
position: relative;
padding: 0.5em 0;
font-weight: 500;
margin-bottom: 2em;
}
figure.effect-julia p {
display: block;
margin: 0.4em auto;
padding: 7px 0px;
background: rgba(0, 0, 0, 0.76);
color: #fff;
text-transform: none;
font-size: 14px;
text-align: center;
width: 93%;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(-500px,0,0);
transform: translate3d(-500px,0,0);
}
figure.effect-julia p:first-child {
-webkit-transition-delay: 0.15s;
transition-delay: 0.15s;
}
figure.effect-julia p:nth-of-type(2) {
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
}
figure.effect-julia p:nth-of-type(3) {
-webkit-transition-delay: 0.05s;
transition-delay: 0.05s;
}
figure.effect-julia:hover p:first-child {
-webkit-transition-delay: 0s;
transition-delay: 0s;
}
figure.effect-julia:hover p:nth-of-type(2) {
-webkit-transition-delay: 0.05s;
transition-delay: 0.05s;
}
figure.effect-julia:hover p:nth-of-type(3) {
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
}
figure.effect-julia:hover img {
opacity: 0.4;
-webkit-transform: scale3d(1.1,1.1,1);
transform: scale3d(1.1,1.1,1);
}
figure.effect-julia:hover p {
opacity: 1;
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
/*-- //What-we-do --*/
/*-- Testimonials --*/
#review {
background: url("../images/tes.jpg") no-repeat 0px 0px;
background-size: cover;
-o-background-size: cover;
-moz-background-size: cover;
-ms-background-size: cover;
-webkit-background-size: cover;
min-height: 540px;
}
h3.title {
color:#333;
font-size:3em;
text-align:center;
}
h3.tittle-two{
color:#fff;
}
.test-monials h5{
font-size: 2em;
color: #FFE500;
text-transform: none;
margin-top: 0.7em;
}
.test-review p {
font-size: 1em;
font-weight: 400;
line-height: 2em;
margin: 2em 1em;
color:#fff;
}
.test-review img{
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
box-shadow:0 10px 20px rgba(0, 0, 0, 0.41);
-webkit-box-shadow:0 10px 20px rgba(0, 0, 0, 0.41);
-moz-box-shadow:0 10px 20px rgba(0, 0, 0, 0.41);
-o-box-shadow:0 10px 20px rgba(0, 0, 0, 0.41);
-ms-box-shadow:0 10px 20px rgba(0, 0, 0, 0.41);
}
.test-review p img {
margin: 0 10px!important;
box-shadow:none;
}
.test-review img {
margin: 0 auto;
}
.test-monials {
text-align: center;
}
.test-left-img{
background: url(../images/banner.jpg) no-repeat 0px 0px;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
min-height:700px;
}
/*-- //Testimonials --*/
/*---//Social Networks --*/
.social-networks{
background:#E1E1E1;
}
/*-- Footer --*/
.footer {
padding: 4em 0em;
background: #494949;
position: relative;
}
.ftr-grid h3, .services-grids h3{
color: #00a0f0;
font-size: 1.6em;
letter-spacing:1px;
margin-bottom: 0.5em;
}
.ftr-grid p {
font-size: 1em;
color: #CFD5D5;
line-height: 2;
margin-top: 5%;
}
.ftr-grid.fg1 a {
color: #fff;
margin-top: 0.5em;
display: inline-block;
font-size: 1em;
}
.ftr-text p a {
color: #CFD5D5;
}
.ftr-text p a:hover {
color: #fff;
transition: all 0.5s ease-in-out;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
}
.ftr-grid ul {
padding: 0em;
list-style: none;
}
.ftr-grid ul li {
font-size: 0.95em;
color: #fff;
line-height: 1.8em;
}
.local {
float: left;
width: 13%;
}
.ftr-text {
float: right;
width: 86%;
}
.local i {
font-size: 1.5em;
color: #fff;
margin-top: 41%;
}
.logo-fo {
text-align: center;
}
.logo-fo h2 a {
font-size: 1.2em;
color: #fff;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 700;
font-family: 'Convergence', sans-serif;
}
.logo-fo h2 a span {
display: block;
font-size: 14px;
line-height: 1;
margin-top: 0.5em;
}
.right-w3l.fotw3 {
width: 100%;
margin-top: 11%;
text-align: left;
}
ul.top-links li {
display: inline-block;
margin-left: 12px;
}
.right-w3l ul.top-links li a i.fa {
color: #fff;
background-color: #116EB3;
width: 35px;
height: 35px;
font-size: 14px;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
line-height: 35px;
text-align: center;
transition: all 0.5s ease-in-out;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
}
.right-w3l ul.top-links li a i.fa:hover {
background-color: #AD1114;
}
.right-w3-2 {
float: right;
width: 82%;
}
.right-w3-2 ul.text-w3 li a {
color: #999;
font-size: 1.1em;
margin: 16px 0px 4px;
display: inline-block;
letter-spacing: 1px;
vertical-align: top;
}
.fotw3 ul.top-links li a i.fa:hover , .fotw33 ul.top-links li a i.fa:hover {
background-color: #478bca;
}
.services-grids ul {
list-style: none;
margin-top: 2em;
padding: 0;
}
.services-grids ul li:nth-child(1) {
margin: 0;
}
.services-grids ul li {
padding-bottom: 1em;
}
.services-grids ul li a {
color: #999;
font-size: 1em;
padding-left: 10px;
font-weight: 300;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
i.fa.fa-angle-double-right {
font-size: 1em;
color: #ee4f4f;
}
.services-grids ul li a:hover{
color:#ee4f4f;
padding-left: 1em;
transition:0.5s all;
-webkit-transition:0.5s all;
-moz-transition:0.5s all;
-o-transition:0.5s all;
-ms-transition:0.5s all;
}
li.get-w3 a {
color: #fff;
font-size: 1.1em;
}
li.get-w3 {
background: #ee4f4f;
padding: 0.5em 1em;
margin-right: 11em;
}
li.get-w3 a i {
margin-right: 0.8em;
}
.right-w3l {
position: absolute;
top: -7%;
right: 26%;
}
.copyrights {
text-align: center;
padding-top: 2em;
}
.copyrights p {
color: #fff;
letter-spacing: 2px;
font-size: 1em;
}
.copyrights p a {
color: #00a0f0;
}
.copyrights p a:hover{
color: #fff;
}
/*-- //Footer --*/
/*-- Inner-Pages --*/
/*-- team --*/
.team{
background:url(../images/55.jpg) no-repeat 0px 0px;
background-size:cover;
}
.jarallax {
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: 50% 50%;
}
.team-heading h3{
color:#fff;
}
.team-heading p{
color: #000000;
font-size: .9em;
margin: 1em auto 0;
width: 40%;
}
.agileits-team-grids {
margin: 4em 0 0 0;
}
.team-info{
position: relative;
overflow: hidden;
}
.team-info img{
width:100%;
border:solid 2px #333333;
}
.team-caption h4{
color: #FFFFFF;
font-size: 1.5em;
font-weight: 600;
margin: .5em 0 0 0;
}
.team-caption p {
color: #000;
font-size: .9em;
margin-top: 0.4em;
}
.team-caption ul{
padding: 0;
margin: 1em 0 0 0;
}
.team-caption ul li{
display: inline-block;
}
.team-caption ul li a {
color: #333;
text-align: center;
}
.team-caption ul li a i.fa.fa-facebook{
height: 30px;
width: 30px;
line-height: 30px;
border: solid 2px #FFF;
background: none;
color: #FFF;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.team-caption ul li a i.fa.fa-facebook:hover {
background: #3b5998;
}
.team-caption ul li a i.fa.fa-twitter{
height: 30px;
width: 30px;
line-height: 30px;
border: solid 2px #FFF;
background: none;
color: #FFF;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.team-caption ul li a i.fa.fa-twitter:hover{
background: #33ccff;
}
.team-caption ul li a i.fa.fa-google-plus{
height: 30px;
width: 30px;
line-height: 30px;
border: solid 2px #FFF;
background: none;
color: #FFF;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.team-caption ul li a i.fa.fa-google-plus:hover{
background: #DD4B39;
}
.team-caption {
background: #00a0f0;
padding: 1em;
position: absolute;
left: 0;
bottom: -105%;
text-align: center;
width: 100%;
height: 154px;
-webkit-transition: .5s all;
transition: .5s all;
-moz-transition: .5s all;
}
.team-info:hover .team-caption{
bottom: 0%;
}
.team-info:hover .team-caption {
bottom: 0%;
}
.jarallax {
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: 50% 50%;
}
/*-- //team --*/
/*-- News --*/
.w3l-event-grid a{
display:block;
}
.w3l-event-grid a img{
width:100%;
}
.news-grid-info {
margin-top: 1em;
}
.news-grid-info a {
font-size: 1.3em;
color: #ee4f4f;
text-decoration: none;
font-weight: 600;
text-transform: capitalize;
}
.news-grid-info a:hover{
color:#00a0f0;
}
.news-grid-info h5 {
color: #000;
font-size: 1.1em;
margin: 1em 0;
}
.news-grid-info p {
color: #777;
font-size: 1em;
margin: 1em 0 0 0;
line-height: 1.9em;
}
a.re-w3 {
border: 1px solid #000;
width: 29%;
margin: 1em auto;
padding: 0.6em 0em;
font-size: 1em;
letter-spacing: 1px;
color: #00a0f0;
text-align:center;
}
a.re-w3:hover {
color:#ee4f4f;
}
/*-- //News --*/
/*-- Single-Page --*/
.response {
margin: 1em 0 4em;
}
.response h3 {
color: #000000;
font-size: 1.5em;
margin: 0 0 .5em 0;
font-weight: 800;
line-height: 1.4em;
}
.media.response-info {
margin-top: 3em;
}
.media-left.response-text-left {
width: 13%;
float: left;
}
.media-left.response-text-left a img {
width: 100%;
}
.media-left.response-text-left h5 a {
color: #00a0f0;
}
.media-left.response-text-left h5 a:hover {
color: #3b3b3b;
text-decoration:none;
}
.response-text-left h5 {
font-size: 1em;
margin: 1em 0 0 0;
}
.response-text-right p {
color: #999999;
font-size: .9em;
margin: 0em 0 2em 0;
line-height: 1.8em;
}
.response-text-right ul {
padding: 0;
text-align: right;
}
.response-text-right ul li {
display: inline-block;
color: #b7b7b7;
font-size: .9em;
margin-right: 1em;
}
.response-text-right ul li a {
color: #00a0f0;
text-decoration: none;
}
.response-text-right ul li a:hover {
color: #3b3b3b;
}
.media.response-info {
margin-top: 1em;
}
.opinion h3{
color: #000000;
font-size: 1.5em;
margin: 0 0 .5em 0;
font-weight: 800;
line-height: 1.4em;
}
.opinion form{
margin: 1em 0 0 0;
}
.opinion form input[type="text"], .opinion form input[type="email"] {
width: 100%;
color: #999999;
outline: none;
font-size: .9em;
padding: .5em;
margin: 0 .5em 1em 0;
border: solid 1px #999999;
-webkit-appearance: none;
background: none;
}
.opinion form textarea {
resize: none;
width: 100%;
color: #999999;
font-size: .9em;
outline: none;
resize: none;
padding: .5em;
border: solid 1px #999999;
min-height: 125px;
background: none;
}
.opinion form input[type="submit"] {
color: #00a0f0;
font-size: 1em;
padding: .5em 0em;
border: solid 2px #00a0f0;
text-align: center;
text-decoration: none;
width: 22%;
margin: 1em 0 0 0;
background: none;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
margin: 1em auto;
display: inherit;
}
.opinion form input[type="submit"]:hover {
background: #00a0f0;
color: #FFFFFF;
}
/*-- blog --*/
.blog{
text-align:left;
}
.agile-blog-grid-left-img a img{
width: 100%;
margin-bottom: 1em;
}
.blog-left-left{
float: left;
width: 100px;
height: 100px;
background: #00a0f0;
text-align: center;
padding: 1.6em 0 0 0;
}
i.fa.fa-pencil{
color:#FFFFFF;
font-size:2.5em;
}
.blog-left-right {
float: left;
width: 83%;
margin-left: 1em;
}
.blog-left-right-top h4{
color: #000000;
font-size: 1.4em;
margin: 0 0 .5em 0;
font-weight: 800;
line-height: 1.4em;
}
.blog-left-right-top h4 a{
text-decoration:none;
color: #000000;
}
.blog-left-right-top h4 a:hover{
color:#00a0f0;
}
.blog-left-right-top p {
margin: 0 0 1em;
font-size: .9em;
font-weight: 500;
color: #333333;
}
.blog-left-right-top p a {
color: #00a0f0;
text-decoration: none;
}
.blog-left-right-top p a:hover{
color:#000000;
}
.blog-left-right-bottom p{
color: #999999;
font-size: .9em;
margin: 1em 0 2em 0;
line-height: 1.8em;
}
.blog-left-right-bottom p span{
display:block;
margin:1em 0 0 0;
}
.blog-left-right-bottom a {
color: #00a0f0;
font-size: 1em;
padding: .5em 1em;
border: solid 2px #00a0f0;
text-align: center;
text-decoration: none;
margin: 2em auto 0;
background: none;
}
.blog-left-right-bottom a:hover {
background: #00a0f0;
color: #FFFFFF;
}
.agile-blog-grid:nth-child(2){
margin:2em 0;
}
.categories h3 {
color: #000000;
font-size: 1.5em;
margin: 0 0 .5em 0;
font-weight: 800;
line-height: 1.4em;
}
.categories ul {
margin: 1em 0 0 0;
padding: 0;
}
.categories ul li {
display: block;
background: url(../images/arrow.png) no-repeat 0px 2px;
margin-bottom: 1em;
}
.categories ul li a {
font-size: .9em;
margin: 0;
color: #999999;
padding-left: 2em;;
}
.categories ul li a:hover {
color: #ee4f4f;
text-decoration: none;
transition: .5s all;
-webkit-transition: .5s all;
-moz-transition: .5s all;
-o-transition: .5s all;
-ms-transition: .5s all;
}
.categories:nth-child(2) {
margin: 1em 0 0 0;
}
.pagination {
margin: 4em 0 0 0;
}
.pagination > li > a, .pagination > li > span {
color: #999999;
}
/*-- //blog --*/
/*-- //Single-Page --*/
/*-- Short-codes --*/
.code-banner{
padding: 1em 0 2em;
}
.codes-heading {
text-align: center;
}
h3.hdg {
font-size: 2.5em;
color:#00a0f0 !important;
}
.show-grid [class^=col-] {
background: #fff;
text-align: center;
margin-bottom: 10px;
line-height: 2em;
border: 10px solid #f0f0f0;
}
.show-grid [class*="col-"]:hover {
background: #e0e0e0;
}
.grid_3{
margin-bottom:2em;
}
.xs h3, h3.m_1{
color:#000;
font-size:1.7em;
font-weight:300;
margin-bottom: 1em;
}
.grid_3 p{
color: #555;
font-size: 0.85em;
margin-bottom: 1em;
font-weight: 300;
}
.grid_4{
background:none;
}
.label {
font-weight: 300 !important;
border-radius:4px;
}
.grid_5{
background:none;
padding:2em 0;
}
.grid_5 h3, .grid_5 h2, .grid_5 h1, .grid_5 h4, .grid_5 h5, h3.hdg {
margin-bottom:1em;
color: #333;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
border-top: none !important;
}
.tab-content > .active {
display: block;
visibility: visible;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
z-index: 0;
}
.badge-primary {
background-color: #03a9f4;
}
.badge-success {
background-color: #8bc34a;
}
.badge-warning {
background-color: #ffc107;
}
.badge-danger {
background-color: #e51c23;
}
.grid_3 p{
line-height: 2em;
color: #888;
font-size: 0.9em;
margin-bottom: 1em;
font-weight: 300;
}
.bs-docs-example {
margin: 1em 0;
}
section#tables p {
margin-top: 1em;
}
.tab-container .tab-content {
border-radius: 0 2px 2px 2px;
border: 1px solid #e0e0e0;
padding: 16px;
background-color: #ffffff;
}
.table td, .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
padding: 15px!important;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
font-size: 0.9em;
color: #555;
border-top: none !important;
}
.tab-content > .active {
display: block;
visibility: visible;
}
.label {
font-weight: 300 !important;
}
.label {
padding: 4px 6px;
border: none;
text-shadow: none;
}
.nav-tabs {
margin-bottom: 1em;
}
.alert {
font-size: 0.85em;
}
h1.t-button,h2.t-button,h3.t-button,h4.t-button,h5.t-button {
line-height:1.8em;
margin-top:0.5em;
margin-bottom: 0.5em;
}
li.list-group-item1 {
line-height: 2.5em;
}
.input-group {
margin-bottom: 20px;
}
.in-gp-tl{
padding:0;
}
.in-gp-tb{
padding-right:0;
}
.list-group {
margin-bottom: 48px;
}
ol {
margin-bottom: 44px;
}
h2.typoh2{
margin: 0 0 10px;
}
@media (max-width:768px){
.grid_5 {
padding: 0 0 1em;
}
.grid_3 {
margin-bottom: 0em;
}
}
@media (max-width:640px){
h1, .h1, h2, .h2, h3, .h3 {
margin-top: 0px;
margin-bottom: 0px;
}
.grid_5 h3, .grid_5 h2, .grid_5 h1, .grid_5 h4, .grid_5 h5, h3.hdg, h3.bars {
margin-bottom: .5em;
}
.progress {
height: 10px;
margin-bottom: 10px;
}
ol.breadcrumb li,.grid_3 p,ul.list-group li,li.list-group-item1 {
font-size: 14px;
}
.breadcrumb {
margin-bottom: 10px;
}
.well {
font-size: 14px;
margin-bottom: 10px;
}
h2.typoh2 {
font-size: 1.5em;
}
.grid_4 {
margin-top: 30px;
}
}
@media (max-width:480px){
.table h1 {
font-size: 26px;
}
.table h2 {
font-size: 23px;
}
.table h3 {
font-size: 20px;
}
.label {
font-size: 53%;
}
.alert,p {
font-size: 14px;
}
.pagination {
margin: 20px 0 0px;
}
}
@media (max-width: 320px){
.grid_4 {
margin-top: 18px;
}
.alert, p,ol.breadcrumb li, .grid_3 p,.well, ul.list-group li, li.list-group-item1,a.list-group-item {
font-size: 13px;
}
.alert {
padding: 10px;
margin-bottom: 10px;
}
ul.pagination li a {
font-size: 14px;
padding: 5px 11px !important;
}
.list-group {
margin-bottom: 10px;
}
.well {
padding: 10px;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
font-size: 0.81em;
}
.table td, .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
padding: 12px!important;
}
.codes .row {
margin: 0;
}
}
/*-- //Shortcodes --*/
/*-- icons --*/
.icon-box {
padding: 8px 15px;
background: rgba(149, 149, 149, 0.18);
margin: 1em 0 1em 0;
border: 5px solid #ffffff;
text-align: left;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-size: 13px;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
-moz-transition: 0.5s all;
cursor: pointer;
}
.bs-glyphicons li {
float: left;
width: 18%;
height: 115px;
padding: 10px;
line-height: 1.4;
text-align: center;
font-size: 12px;
list-style-type: none;
background: rgba(149, 149, 149, 0.18);
margin: 1%;
}
.bs-glyphicons li .glyphicon {
margin-top: 5px;
margin-bottom: 10px;
font-size: 24px;
color: #282a2b;
}
.icons a {
color: #999;
}
.bs-glyphicons .glyphicon-class {
display: block;
text-align: center;
word-wrap: break-word;
}
.icon-box i {
margin-right: 10px !important;
font-size: 20px !important;
color: #282a2b !important;
}
.icon-box:hover {
background: #000;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
-moz-transition: 0.5s all;
}
/*-- //icons --*/
/*-- Gallery --*/
.agileits_portfolio_grids {
margin: 2em 0 0 0;
}
.hovereffect {
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
text-align: center;
}
.hovereffect .overlay {
position: absolute;
overflow: hidden;
width: 80%;
height: 80%;
left: 10%;
top: 10%;
border-bottom: 1px solid #FFF;
border-top: 1px solid #FFF;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: scale(0,1);
-ms-transform: scale(0,1);
transform: scale(0,1);
}
.hovereffect:hover .overlay {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.hovereffect img {
display: block;
position: relative;
-webkit-transition: all 0.35s;
transition: all 0.35s;
margin-bottom: 7px;
}
.hovereffect:hover img {
filter: brightness(0.6);
-webkit-filter: brightness(0.6);
-moz-filter: brightness(0.6);
-o-filter: brightness(0.6);
-ms-filter: brightness(0.6);
}
.hovereffect h4 {
text-transform: uppercase;
text-align: center;
position: relative;
font-size: 1.6em;
background-color: rgba(0, 0, 0, 0.68);
color: #ee4f4f;
padding: 0.5em 0em;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(0,-100%,0);
transform: translate3d(0,-100%,0);
letter-spacing: 2px;
margin-top: 3.5em;
}
.hovereffect p{
color: #FFF;
line-height: 1.8em;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0);
}
.hovereffect:hover p, .hovereffect:hover h4 {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
.agileits_portfolio_grid {
padding: 0 4px;
}
/*-- //Gallery --*/
/*-- Mail --*/
.w3agile_mail_grid input[type="text"], .w3agile_mail_grid input[type="email"], .w3agile_mail_grids textarea {
outline: none;
border: 2px solid #000;
font-size: 14px;
color: #898484;
padding: 10px;
width: 47%;
background: #fff;
}
.w3agile_mail_grid input[type="email"],.w3agile_mail_grid input[type="text"]:nth-child(2){
margin:1em 0 2em;
}
.w3agile_mail_grid input[type="text"] {
margin-right: 2.1em;
}
.w3agile_mail_grids textarea {
resize: none;
min-height: 18em;
margin: 0 auto;
width: 97.3% !important;
}
.w3agile_mail_grids input[type="submit"] {
outline: none;
border: none;
font-size: 1em;
color: #fff;
padding: 0.8em 0em;
width: 21%;
background: #ee4f4f;
margin: 2em auto 0em;
text-transform: uppercase;
}
.w3agile_mail_grids input[type="submit"]:hover{
background:#00a0f0;
}
.faq li {
margin-top: 0.5em;
}
.faq li:nth-child(1) {
margin: 0;
}
.faq li a {
padding: 1.2em;
width: 100%;
display: block;
position: relative;
color: #fff;
text-decoration: none;
background: #00a0f0;
text-align: center;
font-size: 1.1em;
text-transform: uppercase;
letter-spacing: 1px;
}
.faq li a:hover,.faq li a.active{
color: #fff;
background:#ee4f4f;
}
.faq span.glyphicon {
margin-left: 1em;
vertical-align: middle;
font-size: 1.1em;
top: 0;
}
.faq li a.active span.glyphicon {
-webkit-transform: rotatex(180deg);
transform: rotatex(180deg);
-moz-transform: rotatex(180deg);
-o-transform: rotatex(180deg);
-ms-transform: rotatex(180deg);
}
.faq iframe {
width: 100%;
min-height: 25em;
border: none;
margin:0 0 -6px;
}
/*-- //Mail --*/
/*-- //Inner-Pages --*/
/*--responsive--*/
@media(max-width: 1680px){
}
@media(max-width: 1600px){
}
@media(max-width: 1440px){
.test-review p {
margin: 2em 0em;
}
.right-w3l {
right: 23%;
}
.app-sub-w3 {
width: 86%;
}
.ag-w3 .dropdown-menu {
min-width: 227px !important;
}
}
@media(max-width: 1366px){
.agileits-banner-info h3 {
font-size: 2.8em;
}
.banner {
min-height: 780px;
}
.app-w3 {
margin-top: 10em;
padding-bottom: 3em;
}
.app-sub-w3 {
margin-top: 0.3em;
}
.app-sub-w3 {
width: 90%;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 2.8em;
}
.feature-w3l, .tips.w3agile, .welcome, .team, #review, .events, .blog, .codes, .typo, #gallery, .mail {
padding: 4.5em 0;
}
.test-review p {
letter-spacing: 0px;
}
.right-w3l {
right: 22%;
}
.banner-2 {
min-height: 340px;
}
}
@media(max-width: 1280px){
.logo h1 a, .logo-fo h2 a {
font-size: 1.1em;
}
.agileits-banner-info h3 {
font-size: 2.6em;
letter-spacing: 5px;
}
.app-w3 {
margin-top: 9em;
}
.banner {
min-height: 761px;
}
.app-w3 h4 {
font-size: 1.7em;
}
.app-sub-w3 {
width: 92%;
}
.ag-w3 .dropdown-menu {
min-width: 214px !important;
}
.right-w3l {
right: 19.5%;
}
}
@media(max-width: 1080px){
.logo h1 a, .logo-fo h2 a {
font-size: 1em;
}
.agileits-banner-info h3 {
font-size: 2.4em;
letter-spacing: 4px;
}
.agileits-banner-info p {
margin: 1.5em auto;
}
.callbacks_tabs {
left: 44.5%;
}
.app-w3 {
margin-top: 8em;
}
.banner {
min-height: 700px;
}
.agileits-banner-info {
padding-top: 0em;
}
.app-w3 h4 {
font-size: 1.55em;
}
.app-sub-w3 {
width: 94%;
}
.app-sub-w3 form input[type="submit"] {
letter-spacing: 0px;
margin-left: 1em;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 2.5em;
}
.ag-w3 .dropdown-menu {
min-width: 183px !important;
font-size: 13px;
}
.feature-w3l, .tips.w3agile, .welcome, .team, #review, .events, .blog, .codes, .typo, #gallery, .mail {
padding: 4em 0;
}
.open-hours-left h4 {
font-size: 1.3em;
}
.open-hours-left:nth-child(1) {
padding: 3.35em 0;
}
.open-hours-left h5 {
font-size: 1.1em;
}
.open-hours-left h6 {
font-size: 0.95em;
}
.open-hours-left {
padding: 4.3em 0;
}
.welcome-left p {
margin-top: 1.5em;
}
figure.effect-julia h4 {
font-size: 1.8em;
}
.tip-grid figure p {
letter-spacing: 0px;
}
figure.effect-julia h4 {
margin-bottom: 1.5em;
}
.feature-grid h4 {
font-size: 1.39em;
}
p {
letter-spacing: 0px;
}
li.get-w3 {
margin-right: 9em;
}
.right-w3l {
right: 17%;
}
.services-grids {
padding: 0 !important;
}
.footer {
padding: 4em 0em 3em;
}
.team-caption h4 {
font-size: 1.3em;
}
.team-caption p {
font-size: .85em;
}
.team-caption {
height: 142px;
}
.blog-left-left {
width: 80px;
height: 80px;
}
.blog-left-right-top h4 {
font-size: 1.2em;
}
.hovereffect h4 {
font-size: 1.3em;
letter-spacing: 1px;
margin-top: 3.6em;
}
.banner-2 {
min-height: 320px;
}
}
@media(max-width: 1050px){
figure.effect-julia p {
font-size: 13px;
}
.hovereffect h4 {
margin-top: 3.8em;
}
.right-w3l {
right: 15%;
}
}
@media(max-width: 1024px){
.agileits-banner-info h3 {
font-size: 2.25em;
}
.navbar-nav > li > a {
padding: 8px 15px 8px;
font-size: 1em;
}
.app-w3 h4 {
font-size: 1.4em;
}
.banner {
min-height: 672px;
}
.ag-w3 .dropdown-menu {
min-width: 174px !important;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 2.4em;
}
.test-review p {
font-size: 0.95em;
}
.test-review p {
font-size: 0.95em;
}
li.get-w3 {
margin-right: 8em;
}
.hovereffect h4 {
margin-top: 3.6em;
}
}
@media(max-width: 991px){
.agile1{
float: left;
width: 33%;
}
.logo {
float: left;
width: 36%;
}
.ph-agile {
float:right;
width:21%;
}
.logo h1 a, .logo-fo h2 a {
font-size: 0.9em;
letter-spacing: 1px;
}
.ph-agile p span {
font-size: 1em;
}
.ph-agile p{
width: 155px;
}
.logo h1 a span, .logo-fo h2 a span {
font-size: 13px;
}
.agileits-banner-info h3 {
font-size: 2.1em;
}
.agileits-banner-info p {
margin: 1.3em auto;
letter-spacing: 6px;
}
.callbacks_tabs a:after {
height: 15px;
width: 15px;
}
.app-w3 h4 {
font-size: 1.3em;
}
.callbacks_tabs {
left: 42.7%;
}
.navbar {
margin-bottom: 8px !important;
}
.app-w3 {
margin-top: 7em;
}
.ag-w3 .dropdown-menu {
min-width: 168px !important;
}
.app-sub-w3 form input[type="submit"] {
font-size: 0.95em;
}
.banner {
min-height: 630px;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 2.35em;
}
.welcome-left {
float: left;
width: 50%;
}
.welcome-right {
float: right;
width: 50%;
}
.open-hours-left {
float: left;
width: 25%;
}
.welcome-left-grids {
float: left;
width: 50%;
}
.open-hours-left h4 {
font-size: 1.1em;
}
.open-hours-left:nth-child(1) {
padding: 4.3em 0;
}
.open-hours-left h5 {
font-size: 0.9em;
}
.open-hours-left h6 {
font-size: 0.8em;
}
.open-hours-left {
padding: 5.1em 0;
}
.tip-grid {
float: left;
width: 50%;
}
figure.effect-julia h4 {
margin-bottom: 1em;
font-size: 1.5em;
}
.feature-grid {
float: left;
width: 25%;
}
.icons-w3 i {
height: 150px;
width: 150px;
font-size: 3em;
line-height: 145px;
}
.feature-grid h4 {
font-size: 1.02em;
}
.test-review p {
font-size: 0.9em;
}
.test-monials h5 {
font-size: 1.8em;
}
.services-grids, .ftr-grid{
float: left;
width: 33%;
}
.services-grids ul li a {
font-size: 0.81em;
}
.ftr-grid p {
font-size: 0.85em;
}
.right-w3l {
right: 17%;
}
li.get-w3 {
margin-right: 6em;
}
.agileits-team-grid {
float: left;
width: 25%;
padding: 0px 8px;
}
.team-caption h4 {
font-size: 1em;
}
.team-caption p {
font-size: .8em;
}
.team-caption ul li a i {
height: 20px;
width: 20px;
line-height: 27px;
font-size: 0.8em;
}
.team-caption {
height: 110px;
}
.w3l-event-grid {
float: left;
width: 50%;
}
.agileits_portfolio_grid {
float: left;
width: 33%;
}
.hovereffect h4 {
margin-top: 3.2em;
font-size: 1.1em;
}
.w3agile_mail_grid input[type="text"] {
margin-right: 1.2em;
}
.w3agile_mail_grids textarea {
min-height: 16em;
}
.agile-blog-grid-left {
float: left;
width: 60%;
}
.blog-left-left {
width: 54px;
height: 54px;
padding: 1.2em 0 0 0;
font-size: 0.8em;
}
.agile-blog-grid-right {
float: right;
width: 40%;
}
.blog-left-right-top h4 {
font-size: 1.1em;
}
.categories ul li a {
font-size: .82em;
}
.banner-2 {
min-height: 300px;
}
}
@media(max-width: 800px){
.ph-agile {
float: right;
width: 26%;
}
.agile1, .ph-agile {
padding-top: 2em;
}
.navbar {
margin-bottom: 0px !important;
}
.navbar-nav > li > a {
padding: 7px 15px 7px;
}
.agileits-banner-info p {
margin: 1em auto;
}
.app-w3 {
margin-top: 6.5em;
padding-bottom: 2.5em;
}
.app-w3 h4 {
font-size: 1.2em;
}
.app-sub-w3 {
width: 97%;
padding: 1em 0.5em 2em;
}
.banner {
min-height: 562px;
}
.ag-w3 .dropdown-menu {
min-width: 140px !important;
}
.app-sub-w3 form input[type="submit"] {
font-size: 0.8em;
padding: 1em 0em;
}
.feature-w3l, .tips.w3agile, .welcome, .team, #review, .events, .blog, .codes, .typo, #gallery, .mail {
padding: 3.5em 0;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 2.2em;
}
.right-w3l {
right: 10%;
}
.banner-2 {
min-height: 270px;
}
.media-left.response-text-left {
width: 20%;
}
}
@media(max-width: 768px){
.agile1 {
float: left;
width: 32%;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 2.1em;
}
li.get-w3 {
margin-right: 5em;
}
.right-w3l {
right: 8%;
}
a.re-w3 {
width: 36%;
}
.news-grid-info a {
font-size: 1.2em;
}
.test-review p {
font-size: 0.85em;
}
}
@media(max-width: 767px){
.navbar-toggle {
float: left !important;
}
.icon-bar {
background-color: #ee4f4f !important;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: #00a0f0 !important;
}
.navbar-nav {
margin: 18.5px -15px !important;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
border-color: #00a0f0 !important;
background: rgba(238, 79, 79, 0.5);
}
.navbar-nav > li > a {
padding: 9px 15px 9px;
}
.agileits-banner-info {
padding-top: 5.5em;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #fff !important;
}
}
@media(max-width: 736px){
.ph-agile p span {
font-size: 0.95em;
}
.agileits-banner-info h3 {
font-size: 1.8em;
}
.agileits-banner-info p {
font-size: 0.9em;
}
.agileits-banner-info {
padding-top: 4em;
}
.callbacks_tabs a:after {
height: 14px;
width: 14px;
}
.callbacks_tabs {
left: 41%;
}
.app-w3 h4 {
font-size: 1.15em;
}
.app-sub-w3 input[type="text"], .ag-w3 {
font-size: 0.85em;
padding: 11px 10px;
}
input#timepicker {
padding: 11px 10px;
}
.app-sub-w3 form input[type="submit"] {
font-size: 0.75em;
}
.banner {
min-height: 510px;
}
.ag-w3 .dropdown-menu {
min-width: 120px !important;
}
.dropdown-menu > li > a {
padding: 3px 15px;
}
.feature-w3l, .tips.w3agile, .welcome, .team, #review, .events, .blog, .codes, .typo, #gallery, .mail {
padding: 3em 0;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 2em;
margin-bottom: 1em;
}
.open-hours-left h5 {
font-size: 0.85em;
}
.welcome-left p {
font-size: 0.95em;
}
figure.effect-julia h4 {
margin-bottom: 0.5em;
}
.feature-grid {
width: 50%;
}
.feature-grid:nth-child(3), .feature-grid:nth-child(4) {
margin-top: 1.5em;
}
.feature-grid h4 {
font-size: 1.4em;
}
.icons-w3 i {
height: 180px;
width: 180px;
margin: 3px;
font-size: 4em;
line-height: 172px;
}
.test-monials h5 {
font-size: 1.7em;
}
.services-grids ul li a {
font-size: 0.77em;
}
.right-w3l {
right: 7%;
}
.news-grid-info p {
font-size: 0.95em;
}
a.re-w3 {
font-size: 1em;
letter-spacing: 0px;
}
.banner-2 {
min-height: 220px;
}
.blog-left-right-top p {
font-size: .8em;
}
.categories ul li a {
font-size: .78em;
}
.hovereffect h4 {
margin-top: 3em;
}
.ph-agile {
float: right;
width: 27%;
}
.blog-left-right {
width: 86%;
margin-left: 0em;
margin-top: 1em;
}
.media-left.response-text-left {
width: 24%;
}
.navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
text-align: center;
}
}
@media(max-width: 667px){
.ph-agile p span {
font-size: 0.9em;
}
.ph-agile p {
width: 139px;
height: 41px;
}
.logo h1 a, .logo-fo h2 a {
font-size: 0.85em;
letter-spacing: 0px;
}
.ph-agile i {
font-size: 1.3em;
}
.navbar-toggle {
margin-top: 0px;
}
.agileits-banner-info h3 {
font-size: 1.7em;
}
.agileits-banner-info h3 {
font-size: 1.7em;
}
.agileits-banner-info {
padding-top: 3.5em;
}
.app-w3 h4 {
font-size: 1.1em;
}
.app-sub-w3 form input[type="submit"] {
font-size: 0.7em;
padding: 1.2em 0em;
margin-left: 0.5em;
}
.app-w3 {
margin-top: 5.5em;
padding-bottom: 2.2em;
}
.banner {
min-height: 480px;
}
.welcome-left {
width: 100%;
}
.welcome-right {
width: 100%;
margin-top: 2.5em;
}
.open-hours-left h4 {
font-size: 1.4em;
}
.open-hours-left h6 {
font-size: 1.1em;
}
.open-hours-left h5 {
font-size: 1.2em;
}
.open-hours-left {
padding: 5.3em 0;
}
.welcome-left p {
margin-top: 2em;
}
.tip-grid {
width: 100%;
}
.tip-grid:nth-child(2) {
margin-top: 3em;
}
figure.effect-julia h4 {
margin-bottom: 2.4em;
font-size: 1.8em;
}
figure.effect-julia p {
width: 87%;
}
.open-hours-left:nth-child(1) {
padding: 4.32em 0;
}
figure.effect-julia p {
width: 87%;
margin: 1em auto;
padding: 9px 0px;
font-size: 14px;
}
.test-review p {
font-size: 0.8em;
}
.test-monials h5 {
font-size: 1.6em;
}
.services-grids, .ftr-grid {
float: left;
width: 50%;
}
.ftr-grid.fg2 {
float: left;
width: 100%;
margin-top:1em;
}
.services-grids ul li a {
font-size: 0.9em;
}
.ftr-grid p {
font-size: 0.9em;
margin-top: 3%;
}
.local {
width: 7%;
}
.ftr-text {
width: 93%;
}
.copyrights p {
letter-spacing: 1px;
}
.footer {
padding: 3em 0em;
}
li.get-w3 a {
font-size: 1em;
}
li.get-w3 {
padding: 0.4em 0.8em;
}
li.get-w3 {
margin-right: 4em;
}
.right-w3l {
top: -5%;
}
.agileits-team-grid {
width: 50%;
padding: 0px 25px;
}
.agileits-team-grid:nth-child(3), .agileits-team-grid:nth-child(4) {
margin-top: 2.5em;
}
.team-caption h4 {
font-size: 1.4em;
}
.team-caption p {
font-size: .9em;
}
.team-caption {
height: 148px;
}
.news-grid-info p {
font-size: 0.9em;
}
.news-grid-info a {
font-size: 1.1em;
}
.news-grid-info h5 {
font-size: 1em;
}
a.re-w3 {
font-size: 0.95em;
width: 38%;
}
.agile-blog-grid-left {
width: 100%;
}
.agile-blog-grid-right {
width: 100%;
}
.hovereffect h4 {
margin-top: 2.8em;
font-size: 1em;
}
.w3agile_mail_grid input[type="email"], .w3agile_mail_grid input[type="text"]:nth-child(2) {
margin: 1em 0 1.5em;
}
.w3agile_mail_grid input[type="text"] {
margin-right: 1em;
}
.w3agile_mail_grid input[type="text"], .w3agile_mail_grid input[type="email"], .w3agile_mail_grids textarea {
font-size: 13px;
}
.w3agile_mail_grids input[type="submit"] {
margin: 1em auto 1em;
}
.navbar-nav > li > a {
padding: 8px 15px 8px;
letter-spacing: 0px;
}
.agile1 {
float: left;
width: 30%;
}
.callbacks_tabs {
left: 39%;
}
.services-grids {
padding: 0 15px !important;
}
.dropdown-menu > li > a {
font-size: 0.9em;
}
}
@media(max-width: 640px){
.app-sub-w3 form input[type="submit"] {
font-size: 0.8em;
padding: 1em 0em;
margin-top: 1.5em;
width: 27%;
}
.app-sub-w3 input[type="text"], .ag-w3 {
width: 23%;
}
.app-sub-w3 {
width: 93%;
padding: 1em 0.5em 1em;
}
.open-hours-left h5 {
font-size: 1.1em;
}
.open-hours-left h6 {
font-size: 1em;
}
.open-hours-left h4 {
font-size: 1.3em;
}
.open-hours-left:nth-child(1) {
padding: 4.38em 0;
}
figure.effect-julia p {
font-size: 13px;
}
li.get-w3 {
margin-right: 3em;
}
.ag-w3 .dropdown-menu {
min-width: 130px !important;
}
}
@media(max-width: 600px){
.logo h1 a, .logo-fo h2 a {
font-size: 0.8em;
}
.logo {
float: left;
width: 40%;
}
.agileits-banner-info h3 {
font-size: 1.5em;
}
.callbacks_tabs {
top: 102%;
}
.app-w3 {
margin-top: 5em;
padding-bottom: 2em;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 1.9em;
}
.navbar-nav > li > a {
font-size: 0.9em;
}
li.get-w3 {
margin-right: 2em;
}
.team-caption h4 {
font-size: 1.2em;
}
.hovereffect h4 {
font-size: 0.95em;
}
.services-grids ul li a {
font-size: 0.84em;
}
.dropdown-menu {
min-width: 100px !important;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
font-size: 0.9em;
}
.app-sub-w3 input[type="text"], .ag-w3 {
width: 24%;
}
}
@media(max-width: 568px){
.logo h1 a, .logo-fo h2 a {
font-size: .75em;
}
.ph-agile p span {
font-size: 0.85em;
margin-left: 0.3em;
}
.ph-agile i {
font-size: 1.2em;
}
.ph-agile p{
width: 124px;
}
.logo-w3l {
font-size: 2.5em;
}
.agileits-banner-info h3 {
font-size: 1.4em;
}
.app-w3 h4 {
font-size: 1.05em;
}
.app-w3 {
margin-top: 4.5em;
}
.agileits-banner-info p {
font-size: 0.85em;
}
.app-sub-w3 form input[type="submit"] {
font-size: 0.75em;
}
.feature-w3l, .tips.w3agile, .welcome, .team, #review, .events, .blog, .codes, .typo, #gallery, .mail {
padding: 2.5em 0;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 1.8em;
}
h3.tittle span, h3.tittle-one span, .agile-title h3 span, h4.tittle-two span, .team-heading h3 span, .team-w3l h3 span, h3.w3l-sing span, h3.tittle-agw3 span, h3.tittle-agilew3 span, h3.w3l_head span, h3.mail-w3 span {
width: 58px;
margin: 9px auto 0;
}
.banner-2 {
min-height: 200px;
}
.team-caption h4 {
font-size: 1.1em;
}
.team-caption {
height: 134px;
}
.agileits_portfolio_grid {
float: left;
width: 100%;
}
.hovereffect img {
margin-bottom: 18px;
}
.hovereffect .overlay {
height: 75%;
}
.hovereffect h4 {
font-size: 1.6em;
letter-spacing: 2px;
margin-top: 5em;
}
.w3agile_mail_grids textarea {
min-height: 15em;
}
.w3agile_mail_grids input[type="submit"] {
font-size: 0.9em;
width: 22%;
}
.faq li a {
font-size: 1em;
}
.w3agile_mail_grid input[type="text"] {
margin-right: 0.8em;
}
.services-grids ul li a {
font-size: 0.78em;
}
a.re-w3 {
font-size: 0.85em;
width: 41%;
}
.test-review p {
font-size: 0.75em;
}
.navbar-toggle {
padding: 8px 9px !important;
}
.navbar-toggle .icon-bar {
width: 20px !important;
}
.navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 16px;
}
.ag-w3 .dropdown-menu {
min-width: 120px !important;
}
}
@media(max-width: 480px){
.logo h1 a, .logo-fo h2 a {
font-size: .7em;
}
.agile1 {
width: 28%;
}
.logo {
padding: 0 !important;
width: 40%;
}
.ph-agile p span {
font-size: 0.75em;
margin-left: 0.4em;
}
.ph-agile p {
width: 114px;
height: 40px;
}
.ph-agile {
width: 31%;
}
.agileits-banner-info h3 {
font-size: 1.25em;
}
.agileits-banner-info p {
font-size: 0.75em;
letter-spacing: 5px;
}
.callbacks_tabs a:after {
height: 13px;
width: 13px;
}
.callbacks_tabs li {
margin: 0px 5px;
}
.callbacks_tabs {
top: 101%;
left: 37%;
}
.agileits-banner-info {
padding-top: 3em;
}
.app-sub-w3 input[type="text"], .ag-w3 {
width: 32%;
font-size: 0.8em;
padding: 9px 8px;
}
.agileits-banner-info {
padding-top: 2.5em;
}
.app-sub-w3 form input[type="submit"] {
width: 32%;
padding: 0.95em 0em;
}
input#timepicker {
padding: 10px 8px;
}
.banner {
min-height: 455px;
}
.agile1, .ph-agile {
padding-top: 1.5em;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 1.75em;
}
h3.tittle span, h3.tittle-one span, .agile-title h3 span, h4.tittle-two span, .team-heading h3 span, .team-w3l h3 span, h3.w3l-sing span, h3.tittle-agw3 span, h3.tittle-agilew3 span, h3.w3l_head span, h3.mail-w3 span {
width: 48px;
}
.app-w3 h4 {
font-size: 1em;
}
.welcome-left p {
font-size: 0.9em;
}
.open-hours-left h4 {
font-size: 1.15em;
}
.open-hours-left h6 {
font-size: 0.9em;
}
.open-hours-left h5 {
font-size: 1em;
}
.open-hours-left:nth-child(1) {
padding: 4.55em 0;
}
.welcome-left-grids {
margin-top: 2.5em;
}
figure.effect-julia h4 {
margin-bottom: 1.5em;
font-size: 1.5em;
}
figure.effect-julia p {
margin: 0.7em auto;
padding: 8px 0px;
}
.feature-grid {
width: 100%;
}
.feature-grid:hover span {
width: 24%;
}
.services-grids, .ftr-grid {
width: 100%;
}
.services-grids ul li a {
font-size: 0.85em;
}
.logo-fo {
margin:0.5em 0em 0.5em;
}
.local i {
font-size: 1.3em;
}
.ftr-text {
width: 90%;
}
.ftr-grid h3, .services-grids h3 {
font-size: 1.35em;
letter-spacing: 0px;
margin-bottom: 0.5em;
}
.services-grids ul {
margin-top: 1.3em;
}
.copyrights p {
font-size: 0.9em;
line-height: 2em;
}
.footer {
padding: 3em 0em 2em;
}
.agile1 {
padding: 1.5em 0.5em 0em 0em;
}
.navbar-nav > li > a {
font-size: 0.85em;
}
li.get-w3 a {
font-size: 0.95em;
}
.right-w3l ul.top-links li a i.fa {
width: 33px;
height: 33px;
font-size: 13px;
line-height: 34px;
}
li.get-w3 {
padding: 0.35em 0.8em;
}
li.get-w3 {
margin-right: 7em;
}
.right-w3l {
top: -4%;
right: 6%;
}
.agileits-team-grid {
padding: 0px 10px;
}
.agileits-team-grid:nth-child(3), .agileits-team-grid:nth-child(4) {
margin-top: 1.5em;
}
.team-caption h4 {
font-size: 1em;
}
.news-grid-info a {
font-size: 0.95em;
}
.news-grid-info h5 {
font-size: 0.9em;
margin: 0.8em 0;
}
.news-grid-info p {
font-size: 0.8em;
}
a.re-w3 {
font-size: 0.75em;
width: 47%;
padding: 0.7em 0em;
}
.blog-left-right-top h4 {
font-size: 0.95em;
}
.blog-left-right-bottom p {
font-size: .85em;
}
.response-text-right p {
font-size: .85em;
}
.response-text-right ul li {
font-size: .85em;
}
.response-text-left h5 {
font-size: 0.9em;
}
.opinion h3 {
font-size: 1.25em;
}
.opinion form textarea {
font-size: .85em;
}
.opinion form input[type="text"] {
font-size: .85em;
}
.opinion form input[type="submit"] {
font-size: 0.9em;
width: 25%;
}
.categories h3 {
color: #000000;
font-size: 1.25em;
}
.hovereffect h4 {
font-size: 1.5em;
margin-top: 4.5em;
}
.faq iframe {
min-height: 20em;
}
.w3agile_mail_grid input[type="text"] {
margin-right: 0em;
padding: 9px;
width: 97%;
}
.w3agile_mail_grids textarea {
min-height: 14em;
}
.w3agile_mail_grids input[type="submit"] {
width: 27%;
}
.w3agile_mail_grid input[type="text"], .w3agile_mail_grid input[type="email"], .w3agile_mail_grids textarea {
width: 97%;
}
.feature-grid:nth-child(2), .feature-grid:nth-child(3), .feature-grid:nth-child(4) {
margin-top: 1.5em;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
font-size: 0.85em;
}
.ag-w3 .dropdown-menu {
min-width: 136px !important;
}
}
@media(max-width: 414px){
.agile1 {
width: 100%;
padding: 1.3em 1em 0em;
}
.logo {
width: 50%;
}
.ph-agile {
width: 50%;
padding-top: 3em;
}
.agileits-banner-info p {
letter-spacing: 4px;
}
.ph-agile p {
width: 126px;
}
.ph-agile p span {
font-size: 0.8em;
}
.app-sub-w3 form input[type="submit"] {
width: 35%;
font-size: 0.7em;
}
.agileits-banner-info h3 {
letter-spacing: 3px;
}
.agileits-banner-info {
padding-top: 2em;
}
.callbacks_tabs {
top: 94%;
left: 35%;
}
.app-w3 {
margin-top: 4em;
}
.navbar {
min-height: 38px!important;
}
.navbar-toggle .icon-bar {
width: 19px !important;
}
.navbar-toggle {
padding: 7px 8px !important;
}
.callbacks_tabs a:after {
height: 12px;
width: 12px;
}
.welcome-left p {
font-size: 0.85em;
}
.open-hours-left h4 {
font-size: 1em;
}
.open-hours-left h6 {
font-size: 0.85em;
}
.open-hours-left h5 {
font-size: 0.9em;
}
.open-hours-left:nth-child(1) {
padding: 4.67em 0;
}
.welcome-right {
margin-top: 2em;
}
.welcome-left-grids {
width: 100%;
}
.welcome-left-grids {
margin-top: 2em;
}
figure.effect-julia p {
width: 98%;
}
figure.effect-julia h4 {
margin-bottom: 0.9em;
font-size: 1.4em;
}
.tip-grid:nth-child(2) {
margin-top: 2em;
}
.test-review p {
font-size: 0.7em;
}
li.get-w3 {
margin-right: 4em;
}
.ftr-grid h3, .services-grids h3 {
font-size: 1.3em;
}
.team-caption {
height: 123px;
}
.w3l-event-grid {
width: 100%;
}
.w3l-event-grid:nth-child(2) {
margin-top: 1.5em;
}
.hovereffect h4 {
font-size: 1.3em;
}
.w3agile_mail_grids textarea {
min-height: 12em;
}
.dropdown-menu > li > a {
font-size: 0.85em;
}
.ag-w3 .dropdown-menu {
min-width: 118px !important;
}
}
@media(max-width: 384px){
.agileits-banner-info h3 {
letter-spacing: 2px;
font-size: 1.2em;
}
.agileits-banner-info p {
letter-spacing: 3px;
}
.app-w3 h4 {
font-size: 0.95em;
letter-spacing:0px;
}
.app-w3 {
margin-top: 3em;
}
.app-sub-w3 input[type="text"], .ag-w3 {
width: 47%;
font-size: 0.75em;
margin-top: 11px;
}
.app-sub-w3 {
padding: 0em 0.5em 0.9em;
}
.app-sub-w3 form input[type="submit"] {
width: 45%;
font-size: 0.75em;
padding: 0.85em 0em;
}
.app-w3 {
padding-bottom: 1.5em;
}
.callbacks_tabs {
top: 89%;
}
.welcome-left p {
font-size: 0.8em;
}
.open-hours-left h5 {
font-size: 0.8em;
}
.open-hours-left {
padding: 5.35em 0;
}
figure.effect-julia p {
width: 100%;
margin: 0.5em auto;
}
.feature-grid:nth-child(2), .feature-grid:nth-child(3), .feature-grid:nth-child(4) {
margin-top: 1em;
}
.hovereffect h4 {
margin-top: 4em;
}
li.get-w3 {
margin-right: 2em;
}
.ph-agile {
width: 44%;
}
.test-monials h5 {
font-size: 1.4em;
}
.feature-grid span {
margin: 1em auto;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 1.7em;
}
.ag-w3 .dropdown-menu {
min-width: 156px !important;
}
}
@media(max-width: 375px){
ul.top-links li {
margin-left: 7px;
}
.hovereffect h4 {
margin-top: 3.9em;
}
.copyrights p {
font-size: 0.85em;
}
.w3agile_mail_grids textarea {
min-height: 11em;
}
.ag-w3 .dropdown-menu {
min-width: 152px !important;
}
}
@media(max-width: 320px){
.logo {
width: 100%;
}
.ph-agile {
width: 100%;
padding-top: 1.1em;
}
.ph-agile p span {
font-size: 0.7em;
}
.ph-agile i {
font-size: 1.1em;
padding-top: 2px;
}
.ph-agile p {
width: 114px;
height: 36px;
}
.agileits-banner-info h3 {
font-size: 1.1em;
}
.agileits-banner-info p {
letter-spacing: 1px;
font-size: 0.7em;
}
.callbacks_tabs a:after {
height: 11px;
width: 11px;
}
.callbacks_tabs {
left: 33.5%;
}
.agileits-banner-info {
padding-top: 1.5em;
}
.app-w3 h4 {
font-size: 0.85em;
}
.app-sub-w3 input[type="text"], .ag-w3 {
font-size: 0.7em;
}
.app-sub-w3 form input[type="submit"] {
width: 46%;
font-size: 0.7em;
}
.feature-w3l, .tips.w3agile, .welcome, .team, #review, .events, .blog, .codes, .typo, #gallery, .mail {
padding: 2em 0;
}
h3.tittle, h3.tittle-one, .agile-title h3, .team-heading h3, h3.tittle-two, .team-w3l h3, h3.w3l-sing, h3.tittle-agw3, h3.tittle-agilew3, h3.w3l_head, h3.mail-w3 {
font-size: 1.6em;
}
.welcome-left p {
font-size: 0.75em;
margin-top: 1.5em;
}
.open-hours-left {
width: 50%;
}
.open-hours-left:nth-child(3), .open-hours-left:nth-child(4) {
border-top: 2px dashed #00a0f0;
}
.open-hours-left h4 {
font-size: 1.1em;
}
.open-hours-left:nth-child(1) {
padding: 4.6em 0;
}
.open-hours-left h6 {
font-size: 0.9em;
}
.open-hours-left h5 {
font-size: 0.95em;
}
figure.effect-julia h4 {
margin-bottom: 0.1em;
font-size: 1.3em;
}
figure.effect-julia p {
margin: 0.2em auto;
padding: 2px 0px;
}
li.get-w3 {
margin-right: 0em;
}
li.get-w3 a {
font-size: 0.85em;
}
.services-grids ul li a {
font-size: 0.8em;
}
.local i {
font-size: 1.2em;
}
.ftr-grid p {
font-size: 0.8em;
}
.ftr-text {
width: 86%;
}
.copyrights {
padding-top: 1.5em;
}
.feature-grid p {
font-size: 0.85em;
}
.navbar-nav > li > a {
padding: 6px 90px 6px;
font-size: 0.8em;
}
.copyrights p {
font-size: 0.8em;
}
.footer {
padding: 3em 0em 1.5em;
}
.logo-w3l {
font-size: 2em;
}
.logo h1 a span, .logo-fo h2 a span {
font-size: 12px;
}
.logo h1 a, .logo-fo h2 a {
font-size: .6em;
}
.banner-2 {
min-height: 222px;
}
.agileits-team-grid {
width: 100%;
}
.team-caption h4 {
font-size: 1.2em;
}
.agileits-team-grid:nth-child(2), .agileits-team-grid:nth-child(3), .agileits-team-grid:nth-child(4) {
margin-top: 1.5em;
}
.team-caption {
height: 141px;
}
.blog-left-right-top h4 {
font-size: 0.85em;
}
.blog-left-right-bottom p {
font-size: .75em;
}
.blog-left-right-top p {
font-size: .7em;
}
.response-text-right p {
font-size: .75em;
}
.response-text-left h5 {
font-size: 0.8em;
}
.response-text-right ul li {
font-size: .75em;
}
.opinion h3 {
font-size: 1em;
}
.opinion form textarea {
font-size: 0.75em;
min-height: 104px;
}
.opinion form input[type="submit"] {
font-size: 0.85em;
width: 40%;
}
.categories ul li a {
font-size: .75em;
}
.hovereffect h4 {
font-size: 1.1em;
letter-spacing: 1px;
}
.faq li a {
font-size: 0.9em;
letter-spacing: 0px;
padding: 1em;
}
.w3agile_mail_grid input[type="email"], .w3agile_mail_grid input[type="text"]:nth-child(2) {
margin: 1em 0 1em;
}
.w3agile_mail_grids textarea {
min-height: 10em;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
font-size: 0.8em;
}
.ag-w3 .dropdown-menu {
min-width: 129px !important;
}
input#timepicker {
padding: 9px 10px;
}
} | 0.31732 | 0.049474 |
@media (min-width: 1400px) {
main,
header,
#main-navbar {
padding-left: 240px;
}
}
.dashboard-card{
height: 150px;
width: 100%;
margin: 10px;
}
.profile-size{
width: 35px;
height: 35px;
object-fit: cover;
}
.bg-transparent {
background-color: transparent !important;
box-shadow: none;
}
.purple-gradient-rgba {
background: linear-gradient(40deg,rgba(135,58,155,.9),rgba(35, 34, 87, 0.9))!important;
}
body {
font-family: 'Poppins';
font-size: 15px;
background-color: #F1F4F5 !important;
line-height: 1.3;
}
.centered {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.opacity-card {
background-color: rgba(0, 0, 0, 0.089);
}
.text-darkwhite{
color: #dbdddf !important;
}
.text-discordblue{
color: #7289da !important;
}
.text-google{
color:#DB4437 !important;
}
.text-ytred{
color: #c4302b !important;
}
.text-chromered{
color: #de5246 !important;
}
.text-lightred{
color: #DB504A !important
}
.text-golden{
color: #d18b00 !important
}
.text-darkx{
color:#195ECE !important;
}
/*Material inputs*/
.form-material .form-group {
overflow: hidden;
}
.form-material .form-control {
background-color: rgba(252, 248, 248, 0);
background-position: center bottom, center calc(99%);
background-repeat: no-repeat;
background-size: 0 2px, 100% 1px;
padding: 0;
transition: background 0s ease-out 0s;
}
.form-material .form-control, .form-material .form-control.focus, .form-material .form-control:focus {
background-image: linear-gradient(#dad5d5,#e0dcdc),linear-gradient(rgb(206,203,203),rgb(206,203,203));
border: 0;
border-radius: 0;
box-shadow: none;
float: none;
}
.form-material .form-control.focus,
.form-material .form-control:focus {
background-size: 100% 2px, 100% 1px;
outline: 0 none;
transition-duration: 0.3s;
}
.form-control::-webkit-input-placeholder {
color: #dbdddf !important;
opacity: 1;
}
.form-control::-moz-placeholder {
color: #dbdddf !important;
opacity: 1;
}
.form-control:-ms-input-placeholder {
color: #dbdddf !important;
opacity: 1;
}
.form-control::-ms-input-placeholder {
color: #dbdddf !important;
opacity: 1;
}
.form-control::placeholder {
color: #dbdddf !important;
opacity: 1;
}
.btn:hover, .btn:focus, .btn:active {
outline: 0;
-webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);
box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);
}
.btn:hover {
color: #212529;
text-decoration: none;
}
.message-box {
background-color: #2f3238!important;
color: #fff;
border-radius: 5px;
width: 97%;
display: inline-block;
height: 250px;
background: #fff;
box-shadow: inset 0px 0px 150px #00000017;
overflow: auto;
padding: 10px;
overflow-x: hidden;
}
.message-box-main {
background-color:transparent!important;
color: #fff;
border-radius: 5px;
width: 97%;
display: inline-block;
height: 600px;
background: #fff;
overflow: auto;
padding: 10px;
overflow-x: hidden;
border-color: #515358!important;
}
.online-box-main {
background-color:transparent!important;
color: #fff;
width: 100%;
display: inline-block;
height: 700px;
background: #fff;
overflow: auto;
padding: 10px;
overflow: scroll;
overflow-x: hidden;
}
.online-box {
background-color: #2f3238!important;
color: #fff;
width: 100%;
display: inline-block;
height: 350px;
background: #fff;
overflow: auto;
padding: 10px;
overflow: scroll;
overflow-x: hidden;
}
.open-button {
border: none;
cursor: pointer;
opacity: 0.8;
position: fixed;
bottom: 15px;
right: 15px;
}
.chat-popup {
display: none;
border: none;
position: fixed;
bottom: 15px;
right: 15px;
}
.chat-input {
background-color: #2f3238!important;
color: #fff;
border-color:#4b4f57;
}
.chat-close {
color: #fff;
}
.online-box::-webkit-scrollbar {
width: 0px; /* Remove scrollbar space */
background: transparent; /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
.online-box::-webkit-scrollbar-thumb {
background: #FF0000;
}
.online-box-main::-webkit-scrollbar {
width: 0px; /* Remove scrollbar space */
background: transparent; /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
.online-box-main::-webkit-scrollbar-thumb {
background: #FF0000;
}
.chatx-card{
background-color: #2f3238!important;
color: #fff;
width: 50%;
margin: 10px;
}
.alert-card{
color: #fff;
width: 100%;
margin: 10px;
}
.account-card{
width: 100%;
margin: 10px;
}
.news-card{
height: 450px;
width: 100%;
margin: 10px;
}
.chat-card{
height: 700px;
width: 100%;
margin: 10px;
}
.btn-link {
border: none;
outline: none;
background: none;
cursor: pointer;
color: #0000EE;
padding: 0;
text-decoration: underline;
font-family: inherit;
font-size: inherit;
}
.btn-link:hover {
background: none;
}
.table-hover>tbody>tr:hover {
--bs-table-accent-bg: var(--bs-table-hover-bg);
color: rgb(193, 197, 201) !important;
}
.btn-outline-success:hover {
color: rgb(193, 197, 201) !important;
background-color: #00b74900;
border-color: #00b74a;
}
.p-margin{
margin-bottom:0rem !important;
}
.same-size{
width: 40px;
height: 40px;
object-fit: cover;
}
.same-size-logo{
width: 170px;
}
.alert-box-dashboard{
background-color: transparent!important;
color: #fff;
border-color: #515358!important
}
.dataTables_wrapper .dataTables_info, v.dataTables_wrapper .dataTables_paginate {
color:#fff;
}
label {
color: #fff !important;
}
.page-item.active .page-link {
background-color:transparent !important;
}
.page-link, .page-link:hover {
background-color:transparent !important;
color: #ffffff !important;
}
.bot-action-button {
border-color: #A93537 !important;
color: #A93537 !important;
width: 155px !important;
margin: 10px;
}
.bot-delete-button {
border-color: #da2629 !important;
color: #da2629 !important;
}
.bot-action-button:hover {
color: rgb(193, 197, 201) !important;
width: 155px !important;
margin: 10px;
}
.btn-transparent {
margin: -7px;
height: 40px;
font-size: 14px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background-color: transparent;
color: #fff;
}
.btn-transparent:focus {
background-color: #2e2e2e !important;
color: rgb(238, 232, 232) !important;
}
.btn.active, .btn.active:focus, .btn.focus, .btn:active, .btn:active:focus, .btn:focus, .btn:hover {
background-color: #2e2e2e !important;
color: rgb(238, 232, 232) !important;
}
.btn-transparent:hover {
background-color: transparent;
color: rgb(238, 232, 232) !important;
}
.select-input.form-control[readonly]:not([disabled]) {
color: #fff !important;
}
.select-arrow:before {
color: #fff !important;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
color: #A93537 !important;
border-color: #A93537 !important;
background-color: transparent !important;
}
.nav-tabs .nav-link:hover {
background-color:transparent !important;
border-color: #A93537 !important;
color: #A93537 !important;
}
.no-profile-card{
height: 200px;
width: 100%;
margin-top: 10px;
}
.settings-profile-card{
height: 370px;
width: 100%;
margin-top: 10px;
}
.center-button{
margin-bottom: 5px;
margin-top: 5px;
margin-left:auto;
margin-right:auto;
display: block;
}
.profile-delete-button {
color: #ffffff!important;
background-color: transparent!important;
border: 2px solid#d32f2f !important;
}
.settings-button{
color: #ffffff!important;
background-color: transparent!important;
border: 2px solid#464646 !important;
}
.password-change-card{
height: 330px;
width: 100%;
margin-top: 10px;
}
.fa-change-card{
height: 250px;
width: 100%;
margin-top: 10px;
}
.username-card{
height: 200px;
width: 100%;
margin-top: 10px;
}
.settings-token-card{
height: 350px;
width: 100%;
margin-top: 10px;
}
.bot-clear-card{
height: 120px;
width: 100%;
margin-top: 10px;
}
.new-license-card{
height: 330px;
width: 100%;
margin-top: 10px;
}
.new-ticket-card{
height: 450px;
width: 100%;
margin-top: 10px;
}
.tickets-table{
height: 150px;
}
.ticket-answer-card{
margin-top: 10px;
}
.btn-login:hover{
background-color: transparent !important;
}
.btn-login.active, .btn-login.active:focus, .btn-login.focus, .btn-login:active, .btn-login:active:focus, .btn-login:focus, .btn-login:hover {
background-color: transparent !important;
color: rgb(238, 232, 232) !important;
}
.select-wrapper .form-outline .form-control~.form-notch div {
border: 0 !important;
}
.toast{
background-color: #262626!important;
}
.dataTables_processing{
background-color: transparent !important;
color: #fff !important;
} | resources/css/style.css | @media (min-width: 1400px) {
main,
header,
#main-navbar {
padding-left: 240px;
}
}
.dashboard-card{
height: 150px;
width: 100%;
margin: 10px;
}
.profile-size{
width: 35px;
height: 35px;
object-fit: cover;
}
.bg-transparent {
background-color: transparent !important;
box-shadow: none;
}
.purple-gradient-rgba {
background: linear-gradient(40deg,rgba(135,58,155,.9),rgba(35, 34, 87, 0.9))!important;
}
body {
font-family: 'Poppins';
font-size: 15px;
background-color: #F1F4F5 !important;
line-height: 1.3;
}
.centered {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.opacity-card {
background-color: rgba(0, 0, 0, 0.089);
}
.text-darkwhite{
color: #dbdddf !important;
}
.text-discordblue{
color: #7289da !important;
}
.text-google{
color:#DB4437 !important;
}
.text-ytred{
color: #c4302b !important;
}
.text-chromered{
color: #de5246 !important;
}
.text-lightred{
color: #DB504A !important
}
.text-golden{
color: #d18b00 !important
}
.text-darkx{
color:#195ECE !important;
}
/*Material inputs*/
.form-material .form-group {
overflow: hidden;
}
.form-material .form-control {
background-color: rgba(252, 248, 248, 0);
background-position: center bottom, center calc(99%);
background-repeat: no-repeat;
background-size: 0 2px, 100% 1px;
padding: 0;
transition: background 0s ease-out 0s;
}
.form-material .form-control, .form-material .form-control.focus, .form-material .form-control:focus {
background-image: linear-gradient(#dad5d5,#e0dcdc),linear-gradient(rgb(206,203,203),rgb(206,203,203));
border: 0;
border-radius: 0;
box-shadow: none;
float: none;
}
.form-material .form-control.focus,
.form-material .form-control:focus {
background-size: 100% 2px, 100% 1px;
outline: 0 none;
transition-duration: 0.3s;
}
.form-control::-webkit-input-placeholder {
color: #dbdddf !important;
opacity: 1;
}
.form-control::-moz-placeholder {
color: #dbdddf !important;
opacity: 1;
}
.form-control:-ms-input-placeholder {
color: #dbdddf !important;
opacity: 1;
}
.form-control::-ms-input-placeholder {
color: #dbdddf !important;
opacity: 1;
}
.form-control::placeholder {
color: #dbdddf !important;
opacity: 1;
}
.btn:hover, .btn:focus, .btn:active {
outline: 0;
-webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);
box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);
}
.btn:hover {
color: #212529;
text-decoration: none;
}
.message-box {
background-color: #2f3238!important;
color: #fff;
border-radius: 5px;
width: 97%;
display: inline-block;
height: 250px;
background: #fff;
box-shadow: inset 0px 0px 150px #00000017;
overflow: auto;
padding: 10px;
overflow-x: hidden;
}
.message-box-main {
background-color:transparent!important;
color: #fff;
border-radius: 5px;
width: 97%;
display: inline-block;
height: 600px;
background: #fff;
overflow: auto;
padding: 10px;
overflow-x: hidden;
border-color: #515358!important;
}
.online-box-main {
background-color:transparent!important;
color: #fff;
width: 100%;
display: inline-block;
height: 700px;
background: #fff;
overflow: auto;
padding: 10px;
overflow: scroll;
overflow-x: hidden;
}
.online-box {
background-color: #2f3238!important;
color: #fff;
width: 100%;
display: inline-block;
height: 350px;
background: #fff;
overflow: auto;
padding: 10px;
overflow: scroll;
overflow-x: hidden;
}
.open-button {
border: none;
cursor: pointer;
opacity: 0.8;
position: fixed;
bottom: 15px;
right: 15px;
}
.chat-popup {
display: none;
border: none;
position: fixed;
bottom: 15px;
right: 15px;
}
.chat-input {
background-color: #2f3238!important;
color: #fff;
border-color:#4b4f57;
}
.chat-close {
color: #fff;
}
.online-box::-webkit-scrollbar {
width: 0px; /* Remove scrollbar space */
background: transparent; /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
.online-box::-webkit-scrollbar-thumb {
background: #FF0000;
}
.online-box-main::-webkit-scrollbar {
width: 0px; /* Remove scrollbar space */
background: transparent; /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
.online-box-main::-webkit-scrollbar-thumb {
background: #FF0000;
}
.chatx-card{
background-color: #2f3238!important;
color: #fff;
width: 50%;
margin: 10px;
}
.alert-card{
color: #fff;
width: 100%;
margin: 10px;
}
.account-card{
width: 100%;
margin: 10px;
}
.news-card{
height: 450px;
width: 100%;
margin: 10px;
}
.chat-card{
height: 700px;
width: 100%;
margin: 10px;
}
.btn-link {
border: none;
outline: none;
background: none;
cursor: pointer;
color: #0000EE;
padding: 0;
text-decoration: underline;
font-family: inherit;
font-size: inherit;
}
.btn-link:hover {
background: none;
}
.table-hover>tbody>tr:hover {
--bs-table-accent-bg: var(--bs-table-hover-bg);
color: rgb(193, 197, 201) !important;
}
.btn-outline-success:hover {
color: rgb(193, 197, 201) !important;
background-color: #00b74900;
border-color: #00b74a;
}
.p-margin{
margin-bottom:0rem !important;
}
.same-size{
width: 40px;
height: 40px;
object-fit: cover;
}
.same-size-logo{
width: 170px;
}
.alert-box-dashboard{
background-color: transparent!important;
color: #fff;
border-color: #515358!important
}
.dataTables_wrapper .dataTables_info, v.dataTables_wrapper .dataTables_paginate {
color:#fff;
}
label {
color: #fff !important;
}
.page-item.active .page-link {
background-color:transparent !important;
}
.page-link, .page-link:hover {
background-color:transparent !important;
color: #ffffff !important;
}
.bot-action-button {
border-color: #A93537 !important;
color: #A93537 !important;
width: 155px !important;
margin: 10px;
}
.bot-delete-button {
border-color: #da2629 !important;
color: #da2629 !important;
}
.bot-action-button:hover {
color: rgb(193, 197, 201) !important;
width: 155px !important;
margin: 10px;
}
.btn-transparent {
margin: -7px;
height: 40px;
font-size: 14px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background-color: transparent;
color: #fff;
}
.btn-transparent:focus {
background-color: #2e2e2e !important;
color: rgb(238, 232, 232) !important;
}
.btn.active, .btn.active:focus, .btn.focus, .btn:active, .btn:active:focus, .btn:focus, .btn:hover {
background-color: #2e2e2e !important;
color: rgb(238, 232, 232) !important;
}
.btn-transparent:hover {
background-color: transparent;
color: rgb(238, 232, 232) !important;
}
.select-input.form-control[readonly]:not([disabled]) {
color: #fff !important;
}
.select-arrow:before {
color: #fff !important;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
color: #A93537 !important;
border-color: #A93537 !important;
background-color: transparent !important;
}
.nav-tabs .nav-link:hover {
background-color:transparent !important;
border-color: #A93537 !important;
color: #A93537 !important;
}
.no-profile-card{
height: 200px;
width: 100%;
margin-top: 10px;
}
.settings-profile-card{
height: 370px;
width: 100%;
margin-top: 10px;
}
.center-button{
margin-bottom: 5px;
margin-top: 5px;
margin-left:auto;
margin-right:auto;
display: block;
}
.profile-delete-button {
color: #ffffff!important;
background-color: transparent!important;
border: 2px solid#d32f2f !important;
}
.settings-button{
color: #ffffff!important;
background-color: transparent!important;
border: 2px solid#464646 !important;
}
.password-change-card{
height: 330px;
width: 100%;
margin-top: 10px;
}
.fa-change-card{
height: 250px;
width: 100%;
margin-top: 10px;
}
.username-card{
height: 200px;
width: 100%;
margin-top: 10px;
}
.settings-token-card{
height: 350px;
width: 100%;
margin-top: 10px;
}
.bot-clear-card{
height: 120px;
width: 100%;
margin-top: 10px;
}
.new-license-card{
height: 330px;
width: 100%;
margin-top: 10px;
}
.new-ticket-card{
height: 450px;
width: 100%;
margin-top: 10px;
}
.tickets-table{
height: 150px;
}
.ticket-answer-card{
margin-top: 10px;
}
.btn-login:hover{
background-color: transparent !important;
}
.btn-login.active, .btn-login.active:focus, .btn-login.focus, .btn-login:active, .btn-login:active:focus, .btn-login:focus, .btn-login:hover {
background-color: transparent !important;
color: rgb(238, 232, 232) !important;
}
.select-wrapper .form-outline .form-control~.form-notch div {
border: 0 !important;
}
.toast{
background-color: #262626!important;
}
.dataTables_processing{
background-color: transparent !important;
color: #fff !important;
} | 0.436142 | 0.061509 |
*{
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-family: 'Roboto Condensed', sans-serif;
}
img{
max-width: 100%;
height: auto;
-o-object-fit: cover;
object-fit: cover;
background-size: cover;
background-position: center;
}
#header1{
background-color: #f3cc29;
width: 100%;
}
.ic{
margin-left: 1%;
font-size: 20px;
margin-bottom: 1%;
margin-top: 1%;
color: #fff;
}
.ic:hover{
color: #11B5E6;
}
.img-header{
width: 35px;
height: 35px;
margin-top: 4px;
}
.top-center{
}
.text-visit{
margin-left: 23%;
margin-top: 3%;
margin-bottom: 3%;
}
.visit{
margin-right: 5%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.text-top1{
display: inline-block;
color: #002e5b;
}
.text-header{
}
.text-top1:hover{
color: #11B5E6;
text-decoration: none;
}
.title-top{
color: #002e5b;
margin: 0px;
font-size: 15px;
font-weight: bold;
}
#header3{
background-color: #fff;
width: 100%;
z-index: 99;
}
.menu{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.logo{
height: 50px;
display: block;
background-color: #fff;
margin-top: 14px;
}
.bt-search{
position: relative;
}
.menu-content{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 90%;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.menu-content1{
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
height: 49px;
text-align: right;
margin: 25px 0px 5px 15px;
font-weight: 700;
font-size: 18px;
position: relative;
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
text-transform: uppercase;
}
.list-menu{
position: relative;
-webkit-transition: 0.3 all;
-o-transition: 0.3 all;
transition: 0.3 all;
}
.a-menu{
color: #333;
margin: 25px 0px 5px 25px;
}
.a-menu:hover{
text-decoration: none;
color: #f3cc29;
}
.menu-con{
list-style: none;
text-align: left;
position: absolute;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.4s;
transition: all 0.4s;
margin-top: 50px;
background-color: #fff;
width: 200px;
left: 0;
top: 100%;
padding: 10px 0 0 0;
-o-transition: all 0.4s;
transition: all 0.4s;
-webkit-box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.05);
z-index: 99;
border-top: 5px solid #f3cc29;
}
.menu-con .login a{
color: #333;
}
.menu-con .login a:hover{
text-decoration: none;
color: #f3cc29;
}
.new:hover .menu-con{
visibility: visible;
opacity: 1;
margin-top: 0px;
}
.login{
display: block;
padding: 0px 0px 10px 10px;
color: #333 ;
border-bottom: 1px solid rgba(231, 231, 231, 0.1);
font-weight: initial;
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
text-transform: none;
}
.login:hover{
color: #f3cc29;
}
.sticky {
position: fixed;
top: 0;
width: 100%;
}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background: rgba(0,0,0,0.8);
overflow-x: hidden;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
padding-top: 5%;
}
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
color: #fff;
}
.menu-rsp-full{
margin-top: 10%;
}
.menu-rsp{
color: #637281;
font-weight: 700;
display: none;
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
.ic1{
color: #11B5E6;
margin-top: 4%;
margin-left: -12%;
}
@media (min-width: 320px) and (max-width: 410px){
#header1,
#header2,
.menu-content{
display: none;
}
#header3{
background-color: #fff;
}
.menu-rsp{
display: block;
margin-top: 4%;
}
.sidenav {
padding-top: 20%;
}
.ip-tim{
width: 80%;
margin-left: 10%;
border-radius:10px;
}
}
@media (min-width: 411px) and (max-width: 767px){
#header1,
#header2,
.menu-content{
display: none;
}
#header3{
background-color: #fff;
}
.menu-rsp{
display: block;
margin-top: 4%;
}
.sidenav {
padding-top: 20%;
}
.ip-tim{
width: 80%;
margin-left: 10%;
border-radius:10px;
}
}
@media (min-width: 411px) and (max-width: 767px){
#header1,
#header2,
.menu-content{
display: none;
}
#header3{
background-color: #fff;
}
.menu-rsp{
display: block;
margin-top: 4%;
}
.sidenav {
padding-top: 20%;
}
.ip-tim{
width: 80%;
margin-left: 10%;
border-radius:10px;
}
}
@media (min-width: 768px) and (max-width: 1023px){
.menu-content{
display: none;
}
#header3{
background-color: #fff;
}
.menu-rsp{
display: block;
margin-top: 2%;
}
.sidenav {
padding-top: 20%;
}
.ip-tim{
width: 80%;
margin-left: 10%;
border-radius:10px;
}
}
@media (min-width: 1024px) and (max-width: 1025px){
.ip-tim{
width: 177px;
}
.text-visit{
margin-left: 17%;
}
}
/*Footer*/
#footer{
background-color: #2c394c;
margin-top: 10%;
}
.visit-bot{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.bot-title{
position: relative;
padding-left: 25px;
margin: 0px 0px 15px 0px;
color: #ffffff;
border-left: 7px solid #11b5e6;
font-size: 20px;
font-weight: 600;
}
.bot{
margin-top: 5%
}
.visit-bot{
line-height: 24px;
padding-bottom: 10px;
border-bottom: 1px solid rgba(231, 231, 231, 0.1);
padding-top: 10px;
}
.text-bot{
color: #90a2bc;
}
.ic-bot{
color: #11b5e6;
}
.search-bot{
position: relative;
}
.pl{
position: absolute;
width: 34px;
height: 34px;
border-radius: 50%;
background-color: #11b5e6;
color: #fff;
margin-left: -15%;
margin-top: 1%;
padding: 7px 0px 3px 7px;
}
.icon-footer{
margin-top: 5%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.ic-footer{
display: inline-block;
height: 34px;
line-height: 34px;
width: 34px;
background: #6983a8;
color: #fff;
border-radius: 3px;
text-align: center;
margin-right: 5px;
}
span.contact-header{
float: left;
color: #fff;
white-space: nowrap;
line-height: 42px;
margin-right: 15px;
}
span.contact-header i{
margin-right: 5px;
}
.text-dichvu {
color: #080808;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden;
-webkit-line-clamp: 3;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.title-banner{
background: -webkit-gradient(linear, left top, right top, from(#2c394c73),to(#2c394c6e)), url(../images/thang-may-gia-dinh-long-kinh-4.jpg);
background: -webkit-linear-gradient(left, #2c394c73,#2c394c6e), url(../images/thang-may-gia-dinh-long-kinh-4.jpg);
background: -o-linear-gradient(left, #2c394c73,#2c394c6e), url(../images/thang-may-gia-dinh-long-kinh-4.jpg);
background: linear-gradient(to right, #2c394c73,#2c394c6e), url(../images/thang-may-gia-dinh-long-kinh-4.jpg);
margin-bottom: 50px;
background-size: cover;
background-position-y: 20%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 300px;
}
.title-banner h3{
color: #fff;
font-size: 28px;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 3px;
}
.tintuc-box-all{
display: -ms-grid;
display: grid;
-ms-grid-columns: 1fr 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: 20px;
}
.element-tintuc-item{
-webkit-box-shadow:0px 0px 10px #ccc;
box-shadow:0px 0px 10px #ccc;
overflow: hidden;
border-bottom: 1px solid #ececec;
margin-bottom: 10px;
}
.element-tintuc-item > *:not(a){
padding:0 10px;
}
.element-tintuc-item:last-child{
border-bottom: none;
}
.element-tintuc-item>a{
overflow: hidden;
margin: 0 0px 10px 0;
}
.element-tintuc-item>a>img{
width: 100%;
height: 200px;
-o-object-fit: cover;
object-fit: cover;
}
.element-tintuc-item>h4{
line-height: 20px;
font-size: 100%;
margin-bottom: 0;
margin-top: 10px;
}
.element-tintuc-item>h4>a{
font-size: 100%;
font-size: 15px;
font-weight: bold;
font-family: 'Arial';
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden;
-webkit-line-clamp: 2;
display: -webkit-box;
-webkit-box-orient: vertical;
text-decoration: none;
-webkit-transition: 0.3s all;
-o-transition: 0.3s all;
transition: 0.3s all;
color: #333;
text-align: justify;
}
.element-tintuc-item>h4>a:hover{
color: #d82731;
}
.element-tintuc-item>span{
font-size: 13px;
color: #666;
}
.element-tintuc-item>span>i{
margin-right: 10px;
}
.element-tintuc-item>p{
font-size: 14px;
text-align: justify;
color: #666;
font-family: 'Arial';
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden;
-webkit-line-clamp: 2;
display: -webkit-box;
-webkit-box-orient: vertical;
text-decoration: none;
}
/*---------------------------------------pagination---------------------------------------*/
.pagination-01{
text-align: center;
position: relative;
}
.pagination-01-container {
list-style: none;
display: inline-block;
padding: 0;
margin-top: 10px;
}
.pagination-01-container li {
display: inline;
text-align: center;
}
.pagination-01-container a {
float: left;
display: block;
font-size: 14px;
text-decoration: none;
padding: 5px 12px;
color: #fff;
margin-left: -1px;
border: 1px solid transparent;
line-height: 1.5;
}
.pagination-01-container a.active {
cursor: default;
}
.pagination-01-container a:active {
outline: none;
}
.modal-1 li:first-child a {
border-radius: 6px 0 0 6px;
}
.modal-1 li:last-child a {
border-radius: 0 6px 6px 0;
}
.modal-1 a {
border-color: #ececec;
color: #0f5f2f;
background: #fff;
}
.modal-1 a:hover {
background: #eee;
}
.modal-1 a.active, .modal-1 a:active {
border-color: #145161;
background: #145161;
color: #fff;
}
.ip-tim{
width: 230px;
height: 40px;
border-radius: 100px;
margin: -7px 0 0 15px;
position: relative;
border: 1px solid #ccc;
outline: none;
padding-left: 10px;
font-size: 14px;
}
.ip-tim i{
line-height: 40px;
}
.search{
cursor: pointer;
font-size: 14px;
margin-left: -11%;
color: #2c394c;
position: absolute;
margin-top: 5px;
}
#footer{
background-color: #2c394c;
margin-top: 50px;
}
.visit-bot{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.bot-title{
position: relative;
padding-left: 25px;
margin: 0px 0px 15px 0px;
color: #ffffff;
border-left: 7px solid #f3cc29;
font-size: 20px;
font-weight: 600;
}
.bot{
margin-top: 5%
}
/*.bot-title:before{
width: 7px;
height: 22px;
background-color: #f3cc29;
}*/
.visit-bot{
line-height: 24px;
padding-bottom: 10px;
border-bottom: 1px solid rgba(231, 231, 231, 0.1);
padding-top: 10px;
}
.text-bot{
color: #fff;
}
.text-bot a{
color: #f3cc29;
}
.text-bot a:hover{
color: #f3cc29;
text-decoration: none;
}
.ic-bot{
color: #f3cc29;
margin-top: 5px;
}
.search-bot{
position: relative;
}
.pl{
position: absolute;
width: 34px;
height: 34px;
border-radius: 50%;
background-color: #f3cc29;
color: #fff;
margin-left: -15%;
margin-top: 1%;
padding: 7px 0px 3px 7px;
}
.icon-footer{
margin-top: 5%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.ic-footer{
display: inline-block;
height: 34px;
line-height: 34px;
width: 34px;
background: #6983a8;
color: #fff;
border-radius: 3px;
text-align: center;
margin-right: 5px;
}
.ic-footer:hover{
color: #f3cc29;
}
.ip-tim1{
position: relative;
width: 250px;
height: 40px;
border-radius: 100px;
border: none;
}
.list-service{
list-style: none;
}
.list-a{
color: #fff;
}
.list-a:hover{
color: #f3cc29;
text-decoration: none;
}
@media (max-width: 768px){
.bot-title{
text-align: left!important;
}
} | public/css/header.css | *{
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-family: 'Roboto Condensed', sans-serif;
}
img{
max-width: 100%;
height: auto;
-o-object-fit: cover;
object-fit: cover;
background-size: cover;
background-position: center;
}
#header1{
background-color: #f3cc29;
width: 100%;
}
.ic{
margin-left: 1%;
font-size: 20px;
margin-bottom: 1%;
margin-top: 1%;
color: #fff;
}
.ic:hover{
color: #11B5E6;
}
.img-header{
width: 35px;
height: 35px;
margin-top: 4px;
}
.top-center{
}
.text-visit{
margin-left: 23%;
margin-top: 3%;
margin-bottom: 3%;
}
.visit{
margin-right: 5%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.text-top1{
display: inline-block;
color: #002e5b;
}
.text-header{
}
.text-top1:hover{
color: #11B5E6;
text-decoration: none;
}
.title-top{
color: #002e5b;
margin: 0px;
font-size: 15px;
font-weight: bold;
}
#header3{
background-color: #fff;
width: 100%;
z-index: 99;
}
.menu{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.logo{
height: 50px;
display: block;
background-color: #fff;
margin-top: 14px;
}
.bt-search{
position: relative;
}
.menu-content{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 90%;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.menu-content1{
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
height: 49px;
text-align: right;
margin: 25px 0px 5px 15px;
font-weight: 700;
font-size: 18px;
position: relative;
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
text-transform: uppercase;
}
.list-menu{
position: relative;
-webkit-transition: 0.3 all;
-o-transition: 0.3 all;
transition: 0.3 all;
}
.a-menu{
color: #333;
margin: 25px 0px 5px 25px;
}
.a-menu:hover{
text-decoration: none;
color: #f3cc29;
}
.menu-con{
list-style: none;
text-align: left;
position: absolute;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.4s;
transition: all 0.4s;
margin-top: 50px;
background-color: #fff;
width: 200px;
left: 0;
top: 100%;
padding: 10px 0 0 0;
-o-transition: all 0.4s;
transition: all 0.4s;
-webkit-box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.05);
z-index: 99;
border-top: 5px solid #f3cc29;
}
.menu-con .login a{
color: #333;
}
.menu-con .login a:hover{
text-decoration: none;
color: #f3cc29;
}
.new:hover .menu-con{
visibility: visible;
opacity: 1;
margin-top: 0px;
}
.login{
display: block;
padding: 0px 0px 10px 10px;
color: #333 ;
border-bottom: 1px solid rgba(231, 231, 231, 0.1);
font-weight: initial;
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
text-transform: none;
}
.login:hover{
color: #f3cc29;
}
.sticky {
position: fixed;
top: 0;
width: 100%;
}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background: rgba(0,0,0,0.8);
overflow-x: hidden;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
padding-top: 5%;
}
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
color: #fff;
}
.menu-rsp-full{
margin-top: 10%;
}
.menu-rsp{
color: #637281;
font-weight: 700;
display: none;
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
.ic1{
color: #11B5E6;
margin-top: 4%;
margin-left: -12%;
}
@media (min-width: 320px) and (max-width: 410px){
#header1,
#header2,
.menu-content{
display: none;
}
#header3{
background-color: #fff;
}
.menu-rsp{
display: block;
margin-top: 4%;
}
.sidenav {
padding-top: 20%;
}
.ip-tim{
width: 80%;
margin-left: 10%;
border-radius:10px;
}
}
@media (min-width: 411px) and (max-width: 767px){
#header1,
#header2,
.menu-content{
display: none;
}
#header3{
background-color: #fff;
}
.menu-rsp{
display: block;
margin-top: 4%;
}
.sidenav {
padding-top: 20%;
}
.ip-tim{
width: 80%;
margin-left: 10%;
border-radius:10px;
}
}
@media (min-width: 411px) and (max-width: 767px){
#header1,
#header2,
.menu-content{
display: none;
}
#header3{
background-color: #fff;
}
.menu-rsp{
display: block;
margin-top: 4%;
}
.sidenav {
padding-top: 20%;
}
.ip-tim{
width: 80%;
margin-left: 10%;
border-radius:10px;
}
}
@media (min-width: 768px) and (max-width: 1023px){
.menu-content{
display: none;
}
#header3{
background-color: #fff;
}
.menu-rsp{
display: block;
margin-top: 2%;
}
.sidenav {
padding-top: 20%;
}
.ip-tim{
width: 80%;
margin-left: 10%;
border-radius:10px;
}
}
@media (min-width: 1024px) and (max-width: 1025px){
.ip-tim{
width: 177px;
}
.text-visit{
margin-left: 17%;
}
}
/*Footer*/
#footer{
background-color: #2c394c;
margin-top: 10%;
}
.visit-bot{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.bot-title{
position: relative;
padding-left: 25px;
margin: 0px 0px 15px 0px;
color: #ffffff;
border-left: 7px solid #11b5e6;
font-size: 20px;
font-weight: 600;
}
.bot{
margin-top: 5%
}
.visit-bot{
line-height: 24px;
padding-bottom: 10px;
border-bottom: 1px solid rgba(231, 231, 231, 0.1);
padding-top: 10px;
}
.text-bot{
color: #90a2bc;
}
.ic-bot{
color: #11b5e6;
}
.search-bot{
position: relative;
}
.pl{
position: absolute;
width: 34px;
height: 34px;
border-radius: 50%;
background-color: #11b5e6;
color: #fff;
margin-left: -15%;
margin-top: 1%;
padding: 7px 0px 3px 7px;
}
.icon-footer{
margin-top: 5%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.ic-footer{
display: inline-block;
height: 34px;
line-height: 34px;
width: 34px;
background: #6983a8;
color: #fff;
border-radius: 3px;
text-align: center;
margin-right: 5px;
}
span.contact-header{
float: left;
color: #fff;
white-space: nowrap;
line-height: 42px;
margin-right: 15px;
}
span.contact-header i{
margin-right: 5px;
}
.text-dichvu {
color: #080808;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden;
-webkit-line-clamp: 3;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.title-banner{
background: -webkit-gradient(linear, left top, right top, from(#2c394c73),to(#2c394c6e)), url(../images/thang-may-gia-dinh-long-kinh-4.jpg);
background: -webkit-linear-gradient(left, #2c394c73,#2c394c6e), url(../images/thang-may-gia-dinh-long-kinh-4.jpg);
background: -o-linear-gradient(left, #2c394c73,#2c394c6e), url(../images/thang-may-gia-dinh-long-kinh-4.jpg);
background: linear-gradient(to right, #2c394c73,#2c394c6e), url(../images/thang-may-gia-dinh-long-kinh-4.jpg);
margin-bottom: 50px;
background-size: cover;
background-position-y: 20%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 300px;
}
.title-banner h3{
color: #fff;
font-size: 28px;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 3px;
}
.tintuc-box-all{
display: -ms-grid;
display: grid;
-ms-grid-columns: 1fr 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: 20px;
}
.element-tintuc-item{
-webkit-box-shadow:0px 0px 10px #ccc;
box-shadow:0px 0px 10px #ccc;
overflow: hidden;
border-bottom: 1px solid #ececec;
margin-bottom: 10px;
}
.element-tintuc-item > *:not(a){
padding:0 10px;
}
.element-tintuc-item:last-child{
border-bottom: none;
}
.element-tintuc-item>a{
overflow: hidden;
margin: 0 0px 10px 0;
}
.element-tintuc-item>a>img{
width: 100%;
height: 200px;
-o-object-fit: cover;
object-fit: cover;
}
.element-tintuc-item>h4{
line-height: 20px;
font-size: 100%;
margin-bottom: 0;
margin-top: 10px;
}
.element-tintuc-item>h4>a{
font-size: 100%;
font-size: 15px;
font-weight: bold;
font-family: 'Arial';
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden;
-webkit-line-clamp: 2;
display: -webkit-box;
-webkit-box-orient: vertical;
text-decoration: none;
-webkit-transition: 0.3s all;
-o-transition: 0.3s all;
transition: 0.3s all;
color: #333;
text-align: justify;
}
.element-tintuc-item>h4>a:hover{
color: #d82731;
}
.element-tintuc-item>span{
font-size: 13px;
color: #666;
}
.element-tintuc-item>span>i{
margin-right: 10px;
}
.element-tintuc-item>p{
font-size: 14px;
text-align: justify;
color: #666;
font-family: 'Arial';
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden;
-webkit-line-clamp: 2;
display: -webkit-box;
-webkit-box-orient: vertical;
text-decoration: none;
}
/*---------------------------------------pagination---------------------------------------*/
.pagination-01{
text-align: center;
position: relative;
}
.pagination-01-container {
list-style: none;
display: inline-block;
padding: 0;
margin-top: 10px;
}
.pagination-01-container li {
display: inline;
text-align: center;
}
.pagination-01-container a {
float: left;
display: block;
font-size: 14px;
text-decoration: none;
padding: 5px 12px;
color: #fff;
margin-left: -1px;
border: 1px solid transparent;
line-height: 1.5;
}
.pagination-01-container a.active {
cursor: default;
}
.pagination-01-container a:active {
outline: none;
}
.modal-1 li:first-child a {
border-radius: 6px 0 0 6px;
}
.modal-1 li:last-child a {
border-radius: 0 6px 6px 0;
}
.modal-1 a {
border-color: #ececec;
color: #0f5f2f;
background: #fff;
}
.modal-1 a:hover {
background: #eee;
}
.modal-1 a.active, .modal-1 a:active {
border-color: #145161;
background: #145161;
color: #fff;
}
.ip-tim{
width: 230px;
height: 40px;
border-radius: 100px;
margin: -7px 0 0 15px;
position: relative;
border: 1px solid #ccc;
outline: none;
padding-left: 10px;
font-size: 14px;
}
.ip-tim i{
line-height: 40px;
}
.search{
cursor: pointer;
font-size: 14px;
margin-left: -11%;
color: #2c394c;
position: absolute;
margin-top: 5px;
}
#footer{
background-color: #2c394c;
margin-top: 50px;
}
.visit-bot{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.bot-title{
position: relative;
padding-left: 25px;
margin: 0px 0px 15px 0px;
color: #ffffff;
border-left: 7px solid #f3cc29;
font-size: 20px;
font-weight: 600;
}
.bot{
margin-top: 5%
}
/*.bot-title:before{
width: 7px;
height: 22px;
background-color: #f3cc29;
}*/
.visit-bot{
line-height: 24px;
padding-bottom: 10px;
border-bottom: 1px solid rgba(231, 231, 231, 0.1);
padding-top: 10px;
}
.text-bot{
color: #fff;
}
.text-bot a{
color: #f3cc29;
}
.text-bot a:hover{
color: #f3cc29;
text-decoration: none;
}
.ic-bot{
color: #f3cc29;
margin-top: 5px;
}
.search-bot{
position: relative;
}
.pl{
position: absolute;
width: 34px;
height: 34px;
border-radius: 50%;
background-color: #f3cc29;
color: #fff;
margin-left: -15%;
margin-top: 1%;
padding: 7px 0px 3px 7px;
}
.icon-footer{
margin-top: 5%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.ic-footer{
display: inline-block;
height: 34px;
line-height: 34px;
width: 34px;
background: #6983a8;
color: #fff;
border-radius: 3px;
text-align: center;
margin-right: 5px;
}
.ic-footer:hover{
color: #f3cc29;
}
.ip-tim1{
position: relative;
width: 250px;
height: 40px;
border-radius: 100px;
border: none;
}
.list-service{
list-style: none;
}
.list-a{
color: #fff;
}
.list-a:hover{
color: #f3cc29;
text-decoration: none;
}
@media (max-width: 768px){
.bot-title{
text-align: left!important;
}
} | 0.164215 | 0.043589 |
@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
/* line 6, ../../site/scss/setup/_reset.scss */
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 */
/* line 27, ../../site/scss/setup/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
/* line 31, ../../site/scss/setup/_reset.scss */
body {
line-height: 1;
}
/* line 34, ../../site/scss/setup/_reset.scss */
ol, ul {
list-style: none;
}
/* line 37, ../../site/scss/setup/_reset.scss */
blockquote, q {
quotes: none;
}
/* line 40, ../../site/scss/setup/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
/* line 45, ../../site/scss/setup/_reset.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/* line 1, ../../site/scss/setup/_global.scss */
* {
box-sizing: border-box;
}
/* line 5, ../../site/scss/setup/_global.scss */
html, body {
min-height: 100%;
background-color: #fff;
}
/* line 10, ../../site/scss/setup/_global.scss */
img, video {
vertical-align: top;
max-width: 100%;
height: auto;
}
/* line 16, ../../site/scss/setup/_global.scss */
svg, svg * {
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
}
/* line 26, ../../site/scss/setup/_global.scss */
a {
cursor: pointer;
}
/* line 30, ../../site/scss/setup/_global.scss */
.container {
margin: 0 auto;
width: 90%;
max-width: 1200px;
position: relative;
}
/* line 37, ../../site/scss/setup/_global.scss */
.v-center {
display: table;
width: 100%;
height: 100%;
}
/* line 41, ../../site/scss/setup/_global.scss */
.v-center .v-content {
display: table-cell;
vertical-align: middle;
}
/* line 47, ../../site/scss/setup/_global.scss */
.tooltip {
position: relative;
}
/* line 49, ../../site/scss/setup/_global.scss */
.tooltip .icon {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1000px) {
/* line 54, ../../site/scss/setup/_global.scss */
.tooltip.right:after {
bottom: 50%;
left: 100%;
-ms-transform: translate3d(10px, 50%, 0);
/* IE 9 */
-webkit-transform: translate3d(10px, 50%, 0);
/* Chrome, Safari, Opera */
transform: translate3d(10px, 50%, 0);
}
/* line 59, ../../site/scss/setup/_global.scss */
.tooltip.right:before {
border-color: transparent;
border-right-color: #333;
bottom: 50%;
left: 100%;
margin: 0 0 -5px 0;
}
/* line 69, ../../site/scss/setup/_global.scss */
.tooltip.left:after {
bottom: 50%;
right: 100%;
left: auto;
-ms-transform: translate3d(-10px, 50%, 0);
/* IE 9 */
-webkit-transform: translate3d(-10px, 50%, 0);
/* Chrome, Safari, Opera */
transform: translate3d(-10px, 50%, 0);
}
/* line 75, ../../site/scss/setup/_global.scss */
.tooltip.left:before {
border-color: transparent;
border-left-color: #333;
bottom: 50%;
right: 100%;
left: auto;
margin: 0 0 -5px 0;
}
/* line 86, ../../site/scss/setup/_global.scss */
.tooltip.bottom:after {
bottom: auto;
top: 100%;
-ms-transform: translate3d(-50%, 10px, 0);
/* IE 9 */
-webkit-transform: translate3d(-50%, 10px, 0);
/* Chrome, Safari, Opera */
transform: translate3d(-50%, 10px, 0);
}
/* line 91, ../../site/scss/setup/_global.scss */
.tooltip.bottom:before {
border-color: transparent;
border-bottom-color: #333;
bottom: auto;
top: 100%;
}
/* line 99, ../../site/scss/setup/_global.scss */
.tooltip:before {
content: '';
display: block;
position: absolute;
border: 5px solid transparent;
border-top-color: #333;
bottom: 100%;
transform-style: preserve-3d;
left: 50%;
margin: 0 0 0 -5px;
visibility: hidden;
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;
-webkit-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
-moz-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
-o-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
transform-style: preserve-3d;
}
/* line 114, ../../site/scss/setup/_global.scss */
.tooltip:after {
position: absolute;
content: attr(title);
bottom: 100%;
background-color: #333;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
color: #fff;
font-size: 12px;
line-height: 1.3em;
text-align: center;
letter-spacing: .02em;
left: 50%;
padding: 5px 7px;
-ms-transform: translate3d(-50%, -10px, 0);
/* IE 9 */
-webkit-transform: translate3d(-50%, -10px, 0);
/* Chrome, Safari, Opera */
transform: translate3d(-50%, -10px, 0);
visibility: hidden;
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;
-webkit-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
-moz-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
-o-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
transform-style: preserve-3d;
}
/* line 134, ../../site/scss/setup/_global.scss */
.tooltip:hover:before, .tooltip:hover:after {
visibility: visible;
-moz-opacity: 1;
-khtml-opacity: 1;
opacity: 1;
}
}
@-webkit-keyframes ripple {
0% {
-moz-opacity: 0.75;
-khtml-opacity: 0.75;
opacity: 0.75;
-ms-transform: scale(0);
/* IE 9 */
-webkit-transform: scale(0);
/* Chrome, Safari, Opera */
transform: scale(0);
}
100% {
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;
-ms-transform: scale(1);
/* IE 9 */
-webkit-transform: scale(1);
/* Chrome, Safari, Opera */
transform: scale(1);
}
}
@-moz-keyframes ripple {
0% {
-moz-opacity: 0.75;
-khtml-opacity: 0.75;
opacity: 0.75;
-ms-transform: scale(0);
/* IE 9 */
-webkit-transform: scale(0);
/* Chrome, Safari, Opera */
transform: scale(0);
}
100% {
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;
-ms-transform: scale(1);
/* IE 9 */
-webkit-transform: scale(1);
/* Chrome, Safari, Opera */
transform: scale(1);
}
}
@-ms-keyframes ripple {
0% {
-moz-opacity: 0.75;
-khtml-opacity: 0.75;
opacity: 0.75;
-ms-transform: scale(0);
/* IE 9 */
-webkit-transform: scale(0);
/* Chrome, Safari, Opera */
transform: scale(0);
}
100% {
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;
-ms-transform: scale(1);
/* IE 9 */
-webkit-transform: scale(1);
/* Chrome, Safari, Opera */
transform: scale(1);
}
}
@keyframes ripple {
0% {
-moz-opacity: 0.75;
-khtml-opacity: 0.75;
opacity: 0.75;
-ms-transform: scale(0);
/* IE 9 */
-webkit-transform: scale(0);
/* Chrome, Safari, Opera */
transform: scale(0);
}
100% {
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;
-ms-transform: scale(1);
/* IE 9 */
-webkit-transform: scale(1);
/* Chrome, Safari, Opera */
transform: scale(1);
}
}
@-webkit-keyframes fadeInUp {
100% {
-moz-opacity: 1;
-khtml-opacity: 1;
opacity: 1;
-ms-transform: translate3d(0, 0, 0);
/* IE 9 */
-webkit-transform: translate3d(0, 0, 0);
/* Chrome, Safari, Opera */
transform: translate3d(0, 0, 0);
}
}
@-moz-keyframes fadeInUp {
100% {
-moz-opacity: 1;
-khtml-opacity: 1;
opacity: 1;
-ms-transform: translate3d(0, 0, 0);
/* IE 9 */
-webkit-transform: translate3d(0, 0, 0);
/* Chrome, Safari, Opera */
transform: translate3d(0, 0, 0);
}
}
@-ms-keyframes fadeInUp {
100% {
-moz-opacity: 1;
-khtml-opacity: 1;
opacity: 1;
-ms-transform: translate3d(0, 0, 0);
/* IE 9 */
-webkit-transform: translate3d(0, 0, 0);
/* Chrome, Safari, Opera */
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInUp {
100% {
-moz-opacity: 1;
-khtml-opacity: 1;
opacity: 1;
-ms-transform: translate3d(0, 0, 0);
/* IE 9 */
-webkit-transform: translate3d(0, 0, 0);
/* Chrome, Safari, Opera */
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes rotate {
0% {
-ms-transform: rotate(0deg);
/* IE 9 */
-webkit-transform: rotate(0deg);
/* Chrome, Safari, Opera */
transform: rotate(0deg);
}
100% {
-ms-transform: rotate(360deg);
/* IE 9 */
-webkit-transform: rotate(360deg);
/* Chrome, Safari, Opera */
transform: rotate(360deg);
}
}
@-moz-keyframes rotate {
0% {
-ms-transform: rotate(0deg);
/* IE 9 */
-webkit-transform: rotate(0deg);
/* Chrome, Safari, Opera */
transform: rotate(0deg);
}
100% {
-ms-transform: rotate(360deg);
/* IE 9 */
-webkit-transform: rotate(360deg);
/* Chrome, Safari, Opera */
transform: rotate(360deg);
}
}
@-ms-keyframes rotate {
0% {
-ms-transform: rotate(0deg);
/* IE 9 */
-webkit-transform: rotate(0deg);
/* Chrome, Safari, Opera */
transform: rotate(0deg);
}
100% {
-ms-transform: rotate(360deg);
/* IE 9 */
-webkit-transform: rotate(360deg);
/* Chrome, Safari, Opera */
transform: rotate(360deg);
}
}
@keyframes rotate {
0% {
-ms-transform: rotate(0deg);
/* IE 9 */
-webkit-transform: rotate(0deg);
/* Chrome, Safari, Opera */
transform: rotate(0deg);
}
100% {
-ms-transform: rotate(360deg);
/* IE 9 */
-webkit-transform: rotate(360deg);
/* Chrome, Safari, Opera */
transform: rotate(360deg);
}
}
/* line 21, ../../site/scss/setup/_animations.scss */
.spinner {
display: block;
width: 80px;
height: 80px;
border: 1px solid rgba(51, 51, 51, 0.4);
border-top-color: #000;
border-bottom-color: rgba(51, 51, 51, 0.4);
border-left-color: #000;
border-right-color: rgba(51, 51, 51, 0.4);
border-radius: 100%;
-webkit-animation: rotate 0.5s linear infinite;
-moz-animation: rotate 0.5s linear infinite;
-o-animation: rotate 0.5s linear infinite;
animation: rotate 0.5s linear infinite;
}
/* line 1, ../../site/scss/setup/_fajax.scss */
#page {
z-index: 2;
}
/* line 5, ../../site/scss/setup/_fajax.scss */
#pageLoader {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #fff;
text-align: center;
z-index: 999;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
}
/* line 17, ../../site/scss/setup/_fajax.scss */
#pageLoader .loader {
opacity: 0;
-webkit-animation: fadeIn 0.5s forwards;
-moz-animation: fadeIn 0.5s forwards;
-o-animation: fadeIn 0.5s forwards;
animation: fadeIn 0.5s forwards;
display: inline-block;
}
/* line 24, ../../site/scss/setup/_fajax.scss */
.loaded #pageLoader {
visibility: hidden;
opacity: 0;
transition: visibility .75s .75s ease-in-out, opacity .75s .75s ease-in-out;
}
/* line 30, ../../site/scss/setup/_fajax.scss */
.fade-out #pageLoader .loader {
display: none !important;
background-color: red !important;
}
/* line 35, ../../site/scss/setup/_fajax.scss */
#page {
-webkit-transition: transform 2s ease-in-out;
-moz-transition: transform 2s ease-in-out;
-o-transition: transform 2s ease-in-out;
}
/*==============================================================================
Grid Settings
==============================================================================*/
/*==============================================================================
Columns, generic
==============================================================================*/
/*==============================================================================
Containers columns
==============================================================================*/
/* line 144, ../../site/scss/setup/_grid.scss */
.row {
padding: 0;
list-style: none;
}
@media only screen and (min-width: 600px) {
/* line 148, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) {
display: block;
min-width: 100%;
*zoom: 1;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 138, ../../site/scss/setup/_mixins.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm):before, .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm):after {
content: "";
display: table;
}
/* line 143, ../../site/scss/setup/_mixins.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm):after {
clear: both;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col,
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.middle,
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.bottom,
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].bottom {
vertical-align: bottom;
}
}
@media only screen and (min-width: 600px) and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.right,
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 600px) and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.left,
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].left {
float: left;
}
}
@media only screen and (min-width: 600px) {
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12-12 {
width: 100%;
}
}
/* line 155, ../../site/scss/setup/_grid.scss */
.row.no-break {
display: block;
min-width: 100%;
*zoom: 1;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 138, ../../site/scss/setup/_mixins.scss */
.row.no-break:before, .row.no-break:after {
content: "";
display: table;
}
/* line 143, ../../site/scss/setup/_mixins.scss */
.row.no-break:after {
clear: both;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.row.no-break > .col,
.row.no-break > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.row.no-break > .col.middle,
.row.no-break > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.row.no-break > .col.bottom,
.row.no-break > [class^="col-"].bottom {
vertical-align: bottom;
}
@media only screen and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.row.no-break > .col.right,
.row.no-break > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.row.no-break > .col.left,
.row.no-break > [class^="col-"].left {
float: left;
}
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-12-12 {
width: 100%;
}
@media only screen and (min-width: 1000px) {
/* line 160, ../../site/scss/setup/_grid.scss */
.row.break-lg {
display: block;
min-width: 100%;
*zoom: 1;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 138, ../../site/scss/setup/_mixins.scss */
.row.break-lg:before, .row.break-lg:after {
content: "";
display: table;
}
/* line 143, ../../site/scss/setup/_mixins.scss */
.row.break-lg:after {
clear: both;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.row.break-lg > .col,
.row.break-lg > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.row.break-lg > .col.middle,
.row.break-lg > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.row.break-lg > .col.bottom,
.row.break-lg > [class^="col-"].bottom {
vertical-align: bottom;
}
}
@media only screen and (min-width: 1000px) and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.row.break-lg > .col.right,
.row.break-lg > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 1000px) and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.row.break-lg > .col.left,
.row.break-lg > [class^="col-"].left {
float: left;
}
}
@media only screen and (min-width: 1000px) {
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-12-12 {
width: 100%;
}
}
@media only screen and (min-width: 1200px) {
/* line 167, ../../site/scss/setup/_grid.scss */
.row.break-xlg {
display: block;
min-width: 100%;
*zoom: 1;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 138, ../../site/scss/setup/_mixins.scss */
.row.break-xlg:before, .row.break-xlg:after {
content: "";
display: table;
}
/* line 143, ../../site/scss/setup/_mixins.scss */
.row.break-xlg:after {
clear: both;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.row.break-xlg > .col,
.row.break-xlg > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.row.break-xlg > .col.middle,
.row.break-xlg > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.row.break-xlg > .col.bottom,
.row.break-xlg > [class^="col-"].bottom {
vertical-align: bottom;
}
}
@media only screen and (min-width: 1200px) and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.row.break-xlg > .col.right,
.row.break-xlg > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 1200px) and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.row.break-xlg > .col.left,
.row.break-xlg > [class^="col-"].left {
float: left;
}
}
@media only screen and (min-width: 1200px) {
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-12-12 {
width: 100%;
}
}
/* line 176, ../../site/scss/setup/_grid.scss */
.inline-grid {
padding: 0;
list-style: none;
}
@media only screen and (min-width: 600px) {
/* line 180, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) {
display: block;
min-width: 100%;
text-align: left;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col,
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.middle,
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.bottom,
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].bottom {
vertical-align: bottom;
}
}
@media only screen and (min-width: 600px) and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.right,
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 600px) and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.left,
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].left {
float: left;
}
}
@media only screen and (min-width: 600px) {
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12-12 {
width: 100%;
}
/* line 32, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).center {
text-align: center;
}
/* line 34, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).center [class^="col-"] {
margin-left: -.125em;
margin-right: -.125em;
}
/* line 39, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).right {
text-align: right;
margin-left: -.25em;
margin-right: 0;
}
/* line 44, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).middle .col, .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).middle [class^="col-"] {
vertical-align: middle;
}
/* line 48, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).bottom .col, .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).bottom [class^="col-"] {
vertical-align: bottom;
}
/* line 105, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col,
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"] {
vertical-align: top;
display: inline-block;
float: none;
margin-left: 0;
letter-spacing: 0;
max-width: 100%;
position: relative;
margin-top: 0;
margin-left: 0;
margin-right: -.25em;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12-12 {
width: 100%;
}
}
/* line 187, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break {
display: block;
min-width: 100%;
text-align: left;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break > .col,
.inline-grid.no-break > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break > .col.middle,
.inline-grid.no-break > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break > .col.bottom,
.inline-grid.no-break > [class^="col-"].bottom {
vertical-align: bottom;
}
@media only screen and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break > .col.right,
.inline-grid.no-break > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break > .col.left,
.inline-grid.no-break > [class^="col-"].left {
float: left;
}
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-12-12 {
width: 100%;
}
/* line 32, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break.center {
text-align: center;
}
/* line 34, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break.center [class^="col-"] {
margin-left: -.125em;
margin-right: -.125em;
}
/* line 39, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break.right {
text-align: right;
margin-left: -.25em;
margin-right: 0;
}
/* line 44, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break.middle .col, .inline-grid.no-break.middle [class^="col-"] {
vertical-align: middle;
}
/* line 48, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break.bottom .col, .inline-grid.no-break.bottom [class^="col-"] {
vertical-align: bottom;
}
/* line 105, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break > .col,
.inline-grid.no-break > [class^="col-"] {
vertical-align: top;
display: inline-block;
float: none;
margin-left: 0;
letter-spacing: 0;
max-width: 100%;
position: relative;
margin-top: 0;
margin-left: 0;
margin-right: -.25em;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-12-12 {
width: 100%;
}
@media only screen and (min-width: 450px) {
/* line 192, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm {
display: block;
min-width: 100%;
text-align: left;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm > .col,
.inline-grid.break-sm > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm > .col.middle,
.inline-grid.break-sm > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm > .col.bottom,
.inline-grid.break-sm > [class^="col-"].bottom {
vertical-align: bottom;
}
}
@media only screen and (min-width: 450px) and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm > .col.right,
.inline-grid.break-sm > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 450px) and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm > .col.left,
.inline-grid.break-sm > [class^="col-"].left {
float: left;
}
}
@media only screen and (min-width: 450px) {
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-12-12 {
width: 100%;
}
/* line 32, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm.center {
text-align: center;
}
/* line 34, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm.center [class^="col-"] {
margin-left: -.125em;
margin-right: -.125em;
}
/* line 39, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm.right {
text-align: right;
margin-left: -.25em;
margin-right: 0;
}
/* line 44, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm.middle .col, .inline-grid.break-sm.middle [class^="col-"] {
vertical-align: middle;
}
/* line 48, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm.bottom .col, .inline-grid.break-sm.bottom [class^="col-"] {
vertical-align: bottom;
}
/* line 105, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm > .col,
.inline-grid.break-sm > [class^="col-"] {
vertical-align: top;
display: inline-block;
float: none;
margin-left: 0;
letter-spacing: 0;
max-width: 100%;
position: relative;
margin-top: 0;
margin-left: 0;
margin-right: -.25em;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-12-12 {
width: 100%;
}
}
@media only screen and (min-width: 1000px) {
/* line 199, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg {
display: block;
min-width: 100%;
text-align: left;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg > .col,
.inline-grid.break-lg > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg > .col.middle,
.inline-grid.break-lg > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg > .col.bottom,
.inline-grid.break-lg > [class^="col-"].bottom {
vertical-align: bottom;
}
}
@media only screen and (min-width: 1000px) and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg > .col.right,
.inline-grid.break-lg > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 1000px) and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg > .col.left,
.inline-grid.break-lg > [class^="col-"].left {
float: left;
}
}
@media only screen and (min-width: 1000px) {
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-12-12 {
width: 100%;
}
/* line 32, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg.center {
text-align: center;
}
/* line 34, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg.center [class^="col-"] {
margin-left: -.125em;
margin-right: -.125em;
}
/* line 39, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg.right {
text-align: right;
margin-left: -.25em;
margin-right: 0;
}
/* line 44, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg.middle .col, .inline-grid.break-lg.middle [class^="col-"] {
vertical-align: middle;
}
/* line 48, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg.bottom .col, .inline-grid.break-lg.bottom [class^="col-"] {
vertical-align: bottom;
}
/* line 105, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg > .col,
.inline-grid.break-lg > [class^="col-"] {
vertical-align: top;
display: inline-block;
float: none;
margin-left: 0;
letter-spacing: 0;
max-width: 100%;
position: relative;
margin-top: 0;
margin-left: 0;
margin-right: -.25em;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-12-12 {
width: 100%;
}
}
@media only screen and (min-width: 1200px) {
/* line 206, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg {
display: block;
min-width: 100%;
text-align: left;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg > .col,
.inline-grid.break-xlg > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg > .col.middle,
.inline-grid.break-xlg > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg > .col.bottom,
.inline-grid.break-xlg > [class^="col-"].bottom {
vertical-align: bottom;
}
}
@media only screen and (min-width: 1200px) and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg > .col.right,
.inline-grid.break-xlg > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 1200px) and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg > .col.left,
.inline-grid.break-xlg > [class^="col-"].left {
float: left;
}
}
@media only screen and (min-width: 1200px) {
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-12-12 {
width: 100%;
}
/* line 32, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg.center {
text-align: center;
}
/* line 34, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg.center [class^="col-"] {
margin-left: -.125em;
margin-right: -.125em;
}
/* line 39, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg.right {
text-align: right;
margin-left: -.25em;
margin-right: 0;
}
/* line 44, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg.middle .col, .inline-grid.break-xlg.middle [class^="col-"] {
vertical-align: middle;
}
/* line 48, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg.bottom .col, .inline-grid.break-xlg.bottom [class^="col-"] {
vertical-align: bottom;
}
/* line 105, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg > .col,
.inline-grid.break-xlg > [class^="col-"] {
vertical-align: top;
display: inline-block;
float: none;
margin-left: 0;
letter-spacing: 0;
max-width: 100%;
position: relative;
margin-top: 0;
margin-left: 0;
margin-right: -.25em;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-12-12 {
width: 100%;
}
}
@font-face {
font-family: 'Basis';
src: url("../fonts/basis_grotesque_regular.woff") format("woff"), url("../fonts/basis_grotesque_regular.woff2") format("woff2");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Basis Off White';
src: url("../fonts/basis_grotesque_off_white.woff") format("woff"), url("../fonts/basis_grotesque_off_white.woff2") format("woff2");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Basis';
src: url("../fonts/basis_grotesque_bold.woff") format("woff"), url("../fonts/basis_grotesque_bold.woff2") format("woff2");
font-weight: 700;
font-style: normal;
}
/* line 3, ../../site/scss/setup/_buttons.scss */
.btn,
input[type="submit"],
button {
-webkit-appearance: none;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
border: none;
outline: none;
display: inline-block;
vertical-align: top;
text-align: center;
background-image: none;
-webkit-appearance: caret;
-moz-appearance: caret;
/* mobile firefox too! */
-webkit-appearance: none;
background-color: #333;
color: #fff;
height: 60px;
max-height: 60px;
padding: 0px 15px 2px 15px;
margin: 0px;
font-family: "Basis Off White", serif !important;
font-size: 12px;
font-weight: 400;
letter-spacing: .02em;
cursor: pointer;
line-height: 56px;
width: 100%;
max-width: 400px;
border: 1px solid #333;
position: relative;
overflow: hidden;
text-transform: uppercase;
letter-spacing: .15em;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-webkit-transition: border 0.25s ease-in-out, background 0.25s ease-in-out, color 0.25s ease-in-out, background 0.25s ease-in-out, padding 0.25s ease-in-out;
-moz-transition: border 0.25s ease-in-out, background 0.25s ease-in-out, color 0.25s ease-in-out, background 0.25s ease-in-out, padding 0.25s ease-in-out;
-o-transition: border 0.25s ease-in-out, background 0.25s ease-in-out, color 0.25s ease-in-out, background 0.25s ease-in-out, padding 0.25s ease-in-out;
}
/* line 41, ../../site/scss/setup/_buttons.scss */
.btn .icon svg *,
input[type="submit"] .icon svg *,
button .icon svg * {
fill: #fff;
}
/* line 47, ../../site/scss/setup/_buttons.scss */
.btn.medium,
input[type="submit"].medium,
button.medium {
height: 50px;
padding: 0px 15px 2px 15px;
line-height: 46px;
}
/* line 54, ../../site/scss/setup/_buttons.scss */
.btn.tiny,
input[type="submit"].tiny,
button.tiny {
height: 30px;
padding: 0px 15px 2px 15px;
line-height: 26px;
}
/* line 61, ../../site/scss/setup/_buttons.scss */
.btn:hover, .btn:active,
input[type="submit"]:hover,
input[type="submit"]:active,
button:hover,
button:active {
color: #fff;
background-color: #000;
border: 1px solid #000;
}
/* line 67, ../../site/scss/setup/_buttons.scss */
.btn:hover svg *, .btn:active svg *,
input[type="submit"]:hover svg *,
input[type="submit"]:active svg *,
button:hover svg *,
button:active svg * {
fill: #fff;
}
/* line 73, ../../site/scss/setup/_buttons.scss */
.btn:before,
input[type="submit"]:before,
button:before {
box-sizing: border-box;
position: absolute;
content: '';
width: 20px;
height: 20px;
margin-left: -10px;
margin-top: -10px;
line-height: 20px;
top: 50%;
left: 50%;
border: 2px solid #fff;
border-radius: 50%;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
}
/* line 90, ../../site/scss/setup/_buttons.scss */
.btn:after,
input[type="submit"]:after,
button:after {
box-sizing: border-box;
position: absolute;
content: '';
width: 20px;
height: 20px;
margin-left: -10px;
margin-top: -10px;
line-height: 20px;
top: 50%;
left: 50%;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
}
/* line 106, ../../site/scss/setup/_buttons.scss */
.btn.loading,
input[type="submit"].loading,
button.loading {
color: transparent;
background-color: #b3b3b3;
border: 1px solid #333;
border-color: #b3b3b3;
cursor: default;
}
/* line 112, ../../site/scss/setup/_buttons.scss */
.btn.loading:before,
input[type="submit"].loading:before,
button.loading:before {
border: 2px solid rgba(255, 255, 255, 0.5);
border-top-color: #fff;
border-right-color: #fff;
-webkit-animation: rotate 0.5s linear infinite;
-moz-animation: rotate 0.5s linear infinite;
-o-animation: rotate 0.5s linear infinite;
animation: rotate 0.5s linear infinite;
opacity: 1;
visibility: visible;
}
/* line 122, ../../site/scss/setup/_buttons.scss */
.btn.success,
input[type="submit"].success,
button.success {
color: transparent;
background-color: #333;
border: 1px solid #333;
cursor: default;
background-color: #000;
}
/* line 128, ../../site/scss/setup/_buttons.scss */
.btn.success:before,
input[type="submit"].success:before,
button.success:before {
background-color: #fff;
opacity: 1;
visibility: visible;
}
/* line 133, ../../site/scss/setup/_buttons.scss */
.btn.success:after,
input[type="submit"].success:after,
button.success:after {
opacity: 1;
visibility: visible;
content: '';
border: 2px solid #000;
border-left: none;
border-top: none;
-ms-transform: rotate(45deg);
/* IE 9 */
-webkit-transform: rotate(45deg);
/* Chrome, Safari, Opera */
transform: rotate(45deg);
line-height: 21px;
font-size: 16px;
width: 6px;
height: 10px;
margin-left: -3px;
margin-top: -6px;
}
/* line 150, ../../site/scss/setup/_buttons.scss */
.btn.error,
input[type="submit"].error,
button.error {
color: transparent;
background-color: #333;
border: 1px solid #333;
cursor: default;
}
/* line 155, ../../site/scss/setup/_buttons.scss */
.btn.error:before,
input[type="submit"].error:before,
button.error:before {
color: #333;
content: '';
background-color: #fff;
opacity: 1;
visibility: visible;
}
/* line 162, ../../site/scss/setup/_buttons.scss */
.btn.error:after,
input[type="submit"].error:after,
button.error:after {
opacity: 1;
visibility: visible;
color: #333;
content: '×';
line-height: 21px;
font-size: 16px;
}
/* line 172, ../../site/scss/setup/_buttons.scss */
.btn.secondary,
input[type="submit"].secondary,
button.secondary {
background-color: transparent;
color: rgba(51, 51, 51, 0.4);
border: 1px solid rgba(51, 51, 51, 0.4);
}
/* line 177, ../../site/scss/setup/_buttons.scss */
.btn.secondary svg *,
input[type="submit"].secondary svg *,
button.secondary svg * {
fill: rgba(51, 51, 51, 0.4);
}
/* line 181, ../../site/scss/setup/_buttons.scss */
.btn.secondary:hover, .btn.secondary:active,
input[type="submit"].secondary:hover,
input[type="submit"].secondary:active,
button.secondary:hover,
button.secondary:active {
color: #000;
background-color: transparent;
border: 1px solid #000;
}
/* line 187, ../../site/scss/setup/_buttons.scss */
.btn.secondary:hover svg *, .btn.secondary:active svg *,
input[type="submit"].secondary:hover svg *,
input[type="submit"].secondary:active svg *,
button.secondary:hover svg *,
button.secondary:active svg * {
fill: #000;
}
/* line 1, ../../site/scss/setup/_typography-base.scss */
html, form, textarea, input, input[type="text"], input[type="search"], input[type="password"], input[type="email"], button, select {
font-family: "Basis", sans-serif;
text-rendering: auto;
}
/* line 6, ../../site/scss/setup/_typography-base.scss */
.font-smooth {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* line 10, ../../site/scss/setup/_typography-base.scss */
body {
-webkit-text-size-adjust: none;
font-size: 16px;
line-height: 1.65em;
color: #333;
font-weight: normal;
}
@media only screen and (min-width: 1500px) {
/* line 10, ../../site/scss/setup/_typography-base.scss */
body {
font-size: 18px;
}
}
/* line 21, ../../site/scss/setup/_typography-base.scss */
a {
text-decoration: none;
color: #333;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-transition: color 0.25s ease-in-out, border 0.25s ease-in-out, background-color 0.25s ease-in-out, opacity 0.25s ease-in-out;
-moz-transition: color 0.25s ease-in-out, border 0.25s ease-in-out, background-color 0.25s ease-in-out, opacity 0.25s ease-in-out;
-o-transition: color 0.25s ease-in-out, border 0.25s ease-in-out, background-color 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
/* line 27, ../../site/scss/setup/_typography-base.scss */
a:hover, a:focus {
border-color: #000;
}
/* line 33, ../../site/scss/setup/_typography-base.scss */
.light-text-color {
color: rgba(51, 51, 51, 0.4);
}
/* line 37, ../../site/scss/setup/_typography-base.scss */
.primary-color {
color: rgba(51, 51, 51, 0.4);
}
/* line 41, ../../site/scss/setup/_typography-base.scss */
hr {
margin: 0;
border: none;
border-top: 1px solid #ddd;
}
/* line 48, ../../site/scss/setup/_typography-base.scss */
::-webkit-input-placeholder {
color: rgba(51, 51, 51, 0.4);
-webkit-transition: color 0.3s ease-in-out;
-moz-transition: color 0.3s ease-in-out;
-o-transition: color 0.3s ease-in-out;
}
/* line 49, ../../site/scss/setup/_typography-base.scss */
:focus::-webkit-input-placeholder {
color: transparent;
}
/* line 52, ../../site/scss/setup/_typography-base.scss */
:-moz-placeholder {
color: rgba(51, 51, 51, 0.4);
-webkit-transition: color 0.3s ease-in-out;
-moz-transition: color 0.3s ease-in-out;
-o-transition: color 0.3s ease-in-out;
}
/* line 53, ../../site/scss/setup/_typography-base.scss */
:focus:-moz-placeholder {
color: transparent;
}
/* line 54, ../../site/scss/setup/_typography-base.scss */
::-moz-placeholder {
color: rgba(51, 51, 51, 0.4);
-webkit-transition: color 0.3s ease-in-out;
-moz-transition: color 0.3s ease-in-out;
-o-transition: color 0.3s ease-in-out;
}
/* line 55, ../../site/scss/setup/_typography-base.scss */
:focus::-moz-placeholder {
color: transparent;
}
/* line 58, ../../site/scss/setup/_typography-base.scss */
:-ms-input-placeholder {
color: rgba(51, 51, 51, 0.4);
-webkit-transition: color 0.3s ease-in-out;
-moz-transition: color 0.3s ease-in-out;
-o-transition: color 0.3s ease-in-out;
}
/* line 59, ../../site/scss/setup/_typography-base.scss */
:focus:-ms-input-placeholder {
color: transparent;
}
/* line 61, ../../site/scss/setup/_typography-base.scss */
::selection {
background: #000;
color: #fff;
}
/* line 65, ../../site/scss/setup/_typography-base.scss */
::-moz-selection {
background: #000;
color: #fff;
}
/* line 1, ../../site/scss/site-specific/_main.scss */
body {
overflow: hidden;
}
/* line 5, ../../site/scss/site-specific/_main.scss */
.dark {
background: #000;
color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* line 10, ../../site/scss/site-specific/_main.scss */
.dark a {
color: #fff;
border-bottom-color: #555;
}
/* line 13, ../../site/scss/site-specific/_main.scss */
.dark a:hover {
border-color: #fff;
}
/* line 17, ../../site/scss/site-specific/_main.scss */
.dark hr {
border-color: #222;
}
/* line 20, ../../site/scss/site-specific/_main.scss */
.dark h4 {
letter-spacing: .015em;
}
/* line 23, ../../site/scss/site-specific/_main.scss */
.dark p {
letter-spacing: .015em;
}
/* line 27, ../../site/scss/site-specific/_main.scss */
.dark svg * {
fill: #fff;
}
/* line 33, ../../site/scss/site-specific/_main.scss */
.cc {
position: fixed;
width: 100%;
height: 100%;
top: 0;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
}
/* line 43, ../../site/scss/site-specific/_main.scss */
.section-title {
margin-bottom: .5em;
opacity: .5;
}
@media only screen and (min-width: 600px) {
/* line 43, ../../site/scss/site-specific/_main.scss */
.section-title {
opacity: 1;
}
}
/* line 1, ../../site/scss/site-specific/_typography.scss */
a {
padding-bottom: .15em;
border-bottom: 1px solid #ddd;
}
/* line 4, ../../site/scss/site-specific/_typography.scss */
a:hover, a:focus {
border-color: #333;
}
/* line 10, ../../site/scss/site-specific/_typography.scss */
h1 {
font-size: 1.25em;
line-height: 1.65em;
margin-bottom: .5em;
}
/* line 16, ../../site/scss/site-specific/_typography.scss */
.lg p,
p.lg,
.large-text {
font-family: "Basis Off White", serif;
font-size: 1.25em;
line-height: 1.65em;
margin-bottom: .5em;
}
/* line 25, ../../site/scss/site-specific/_typography.scss */
p {
font-size: 1em;
line-height: 1.65em;
}
/* line 28, ../../site/scss/site-specific/_typography.scss */
p + p {
margin-top: 1em;
}
/* line 34, ../../site/scss/site-specific/_typography.scss */
hr.spaced {
margin: 1rem 0;
}
/* line 37, ../../site/scss/site-specific/_typography.scss */
hr.spaced-top {
margin: 1rem 0 0;
}
/* line 40, ../../site/scss/site-specific/_typography.scss */
hr.spaced-bottom {
margin: 0 0 1rem;
}
/* line 1, ../../site/scss/site-specific/_header.scss */
header {
padding: 7.5% 0;
}
@media only screen and (min-width: 600px) {
/* line 1, ../../site/scss/site-specific/_header.scss */
header {
padding: 5% 0;
}
}
/* line 7, ../../site/scss/site-specific/_header.scss */
header .logo svg {
height: 20px;
}
/* line 9, ../../site/scss/site-specific/_header.scss */
header .logo svg * {
fill: #333;
}
/* line 2, ../../site/scss/site-specific/_footer.scss */
footer .container {
height: 6rem;
width: 100%;
max-width: 100%;
padding: 2.15rem;
}
@media only screen and (min-width: 600px) {
/* line 8, ../../site/scss/site-specific/_footer.scss */
footer a {
display: inline-block;
border: none;
}
}
/* line 15, ../../site/scss/site-specific/_footer.scss */
footer .inline-grid .inline-grid {
padding: 0;
}
@media only screen and (min-width: 600px) {
/* line 19, ../../site/scss/site-specific/_footer.scss */
footer .align-left {
text-align: left;
}
/* line 22, ../../site/scss/site-specific/_footer.scss */
footer .align-left a {
margin-right: 5%;
}
}
@media only screen and (min-width: 600px) {
/* line 27, ../../site/scss/site-specific/_footer.scss */
footer .align-right {
text-align: right;
}
/* line 30, ../../site/scss/site-specific/_footer.scss */
footer .align-right a {
margin-left: 5%;
}
}
/* line 1, ../../site/scss/site-specific/_home.scss */
.intro {
line-height: 1.4em;
height: 200px;
padding-bottom: .5rem;
min-height: 200px;
display: flex;
align-items: center;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@media only screen and (min-width: 450px) {
/* line 1, ../../site/scss/site-specific/_home.scss */
.intro {
max-height: none;
height: 33.333vh;
}
}
@media only screen and (min-width: 1000px) {
/* line 1, ../../site/scss/site-specific/_home.scss */
.intro {
min-height: 300px;
max-height: 600px;
height: 50vh;
}
}
/* line 18, ../../site/scss/site-specific/_home.scss */
.intro h1,
.intro h2 {
font-size: 1.4em;
line-height: 1.4em;
display: block;
letter-spacing: -.015em;
margin: 0;
}
@media only screen and (min-width: 450px) {
/* line 18, ../../site/scss/site-specific/_home.scss */
.intro h1,
.intro h2 {
font-size: 1.65rem;
}
}
@media only screen and (min-width: 600px) {
/* line 18, ../../site/scss/site-specific/_home.scss */
.intro h1,
.intro h2 {
font-size: 2rem;
}
}
/* line 32, ../../site/scss/site-specific/_home.scss */
.intro h2 {
opacity: .4;
}
/* line 37, ../../site/scss/site-specific/_home.scss */
.project-list {
margin-bottom: -5%;
padding-bottom: 5%;
}
/* line 40, ../../site/scss/site-specific/_home.scss */
.project-list li, .project-list.col {
position: relative;
margin-bottom: 5%;
}
@media only screen and (min-width: 450px) {
/* line 40, ../../site/scss/site-specific/_home.scss */
.project-list li, .project-list.col {
width: 50%;
}
}
@media only screen and (min-width: 1000px) {
/* line 40, ../../site/scss/site-specific/_home.scss */
.project-list li, .project-list.col {
width: 33.333%;
}
/* line 49, ../../site/scss/site-specific/_home.scss */
.project-list li.wide, .project-list.col.wide {
width: 66.666%;
}
}
@media only screen and (min-width: 1200px) {
/* line 58, ../../site/scss/site-specific/_home.scss */
.project-list li .project-thumb.padded .thumb-img-wrap, .project-list.col .project-thumb.padded .thumb-img-wrap {
top: 70px;
right: 70px;
bottom: 70px;
left: 70px;
}
}
@media only screen and (min-width: 1000px) {
/* line 68, ../../site/scss/site-specific/_home.scss */
.project-list li a,
.project-list li .dead-link, .project-list.col a,
.project-list.col .dead-link {
height: 60vh;
max-height: 350px;
}
}
@media only screen and (min-width: 1200px) {
/* line 68, ../../site/scss/site-specific/_home.scss */
.project-list li a,
.project-list li .dead-link, .project-list.col a,
.project-list.col .dead-link {
height: 60vh;
min-height: 350px;
max-height: 500px;
}
}
/* line 83, ../../site/scss/site-specific/_home.scss */
.project-thumb {
position: relative;
min-height: 250px;
display: block;
}
/* line 89, ../../site/scss/site-specific/_home.scss */
.project-thumb.padded .thumb-img-wrap {
position: absolute;
top: 15%;
right: 15%;
bottom: 15%;
left: 15%;
background-size: contain;
height: auto;
}
/* line 100, ../../site/scss/site-specific/_home.scss */
.project-thumb.contained .thumb-img-wrap {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-size: contain;
height: auto;
}
/* line 111, ../../site/scss/site-specific/_home.scss */
.project-thumb.bottom-right .thumb-img-wrap {
position: absolute;
top: 15%;
left: 15%;
right: 0;
bottom: 0;
background-size: contain;
background-position: bottom right;
height: auto;
}
@media only screen and (min-width: 1000px) {
/* line 111, ../../site/scss/site-specific/_home.scss */
.project-thumb.bottom-right .thumb-img-wrap {
top: 80px;
left: 80px;
}
}
/* line 126, ../../site/scss/site-specific/_home.scss */
.project-thumb a,
.project-thumb .dead-link {
display: block;
height: 250px;
width: 100%;
padding: 0;
margin: 0;
border: none;
position: relative;
}
/* line 136, ../../site/scss/site-specific/_home.scss */
.project-thumb a:hover + .project-title,
.project-thumb .dead-link:hover + .project-title {
border-color: #333;
}
/* line 141, ../../site/scss/site-specific/_home.scss */
.project-thumb .thumb-img-wrap {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
height: 100%;
}
/* line 146, ../../site/scss/site-specific/_home.scss */
.project-thumb .thumb-img-wrap img {
display: none;
}
/* line 150, ../../site/scss/site-specific/_home.scss */
.project-thumb .project-title {
font-size: 1em;
margin: .5em 0 0 0;
display: inline-block;
padding-bottom: 0;
border-bottom: 1px solid transparent;
transition: border 0.25s ease-in-out;
display: none;
}
/* line 161, ../../site/scss/site-specific/_home.scss */
.about {
padding: calc(5% * 1.15) 0;
min-height: calc(100vh - 6rem);
display: flex;
align-items: center;
}
/* line 166, ../../site/scss/site-specific/_home.scss */
.about .container {
max-width: 48em;
}
/* line 169, ../../site/scss/site-specific/_home.scss */
.about p {
font-size: 1.4em;
}
@media only screen and (min-width: 600px) {
/* line 169, ../../site/scss/site-specific/_home.scss */
.about p {
font-size: 1.5em;
}
}
@media only screen and (min-width: 1000px) {
/* line 169, ../../site/scss/site-specific/_home.scss */
.about p {
text-align: center;
}
}
/* line 177, ../../site/scss/site-specific/_home.scss */
.about p svg {
display: inline-block;
vertical-align: middle;
}
/* line 180, ../../site/scss/site-specific/_home.scss */
.about p svg.compstak {
margin: -3px 1px 0 3px;
}
/* line 183, ../../site/scss/site-specific/_home.scss */
.about p svg.dropsplash {
margin: -2px 6px 0 3px;
}
/* line 186, ../../site/scss/site-specific/_home.scss */
.about p svg.gordils-willis {
vertical-align: baseline;
margin-bottom: -1px;
}
/* line 1, ../../site/scss/site-specific/_project.scss */
.project.main {
clip: rect(0, auto, auto, 0);
}
/* line 6, ../../site/scss/site-specific/_project.scss */
.project-images *[class^="col"] {
margin-bottom: 5%;
}
@media only screen and (min-width: 600px) {
/* line 12, ../../site/scss/site-specific/_project.scss */
.project-images .col-6.no-gutter {
padding-left: 0 !important;
padding-right: 0 !important;
margin-left: -3px !important;
margin-right: -3px !important;
width: calc(50% - (5%/2 - 1px)) !important;
}
/* line 18, ../../site/scss/site-specific/_project.scss */
.project-images .col-6.no-gutter .web-layout,
.project-images .col-6.no-gutter .mobile {
padding: 12% 6% 12% 12%;
}
/* line 23, ../../site/scss/site-specific/_project.scss */
.project-images .col-6.no-gutter.on-right .web-layout,
.project-images .col-6.no-gutter.on-right .mobile {
padding: 12% 12% 12% 6%;
}
}
@media only screen and (min-width: 600px) {
/* line 34, ../../site/scss/site-specific/_project.scss */
.project-images .col-4.no-gutter {
padding-left: 0 !important;
padding-right: 0 !important;
margin-left: -3px !important;
margin-right: -3px !important;
width: calc(33.333% - 1.66667%) !important;
}
/* line 40, ../../site/scss/site-specific/_project.scss */
.project-images .col-4.no-gutter .web-layout,
.project-images .col-4.no-gutter .mobile {
padding: 18% 6% 18% 18%;
}
/* line 45, ../../site/scss/site-specific/_project.scss */
.project-images .col-4.no-gutter.on-right .web-layout,
.project-images .col-4.no-gutter.on-right .mobile {
padding: 18% 18% 18% 6%;
}
/* line 51, ../../site/scss/site-specific/_project.scss */
.project-images .col-4.no-gutter.in-middle .web-layout,
.project-images .col-4.no-gutter.in-middle .mobile {
padding: 18% 12%;
}
}
/* line 61, ../../site/scss/site-specific/_project.scss */
.project-images .image-block.web-layout, .project-images .image-block.mobile {
background: #ccc;
padding: 7%;
}
@media only screen and (min-width: 600px) {
/* line 61, ../../site/scss/site-specific/_project.scss */
.project-images .image-block.web-layout, .project-images .image-block.mobile {
padding: 12%;
}
}
/* line 68, ../../site/scss/site-specific/_project.scss */
.project-images .image-block.web-layout img, .project-images .image-block.web-layout video, .project-images .image-block.mobile img, .project-images .image-block.mobile video {
border-radius: 2px;
}
/* line 73, ../../site/scss/site-specific/_project.scss */
.project-images .image-block.mobile img, .project-images .image-block.mobile video {
max-height: 76vh;
}
/* line 77, ../../site/scss/site-specific/_project.scss */
.project-images .image-block img,
.project-images .image-block video {
display: block;
margin: 0 auto;
}
/* line 85, ../../site/scss/site-specific/_project.scss */
.project-images .logo img {
height: 80vh;
max-height: 800px;
} | static/assets/css/style.css | @charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
/* line 6, ../../site/scss/setup/_reset.scss */
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 */
/* line 27, ../../site/scss/setup/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
/* line 31, ../../site/scss/setup/_reset.scss */
body {
line-height: 1;
}
/* line 34, ../../site/scss/setup/_reset.scss */
ol, ul {
list-style: none;
}
/* line 37, ../../site/scss/setup/_reset.scss */
blockquote, q {
quotes: none;
}
/* line 40, ../../site/scss/setup/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
/* line 45, ../../site/scss/setup/_reset.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/* line 1, ../../site/scss/setup/_global.scss */
* {
box-sizing: border-box;
}
/* line 5, ../../site/scss/setup/_global.scss */
html, body {
min-height: 100%;
background-color: #fff;
}
/* line 10, ../../site/scss/setup/_global.scss */
img, video {
vertical-align: top;
max-width: 100%;
height: auto;
}
/* line 16, ../../site/scss/setup/_global.scss */
svg, svg * {
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
}
/* line 26, ../../site/scss/setup/_global.scss */
a {
cursor: pointer;
}
/* line 30, ../../site/scss/setup/_global.scss */
.container {
margin: 0 auto;
width: 90%;
max-width: 1200px;
position: relative;
}
/* line 37, ../../site/scss/setup/_global.scss */
.v-center {
display: table;
width: 100%;
height: 100%;
}
/* line 41, ../../site/scss/setup/_global.scss */
.v-center .v-content {
display: table-cell;
vertical-align: middle;
}
/* line 47, ../../site/scss/setup/_global.scss */
.tooltip {
position: relative;
}
/* line 49, ../../site/scss/setup/_global.scss */
.tooltip .icon {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1000px) {
/* line 54, ../../site/scss/setup/_global.scss */
.tooltip.right:after {
bottom: 50%;
left: 100%;
-ms-transform: translate3d(10px, 50%, 0);
/* IE 9 */
-webkit-transform: translate3d(10px, 50%, 0);
/* Chrome, Safari, Opera */
transform: translate3d(10px, 50%, 0);
}
/* line 59, ../../site/scss/setup/_global.scss */
.tooltip.right:before {
border-color: transparent;
border-right-color: #333;
bottom: 50%;
left: 100%;
margin: 0 0 -5px 0;
}
/* line 69, ../../site/scss/setup/_global.scss */
.tooltip.left:after {
bottom: 50%;
right: 100%;
left: auto;
-ms-transform: translate3d(-10px, 50%, 0);
/* IE 9 */
-webkit-transform: translate3d(-10px, 50%, 0);
/* Chrome, Safari, Opera */
transform: translate3d(-10px, 50%, 0);
}
/* line 75, ../../site/scss/setup/_global.scss */
.tooltip.left:before {
border-color: transparent;
border-left-color: #333;
bottom: 50%;
right: 100%;
left: auto;
margin: 0 0 -5px 0;
}
/* line 86, ../../site/scss/setup/_global.scss */
.tooltip.bottom:after {
bottom: auto;
top: 100%;
-ms-transform: translate3d(-50%, 10px, 0);
/* IE 9 */
-webkit-transform: translate3d(-50%, 10px, 0);
/* Chrome, Safari, Opera */
transform: translate3d(-50%, 10px, 0);
}
/* line 91, ../../site/scss/setup/_global.scss */
.tooltip.bottom:before {
border-color: transparent;
border-bottom-color: #333;
bottom: auto;
top: 100%;
}
/* line 99, ../../site/scss/setup/_global.scss */
.tooltip:before {
content: '';
display: block;
position: absolute;
border: 5px solid transparent;
border-top-color: #333;
bottom: 100%;
transform-style: preserve-3d;
left: 50%;
margin: 0 0 0 -5px;
visibility: hidden;
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;
-webkit-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
-moz-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
-o-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
transform-style: preserve-3d;
}
/* line 114, ../../site/scss/setup/_global.scss */
.tooltip:after {
position: absolute;
content: attr(title);
bottom: 100%;
background-color: #333;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
color: #fff;
font-size: 12px;
line-height: 1.3em;
text-align: center;
letter-spacing: .02em;
left: 50%;
padding: 5px 7px;
-ms-transform: translate3d(-50%, -10px, 0);
/* IE 9 */
-webkit-transform: translate3d(-50%, -10px, 0);
/* Chrome, Safari, Opera */
transform: translate3d(-50%, -10px, 0);
visibility: hidden;
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;
-webkit-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
-moz-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
-o-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
transform-style: preserve-3d;
}
/* line 134, ../../site/scss/setup/_global.scss */
.tooltip:hover:before, .tooltip:hover:after {
visibility: visible;
-moz-opacity: 1;
-khtml-opacity: 1;
opacity: 1;
}
}
@-webkit-keyframes ripple {
0% {
-moz-opacity: 0.75;
-khtml-opacity: 0.75;
opacity: 0.75;
-ms-transform: scale(0);
/* IE 9 */
-webkit-transform: scale(0);
/* Chrome, Safari, Opera */
transform: scale(0);
}
100% {
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;
-ms-transform: scale(1);
/* IE 9 */
-webkit-transform: scale(1);
/* Chrome, Safari, Opera */
transform: scale(1);
}
}
@-moz-keyframes ripple {
0% {
-moz-opacity: 0.75;
-khtml-opacity: 0.75;
opacity: 0.75;
-ms-transform: scale(0);
/* IE 9 */
-webkit-transform: scale(0);
/* Chrome, Safari, Opera */
transform: scale(0);
}
100% {
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;
-ms-transform: scale(1);
/* IE 9 */
-webkit-transform: scale(1);
/* Chrome, Safari, Opera */
transform: scale(1);
}
}
@-ms-keyframes ripple {
0% {
-moz-opacity: 0.75;
-khtml-opacity: 0.75;
opacity: 0.75;
-ms-transform: scale(0);
/* IE 9 */
-webkit-transform: scale(0);
/* Chrome, Safari, Opera */
transform: scale(0);
}
100% {
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;
-ms-transform: scale(1);
/* IE 9 */
-webkit-transform: scale(1);
/* Chrome, Safari, Opera */
transform: scale(1);
}
}
@keyframes ripple {
0% {
-moz-opacity: 0.75;
-khtml-opacity: 0.75;
opacity: 0.75;
-ms-transform: scale(0);
/* IE 9 */
-webkit-transform: scale(0);
/* Chrome, Safari, Opera */
transform: scale(0);
}
100% {
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;
-ms-transform: scale(1);
/* IE 9 */
-webkit-transform: scale(1);
/* Chrome, Safari, Opera */
transform: scale(1);
}
}
@-webkit-keyframes fadeInUp {
100% {
-moz-opacity: 1;
-khtml-opacity: 1;
opacity: 1;
-ms-transform: translate3d(0, 0, 0);
/* IE 9 */
-webkit-transform: translate3d(0, 0, 0);
/* Chrome, Safari, Opera */
transform: translate3d(0, 0, 0);
}
}
@-moz-keyframes fadeInUp {
100% {
-moz-opacity: 1;
-khtml-opacity: 1;
opacity: 1;
-ms-transform: translate3d(0, 0, 0);
/* IE 9 */
-webkit-transform: translate3d(0, 0, 0);
/* Chrome, Safari, Opera */
transform: translate3d(0, 0, 0);
}
}
@-ms-keyframes fadeInUp {
100% {
-moz-opacity: 1;
-khtml-opacity: 1;
opacity: 1;
-ms-transform: translate3d(0, 0, 0);
/* IE 9 */
-webkit-transform: translate3d(0, 0, 0);
/* Chrome, Safari, Opera */
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInUp {
100% {
-moz-opacity: 1;
-khtml-opacity: 1;
opacity: 1;
-ms-transform: translate3d(0, 0, 0);
/* IE 9 */
-webkit-transform: translate3d(0, 0, 0);
/* Chrome, Safari, Opera */
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes rotate {
0% {
-ms-transform: rotate(0deg);
/* IE 9 */
-webkit-transform: rotate(0deg);
/* Chrome, Safari, Opera */
transform: rotate(0deg);
}
100% {
-ms-transform: rotate(360deg);
/* IE 9 */
-webkit-transform: rotate(360deg);
/* Chrome, Safari, Opera */
transform: rotate(360deg);
}
}
@-moz-keyframes rotate {
0% {
-ms-transform: rotate(0deg);
/* IE 9 */
-webkit-transform: rotate(0deg);
/* Chrome, Safari, Opera */
transform: rotate(0deg);
}
100% {
-ms-transform: rotate(360deg);
/* IE 9 */
-webkit-transform: rotate(360deg);
/* Chrome, Safari, Opera */
transform: rotate(360deg);
}
}
@-ms-keyframes rotate {
0% {
-ms-transform: rotate(0deg);
/* IE 9 */
-webkit-transform: rotate(0deg);
/* Chrome, Safari, Opera */
transform: rotate(0deg);
}
100% {
-ms-transform: rotate(360deg);
/* IE 9 */
-webkit-transform: rotate(360deg);
/* Chrome, Safari, Opera */
transform: rotate(360deg);
}
}
@keyframes rotate {
0% {
-ms-transform: rotate(0deg);
/* IE 9 */
-webkit-transform: rotate(0deg);
/* Chrome, Safari, Opera */
transform: rotate(0deg);
}
100% {
-ms-transform: rotate(360deg);
/* IE 9 */
-webkit-transform: rotate(360deg);
/* Chrome, Safari, Opera */
transform: rotate(360deg);
}
}
/* line 21, ../../site/scss/setup/_animations.scss */
.spinner {
display: block;
width: 80px;
height: 80px;
border: 1px solid rgba(51, 51, 51, 0.4);
border-top-color: #000;
border-bottom-color: rgba(51, 51, 51, 0.4);
border-left-color: #000;
border-right-color: rgba(51, 51, 51, 0.4);
border-radius: 100%;
-webkit-animation: rotate 0.5s linear infinite;
-moz-animation: rotate 0.5s linear infinite;
-o-animation: rotate 0.5s linear infinite;
animation: rotate 0.5s linear infinite;
}
/* line 1, ../../site/scss/setup/_fajax.scss */
#page {
z-index: 2;
}
/* line 5, ../../site/scss/setup/_fajax.scss */
#pageLoader {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #fff;
text-align: center;
z-index: 999;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
}
/* line 17, ../../site/scss/setup/_fajax.scss */
#pageLoader .loader {
opacity: 0;
-webkit-animation: fadeIn 0.5s forwards;
-moz-animation: fadeIn 0.5s forwards;
-o-animation: fadeIn 0.5s forwards;
animation: fadeIn 0.5s forwards;
display: inline-block;
}
/* line 24, ../../site/scss/setup/_fajax.scss */
.loaded #pageLoader {
visibility: hidden;
opacity: 0;
transition: visibility .75s .75s ease-in-out, opacity .75s .75s ease-in-out;
}
/* line 30, ../../site/scss/setup/_fajax.scss */
.fade-out #pageLoader .loader {
display: none !important;
background-color: red !important;
}
/* line 35, ../../site/scss/setup/_fajax.scss */
#page {
-webkit-transition: transform 2s ease-in-out;
-moz-transition: transform 2s ease-in-out;
-o-transition: transform 2s ease-in-out;
}
/*==============================================================================
Grid Settings
==============================================================================*/
/*==============================================================================
Columns, generic
==============================================================================*/
/*==============================================================================
Containers columns
==============================================================================*/
/* line 144, ../../site/scss/setup/_grid.scss */
.row {
padding: 0;
list-style: none;
}
@media only screen and (min-width: 600px) {
/* line 148, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) {
display: block;
min-width: 100%;
*zoom: 1;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 138, ../../site/scss/setup/_mixins.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm):before, .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm):after {
content: "";
display: table;
}
/* line 143, ../../site/scss/setup/_mixins.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm):after {
clear: both;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col,
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.middle,
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.bottom,
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].bottom {
vertical-align: bottom;
}
}
@media only screen and (min-width: 600px) and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.right,
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 600px) and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.left,
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].left {
float: left;
}
}
@media only screen and (min-width: 600px) {
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12-12 {
width: 100%;
}
}
/* line 155, ../../site/scss/setup/_grid.scss */
.row.no-break {
display: block;
min-width: 100%;
*zoom: 1;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 138, ../../site/scss/setup/_mixins.scss */
.row.no-break:before, .row.no-break:after {
content: "";
display: table;
}
/* line 143, ../../site/scss/setup/_mixins.scss */
.row.no-break:after {
clear: both;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.row.no-break > .col,
.row.no-break > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.row.no-break > .col.middle,
.row.no-break > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.row.no-break > .col.bottom,
.row.no-break > [class^="col-"].bottom {
vertical-align: bottom;
}
@media only screen and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.row.no-break > .col.right,
.row.no-break > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.row.no-break > .col.left,
.row.no-break > [class^="col-"].left {
float: left;
}
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.no-break .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.no-break .col-12-12 {
width: 100%;
}
@media only screen and (min-width: 1000px) {
/* line 160, ../../site/scss/setup/_grid.scss */
.row.break-lg {
display: block;
min-width: 100%;
*zoom: 1;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 138, ../../site/scss/setup/_mixins.scss */
.row.break-lg:before, .row.break-lg:after {
content: "";
display: table;
}
/* line 143, ../../site/scss/setup/_mixins.scss */
.row.break-lg:after {
clear: both;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.row.break-lg > .col,
.row.break-lg > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.row.break-lg > .col.middle,
.row.break-lg > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.row.break-lg > .col.bottom,
.row.break-lg > [class^="col-"].bottom {
vertical-align: bottom;
}
}
@media only screen and (min-width: 1000px) and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.row.break-lg > .col.right,
.row.break-lg > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 1000px) and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.row.break-lg > .col.left,
.row.break-lg > [class^="col-"].left {
float: left;
}
}
@media only screen and (min-width: 1000px) {
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-lg .col-12-12 {
width: 100%;
}
}
@media only screen and (min-width: 1200px) {
/* line 167, ../../site/scss/setup/_grid.scss */
.row.break-xlg {
display: block;
min-width: 100%;
*zoom: 1;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 138, ../../site/scss/setup/_mixins.scss */
.row.break-xlg:before, .row.break-xlg:after {
content: "";
display: table;
}
/* line 143, ../../site/scss/setup/_mixins.scss */
.row.break-xlg:after {
clear: both;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.row.break-xlg > .col,
.row.break-xlg > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.row.break-xlg > .col.middle,
.row.break-xlg > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.row.break-xlg > .col.bottom,
.row.break-xlg > [class^="col-"].bottom {
vertical-align: bottom;
}
}
@media only screen and (min-width: 1200px) and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.row.break-xlg > .col.right,
.row.break-xlg > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 1200px) and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.row.break-xlg > .col.left,
.row.break-xlg > [class^="col-"].left {
float: left;
}
}
@media only screen and (min-width: 1200px) {
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.row.break-xlg .col-12-12 {
width: 100%;
}
}
/* line 176, ../../site/scss/setup/_grid.scss */
.inline-grid {
padding: 0;
list-style: none;
}
@media only screen and (min-width: 600px) {
/* line 180, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) {
display: block;
min-width: 100%;
text-align: left;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col,
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.middle,
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.bottom,
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].bottom {
vertical-align: bottom;
}
}
@media only screen and (min-width: 600px) and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.right,
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 600px) and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.left,
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].left {
float: left;
}
}
@media only screen and (min-width: 600px) {
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12-12 {
width: 100%;
}
/* line 32, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).center {
text-align: center;
}
/* line 34, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).center [class^="col-"] {
margin-left: -.125em;
margin-right: -.125em;
}
/* line 39, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).right {
text-align: right;
margin-left: -.25em;
margin-right: 0;
}
/* line 44, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).middle .col, .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).middle [class^="col-"] {
vertical-align: middle;
}
/* line 48, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).bottom .col, .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).bottom [class^="col-"] {
vertical-align: bottom;
}
/* line 105, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col,
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"] {
vertical-align: top;
display: inline-block;
float: none;
margin-left: 0;
letter-spacing: 0;
max-width: 100%;
position: relative;
margin-top: 0;
margin-left: 0;
margin-right: -.25em;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12-12 {
width: 100%;
}
}
/* line 187, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break {
display: block;
min-width: 100%;
text-align: left;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break > .col,
.inline-grid.no-break > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break > .col.middle,
.inline-grid.no-break > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break > .col.bottom,
.inline-grid.no-break > [class^="col-"].bottom {
vertical-align: bottom;
}
@media only screen and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break > .col.right,
.inline-grid.no-break > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break > .col.left,
.inline-grid.no-break > [class^="col-"].left {
float: left;
}
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-12-12 {
width: 100%;
}
/* line 32, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break.center {
text-align: center;
}
/* line 34, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break.center [class^="col-"] {
margin-left: -.125em;
margin-right: -.125em;
}
/* line 39, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break.right {
text-align: right;
margin-left: -.25em;
margin-right: 0;
}
/* line 44, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break.middle .col, .inline-grid.no-break.middle [class^="col-"] {
vertical-align: middle;
}
/* line 48, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break.bottom .col, .inline-grid.no-break.bottom [class^="col-"] {
vertical-align: bottom;
}
/* line 105, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break > .col,
.inline-grid.no-break > [class^="col-"] {
vertical-align: top;
display: inline-block;
float: none;
margin-left: 0;
letter-spacing: 0;
max-width: 100%;
position: relative;
margin-top: 0;
margin-left: 0;
margin-right: -.25em;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.no-break .col-12-12 {
width: 100%;
}
@media only screen and (min-width: 450px) {
/* line 192, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm {
display: block;
min-width: 100%;
text-align: left;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm > .col,
.inline-grid.break-sm > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm > .col.middle,
.inline-grid.break-sm > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm > .col.bottom,
.inline-grid.break-sm > [class^="col-"].bottom {
vertical-align: bottom;
}
}
@media only screen and (min-width: 450px) and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm > .col.right,
.inline-grid.break-sm > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 450px) and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm > .col.left,
.inline-grid.break-sm > [class^="col-"].left {
float: left;
}
}
@media only screen and (min-width: 450px) {
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-12-12 {
width: 100%;
}
/* line 32, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm.center {
text-align: center;
}
/* line 34, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm.center [class^="col-"] {
margin-left: -.125em;
margin-right: -.125em;
}
/* line 39, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm.right {
text-align: right;
margin-left: -.25em;
margin-right: 0;
}
/* line 44, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm.middle .col, .inline-grid.break-sm.middle [class^="col-"] {
vertical-align: middle;
}
/* line 48, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm.bottom .col, .inline-grid.break-sm.bottom [class^="col-"] {
vertical-align: bottom;
}
/* line 105, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm > .col,
.inline-grid.break-sm > [class^="col-"] {
vertical-align: top;
display: inline-block;
float: none;
margin-left: 0;
letter-spacing: 0;
max-width: 100%;
position: relative;
margin-top: 0;
margin-left: 0;
margin-right: -.25em;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-sm .col-12-12 {
width: 100%;
}
}
@media only screen and (min-width: 1000px) {
/* line 199, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg {
display: block;
min-width: 100%;
text-align: left;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg > .col,
.inline-grid.break-lg > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg > .col.middle,
.inline-grid.break-lg > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg > .col.bottom,
.inline-grid.break-lg > [class^="col-"].bottom {
vertical-align: bottom;
}
}
@media only screen and (min-width: 1000px) and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg > .col.right,
.inline-grid.break-lg > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 1000px) and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg > .col.left,
.inline-grid.break-lg > [class^="col-"].left {
float: left;
}
}
@media only screen and (min-width: 1000px) {
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-12-12 {
width: 100%;
}
/* line 32, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg.center {
text-align: center;
}
/* line 34, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg.center [class^="col-"] {
margin-left: -.125em;
margin-right: -.125em;
}
/* line 39, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg.right {
text-align: right;
margin-left: -.25em;
margin-right: 0;
}
/* line 44, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg.middle .col, .inline-grid.break-lg.middle [class^="col-"] {
vertical-align: middle;
}
/* line 48, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg.bottom .col, .inline-grid.break-lg.bottom [class^="col-"] {
vertical-align: bottom;
}
/* line 105, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg > .col,
.inline-grid.break-lg > [class^="col-"] {
vertical-align: top;
display: inline-block;
float: none;
margin-left: 0;
letter-spacing: 0;
max-width: 100%;
position: relative;
margin-top: 0;
margin-left: 0;
margin-right: -.25em;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-lg .col-12-12 {
width: 100%;
}
}
@media only screen and (min-width: 1200px) {
/* line 206, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg {
display: block;
min-width: 100%;
text-align: left;
margin-left: -2.63158%;
margin-right: -2.63158%;
}
/* line 55, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg > .col,
.inline-grid.break-xlg > [class^="col-"] {
max-width: 100%;
letter-spacing: 0;
display: inline;
float: left;
position: relative;
margin-top: 0;
margin-left: 0;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 66, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg > .col.middle,
.inline-grid.break-xlg > [class^="col-"].middle {
vertical-align: middle;
}
/* line 69, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg > .col.bottom,
.inline-grid.break-xlg > [class^="col-"].bottom {
vertical-align: bottom;
}
}
@media only screen and (min-width: 1200px) and (min-width: 600px) {
/* line 73, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg > .col.right,
.inline-grid.break-xlg > [class^="col-"].right {
float: right;
}
}
@media only screen and (min-width: 1200px) and (min-width: 600px) {
/* line 78, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg > .col.left,
.inline-grid.break-xlg > [class^="col-"].left {
float: left;
}
}
@media only screen and (min-width: 1200px) {
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-12-12 {
width: 100%;
}
/* line 32, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg.center {
text-align: center;
}
/* line 34, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg.center [class^="col-"] {
margin-left: -.125em;
margin-right: -.125em;
}
/* line 39, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg.right {
text-align: right;
margin-left: -.25em;
margin-right: 0;
}
/* line 44, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg.middle .col, .inline-grid.break-xlg.middle [class^="col-"] {
vertical-align: middle;
}
/* line 48, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg.bottom .col, .inline-grid.break-xlg.bottom [class^="col-"] {
vertical-align: bottom;
}
/* line 105, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg > .col,
.inline-grid.break-xlg > [class^="col-"] {
vertical-align: top;
display: inline-block;
float: none;
margin-left: 0;
letter-spacing: 0;
max-width: 100%;
position: relative;
margin-top: 0;
margin-left: 0;
margin-right: -.25em;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-1 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-2 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-2 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-3 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-3 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-3 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-4 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-4 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-4 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-4 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-5 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-5 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-5 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-5 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-5 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-6 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-6 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-6 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-6 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-6 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-6 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-7 {
width: 14.28571%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-7 {
width: 28.57143%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-7 {
width: 42.85714%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-7 {
width: 57.14286%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-7 {
width: 71.42857%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-7 {
width: 85.71429%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-7 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-8 {
width: 12.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-8 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-8 {
width: 37.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-8 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-8 {
width: 62.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-8 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-8 {
width: 87.5%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-8 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-9 {
width: 11.11111%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-9 {
width: 22.22222%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-9 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-9 {
width: 44.44444%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-9 {
width: 55.55556%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-9 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-9 {
width: 77.77778%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-9 {
width: 88.88889%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-9 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-10 {
width: 10%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-10 {
width: 20%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-10 {
width: 30%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-10 {
width: 40%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-10 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-10 {
width: 60%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-10 {
width: 70%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-10 {
width: 80%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-10 {
width: 90%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10-10 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-11 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-11 {
width: 9.09091%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-11 {
width: 18.18182%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-11 {
width: 27.27273%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-11 {
width: 36.36364%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-11 {
width: 45.45455%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-11 {
width: 54.54545%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-11 {
width: 63.63636%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-11 {
width: 72.72727%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-11 {
width: 81.81818%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10-11 {
width: 90.90909%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-11-11 {
width: 100%;
}
/* line 89, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-12 {
width: 100%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-1-12 {
width: 8.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-2-12 {
width: 16.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-3-12 {
width: 25%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-4-12 {
width: 33.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-5-12 {
width: 41.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-6-12 {
width: 50%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-7-12 {
width: 58.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-8-12 {
width: 66.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-9-12 {
width: 75%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-10-12 {
width: 83.33333%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-11-12 {
width: 91.66667%;
}
/* line 96, ../../site/scss/setup/_grid.scss */
.inline-grid.break-xlg .col-12-12 {
width: 100%;
}
}
@font-face {
font-family: 'Basis';
src: url("../fonts/basis_grotesque_regular.woff") format("woff"), url("../fonts/basis_grotesque_regular.woff2") format("woff2");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Basis Off White';
src: url("../fonts/basis_grotesque_off_white.woff") format("woff"), url("../fonts/basis_grotesque_off_white.woff2") format("woff2");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Basis';
src: url("../fonts/basis_grotesque_bold.woff") format("woff"), url("../fonts/basis_grotesque_bold.woff2") format("woff2");
font-weight: 700;
font-style: normal;
}
/* line 3, ../../site/scss/setup/_buttons.scss */
.btn,
input[type="submit"],
button {
-webkit-appearance: none;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
border: none;
outline: none;
display: inline-block;
vertical-align: top;
text-align: center;
background-image: none;
-webkit-appearance: caret;
-moz-appearance: caret;
/* mobile firefox too! */
-webkit-appearance: none;
background-color: #333;
color: #fff;
height: 60px;
max-height: 60px;
padding: 0px 15px 2px 15px;
margin: 0px;
font-family: "Basis Off White", serif !important;
font-size: 12px;
font-weight: 400;
letter-spacing: .02em;
cursor: pointer;
line-height: 56px;
width: 100%;
max-width: 400px;
border: 1px solid #333;
position: relative;
overflow: hidden;
text-transform: uppercase;
letter-spacing: .15em;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-webkit-transition: border 0.25s ease-in-out, background 0.25s ease-in-out, color 0.25s ease-in-out, background 0.25s ease-in-out, padding 0.25s ease-in-out;
-moz-transition: border 0.25s ease-in-out, background 0.25s ease-in-out, color 0.25s ease-in-out, background 0.25s ease-in-out, padding 0.25s ease-in-out;
-o-transition: border 0.25s ease-in-out, background 0.25s ease-in-out, color 0.25s ease-in-out, background 0.25s ease-in-out, padding 0.25s ease-in-out;
}
/* line 41, ../../site/scss/setup/_buttons.scss */
.btn .icon svg *,
input[type="submit"] .icon svg *,
button .icon svg * {
fill: #fff;
}
/* line 47, ../../site/scss/setup/_buttons.scss */
.btn.medium,
input[type="submit"].medium,
button.medium {
height: 50px;
padding: 0px 15px 2px 15px;
line-height: 46px;
}
/* line 54, ../../site/scss/setup/_buttons.scss */
.btn.tiny,
input[type="submit"].tiny,
button.tiny {
height: 30px;
padding: 0px 15px 2px 15px;
line-height: 26px;
}
/* line 61, ../../site/scss/setup/_buttons.scss */
.btn:hover, .btn:active,
input[type="submit"]:hover,
input[type="submit"]:active,
button:hover,
button:active {
color: #fff;
background-color: #000;
border: 1px solid #000;
}
/* line 67, ../../site/scss/setup/_buttons.scss */
.btn:hover svg *, .btn:active svg *,
input[type="submit"]:hover svg *,
input[type="submit"]:active svg *,
button:hover svg *,
button:active svg * {
fill: #fff;
}
/* line 73, ../../site/scss/setup/_buttons.scss */
.btn:before,
input[type="submit"]:before,
button:before {
box-sizing: border-box;
position: absolute;
content: '';
width: 20px;
height: 20px;
margin-left: -10px;
margin-top: -10px;
line-height: 20px;
top: 50%;
left: 50%;
border: 2px solid #fff;
border-radius: 50%;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
}
/* line 90, ../../site/scss/setup/_buttons.scss */
.btn:after,
input[type="submit"]:after,
button:after {
box-sizing: border-box;
position: absolute;
content: '';
width: 20px;
height: 20px;
margin-left: -10px;
margin-top: -10px;
line-height: 20px;
top: 50%;
left: 50%;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
}
/* line 106, ../../site/scss/setup/_buttons.scss */
.btn.loading,
input[type="submit"].loading,
button.loading {
color: transparent;
background-color: #b3b3b3;
border: 1px solid #333;
border-color: #b3b3b3;
cursor: default;
}
/* line 112, ../../site/scss/setup/_buttons.scss */
.btn.loading:before,
input[type="submit"].loading:before,
button.loading:before {
border: 2px solid rgba(255, 255, 255, 0.5);
border-top-color: #fff;
border-right-color: #fff;
-webkit-animation: rotate 0.5s linear infinite;
-moz-animation: rotate 0.5s linear infinite;
-o-animation: rotate 0.5s linear infinite;
animation: rotate 0.5s linear infinite;
opacity: 1;
visibility: visible;
}
/* line 122, ../../site/scss/setup/_buttons.scss */
.btn.success,
input[type="submit"].success,
button.success {
color: transparent;
background-color: #333;
border: 1px solid #333;
cursor: default;
background-color: #000;
}
/* line 128, ../../site/scss/setup/_buttons.scss */
.btn.success:before,
input[type="submit"].success:before,
button.success:before {
background-color: #fff;
opacity: 1;
visibility: visible;
}
/* line 133, ../../site/scss/setup/_buttons.scss */
.btn.success:after,
input[type="submit"].success:after,
button.success:after {
opacity: 1;
visibility: visible;
content: '';
border: 2px solid #000;
border-left: none;
border-top: none;
-ms-transform: rotate(45deg);
/* IE 9 */
-webkit-transform: rotate(45deg);
/* Chrome, Safari, Opera */
transform: rotate(45deg);
line-height: 21px;
font-size: 16px;
width: 6px;
height: 10px;
margin-left: -3px;
margin-top: -6px;
}
/* line 150, ../../site/scss/setup/_buttons.scss */
.btn.error,
input[type="submit"].error,
button.error {
color: transparent;
background-color: #333;
border: 1px solid #333;
cursor: default;
}
/* line 155, ../../site/scss/setup/_buttons.scss */
.btn.error:before,
input[type="submit"].error:before,
button.error:before {
color: #333;
content: '';
background-color: #fff;
opacity: 1;
visibility: visible;
}
/* line 162, ../../site/scss/setup/_buttons.scss */
.btn.error:after,
input[type="submit"].error:after,
button.error:after {
opacity: 1;
visibility: visible;
color: #333;
content: '×';
line-height: 21px;
font-size: 16px;
}
/* line 172, ../../site/scss/setup/_buttons.scss */
.btn.secondary,
input[type="submit"].secondary,
button.secondary {
background-color: transparent;
color: rgba(51, 51, 51, 0.4);
border: 1px solid rgba(51, 51, 51, 0.4);
}
/* line 177, ../../site/scss/setup/_buttons.scss */
.btn.secondary svg *,
input[type="submit"].secondary svg *,
button.secondary svg * {
fill: rgba(51, 51, 51, 0.4);
}
/* line 181, ../../site/scss/setup/_buttons.scss */
.btn.secondary:hover, .btn.secondary:active,
input[type="submit"].secondary:hover,
input[type="submit"].secondary:active,
button.secondary:hover,
button.secondary:active {
color: #000;
background-color: transparent;
border: 1px solid #000;
}
/* line 187, ../../site/scss/setup/_buttons.scss */
.btn.secondary:hover svg *, .btn.secondary:active svg *,
input[type="submit"].secondary:hover svg *,
input[type="submit"].secondary:active svg *,
button.secondary:hover svg *,
button.secondary:active svg * {
fill: #000;
}
/* line 1, ../../site/scss/setup/_typography-base.scss */
html, form, textarea, input, input[type="text"], input[type="search"], input[type="password"], input[type="email"], button, select {
font-family: "Basis", sans-serif;
text-rendering: auto;
}
/* line 6, ../../site/scss/setup/_typography-base.scss */
.font-smooth {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* line 10, ../../site/scss/setup/_typography-base.scss */
body {
-webkit-text-size-adjust: none;
font-size: 16px;
line-height: 1.65em;
color: #333;
font-weight: normal;
}
@media only screen and (min-width: 1500px) {
/* line 10, ../../site/scss/setup/_typography-base.scss */
body {
font-size: 18px;
}
}
/* line 21, ../../site/scss/setup/_typography-base.scss */
a {
text-decoration: none;
color: #333;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-transition: color 0.25s ease-in-out, border 0.25s ease-in-out, background-color 0.25s ease-in-out, opacity 0.25s ease-in-out;
-moz-transition: color 0.25s ease-in-out, border 0.25s ease-in-out, background-color 0.25s ease-in-out, opacity 0.25s ease-in-out;
-o-transition: color 0.25s ease-in-out, border 0.25s ease-in-out, background-color 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
/* line 27, ../../site/scss/setup/_typography-base.scss */
a:hover, a:focus {
border-color: #000;
}
/* line 33, ../../site/scss/setup/_typography-base.scss */
.light-text-color {
color: rgba(51, 51, 51, 0.4);
}
/* line 37, ../../site/scss/setup/_typography-base.scss */
.primary-color {
color: rgba(51, 51, 51, 0.4);
}
/* line 41, ../../site/scss/setup/_typography-base.scss */
hr {
margin: 0;
border: none;
border-top: 1px solid #ddd;
}
/* line 48, ../../site/scss/setup/_typography-base.scss */
::-webkit-input-placeholder {
color: rgba(51, 51, 51, 0.4);
-webkit-transition: color 0.3s ease-in-out;
-moz-transition: color 0.3s ease-in-out;
-o-transition: color 0.3s ease-in-out;
}
/* line 49, ../../site/scss/setup/_typography-base.scss */
:focus::-webkit-input-placeholder {
color: transparent;
}
/* line 52, ../../site/scss/setup/_typography-base.scss */
:-moz-placeholder {
color: rgba(51, 51, 51, 0.4);
-webkit-transition: color 0.3s ease-in-out;
-moz-transition: color 0.3s ease-in-out;
-o-transition: color 0.3s ease-in-out;
}
/* line 53, ../../site/scss/setup/_typography-base.scss */
:focus:-moz-placeholder {
color: transparent;
}
/* line 54, ../../site/scss/setup/_typography-base.scss */
::-moz-placeholder {
color: rgba(51, 51, 51, 0.4);
-webkit-transition: color 0.3s ease-in-out;
-moz-transition: color 0.3s ease-in-out;
-o-transition: color 0.3s ease-in-out;
}
/* line 55, ../../site/scss/setup/_typography-base.scss */
:focus::-moz-placeholder {
color: transparent;
}
/* line 58, ../../site/scss/setup/_typography-base.scss */
:-ms-input-placeholder {
color: rgba(51, 51, 51, 0.4);
-webkit-transition: color 0.3s ease-in-out;
-moz-transition: color 0.3s ease-in-out;
-o-transition: color 0.3s ease-in-out;
}
/* line 59, ../../site/scss/setup/_typography-base.scss */
:focus:-ms-input-placeholder {
color: transparent;
}
/* line 61, ../../site/scss/setup/_typography-base.scss */
::selection {
background: #000;
color: #fff;
}
/* line 65, ../../site/scss/setup/_typography-base.scss */
::-moz-selection {
background: #000;
color: #fff;
}
/* line 1, ../../site/scss/site-specific/_main.scss */
body {
overflow: hidden;
}
/* line 5, ../../site/scss/site-specific/_main.scss */
.dark {
background: #000;
color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* line 10, ../../site/scss/site-specific/_main.scss */
.dark a {
color: #fff;
border-bottom-color: #555;
}
/* line 13, ../../site/scss/site-specific/_main.scss */
.dark a:hover {
border-color: #fff;
}
/* line 17, ../../site/scss/site-specific/_main.scss */
.dark hr {
border-color: #222;
}
/* line 20, ../../site/scss/site-specific/_main.scss */
.dark h4 {
letter-spacing: .015em;
}
/* line 23, ../../site/scss/site-specific/_main.scss */
.dark p {
letter-spacing: .015em;
}
/* line 27, ../../site/scss/site-specific/_main.scss */
.dark svg * {
fill: #fff;
}
/* line 33, ../../site/scss/site-specific/_main.scss */
.cc {
position: fixed;
width: 100%;
height: 100%;
top: 0;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
}
/* line 43, ../../site/scss/site-specific/_main.scss */
.section-title {
margin-bottom: .5em;
opacity: .5;
}
@media only screen and (min-width: 600px) {
/* line 43, ../../site/scss/site-specific/_main.scss */
.section-title {
opacity: 1;
}
}
/* line 1, ../../site/scss/site-specific/_typography.scss */
a {
padding-bottom: .15em;
border-bottom: 1px solid #ddd;
}
/* line 4, ../../site/scss/site-specific/_typography.scss */
a:hover, a:focus {
border-color: #333;
}
/* line 10, ../../site/scss/site-specific/_typography.scss */
h1 {
font-size: 1.25em;
line-height: 1.65em;
margin-bottom: .5em;
}
/* line 16, ../../site/scss/site-specific/_typography.scss */
.lg p,
p.lg,
.large-text {
font-family: "Basis Off White", serif;
font-size: 1.25em;
line-height: 1.65em;
margin-bottom: .5em;
}
/* line 25, ../../site/scss/site-specific/_typography.scss */
p {
font-size: 1em;
line-height: 1.65em;
}
/* line 28, ../../site/scss/site-specific/_typography.scss */
p + p {
margin-top: 1em;
}
/* line 34, ../../site/scss/site-specific/_typography.scss */
hr.spaced {
margin: 1rem 0;
}
/* line 37, ../../site/scss/site-specific/_typography.scss */
hr.spaced-top {
margin: 1rem 0 0;
}
/* line 40, ../../site/scss/site-specific/_typography.scss */
hr.spaced-bottom {
margin: 0 0 1rem;
}
/* line 1, ../../site/scss/site-specific/_header.scss */
header {
padding: 7.5% 0;
}
@media only screen and (min-width: 600px) {
/* line 1, ../../site/scss/site-specific/_header.scss */
header {
padding: 5% 0;
}
}
/* line 7, ../../site/scss/site-specific/_header.scss */
header .logo svg {
height: 20px;
}
/* line 9, ../../site/scss/site-specific/_header.scss */
header .logo svg * {
fill: #333;
}
/* line 2, ../../site/scss/site-specific/_footer.scss */
footer .container {
height: 6rem;
width: 100%;
max-width: 100%;
padding: 2.15rem;
}
@media only screen and (min-width: 600px) {
/* line 8, ../../site/scss/site-specific/_footer.scss */
footer a {
display: inline-block;
border: none;
}
}
/* line 15, ../../site/scss/site-specific/_footer.scss */
footer .inline-grid .inline-grid {
padding: 0;
}
@media only screen and (min-width: 600px) {
/* line 19, ../../site/scss/site-specific/_footer.scss */
footer .align-left {
text-align: left;
}
/* line 22, ../../site/scss/site-specific/_footer.scss */
footer .align-left a {
margin-right: 5%;
}
}
@media only screen and (min-width: 600px) {
/* line 27, ../../site/scss/site-specific/_footer.scss */
footer .align-right {
text-align: right;
}
/* line 30, ../../site/scss/site-specific/_footer.scss */
footer .align-right a {
margin-left: 5%;
}
}
/* line 1, ../../site/scss/site-specific/_home.scss */
.intro {
line-height: 1.4em;
height: 200px;
padding-bottom: .5rem;
min-height: 200px;
display: flex;
align-items: center;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@media only screen and (min-width: 450px) {
/* line 1, ../../site/scss/site-specific/_home.scss */
.intro {
max-height: none;
height: 33.333vh;
}
}
@media only screen and (min-width: 1000px) {
/* line 1, ../../site/scss/site-specific/_home.scss */
.intro {
min-height: 300px;
max-height: 600px;
height: 50vh;
}
}
/* line 18, ../../site/scss/site-specific/_home.scss */
.intro h1,
.intro h2 {
font-size: 1.4em;
line-height: 1.4em;
display: block;
letter-spacing: -.015em;
margin: 0;
}
@media only screen and (min-width: 450px) {
/* line 18, ../../site/scss/site-specific/_home.scss */
.intro h1,
.intro h2 {
font-size: 1.65rem;
}
}
@media only screen and (min-width: 600px) {
/* line 18, ../../site/scss/site-specific/_home.scss */
.intro h1,
.intro h2 {
font-size: 2rem;
}
}
/* line 32, ../../site/scss/site-specific/_home.scss */
.intro h2 {
opacity: .4;
}
/* line 37, ../../site/scss/site-specific/_home.scss */
.project-list {
margin-bottom: -5%;
padding-bottom: 5%;
}
/* line 40, ../../site/scss/site-specific/_home.scss */
.project-list li, .project-list.col {
position: relative;
margin-bottom: 5%;
}
@media only screen and (min-width: 450px) {
/* line 40, ../../site/scss/site-specific/_home.scss */
.project-list li, .project-list.col {
width: 50%;
}
}
@media only screen and (min-width: 1000px) {
/* line 40, ../../site/scss/site-specific/_home.scss */
.project-list li, .project-list.col {
width: 33.333%;
}
/* line 49, ../../site/scss/site-specific/_home.scss */
.project-list li.wide, .project-list.col.wide {
width: 66.666%;
}
}
@media only screen and (min-width: 1200px) {
/* line 58, ../../site/scss/site-specific/_home.scss */
.project-list li .project-thumb.padded .thumb-img-wrap, .project-list.col .project-thumb.padded .thumb-img-wrap {
top: 70px;
right: 70px;
bottom: 70px;
left: 70px;
}
}
@media only screen and (min-width: 1000px) {
/* line 68, ../../site/scss/site-specific/_home.scss */
.project-list li a,
.project-list li .dead-link, .project-list.col a,
.project-list.col .dead-link {
height: 60vh;
max-height: 350px;
}
}
@media only screen and (min-width: 1200px) {
/* line 68, ../../site/scss/site-specific/_home.scss */
.project-list li a,
.project-list li .dead-link, .project-list.col a,
.project-list.col .dead-link {
height: 60vh;
min-height: 350px;
max-height: 500px;
}
}
/* line 83, ../../site/scss/site-specific/_home.scss */
.project-thumb {
position: relative;
min-height: 250px;
display: block;
}
/* line 89, ../../site/scss/site-specific/_home.scss */
.project-thumb.padded .thumb-img-wrap {
position: absolute;
top: 15%;
right: 15%;
bottom: 15%;
left: 15%;
background-size: contain;
height: auto;
}
/* line 100, ../../site/scss/site-specific/_home.scss */
.project-thumb.contained .thumb-img-wrap {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-size: contain;
height: auto;
}
/* line 111, ../../site/scss/site-specific/_home.scss */
.project-thumb.bottom-right .thumb-img-wrap {
position: absolute;
top: 15%;
left: 15%;
right: 0;
bottom: 0;
background-size: contain;
background-position: bottom right;
height: auto;
}
@media only screen and (min-width: 1000px) {
/* line 111, ../../site/scss/site-specific/_home.scss */
.project-thumb.bottom-right .thumb-img-wrap {
top: 80px;
left: 80px;
}
}
/* line 126, ../../site/scss/site-specific/_home.scss */
.project-thumb a,
.project-thumb .dead-link {
display: block;
height: 250px;
width: 100%;
padding: 0;
margin: 0;
border: none;
position: relative;
}
/* line 136, ../../site/scss/site-specific/_home.scss */
.project-thumb a:hover + .project-title,
.project-thumb .dead-link:hover + .project-title {
border-color: #333;
}
/* line 141, ../../site/scss/site-specific/_home.scss */
.project-thumb .thumb-img-wrap {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
height: 100%;
}
/* line 146, ../../site/scss/site-specific/_home.scss */
.project-thumb .thumb-img-wrap img {
display: none;
}
/* line 150, ../../site/scss/site-specific/_home.scss */
.project-thumb .project-title {
font-size: 1em;
margin: .5em 0 0 0;
display: inline-block;
padding-bottom: 0;
border-bottom: 1px solid transparent;
transition: border 0.25s ease-in-out;
display: none;
}
/* line 161, ../../site/scss/site-specific/_home.scss */
.about {
padding: calc(5% * 1.15) 0;
min-height: calc(100vh - 6rem);
display: flex;
align-items: center;
}
/* line 166, ../../site/scss/site-specific/_home.scss */
.about .container {
max-width: 48em;
}
/* line 169, ../../site/scss/site-specific/_home.scss */
.about p {
font-size: 1.4em;
}
@media only screen and (min-width: 600px) {
/* line 169, ../../site/scss/site-specific/_home.scss */
.about p {
font-size: 1.5em;
}
}
@media only screen and (min-width: 1000px) {
/* line 169, ../../site/scss/site-specific/_home.scss */
.about p {
text-align: center;
}
}
/* line 177, ../../site/scss/site-specific/_home.scss */
.about p svg {
display: inline-block;
vertical-align: middle;
}
/* line 180, ../../site/scss/site-specific/_home.scss */
.about p svg.compstak {
margin: -3px 1px 0 3px;
}
/* line 183, ../../site/scss/site-specific/_home.scss */
.about p svg.dropsplash {
margin: -2px 6px 0 3px;
}
/* line 186, ../../site/scss/site-specific/_home.scss */
.about p svg.gordils-willis {
vertical-align: baseline;
margin-bottom: -1px;
}
/* line 1, ../../site/scss/site-specific/_project.scss */
.project.main {
clip: rect(0, auto, auto, 0);
}
/* line 6, ../../site/scss/site-specific/_project.scss */
.project-images *[class^="col"] {
margin-bottom: 5%;
}
@media only screen and (min-width: 600px) {
/* line 12, ../../site/scss/site-specific/_project.scss */
.project-images .col-6.no-gutter {
padding-left: 0 !important;
padding-right: 0 !important;
margin-left: -3px !important;
margin-right: -3px !important;
width: calc(50% - (5%/2 - 1px)) !important;
}
/* line 18, ../../site/scss/site-specific/_project.scss */
.project-images .col-6.no-gutter .web-layout,
.project-images .col-6.no-gutter .mobile {
padding: 12% 6% 12% 12%;
}
/* line 23, ../../site/scss/site-specific/_project.scss */
.project-images .col-6.no-gutter.on-right .web-layout,
.project-images .col-6.no-gutter.on-right .mobile {
padding: 12% 12% 12% 6%;
}
}
@media only screen and (min-width: 600px) {
/* line 34, ../../site/scss/site-specific/_project.scss */
.project-images .col-4.no-gutter {
padding-left: 0 !important;
padding-right: 0 !important;
margin-left: -3px !important;
margin-right: -3px !important;
width: calc(33.333% - 1.66667%) !important;
}
/* line 40, ../../site/scss/site-specific/_project.scss */
.project-images .col-4.no-gutter .web-layout,
.project-images .col-4.no-gutter .mobile {
padding: 18% 6% 18% 18%;
}
/* line 45, ../../site/scss/site-specific/_project.scss */
.project-images .col-4.no-gutter.on-right .web-layout,
.project-images .col-4.no-gutter.on-right .mobile {
padding: 18% 18% 18% 6%;
}
/* line 51, ../../site/scss/site-specific/_project.scss */
.project-images .col-4.no-gutter.in-middle .web-layout,
.project-images .col-4.no-gutter.in-middle .mobile {
padding: 18% 12%;
}
}
/* line 61, ../../site/scss/site-specific/_project.scss */
.project-images .image-block.web-layout, .project-images .image-block.mobile {
background: #ccc;
padding: 7%;
}
@media only screen and (min-width: 600px) {
/* line 61, ../../site/scss/site-specific/_project.scss */
.project-images .image-block.web-layout, .project-images .image-block.mobile {
padding: 12%;
}
}
/* line 68, ../../site/scss/site-specific/_project.scss */
.project-images .image-block.web-layout img, .project-images .image-block.web-layout video, .project-images .image-block.mobile img, .project-images .image-block.mobile video {
border-radius: 2px;
}
/* line 73, ../../site/scss/site-specific/_project.scss */
.project-images .image-block.mobile img, .project-images .image-block.mobile video {
max-height: 76vh;
}
/* line 77, ../../site/scss/site-specific/_project.scss */
.project-images .image-block img,
.project-images .image-block video {
display: block;
margin: 0 auto;
}
/* line 85, ../../site/scss/site-specific/_project.scss */
.project-images .logo img {
height: 80vh;
max-height: 800px;
} | 0.276788 | 0.054777 |
* {
margin: 0;
padding: 0;
}
html {
height: 100%;
}
body {
background-color: #000;
background-image: url(http://static1.ampify.it/gfx.bokehplex.jpg);
background-repeat: repeat;
font: 14px/19px Verdana, Verdana, Arial, sans-serif;
height: 100%;
width: 100%;
}
a, a:visited, a:hover, a:active, a:hover {
color: blue;
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
a.citation-reference {
text-decoration: none;
}
a.promote-fb, a.promote-fb:active, a.promote-fb:hover, a.promote-fb:visited {
background: url(http://static.ampify.it/gfx.share-facebook-sprite.png) no-repeat;
color: transparent;
display: block;
float: left;
height: 22px;
margin: 0 16px 0 0px;
outline; none;
overflow: hidden;
position: relative;
text-indent: 9999px !important;
top: -2px;
vertical-align: middle;
width: 146px;
}
a.promote-fb:hover {
background-position: 0 -22px;
}
a.promote-fb:active {
background-position: 0 -44px;
}
blockquote, p, dl, h1, h2, h3, h4, h5, h6, ol, ul {
padding-top: 0.5em;
padding-bottom: 0.5em;
}
code, .literal {
background-color: #f0f0f0;
border: 1px solid #dadada;
padding: 0px 2px;
font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace;
font-size: 12px;
}
dl, ol, ul {
padding-left: 20px;
}
h1 {
font-size: 2.25em;
}
h1, h2 {
color: #c32528;
font-family: "museo-1", "museo-2", Verdana;
letter-spacing: 1px;
text-shadow: #eee 2px 2px 3px;
}
h3 {
font-family: "museo-1", "museo-2", Verdana;
}
img {
border: 0;
}
label, input, select, textarea {
cursor: pointer;
}
pre {
background-color: #fff;
border: 1px solid #cacaca;
color: #101010;
font: 12px/1.4em Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace;
overflow: hidden;
padding: 7px 0 8px 7px;
margin: 10px 30px 0 30px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 7px #cacaca;
}
pre:hover {
overflow: auto;
}
pre.ascii-art {
line-height: 1em;
}
pre code {
background-color: transparent;
border: 0;
padding: 0;
}
pre.literal-block {
line-height: 1em;
}
select {
max-width: 200px;
}
strong {
font-family: "museo-1", "museo-2", Verdana;
font-size: 1.1em;
}
table, table.docutils {
border: 0;
border-collapse: collapse;
margin: 0 auto;
text-align: left;
}
table.docutils {
margin: 5px 30px 10px 10px;
}
/*
table a {
text-decoration: none;
}
*/
th {
border-bottom: 2px solid #808096;
padding: 8px;
}
table.docutils td {
border-bottom: 1px solid #ccc;
padding: 9px 8px 8px 8px;
}
table.citation {
margin: 0;
margin-top: 10px;
width: 100%;
}
table.citation td {
border: 0;
padding: 0;
}
table.citation td.label {
padding-right: 15px;
text-align: right;
width: 14em;
}
table.citation p {
padding: 0 !important;
}
table.citation a.fn-backref {
text-decoration: none;
font-style: italic;
color: #000;
}
ul {
list-style-type: circle;
}
/* ID styles */
#body {
background-color: #fff;
border-radius: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
padding: 5px;
}
#body-inner {
margin: 0 auto;
padding: 10px 20px 215px 20px;
width: 950px;
}
#body-outer {
height: 100%;
}
body > #body-outer {
height: auto;
min-height: 100%;
}
#content {
line-height: 1.55em;
}
#footer-espians {
margin: 0 auto;
text-align: center;
}
#footer {
background-color: #161616;
background-image: url(http://static.ampify.it/gfx.footer-background.png);
background-position: top left;
background-repeat: repeat-x;
clear: both;
color: #fff;
height: 200px;
margin-top: -200px;
position: relative;
text-align: center;
width: 100%;
min-width: 950px;
}
#footer-content {
margin: 0 auto;
padding-top: 15px;
text-align: center;
width: 950px;
}
#header {
width: 100%;
border-bottom: 1px dashed #9e9e9e;
margin-bottom: 10px;
}
#logo {
float: left;
}
#main {
float: left;
padding: 10px 30px 0 25px;
width: 610px;
line-height: 22px;
font-size: 0.9em;
}
#main blockquote {
padding-left: 20px;
}
#main h1, #main h2, #main h3 {
margin-left: -15px;
}
#main h1 {
font-size: 1.5em;
padding-top: 20px;
padding-bottom: 6px;
}
#main h1.title {
font-size: 1.8em;
padding-top: 0;
}
#main p {
padding-top: 10px;
}
#main pre {
font-size: 14px;
font-family: "inconsolata-1", "inconsolata-2", Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace;
}
#main ul, #main ol {
padding-left: 35px;
}
#main li {
padding-top: 5px;
}
#sidebar {
float: left;
width: 270px;
font-size: 0.9em;
line-height: 1.6em;
}
#sidebar a, #sidebar a:hover, #sidebar a:active, #sidebar a:visited {
text-decoration: none;
}
#sidebar a:hover {
text-decoration: underline;
}
#sidebar h3 {
text-align: right;
border-bottom: 1px solid #cacaca;
margin-bottom: 10px;
}
#sidebar ul {
list-style-type: none;
padding: 0;
margin: 0;
}
#sidebar li {
padding-bottom: 12px;
}
#sidebar li div, .sidebar-text {
color: #6e6e6e;
font-size: 0.9em;
}
#table-of-contents {
border: 1px solid #cacaca;
display: none;
float: left;
margin-top: 10px;
margin-right: 20px;
}
#table-of-contents .topic-title {
font-family: "refrigerator-deluxe-1", "refrigerator-deluxe-2", 'Lucida Grande', 'Lucida Sans Unicode', Optima, Verdana, sans-serif;
font-size: 1.5em;
padding: 10px 0 10px 10px;
}
#table-of-contents ul {
padding: 0 20px 15px 45px;
}
#main-support-page {
width: 540px;
margin: 0 auto;
}
#main-support-page pre {
width: 350px;
}
#menu ul {
list-style-type: none;
padding: 0;
}
#menu ul li {
background-color: #fff;
float: left;
margin-left: 12px;
text-align: center;
}
#menu a {
border-top: 2px solid #ccc;
color: #000;
display: block;
font-size: 18px;
padding-top: 6px;
padding-bottom: 8px;
text-decoration: none;
}
#menu a.selected, #menu a.selected:hover {
background-color: #f6f6f6;
border-top: 2px solid #a9151b;
}
#menu a:hover {
border-top: 2px solid #969696;
}
#menu-follow {
float: right;
}
#menu-follow div {
padding: 0 5px 5px 0;
}
#menu-lang {
margin: 0 105px 0 20px;
float: left;
text-align: right;
width: 140px;
}
#menu-lang select {
max-width: 120px;
}
#menu-lang-form {
display: none;
margin-top: 5px;
}
#menu-sub {
font-size: 1em;
padding-top: 10px;
text-align: center;
}
.menu-sub-sep {
color: #9f9f9f;
padding: 2px;
}
#spread-button {
background-color: #ffffff;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
padding: 5px;
}
/* Support site IDs */
#help-spread-the-word {
float: left;
}
/* Class styles */
.absmiddle {
vertical-align: middle;
}
/* align */
.align-right {
text-align: right;
}
.big {
font-size: 26px;
line-height: 32px;
font-family: "refrigerator-deluxe-1", "refrigerator-deluxe-2", Optima, sans-serif;
color: #1f1f1f;
}
.boxed {
border: 1px solid #cacaca;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 7px #cacaca;
margin-top: 10px;
}
.center {
text-align: center;
}
/* clear utility classes */
.clear {
background-color: transparent;
border: 0px solid;
clear: both;
height: 0;
margin: 0;
padding: 0;
width: 0;
}
.clear-left {
background-color: transparent;
border: 0px solid;
clear: left;
height: 0;
margin: 0;
padding: 0;
width: 0;
}
.clear-right {
background-color: transparent;
border: 0px solid;
clear: right;
height: 0;
margin: 0;
padding: 0;
width: 0;
}
/* clearfix */
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix {
display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
height: 1%;
}
.clearfix {
display: block;
}
/* End hide from IE-mac */
/* float utility classes */
.float-left {
float: left;
padding-bottom: 7px;
padding-right: 7px;
}
.float-right {
float: right;
padding-bottom: 7px;
padding-left: 7px;
}
/* footer classes */
.footer-follow {
margin: 0 45px 15px 0;
float: left;
}
.footer-follow a {
color: #fff;
text-decoration: underline;
font-size: 10px;
}
.footer-follow a:hover {
text-decoration: none;
}
.footer-follow div {
white-space: nowrap;
}
.footer-menu {
float: right;
margin: 17px 50px 0 0;
font-size: 9px;
}
.footer-menu a {
color: #fff;
padding-left: 5px;
padding-right: 5px;
text-decoration: none;
}
.footer-menu a:hover {
text-decoration: underline;
}
.footer-text {
text-align: left;
}
.lead-button a {
font-size: 30px;
text-decoration: none;
padding: 12px;
background-color: #fefafa;
color: #000;
font-family: "refrigerator-deluxe-1", "refrigerator-deluxe-2", 'Lucida Grande', 'Lucida Sans Unicode', Optima, Verdana, sans-serif;
float: left;
margin: 20px;
border: 1px solid #fefafa;
}
.lead-button a:hover {
border: 1px solid #d83235;
background-color: #d83235;
color: #fff;
}
.wf-inactive .lead-button a {
font-size: 24px;
margin: 10px;
padding: 9px;
}
/* math-like variables */
.math cite {
font-size: 1.4em;
padding: 4px;
}
/* quoted blocks with attribution */
.quote {
background: transparent url(http://static.ampify.it/gfx.blockquote.gif) no-repeat 0 0;
padding: 6px 12px 0 40px;
color: #575757;
font-size: 22px;
line-height: 28px;
}
.quote-attribution {
color: #575757;
font-size: 14px;
text-align: right;
padding: 10px 12px 10px 0;
}
.quote-attribution a, .quote-attribution a:active, .quote-attribution a:visited {
color: #575757;
text-decoration: underline;
}
.quote-attribution a:hover {
text-decoration: none;
}
/* sidebox */
.sidebox {
background-color: #efc4c5;
float: right;
font-family: "refrigerator-deluxe-1", "refrigerator-deluxe-2", 'Lucida Grande', 'Lucida Sans Unicode', Optima, Verdana, sans-serif;
font-size: 1.5em;
margin-left: 10px;
margin-top: 10px;
padding: 10px 8px 10px 12px;
text-align: left;
width: 175px;
}
/* Source code syntax highlighting */
.syntax {
line-height: 14px;
}
.syntax .c { color: #919191 } /* Comment */
.syntax .cm { color: #919191 } /* Comment.Multiline */
.syntax .cp { color: #919191 } /* Comment.Preproc */
.syntax .cs { color: #919191 } /* Comment.Special */
.syntax .c1 { color: #919191 } /* Comment.Single */
.syntax .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.syntax .g { color: #101010 } /* Generic */
.syntax .gd { color: #d22323 } /* Generic.Deleted */
.syntax .ge { color: #101010; font-style: italic } /* Generic.Emph */
.syntax .gh { color: #101010 } /* Generic.Heading */
.syntax .gi { color: #589819 } /* Generic.Inserted */
.syntax .go { color: #6a6a6a } /* Generic.Output */
.syntax .gp { color: #6a6a6a } /* Generic.Prompt */
.syntax .gr { color: #d22323 } /* Generic.Error */
.syntax .gs { color: #101010 } /* Generic.Strong */
.syntax .gt { color: #d22323 } /* Generic.Traceback */
.syntax .gu { color: #101010 } /* Generic.Subheading */
.syntax .k { color: #c32528 } /* Keyword */ /* espian red */
.syntax .k { color: #ff5600 } /* Keyword */ /* orangy */
.syntax .kc { color: #ff5600 } /* Keyword.Constant */
.syntax .kd { color: #ff5600 } /* Keyword.Declaration */
.syntax .kd { color: #ff5600 } /* Keyword.Declaration */
.syntax .kn { color: #ff5600 } /* Keyword */
.syntax .kp { color: #ff5600 } /* Keyword.Pseudo */
.syntax .kr { color: #ff5600 } /* Keyword.Reserved */
.syntax .kt { color: #ff5600 } /* Keyword.Type */
.syntax .l { color: #101010 } /* Literal */
.syntax .ld { color: #101010 } /* Literal.Date */
.syntax .m { color: #3677a9 } /* Literal.Number */ /* darkish pastely blue */
.syntax .m { color: #00a33f } /* Literal.Number */ /* brightish green */
.syntax .m { color: #1550a2 } /* Literal.Number */ /* darker blue */
.syntax .m { color: #5d90cd } /* Literal.Number */ /* pastely blue */
.syntax .mf { color: #5d90cd } /* Literal.Number.Float */
.syntax .mh { color: #5d90cd } /* Literal.Number.Hex */
.syntax .mi { color: #5d90cd } /* Literal.Number.Integer */
.syntax .il { color: #5d90cd } /* Literal.Number.Integer.Long */
.syntax .mo { color: #5d90cd } /* Literal.Number.Oct */
.syntax .bp { color: #a535ae } /* Name.Builtin.Pseudo */
.syntax .n { color: #101010 } /* Name */
.syntax .na { color: #bbbbbb } /* Name.Attribute */
.syntax .nb { color: #bf78cc } /* Name.Builtin */ /* pastely purple */
.syntax .nb { color: #af956f } /* Name.Builtin */ /* pastely light brown */
.syntax .nb { color: #a535ae } /* Name.Builtin */ /* brightish pastely purple */
.syntax .nc { color: #101010 } /* Name.Class */
.syntax .nd { color: #6d8091 } /* Name.Decorator */
.syntax .ne { color: #af956f } /* Name.Exception */
.syntax .nf { color: #3677a9 } /* Name.Function */
.syntax .nf { color: #1550a2 } /* Name.Function */
.syntax .ni { color: #101010 } /* Name.Entity */
.syntax .nl { color: #101010 } /* Name.Label */
.syntax .nn { color: #101010 } /* Name.Namespace */
.syntax .nn { color: #101010 } /* Name.Namespace */
.syntax .no { color: #101010 } /* Name.Constant */
.syntax .nx { color: #101010 } /* Name.Other */
.syntax .nt { color: #6d8091 } /* Name.Tag */
.syntax .nv { color: #101010 } /* Name.Variable */
.syntax .vc { color: #101010 } /* Name.Variable.Class */
.syntax .vg { color: #101010 } /* Name.Variable.Global */
.syntax .vi { color: #101010 } /* Name.Variable.Instance */
.syntax .py { color: #101010 } /* Name.Property */
.syntax .o { color: #ff5600 } /* Operator */ /* orangy */
.syntax .o { color: #101010 } /* Operator */
.syntax .ow { color: #101010 } /* Operator.Word */
.syntax .p { color: #101010 } /* Punctuation */
.syntax .s { color: #dd1144 } /* Literal.String */ /* darkish red */
.syntax .s { color: #c32528 } /* Literal.String */ /* espian red */
.syntax .s { color: #39946a } /* Literal.String */ /* pastely greeny */
.syntax .s { color: #5d90cd } /* Literal.String */ /* pastely blue */
.syntax .s { color: #00a33f } /* Literal.String */ /* brightish green */
.syntax .sb { color: #00a33f } /* Literal.String.Backtick */
.syntax .sc { color: #00a33f } /* Literal.String.Char */
.syntax .sd { color: #00a33f } /* Literal.String.Doc */
.syntax .se { color: #00a33f } /* Literal.String.Escape */
.syntax .sh { color: #00a33f } /* Literal.String.Heredoc */
.syntax .si { color: #00a33f } /* Literal.String.Interpol */
.syntax .sr { color: #00a33f } /* Literal.String.Regex */
.syntax .ss { color: #00a33f } /* Literal.String.Symbol */
.syntax .sx { color: #00a33f } /* Literal.String.Other */
.syntax .s1 { color: #00a33f } /* Literal.String.Single */
.syntax .s2 { color: #00a33f } /* Literal.String.Double */
.syntax .w { color: #101010 } /* Text.Whitespace */
.syntax .x { color: #101010 } /* Other */
.syntax.bash .err { color: #000; background-color: transparent; }
.syntax.bash .k { color: #000 }
.syntax.bash .nb { color: #101010 }
.syntax.bash .nv { color: #c32528 }
.syntax.css .k { color: #606060 }
.syntax.css .nc { color: #c32528 }
.syntax.css .nf { color: #c32528 }
.syntax.css .nt { color: #c32528 }
.syntax.ini .na { color: #000 }
.syntax.rst .k { color: #5d90cd }
.syntax.rst .ow { color: #5d90cd }
.syntax.rst .p { color: #5d90cd }
.syntax.yaml .l-Scalar-Plain { color: #5d90cd }
.syntax.yaml .p-Indicator { color: #101010 }
/* classes for support pages */
.community-section {
margin: 10px auto 10px auto;
width: 500px;
}
.community-section-heading {
font-size: 1.6em;
margin-top: 10px;
}
.community-section-heading span {
background-color: #efd7d7;
line-height: 1.7em;
}
.community-section-text {
line-height: 1.6em;
padding: 10px 0 0 50px;
}
.support-page-banner {
font-size: 1.2em;
line-height: 1.6em;
margin: 20px 0;
}
.support-page-banner-text {
background-color: #f0f0f0;
}
/* classes for the main support page */
.promote {
margin: 5px 0 0px 26px;
}
.promote-retweet {
margin-top: 2px;
float: left;
}
.promote-yahoo-buzz {
margin: -2px 15px 0 0;
float: left;
padding-bottom: 5px;
}
.promote-google-buzz, .promote-google-buzz:active, .promote-google-buzz:visited, .promote-google-buzz:hover {
background: url(http://static.ampify.it/icon.google-buzz.png) no-repeat 0 3px;
color: #666;
float: left;
font-size: 0.9em;
font-weight: bold;
margin-top: -2px;
padding: 0 10px 5px 20px;
text-decoration: none;
}
.promote-google-buzz:hover {
text-decoration: underline;
}
.share-text {
font-size: 18px;
line-height: 24px;
margin: 0px 0 12px 26px;
color: #aaa;
}
/* thanks to mashable.com for these wonderful share icons + css!! thanks guys -- you rock!! */
ul.share-buttons {
line-height: normal;
margin: 12px 0 0 24px;
padding: 0;
}
.share-buttons li {
display: inline;
float: left;
list-style-type: none;
margin: 0 18px 12px 0;
padding-top: 1px;
}
.share-buttons a {
background: url(http://static.ampify.it/gfx.mashable-syndication.gif) no-repeat;
color: #575757;
display: block;
font-size: 7px;
height: 14px;
overflow: hidden;
padding: 33px 0 0;
text-align: center;
text-decoration: none;
white-space: nowrap;
width: 46px;
}
.share-buttons a:hover {
text-decoration:none;
}
.share-buttons .delicious a {
background-position: -138px 0;
}
.share-buttons .delicious a:hover {
background-position: -138px -47px;
}
.share-buttons .digg a {
background-position: 0 0;
}
.share-buttons .digg a:hover {
background-position: 0 -47px;
}
.share-buttons .facebook a {
background-position: -184px 0;
}
.share-buttons .facebook a:hover {
background-position: -184px -47px;
}
.share-buttons .google a {
background-position: -276px 0;
}
.share-buttons .google a:hover {
background-position: -276px -47px;
}
.share-buttons .myspace a {
background-position: -230px 0;
}
.share-buttons .myspace a:hover {
background-position: -230px -47px;
}
.share-buttons .reddit a {
background-position: -414px 0;
}
.share-buttons .reddit a:hover {
background-position: -414px -47px;
}
.share-buttons .sharethis a {
background-position: -460px 0;
}
.share-buttons .sharethis a:hover {
background-position: -460px -47px;
}
.share-buttons .stumbleupon a {
background-position: -92px 0;
}
.share-buttons .stumbleupon a:hover {
background-position: -92px -47px;
}
.share-buttons .technorati a {
background-position: -322px 0;
}
.share-buttons .technorati a:hover {
background-position: -322px -47px;
}
.share-buttons .twitter a {
background-position: -46px 0;
}
.share-buttons .twitter a:hover {
background-position: -46px -47px;
}
.share-buttons .yahoo a {
background-position: -368px 0;
}
.share-buttons .yahoo a:hover {
background-position: -368px -47px;
}
/* Unsorted */
.columns {
max-width: 940px;
width: 940px;
}
.column, .column-last {
float: left;
/*
height: 180px;
*/
padding: 0 10px 0 0;
position: relative;
width: 227px;
}
.column-last {
padding: 0 0 0 0;
}
.column-text {
font-size: 12px;
line-height: 18px;
margin: 10px 0 20px 15px;
}
.column-footer {
background-image: url(bottom.gif);
background-repeat: no-repeat;
background-color: transparent;
/*
background-attachment: scroll;
*/
}
.column-left {
border-right: 0px solid #f00;
float: left;
width: 455px;
}
.column-left-text {
font-size: 12px;
line-height: 18px;
margin-left: 12px;
}
.column-right {
float: right;
width: 485px;
}
.follow {
display: block;
list-style-type: none;
margin: 12px 0px 0px 24px;
padding: 0px;
text-align: center;
}
.follow li {
float: left;
display: block;
margin-right: 30px;
margin-bottom: 18px;
}
.follow a {
color: #575757;
display: block;
font-size: 10px;
margin-top: 7px;
text-decoration: underline;
text-decoration: none;
font-weight: bold;
}
.follow a:hover {
text-decoration: none;
}
.get-left {
float: left;
width: 230px;
margin-right: 12px;
font-weight: bold;
}
.get-right {
float: right;
width: 230px;
margin-right: 12px;
font-weight: bold;
}
.get-item {
border: 1px solid #ccc;
border-radius: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
margin-top: 10px;
font-weight: normal;
margin: 12px 0 12px 0;
padding: 10px;
}
.get-item img {
float: left;
margin-right: 5px;
padding-top: 3px;
vertical-align: middle;
}
.headline {
margin-bottom: 10px;
text-align: center;
line-height: 36px;
}
.headline-text {
background-color: #f0f0f0;
font-size: 20px;
}
.headline-text-small {
background-color: #f0f0f0;
font-size: 20px;
}
.lede {
background-color: #dfdfdf;
}
.link {
font-size: 16px;
}
.oneoff {
margin: 12px 12px 12px 0;
font-size: 14px;
line-height: 20px;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
padding: 12px 0 12px 0;
}
.optional {
color: #666;
font-size: 9px;
vertical-align: super;
}
/* other */
#callout {
background-color: #fff;
margin-bottom: 10px;
/*
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
-moz-border-radius-bottomleft: 15px;
-moz-border-radius-bottomright: 15px;
-webkit-border-bottom-left-radius: 15px;
-webkit-border-bottom-right-radius: 15px;
*/
padding: 10px;
}
#feature {
float: right;
}
#supporter-form {
font-size: 14px;
line-height: 26px;
margin: 8px 0 0 0;
padding-top: 5px;
}
#supporter-form td {
padding-top: 10px;
vertical-align: top;
}
#supporter-form .label {
text-align: right;
width: 205px;
padding-right: 10px;
padding-left: 10px;
font-size: 12px;
font-weight: bold;
white-space: nowrap;
}
.input-item input, .input-item textarea {
/* thanks soundcloud! */
background-image: url(http://static.ampify.it/gfx.button-repeat.png);
background-position: 0 -1200px;
background-repeat: repeat-x;
border: 1px solid #ccc;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
color: #333;
font-size: 20px;
max-width: 220px;
padding: 3px 0 3px 3px;
width: 220px;
}
.input-item select {
font-size: 16px;
}
.male {
border: 2px solid #70b1e6;
background-color: #eaf3fb;
}
.male .label {
color: #70b1e6;
}
.female {
border: 2px solid #ed6aa4;
background-color: #fee5f5;
}
.female .label {
color: #ed6aa4;
}
#supporter-submit {
text-align: center;
padding: 0 0 15px 0;
}
#support {
font-size: 20px;
margin-bottom: 15px;
margin-top: 5px;
}
.male-counter {
color: #70b1e6;
font-size: 12px;
margin-bottom: -50px;
white-space: nowrap;
}
.female-counter {
color: #ed6aa4;
font-size: 12px;
padding-left: 24px;
margin-bottom: -50px;
white-space: nowrap;
}
.tav-thanks {
font-size: 14px;
line-height: 26px;
margin: 12px 12px 12px 0;
color: #575757;
color: #000;
font-style: italic;
}
.tav-thanks img {
float: right;
margin-left: 12px;
}
.tav-thanks div {
text-align: right;
font-size: 12px;
line-height: 20px;
margin-top: 12px;
}
/*
.tav-thanks a {
color: #000;
text-decoration: underline;
}
.tav-thanks a:hover {
text-decoration: none;
}
*/
.the-disqus-section {
margin: 12px 12px 12px 0;
min-height: 500px;
}
.the-disqus-section h3 {
margin-top: 10px;
margin-bottom: 12px;
font-size: 20px;
}
.action-items {
font-size: 14px;
line-height: 26px;
margin: 10px 24px; 20px 24px;
}
.action-left {
float: left;
margin-right: 20px;
}
.action-link {
margin-top: 20px;
}
.action-text {
margin-top: 20px;
}
/* plan file related css */
a.button {
background: transparent url('http://static.ampify.it/gfx.bg-button-a.gif') no-repeat scroll top right;
color: #444;
display: block;
float: left;
font: normal 12px arial, sans-serif;
height: 24px;
margin-right: 6px;
padding-right: 18px; /* sliding doors padding */
text-decoration: none;
}
a.button span {
background: transparent url('http://static.ampify.it/gfx.bg-button-span.gif') no-repeat;
display: block;
line-height: 14px;
padding: 5px 0 5px 18px;
}
a.button:active {
background-position: bottom right;
color: #000;
outline: none; /* hide dotted outline in Firefox */
}
a.button:active span {
background-position: bottom left;
padding: 6px 0 4px 18px; /* push text down 1px */
}
a.buttondown {
background: transparent url('http://static.ampify.it/gfx.bg-button-a.gif') no-repeat scroll top right;
color: #444;
display: block;
float: left;
font: normal 12px arial, sans-serif;
height: 24px;
margin-right: 6px;
padding-right: 18px; /* sliding doors padding */
text-decoration: none;
background-position: bottom right;
color: #000;
outline: none; /* hide dotted outline in Firefox */
}
a.buttondown span {
background: transparent url('http://static.ampify.it/gfx.bg-button-span.gif') no-repeat;
display: block;
line-height: 14px;
padding: 5px 0 5px 18px;
background-position: bottom left;
padding: 6px 0 4px 18px; /* push text down 1px */
}
.tag-segment {
text-align: right;
}
.tag-segment span {
color: #fff;
padding: 0.5em;
font-size: 0.7em;
}
.tag-link, .tag-link:active, .tag-link:hover, .tag-link:visited {
text-decoration: none;
color: #000;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 0.8em;
}
.tag {
background-color: #696969;
}
.tag-val-done {
background-color: #007f16;
background-color: #00782d;
background-color: #006400;
}
.tag-val-needsreview {
background-color: #a4ff00; /* bright lime-ish green */
background-color: #ffe2ff;
color: #000 !important;
}
.tag-val-inreview {
background-color: #3056bf;
}
.tag-val-todo {
background-color: #a60c00;
background-color: #d0006e;
background-color: #8B0000;
}
.tag-val-wip {
background-color: #ff550f; /* orange */
background-color: #b1f2ec;
color: #000 !important;
}
.tag-type-1 {
}
.tag-type-2 { /* #hashtags */
background-color: #2a4580;
background-color: #696969;
}
.tag-type-dep {
display: none;
}
.tag-type-milestone {
background-color: #00008B;
background-color: #06276f;
background-color: #a4ff00; /* nice colour! */
/* color: #000 !important; */
background-color: #002ca6;
background-color: #3056bf;
background-color: #898989;
}
.tag-type-priority {
background-color: #481254;
}
.tag-type-zuser {
background-color: #4573d5;
background-color: #696969;
background-color: #3056bf;
}
#plan-tags a, #site-tags a {
margin-bottom: 0.7em;
}
#plan-container {
margin-top: 1.2em;
margin-bottom: 2.4em;
}
.plan-help {
font-size: 0.9em;
font-weight: bold;
margin-bottom: 1.4em;
text-align: right;
}
.container {
padding-left: 0px;
}
.container blockquote {
padding: 0 0 0 30px;
}
.container > p:first-child {
font-weight: bold;
font-family: "museo-1", "museo-2", Verdana;
padding-bottom: 0;
}
.container > p:first-child em {
font-weight: bold;
font-family: Verdana, sans-serif;
margin-right: 7px;
font-style: normal;
}
/* ignore this support */
#ignore-this {
display: none !important;
}
/* doctest */
.doctest-output {
color: #a5504d;
color: #c32528;
}
.doctest-input {
color: #0d5d04;
color: #00a33f;
color: #6a6a6a;
color: #5d90cd;
}
/* permalinks */
td.code-docs .permawrap {
position: relative;
}
td.code-docs .permalink {
font: 12px/1em 'Lucida Grande', 'Lucida Sans Unicode', Optima, Verdana, sans-serif;
text-decoration: none;
color: #959595;
color: #efc4c5;
color: #c32528;
position: absolute;
top: 11px; left: -10px;
padding-top: 3px;
opacity: 0;
-webkit-transition: opacity 0.2s linear;
}
td.code-docs .permalink:hover {
text-decoration: underline;
color: #454545;
}
td.code-docs:hover .permalink {
opacity: 1;
}
/* source code generator */
td.code-docs, td.code-source {
margin: 0;
padding: 0;
vertical-align: top;
text-align: left;
}
td.code-docs {
max-width: 550px;
min-width: 550px;
font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
font-size: 16px;
line-height: 24px;
color: #252519;
padding-right: 10px;
padding-left: 10px;
}
td.code-docs h1, td.code-docs h2 {
padding-top: 10px !important;
padding-bottom: 10px !important;
}
td.code-docs h1.title {
font-size: 1.5em !important;
}
td.code-docs h1 {
font-size: 1.25em !important;
}
td.code-docs pre {
font-size: 12px !important;
font-family: Monaco, Consolas, "Lucida Console", monospace !important;
margin: 10px 5px 10px 0px;
}
td.code-source {
max-width: 620px;
min-width: 620px;
background-color: #f8f8ff;
border-left: 1px solid #dedede;
border-left: 1px solid #aeaeae;
}
td.code-source pre {
font-size: 12px !important;
font-family: Monaco, Consolas, "Lucida Console", monospace !important;
margin: 10px 0 0 10px;
background-color: transparent;
border: 0;
color: #101010;
overflow: auto;
padding: 1em 0 0 10px;
margin: 0;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border-radius: 0px;
-webkit-box-shadow: 0px 0px 0px transparent;
}
#code-logo {
float: right;
padding-top: 5px;
}
#code-docs-listing blockquote {
padding: 10px 20px;
} | doc/website/css/site.css | * {
margin: 0;
padding: 0;
}
html {
height: 100%;
}
body {
background-color: #000;
background-image: url(http://static1.ampify.it/gfx.bokehplex.jpg);
background-repeat: repeat;
font: 14px/19px Verdana, Verdana, Arial, sans-serif;
height: 100%;
width: 100%;
}
a, a:visited, a:hover, a:active, a:hover {
color: blue;
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
a.citation-reference {
text-decoration: none;
}
a.promote-fb, a.promote-fb:active, a.promote-fb:hover, a.promote-fb:visited {
background: url(http://static.ampify.it/gfx.share-facebook-sprite.png) no-repeat;
color: transparent;
display: block;
float: left;
height: 22px;
margin: 0 16px 0 0px;
outline; none;
overflow: hidden;
position: relative;
text-indent: 9999px !important;
top: -2px;
vertical-align: middle;
width: 146px;
}
a.promote-fb:hover {
background-position: 0 -22px;
}
a.promote-fb:active {
background-position: 0 -44px;
}
blockquote, p, dl, h1, h2, h3, h4, h5, h6, ol, ul {
padding-top: 0.5em;
padding-bottom: 0.5em;
}
code, .literal {
background-color: #f0f0f0;
border: 1px solid #dadada;
padding: 0px 2px;
font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace;
font-size: 12px;
}
dl, ol, ul {
padding-left: 20px;
}
h1 {
font-size: 2.25em;
}
h1, h2 {
color: #c32528;
font-family: "museo-1", "museo-2", Verdana;
letter-spacing: 1px;
text-shadow: #eee 2px 2px 3px;
}
h3 {
font-family: "museo-1", "museo-2", Verdana;
}
img {
border: 0;
}
label, input, select, textarea {
cursor: pointer;
}
pre {
background-color: #fff;
border: 1px solid #cacaca;
color: #101010;
font: 12px/1.4em Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace;
overflow: hidden;
padding: 7px 0 8px 7px;
margin: 10px 30px 0 30px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 7px #cacaca;
}
pre:hover {
overflow: auto;
}
pre.ascii-art {
line-height: 1em;
}
pre code {
background-color: transparent;
border: 0;
padding: 0;
}
pre.literal-block {
line-height: 1em;
}
select {
max-width: 200px;
}
strong {
font-family: "museo-1", "museo-2", Verdana;
font-size: 1.1em;
}
table, table.docutils {
border: 0;
border-collapse: collapse;
margin: 0 auto;
text-align: left;
}
table.docutils {
margin: 5px 30px 10px 10px;
}
/*
table a {
text-decoration: none;
}
*/
th {
border-bottom: 2px solid #808096;
padding: 8px;
}
table.docutils td {
border-bottom: 1px solid #ccc;
padding: 9px 8px 8px 8px;
}
table.citation {
margin: 0;
margin-top: 10px;
width: 100%;
}
table.citation td {
border: 0;
padding: 0;
}
table.citation td.label {
padding-right: 15px;
text-align: right;
width: 14em;
}
table.citation p {
padding: 0 !important;
}
table.citation a.fn-backref {
text-decoration: none;
font-style: italic;
color: #000;
}
ul {
list-style-type: circle;
}
/* ID styles */
#body {
background-color: #fff;
border-radius: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
padding: 5px;
}
#body-inner {
margin: 0 auto;
padding: 10px 20px 215px 20px;
width: 950px;
}
#body-outer {
height: 100%;
}
body > #body-outer {
height: auto;
min-height: 100%;
}
#content {
line-height: 1.55em;
}
#footer-espians {
margin: 0 auto;
text-align: center;
}
#footer {
background-color: #161616;
background-image: url(http://static.ampify.it/gfx.footer-background.png);
background-position: top left;
background-repeat: repeat-x;
clear: both;
color: #fff;
height: 200px;
margin-top: -200px;
position: relative;
text-align: center;
width: 100%;
min-width: 950px;
}
#footer-content {
margin: 0 auto;
padding-top: 15px;
text-align: center;
width: 950px;
}
#header {
width: 100%;
border-bottom: 1px dashed #9e9e9e;
margin-bottom: 10px;
}
#logo {
float: left;
}
#main {
float: left;
padding: 10px 30px 0 25px;
width: 610px;
line-height: 22px;
font-size: 0.9em;
}
#main blockquote {
padding-left: 20px;
}
#main h1, #main h2, #main h3 {
margin-left: -15px;
}
#main h1 {
font-size: 1.5em;
padding-top: 20px;
padding-bottom: 6px;
}
#main h1.title {
font-size: 1.8em;
padding-top: 0;
}
#main p {
padding-top: 10px;
}
#main pre {
font-size: 14px;
font-family: "inconsolata-1", "inconsolata-2", Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace;
}
#main ul, #main ol {
padding-left: 35px;
}
#main li {
padding-top: 5px;
}
#sidebar {
float: left;
width: 270px;
font-size: 0.9em;
line-height: 1.6em;
}
#sidebar a, #sidebar a:hover, #sidebar a:active, #sidebar a:visited {
text-decoration: none;
}
#sidebar a:hover {
text-decoration: underline;
}
#sidebar h3 {
text-align: right;
border-bottom: 1px solid #cacaca;
margin-bottom: 10px;
}
#sidebar ul {
list-style-type: none;
padding: 0;
margin: 0;
}
#sidebar li {
padding-bottom: 12px;
}
#sidebar li div, .sidebar-text {
color: #6e6e6e;
font-size: 0.9em;
}
#table-of-contents {
border: 1px solid #cacaca;
display: none;
float: left;
margin-top: 10px;
margin-right: 20px;
}
#table-of-contents .topic-title {
font-family: "refrigerator-deluxe-1", "refrigerator-deluxe-2", 'Lucida Grande', 'Lucida Sans Unicode', Optima, Verdana, sans-serif;
font-size: 1.5em;
padding: 10px 0 10px 10px;
}
#table-of-contents ul {
padding: 0 20px 15px 45px;
}
#main-support-page {
width: 540px;
margin: 0 auto;
}
#main-support-page pre {
width: 350px;
}
#menu ul {
list-style-type: none;
padding: 0;
}
#menu ul li {
background-color: #fff;
float: left;
margin-left: 12px;
text-align: center;
}
#menu a {
border-top: 2px solid #ccc;
color: #000;
display: block;
font-size: 18px;
padding-top: 6px;
padding-bottom: 8px;
text-decoration: none;
}
#menu a.selected, #menu a.selected:hover {
background-color: #f6f6f6;
border-top: 2px solid #a9151b;
}
#menu a:hover {
border-top: 2px solid #969696;
}
#menu-follow {
float: right;
}
#menu-follow div {
padding: 0 5px 5px 0;
}
#menu-lang {
margin: 0 105px 0 20px;
float: left;
text-align: right;
width: 140px;
}
#menu-lang select {
max-width: 120px;
}
#menu-lang-form {
display: none;
margin-top: 5px;
}
#menu-sub {
font-size: 1em;
padding-top: 10px;
text-align: center;
}
.menu-sub-sep {
color: #9f9f9f;
padding: 2px;
}
#spread-button {
background-color: #ffffff;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
padding: 5px;
}
/* Support site IDs */
#help-spread-the-word {
float: left;
}
/* Class styles */
.absmiddle {
vertical-align: middle;
}
/* align */
.align-right {
text-align: right;
}
.big {
font-size: 26px;
line-height: 32px;
font-family: "refrigerator-deluxe-1", "refrigerator-deluxe-2", Optima, sans-serif;
color: #1f1f1f;
}
.boxed {
border: 1px solid #cacaca;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 7px #cacaca;
margin-top: 10px;
}
.center {
text-align: center;
}
/* clear utility classes */
.clear {
background-color: transparent;
border: 0px solid;
clear: both;
height: 0;
margin: 0;
padding: 0;
width: 0;
}
.clear-left {
background-color: transparent;
border: 0px solid;
clear: left;
height: 0;
margin: 0;
padding: 0;
width: 0;
}
.clear-right {
background-color: transparent;
border: 0px solid;
clear: right;
height: 0;
margin: 0;
padding: 0;
width: 0;
}
/* clearfix */
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix {
display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
height: 1%;
}
.clearfix {
display: block;
}
/* End hide from IE-mac */
/* float utility classes */
.float-left {
float: left;
padding-bottom: 7px;
padding-right: 7px;
}
.float-right {
float: right;
padding-bottom: 7px;
padding-left: 7px;
}
/* footer classes */
.footer-follow {
margin: 0 45px 15px 0;
float: left;
}
.footer-follow a {
color: #fff;
text-decoration: underline;
font-size: 10px;
}
.footer-follow a:hover {
text-decoration: none;
}
.footer-follow div {
white-space: nowrap;
}
.footer-menu {
float: right;
margin: 17px 50px 0 0;
font-size: 9px;
}
.footer-menu a {
color: #fff;
padding-left: 5px;
padding-right: 5px;
text-decoration: none;
}
.footer-menu a:hover {
text-decoration: underline;
}
.footer-text {
text-align: left;
}
.lead-button a {
font-size: 30px;
text-decoration: none;
padding: 12px;
background-color: #fefafa;
color: #000;
font-family: "refrigerator-deluxe-1", "refrigerator-deluxe-2", 'Lucida Grande', 'Lucida Sans Unicode', Optima, Verdana, sans-serif;
float: left;
margin: 20px;
border: 1px solid #fefafa;
}
.lead-button a:hover {
border: 1px solid #d83235;
background-color: #d83235;
color: #fff;
}
.wf-inactive .lead-button a {
font-size: 24px;
margin: 10px;
padding: 9px;
}
/* math-like variables */
.math cite {
font-size: 1.4em;
padding: 4px;
}
/* quoted blocks with attribution */
.quote {
background: transparent url(http://static.ampify.it/gfx.blockquote.gif) no-repeat 0 0;
padding: 6px 12px 0 40px;
color: #575757;
font-size: 22px;
line-height: 28px;
}
.quote-attribution {
color: #575757;
font-size: 14px;
text-align: right;
padding: 10px 12px 10px 0;
}
.quote-attribution a, .quote-attribution a:active, .quote-attribution a:visited {
color: #575757;
text-decoration: underline;
}
.quote-attribution a:hover {
text-decoration: none;
}
/* sidebox */
.sidebox {
background-color: #efc4c5;
float: right;
font-family: "refrigerator-deluxe-1", "refrigerator-deluxe-2", 'Lucida Grande', 'Lucida Sans Unicode', Optima, Verdana, sans-serif;
font-size: 1.5em;
margin-left: 10px;
margin-top: 10px;
padding: 10px 8px 10px 12px;
text-align: left;
width: 175px;
}
/* Source code syntax highlighting */
.syntax {
line-height: 14px;
}
.syntax .c { color: #919191 } /* Comment */
.syntax .cm { color: #919191 } /* Comment.Multiline */
.syntax .cp { color: #919191 } /* Comment.Preproc */
.syntax .cs { color: #919191 } /* Comment.Special */
.syntax .c1 { color: #919191 } /* Comment.Single */
.syntax .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.syntax .g { color: #101010 } /* Generic */
.syntax .gd { color: #d22323 } /* Generic.Deleted */
.syntax .ge { color: #101010; font-style: italic } /* Generic.Emph */
.syntax .gh { color: #101010 } /* Generic.Heading */
.syntax .gi { color: #589819 } /* Generic.Inserted */
.syntax .go { color: #6a6a6a } /* Generic.Output */
.syntax .gp { color: #6a6a6a } /* Generic.Prompt */
.syntax .gr { color: #d22323 } /* Generic.Error */
.syntax .gs { color: #101010 } /* Generic.Strong */
.syntax .gt { color: #d22323 } /* Generic.Traceback */
.syntax .gu { color: #101010 } /* Generic.Subheading */
.syntax .k { color: #c32528 } /* Keyword */ /* espian red */
.syntax .k { color: #ff5600 } /* Keyword */ /* orangy */
.syntax .kc { color: #ff5600 } /* Keyword.Constant */
.syntax .kd { color: #ff5600 } /* Keyword.Declaration */
.syntax .kd { color: #ff5600 } /* Keyword.Declaration */
.syntax .kn { color: #ff5600 } /* Keyword */
.syntax .kp { color: #ff5600 } /* Keyword.Pseudo */
.syntax .kr { color: #ff5600 } /* Keyword.Reserved */
.syntax .kt { color: #ff5600 } /* Keyword.Type */
.syntax .l { color: #101010 } /* Literal */
.syntax .ld { color: #101010 } /* Literal.Date */
.syntax .m { color: #3677a9 } /* Literal.Number */ /* darkish pastely blue */
.syntax .m { color: #00a33f } /* Literal.Number */ /* brightish green */
.syntax .m { color: #1550a2 } /* Literal.Number */ /* darker blue */
.syntax .m { color: #5d90cd } /* Literal.Number */ /* pastely blue */
.syntax .mf { color: #5d90cd } /* Literal.Number.Float */
.syntax .mh { color: #5d90cd } /* Literal.Number.Hex */
.syntax .mi { color: #5d90cd } /* Literal.Number.Integer */
.syntax .il { color: #5d90cd } /* Literal.Number.Integer.Long */
.syntax .mo { color: #5d90cd } /* Literal.Number.Oct */
.syntax .bp { color: #a535ae } /* Name.Builtin.Pseudo */
.syntax .n { color: #101010 } /* Name */
.syntax .na { color: #bbbbbb } /* Name.Attribute */
.syntax .nb { color: #bf78cc } /* Name.Builtin */ /* pastely purple */
.syntax .nb { color: #af956f } /* Name.Builtin */ /* pastely light brown */
.syntax .nb { color: #a535ae } /* Name.Builtin */ /* brightish pastely purple */
.syntax .nc { color: #101010 } /* Name.Class */
.syntax .nd { color: #6d8091 } /* Name.Decorator */
.syntax .ne { color: #af956f } /* Name.Exception */
.syntax .nf { color: #3677a9 } /* Name.Function */
.syntax .nf { color: #1550a2 } /* Name.Function */
.syntax .ni { color: #101010 } /* Name.Entity */
.syntax .nl { color: #101010 } /* Name.Label */
.syntax .nn { color: #101010 } /* Name.Namespace */
.syntax .nn { color: #101010 } /* Name.Namespace */
.syntax .no { color: #101010 } /* Name.Constant */
.syntax .nx { color: #101010 } /* Name.Other */
.syntax .nt { color: #6d8091 } /* Name.Tag */
.syntax .nv { color: #101010 } /* Name.Variable */
.syntax .vc { color: #101010 } /* Name.Variable.Class */
.syntax .vg { color: #101010 } /* Name.Variable.Global */
.syntax .vi { color: #101010 } /* Name.Variable.Instance */
.syntax .py { color: #101010 } /* Name.Property */
.syntax .o { color: #ff5600 } /* Operator */ /* orangy */
.syntax .o { color: #101010 } /* Operator */
.syntax .ow { color: #101010 } /* Operator.Word */
.syntax .p { color: #101010 } /* Punctuation */
.syntax .s { color: #dd1144 } /* Literal.String */ /* darkish red */
.syntax .s { color: #c32528 } /* Literal.String */ /* espian red */
.syntax .s { color: #39946a } /* Literal.String */ /* pastely greeny */
.syntax .s { color: #5d90cd } /* Literal.String */ /* pastely blue */
.syntax .s { color: #00a33f } /* Literal.String */ /* brightish green */
.syntax .sb { color: #00a33f } /* Literal.String.Backtick */
.syntax .sc { color: #00a33f } /* Literal.String.Char */
.syntax .sd { color: #00a33f } /* Literal.String.Doc */
.syntax .se { color: #00a33f } /* Literal.String.Escape */
.syntax .sh { color: #00a33f } /* Literal.String.Heredoc */
.syntax .si { color: #00a33f } /* Literal.String.Interpol */
.syntax .sr { color: #00a33f } /* Literal.String.Regex */
.syntax .ss { color: #00a33f } /* Literal.String.Symbol */
.syntax .sx { color: #00a33f } /* Literal.String.Other */
.syntax .s1 { color: #00a33f } /* Literal.String.Single */
.syntax .s2 { color: #00a33f } /* Literal.String.Double */
.syntax .w { color: #101010 } /* Text.Whitespace */
.syntax .x { color: #101010 } /* Other */
.syntax.bash .err { color: #000; background-color: transparent; }
.syntax.bash .k { color: #000 }
.syntax.bash .nb { color: #101010 }
.syntax.bash .nv { color: #c32528 }
.syntax.css .k { color: #606060 }
.syntax.css .nc { color: #c32528 }
.syntax.css .nf { color: #c32528 }
.syntax.css .nt { color: #c32528 }
.syntax.ini .na { color: #000 }
.syntax.rst .k { color: #5d90cd }
.syntax.rst .ow { color: #5d90cd }
.syntax.rst .p { color: #5d90cd }
.syntax.yaml .l-Scalar-Plain { color: #5d90cd }
.syntax.yaml .p-Indicator { color: #101010 }
/* classes for support pages */
.community-section {
margin: 10px auto 10px auto;
width: 500px;
}
.community-section-heading {
font-size: 1.6em;
margin-top: 10px;
}
.community-section-heading span {
background-color: #efd7d7;
line-height: 1.7em;
}
.community-section-text {
line-height: 1.6em;
padding: 10px 0 0 50px;
}
.support-page-banner {
font-size: 1.2em;
line-height: 1.6em;
margin: 20px 0;
}
.support-page-banner-text {
background-color: #f0f0f0;
}
/* classes for the main support page */
.promote {
margin: 5px 0 0px 26px;
}
.promote-retweet {
margin-top: 2px;
float: left;
}
.promote-yahoo-buzz {
margin: -2px 15px 0 0;
float: left;
padding-bottom: 5px;
}
.promote-google-buzz, .promote-google-buzz:active, .promote-google-buzz:visited, .promote-google-buzz:hover {
background: url(http://static.ampify.it/icon.google-buzz.png) no-repeat 0 3px;
color: #666;
float: left;
font-size: 0.9em;
font-weight: bold;
margin-top: -2px;
padding: 0 10px 5px 20px;
text-decoration: none;
}
.promote-google-buzz:hover {
text-decoration: underline;
}
.share-text {
font-size: 18px;
line-height: 24px;
margin: 0px 0 12px 26px;
color: #aaa;
}
/* thanks to mashable.com for these wonderful share icons + css!! thanks guys -- you rock!! */
ul.share-buttons {
line-height: normal;
margin: 12px 0 0 24px;
padding: 0;
}
.share-buttons li {
display: inline;
float: left;
list-style-type: none;
margin: 0 18px 12px 0;
padding-top: 1px;
}
.share-buttons a {
background: url(http://static.ampify.it/gfx.mashable-syndication.gif) no-repeat;
color: #575757;
display: block;
font-size: 7px;
height: 14px;
overflow: hidden;
padding: 33px 0 0;
text-align: center;
text-decoration: none;
white-space: nowrap;
width: 46px;
}
.share-buttons a:hover {
text-decoration:none;
}
.share-buttons .delicious a {
background-position: -138px 0;
}
.share-buttons .delicious a:hover {
background-position: -138px -47px;
}
.share-buttons .digg a {
background-position: 0 0;
}
.share-buttons .digg a:hover {
background-position: 0 -47px;
}
.share-buttons .facebook a {
background-position: -184px 0;
}
.share-buttons .facebook a:hover {
background-position: -184px -47px;
}
.share-buttons .google a {
background-position: -276px 0;
}
.share-buttons .google a:hover {
background-position: -276px -47px;
}
.share-buttons .myspace a {
background-position: -230px 0;
}
.share-buttons .myspace a:hover {
background-position: -230px -47px;
}
.share-buttons .reddit a {
background-position: -414px 0;
}
.share-buttons .reddit a:hover {
background-position: -414px -47px;
}
.share-buttons .sharethis a {
background-position: -460px 0;
}
.share-buttons .sharethis a:hover {
background-position: -460px -47px;
}
.share-buttons .stumbleupon a {
background-position: -92px 0;
}
.share-buttons .stumbleupon a:hover {
background-position: -92px -47px;
}
.share-buttons .technorati a {
background-position: -322px 0;
}
.share-buttons .technorati a:hover {
background-position: -322px -47px;
}
.share-buttons .twitter a {
background-position: -46px 0;
}
.share-buttons .twitter a:hover {
background-position: -46px -47px;
}
.share-buttons .yahoo a {
background-position: -368px 0;
}
.share-buttons .yahoo a:hover {
background-position: -368px -47px;
}
/* Unsorted */
.columns {
max-width: 940px;
width: 940px;
}
.column, .column-last {
float: left;
/*
height: 180px;
*/
padding: 0 10px 0 0;
position: relative;
width: 227px;
}
.column-last {
padding: 0 0 0 0;
}
.column-text {
font-size: 12px;
line-height: 18px;
margin: 10px 0 20px 15px;
}
.column-footer {
background-image: url(bottom.gif);
background-repeat: no-repeat;
background-color: transparent;
/*
background-attachment: scroll;
*/
}
.column-left {
border-right: 0px solid #f00;
float: left;
width: 455px;
}
.column-left-text {
font-size: 12px;
line-height: 18px;
margin-left: 12px;
}
.column-right {
float: right;
width: 485px;
}
.follow {
display: block;
list-style-type: none;
margin: 12px 0px 0px 24px;
padding: 0px;
text-align: center;
}
.follow li {
float: left;
display: block;
margin-right: 30px;
margin-bottom: 18px;
}
.follow a {
color: #575757;
display: block;
font-size: 10px;
margin-top: 7px;
text-decoration: underline;
text-decoration: none;
font-weight: bold;
}
.follow a:hover {
text-decoration: none;
}
.get-left {
float: left;
width: 230px;
margin-right: 12px;
font-weight: bold;
}
.get-right {
float: right;
width: 230px;
margin-right: 12px;
font-weight: bold;
}
.get-item {
border: 1px solid #ccc;
border-radius: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
margin-top: 10px;
font-weight: normal;
margin: 12px 0 12px 0;
padding: 10px;
}
.get-item img {
float: left;
margin-right: 5px;
padding-top: 3px;
vertical-align: middle;
}
.headline {
margin-bottom: 10px;
text-align: center;
line-height: 36px;
}
.headline-text {
background-color: #f0f0f0;
font-size: 20px;
}
.headline-text-small {
background-color: #f0f0f0;
font-size: 20px;
}
.lede {
background-color: #dfdfdf;
}
.link {
font-size: 16px;
}
.oneoff {
margin: 12px 12px 12px 0;
font-size: 14px;
line-height: 20px;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
padding: 12px 0 12px 0;
}
.optional {
color: #666;
font-size: 9px;
vertical-align: super;
}
/* other */
#callout {
background-color: #fff;
margin-bottom: 10px;
/*
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
-moz-border-radius-bottomleft: 15px;
-moz-border-radius-bottomright: 15px;
-webkit-border-bottom-left-radius: 15px;
-webkit-border-bottom-right-radius: 15px;
*/
padding: 10px;
}
#feature {
float: right;
}
#supporter-form {
font-size: 14px;
line-height: 26px;
margin: 8px 0 0 0;
padding-top: 5px;
}
#supporter-form td {
padding-top: 10px;
vertical-align: top;
}
#supporter-form .label {
text-align: right;
width: 205px;
padding-right: 10px;
padding-left: 10px;
font-size: 12px;
font-weight: bold;
white-space: nowrap;
}
.input-item input, .input-item textarea {
/* thanks soundcloud! */
background-image: url(http://static.ampify.it/gfx.button-repeat.png);
background-position: 0 -1200px;
background-repeat: repeat-x;
border: 1px solid #ccc;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
color: #333;
font-size: 20px;
max-width: 220px;
padding: 3px 0 3px 3px;
width: 220px;
}
.input-item select {
font-size: 16px;
}
.male {
border: 2px solid #70b1e6;
background-color: #eaf3fb;
}
.male .label {
color: #70b1e6;
}
.female {
border: 2px solid #ed6aa4;
background-color: #fee5f5;
}
.female .label {
color: #ed6aa4;
}
#supporter-submit {
text-align: center;
padding: 0 0 15px 0;
}
#support {
font-size: 20px;
margin-bottom: 15px;
margin-top: 5px;
}
.male-counter {
color: #70b1e6;
font-size: 12px;
margin-bottom: -50px;
white-space: nowrap;
}
.female-counter {
color: #ed6aa4;
font-size: 12px;
padding-left: 24px;
margin-bottom: -50px;
white-space: nowrap;
}
.tav-thanks {
font-size: 14px;
line-height: 26px;
margin: 12px 12px 12px 0;
color: #575757;
color: #000;
font-style: italic;
}
.tav-thanks img {
float: right;
margin-left: 12px;
}
.tav-thanks div {
text-align: right;
font-size: 12px;
line-height: 20px;
margin-top: 12px;
}
/*
.tav-thanks a {
color: #000;
text-decoration: underline;
}
.tav-thanks a:hover {
text-decoration: none;
}
*/
.the-disqus-section {
margin: 12px 12px 12px 0;
min-height: 500px;
}
.the-disqus-section h3 {
margin-top: 10px;
margin-bottom: 12px;
font-size: 20px;
}
.action-items {
font-size: 14px;
line-height: 26px;
margin: 10px 24px; 20px 24px;
}
.action-left {
float: left;
margin-right: 20px;
}
.action-link {
margin-top: 20px;
}
.action-text {
margin-top: 20px;
}
/* plan file related css */
a.button {
background: transparent url('http://static.ampify.it/gfx.bg-button-a.gif') no-repeat scroll top right;
color: #444;
display: block;
float: left;
font: normal 12px arial, sans-serif;
height: 24px;
margin-right: 6px;
padding-right: 18px; /* sliding doors padding */
text-decoration: none;
}
a.button span {
background: transparent url('http://static.ampify.it/gfx.bg-button-span.gif') no-repeat;
display: block;
line-height: 14px;
padding: 5px 0 5px 18px;
}
a.button:active {
background-position: bottom right;
color: #000;
outline: none; /* hide dotted outline in Firefox */
}
a.button:active span {
background-position: bottom left;
padding: 6px 0 4px 18px; /* push text down 1px */
}
a.buttondown {
background: transparent url('http://static.ampify.it/gfx.bg-button-a.gif') no-repeat scroll top right;
color: #444;
display: block;
float: left;
font: normal 12px arial, sans-serif;
height: 24px;
margin-right: 6px;
padding-right: 18px; /* sliding doors padding */
text-decoration: none;
background-position: bottom right;
color: #000;
outline: none; /* hide dotted outline in Firefox */
}
a.buttondown span {
background: transparent url('http://static.ampify.it/gfx.bg-button-span.gif') no-repeat;
display: block;
line-height: 14px;
padding: 5px 0 5px 18px;
background-position: bottom left;
padding: 6px 0 4px 18px; /* push text down 1px */
}
.tag-segment {
text-align: right;
}
.tag-segment span {
color: #fff;
padding: 0.5em;
font-size: 0.7em;
}
.tag-link, .tag-link:active, .tag-link:hover, .tag-link:visited {
text-decoration: none;
color: #000;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 0.8em;
}
.tag {
background-color: #696969;
}
.tag-val-done {
background-color: #007f16;
background-color: #00782d;
background-color: #006400;
}
.tag-val-needsreview {
background-color: #a4ff00; /* bright lime-ish green */
background-color: #ffe2ff;
color: #000 !important;
}
.tag-val-inreview {
background-color: #3056bf;
}
.tag-val-todo {
background-color: #a60c00;
background-color: #d0006e;
background-color: #8B0000;
}
.tag-val-wip {
background-color: #ff550f; /* orange */
background-color: #b1f2ec;
color: #000 !important;
}
.tag-type-1 {
}
.tag-type-2 { /* #hashtags */
background-color: #2a4580;
background-color: #696969;
}
.tag-type-dep {
display: none;
}
.tag-type-milestone {
background-color: #00008B;
background-color: #06276f;
background-color: #a4ff00; /* nice colour! */
/* color: #000 !important; */
background-color: #002ca6;
background-color: #3056bf;
background-color: #898989;
}
.tag-type-priority {
background-color: #481254;
}
.tag-type-zuser {
background-color: #4573d5;
background-color: #696969;
background-color: #3056bf;
}
#plan-tags a, #site-tags a {
margin-bottom: 0.7em;
}
#plan-container {
margin-top: 1.2em;
margin-bottom: 2.4em;
}
.plan-help {
font-size: 0.9em;
font-weight: bold;
margin-bottom: 1.4em;
text-align: right;
}
.container {
padding-left: 0px;
}
.container blockquote {
padding: 0 0 0 30px;
}
.container > p:first-child {
font-weight: bold;
font-family: "museo-1", "museo-2", Verdana;
padding-bottom: 0;
}
.container > p:first-child em {
font-weight: bold;
font-family: Verdana, sans-serif;
margin-right: 7px;
font-style: normal;
}
/* ignore this support */
#ignore-this {
display: none !important;
}
/* doctest */
.doctest-output {
color: #a5504d;
color: #c32528;
}
.doctest-input {
color: #0d5d04;
color: #00a33f;
color: #6a6a6a;
color: #5d90cd;
}
/* permalinks */
td.code-docs .permawrap {
position: relative;
}
td.code-docs .permalink {
font: 12px/1em 'Lucida Grande', 'Lucida Sans Unicode', Optima, Verdana, sans-serif;
text-decoration: none;
color: #959595;
color: #efc4c5;
color: #c32528;
position: absolute;
top: 11px; left: -10px;
padding-top: 3px;
opacity: 0;
-webkit-transition: opacity 0.2s linear;
}
td.code-docs .permalink:hover {
text-decoration: underline;
color: #454545;
}
td.code-docs:hover .permalink {
opacity: 1;
}
/* source code generator */
td.code-docs, td.code-source {
margin: 0;
padding: 0;
vertical-align: top;
text-align: left;
}
td.code-docs {
max-width: 550px;
min-width: 550px;
font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
font-size: 16px;
line-height: 24px;
color: #252519;
padding-right: 10px;
padding-left: 10px;
}
td.code-docs h1, td.code-docs h2 {
padding-top: 10px !important;
padding-bottom: 10px !important;
}
td.code-docs h1.title {
font-size: 1.5em !important;
}
td.code-docs h1 {
font-size: 1.25em !important;
}
td.code-docs pre {
font-size: 12px !important;
font-family: Monaco, Consolas, "Lucida Console", monospace !important;
margin: 10px 5px 10px 0px;
}
td.code-source {
max-width: 620px;
min-width: 620px;
background-color: #f8f8ff;
border-left: 1px solid #dedede;
border-left: 1px solid #aeaeae;
}
td.code-source pre {
font-size: 12px !important;
font-family: Monaco, Consolas, "Lucida Console", monospace !important;
margin: 10px 0 0 10px;
background-color: transparent;
border: 0;
color: #101010;
overflow: auto;
padding: 1em 0 0 10px;
margin: 0;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border-radius: 0px;
-webkit-box-shadow: 0px 0px 0px transparent;
}
#code-logo {
float: right;
padding-top: 5px;
}
#code-docs-listing blockquote {
padding: 10px 20px;
} | 0.343672 | 0.105671 |
.icon_link {
height: 80px;
padding-bottom: 90px;
border-bottom: 10px solid #fff;
}
.icon_link .icon_img {
float: left;
margin-top: 10px;
width: 170px;
height: 60px;
background: url(../images/login/logo-201305-b.png);
}
.icon_link .huanying_register {
float: left;
width: 110px;
height: 40px;
margin-top: 30px;
margin-left: 20px;
font-size: 24px;
color: #333;
}
.icon_link .login {
float: right;
margin-top: 50px;
}
.icon_link .login span {
font-size: 16px;
color: #999;
}
.icon_link .login span a {
color: #e1251a;
}
.icon_link .login span a:hover {
color: #ee2222;
text-decoration: underline;
}
.agreement {
display: none;
position: absolute;
top: 20px;
left: 20px;
width: 1000px;
height: 600px;
background-color: #fff;
border: 3px solid #999;
z-index: 999;
}
.agreement .top {
width: 100%;
height: 30px;
line-height: 30px;
background-color: #f3f3f3;
}
.agreement .top h4 {
float: left;
padding-left: 5px;
font-size: 14px;
color: #333;
}
.agreement .top a {
float: right;
padding-right: 5px;
color: #999;
font-size: 28px;
}
.agreement .protocol-con {
width: 100%;
height: 450px;
overflow: auto;
padding: 20px;
padding-bottom: 0;
}
.agreement .agree {
width: 400px;
height: 50px;
margin-left: 300px;
margin-top: 30px;
background-color: #ee2222;
color: #fff;
font-size: 18px;
}
.register {
height: 670px;
}
.register .top_buzhou {
position: relative;
width: 500px;
height: 70px;
margin-left: 400px;
margin-top: 70px;
}
.register .top_buzhou li {
float: left;
}
.register .top_buzhou li .now_step {
display: inline-block;
width: 20px;
height: 20px;
margin-bottom: 10px;
text-align: center;
border-radius: 10px;
border: 1px solid #999;
}
.register .top_buzhou li .now_step_style {
background-color: #33bb44;
color: #fff;
}
.register .top_buzhou li .step_tip_style {
color: #33bb44;
}
.register .top_buzhou .now_progress {
width: 80px;
text-align: center;
margin-right: 80px;
}
.register .top_buzhou .step_jiantou {
position: absolute;
left: 58px;
top: 5px;
width: 124px;
height: 10px;
background: url(../images/register/reg-icon.png) no-repeat 0 -100px;
}
.register .top_buzhou .now_progress_two {
position: absolute;
left: 220px;
top: 5px;
}
.register .now_step_caozuo {
position: relative;
width: 400px;
margin-left: 400px;
margin-top: 40px;
}
.register .now_step_caozuo .phone_code select {
width: 100px;
height: 50px;
padding-left: 10px;
line-height: 50px;
text-align: center;
border: 1px solid #999;
font-size: 15px;
color: #666;
}
.register .now_step_caozuo .phone_code .code {
width: 290px;
height: 50px;
margin-left: -5px;
padding-left: 20px;
border: 1px solid #999;
}
.register .now_step_caozuo .phone_code .tip {
display: none;
position: absolute;
top: 17px;
left: 355px;
width: 16px;
height: 16px;
background: url(../images/register/icon.png) no-repeat 0 -117px;
}
.register .now_step_caozuo .phone_code .tip_wrong {
background: url(../images/register/icon.png) no-repeat -51px -117px;
}
.register .now_step_caozuo .phone_code .geshi_tip {
display: none;
position: absolute;
left: 0px;
top: 54px;
}
.register .now_step_caozuo .phone_code .geshi_tip_yanzheng::before {
display: inline-block;
content: "";
width: 16px;
height: 16px;
margin-right: 10px;
background: url(../images/register/icon.png) no-repeat 0 -100px;
vertical-align: text-top;
}
.register .now_step_caozuo .phone_code .geshi_tip_wrong::before {
display: inline-block;
content: "";
width: 16px;
height: 16px;
margin-right: 10px;
background: url(../images/register/icon.png) no-repeat -16px -100px;
vertical-align: text-top;
}
.register .now_step_caozuo .btn_yanzheng {
width: 390px;
height: 50px;
margin-top: 30px;
line-height: 50px;
text-align: center;
margin-top: 50px;
background-color: #F4F4F4;
}
.register .now_step_caozuo .btn_yanzheng:hover {
border: 1px solid #999;
}
.register .now_step_caozuo .container {
display: none;
position: absolute;
left: 23px;
top: -180px;
padding: 20px;
background-color: #fff;
border: 1px solid #999;
}
.register .now_step_caozuo .code_yanzheng {
display: none;
position: absolute;
left: 0;
top: 80px;
width: 390px;
height: 50px;
margin-top: 30px;
}
.register .now_step_caozuo .code_yanzheng .yanzheng {
position: relative;
display: inline-block;
width: 275px;
height: 50px;
border: 1px solid #999;
}
.register .now_step_caozuo .code_yanzheng .yanzheng label {
display: inline-block;
width: 100px;
height: 50px;
text-align: center;
line-height: 50px;
font-size: 15px;
}
.register .now_step_caozuo .code_yanzheng .yanzheng .phonecode {
display: inline-block;
width: 155px;
height: 45px;
padding-left: 10px;
background-color: #F4F4F4;
}
.register .now_step_caozuo .code_yanzheng .yanzheng .i-status {
display: none;
position: absolute;
top: 53px;
left: -3px;
width: 300px;
}
.register .now_step_caozuo .code_yanzheng .yanzheng .i-status::before {
display: inline-block;
content: "";
width: 16px;
height: 16px;
margin-right: 10px;
background: url(../images/register/icon.png) no-repeat 0 -100px;
vertical-align: text-top;
}
.register .now_step_caozuo .code_yanzheng .yanzheng .i-cancel {
display: none;
position: absolute;
top: 15px;
left: 239px;
width: 16px;
height: 16px;
background: url(../images/register/icon.png) no-repeat -51px -117px;
}
.register .now_step_caozuo .code_yanzheng .btn-phonecode {
position: absolute;
top: 2px;
left: 275px;
width: 110px;
height: 50px;
margin-top: -2px;
text-align: center;
font-size: 12px;
background-color: #F4F4F4;
}
.register .now_step_caozuo .code_yanzheng .btn-phonecode:hover {
border: 1px solid #999;
border-left: 0px solid #000;
}
.register .now_step_caozuo .code_yanzheng .audio-tip {
margin-top: 5px;
margin-left: 165px;
}
.register .now_step_caozuo .code_yanzheng .audio-tip .get-auth-code {
color: #0066cc;
}
.register .now_step_caozuo .code_yanzheng .audio-tip .get-auth-code:hover {
text-decoration: underline;
}
.register .now_step_caozuo .next_tip {
position: absolute;
top: 160px;
left: 0;
width: 390px;
height: 50px;
margin-top: 50px;
text-align: center;
line-height: 50px;
font-size: 16px;
background-color: #c81623;
color: #fff;
}
.register .now_step_caozuo .user_class {
width: 390px;
margin-top: 20px;
}
.register .now_step_caozuo .user_class .qiye_user {
position: absolute;
left: 0;
top: 270px;
}
.register .now_step_caozuo .user_class .qiye_user::before {
display: inline-block;
content: '';
vertical-align: middle;
width: 26px;
height: 26px;
margin-right: 10px;
background: url(../images/register//reg-icon.png);
background-position: 0 -160px;
}
.register .now_step_caozuo .user_class .haiwai_user {
position: absolute;
right: 0;
top: 270px;
}
.register .now_step_caozuo .user_class .haiwai_user::before {
display: inline-block;
content: '';
vertical-align: middle;
width: 26px;
height: 26px;
margin-right: 10px;
background: url(../images/register//reg-icon.png);
background-position: -40px -160px;
}
.jd_foot {
height: 100px;
clear: both;
margin-top: 20px;
}
.jd_foot .kefu {
display: flex;
margin-left: 35px;
margin-bottom: 20px;
justify-content: center;
}
.jd_foot .kefu li span {
margin: 0 10px;
} | css/register.css | .icon_link {
height: 80px;
padding-bottom: 90px;
border-bottom: 10px solid #fff;
}
.icon_link .icon_img {
float: left;
margin-top: 10px;
width: 170px;
height: 60px;
background: url(../images/login/logo-201305-b.png);
}
.icon_link .huanying_register {
float: left;
width: 110px;
height: 40px;
margin-top: 30px;
margin-left: 20px;
font-size: 24px;
color: #333;
}
.icon_link .login {
float: right;
margin-top: 50px;
}
.icon_link .login span {
font-size: 16px;
color: #999;
}
.icon_link .login span a {
color: #e1251a;
}
.icon_link .login span a:hover {
color: #ee2222;
text-decoration: underline;
}
.agreement {
display: none;
position: absolute;
top: 20px;
left: 20px;
width: 1000px;
height: 600px;
background-color: #fff;
border: 3px solid #999;
z-index: 999;
}
.agreement .top {
width: 100%;
height: 30px;
line-height: 30px;
background-color: #f3f3f3;
}
.agreement .top h4 {
float: left;
padding-left: 5px;
font-size: 14px;
color: #333;
}
.agreement .top a {
float: right;
padding-right: 5px;
color: #999;
font-size: 28px;
}
.agreement .protocol-con {
width: 100%;
height: 450px;
overflow: auto;
padding: 20px;
padding-bottom: 0;
}
.agreement .agree {
width: 400px;
height: 50px;
margin-left: 300px;
margin-top: 30px;
background-color: #ee2222;
color: #fff;
font-size: 18px;
}
.register {
height: 670px;
}
.register .top_buzhou {
position: relative;
width: 500px;
height: 70px;
margin-left: 400px;
margin-top: 70px;
}
.register .top_buzhou li {
float: left;
}
.register .top_buzhou li .now_step {
display: inline-block;
width: 20px;
height: 20px;
margin-bottom: 10px;
text-align: center;
border-radius: 10px;
border: 1px solid #999;
}
.register .top_buzhou li .now_step_style {
background-color: #33bb44;
color: #fff;
}
.register .top_buzhou li .step_tip_style {
color: #33bb44;
}
.register .top_buzhou .now_progress {
width: 80px;
text-align: center;
margin-right: 80px;
}
.register .top_buzhou .step_jiantou {
position: absolute;
left: 58px;
top: 5px;
width: 124px;
height: 10px;
background: url(../images/register/reg-icon.png) no-repeat 0 -100px;
}
.register .top_buzhou .now_progress_two {
position: absolute;
left: 220px;
top: 5px;
}
.register .now_step_caozuo {
position: relative;
width: 400px;
margin-left: 400px;
margin-top: 40px;
}
.register .now_step_caozuo .phone_code select {
width: 100px;
height: 50px;
padding-left: 10px;
line-height: 50px;
text-align: center;
border: 1px solid #999;
font-size: 15px;
color: #666;
}
.register .now_step_caozuo .phone_code .code {
width: 290px;
height: 50px;
margin-left: -5px;
padding-left: 20px;
border: 1px solid #999;
}
.register .now_step_caozuo .phone_code .tip {
display: none;
position: absolute;
top: 17px;
left: 355px;
width: 16px;
height: 16px;
background: url(../images/register/icon.png) no-repeat 0 -117px;
}
.register .now_step_caozuo .phone_code .tip_wrong {
background: url(../images/register/icon.png) no-repeat -51px -117px;
}
.register .now_step_caozuo .phone_code .geshi_tip {
display: none;
position: absolute;
left: 0px;
top: 54px;
}
.register .now_step_caozuo .phone_code .geshi_tip_yanzheng::before {
display: inline-block;
content: "";
width: 16px;
height: 16px;
margin-right: 10px;
background: url(../images/register/icon.png) no-repeat 0 -100px;
vertical-align: text-top;
}
.register .now_step_caozuo .phone_code .geshi_tip_wrong::before {
display: inline-block;
content: "";
width: 16px;
height: 16px;
margin-right: 10px;
background: url(../images/register/icon.png) no-repeat -16px -100px;
vertical-align: text-top;
}
.register .now_step_caozuo .btn_yanzheng {
width: 390px;
height: 50px;
margin-top: 30px;
line-height: 50px;
text-align: center;
margin-top: 50px;
background-color: #F4F4F4;
}
.register .now_step_caozuo .btn_yanzheng:hover {
border: 1px solid #999;
}
.register .now_step_caozuo .container {
display: none;
position: absolute;
left: 23px;
top: -180px;
padding: 20px;
background-color: #fff;
border: 1px solid #999;
}
.register .now_step_caozuo .code_yanzheng {
display: none;
position: absolute;
left: 0;
top: 80px;
width: 390px;
height: 50px;
margin-top: 30px;
}
.register .now_step_caozuo .code_yanzheng .yanzheng {
position: relative;
display: inline-block;
width: 275px;
height: 50px;
border: 1px solid #999;
}
.register .now_step_caozuo .code_yanzheng .yanzheng label {
display: inline-block;
width: 100px;
height: 50px;
text-align: center;
line-height: 50px;
font-size: 15px;
}
.register .now_step_caozuo .code_yanzheng .yanzheng .phonecode {
display: inline-block;
width: 155px;
height: 45px;
padding-left: 10px;
background-color: #F4F4F4;
}
.register .now_step_caozuo .code_yanzheng .yanzheng .i-status {
display: none;
position: absolute;
top: 53px;
left: -3px;
width: 300px;
}
.register .now_step_caozuo .code_yanzheng .yanzheng .i-status::before {
display: inline-block;
content: "";
width: 16px;
height: 16px;
margin-right: 10px;
background: url(../images/register/icon.png) no-repeat 0 -100px;
vertical-align: text-top;
}
.register .now_step_caozuo .code_yanzheng .yanzheng .i-cancel {
display: none;
position: absolute;
top: 15px;
left: 239px;
width: 16px;
height: 16px;
background: url(../images/register/icon.png) no-repeat -51px -117px;
}
.register .now_step_caozuo .code_yanzheng .btn-phonecode {
position: absolute;
top: 2px;
left: 275px;
width: 110px;
height: 50px;
margin-top: -2px;
text-align: center;
font-size: 12px;
background-color: #F4F4F4;
}
.register .now_step_caozuo .code_yanzheng .btn-phonecode:hover {
border: 1px solid #999;
border-left: 0px solid #000;
}
.register .now_step_caozuo .code_yanzheng .audio-tip {
margin-top: 5px;
margin-left: 165px;
}
.register .now_step_caozuo .code_yanzheng .audio-tip .get-auth-code {
color: #0066cc;
}
.register .now_step_caozuo .code_yanzheng .audio-tip .get-auth-code:hover {
text-decoration: underline;
}
.register .now_step_caozuo .next_tip {
position: absolute;
top: 160px;
left: 0;
width: 390px;
height: 50px;
margin-top: 50px;
text-align: center;
line-height: 50px;
font-size: 16px;
background-color: #c81623;
color: #fff;
}
.register .now_step_caozuo .user_class {
width: 390px;
margin-top: 20px;
}
.register .now_step_caozuo .user_class .qiye_user {
position: absolute;
left: 0;
top: 270px;
}
.register .now_step_caozuo .user_class .qiye_user::before {
display: inline-block;
content: '';
vertical-align: middle;
width: 26px;
height: 26px;
margin-right: 10px;
background: url(../images/register//reg-icon.png);
background-position: 0 -160px;
}
.register .now_step_caozuo .user_class .haiwai_user {
position: absolute;
right: 0;
top: 270px;
}
.register .now_step_caozuo .user_class .haiwai_user::before {
display: inline-block;
content: '';
vertical-align: middle;
width: 26px;
height: 26px;
margin-right: 10px;
background: url(../images/register//reg-icon.png);
background-position: -40px -160px;
}
.jd_foot {
height: 100px;
clear: both;
margin-top: 20px;
}
.jd_foot .kefu {
display: flex;
margin-left: 35px;
margin-bottom: 20px;
justify-content: center;
}
.jd_foot .kefu li span {
margin: 0 10px;
} | 0.382949 | 0.053825 |
* Table of Content
* 1. Header
* 2. Navbar Mini
* 3. Sticky Header
* 4. Hero Image
* 5. Page Title & Breadcrumb
* 6. Main Search Form
* 7. Sidebar
* 8. Sorting
* 9. Pager
* 10. Featured Items
* 11. Destinations
* 12. Tour Package
* 13. itinerary
* 14. Why us
* 15. Testimonial
* 16. Newsletter
* 17. About Us
* 18. Review
* 19. Faq
* 20. Payment
* 21. Confirmation
* 22. Social
* 23. Contact Us
* 24. Blog
* 25. Image Overlay
* 26. Footer
* 27. Sign-in/up
-------------------------------------------------------------------*/
/**
* Header
*/
.navbar {
border-bottom: 0;
min-height: 0;
margin: 0;
}
.navbar-primary {
background: #010164;
}
.navbar-bottom {
background: #FFF;
}
/* Logo */
.navbar-logo {
float: left;
display: block;
margin-right: 10px;
padding: 5px 0 15px;
}
.navbar-logo img {
height: 30px;
width: auto;
}
/* Phone at Header */
.navbar-phone {
font-weight: 600;
font-size: 14px;
color: #636363;
line-height: 50px;
text-align: right;
}
/* Main Menu Dropdown */
.navbar-nav {
margin: 0;
}
.navbar-nav li a {
font-weight: 600;
font-size: 13px;
color: #636363;
}
.navbar-nav > li {
margin-right: 30px;
}
.navbar-nav > li > a {
line-height: 50px;
padding: 0;
}
.navbar-nav > li > a:hover {
color: rgba(255, 255, 255, 0.8);
}
.navbar-nav li {
position: relative;
}
.navbar-nav li ul {
z-index: 9999;
padding: 0;
margin: 0;
position: absolute;
top: 50px;
left: 0;
width: 190px;
display: none;
border: 1px solid #E3E3E3;
border-top: 2px solid #010164;
background: #FFF;
padding: 20px;
}
.navbar-nav li ul li a {
border-bottom: 0;
display: block;
padding: 8px 0;
color: rgba(0, 0, 0, 0.8);
line-height: 1.25;
font-weight: 400;
}
.navbar-nav li > ul > li:last-child > a,
.navbar-nav li > ul > li > ul > li:last-child > a {
border-bottom: 0;
}
.navbar-nav li ul li:hover > a {
color: #D65049;
}
.navbar-nav li ul li ul {
position: absolute;
left: 169px;
top: 0;
}
/* Mega Menu */
.navbar-nav > li.mega-menu {
position: inherit!important;
left: 0;
color: #636363;
}
.navbar-nav > li.mega-menu ul {
left: 0%;
width: 100%;
top: 50px;
padding: 0 30px;
padding-top: 20px;
padding-bottom: 20px;
}
.navbar-nav > li.mega-menu:hover > a,
.navbar-nav > li.mega-menu > a:hover,
.navbar-nav > li.dropdown:hover > a,
.navbar-nav > li.dropdown > a:hover,
.navbar-nav > li.dropdown.active > a,
.navbar-nav > li.dropdown.active > a:hover,
.navbar-nav > li:hover > a,
.navbar-nav > li.active > a {
color: #D65049;
background: none;
}
.navbar-nav > li.mega-menu ul li a:hover {
color: #D65049;
}
/* Menu Arrow */
.navbar-arrow > ul > li .arrow-indicator {
margin-left: 7px;
color: #CCC;
}
.navbar-arrow ul ul > li .arrow-indicator {
position: absolute;
top: 50%;
right: 0;
margin-top: -8px;
font-size: 16px;
color: #CCC;
}
.megamenu-container .arrow-indicator {
display: none !important;
}
@media (min-width: 768px) {
.navbar-nav > li.mega-menu ul {
width: 750px;
}
}
@media (min-width: 992px) {
.navbar-nav > li.mega-menu ul {
width: 970px;
}
}
@media (min-width: 1200px) {
.navbar-nav > li.mega-menu ul {
width: 1170px;
}
}
@media (min-width: 768px) {
.navbar {
-webkit-transition: all 0.1s ease-in-out 0s;
-moz-transition: all 0.1s ease-in-out 0s;
-ms-transition: all 0.1s ease-in-out 0s;
-o-transition: all 0.1s ease-in-out 0s;
transition: all 0.1s ease-in-out 0s;
}
.navbar-brand {
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
padding-top: 0;
padding-bottom: 0;
}
.navbar-logo {
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin-top: 10px;
}
.navbar-nav li ul li a {
-webkit-transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
-ms-transition: all 0.2s ease-in-out 0s;
-o-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
}
.navbar-nav > li > a {
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.navbar-sticky .navbar-logo {
margin-top: 0;
}
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.navbar-logo {
padding: 0;
margin: 0;
}
.navbar-logo img {
height: 20px;
margin: 0;
}
.navbar-arrow > ul > li .arrow-indicator,
.navbar-arrow ul ul > li .arrow-indicator {
display: none !important;
}
.navbar-sticky .navbar-logo {
margin-top: 5px;
margin-bottom: 5px;
}
}
@media (max-width: 767px) {
.navbar-fixed-top {
position: relative !important;
clear: both;
}
.navbar-logo img {
height: 18px;
}
.navbar-logo {
margin-top: 5px;
margin-bottom: 5px;
float: none;
}
.navbar-nav .open .dropdown-menu > li > a {
line-height: 23px;
}
}
@media (max-width: 479px) {}
/**
* Navbar Mini
*/
.navbar-mini {}
.navbar-mini > ul {
line-height: 55px;
margin: 0;
margin-top: -2px;
padding: 0;
-webkit-transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
-ms-transition: all 0.2s ease-in-out 0s;
-o-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
}
.navbar-mini > ul > li {
float: left;
margin-left: 15px;
}
.navbar-mini > ul > li:last-child {
border-right: none;
}
.navbar-mini > ul > li > a {
color: rgba(255, 255, 255, 1);
font-size: 13px;
font-weight: 600;
}
.navbar-mini > ul > li > a:hover,
.navbar-mini > ul > li > a:focus {
color: rgba(255, 255, 255, 0.8);
}
.navbar-mini > ul > li > a.btn {
border: 2px solid #FFF;
font-size: 11px;
padding-left: 15px;
padding-right: 15px;
}
.navbar-mini > ul > li > a.btn:hover,
.navbar-mini > ul > li > a.btn:focus {
border-color: rgba(255, 255, 255, 0.8);
}
.navbar-mini .dropdown-menu {
min-width: 80px;
padding: 10px;
}
.navbar-mini .dropdown-menu > li > a {
padding: 5px 12px;
font-size: 12px;
font-weight: 400;
}
.navbar-mini .dropdown-menu > li:first-child > a {
padding-top: 5px;
}
.navbar-mini .dropdown-menu > li:last-child > a {
padding-bottom: 5px;
}
.navbar-mini .dropdown-menu > li > a:hover,
.navbar-mini .dropdown-menu > li:hover > a,
.navbar-mini .dropdown-menu > li > a:focus {
color: #BA0600 !important;
background: none !important;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.navbar-mini {
margin-right: 45px;
}
.navbar-mini > ul {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
line-height: 50px;
}
.navbar-mini > ul > li > a.btn {
padding: 7px 10px;
}
}
@media (max-width: 767px) {
.navbar-mini > ul > li {
margin-left: 10px;
}
.navbar-mini > ul > li > a.btn {
border: 0;
}
}
@media (max-width: 479px) {
.navbar-mini {
margin-right: 35px;
}
.navbar-mini > ul > li {
margin-left: 0;
}
}
/**
* Sticky Header
*/
.navbar-sticky {
border-color: #232F49;
}
.navbar-sticky hr {
display: none;
}
.navbar-sticky.navbar-primary {
padding-top: 0;
}
.navbar-sticky .navbar-logo {
padding-top: 5px;
padding-bottom: 8px;
}
.navbar-sticky .navbar-phone {
line-height: 40px;
}
.navbar-sticky .navbar-nav > li > a {
line-height: 40px;
}
.navbar-sticky .navbar-nav > li > a:hover,
.navbar-sticky .navbar-nav > li > a:focus {
color: #D65049;
background-color: transparent
}
.navbar-sticky .navbar-nav > li > ul {
top: 40px;
}
.navbar-sticky .navbar-nav > li.mega-menu ul {
top: 40px;
}
.navbar-sticky .navbar-nav > .active > a,
.navbar-sticky .navbar-nav > .active > a:hover,
.navbar-sticky .navbar-nav > .active > a:focus {
color: #0D7CC9;
background-color: transparent;
}
.navbar-sticky .navbar-nav > .disabled > a,
.navbar-sticky .navbar-nav > .disabled > a:hover,
.navbar-sticky .navbar-nav > .disabled > a:focus {
color: #444444;
background-color: transparent;
}
.navbar-sticky .navbar-second {
padding-top: 5px;
}
@media (min-width: 768px) {
.navbar-sticky {
-webkit-box-shadow: 0px 3px 8px -6px rgba(0, 0, 0, 0.43);
-moz-box-shadow: 0px 3px 8px -6px rgba(0, 0, 0, 0.43);
box-shadow: 0px 3px 8px -6px rgba(0, 0, 0, 0.43);
}
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.navbar-sticky .navbar-logo {
padding-top: 7px;
}
}
@media (max-width: 767px) {}
@media (max-width: 479px) {}
/**
* Hero Image
*/
.hero {
position: relative;
padding: 130px 0;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
color: rgba(255, 255, 255, 0.9);
position: relative;
text-align: center;
}
.hero::before {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
content: ""
}
.hero h1 {
color: rgba(255, 255, 255, 1);
font-size: 58px;
font-weight: 400;
margin-top: 0;
}
.hero p.lead {
margin-bottom: 30px;
font-size: 25px;
line-height: 31px;
font-weight: 300;
}
.hero .btn {
padding-left: 40px;
padding-right: 40px;
}
.hero.windows-height-bg {
overflow: hidden;
}
@media (min-width: 768px) {}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.hero {
padding: 40px 0;
}
.hero h1 {
font-size: 36px;
}
.hero p.lead {
font-size: 17px;
line-height: 1.4;
}
}
@media (max-width: 479px) {
.hero h1 {
font-size: 28px;
margin-top: 5px;
}
.hero p.lead {
font-size: 15px;
}
}
.availabily-wrapper {}
ul.availabily-list {}
ul.availabily-list li {
border-bottom: 1px solid #E3E3E3;
line-height: 1.2;
padding: 0;
margin: 0;
margin-bottom: 20px;
padding-bottom: 20px;
position: relative;
}
ul.availabily-list li > div {
display: inline-block;
width: 19.5%;
vertical-align: middle;
padding: 0;
margin: 0;
}
ul.availabily-list li > div span {
display: block;
font-size: 16px;
font-weight: 600;
}
ul.availabily-list li > div.date-from,
ul.availabily-list li > div.date-to {
width: 23%;
}
ul.availabily-list li > div.date-from {
padding-right: 10px;
}
ul.availabily-list li > div.date-to {
padding-left: 10px;
}
ul.availabily-list li > div.price {
width: 12.5%;
}
ul.availabily-list li > div.status,
ul.availabily-list li > div.price {
text-align: center;
}
ul.availabily-list li > div.action {
text-align: right;
}
ul.availabily-list li > div.action .btn {
margin-right: -8px;
}
ul.availabily-list li.availabily-heading {
font-size: 12px;
color: #999;
padding-bottom: 5px;
}
ul.availabily-list li.availabily-content.sold-out:after {
content: "";
position: absolute;
left: 0;
right: 5px;
top: 0;
bottom: 0;
width: 100%;
background: rgba(255, 255, 255, 0.6);
display: block;
}
ul.availabily-list li > div span.availabily-heading-label {
display: none;
font-size: 12px;
color: #999;
font-weight: 400;
}
ul.availabily-list li > div.date-from {
position: relative;
}
ul.availabily-list li.availabily-content > div.date-from:after {
font-family: 'FontAwesome';
content: "\f058";
position: absolute;
top: 50%;
right: 0;
margin-top: -4px;
display: block;
color: #010164;
}
ul.availabily-list li.availabily-content.sold-out > div.date-from:after {
display: none;
}
.detail-content-wrapper {
padding-right: 15px;
}
.detail-content {
border-bottom: 1px solid #E3E3E3;
padding-bottom: 30px;
margin-bottom: 50px;
}
.detail-content .map-route {
width: 50%;
float: right;
margin: 5px 0;
margin-left: 15px;
}
/**
* Page Title & Breadcrumb
*/
.page-title {
font-size: 20px;
font-weight: 600;
margin-bottom: 0px;
margin-top: 7px;
}
.page-title-alt{
margin-bottom: 15px !important;
margin-top: 0px !important;
}
.page-title h1 {
color: rgba(255, 255, 255, 1);
margin: 0 0 5px;
}
.page-title p.lead {
font-weight: 300;
}
ol.breadcrumb-list li {
display: inline-block;
line-height: 1;
color: rgba(255, 255, 255, 1);
font-size: 12px;
}
ol.breadcrumb-list li a {
color: rgba(255, 255, 255, 1);
font-weight: 600;
}
ol.breadcrumb-list li a:hover {
color: rgba(255, 255, 255, 0.8);
}
ol.breadcrumb-list li a:after {
content: "/";
margin: 0 7px;
}
ol.breadcrumb-list li span {
font-weight: 600;
}
ol.breadcrumb-list.booking-step li a:after,
ol.breadcrumb-list.booking-step li:not(:last-child) span:after {
font-family: 'FontAwesome';
content: "\f105 ";
margin: 0 7px;
}
.page-title.detail-page-title {
padding: 220px 0 30px;
text-align: left;
}
.breadcrumb-wrapper {
padding: 10px 0;
}
.breadcrumb-wrapper ol.breadcrumb-list li a {
color: #010164;
}
.breadcrumb-wrapper ol.breadcrumb-list li a:hover {
color: #D65049;
}
.breadcrumb-wrapper ol.breadcrumb-list li span,
.breadcrumb-wrapper ol.breadcrumb-list li a:after {
color: #666;
}
.page-title.detail-page-title .list-col {
line-height: 1;
}
.page-title.detail-page-title ul.list-col li:not(:last-child)::after {
background: rgba(255, 255, 255, 0.8);
bottom: auto;
height: 33px;
}
.page-title.detail-page-title .list-col li.rating-box::after {
top: -1px;
}
.page-title.detail-page-title .list-col li.fav-box::after {
top: 1px;
}
.page-title.detail-page-title .btn-fav {
background: none;
color: #FFF;
padding: 0;
}
.page-title.detail-page-title .list-col .duration-box .meta {
display: inline-block;
}
.page-title.detail-page-title .list-col .duration-box .meta:not(:last-child) {
margin-right: 7px;
}
.page-title.detail-page-title .meta span {
font-size: 18px;
font-weight: 600;
margin-bottom: 3px;
}
.page-title.detail-page-title {}
.availabily-wrapper {}
ul.availabily-list {}
ul.availabily-list li {
border-bottom: 1px solid #E3E3E3;
line-height: 1.2;
padding: 0;
margin: 0;
margin-bottom: 20px;
padding-bottom: 20px;
position: relative;
}
ul.availabily-list li > div {
display: inline-block;
width: 19.5%;
vertical-align: middle;
padding: 0;
margin: 0;
}
ul.availabily-list li > div span {
display: block;
font-size: 16px;
font-weight: 600;
}
ul.availabily-list li > div.date-from,
ul.availabily-list li > div.date-to {
width: 23%;
}
ul.availabily-list li > div.date-from {
padding-right: 10px;
}
ul.availabily-list li > div.date-to {
padding-left: 10px;
}
ul.availabily-list li > div.price {
width: 12.5%;
}
ul.availabily-list li > div.status,
ul.availabily-list li > div.price {
text-align: center;
}
ul.availabily-list li > div.action {
text-align: right;
}
ul.availabily-list li > div.action .btn {
margin-right: -8px;
}
ul.availabily-list li.availabily-heading {
font-size: 12px;
color: #999;
padding-bottom: 5px;
}
ul.availabily-list li.availabily-content.sold-out:after {
content: "";
position: absolute;
left: 0;
right: 5px;
top: 0;
bottom: 0;
width: 100%;
background: rgba(255, 255, 255, 0.6);
display: block;
}
ul.availabily-list li > div span.availabily-heading-label {
display: none;
font-size: 12px;
color: #999;
font-weight: 400;
}
ul.availabily-list li > div.date-from {
position: relative;
}
ul.availabily-list li.availabily-content > div.date-from:after {
font-family: 'FontAwesome';
content: "\f058";
position: absolute;
top: 50%;
right: 0;
margin-top: -4px;
display: block;
color: #010164;
}
ul.availabily-list li.availabily-content.sold-out > div.date-from:after {
display: none;
}
.detail-content-wrapper {
padding-right: 15px;
}
.detail-content {
border-bottom: 1px solid #E3E3E3;
padding-bottom: 40px;
margin-bottom: 50px;
}
.detail-content .map-route {
width: 50%;
float: right;
margin: 5px 0;
margin-left: 15px;
}
@media (min-width: 768px) {}
@media only screen and (max-width: 1199px) {
ul.availabily-list li > div.action .btn {
margin-right: -4px;
}
.detail-content-wrapper {
padding-right: 0;
}
}
.hero-title{
color: #fff;
font-size: 20px;
}
@media only screen and (max-width: 991px) {
ul.availabily-list li {
font-size: 13px;
}
ul.availabily-list li > div span {
display: block;
font-size: 14px;
}
ul.availabily-list li > div.action .btn {
font-size: 10px;
margin-right: 0px;
}
}
@media only screen and (max-width: 767px) {
ul.availabily-list li.availabily-heading {
display: none;
}
ul.availabily-list li > div {
display: block;
width: 100% !important;
position: relative;
padding-left: 95px !important;
text-align: left !important;
margin-bottom: 15px;
}
ul.availabily-list li > div span.availabily-heading-label {
display: block;
position: absolute;
top: 0;
left: 0;
text-align: right;
width: 80px;
}
ul.availabily-list li.availabily-content > div.date-from:after {
top: 0;
right: auto;
left: 0;
margin-top: 0;
}
.page-title.detail-page-title {
padding: 100px 0 30px;
}
}
@media (min-width: 768px) {}
@media only screen and (max-width: 1199px) {
ul.availabily-list li > div.action .btn {
margin-right: -4px;
}
.detail-content-wrapper {
padding-right: 0;
}
}
@media only screen and (max-width: 991px) {
ul.availabily-list li {
font-size: 13px;
}
ul.availabily-list li > div span {
display: block;
font-size: 14px;
}
ul.availabily-list li > div.action .btn {
font-size: 10px;
margin-right: 0px;
}
}
@media only screen and (max-width: 767px) {
ul.availabily-list li.availabily-heading {
display: none;
}
ul.availabily-list li > div {
display: block;
width: 100% !important;
position: relative;
padding-left: 95px !important;
text-align: left !important;
margin-bottom: 15px;
}
ul.availabily-list li > div span.availabily-heading-label {
display: block;
position: absolute;
top: 0;
left: 0;
text-align: right;
width: 80px;
}
ul.availabily-list li.availabily-content > div.date-from:after {
top: 0;
right: auto;
left: 0;
margin-top: 0;
}
.page-title.detail-page-title {
padding: 100px 0 30px;
}
}
@media (max-width: 479px) {}
/**
* Main Search Form
*/
.main-search-wrapper {}
.main-search-wrapper > .inner {}
.main-search-wrapper .column-item {}
.main-search-wrapper .form-control {
height: 40px;
border-color: #FFF;
}
.main-search-wrapper .btn {
padding-top: 13px;
padding-bottom: 12px;
}
.main-search-wrapper .select2-container .select2-selection--single {
height: 40px;
border-color: #FFF;
}
.main-search-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
padding-top: 9px;
}
.main-search-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
top: 7px;
}
.main-search-wrapper .select2-container--default .select2-selection--single:focus {
border-color: #FFF !important;
}
.main-search-wrapper .select2-container--default.select2-container--open .select2-selection--single {
border-color: #CCC;
}
.main-search-wrapper .select2-dropdown {
border: 1px solid #FFF !important;
}
.main-search-wrapper .select2-container .select2-selection--multiple {
height: 40px;
border-color: #FFF;
overflow: hidden;
}
.main-search-wrapper .select2-container--default.select2-container--open .select2-selection--multiple {
border-color: #CCC;
}
.main-search-wrapper .select2-container .select2-selection--multiple .select2-selection__rendered {
padding-top: 2px;
}
.main-search-wrapper.full-width {
width: 80%;
margin: 15px auto 0;
}
.main-search-wrapper.full-width > .inner {
margin-left: -10px;
margin-right: -10px;
}
.main-search-wrapper.full-width .column-item {
float: left;
width: 25%;
padding: 0 10px;
}
.main-search-wrapper.at-right > .inner {
margin-left: 50%;
}
.main-search-wrapper.at-left {
width: 330px;
padding-right: 50px;
}
.main-search-holder {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 100%;
z-index: 3;
color: #FFF;
padding-top: 130px;
}
.main-search-holder h1 {
color: rgba(255, 255, 255, 1);
font-size: 58px;
font-weight: 400;
margin-top: 0;
text-align: center;
letter-spacing: 0;
}
.main-search-holder p.lead {
margin-bottom: 30px;
font-size: 25px;
line-height: 31px;
font-weight: 300;
text-align: center;
}
.main-search-holder .btn {
padding-left: 40px;
padding-right: 40px;
}
@media (min-width: 768px) {}
@media only screen and (max-width: 1199px) {
.main-search-full-wrapper {
width: 100%;
}
.main-search-wrapper.full-width {
width: 90%;
}
}
@media only screen and (max-width: 991px) {
.main-search-full-wrapper {
width: 50%;
}
.main-search-full-wrapper .column-item {
width: 100%;
}
.main-search-wrapper.full-width {
width: 75%;
}
.main-search-wrapper.full-width .column-item {
width: 50%;
}
}
@media only screen and (max-width: 767px) {
.main-search-full-wrapper {
width: 60%;
margin: 0 auto;
}
.main-search-wrapper.full-width {
width: 90%;
margin-top: 5px;
}
.main-search-wrapper.full-width .column-item {
width: 50%;
}
.main-search-holder {
padding: 35px 0;
}
.main-search-holder h1 {
font-size: 36px;
}
.main-search-holder p.lead {
font-size: 17px;
line-height: 1.4;
}
}
@media (max-width: 479px) {
.main-search-full-wrapper {
width: 80%;
}
.main-search-wrapper.full-width .column-item {
width: 100%;
}
.main-search-holder h1 {
font-size: 28px;
margin-top: 5px;
}
.main-search-holder p.lead {
font-size: 15px;
}
}
.btn-more-less {
background: none;
padding: 0;
font-size: 10px;
font-weight: 600;
}
.btn-more-less.collapsed:before {
content: '+ ';
}
.btn-more-less:before {
content: '- ';
}
.more-less-inner {
margin: 0;
}
.read-more-div-open {
display: block;
}
.read-more-div-close {}
ul.sidebar-category,
ul.sidebar-archives {
margin-top: 15px;
}
ul.sidebar-category li,
ul.sidebar-archives li {
border-bottom: 1px solid #F0F0F1;
padding-bottom: 10px;
margin-bottom: 10px;
line-height: 1.4;
}
ul.sidebar-category li:last-child,
ul.sidebar-archives li:last-child {
margin-bottom: 0;
}
ul.sidebar-category li a,
ul.sidebar-archives li a {
display: block;
}
ul.sidebar-category li a span,
ul.sidebar-archives li a span {
float: right;
font-size: 12px;
color: #A3A3A3;
}
ul.sidebar-category li a:hover,
ul.sidebar-archives li a:hover {
padding-left: 5px;
}
ul.sidebar-post {
margin-top: 15px;
}
ul.sidebar-post li {
border-bottom: 1px solid #F0F0F1;
padding-bottom: 15px;
margin-bottom: 10px;
line-height: 1.4;
}
ul.sidebar-post li:last-child {
margin-bottom: 0;
}
ul.sidebar-post li h6 {
margin: 0 0 5px;
}
ul.sidebar-post li h6 {
color: #333;
font-weight: 400;
}
ul.sidebar-post li a:hover h6 {
color: #D65049;
}
ul.sidebar-post li .image {
width: 80px;
float: left;
margin-top: 5px;
}
ul.sidebar-post li .image img {
display: block;
}
ul.sidebar-post li .content {
margin-left: 90px;
}
ul.sidebar-post li .recent-post-sm-meta {
margin: 10px 0 0;
color: #A3A3A3 !important;
font-size: 12px;
}
.tag-cloud {
margin-top: 15px;
margin-bottom: -5px;
}
.tag-cloud span {
display: block;
float: left;
line-height: 1;
padding: 5px 7px;
padding-left: 0;
margin-left: 0;
margin-bottom: 5px;
}
.tag-cloud a {
border: 1px solid #E3E3E3;
line-height: 1;
font-size: 12px;
padding: 5px 7px;
margin-left: 3px;
margin-bottom: 5px;
display: block;
float: left;
color: #777;
border-radius: 3px;
}
.tag-cloud a:hover {
background: #D65049;
color: #FFF !important;
border-color: #D65049;
}
.tag-cloud-wrapper {
border-top: 1px solid #EFEFEF;
position: relative;
margin: 20px 0 0;
padding: 20px 0 0;
}
.tag-cloud-wrapper .tag-cloud-heading {
float: left;
}
.tag-cloud-wrapper .tag-cloud {
margin-left: 50px;
margin-top: 5px;
}
.sidebar-text-widget ul {
margin: 0;
margin-left: 25px;
padding: 0;
}
.sidebar-text-widget ul li {
list-style: circle;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.sidebar {
margin-bottom: 30px;
}
}
@media (max-width: 479px) {}
/**
* Sorting
*/
.sorting-wrappper {
margin: 0 0 23px;
}
.sorting-wrappper h3 {
line-height: 1.2;
margin: 0;
}
.sorting-wrappper h3 small {
font-size: 70%;
}
.sorting-header {
margin: 0 0 15px;
}
.sort-by-wrapper {
line-height: 1.2;
display: table;
}
.sorting-label {
vertical-align: middle;
display: table-cell;
font-weight: 400;
}
.sorting-middle-holder {
display: inline-block;
margin: 0;
margin-left: 7px;
line-height: 1;
vertical-align: middle;
}
.sorting-middle-holder .form-control {
margin: 0;
}
ul.sort-by {
margin: 0;
padding: 0;
clear: both;
line-height: 1.2;
}
ul.sort-by li {
display: inline-block;
margin: 5px 10px;
}
ul.sort-by li a {
display: block;
position: relative;
color: #666;
}
ul.sort-by li a:after {
content: "";
position: absolute;
bottom: -5px;
left: 0;
right: 0;
height: 2px;
background: transparent;
}
ul.sort-by li.active a,
ul.sort-by li a:hover {
color: #010164;
}
ul.sort-by li.active a:after {
background: #010164;
}
.btn-sorting {
border: 0;
padding: 4px 0 0;
font-size: 16px;
line-height: 1.2;
color: #999;
}
.btn-sorting.active,
.btn-sorting:hover {
color: #010164;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
ul.sort-by li {
display: inline-block;
margin: 5px;
}
}
@media only screen and (max-width: 767px) {}
@media (max-width: 479px) {
.sort-by-wrapper {
line-height: 1.2;
display: block;
}
.sorting-label {
display: block;
}
.sorting-middle-holder {
display: block;
margin: 10px 0 0;
}
ul.sort-by li {
margin-left: 0;
margin-right: 7px;
}
}
/**
* Pager
*/
.pager-wrappper {
margin-top: 15px;
}
.pager-inner {
line-height: 1;
display: table;
}
.pager-label {
vertical-align: middle;
display: table-cell;
font-weight: 400;
}
.pager-middle-holder {
display: inline-block;
margin: 0;
margin-left: 7px;
line-height: 1;
white-space: nowrap;
vertical-align: middle;
}
.pager-right {
float: right;
}
.pagination {
margin: 9px 0 0;
}
.pagination > li > a,
.pagination > li > span {
padding: 0;
margin: 0 3px;
color: #337ab7;
border: 0;
display: block;
width: 24px;
height: 24px;
line-height: 23px;
border-radius: 50%;
text-align: center;
color: #666;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
color: #D65049;
background-color: #FFF;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
background-color: #010164;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.pager-right {
float: left;
}
}
@media only screen and (max-width: 767px) {}
@media (max-width: 479px) {}
/**
* Featured
*/
.featured-item:not(:last-child) {
margin-bottom: 30px;
}
.featured-item h4 {
color: #333;
}
.featured-item .content .icon {
float: left;
font-size: 56px;
color: #010164;
margin-top: 5px;
}
.featured-item .content p {
margin-left: 70px;
}
.featured-count {
line-height: 1.2;
margin: 15px 0;
}
.featured-count .icon {
width: 44px;
float: left;
font-size: 47px;
}
.featured-count .content {
margin-left: 55px;
padding-top: 5px;
}
.featured-count h6 {
color: #333;
margin: 0 0 5px;
}
.call-to-action {
text-align: center;
}
.call-to-action .btn {
margin: 0 15px;
margin-top: -3px;
}
ul.featured-list-sm {
margin-top: 25px;
}
ul.featured-list-sm li {
position: relative;
padding-left: 50px;
margin: 15px 0 25px;
line-height: 1.5;
}
ul.featured-list-sm li:last-child {
margin-bottom: 0;
}
ul.featured-list-sm li .icon {
position: absolute;
top: 0;
left: 0;
width: 34px;
height: 34px;
display: block;
line-height: 30px;
text-align: center;
color: #010164;
border: 2px solid #010164;
font-size: 16px;
border-radius: 3px;
}
ul.featured-list-sm li h6 {
text-transform: uppercase;
margin: 0 0 10px;
}
.featured-icon-item {
margin: 50px 15px 0;
}
.featured-icon-item .icon {
font-size: 54px;
color: #00AFF1;
margin: 0 0 25px;
width: 90px;
height: 90px;
line-height: 95px;
text-align: center;
border: 2px solid #00AFF1;
border-radius: 50%;
}
.featured-icon-item h4 {
text-transform: uppercase;
font-weight: 300;
line-height: 1.2;
margin: 0 0 20px;
}
.promo-box {
background: #00AFF1;
color: #FFF;
text-align: center;
padding: 90px 0;
line-height: 1;
font-size: 42px;
font-weight: 300;
}
.process-item {
padding: 0 20px;
position: relative;
}
.process-item .process-step {
width: 34px;
height: 34px;
line-height: 32px;
text-align: center;
color: #F5F8FB;
position: absolute;
top: -17px;
left: 2px;
border-radius: 50%;
font-size: 12px;
font-weight: 700;
background: #00AFF1;
border: 2px solid #F5F8FB;
}
.process-item .image {
width: 160px;
margin: 15px 0 20px;
}
.process-item .image img {
border-radius: 3px;
}
.process-item a {
line-height: 1;
}
.process-item a i {
margin-left: 7px;
}
.icon-fearured .icon {
width: 46px;
height: 46px;
line-height: 46px;
border-radius: 3px;
text-align: center;
font-size: 21px;
margin: 0 0 20px;
}
/**
* Destinations
*/
.destination-grid-wrapper {
margin-left: -15px;
margin-right: -15px;
}
.destination-grid-wrapper > .grid-item {
padding: 15px;
}
.top-destination-image-bg {
position: relative;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
color: rgba(255, 255, 255, 0.9);
position: relative;
width: 100%;
height: 100%;
}
.top-destination-image-bg span {
color: rgba(255, 255, 255, 0.9);
}
.top-destination-image-bg::before {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
content: "";
transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
}
.top-destination-image-bg:hover::before {
background: rgba(0, 0, 0, 0.5);
}
a.top-destination-image-bg {
display: block;
color: rgba(255, 255, 255, 1);
position: relative;
padding: 30px;
font-weight: 400;
font-size: 13px;
}
.top-destination-image-bg h4 {
color: rgba(255, 255, 255, 1);
text-transform: uppercase;
margin: 0 0 5px;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.destination-grid-wrapper {
margin-left: -10px;
margin-right: -10px;
}
.destination-grid-wrapper > .grid-item {
padding: 10px;
}
}
@media only screen and (max-width: 767px) {
.destination-grid-wrapper {
margin-left: -5px;
margin-right: -5px;
}
.destination-grid-wrapper > .grid-item {
padding: 5px;
}
}
@media (max-width: 479px) {}
/**
* Tour Package
*/
.package-grid-item-wrapper {
margin-bottom: -30px;
}
.package-grid-item {
background: #FFF;
border-radius: 3px;
-webkit-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.16);
-moz-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.16);
box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.16);
o-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-webkit-transition: all 0.3s ease-out;
}
.package-grid-item:hover {
-webkit-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.4);
box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.4);
}
.package-grid-item-wrapper .image {
position: relative;
}
.package-grid-item-wrapper .image img {
border-radius: 3px 3px 0 0;
}
.package-grid-item .absolute-in-image .duration {
padding: 15px;
}
.package-grid-item .absolute-in-image .duration span {
background: #010164;
color: #FFF;
padding: 4px 7px;
border-radius: 3px;
line-height: 1;
display: inline-block;
font-size: 12px;
}
.package-grid-item a {
color: #666;
font-weight: 400;
}
.package-grid-item a h5,
.package-grid-item a h6 {
color: #333;
margin: 0 0 10px;
line-height: 2.2;
}
.package-grid-item .content {
padding: 15px;
padding-right: 90px;
padding-bottom: 0px;
position: relative;
}
.absolute-in-content {
position: absolute;
right: 15px;
top: 8px;
width: 50px;
line-height: 1;
text-align: right;
}
.absolute-in-content .btn {
background: none;
/* padding: 4px 0; */
font-size: 18px;
}
.absolute-in-content .price {
color: #010164;
font-size: 16px;
font-weight: 700;
}
.package-grid-item .raty-wrapper > div {
float: left;
margin-right: 7px;
margin-top: -1px;
}
.package-grid-item .raty-wrapper > div span {
padding-left: 5px;
display: inline-block;
padding-top: 5px;
}
.on-page-result-page .package-grid-item .raty-wrapper > div {
margin-top: 0;
}
.on-page-result-page .package-grid-item {
-webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.2);
}
.on-page-result-page .package-grid-item:hover {
-webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.4);
box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.4);
}
.alt-smaller .absolute-in-content .btn {
/* padding: 3px 0 2px; */
}
.alt-smaller .price {
color: #010164;
font-size: 14px;
}
.package-list-item {
border-radius: 3px;
background: #FFF;
-webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.2);
margin-bottom: 30px;
o-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-webkit-transition: all 0.3s ease-out;
}
.package-list-item:hover {
-webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.4);
box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.4);
}
.package-list-item .image {
width: 25%;
float: left;
position: relative;
}
.package-list-item .image img {
border-radius: 3px 0 0 3px;
}
.package-list-item .absolute-in-image .duration {
padding: 15px;
}
.package-list-item .absolute-in-image .duration span {
background: #010164;
color: #FFF;
padding: 4px 7px;
border-radius: 3px;
line-height: 1;
display: inline-block;
font-size: 12px;
}
.package-list-item .content {
width: 75%;
float: left;
padding: 0 20px;
position: relative;
}
.package-list-item .content h5 {
color: #333;
margin: 18px 0 10px;
line-height: 1;
}
.package-list-item .content h5 .btn {
background: none;
padding: 0;
font-size: 18px;
float: right;
}
.package-list-item .rating-wrapper {
margin-top: 5px;
}
.package-list-item .content .price {
color: #010164;
font-size: 16px;
font-weight: 700;
margin: 17px 0 40px;
text-align: right;
margin-top: -23px;
}
.package-list-item .btn-absolute {
position: absolute;
right: 0;
bottom: 20px;
}
ul.list-info {
margin: 0;
}
ul.list-info li {
line-height: 1;
position: relative;
padding-left: 27px;
}
ul.list-info li:not(:last-child) {
margin-bottom: 15px;
}
ul.list-info li .icon {
position: absolute;
left: 0;
top: -4px;
width: 20px;
height: 20px;
line-height: 19px;
padding-left: 1px;
border-radius: 50%;
background: #010164;
color: #FFF;
text-align: center;
font-size: 10px;
}
ul.list-info.no-icon li {
padding-left: 0;
}
ul.list-info.bb-dotted li {
border-bottom: 1px dotted #E1E1E1;
padding-bottom: 12px;
margin: 0 0 12px;
}
.hotel-item-wrapper {
margin-bottom: 20px;
}
.hotel-item {
position: relative;
}
.hotel-item a {
display: block;
}
.hotel-item .content {
position: absolute;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.3);
o-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-webkit-transition: all 0.3s ease-out;
}
.hotel-item:hover .content {
background: rgba(0, 0, 0, 0.7);
}
.hotel-item .content h5,
.hotel-item .content h6 {
color: #FFF;
line-height: 1;
padding: 10px;
margin: 0;
}
@media only screen and (max-width: 1199px) {
.package-list-item {
padding: 15px;
}
.package-list-item .image {
width: 40%;
}
.package-list-item .content {
width: 60%;
}
.package-list-item .image img {
border-radius: 3px;
}
.package-list-item .content {
padding-right: 0;
}
.package-list-item .content h5 {
margin: 0 0 10px;
}
.package-list-item .content .price {
margin-bottom: 20px;
}
}
@media only screen and (max-width: 991px) {
.package-list-item {
padding: 10px;
}
.package-list-item .rating-wrapper {
margin-top: 20px;
}
.package-list-item .content .price {
margin: 7px 0;
}
}
@media only screen and (max-width: 767px) {
.package-list-item .content {
padding-left: 15px;
}
}
@media (max-width: 479px) {
.package-list-item .image {
width: 100%;
}
.package-list-item .content {
width: 100%;
padding: 15px 0 0;
}
}
/**
* Itinerary
*/
.itinerary-wrapper {
padding-left: 15px;
}
.itinerary-item-wrapper {
border-left: 1px dashed #CCC;
padding-left: 30px;
margin-top: 10px;
margin-left: 11px;
}
.itinerary-item {
margin-bottom: 30px;
}
.itinerary-item h5,
.itinerary-item h5 a {
font-size: 17px;
margin: 0;
color: #333;
line-height: 1;
}
.itinerary-item.intro-item {
position: relative;
padding-left: 40px;
}
.itinerary-item.intro-item:before {
font-family: 'FontAwesome';
content: "\f12a";
position: absolute;
top: 0;
left: 0;
width: 22px;
height: 22px;
line-height: 22px;
background: #010164;
color: #FFF;
border-radius: 50%;
display: block;
text-align: center;
font-size: 12px;
}
.itinerary-item.intro-item .intro-item-body {
margin-top: 20px;
}
.itinerary-item-wrapper .panel-heading a:before,
.panel-heading a:after,
.itinerary-item-wrapper .panel-heading.active a:after {
display: none;
}
.itinerary-item-wrapper .panel-heading .absolute-day-number {
position: absolute;
top: -1px;
left: -42px;
background: #010164;
border: 2px solid #010164;
color: #FFF;
width: 22px;
height: 22px;
line-height: 18px;
border-radius: 50%;
display: block;
text-align: center;
font-size: 12px;
}
.itinerary-item-wrapper .panel-heading.active .absolute-day-number {
background: #FFF;
border: 2px solid #010164;
color: #010164;
}
.itinerary-item-wrapper .panel-title a {
padding: 0;
}
.itinerary-item-wrapper .itinerary-item:not(:last-child) {
margin-bottom: 30px;
}
.itinerary-item-wrapper .panel-body {
padding: 20px 0 0;
}
ul.itinerary-meta {
margin-left: 0;
}
ul.itinerary-meta li {
float: left;
margin-right: 25px;
font-weight: 600;
font-size: 12px;
list-style: none;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.itinerary-wrapper {
padding-left: 0;
}
}
@media (max-width: 479px) {}
/**
* Why us
*/
.why-us-half-image-wrapper {
padding: 0;
}
.why-us-half-image-wrapper .image-bg {
width: 100%;
min-height: 320px;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
.why-us-half-image-content {
padding: 105px;
}
@media only screen and (max-width: 1199px) {
.why-us-half-image-content {
padding: 105px 80px;
}
}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.why-us-half-image-content {
padding: 60px 20px;
}
}
@media (max-width: 479px) {}
/**
* Testimonial
*/
.testimonial-wrapper {
margin-bottom: -10px;
}
.testimonial-item {
margin: 10px 0;
}
.testimonial-item .image {
width: 200px;
float: left;
}
.testimonial-item .image img {
border-radius: 3px;
}
.testimonial-item .content {
margin-left: 230px;
}
.testimonial-item .content h4 {
color: #333;
margin-bottom: 0;
}
.testimonial-item .content h6 {
color: #999;
margin: 0 0 10px;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.testimonial-item {
margin-bottom: 30px;
}
.testimonial-wrapper > div > div:last-child > .testimonial-item {
margin-bottom: 0;
}
}
@media only screen and (max-width: 767px) {
.testimonial-item .image {
width: 100px;
}
.testimonial-item .content {
margin-left: 120px;
}
.testimonial-item .content h4 {
margin-top: 0;
}
}
@media (max-width: 479px) {}
/**
* Newsletter
*/
.newsletter-text {
margin: 30px 0;
line-height: 1.4;
}
.newsletter-text .icon {
width: 90px;
height: 90px;
line-height: 98px;
text-align: center;
background: #010164;
border-radius: 50%;
color: #FFF;
float: left;
font-size: 45px;
}
.newsletter-text .content {
margin-left: 110px;
padding-top: 5px;
}
.newsletter-text h3 {
color: #333;
margin: 0 0 5px;
}
.newsletter-form {
margin-top: 5px;
-webkit-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.16);
-moz-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.16);
box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.16);
}
.newsletter-form .form-control {
height: 40px;
padding-left: 15px;
padding-top: 7px;
}
.newsletter-form .btn {
margin-right: -1px;
height: 40px;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.newsletter-wrapper {
padding: 20px 0 60px;
}
.newsletter-form {
margin: 0 110px;
}
}
@media only screen and (max-width: 767px) {
.newsletter-form {
margin-right: 30px;
}
}
@media (max-width: 479px) {
.newsletter-form {
margin: 0;
}
}
/**
* About Us
*/
.about-us-grid-block .image-bg {
width: 100%;
}
.about-us-grid-block-item {
background: #010164;
color: #FFF;
padding: 30px;
}
.team-item {
text-align: center;
}
.team-item .image {
width: 150px;
margin: 0 auto;
}
.team-item h5,
.team-item h6 {
margin: 25px 0 10px;
line-height: 1.1;
color: #333;
}
.team-item p {
margin: 0 0 8px;
line-height: 1.1;
}
.team-item ul.social {
margin: 0;
}
.team-item ul.social li {
display: inline-block;
margin: 0 5px;
}
.team-item ul.social li a {
color: #999;
}
.team-item ul.social li a:hover {
color: #D65049;
}
.partner-image-item {
text-align: center;
}
.partner-image-item img {
width: auto;
display: inline-block;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.about-us-grid-block .image-bg {
height: 100px;
}
}
@media (max-width: 479px) {}
/**
* Review
*/
.review-header {
line-height: 1.2;
margin-bottom: 30px;
}
.review-header h5,
.review-header h6 {
color: #333;
line-height: 1;
margin: 0 0 10px;
}
.review-header h6 {
margin-top: 3px;
}
.review-overall-breakdown {
border-left: 1px solid #E3E3E3;
padding-left: 30px;
}
.review-overall-point {
font-size: 15px;
margin: 0;
}
.review-overall-point span {
font-weight: 600;
color: #010164;
font-size: 19px;
}
.review-overall-breakdown .rating-wrapper {
width: 110px;
float: left;
}
.review-overall-breakdown .rating-wrapper .raty-wrapper > div {
display: inline-block;
vertical-align: middle;
}
.review-overall-breakdown .progress {
width: 110px;
float: left;
margin: 0;
margin-top: 4px;
}
.review-overall-breakdown .breakdown-count {
width: 40px;
float: left;
text-align: right;
margin-top: 1px;
}
ul.breakdown-list {
margin-top: 20px;
}
ul.breakdown-list li:not(:last-child) {
margin: 0 0 5px;
}
ul.breakdown-list.for-avg li {
line-height: 1.23;
}
ul.breakdown-list.for-avg li:not(:last-child) {
margin: 1px 0 7px;
}
.review-content .row > div > h5 {
color: #333;
line-height: 1;
margin: 7px 0 10px;
}
ul.review-list {
margin-top: 15px;
border-top: 1px solid #E3E3E3;
padding-top: 25px;
}
ul.review-list > li {
position: relative;
border-bottom: 1px solid #E3E3E3;
padding-bottom: 25px;
margin-bottom: 25px;
}
ul.review-list > li:last-child {
border-bottom: 0;
padding-bottom: 0;
}
ul.review-list li .image {
width: 50px;
height: 50px;
position: absolute;
top: 0;
left: 0;
}
ul.review-list li .content {
padding-left: 70px;
float: left;
}
ul.review-list li .content h6 {
color: #333;
line-height: 1.2;
margin: 0 0 10px;
}
ul.review-list li .content h6 span {
font-weight: 400;
color: #999;
}
ul.review-list li .content .review-date {
text-align: right;
line-height: 1;
margin: 0 0 10px;
font-size: 11px;
color: #999;
}
ul.review-list li .rating-wrapper {
margin: 10px 0;
}
.review-form {
margin-top: 20px;
}
.review-form-title {
color: #333;
line-height: 1;
}
.review-text ul,
.review-text ol {
list-style: disc;
margin-left: 20px;
line-height: 25px;
}
.review-text ul li,
.review-text ol li {
margin-bottom: 7px;
}
.review-text ul ul,
.review-text ol ol {
margin-top: 7px;
}
.review-text > ul,
.review-text > ol {
margin-bottom: 15px;
}
.review-text ol {
list-style: decimal;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.review-overall-breakdown {
border-left: 0;
padding-left: 0;
padding-top: 30px;
}
ul.review-list li .image {
width: 40px;
height: 40px;
}
ul.review-list li .content {
padding-left: 55px;
}
ul.review-list li .content .review-date {
text-align: left;
}
}
@media (max-width: 479px) {}
/**
* Faq
*/
.faq-wrapper {
padding-left: 15px;
}
.faq-wrapper h3 {
margin: 0 0 25px;
}
.faq-section {
border-bottom: 1px solid #E3E3E3;
margin: 0 0 40px;
}
.faq-section h4 {
margin: 8px 0 0;
}
.faq-section .panel-body {
padding-top: 0;
padding-bottom: 10px;
}
.faq-alt-2-wrapper {}
.faq-alt-2-wrapper .bootstarp-accordion .panel-heading {
border-bottom: 1px dotted #E3E3E3;
margin-left: 25px;
padding: 15px 0;
}
.faq-alt-2-wrapper .bootstarp-accordion .panel-heading a {
padding: 0;
line-height: 1;
font-size: 14px;
}
.faq-alt-2-wrapper .bootstarp-accordion .panel-heading a:before {
content: '\f059';
right: auto;
left: -25px;
top: -1px;
-webkit-transform: rotate(0);
transform: rotate(0);
color: #010164;
}
.faq-alt-2-wrapper .bootstarp-accordion .panel-heading.active a:before {
content: '\f128';
}
.faq-alt-2-wrapper .panel-body {
margin-left: 25px;
}
.for-faq-page .scrollspy-sidenav {
padding-top: 0;
border: 0;
}
.for-faq-page.scrollspy-sidebar .nav > li > a {
padding-left: 0;
border-left: 4px solid #FFF !important;
border-right: 4px solid #FFF;
}
.for-faq-page.scrollspy-sidebar .nav > li > a:hover {
border-right: 4px solid #010164;
}
.for-faq-page.scrollspy-sidebar .nav > li > a:focus {
border-right: 4px solid #EEEEEE;
}
.for-faq-page.scrollspy-sidebar .nav > .active > a,
.for-faq-page.scrollspy-sidebar .nav > .active:hover > a,
.for-faq-page.scrollspy-sidebar .nav > .active:focus > a {
border-right: 4px solid #010164 !important;
border-left: 4px solid #FFF !important;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.faq-wrapper {
padding-left: 0;
}
}
@media (max-width: 479px) {}
/**
* Payment
*/
.payment-container {
border-left: 1px dashed #CCC;
padding-left: 40px;
margin-left: 13px;
padding-right: 15px;
}
.payment-box {
margin: 0 0 40px;
border-bottom: 1px solid #E3E3E3;
padding-bottom: 30px;
}
.payment-header {
position: relative;
}
.payment-header:before {
content: "";
width: 25px;
position: absolute;
left: -30px;
top: 9px;
border-top: 1px dashed #CCC;
}
.payment-header .number {
width: 26px;
height: 26px;
line-height: 26px;
border-radius: 50%;
background: #010164;
color: #FFF;
text-align: center;
position: absolute;
top: -4px;
left: -53px;
font-weight: 600;
font-size: 12px;
}
.payment-content .control-label {}
.payment-content input[type='radio'] + label:before {
top: 12px;
}
.payment-traveller {
margin: 0 0 30px;
border-bottom: 1px solid #E3E3E3;
padding-bottom: 20px;
position: relative;
}
.traveller-remove {
position: absolute;
left: 0;
top: 13px;
}
.price-summary-wrapper {
border: 4px solid #EEE;
border-radius: 3px;
padding: 30px 20px;
}
ul.price-summary-list li {
margin-bottom: 18px;
line-height: 1.2;
}
ul.price-summary-list li p {
margin-top: 5px;
}
ul.price-summary-list li.divider {
border-top: 1px solid #EEE;
}
ul.price-summary-list li.total-price {
background: #010164;
color: #FFF;
margin: 25px -19px -29px;
padding: 20px 19px;
}
@media only screen and (max-width: 1199px) {
.payment-container {
padding-right: 0;
}
}
@media only screen and (max-width: 991px) {
.traveller-remove {
left: auto;
right: 0;
}
}
@media only screen and (max-width: 767px) {}
@media (max-width: 479px) {}
/**
* Confirmation
*/
.confirmation-wrapper {
padding-right: 15px;
}
.payment-success {
margin: 0 0 40px;
}
.payment-success .icon {
font-size: 56px;
width: 70px;
float: left;
}
.payment-success .content {
margin-left: 70px;
}
.payment-success .content h2 {
margin-bottom: 5px;
}
.payment-success .content p {
font-size: 18px;
line-height: 24px;
margin: 0;
color: #777;
}
.confirmation-content {
border-bottom: 1px solid #E3E3E3;
padding-bottom: 30px;
margin-bottom: 40px;
}
ul.book-sum-list li {
position: relative;
margin: 20px 0;
padding-left: 140px;
line-height: 1.2;
}
ul.book-sum-list li:first-child {
margin-top: 0;
}
ul.book-sum-list li:last-child {
margin-bottom: 0;
}
ul.book-sum-list li span {
position: absolute;
left: 0
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.confirmation-wrapper {
padding-right: 0;
}
.payment-success .content h2 {
font-size: 20px;
}
.payment-success .content p {
font-size: 17px;
line-height: 1.4;
}
}
@media (max-width: 479px) {
.payment-success .content h2 {
font-size: 17px;
}
.payment-success .content p {
font-size: 15px;
}
}
/**
* Social Share
*/
ul.social-share-sm {
position: relative;
display: inline-block;
line-height: 1;
float: left;
}
ul.social-share-sm li {
display: inline-block;
margin: 0 0 5px;
}
ul.social-share-sm li span,
ul.social-share-sm li a {
position: relative;
display: inline-block;
padding-right: 10px;
margin-right: 10px;
}
ul.social-share-sm:after,
ul.social-share-sm li span:after,
ul.social-share-sm li a:after {
content: "";
position: absolute;
right: 0;
top: 1px;
width: 1px;
height: 13px;
background: #E3E3E3;
}
ul.social-share-sm.pull-right {
margin-right: -10px;
}
ul.social-share-sm.pull-right:after {
display: none;
}
ul.social-share-sm li a:after {
width: 4px;
height: 4px;
border-radius: 50%;
top: 6px;
right: -3px;
}
ul.social-share-sm li:last-child a {
margin-right: 0;
}
ul.social-share-sm li:last-child a:after {
display: none;
}
ul.social-share-sm li a {
font-weight: 400;
color: #999;
}
ul.social-share-sm li a:hover {
color: #D65049;
}
ul.social-share-sm.for-useful {
float: right;
}
ul.social-share-sm.for-useful:after {
display: none;
}
ul.social-share-sm.for-useful li:not(:last-child) {
margin-right: 10px;
}
ul.social-share-sm.for-useful li span {
margin-right: 0;
}
ul.social-share-sm.for-useful li a {
margin-right: 0;
padding-right: 0;
}
ul.social-share-sm.for-useful li a:after {
display: none;
}
.review-list ul.social-share-sm {
margin-top: 20px;
}
/**
* Contact Us
*/
.top-place-wrapper {
background: #F0F0F0;
}
.top-place-inner {
margin-left: -15px;
margin-right: -15px;
}
.top-place-item {
padding: 30px 15px;
}
.top-place-item .icon {
width: 33px;
float: left;
}
.active .top-place-item {
-webkit-box-shadow: 0px 0px 11px -1px rgba(0, 0, 0, 0.35);
-moz-box-shadow: 0px 0px 11px -1px rgba(0, 0, 0, 0.35);
box-shadow: 0px 0px 11px -1px rgba(0, 0, 0, 0.35);
}
.top-place-item .content {
margin-left: 48px;
line-height: 22px;
}
.top-place-item .content h3 {
line-height: 1.1;
margin: 0 0 17px;
}
.top-place-item .content p {
margin: 0 0 12px;
}
.top-place-item .content a {
text-transform: uppercase;
font-size: 12px;
}
.contact-form-wrapper .form-group {
margin: 0 0 17px;
}
.contact-form-wrapper .help-block {
line-height: 1.2;
font-size: 12px;
}
.has-error .form-control {
border-color: #a94442;
-webkit-box-shadow: none;
box-shadow: none;
background: #FFFAFA;
}
.has-error .form-control:focus {
border-color: #843534;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.boxed-social {
margin: 25px 0 20px;
font-size: 18px;
line-height: 1;
}
.boxed-social a {
font-size: 20px;
margin-right: 2px;
margin-bottom: 2px;
width: 36px;
height: 36px;
display: block;
float: left;
text-align: center;
line-height: 36px;
background: #010164;
color: #FFF;
border-radius: 3px;
}
.boxed-social a:hover {
background: #D65049;
}
ul.address-list li {
position: relative;
line-height: 1.4;
margin: 0 0 10px;
padding-left: 25px;
}
ul.address-list li:last-child {
margin: 0 !important;
}
ul.address-list li i {
position: absolute;
top: 1px;
left: 0;
font-size: 16px;
line-height: 1;
}
.infobox-inner ul.address-list li {
margin: 0 0 8px;
padding-left: 18px;
}
.infobox-inner ul.address-list li i {
font-size: 12px;
}
/**
* Blog
*/
.blog-wrapper {
padding-right: 15px;
}
.blog-item {
display: block;
margin-bottom: 40px;
background: #FFF;
overflow: hidden;
border-bottom: 1px solid #E3E3E3;
padding: 0 0 30px;
}
.blog-item:last-child {
margin-bottom: 0
}
.blog-item.blog-single {
border-bottom: 0;
margin-bottom: 0;
}
.blog-media {
position: relative;
margin: 0 0 25px;
}
.blog-media a {
display: block;
}
.blog-content {}
.blog-content h3 {
line-height: 1.4;
margin: 0 0 20px;
color: #333;
}
.blog-content h3 a {
color: #333;
display: block;
}
.blog-content h3 a:hover {
color: #D65049;
}
.blog-entry {
padding: 0 0 20px;
}
.blog-entry ul,
.blog-entry ol {
list-style: disc;
margin-left: 20px;
line-height: 25px;
}
.blog-entry ul li,
.blog-entry ol li {
margin-bottom: 7px;
}
.blog-entry ul ul,
.blog-entry ol ol {
margin-top: 7px;
}
.blog-entry > ul,
.blog-entry > ol {
margin-bottom: 15px;
}
.blog-entry ol {
list-style: decimal;
}
ul.blog-meta {
margin: 0 0 25px;
line-height: 1.2;
font-size: 12px;
}
ul.blog-meta li {
display: block;
color: #999;
margin-right: 30px;
float: left;
position: relative;
}
ul.blog-meta li:before {
content: "";
width: 6px;
height: 6px;
background: #E1E1E1;
border-radius: 6px;
position: absolute;
right: -19px;
top: 5px;
}
ul.blog-meta li:after {
content: "";
width: 2px;
height: 2px;
background: #FFF;
border-radius: 2px;
position: absolute;
right: -17px;
top: 7px;
}
ul.blog-meta li:last-child:before,
ul.blog-meta li:last-child:after {
display: none;
}
.blog-extra {
background: #F2F2F2;
padding: 28px 20px 25px;
margin: 20px 0 40px;
border-radius: 3px;
}
.blog-author {
padding: 0;
position: relative;
border-bottom: 1px solid #E3E3E3;
padding-bottom: 30px;
margin-bottom: 40px;
}
.blog-author h5 a {
color: #333;
}
.blog-author h5 a:hover {
color: #D65049;
}
.author-details {
margin-left: 120px;
position: relative;
}
.author-label {
position: absolute;
width: 100px
}
.author-label img {
width: 100%
}
.blog-author .social {
float: right;
margin-top: -5px
}
#comment-wrapper {
background: #FFF;
padding: 30px 0 20px;
position: relative
}
ul.comment-item {
list-style: none;
padding: 0;
margin: 0
}
ul.comment-item li {
position: relative;
display: block;
padding-left: 65px;
padding-bottom: 30px;
margin-bottom: 40px;
border-bottom: 1px solid #EBE8E6
}
ul.comment-item li li:last-child,
ul.comment-item li li li:last-child {
border-bottom: 0;
padding-bottom: 0;
margin-bottom: 0;
}
ul.comment-item ul {
margin-top: 20px;
padding-top: 30px;
border-top: 1px solid #EBE8E6;
margin-left: -20px;
}
.comment-item h6 {
margin-bottom: 5px;
}
.comment-item .comment-avatar {
position: absolute;
top: 0;
left: 0;
width: 50px;
height: 50px;
border-radius: 50%
}
.comment-item .comment-avatar img {
width: 100%;
width: 100%;
border-radius: 50%
}
.comment-item .comment-time {
display: block;
font-style: italic;
font-size: 12px;
color: #999;
margin-bottom: 10px;
line-height: 1.2;
}
.comment-item a.comment-reply {
float: right;
font-size: 10px;
line-height: 1;
padding: 3px 7px;
text-transform: uppercase;
border: 2px solid #010164;
border-radius: 5px;
-webkit-transition: all .3s;
transition: all .3s;
display: block
}
.comment-item a.comment-reply:hover {
color: #FFF;
border-color: #D65049;
background: #D65049;
}
@media only screen and (max-width: 1199px) {
.blog-wrapper {
padding-right: 0;
}
}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {}
@media (max-width: 479px) {}
/**
* Image Overlay
*/
.image-overlay {
position: absolute;
top: 0;
left: 0;
z-index: 3;
overflow: hidden;
width: 100%;
height: 100%;
text-align: center;
-webkit-transition: opacity .25s ease, background-color .45s ease;
transition: opacity .25s ease, background-color .45s ease;
background: rgba(0, 0, 0, 0);
}
.overlay-box:hover .image-overlay {
background: rgba(0, 0, 0, 0.5);
}
.image-overlay:before {
display: inline-block;
height: 100%;
vertical-align: middle;
content: ""
}
.overlay-content {
display: inline-block;
vertical-align: middle;
color: #fff
}
.overlay-icon {
margin-bottom: 6px;
color: #fff;
border: 2px solid #FFF;
padding: 10px 10px;
border-radius: 3px;
-webkit-transition: opacity .25s ease, background-color .45s ease;
transition: opacity .25s ease, background-color .45s ease;
opacity: 0;
filter: alpha(opacity=0);
}
.overlay-box:hover .overlay-icon {
opacity: 1;
filter: alpha(opacity=100);
}
.overlay-icon i {
color: #fff;
font-size: 56px;
}
.modal.modal-border-transparent .modal-content {
border: 5px solid rgba(255, 255, 255, 0.4);
-webkit-box-shadow: none;
box-shadow: none;
padding: 0;
border-radius: 3px;
}
.modal.modal-login .modal-content {
width: 380px;
margin: 0 auto;
position: relativel
}
.modal.modal-login .form-control::-moz-placeholder {}
.modal.modal-login .form-control:-ms-input-placeholder {}
.modal.modal-login .form-control::-webkit-input-placeholder {}
.modal.modal-login .modal-footer {
border-top: 1px solid #CCC;
margin-top: 0;
padding-top: 30px;
padding-bottom: 20px;
}
.modal .modal-content .btn-close {
position: absolute;
top: 3px;
right: 3px;
z-index: 1052;
font-size: 12px;
}
.modal-seperator {
border-bottom: 1px solid #CCC;
text-align: center;
margin: 20px 0 45px;
margin-left: -15px;
margin-right: -15px;
position: relative;
}
.modal-seperator span {
width: 40px;
height: 40px;
border: 1px solid #CCC;
border-radius: 50%;
margin: 0 auto;
line-height: 38px;
display: block;
margin-bottom: -20px;
background: #FFF;
font-weight: 600;
}
.login-modal-tab-wrapper {}
ul.login-modal-tab-nav {
background: #EAEAEA;
padding: 0;
margin: 0;
}
ul.login-modal-tab-nav li {
float: left;
width: 50%;
text-align: center;
}
ul.login-modal-tab-nav li a {
display: block;
padding: 10px;
font-weight: 600;
font-size: 15px;
color: #565656;
}
ul.login-modal-tab-nav li.active a {
background: #FFF;
}
ul.login-modal-tab-nav li a:hover {
color: #489FF0;
}
.btn.btn-facebook {
background: #3b5998;
color: #FFF;
}
.btn.btn-facebook:hover {
opacity: 0.8;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {}
@media (max-width: 479px) {
.modal.modal-login .modal-content {
width: 100%;
}
}
/**
* Static Page
*/
.for-static-page .sidebar-module {
margin-right: 30px;
}
ul.static-page-menu li a {
display: block;
color: #636363;
padding: 8px 20px;
transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
line-height: 1;
padding-left: 0;
border-left: 4px solid #FFF !important;
border-right: 4px solid #FFF;
margin-right: -4px;
margin-left: -4px;
margin-bottom: 1px;
font-size: 12px;
}
ul.static-page-menu li a:hover,
ul.static-page-menu li.active a {
border-right: 4px solid #010164;
color: #010164;
}
.static-wrapper h1:first-child,
.static-wrapper h2:first-child,
.static-wrapper h3:first-child,
.static-wrapper h4:first-child,
.static-wrapper h5:first-child,
.static-wrapper h6:first-child {
margin-top: 0;
}
.static-wrapper ul,
.static-wrapper ol {
list-style: disc;
margin-left: 20px;
line-height: 25px;
}
.static-wrapper ul li,
.static-wrapper ol li {
margin-bottom: 7px;
}
.static-wrapper ul ul,
.static-wrapper ol ol {
margin-top: 7px;
}
.static-wrapper > ul,
.static-wrapper > ol {
margin-bottom: 15px;
}
.static-wrapper ol {
list-style: decimal;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.for-static-page .sidebar-module {
margin-right: 15px;
}
}
@media only screen and (max-width: 767px) {
.for-static-page .sidebar-module {
margin-right: 0;
}
}
@media (max-width: 479px) {}
/* ==========================================================================
7. How It Works Section
========================================================================== */
.board .nav-tabs {
position: relative;
margin-bottom: 0;
box-sizing: border-box;
}
.board > div.board-inner > .nav-tabs {
border: none;
}
p.narrow{
width: 60%;
margin: 10px auto;
}
.liner{
height: 0px;
position: absolute;
width: 100%;
border-bottom: 1px dotted #ccc;
margin: 0px auto;
left: 0;
right: 0;
top: 50%;
z-index: 1;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
color: #555555;
cursor: default;
/* background-color: #ffffff; */
border: 0;
border-bottom-color: transparent;
outline: 0;
}
span.round-tabs{
width: 35px;
height: 35px;
line-height: 30px;
display: inline-block;
border-radius: 100px;
background: #ffffff;
z-index: 2;
position: absolute;
left: 0;
text-align: center;
font-size: 15px;
}
span.round-tabs.one{
border: 2px solid #14136a;
color: #03025f;
}
li.active span.round-tabs.one, li.active span.round-tabs.two, li.active span.round-tabs.three, li.active span.round-tabs.four, li.active span.round-tabs.five {
background: #03025f !important;
border: 2px solid #03025f;
color: #fff;
}
span.round-tabs.two{
border: 2px solid #03025f;
color: #1c1c1c;
}
span.round-tabs.three{
border: 2px solid #050460;
color: #14136a;
}
span.round-tabs.four{
border: 2px solid #100f67;
color: #1c1c1c;
}
span.round-tabs.five{
border: 2px solid #ddd;
color: #ddd;
}
.nav-tabs > li.active > a span.round-tabs{
background: #fafafa;
background: #100f67 !important;
/* color: #fff; */
}
.nav-tabs > li {
width: 20%;
}
.nav-tabs > li a{
width: 70px;
height: 35px;
margin: 20px auto;
border-radius: 100%;
padding: 0;
}
.nav-tabs > li a:hover{
background: transparent;
}
.tab-content{
}
.tab-pane{
position: relative;
}
.btn-outline-rounded{
padding: 10px 40px;
margin: 20px 0;
border: 2px solid transparent;
border-radius: 25px;
}
.btn.green{
background-color:#69cb95;
/*border: 2px solid #5cb85c;*/
color: #ffffff;
}
@media( max-width : 585px ){
.board {
width: 90%;
height:auto !important;
}
span.round-tabs {
font-size:16px;
width: 50px;
height: 50px;
line-height: 50px;
}
.tab-content .head{
font-size:20px;
}
.nav-tabs > li a {
width: 50px;
height: 50px;
line-height:50px;
}
li.active:after {
content: " ";
position: absolute;
left: 35%;
}
.btn-outline-rounded {
padding:12px 20px;
}
}
.page-title-panel{position: relative;
padding: 40px 0;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
color: rgba(255, 255, 255, 0.9);
position: relative;
text-align: center;
}
/*************************Ecommerce Product Single Stylesheets ***************/
img {
max-width: 100%; }
.preview {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column; }
@media screen and (max-width: 996px) {
.preview {
margin-bottom: 20px; } }
.preview-pic {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1; }
.preview-thumbnail.nav-tabs {
border: none;
margin-top: 15px; }
.preview-thumbnail.nav-tabs li {
width: 18%;
margin-right: 2.5%; }
.preview-thumbnail.nav-tabs li img {
max-width: 100%;
display: block; }
.preview-thumbnail.nav-tabs li a {
padding: 0;
margin: 0; }
.preview-thumbnail.nav-tabs li:last-of-type {
margin-right: 0; }
.tab-content {
overflow: hidden; }
.tab-content img {
width: 100%;
-webkit-animation-name: opacity;
animation-name: opacity;
-webkit-animation-duration: .3s;
animation-duration: .3s; }
.card {
margin-top: 50px;
background: #eee;
padding: 3em;
line-height: 1.5em; }
@media screen and (min-width: 997px) {
.wrapper {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; } }
.details {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column; }
.colors {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1; }
.product-title, .price, .sizes, .colors {
text-transform: capitalize
font-size:15px;
font-weight: bold;
}
.checked, .price span {
color: #ff9f1a; }
.product-title, .rating, .product-description, .price, .vote, .sizes {
margin-bottom: 15px; }
.product-title {
margin-top: 0; }
.size {
margin-right: 10px; }
.size:first-of-type {
margin-left: 40px; }
.color {
display: inline-block;
vertical-align: middle;
margin-right: 10px;
height: 2em;
width: 2em;
border-radius: 2px; }
.color:first-of-type {
margin-left: 20px; }
.add-to-cart, .like {
background: #ff9f1a;
padding: 1.2em 1.5em;
border: none;
text-transform: UPPERCASE;
font-weight: bold;
color: #fff;
-webkit-transition: background .3s ease;
transition: background .3s ease; }
.add-to-cart:hover, .like:hover {
background: #b36800;
color: #fff; }
.not-available {
text-align: center;
line-height: 2em; }
.not-available:before {
font-family: fontawesome;
content: "\f00d";
color: #fff; }
.orange {
background: #ff9f1a; }
.green {
background: #85ad00; }
.blue {
background: #0076ad; }
.tooltip-inner {
padding: 1.3em; }
@-webkit-keyframes opacity {
0% {
opacity: 0;
-webkit-transform: scale(3);
transform: scale(3); }
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1); } }
@keyframes opacity {
0% {
opacity: 0;
-webkit-transform: scale(3);
transform: scale(3); }
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1); } }
/*# sourceMappingURL=style.css.map */
.prodcut-price-tag{
display: block;
font-size: 20px;
font-weight: 300;
padding: 0px 0 0px;
text-align: left;
width: 100%;
margin-top: 0px;
text-transform: capitalize;
font-weight: 700;
}
.line-height-text{
line-height: 40px !important;
}
/*************************** clickable Buttons ***********************/
.text-active,
.active > .text,
.active > .auto .text {
display: none !important;
}
.active > .text-active,
.active > .auto .text-active {
display: inline-block !important;
color: #dbd8d8;
} | public/assets/dashboard_assets/ui-assets/css/style.css | * Table of Content
* 1. Header
* 2. Navbar Mini
* 3. Sticky Header
* 4. Hero Image
* 5. Page Title & Breadcrumb
* 6. Main Search Form
* 7. Sidebar
* 8. Sorting
* 9. Pager
* 10. Featured Items
* 11. Destinations
* 12. Tour Package
* 13. itinerary
* 14. Why us
* 15. Testimonial
* 16. Newsletter
* 17. About Us
* 18. Review
* 19. Faq
* 20. Payment
* 21. Confirmation
* 22. Social
* 23. Contact Us
* 24. Blog
* 25. Image Overlay
* 26. Footer
* 27. Sign-in/up
-------------------------------------------------------------------*/
/**
* Header
*/
.navbar {
border-bottom: 0;
min-height: 0;
margin: 0;
}
.navbar-primary {
background: #010164;
}
.navbar-bottom {
background: #FFF;
}
/* Logo */
.navbar-logo {
float: left;
display: block;
margin-right: 10px;
padding: 5px 0 15px;
}
.navbar-logo img {
height: 30px;
width: auto;
}
/* Phone at Header */
.navbar-phone {
font-weight: 600;
font-size: 14px;
color: #636363;
line-height: 50px;
text-align: right;
}
/* Main Menu Dropdown */
.navbar-nav {
margin: 0;
}
.navbar-nav li a {
font-weight: 600;
font-size: 13px;
color: #636363;
}
.navbar-nav > li {
margin-right: 30px;
}
.navbar-nav > li > a {
line-height: 50px;
padding: 0;
}
.navbar-nav > li > a:hover {
color: rgba(255, 255, 255, 0.8);
}
.navbar-nav li {
position: relative;
}
.navbar-nav li ul {
z-index: 9999;
padding: 0;
margin: 0;
position: absolute;
top: 50px;
left: 0;
width: 190px;
display: none;
border: 1px solid #E3E3E3;
border-top: 2px solid #010164;
background: #FFF;
padding: 20px;
}
.navbar-nav li ul li a {
border-bottom: 0;
display: block;
padding: 8px 0;
color: rgba(0, 0, 0, 0.8);
line-height: 1.25;
font-weight: 400;
}
.navbar-nav li > ul > li:last-child > a,
.navbar-nav li > ul > li > ul > li:last-child > a {
border-bottom: 0;
}
.navbar-nav li ul li:hover > a {
color: #D65049;
}
.navbar-nav li ul li ul {
position: absolute;
left: 169px;
top: 0;
}
/* Mega Menu */
.navbar-nav > li.mega-menu {
position: inherit!important;
left: 0;
color: #636363;
}
.navbar-nav > li.mega-menu ul {
left: 0%;
width: 100%;
top: 50px;
padding: 0 30px;
padding-top: 20px;
padding-bottom: 20px;
}
.navbar-nav > li.mega-menu:hover > a,
.navbar-nav > li.mega-menu > a:hover,
.navbar-nav > li.dropdown:hover > a,
.navbar-nav > li.dropdown > a:hover,
.navbar-nav > li.dropdown.active > a,
.navbar-nav > li.dropdown.active > a:hover,
.navbar-nav > li:hover > a,
.navbar-nav > li.active > a {
color: #D65049;
background: none;
}
.navbar-nav > li.mega-menu ul li a:hover {
color: #D65049;
}
/* Menu Arrow */
.navbar-arrow > ul > li .arrow-indicator {
margin-left: 7px;
color: #CCC;
}
.navbar-arrow ul ul > li .arrow-indicator {
position: absolute;
top: 50%;
right: 0;
margin-top: -8px;
font-size: 16px;
color: #CCC;
}
.megamenu-container .arrow-indicator {
display: none !important;
}
@media (min-width: 768px) {
.navbar-nav > li.mega-menu ul {
width: 750px;
}
}
@media (min-width: 992px) {
.navbar-nav > li.mega-menu ul {
width: 970px;
}
}
@media (min-width: 1200px) {
.navbar-nav > li.mega-menu ul {
width: 1170px;
}
}
@media (min-width: 768px) {
.navbar {
-webkit-transition: all 0.1s ease-in-out 0s;
-moz-transition: all 0.1s ease-in-out 0s;
-ms-transition: all 0.1s ease-in-out 0s;
-o-transition: all 0.1s ease-in-out 0s;
transition: all 0.1s ease-in-out 0s;
}
.navbar-brand {
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
padding-top: 0;
padding-bottom: 0;
}
.navbar-logo {
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin-top: 10px;
}
.navbar-nav li ul li a {
-webkit-transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
-ms-transition: all 0.2s ease-in-out 0s;
-o-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
}
.navbar-nav > li > a {
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.navbar-sticky .navbar-logo {
margin-top: 0;
}
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.navbar-logo {
padding: 0;
margin: 0;
}
.navbar-logo img {
height: 20px;
margin: 0;
}
.navbar-arrow > ul > li .arrow-indicator,
.navbar-arrow ul ul > li .arrow-indicator {
display: none !important;
}
.navbar-sticky .navbar-logo {
margin-top: 5px;
margin-bottom: 5px;
}
}
@media (max-width: 767px) {
.navbar-fixed-top {
position: relative !important;
clear: both;
}
.navbar-logo img {
height: 18px;
}
.navbar-logo {
margin-top: 5px;
margin-bottom: 5px;
float: none;
}
.navbar-nav .open .dropdown-menu > li > a {
line-height: 23px;
}
}
@media (max-width: 479px) {}
/**
* Navbar Mini
*/
.navbar-mini {}
.navbar-mini > ul {
line-height: 55px;
margin: 0;
margin-top: -2px;
padding: 0;
-webkit-transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
-ms-transition: all 0.2s ease-in-out 0s;
-o-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
}
.navbar-mini > ul > li {
float: left;
margin-left: 15px;
}
.navbar-mini > ul > li:last-child {
border-right: none;
}
.navbar-mini > ul > li > a {
color: rgba(255, 255, 255, 1);
font-size: 13px;
font-weight: 600;
}
.navbar-mini > ul > li > a:hover,
.navbar-mini > ul > li > a:focus {
color: rgba(255, 255, 255, 0.8);
}
.navbar-mini > ul > li > a.btn {
border: 2px solid #FFF;
font-size: 11px;
padding-left: 15px;
padding-right: 15px;
}
.navbar-mini > ul > li > a.btn:hover,
.navbar-mini > ul > li > a.btn:focus {
border-color: rgba(255, 255, 255, 0.8);
}
.navbar-mini .dropdown-menu {
min-width: 80px;
padding: 10px;
}
.navbar-mini .dropdown-menu > li > a {
padding: 5px 12px;
font-size: 12px;
font-weight: 400;
}
.navbar-mini .dropdown-menu > li:first-child > a {
padding-top: 5px;
}
.navbar-mini .dropdown-menu > li:last-child > a {
padding-bottom: 5px;
}
.navbar-mini .dropdown-menu > li > a:hover,
.navbar-mini .dropdown-menu > li:hover > a,
.navbar-mini .dropdown-menu > li > a:focus {
color: #BA0600 !important;
background: none !important;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.navbar-mini {
margin-right: 45px;
}
.navbar-mini > ul {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
line-height: 50px;
}
.navbar-mini > ul > li > a.btn {
padding: 7px 10px;
}
}
@media (max-width: 767px) {
.navbar-mini > ul > li {
margin-left: 10px;
}
.navbar-mini > ul > li > a.btn {
border: 0;
}
}
@media (max-width: 479px) {
.navbar-mini {
margin-right: 35px;
}
.navbar-mini > ul > li {
margin-left: 0;
}
}
/**
* Sticky Header
*/
.navbar-sticky {
border-color: #232F49;
}
.navbar-sticky hr {
display: none;
}
.navbar-sticky.navbar-primary {
padding-top: 0;
}
.navbar-sticky .navbar-logo {
padding-top: 5px;
padding-bottom: 8px;
}
.navbar-sticky .navbar-phone {
line-height: 40px;
}
.navbar-sticky .navbar-nav > li > a {
line-height: 40px;
}
.navbar-sticky .navbar-nav > li > a:hover,
.navbar-sticky .navbar-nav > li > a:focus {
color: #D65049;
background-color: transparent
}
.navbar-sticky .navbar-nav > li > ul {
top: 40px;
}
.navbar-sticky .navbar-nav > li.mega-menu ul {
top: 40px;
}
.navbar-sticky .navbar-nav > .active > a,
.navbar-sticky .navbar-nav > .active > a:hover,
.navbar-sticky .navbar-nav > .active > a:focus {
color: #0D7CC9;
background-color: transparent;
}
.navbar-sticky .navbar-nav > .disabled > a,
.navbar-sticky .navbar-nav > .disabled > a:hover,
.navbar-sticky .navbar-nav > .disabled > a:focus {
color: #444444;
background-color: transparent;
}
.navbar-sticky .navbar-second {
padding-top: 5px;
}
@media (min-width: 768px) {
.navbar-sticky {
-webkit-box-shadow: 0px 3px 8px -6px rgba(0, 0, 0, 0.43);
-moz-box-shadow: 0px 3px 8px -6px rgba(0, 0, 0, 0.43);
box-shadow: 0px 3px 8px -6px rgba(0, 0, 0, 0.43);
}
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.navbar-sticky .navbar-logo {
padding-top: 7px;
}
}
@media (max-width: 767px) {}
@media (max-width: 479px) {}
/**
* Hero Image
*/
.hero {
position: relative;
padding: 130px 0;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
color: rgba(255, 255, 255, 0.9);
position: relative;
text-align: center;
}
.hero::before {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
content: ""
}
.hero h1 {
color: rgba(255, 255, 255, 1);
font-size: 58px;
font-weight: 400;
margin-top: 0;
}
.hero p.lead {
margin-bottom: 30px;
font-size: 25px;
line-height: 31px;
font-weight: 300;
}
.hero .btn {
padding-left: 40px;
padding-right: 40px;
}
.hero.windows-height-bg {
overflow: hidden;
}
@media (min-width: 768px) {}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.hero {
padding: 40px 0;
}
.hero h1 {
font-size: 36px;
}
.hero p.lead {
font-size: 17px;
line-height: 1.4;
}
}
@media (max-width: 479px) {
.hero h1 {
font-size: 28px;
margin-top: 5px;
}
.hero p.lead {
font-size: 15px;
}
}
.availabily-wrapper {}
ul.availabily-list {}
ul.availabily-list li {
border-bottom: 1px solid #E3E3E3;
line-height: 1.2;
padding: 0;
margin: 0;
margin-bottom: 20px;
padding-bottom: 20px;
position: relative;
}
ul.availabily-list li > div {
display: inline-block;
width: 19.5%;
vertical-align: middle;
padding: 0;
margin: 0;
}
ul.availabily-list li > div span {
display: block;
font-size: 16px;
font-weight: 600;
}
ul.availabily-list li > div.date-from,
ul.availabily-list li > div.date-to {
width: 23%;
}
ul.availabily-list li > div.date-from {
padding-right: 10px;
}
ul.availabily-list li > div.date-to {
padding-left: 10px;
}
ul.availabily-list li > div.price {
width: 12.5%;
}
ul.availabily-list li > div.status,
ul.availabily-list li > div.price {
text-align: center;
}
ul.availabily-list li > div.action {
text-align: right;
}
ul.availabily-list li > div.action .btn {
margin-right: -8px;
}
ul.availabily-list li.availabily-heading {
font-size: 12px;
color: #999;
padding-bottom: 5px;
}
ul.availabily-list li.availabily-content.sold-out:after {
content: "";
position: absolute;
left: 0;
right: 5px;
top: 0;
bottom: 0;
width: 100%;
background: rgba(255, 255, 255, 0.6);
display: block;
}
ul.availabily-list li > div span.availabily-heading-label {
display: none;
font-size: 12px;
color: #999;
font-weight: 400;
}
ul.availabily-list li > div.date-from {
position: relative;
}
ul.availabily-list li.availabily-content > div.date-from:after {
font-family: 'FontAwesome';
content: "\f058";
position: absolute;
top: 50%;
right: 0;
margin-top: -4px;
display: block;
color: #010164;
}
ul.availabily-list li.availabily-content.sold-out > div.date-from:after {
display: none;
}
.detail-content-wrapper {
padding-right: 15px;
}
.detail-content {
border-bottom: 1px solid #E3E3E3;
padding-bottom: 30px;
margin-bottom: 50px;
}
.detail-content .map-route {
width: 50%;
float: right;
margin: 5px 0;
margin-left: 15px;
}
/**
* Page Title & Breadcrumb
*/
.page-title {
font-size: 20px;
font-weight: 600;
margin-bottom: 0px;
margin-top: 7px;
}
.page-title-alt{
margin-bottom: 15px !important;
margin-top: 0px !important;
}
.page-title h1 {
color: rgba(255, 255, 255, 1);
margin: 0 0 5px;
}
.page-title p.lead {
font-weight: 300;
}
ol.breadcrumb-list li {
display: inline-block;
line-height: 1;
color: rgba(255, 255, 255, 1);
font-size: 12px;
}
ol.breadcrumb-list li a {
color: rgba(255, 255, 255, 1);
font-weight: 600;
}
ol.breadcrumb-list li a:hover {
color: rgba(255, 255, 255, 0.8);
}
ol.breadcrumb-list li a:after {
content: "/";
margin: 0 7px;
}
ol.breadcrumb-list li span {
font-weight: 600;
}
ol.breadcrumb-list.booking-step li a:after,
ol.breadcrumb-list.booking-step li:not(:last-child) span:after {
font-family: 'FontAwesome';
content: "\f105 ";
margin: 0 7px;
}
.page-title.detail-page-title {
padding: 220px 0 30px;
text-align: left;
}
.breadcrumb-wrapper {
padding: 10px 0;
}
.breadcrumb-wrapper ol.breadcrumb-list li a {
color: #010164;
}
.breadcrumb-wrapper ol.breadcrumb-list li a:hover {
color: #D65049;
}
.breadcrumb-wrapper ol.breadcrumb-list li span,
.breadcrumb-wrapper ol.breadcrumb-list li a:after {
color: #666;
}
.page-title.detail-page-title .list-col {
line-height: 1;
}
.page-title.detail-page-title ul.list-col li:not(:last-child)::after {
background: rgba(255, 255, 255, 0.8);
bottom: auto;
height: 33px;
}
.page-title.detail-page-title .list-col li.rating-box::after {
top: -1px;
}
.page-title.detail-page-title .list-col li.fav-box::after {
top: 1px;
}
.page-title.detail-page-title .btn-fav {
background: none;
color: #FFF;
padding: 0;
}
.page-title.detail-page-title .list-col .duration-box .meta {
display: inline-block;
}
.page-title.detail-page-title .list-col .duration-box .meta:not(:last-child) {
margin-right: 7px;
}
.page-title.detail-page-title .meta span {
font-size: 18px;
font-weight: 600;
margin-bottom: 3px;
}
.page-title.detail-page-title {}
.availabily-wrapper {}
ul.availabily-list {}
ul.availabily-list li {
border-bottom: 1px solid #E3E3E3;
line-height: 1.2;
padding: 0;
margin: 0;
margin-bottom: 20px;
padding-bottom: 20px;
position: relative;
}
ul.availabily-list li > div {
display: inline-block;
width: 19.5%;
vertical-align: middle;
padding: 0;
margin: 0;
}
ul.availabily-list li > div span {
display: block;
font-size: 16px;
font-weight: 600;
}
ul.availabily-list li > div.date-from,
ul.availabily-list li > div.date-to {
width: 23%;
}
ul.availabily-list li > div.date-from {
padding-right: 10px;
}
ul.availabily-list li > div.date-to {
padding-left: 10px;
}
ul.availabily-list li > div.price {
width: 12.5%;
}
ul.availabily-list li > div.status,
ul.availabily-list li > div.price {
text-align: center;
}
ul.availabily-list li > div.action {
text-align: right;
}
ul.availabily-list li > div.action .btn {
margin-right: -8px;
}
ul.availabily-list li.availabily-heading {
font-size: 12px;
color: #999;
padding-bottom: 5px;
}
ul.availabily-list li.availabily-content.sold-out:after {
content: "";
position: absolute;
left: 0;
right: 5px;
top: 0;
bottom: 0;
width: 100%;
background: rgba(255, 255, 255, 0.6);
display: block;
}
ul.availabily-list li > div span.availabily-heading-label {
display: none;
font-size: 12px;
color: #999;
font-weight: 400;
}
ul.availabily-list li > div.date-from {
position: relative;
}
ul.availabily-list li.availabily-content > div.date-from:after {
font-family: 'FontAwesome';
content: "\f058";
position: absolute;
top: 50%;
right: 0;
margin-top: -4px;
display: block;
color: #010164;
}
ul.availabily-list li.availabily-content.sold-out > div.date-from:after {
display: none;
}
.detail-content-wrapper {
padding-right: 15px;
}
.detail-content {
border-bottom: 1px solid #E3E3E3;
padding-bottom: 40px;
margin-bottom: 50px;
}
.detail-content .map-route {
width: 50%;
float: right;
margin: 5px 0;
margin-left: 15px;
}
@media (min-width: 768px) {}
@media only screen and (max-width: 1199px) {
ul.availabily-list li > div.action .btn {
margin-right: -4px;
}
.detail-content-wrapper {
padding-right: 0;
}
}
.hero-title{
color: #fff;
font-size: 20px;
}
@media only screen and (max-width: 991px) {
ul.availabily-list li {
font-size: 13px;
}
ul.availabily-list li > div span {
display: block;
font-size: 14px;
}
ul.availabily-list li > div.action .btn {
font-size: 10px;
margin-right: 0px;
}
}
@media only screen and (max-width: 767px) {
ul.availabily-list li.availabily-heading {
display: none;
}
ul.availabily-list li > div {
display: block;
width: 100% !important;
position: relative;
padding-left: 95px !important;
text-align: left !important;
margin-bottom: 15px;
}
ul.availabily-list li > div span.availabily-heading-label {
display: block;
position: absolute;
top: 0;
left: 0;
text-align: right;
width: 80px;
}
ul.availabily-list li.availabily-content > div.date-from:after {
top: 0;
right: auto;
left: 0;
margin-top: 0;
}
.page-title.detail-page-title {
padding: 100px 0 30px;
}
}
@media (min-width: 768px) {}
@media only screen and (max-width: 1199px) {
ul.availabily-list li > div.action .btn {
margin-right: -4px;
}
.detail-content-wrapper {
padding-right: 0;
}
}
@media only screen and (max-width: 991px) {
ul.availabily-list li {
font-size: 13px;
}
ul.availabily-list li > div span {
display: block;
font-size: 14px;
}
ul.availabily-list li > div.action .btn {
font-size: 10px;
margin-right: 0px;
}
}
@media only screen and (max-width: 767px) {
ul.availabily-list li.availabily-heading {
display: none;
}
ul.availabily-list li > div {
display: block;
width: 100% !important;
position: relative;
padding-left: 95px !important;
text-align: left !important;
margin-bottom: 15px;
}
ul.availabily-list li > div span.availabily-heading-label {
display: block;
position: absolute;
top: 0;
left: 0;
text-align: right;
width: 80px;
}
ul.availabily-list li.availabily-content > div.date-from:after {
top: 0;
right: auto;
left: 0;
margin-top: 0;
}
.page-title.detail-page-title {
padding: 100px 0 30px;
}
}
@media (max-width: 479px) {}
/**
* Main Search Form
*/
.main-search-wrapper {}
.main-search-wrapper > .inner {}
.main-search-wrapper .column-item {}
.main-search-wrapper .form-control {
height: 40px;
border-color: #FFF;
}
.main-search-wrapper .btn {
padding-top: 13px;
padding-bottom: 12px;
}
.main-search-wrapper .select2-container .select2-selection--single {
height: 40px;
border-color: #FFF;
}
.main-search-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
padding-top: 9px;
}
.main-search-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
top: 7px;
}
.main-search-wrapper .select2-container--default .select2-selection--single:focus {
border-color: #FFF !important;
}
.main-search-wrapper .select2-container--default.select2-container--open .select2-selection--single {
border-color: #CCC;
}
.main-search-wrapper .select2-dropdown {
border: 1px solid #FFF !important;
}
.main-search-wrapper .select2-container .select2-selection--multiple {
height: 40px;
border-color: #FFF;
overflow: hidden;
}
.main-search-wrapper .select2-container--default.select2-container--open .select2-selection--multiple {
border-color: #CCC;
}
.main-search-wrapper .select2-container .select2-selection--multiple .select2-selection__rendered {
padding-top: 2px;
}
.main-search-wrapper.full-width {
width: 80%;
margin: 15px auto 0;
}
.main-search-wrapper.full-width > .inner {
margin-left: -10px;
margin-right: -10px;
}
.main-search-wrapper.full-width .column-item {
float: left;
width: 25%;
padding: 0 10px;
}
.main-search-wrapper.at-right > .inner {
margin-left: 50%;
}
.main-search-wrapper.at-left {
width: 330px;
padding-right: 50px;
}
.main-search-holder {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 100%;
z-index: 3;
color: #FFF;
padding-top: 130px;
}
.main-search-holder h1 {
color: rgba(255, 255, 255, 1);
font-size: 58px;
font-weight: 400;
margin-top: 0;
text-align: center;
letter-spacing: 0;
}
.main-search-holder p.lead {
margin-bottom: 30px;
font-size: 25px;
line-height: 31px;
font-weight: 300;
text-align: center;
}
.main-search-holder .btn {
padding-left: 40px;
padding-right: 40px;
}
@media (min-width: 768px) {}
@media only screen and (max-width: 1199px) {
.main-search-full-wrapper {
width: 100%;
}
.main-search-wrapper.full-width {
width: 90%;
}
}
@media only screen and (max-width: 991px) {
.main-search-full-wrapper {
width: 50%;
}
.main-search-full-wrapper .column-item {
width: 100%;
}
.main-search-wrapper.full-width {
width: 75%;
}
.main-search-wrapper.full-width .column-item {
width: 50%;
}
}
@media only screen and (max-width: 767px) {
.main-search-full-wrapper {
width: 60%;
margin: 0 auto;
}
.main-search-wrapper.full-width {
width: 90%;
margin-top: 5px;
}
.main-search-wrapper.full-width .column-item {
width: 50%;
}
.main-search-holder {
padding: 35px 0;
}
.main-search-holder h1 {
font-size: 36px;
}
.main-search-holder p.lead {
font-size: 17px;
line-height: 1.4;
}
}
@media (max-width: 479px) {
.main-search-full-wrapper {
width: 80%;
}
.main-search-wrapper.full-width .column-item {
width: 100%;
}
.main-search-holder h1 {
font-size: 28px;
margin-top: 5px;
}
.main-search-holder p.lead {
font-size: 15px;
}
}
.btn-more-less {
background: none;
padding: 0;
font-size: 10px;
font-weight: 600;
}
.btn-more-less.collapsed:before {
content: '+ ';
}
.btn-more-less:before {
content: '- ';
}
.more-less-inner {
margin: 0;
}
.read-more-div-open {
display: block;
}
.read-more-div-close {}
ul.sidebar-category,
ul.sidebar-archives {
margin-top: 15px;
}
ul.sidebar-category li,
ul.sidebar-archives li {
border-bottom: 1px solid #F0F0F1;
padding-bottom: 10px;
margin-bottom: 10px;
line-height: 1.4;
}
ul.sidebar-category li:last-child,
ul.sidebar-archives li:last-child {
margin-bottom: 0;
}
ul.sidebar-category li a,
ul.sidebar-archives li a {
display: block;
}
ul.sidebar-category li a span,
ul.sidebar-archives li a span {
float: right;
font-size: 12px;
color: #A3A3A3;
}
ul.sidebar-category li a:hover,
ul.sidebar-archives li a:hover {
padding-left: 5px;
}
ul.sidebar-post {
margin-top: 15px;
}
ul.sidebar-post li {
border-bottom: 1px solid #F0F0F1;
padding-bottom: 15px;
margin-bottom: 10px;
line-height: 1.4;
}
ul.sidebar-post li:last-child {
margin-bottom: 0;
}
ul.sidebar-post li h6 {
margin: 0 0 5px;
}
ul.sidebar-post li h6 {
color: #333;
font-weight: 400;
}
ul.sidebar-post li a:hover h6 {
color: #D65049;
}
ul.sidebar-post li .image {
width: 80px;
float: left;
margin-top: 5px;
}
ul.sidebar-post li .image img {
display: block;
}
ul.sidebar-post li .content {
margin-left: 90px;
}
ul.sidebar-post li .recent-post-sm-meta {
margin: 10px 0 0;
color: #A3A3A3 !important;
font-size: 12px;
}
.tag-cloud {
margin-top: 15px;
margin-bottom: -5px;
}
.tag-cloud span {
display: block;
float: left;
line-height: 1;
padding: 5px 7px;
padding-left: 0;
margin-left: 0;
margin-bottom: 5px;
}
.tag-cloud a {
border: 1px solid #E3E3E3;
line-height: 1;
font-size: 12px;
padding: 5px 7px;
margin-left: 3px;
margin-bottom: 5px;
display: block;
float: left;
color: #777;
border-radius: 3px;
}
.tag-cloud a:hover {
background: #D65049;
color: #FFF !important;
border-color: #D65049;
}
.tag-cloud-wrapper {
border-top: 1px solid #EFEFEF;
position: relative;
margin: 20px 0 0;
padding: 20px 0 0;
}
.tag-cloud-wrapper .tag-cloud-heading {
float: left;
}
.tag-cloud-wrapper .tag-cloud {
margin-left: 50px;
margin-top: 5px;
}
.sidebar-text-widget ul {
margin: 0;
margin-left: 25px;
padding: 0;
}
.sidebar-text-widget ul li {
list-style: circle;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.sidebar {
margin-bottom: 30px;
}
}
@media (max-width: 479px) {}
/**
* Sorting
*/
.sorting-wrappper {
margin: 0 0 23px;
}
.sorting-wrappper h3 {
line-height: 1.2;
margin: 0;
}
.sorting-wrappper h3 small {
font-size: 70%;
}
.sorting-header {
margin: 0 0 15px;
}
.sort-by-wrapper {
line-height: 1.2;
display: table;
}
.sorting-label {
vertical-align: middle;
display: table-cell;
font-weight: 400;
}
.sorting-middle-holder {
display: inline-block;
margin: 0;
margin-left: 7px;
line-height: 1;
vertical-align: middle;
}
.sorting-middle-holder .form-control {
margin: 0;
}
ul.sort-by {
margin: 0;
padding: 0;
clear: both;
line-height: 1.2;
}
ul.sort-by li {
display: inline-block;
margin: 5px 10px;
}
ul.sort-by li a {
display: block;
position: relative;
color: #666;
}
ul.sort-by li a:after {
content: "";
position: absolute;
bottom: -5px;
left: 0;
right: 0;
height: 2px;
background: transparent;
}
ul.sort-by li.active a,
ul.sort-by li a:hover {
color: #010164;
}
ul.sort-by li.active a:after {
background: #010164;
}
.btn-sorting {
border: 0;
padding: 4px 0 0;
font-size: 16px;
line-height: 1.2;
color: #999;
}
.btn-sorting.active,
.btn-sorting:hover {
color: #010164;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
ul.sort-by li {
display: inline-block;
margin: 5px;
}
}
@media only screen and (max-width: 767px) {}
@media (max-width: 479px) {
.sort-by-wrapper {
line-height: 1.2;
display: block;
}
.sorting-label {
display: block;
}
.sorting-middle-holder {
display: block;
margin: 10px 0 0;
}
ul.sort-by li {
margin-left: 0;
margin-right: 7px;
}
}
/**
* Pager
*/
.pager-wrappper {
margin-top: 15px;
}
.pager-inner {
line-height: 1;
display: table;
}
.pager-label {
vertical-align: middle;
display: table-cell;
font-weight: 400;
}
.pager-middle-holder {
display: inline-block;
margin: 0;
margin-left: 7px;
line-height: 1;
white-space: nowrap;
vertical-align: middle;
}
.pager-right {
float: right;
}
.pagination {
margin: 9px 0 0;
}
.pagination > li > a,
.pagination > li > span {
padding: 0;
margin: 0 3px;
color: #337ab7;
border: 0;
display: block;
width: 24px;
height: 24px;
line-height: 23px;
border-radius: 50%;
text-align: center;
color: #666;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
color: #D65049;
background-color: #FFF;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
background-color: #010164;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.pager-right {
float: left;
}
}
@media only screen and (max-width: 767px) {}
@media (max-width: 479px) {}
/**
* Featured
*/
.featured-item:not(:last-child) {
margin-bottom: 30px;
}
.featured-item h4 {
color: #333;
}
.featured-item .content .icon {
float: left;
font-size: 56px;
color: #010164;
margin-top: 5px;
}
.featured-item .content p {
margin-left: 70px;
}
.featured-count {
line-height: 1.2;
margin: 15px 0;
}
.featured-count .icon {
width: 44px;
float: left;
font-size: 47px;
}
.featured-count .content {
margin-left: 55px;
padding-top: 5px;
}
.featured-count h6 {
color: #333;
margin: 0 0 5px;
}
.call-to-action {
text-align: center;
}
.call-to-action .btn {
margin: 0 15px;
margin-top: -3px;
}
ul.featured-list-sm {
margin-top: 25px;
}
ul.featured-list-sm li {
position: relative;
padding-left: 50px;
margin: 15px 0 25px;
line-height: 1.5;
}
ul.featured-list-sm li:last-child {
margin-bottom: 0;
}
ul.featured-list-sm li .icon {
position: absolute;
top: 0;
left: 0;
width: 34px;
height: 34px;
display: block;
line-height: 30px;
text-align: center;
color: #010164;
border: 2px solid #010164;
font-size: 16px;
border-radius: 3px;
}
ul.featured-list-sm li h6 {
text-transform: uppercase;
margin: 0 0 10px;
}
.featured-icon-item {
margin: 50px 15px 0;
}
.featured-icon-item .icon {
font-size: 54px;
color: #00AFF1;
margin: 0 0 25px;
width: 90px;
height: 90px;
line-height: 95px;
text-align: center;
border: 2px solid #00AFF1;
border-radius: 50%;
}
.featured-icon-item h4 {
text-transform: uppercase;
font-weight: 300;
line-height: 1.2;
margin: 0 0 20px;
}
.promo-box {
background: #00AFF1;
color: #FFF;
text-align: center;
padding: 90px 0;
line-height: 1;
font-size: 42px;
font-weight: 300;
}
.process-item {
padding: 0 20px;
position: relative;
}
.process-item .process-step {
width: 34px;
height: 34px;
line-height: 32px;
text-align: center;
color: #F5F8FB;
position: absolute;
top: -17px;
left: 2px;
border-radius: 50%;
font-size: 12px;
font-weight: 700;
background: #00AFF1;
border: 2px solid #F5F8FB;
}
.process-item .image {
width: 160px;
margin: 15px 0 20px;
}
.process-item .image img {
border-radius: 3px;
}
.process-item a {
line-height: 1;
}
.process-item a i {
margin-left: 7px;
}
.icon-fearured .icon {
width: 46px;
height: 46px;
line-height: 46px;
border-radius: 3px;
text-align: center;
font-size: 21px;
margin: 0 0 20px;
}
/**
* Destinations
*/
.destination-grid-wrapper {
margin-left: -15px;
margin-right: -15px;
}
.destination-grid-wrapper > .grid-item {
padding: 15px;
}
.top-destination-image-bg {
position: relative;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
color: rgba(255, 255, 255, 0.9);
position: relative;
width: 100%;
height: 100%;
}
.top-destination-image-bg span {
color: rgba(255, 255, 255, 0.9);
}
.top-destination-image-bg::before {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
content: "";
transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
}
.top-destination-image-bg:hover::before {
background: rgba(0, 0, 0, 0.5);
}
a.top-destination-image-bg {
display: block;
color: rgba(255, 255, 255, 1);
position: relative;
padding: 30px;
font-weight: 400;
font-size: 13px;
}
.top-destination-image-bg h4 {
color: rgba(255, 255, 255, 1);
text-transform: uppercase;
margin: 0 0 5px;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.destination-grid-wrapper {
margin-left: -10px;
margin-right: -10px;
}
.destination-grid-wrapper > .grid-item {
padding: 10px;
}
}
@media only screen and (max-width: 767px) {
.destination-grid-wrapper {
margin-left: -5px;
margin-right: -5px;
}
.destination-grid-wrapper > .grid-item {
padding: 5px;
}
}
@media (max-width: 479px) {}
/**
* Tour Package
*/
.package-grid-item-wrapper {
margin-bottom: -30px;
}
.package-grid-item {
background: #FFF;
border-radius: 3px;
-webkit-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.16);
-moz-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.16);
box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.16);
o-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-webkit-transition: all 0.3s ease-out;
}
.package-grid-item:hover {
-webkit-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.4);
box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.4);
}
.package-grid-item-wrapper .image {
position: relative;
}
.package-grid-item-wrapper .image img {
border-radius: 3px 3px 0 0;
}
.package-grid-item .absolute-in-image .duration {
padding: 15px;
}
.package-grid-item .absolute-in-image .duration span {
background: #010164;
color: #FFF;
padding: 4px 7px;
border-radius: 3px;
line-height: 1;
display: inline-block;
font-size: 12px;
}
.package-grid-item a {
color: #666;
font-weight: 400;
}
.package-grid-item a h5,
.package-grid-item a h6 {
color: #333;
margin: 0 0 10px;
line-height: 2.2;
}
.package-grid-item .content {
padding: 15px;
padding-right: 90px;
padding-bottom: 0px;
position: relative;
}
.absolute-in-content {
position: absolute;
right: 15px;
top: 8px;
width: 50px;
line-height: 1;
text-align: right;
}
.absolute-in-content .btn {
background: none;
/* padding: 4px 0; */
font-size: 18px;
}
.absolute-in-content .price {
color: #010164;
font-size: 16px;
font-weight: 700;
}
.package-grid-item .raty-wrapper > div {
float: left;
margin-right: 7px;
margin-top: -1px;
}
.package-grid-item .raty-wrapper > div span {
padding-left: 5px;
display: inline-block;
padding-top: 5px;
}
.on-page-result-page .package-grid-item .raty-wrapper > div {
margin-top: 0;
}
.on-page-result-page .package-grid-item {
-webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.2);
}
.on-page-result-page .package-grid-item:hover {
-webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.4);
box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.4);
}
.alt-smaller .absolute-in-content .btn {
/* padding: 3px 0 2px; */
}
.alt-smaller .price {
color: #010164;
font-size: 14px;
}
.package-list-item {
border-radius: 3px;
background: #FFF;
-webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.2);
margin-bottom: 30px;
o-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-webkit-transition: all 0.3s ease-out;
}
.package-list-item:hover {
-webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.4);
box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.4);
}
.package-list-item .image {
width: 25%;
float: left;
position: relative;
}
.package-list-item .image img {
border-radius: 3px 0 0 3px;
}
.package-list-item .absolute-in-image .duration {
padding: 15px;
}
.package-list-item .absolute-in-image .duration span {
background: #010164;
color: #FFF;
padding: 4px 7px;
border-radius: 3px;
line-height: 1;
display: inline-block;
font-size: 12px;
}
.package-list-item .content {
width: 75%;
float: left;
padding: 0 20px;
position: relative;
}
.package-list-item .content h5 {
color: #333;
margin: 18px 0 10px;
line-height: 1;
}
.package-list-item .content h5 .btn {
background: none;
padding: 0;
font-size: 18px;
float: right;
}
.package-list-item .rating-wrapper {
margin-top: 5px;
}
.package-list-item .content .price {
color: #010164;
font-size: 16px;
font-weight: 700;
margin: 17px 0 40px;
text-align: right;
margin-top: -23px;
}
.package-list-item .btn-absolute {
position: absolute;
right: 0;
bottom: 20px;
}
ul.list-info {
margin: 0;
}
ul.list-info li {
line-height: 1;
position: relative;
padding-left: 27px;
}
ul.list-info li:not(:last-child) {
margin-bottom: 15px;
}
ul.list-info li .icon {
position: absolute;
left: 0;
top: -4px;
width: 20px;
height: 20px;
line-height: 19px;
padding-left: 1px;
border-radius: 50%;
background: #010164;
color: #FFF;
text-align: center;
font-size: 10px;
}
ul.list-info.no-icon li {
padding-left: 0;
}
ul.list-info.bb-dotted li {
border-bottom: 1px dotted #E1E1E1;
padding-bottom: 12px;
margin: 0 0 12px;
}
.hotel-item-wrapper {
margin-bottom: 20px;
}
.hotel-item {
position: relative;
}
.hotel-item a {
display: block;
}
.hotel-item .content {
position: absolute;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.3);
o-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-webkit-transition: all 0.3s ease-out;
}
.hotel-item:hover .content {
background: rgba(0, 0, 0, 0.7);
}
.hotel-item .content h5,
.hotel-item .content h6 {
color: #FFF;
line-height: 1;
padding: 10px;
margin: 0;
}
@media only screen and (max-width: 1199px) {
.package-list-item {
padding: 15px;
}
.package-list-item .image {
width: 40%;
}
.package-list-item .content {
width: 60%;
}
.package-list-item .image img {
border-radius: 3px;
}
.package-list-item .content {
padding-right: 0;
}
.package-list-item .content h5 {
margin: 0 0 10px;
}
.package-list-item .content .price {
margin-bottom: 20px;
}
}
@media only screen and (max-width: 991px) {
.package-list-item {
padding: 10px;
}
.package-list-item .rating-wrapper {
margin-top: 20px;
}
.package-list-item .content .price {
margin: 7px 0;
}
}
@media only screen and (max-width: 767px) {
.package-list-item .content {
padding-left: 15px;
}
}
@media (max-width: 479px) {
.package-list-item .image {
width: 100%;
}
.package-list-item .content {
width: 100%;
padding: 15px 0 0;
}
}
/**
* Itinerary
*/
.itinerary-wrapper {
padding-left: 15px;
}
.itinerary-item-wrapper {
border-left: 1px dashed #CCC;
padding-left: 30px;
margin-top: 10px;
margin-left: 11px;
}
.itinerary-item {
margin-bottom: 30px;
}
.itinerary-item h5,
.itinerary-item h5 a {
font-size: 17px;
margin: 0;
color: #333;
line-height: 1;
}
.itinerary-item.intro-item {
position: relative;
padding-left: 40px;
}
.itinerary-item.intro-item:before {
font-family: 'FontAwesome';
content: "\f12a";
position: absolute;
top: 0;
left: 0;
width: 22px;
height: 22px;
line-height: 22px;
background: #010164;
color: #FFF;
border-radius: 50%;
display: block;
text-align: center;
font-size: 12px;
}
.itinerary-item.intro-item .intro-item-body {
margin-top: 20px;
}
.itinerary-item-wrapper .panel-heading a:before,
.panel-heading a:after,
.itinerary-item-wrapper .panel-heading.active a:after {
display: none;
}
.itinerary-item-wrapper .panel-heading .absolute-day-number {
position: absolute;
top: -1px;
left: -42px;
background: #010164;
border: 2px solid #010164;
color: #FFF;
width: 22px;
height: 22px;
line-height: 18px;
border-radius: 50%;
display: block;
text-align: center;
font-size: 12px;
}
.itinerary-item-wrapper .panel-heading.active .absolute-day-number {
background: #FFF;
border: 2px solid #010164;
color: #010164;
}
.itinerary-item-wrapper .panel-title a {
padding: 0;
}
.itinerary-item-wrapper .itinerary-item:not(:last-child) {
margin-bottom: 30px;
}
.itinerary-item-wrapper .panel-body {
padding: 20px 0 0;
}
ul.itinerary-meta {
margin-left: 0;
}
ul.itinerary-meta li {
float: left;
margin-right: 25px;
font-weight: 600;
font-size: 12px;
list-style: none;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.itinerary-wrapper {
padding-left: 0;
}
}
@media (max-width: 479px) {}
/**
* Why us
*/
.why-us-half-image-wrapper {
padding: 0;
}
.why-us-half-image-wrapper .image-bg {
width: 100%;
min-height: 320px;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
.why-us-half-image-content {
padding: 105px;
}
@media only screen and (max-width: 1199px) {
.why-us-half-image-content {
padding: 105px 80px;
}
}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.why-us-half-image-content {
padding: 60px 20px;
}
}
@media (max-width: 479px) {}
/**
* Testimonial
*/
.testimonial-wrapper {
margin-bottom: -10px;
}
.testimonial-item {
margin: 10px 0;
}
.testimonial-item .image {
width: 200px;
float: left;
}
.testimonial-item .image img {
border-radius: 3px;
}
.testimonial-item .content {
margin-left: 230px;
}
.testimonial-item .content h4 {
color: #333;
margin-bottom: 0;
}
.testimonial-item .content h6 {
color: #999;
margin: 0 0 10px;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.testimonial-item {
margin-bottom: 30px;
}
.testimonial-wrapper > div > div:last-child > .testimonial-item {
margin-bottom: 0;
}
}
@media only screen and (max-width: 767px) {
.testimonial-item .image {
width: 100px;
}
.testimonial-item .content {
margin-left: 120px;
}
.testimonial-item .content h4 {
margin-top: 0;
}
}
@media (max-width: 479px) {}
/**
* Newsletter
*/
.newsletter-text {
margin: 30px 0;
line-height: 1.4;
}
.newsletter-text .icon {
width: 90px;
height: 90px;
line-height: 98px;
text-align: center;
background: #010164;
border-radius: 50%;
color: #FFF;
float: left;
font-size: 45px;
}
.newsletter-text .content {
margin-left: 110px;
padding-top: 5px;
}
.newsletter-text h3 {
color: #333;
margin: 0 0 5px;
}
.newsletter-form {
margin-top: 5px;
-webkit-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.16);
-moz-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.16);
box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.16);
}
.newsletter-form .form-control {
height: 40px;
padding-left: 15px;
padding-top: 7px;
}
.newsletter-form .btn {
margin-right: -1px;
height: 40px;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.newsletter-wrapper {
padding: 20px 0 60px;
}
.newsletter-form {
margin: 0 110px;
}
}
@media only screen and (max-width: 767px) {
.newsletter-form {
margin-right: 30px;
}
}
@media (max-width: 479px) {
.newsletter-form {
margin: 0;
}
}
/**
* About Us
*/
.about-us-grid-block .image-bg {
width: 100%;
}
.about-us-grid-block-item {
background: #010164;
color: #FFF;
padding: 30px;
}
.team-item {
text-align: center;
}
.team-item .image {
width: 150px;
margin: 0 auto;
}
.team-item h5,
.team-item h6 {
margin: 25px 0 10px;
line-height: 1.1;
color: #333;
}
.team-item p {
margin: 0 0 8px;
line-height: 1.1;
}
.team-item ul.social {
margin: 0;
}
.team-item ul.social li {
display: inline-block;
margin: 0 5px;
}
.team-item ul.social li a {
color: #999;
}
.team-item ul.social li a:hover {
color: #D65049;
}
.partner-image-item {
text-align: center;
}
.partner-image-item img {
width: auto;
display: inline-block;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.about-us-grid-block .image-bg {
height: 100px;
}
}
@media (max-width: 479px) {}
/**
* Review
*/
.review-header {
line-height: 1.2;
margin-bottom: 30px;
}
.review-header h5,
.review-header h6 {
color: #333;
line-height: 1;
margin: 0 0 10px;
}
.review-header h6 {
margin-top: 3px;
}
.review-overall-breakdown {
border-left: 1px solid #E3E3E3;
padding-left: 30px;
}
.review-overall-point {
font-size: 15px;
margin: 0;
}
.review-overall-point span {
font-weight: 600;
color: #010164;
font-size: 19px;
}
.review-overall-breakdown .rating-wrapper {
width: 110px;
float: left;
}
.review-overall-breakdown .rating-wrapper .raty-wrapper > div {
display: inline-block;
vertical-align: middle;
}
.review-overall-breakdown .progress {
width: 110px;
float: left;
margin: 0;
margin-top: 4px;
}
.review-overall-breakdown .breakdown-count {
width: 40px;
float: left;
text-align: right;
margin-top: 1px;
}
ul.breakdown-list {
margin-top: 20px;
}
ul.breakdown-list li:not(:last-child) {
margin: 0 0 5px;
}
ul.breakdown-list.for-avg li {
line-height: 1.23;
}
ul.breakdown-list.for-avg li:not(:last-child) {
margin: 1px 0 7px;
}
.review-content .row > div > h5 {
color: #333;
line-height: 1;
margin: 7px 0 10px;
}
ul.review-list {
margin-top: 15px;
border-top: 1px solid #E3E3E3;
padding-top: 25px;
}
ul.review-list > li {
position: relative;
border-bottom: 1px solid #E3E3E3;
padding-bottom: 25px;
margin-bottom: 25px;
}
ul.review-list > li:last-child {
border-bottom: 0;
padding-bottom: 0;
}
ul.review-list li .image {
width: 50px;
height: 50px;
position: absolute;
top: 0;
left: 0;
}
ul.review-list li .content {
padding-left: 70px;
float: left;
}
ul.review-list li .content h6 {
color: #333;
line-height: 1.2;
margin: 0 0 10px;
}
ul.review-list li .content h6 span {
font-weight: 400;
color: #999;
}
ul.review-list li .content .review-date {
text-align: right;
line-height: 1;
margin: 0 0 10px;
font-size: 11px;
color: #999;
}
ul.review-list li .rating-wrapper {
margin: 10px 0;
}
.review-form {
margin-top: 20px;
}
.review-form-title {
color: #333;
line-height: 1;
}
.review-text ul,
.review-text ol {
list-style: disc;
margin-left: 20px;
line-height: 25px;
}
.review-text ul li,
.review-text ol li {
margin-bottom: 7px;
}
.review-text ul ul,
.review-text ol ol {
margin-top: 7px;
}
.review-text > ul,
.review-text > ol {
margin-bottom: 15px;
}
.review-text ol {
list-style: decimal;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.review-overall-breakdown {
border-left: 0;
padding-left: 0;
padding-top: 30px;
}
ul.review-list li .image {
width: 40px;
height: 40px;
}
ul.review-list li .content {
padding-left: 55px;
}
ul.review-list li .content .review-date {
text-align: left;
}
}
@media (max-width: 479px) {}
/**
* Faq
*/
.faq-wrapper {
padding-left: 15px;
}
.faq-wrapper h3 {
margin: 0 0 25px;
}
.faq-section {
border-bottom: 1px solid #E3E3E3;
margin: 0 0 40px;
}
.faq-section h4 {
margin: 8px 0 0;
}
.faq-section .panel-body {
padding-top: 0;
padding-bottom: 10px;
}
.faq-alt-2-wrapper {}
.faq-alt-2-wrapper .bootstarp-accordion .panel-heading {
border-bottom: 1px dotted #E3E3E3;
margin-left: 25px;
padding: 15px 0;
}
.faq-alt-2-wrapper .bootstarp-accordion .panel-heading a {
padding: 0;
line-height: 1;
font-size: 14px;
}
.faq-alt-2-wrapper .bootstarp-accordion .panel-heading a:before {
content: '\f059';
right: auto;
left: -25px;
top: -1px;
-webkit-transform: rotate(0);
transform: rotate(0);
color: #010164;
}
.faq-alt-2-wrapper .bootstarp-accordion .panel-heading.active a:before {
content: '\f128';
}
.faq-alt-2-wrapper .panel-body {
margin-left: 25px;
}
.for-faq-page .scrollspy-sidenav {
padding-top: 0;
border: 0;
}
.for-faq-page.scrollspy-sidebar .nav > li > a {
padding-left: 0;
border-left: 4px solid #FFF !important;
border-right: 4px solid #FFF;
}
.for-faq-page.scrollspy-sidebar .nav > li > a:hover {
border-right: 4px solid #010164;
}
.for-faq-page.scrollspy-sidebar .nav > li > a:focus {
border-right: 4px solid #EEEEEE;
}
.for-faq-page.scrollspy-sidebar .nav > .active > a,
.for-faq-page.scrollspy-sidebar .nav > .active:hover > a,
.for-faq-page.scrollspy-sidebar .nav > .active:focus > a {
border-right: 4px solid #010164 !important;
border-left: 4px solid #FFF !important;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.faq-wrapper {
padding-left: 0;
}
}
@media (max-width: 479px) {}
/**
* Payment
*/
.payment-container {
border-left: 1px dashed #CCC;
padding-left: 40px;
margin-left: 13px;
padding-right: 15px;
}
.payment-box {
margin: 0 0 40px;
border-bottom: 1px solid #E3E3E3;
padding-bottom: 30px;
}
.payment-header {
position: relative;
}
.payment-header:before {
content: "";
width: 25px;
position: absolute;
left: -30px;
top: 9px;
border-top: 1px dashed #CCC;
}
.payment-header .number {
width: 26px;
height: 26px;
line-height: 26px;
border-radius: 50%;
background: #010164;
color: #FFF;
text-align: center;
position: absolute;
top: -4px;
left: -53px;
font-weight: 600;
font-size: 12px;
}
.payment-content .control-label {}
.payment-content input[type='radio'] + label:before {
top: 12px;
}
.payment-traveller {
margin: 0 0 30px;
border-bottom: 1px solid #E3E3E3;
padding-bottom: 20px;
position: relative;
}
.traveller-remove {
position: absolute;
left: 0;
top: 13px;
}
.price-summary-wrapper {
border: 4px solid #EEE;
border-radius: 3px;
padding: 30px 20px;
}
ul.price-summary-list li {
margin-bottom: 18px;
line-height: 1.2;
}
ul.price-summary-list li p {
margin-top: 5px;
}
ul.price-summary-list li.divider {
border-top: 1px solid #EEE;
}
ul.price-summary-list li.total-price {
background: #010164;
color: #FFF;
margin: 25px -19px -29px;
padding: 20px 19px;
}
@media only screen and (max-width: 1199px) {
.payment-container {
padding-right: 0;
}
}
@media only screen and (max-width: 991px) {
.traveller-remove {
left: auto;
right: 0;
}
}
@media only screen and (max-width: 767px) {}
@media (max-width: 479px) {}
/**
* Confirmation
*/
.confirmation-wrapper {
padding-right: 15px;
}
.payment-success {
margin: 0 0 40px;
}
.payment-success .icon {
font-size: 56px;
width: 70px;
float: left;
}
.payment-success .content {
margin-left: 70px;
}
.payment-success .content h2 {
margin-bottom: 5px;
}
.payment-success .content p {
font-size: 18px;
line-height: 24px;
margin: 0;
color: #777;
}
.confirmation-content {
border-bottom: 1px solid #E3E3E3;
padding-bottom: 30px;
margin-bottom: 40px;
}
ul.book-sum-list li {
position: relative;
margin: 20px 0;
padding-left: 140px;
line-height: 1.2;
}
ul.book-sum-list li:first-child {
margin-top: 0;
}
ul.book-sum-list li:last-child {
margin-bottom: 0;
}
ul.book-sum-list li span {
position: absolute;
left: 0
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {
.confirmation-wrapper {
padding-right: 0;
}
.payment-success .content h2 {
font-size: 20px;
}
.payment-success .content p {
font-size: 17px;
line-height: 1.4;
}
}
@media (max-width: 479px) {
.payment-success .content h2 {
font-size: 17px;
}
.payment-success .content p {
font-size: 15px;
}
}
/**
* Social Share
*/
ul.social-share-sm {
position: relative;
display: inline-block;
line-height: 1;
float: left;
}
ul.social-share-sm li {
display: inline-block;
margin: 0 0 5px;
}
ul.social-share-sm li span,
ul.social-share-sm li a {
position: relative;
display: inline-block;
padding-right: 10px;
margin-right: 10px;
}
ul.social-share-sm:after,
ul.social-share-sm li span:after,
ul.social-share-sm li a:after {
content: "";
position: absolute;
right: 0;
top: 1px;
width: 1px;
height: 13px;
background: #E3E3E3;
}
ul.social-share-sm.pull-right {
margin-right: -10px;
}
ul.social-share-sm.pull-right:after {
display: none;
}
ul.social-share-sm li a:after {
width: 4px;
height: 4px;
border-radius: 50%;
top: 6px;
right: -3px;
}
ul.social-share-sm li:last-child a {
margin-right: 0;
}
ul.social-share-sm li:last-child a:after {
display: none;
}
ul.social-share-sm li a {
font-weight: 400;
color: #999;
}
ul.social-share-sm li a:hover {
color: #D65049;
}
ul.social-share-sm.for-useful {
float: right;
}
ul.social-share-sm.for-useful:after {
display: none;
}
ul.social-share-sm.for-useful li:not(:last-child) {
margin-right: 10px;
}
ul.social-share-sm.for-useful li span {
margin-right: 0;
}
ul.social-share-sm.for-useful li a {
margin-right: 0;
padding-right: 0;
}
ul.social-share-sm.for-useful li a:after {
display: none;
}
.review-list ul.social-share-sm {
margin-top: 20px;
}
/**
* Contact Us
*/
.top-place-wrapper {
background: #F0F0F0;
}
.top-place-inner {
margin-left: -15px;
margin-right: -15px;
}
.top-place-item {
padding: 30px 15px;
}
.top-place-item .icon {
width: 33px;
float: left;
}
.active .top-place-item {
-webkit-box-shadow: 0px 0px 11px -1px rgba(0, 0, 0, 0.35);
-moz-box-shadow: 0px 0px 11px -1px rgba(0, 0, 0, 0.35);
box-shadow: 0px 0px 11px -1px rgba(0, 0, 0, 0.35);
}
.top-place-item .content {
margin-left: 48px;
line-height: 22px;
}
.top-place-item .content h3 {
line-height: 1.1;
margin: 0 0 17px;
}
.top-place-item .content p {
margin: 0 0 12px;
}
.top-place-item .content a {
text-transform: uppercase;
font-size: 12px;
}
.contact-form-wrapper .form-group {
margin: 0 0 17px;
}
.contact-form-wrapper .help-block {
line-height: 1.2;
font-size: 12px;
}
.has-error .form-control {
border-color: #a94442;
-webkit-box-shadow: none;
box-shadow: none;
background: #FFFAFA;
}
.has-error .form-control:focus {
border-color: #843534;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.boxed-social {
margin: 25px 0 20px;
font-size: 18px;
line-height: 1;
}
.boxed-social a {
font-size: 20px;
margin-right: 2px;
margin-bottom: 2px;
width: 36px;
height: 36px;
display: block;
float: left;
text-align: center;
line-height: 36px;
background: #010164;
color: #FFF;
border-radius: 3px;
}
.boxed-social a:hover {
background: #D65049;
}
ul.address-list li {
position: relative;
line-height: 1.4;
margin: 0 0 10px;
padding-left: 25px;
}
ul.address-list li:last-child {
margin: 0 !important;
}
ul.address-list li i {
position: absolute;
top: 1px;
left: 0;
font-size: 16px;
line-height: 1;
}
.infobox-inner ul.address-list li {
margin: 0 0 8px;
padding-left: 18px;
}
.infobox-inner ul.address-list li i {
font-size: 12px;
}
/**
* Blog
*/
.blog-wrapper {
padding-right: 15px;
}
.blog-item {
display: block;
margin-bottom: 40px;
background: #FFF;
overflow: hidden;
border-bottom: 1px solid #E3E3E3;
padding: 0 0 30px;
}
.blog-item:last-child {
margin-bottom: 0
}
.blog-item.blog-single {
border-bottom: 0;
margin-bottom: 0;
}
.blog-media {
position: relative;
margin: 0 0 25px;
}
.blog-media a {
display: block;
}
.blog-content {}
.blog-content h3 {
line-height: 1.4;
margin: 0 0 20px;
color: #333;
}
.blog-content h3 a {
color: #333;
display: block;
}
.blog-content h3 a:hover {
color: #D65049;
}
.blog-entry {
padding: 0 0 20px;
}
.blog-entry ul,
.blog-entry ol {
list-style: disc;
margin-left: 20px;
line-height: 25px;
}
.blog-entry ul li,
.blog-entry ol li {
margin-bottom: 7px;
}
.blog-entry ul ul,
.blog-entry ol ol {
margin-top: 7px;
}
.blog-entry > ul,
.blog-entry > ol {
margin-bottom: 15px;
}
.blog-entry ol {
list-style: decimal;
}
ul.blog-meta {
margin: 0 0 25px;
line-height: 1.2;
font-size: 12px;
}
ul.blog-meta li {
display: block;
color: #999;
margin-right: 30px;
float: left;
position: relative;
}
ul.blog-meta li:before {
content: "";
width: 6px;
height: 6px;
background: #E1E1E1;
border-radius: 6px;
position: absolute;
right: -19px;
top: 5px;
}
ul.blog-meta li:after {
content: "";
width: 2px;
height: 2px;
background: #FFF;
border-radius: 2px;
position: absolute;
right: -17px;
top: 7px;
}
ul.blog-meta li:last-child:before,
ul.blog-meta li:last-child:after {
display: none;
}
.blog-extra {
background: #F2F2F2;
padding: 28px 20px 25px;
margin: 20px 0 40px;
border-radius: 3px;
}
.blog-author {
padding: 0;
position: relative;
border-bottom: 1px solid #E3E3E3;
padding-bottom: 30px;
margin-bottom: 40px;
}
.blog-author h5 a {
color: #333;
}
.blog-author h5 a:hover {
color: #D65049;
}
.author-details {
margin-left: 120px;
position: relative;
}
.author-label {
position: absolute;
width: 100px
}
.author-label img {
width: 100%
}
.blog-author .social {
float: right;
margin-top: -5px
}
#comment-wrapper {
background: #FFF;
padding: 30px 0 20px;
position: relative
}
ul.comment-item {
list-style: none;
padding: 0;
margin: 0
}
ul.comment-item li {
position: relative;
display: block;
padding-left: 65px;
padding-bottom: 30px;
margin-bottom: 40px;
border-bottom: 1px solid #EBE8E6
}
ul.comment-item li li:last-child,
ul.comment-item li li li:last-child {
border-bottom: 0;
padding-bottom: 0;
margin-bottom: 0;
}
ul.comment-item ul {
margin-top: 20px;
padding-top: 30px;
border-top: 1px solid #EBE8E6;
margin-left: -20px;
}
.comment-item h6 {
margin-bottom: 5px;
}
.comment-item .comment-avatar {
position: absolute;
top: 0;
left: 0;
width: 50px;
height: 50px;
border-radius: 50%
}
.comment-item .comment-avatar img {
width: 100%;
width: 100%;
border-radius: 50%
}
.comment-item .comment-time {
display: block;
font-style: italic;
font-size: 12px;
color: #999;
margin-bottom: 10px;
line-height: 1.2;
}
.comment-item a.comment-reply {
float: right;
font-size: 10px;
line-height: 1;
padding: 3px 7px;
text-transform: uppercase;
border: 2px solid #010164;
border-radius: 5px;
-webkit-transition: all .3s;
transition: all .3s;
display: block
}
.comment-item a.comment-reply:hover {
color: #FFF;
border-color: #D65049;
background: #D65049;
}
@media only screen and (max-width: 1199px) {
.blog-wrapper {
padding-right: 0;
}
}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {}
@media (max-width: 479px) {}
/**
* Image Overlay
*/
.image-overlay {
position: absolute;
top: 0;
left: 0;
z-index: 3;
overflow: hidden;
width: 100%;
height: 100%;
text-align: center;
-webkit-transition: opacity .25s ease, background-color .45s ease;
transition: opacity .25s ease, background-color .45s ease;
background: rgba(0, 0, 0, 0);
}
.overlay-box:hover .image-overlay {
background: rgba(0, 0, 0, 0.5);
}
.image-overlay:before {
display: inline-block;
height: 100%;
vertical-align: middle;
content: ""
}
.overlay-content {
display: inline-block;
vertical-align: middle;
color: #fff
}
.overlay-icon {
margin-bottom: 6px;
color: #fff;
border: 2px solid #FFF;
padding: 10px 10px;
border-radius: 3px;
-webkit-transition: opacity .25s ease, background-color .45s ease;
transition: opacity .25s ease, background-color .45s ease;
opacity: 0;
filter: alpha(opacity=0);
}
.overlay-box:hover .overlay-icon {
opacity: 1;
filter: alpha(opacity=100);
}
.overlay-icon i {
color: #fff;
font-size: 56px;
}
.modal.modal-border-transparent .modal-content {
border: 5px solid rgba(255, 255, 255, 0.4);
-webkit-box-shadow: none;
box-shadow: none;
padding: 0;
border-radius: 3px;
}
.modal.modal-login .modal-content {
width: 380px;
margin: 0 auto;
position: relativel
}
.modal.modal-login .form-control::-moz-placeholder {}
.modal.modal-login .form-control:-ms-input-placeholder {}
.modal.modal-login .form-control::-webkit-input-placeholder {}
.modal.modal-login .modal-footer {
border-top: 1px solid #CCC;
margin-top: 0;
padding-top: 30px;
padding-bottom: 20px;
}
.modal .modal-content .btn-close {
position: absolute;
top: 3px;
right: 3px;
z-index: 1052;
font-size: 12px;
}
.modal-seperator {
border-bottom: 1px solid #CCC;
text-align: center;
margin: 20px 0 45px;
margin-left: -15px;
margin-right: -15px;
position: relative;
}
.modal-seperator span {
width: 40px;
height: 40px;
border: 1px solid #CCC;
border-radius: 50%;
margin: 0 auto;
line-height: 38px;
display: block;
margin-bottom: -20px;
background: #FFF;
font-weight: 600;
}
.login-modal-tab-wrapper {}
ul.login-modal-tab-nav {
background: #EAEAEA;
padding: 0;
margin: 0;
}
ul.login-modal-tab-nav li {
float: left;
width: 50%;
text-align: center;
}
ul.login-modal-tab-nav li a {
display: block;
padding: 10px;
font-weight: 600;
font-size: 15px;
color: #565656;
}
ul.login-modal-tab-nav li.active a {
background: #FFF;
}
ul.login-modal-tab-nav li a:hover {
color: #489FF0;
}
.btn.btn-facebook {
background: #3b5998;
color: #FFF;
}
.btn.btn-facebook:hover {
opacity: 0.8;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {}
@media (max-width: 479px) {
.modal.modal-login .modal-content {
width: 100%;
}
}
/**
* Static Page
*/
.for-static-page .sidebar-module {
margin-right: 30px;
}
ul.static-page-menu li a {
display: block;
color: #636363;
padding: 8px 20px;
transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
line-height: 1;
padding-left: 0;
border-left: 4px solid #FFF !important;
border-right: 4px solid #FFF;
margin-right: -4px;
margin-left: -4px;
margin-bottom: 1px;
font-size: 12px;
}
ul.static-page-menu li a:hover,
ul.static-page-menu li.active a {
border-right: 4px solid #010164;
color: #010164;
}
.static-wrapper h1:first-child,
.static-wrapper h2:first-child,
.static-wrapper h3:first-child,
.static-wrapper h4:first-child,
.static-wrapper h5:first-child,
.static-wrapper h6:first-child {
margin-top: 0;
}
.static-wrapper ul,
.static-wrapper ol {
list-style: disc;
margin-left: 20px;
line-height: 25px;
}
.static-wrapper ul li,
.static-wrapper ol li {
margin-bottom: 7px;
}
.static-wrapper ul ul,
.static-wrapper ol ol {
margin-top: 7px;
}
.static-wrapper > ul,
.static-wrapper > ol {
margin-bottom: 15px;
}
.static-wrapper ol {
list-style: decimal;
}
@media only screen and (max-width: 1199px) {}
@media only screen and (max-width: 991px) {
.for-static-page .sidebar-module {
margin-right: 15px;
}
}
@media only screen and (max-width: 767px) {
.for-static-page .sidebar-module {
margin-right: 0;
}
}
@media (max-width: 479px) {}
/* ==========================================================================
7. How It Works Section
========================================================================== */
.board .nav-tabs {
position: relative;
margin-bottom: 0;
box-sizing: border-box;
}
.board > div.board-inner > .nav-tabs {
border: none;
}
p.narrow{
width: 60%;
margin: 10px auto;
}
.liner{
height: 0px;
position: absolute;
width: 100%;
border-bottom: 1px dotted #ccc;
margin: 0px auto;
left: 0;
right: 0;
top: 50%;
z-index: 1;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
color: #555555;
cursor: default;
/* background-color: #ffffff; */
border: 0;
border-bottom-color: transparent;
outline: 0;
}
span.round-tabs{
width: 35px;
height: 35px;
line-height: 30px;
display: inline-block;
border-radius: 100px;
background: #ffffff;
z-index: 2;
position: absolute;
left: 0;
text-align: center;
font-size: 15px;
}
span.round-tabs.one{
border: 2px solid #14136a;
color: #03025f;
}
li.active span.round-tabs.one, li.active span.round-tabs.two, li.active span.round-tabs.three, li.active span.round-tabs.four, li.active span.round-tabs.five {
background: #03025f !important;
border: 2px solid #03025f;
color: #fff;
}
span.round-tabs.two{
border: 2px solid #03025f;
color: #1c1c1c;
}
span.round-tabs.three{
border: 2px solid #050460;
color: #14136a;
}
span.round-tabs.four{
border: 2px solid #100f67;
color: #1c1c1c;
}
span.round-tabs.five{
border: 2px solid #ddd;
color: #ddd;
}
.nav-tabs > li.active > a span.round-tabs{
background: #fafafa;
background: #100f67 !important;
/* color: #fff; */
}
.nav-tabs > li {
width: 20%;
}
.nav-tabs > li a{
width: 70px;
height: 35px;
margin: 20px auto;
border-radius: 100%;
padding: 0;
}
.nav-tabs > li a:hover{
background: transparent;
}
.tab-content{
}
.tab-pane{
position: relative;
}
.btn-outline-rounded{
padding: 10px 40px;
margin: 20px 0;
border: 2px solid transparent;
border-radius: 25px;
}
.btn.green{
background-color:#69cb95;
/*border: 2px solid #5cb85c;*/
color: #ffffff;
}
@media( max-width : 585px ){
.board {
width: 90%;
height:auto !important;
}
span.round-tabs {
font-size:16px;
width: 50px;
height: 50px;
line-height: 50px;
}
.tab-content .head{
font-size:20px;
}
.nav-tabs > li a {
width: 50px;
height: 50px;
line-height:50px;
}
li.active:after {
content: " ";
position: absolute;
left: 35%;
}
.btn-outline-rounded {
padding:12px 20px;
}
}
.page-title-panel{position: relative;
padding: 40px 0;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
color: rgba(255, 255, 255, 0.9);
position: relative;
text-align: center;
}
/*************************Ecommerce Product Single Stylesheets ***************/
img {
max-width: 100%; }
.preview {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column; }
@media screen and (max-width: 996px) {
.preview {
margin-bottom: 20px; } }
.preview-pic {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1; }
.preview-thumbnail.nav-tabs {
border: none;
margin-top: 15px; }
.preview-thumbnail.nav-tabs li {
width: 18%;
margin-right: 2.5%; }
.preview-thumbnail.nav-tabs li img {
max-width: 100%;
display: block; }
.preview-thumbnail.nav-tabs li a {
padding: 0;
margin: 0; }
.preview-thumbnail.nav-tabs li:last-of-type {
margin-right: 0; }
.tab-content {
overflow: hidden; }
.tab-content img {
width: 100%;
-webkit-animation-name: opacity;
animation-name: opacity;
-webkit-animation-duration: .3s;
animation-duration: .3s; }
.card {
margin-top: 50px;
background: #eee;
padding: 3em;
line-height: 1.5em; }
@media screen and (min-width: 997px) {
.wrapper {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; } }
.details {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column; }
.colors {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1; }
.product-title, .price, .sizes, .colors {
text-transform: capitalize
font-size:15px;
font-weight: bold;
}
.checked, .price span {
color: #ff9f1a; }
.product-title, .rating, .product-description, .price, .vote, .sizes {
margin-bottom: 15px; }
.product-title {
margin-top: 0; }
.size {
margin-right: 10px; }
.size:first-of-type {
margin-left: 40px; }
.color {
display: inline-block;
vertical-align: middle;
margin-right: 10px;
height: 2em;
width: 2em;
border-radius: 2px; }
.color:first-of-type {
margin-left: 20px; }
.add-to-cart, .like {
background: #ff9f1a;
padding: 1.2em 1.5em;
border: none;
text-transform: UPPERCASE;
font-weight: bold;
color: #fff;
-webkit-transition: background .3s ease;
transition: background .3s ease; }
.add-to-cart:hover, .like:hover {
background: #b36800;
color: #fff; }
.not-available {
text-align: center;
line-height: 2em; }
.not-available:before {
font-family: fontawesome;
content: "\f00d";
color: #fff; }
.orange {
background: #ff9f1a; }
.green {
background: #85ad00; }
.blue {
background: #0076ad; }
.tooltip-inner {
padding: 1.3em; }
@-webkit-keyframes opacity {
0% {
opacity: 0;
-webkit-transform: scale(3);
transform: scale(3); }
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1); } }
@keyframes opacity {
0% {
opacity: 0;
-webkit-transform: scale(3);
transform: scale(3); }
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1); } }
/*# sourceMappingURL=style.css.map */
.prodcut-price-tag{
display: block;
font-size: 20px;
font-weight: 300;
padding: 0px 0 0px;
text-align: left;
width: 100%;
margin-top: 0px;
text-transform: capitalize;
font-weight: 700;
}
.line-height-text{
line-height: 40px !important;
}
/*************************** clickable Buttons ***********************/
.text-active,
.active > .text,
.active > .auto .text {
display: none !important;
}
.active > .text-active,
.active > .auto .text-active {
display: inline-block !important;
color: #dbd8d8;
} | 0.429429 | 0.171304 |
:root {
--blue: #7289da;
--white: #fff;
--grey: #707479;
--grey__light: #7d8591;
--dark__light: #36393f;
--dark__medium: #2f3136;
--dark: #202225;
}
* {
margin: 0;
padding: 0;
}
html {
background: var(--dark);
font-family: Roboto;
}
body {
overflow: hidden;
}
img {
max-width: 100%;
}
.sharp {
color: var(--grey__light) !important;
}
/* 38px - custom toolbar`s height */
.app {
height: calc(100vh - 38px);
display: grid;
grid-template-areas: 'server rooms chat usersList';
grid-template-columns: 85px minmax(220px, 0.2fr) 1fr 250px;
grid-template-rows: 1fr;
color: var(--grey__light);
}
.servers {
grid-area: server;
background: var(--dark);
}
.top-bar {
grid-area: topbar;
background: greenyellow;
display: grid;
grid-template-columns: 200px 1fr;
}
.rooms {
background: var(--dark__medium);
grid-area: rooms;
min-width: 210px;
}
.leave-channel {
margin-top: auto;
padding: 10px;
cursor: pointer;
background: var(--dark);
}
.leave-channel.hide {
display: none;
}
.leave-channel div {
color: green;
}
.leave-channel .leave-button {
font-size: 12px;
}
.rooms-user {
margin-top: auto;
background: #2a2c31;
padding: 10px 0;
display: flex;
align-items: center;
justify-content: space-around;
}
.rooms-user div[class^='icon'] {
cursor: pointer;
}
.rooms-user div[class^='icon']:hover {
color: var(--white);
}
.rooms-user > div:first-child {
cursor: pointer;
display: flex;
align-items: center;
}
.user-name {
color: var(--white);
font-size: 17px;
}
.user-id {
font-size: 14px;
}
.user-settings {
display: flex;
justify-content: space-around;
width: 40%;
font-size: 20px;
}
.chat {
background: var(--dark__light);
grid-area: chat;
}
.users-list {
background: var(--dark__medium);
grid-area: usersList;
}
/* ========================SERVERS======================== */
.toolbar {
z-index: 100000000;
-webkit-app-region: drag;
display: flex;
justify-content: space-between;
padding: 3px 15px;
padding-bottom: 5px;
color: var(--grey__light);
}
.toolbar div[class^='icon'] {
-webkit-app-region: no-drag;
}
.toolbar .logo {
font-size: 24px;
font-weight: bold;
opacity: 0.5;
z-index: 200;
}
.toolbar-btns {
display: flex;
z-index: 200;
}
.toolbar-btns div {
align-self: center;
cursor: pointer;
font-size: 20px;
padding: 5px;
}
.toolbar-btns div:hover {
color: var(--white);
}
/* ========================SERVERS======================== */
.servers {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
max-height: 93vh;
}
.servers .items {
max-height: 100%;
overflow-y: auto;
padding-right: 5px;
}
.servers .items::-webkit-scrollbar {
width: 3px;
border-radius: 10px;
}
/* Track */
.servers .items::-webkit-scrollbar-track {
background: var(--dark__medium);
border-radius: 10px;
}
/* Handle */
.servers .items::-webkit-scrollbar-thumb {
background: var(--grey);
border-radius: 10px;
}
/* Handle on hover */
.servers .items::-webkit-scrollbar-thumb:hover {
background: var(--dark__medium);
}
.servers .server {
background: var(--white);
width: 56px;
height: 56px;
margin-bottom: 15px;
border-radius: 50%;
}
.servers .server img {
border-radius: 50%;
}
.servers .icon-plus {
position: relative;
top: 10px;
font-size: 24px;
cursor: pointer;
}
/* ========================ROOMS======================== */
.rooms {
display: flex;
flex-direction: column;
justify-content: space-between;
border-top-left-radius: 10px;
}
.room-title {
z-index: 10;
position: relative;
padding-left: 5px;
}
.rooms .icon-chevron-down {
font-size: 12px;
transition: 0.2s all;
}
.room-title .icon-plus {
position: absolute;
right: 0;
font-size: 16px;
}
.rooms-wrapper {
padding: 7px 18px;
padding-top: 0;
transition: 0.2s all;
max-height: 500px;
z-index: 10;
}
.rooms-wrapper.hide {
max-height: 0;
z-index: -10;
}
.rooms-wrapper.hide .channels {
display: none;
}
.rooms .server-name {
margin-bottom: 7px;
padding: 8px 15px;
cursor: pointer;
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid var(--dark);
color: var(--white);
font-size: 18px;
}
.server-dropdown {
background: var(--dark);
z-index: 1000;
position: absolute;
left: 0;
top: 40px;
}
.server-dropdown.hide {
display: none;
}
.server-dropdown ul {
list-style: none;
}
.server-dropdown li {
padding: 10px;
font-size: 16px;
line-height: 20px;
}
.server-dropdown li:hover {
background: var(--dark__light);
}
.room-title {
margin-right: 7px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: flex-start;
}
.room-title span {
font-size: 12px;
margin: 0 3px;
}
.room .channel {
margin: 8px 0;
}
.channel-title {
cursor: pointer;
}
.channel-user-name {
margin: 5px 0;
padding-left: 15px;
display: flex;
align-items: center;
}
.channel-user-name img {
width: 17px;
height: 17px;
border-radius: 50%;
}
.rooms-popup {
z-index: 100;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.4);
display: flex;
align-items: center;
justify-content: center;
}
.rooms-popup.hide {
display: none;
}
.rooms-popup-inner {
background: var(--dark__light);
z-index: 101;
width: 25vw;
min-width: 250px;
height: 25vh;
min-height: 300px;
padding: 15px;
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: column;
border-radius: 10px;
box-shadow: 0px 0px 5px -2px var(--white);
}
.rooms-popup-inner h2 {
color: var(--white);
}
.rooms-popup-types {
margin-top: 10px;
}
.rooms-popup-type {
cursor: pointer;
display: flex;
align-items: center;
font-size: 24px;
margin: 7px 0;
}
.rooms-popup-type.selected .custom-radio-inner {
display: block;
}
.custom-radio {
margin-right: 10px;
width: 18px;
height: 18px;
border-radius: 50%;
background: var(--white);
position: relative;
}
.custom-radio-inner {
display: none;
width: 12px;
height: 12px;
border-radius: 50%;
position: absolute;
top: 3px;
left: 3px;
background: var(--blue);
}
.rooms-popup-inner input,
.rooms-popup-inner button {
margin: 10px 0;
padding: 5px 5px;
background: none;
color: #ccc;
border: none;
border-bottom: 2px solid var(--blue);
/* border: 1px solid var(--grey__light); */
border-radius: 7px;
outline: none;
font-size: 22px;
}
.rooms-popup-inner button {
background: var(--blue);
color: var(--white);
border: none;
cursor: pointer;
font-size: 20px;
padding: 7px 12px;
}
.rooms-popup-inner button:active {
background: #6479c5;
}
@media screen and (max-width: 1000px) {
.rooms-popup h2 {
font-size: 22px;
}
.rooms-popup-type {
font-size: 20px;
}
.custom-radio {
width: 14px;
height: 14px;
}
.custom-radio-inner {
width: 10px;
height: 10px;
top: 2px;
left: 2px;
}
.rooms-popup-inner input {
width: 70%;
font-size: 20px;
}
}
/* ========================CHAT======================== */
.chat {
display: flex;
flex-direction: column;
}
.chat-topbar {
padding: 8px 10px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid var(--dark);
}
.top-bar-btns {
display: flex;
justify-content: space-evenly;
width: 110px;
}
.top-bar-btns div[class^='icon'] {
cursor: pointer;
font-size: 22px;
}
.top-bar-btns .pinned-messages {
background: url('./fonts/office-push-pin.svg') no-repeat;
width: 22px;
}
.pinned-messages {
position: relative;
}
.pinned-messages .content {
display: none;
width: 500px;
max-height: 300px;
padding: 15px;
overflow-y: auto;
list-style: none;
font-size: 18px;
border: 3px solid var(--dark);
border-radius: 7px;
background: var(--dark__light);
z-index: 1000;
position: absolute;
left: -300px;
top: 20px;
}
.pinned-messages .content::-webkit-scrollbar {
width: 7px;
border-radius: 10px;
}
/* Track */
.pinned-messages .content::-webkit-scrollbar-track {
background: var(--dark__medium);
border-radius: 10px;
}
/* Handle */
.pinned-messages .content::-webkit-scrollbar-thumb {
background: var(--grey);
border-radius: 10px;
}
/* Handle on hover */
.pinned-messages .content::-webkit-scrollbar-thumb:hover {
background: var(--dark__medium);
}
.pinned-messages-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 20;
display: none;
}
.pinned-message-title {
font-size: 22px;
font-weight: bold;
text-align: center;
color: var(--white);
padding: 15px 0;
}
.pinned-messages ul li {
margin: 10px 0;
padding: 10px 0;
border-bottom: 2px solid var(--dark);
}
.pinned-messages ul li:last-child {
border: none;
}
.chat-channel-name {
color: var(--white);
display: flex;
align-items: center;
}
.chat-channel-name .sharp {
font-size: 24px;
margin-right: 5px;
}
.chat {
max-height: calc(100vh - 35px);
}
.chat-content {
padding: 15px 10px;
overflow-y: auto;
max-height: calc(100vh - 35px);
}
.chat-content::-webkit-scrollbar {
width: 7px;
border-radius: 10px;
}
/* Track */
.chat-content::-webkit-scrollbar-track {
background: var(--dark__medium);
border-radius: 10px;
}
/* Handle */
.chat-content::-webkit-scrollbar-thumb {
background: var(--grey);
border-radius: 10px;
}
/* Handle on hover */
.chat-content::-webkit-scrollbar-thumb:hover {
background: var(--dark__medium);
}
.chat-message {
margin: 5px 0;
padding: 10px;
position: relative;
color: #cbcdce;
border-radius: 5px;
}
.message-time {
position: relative;
color: var(--grey);
}
.chat-message .icon-gear {
display: none;
position: relative;
}
.chat-message:hover .icon-gear {
display: inline;
}
.icon-gear ul {
list-style: none;
display: none;
padding: 10px;
font-size: 18px;
font-family: Roboto;
background: var(--dark);
position: absolute;
left: 50%;
top: -30px;
}
.icon-gear li {
margin: 5px 0;
}
.icon-gear li:hover {
color: var(--white);
}
.message:hover {
background: var(--dark__medium);
}
.message span[class^='icon'] {
cursor: pointer;
}
.message span[class^='icon']:hover ul {
display: block;
}
.message-inner {
max-width: 90%;
display: flex;
}
.message-avatar {
margin-right: 15px;
min-width: 35px;
width: 35px;
height: 35px;
border-radius: 50%;
background: var(--white);
}
.message-author {
color: purple;
}
.message-content.edited::after {
content: '(edited)';
color: var(--white);
font-size: 12px;
margin-left: 5px;
}
.chat-field {
width: 97%;
margin: 10px auto;
margin-top: auto;
padding: 7px;
border-radius: 7px;
display: grid;
grid-template-columns: 40px 1fr 40px 40px;
align-items: center;
background: #474a52;
}
.chat-field div[class^='icon'],
.chat-gif {
text-align: center;
width: auto;
font-size: 30px;
cursor: pointer;
}
.chat-field .textarea {
border: none;
padding: 7px 0;
background: #474a52;
outline: none;
color: var(--grey__light);
resize: none;
max-height: 200px;
overflow-y: auto;
overflow-x: hidden;
font-size: 18px;
font-family: Roboto;
}
.textarea::-webkit-scrollbar {
width: 3px;
border-radius: 10px;
}
/* Track */
.textarea::-webkit-scrollbar-track {
background: var(--dark__medium);
border-radius: 10px;
}
/* Handle */
.textarea::-webkit-scrollbar-thumb {
background: var(--grey);
border-radius: 10px;
}
/* Handle on hover */
.textarea::-webkit-scrollbar-thumb:hover {
background: var(--dark__medium);
}
/* ========================USERSLIST======================== */
.users-list-topbar {
display: flex;
align-items: center;
justify-content: flex-start;
padding: 5px 7px;
padding-left: 16px;
}
.users-list-topbar div[class^='icon'] {
font-size: 22px;
cursor: pointer;
}
.user {
position: relative;
}
.user-hidden-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.user-hidden-overlay.hide {
display: none;
}
.user-hidden {
position: absolute;
top: -110px;
left: -260px;
background-color: var(--dark);
background: linear-gradient(180deg, var(--blue) 0%, var(--dark) 32%);
min-height: 200px;
max-width: 245px;
padding: 5px;
border-radius: 5px;
}
.user-hidden.hide {
display: none;
}
.user-hidden img {
max-width: 100%;
margin: 5px 0;
}
.user-hidden .user-avatar {
box-shadow: 0px 0px 10px -4px var(--dark);
margin-right: 15px;
}
.user-hidden hr {
background: var(--dark__light);
border-color: var(--grey);
border-width: 1;
display: none;
border-top: none;
}
.user-desc {
color: var(--grey__light);
margin: 20px 0;
margin-top: 0;
}
.user-inner {
padding: 10px;
}
.user-inner h2,
.user-inner h3 {
color: var(--white);
}
.user-inner:first-child {
display: flex;
padding-bottom: 20px;
}
.user-inner:first-child div {
display: flex;
flex-direction: column;
}
.user-playing {
font-size: 18px;
}
.user-playing span {
font-weight: bold;
}
.search {
position: relative;
}
.search input {
background: var(--dark);
color: var(--grey__light);
padding: 5px;
border: none;
height: 20px;
outline: none;
}
.search button {
cursor: pointer;
color: var(--grey__light);
border: none;
background: none;
position: absolute;
font-size: 18px;
right: 5px;
top: 5px;
}
.groups {
padding: 10px;
padding-left: 15px;
}
.groups .group {
margin-bottom: 30px;
}
.group-name {
font-weight: bold;
margin-bottom: 10px;
font-size: 18px;
}
.users {
padding-left: 5px;
}
.users .user {
display: flex;
margin-bottom: 10px;
cursor: pointer;
}
.user-avatar {
width: 40px;
min-width: 40px;
height: 40px;
background: url('./discord.png') center;
background-size: cover;
border-radius: 50%;
margin-right: 7px;
}
.users .user-name {
color: purple;
} | src/index.css | :root {
--blue: #7289da;
--white: #fff;
--grey: #707479;
--grey__light: #7d8591;
--dark__light: #36393f;
--dark__medium: #2f3136;
--dark: #202225;
}
* {
margin: 0;
padding: 0;
}
html {
background: var(--dark);
font-family: Roboto;
}
body {
overflow: hidden;
}
img {
max-width: 100%;
}
.sharp {
color: var(--grey__light) !important;
}
/* 38px - custom toolbar`s height */
.app {
height: calc(100vh - 38px);
display: grid;
grid-template-areas: 'server rooms chat usersList';
grid-template-columns: 85px minmax(220px, 0.2fr) 1fr 250px;
grid-template-rows: 1fr;
color: var(--grey__light);
}
.servers {
grid-area: server;
background: var(--dark);
}
.top-bar {
grid-area: topbar;
background: greenyellow;
display: grid;
grid-template-columns: 200px 1fr;
}
.rooms {
background: var(--dark__medium);
grid-area: rooms;
min-width: 210px;
}
.leave-channel {
margin-top: auto;
padding: 10px;
cursor: pointer;
background: var(--dark);
}
.leave-channel.hide {
display: none;
}
.leave-channel div {
color: green;
}
.leave-channel .leave-button {
font-size: 12px;
}
.rooms-user {
margin-top: auto;
background: #2a2c31;
padding: 10px 0;
display: flex;
align-items: center;
justify-content: space-around;
}
.rooms-user div[class^='icon'] {
cursor: pointer;
}
.rooms-user div[class^='icon']:hover {
color: var(--white);
}
.rooms-user > div:first-child {
cursor: pointer;
display: flex;
align-items: center;
}
.user-name {
color: var(--white);
font-size: 17px;
}
.user-id {
font-size: 14px;
}
.user-settings {
display: flex;
justify-content: space-around;
width: 40%;
font-size: 20px;
}
.chat {
background: var(--dark__light);
grid-area: chat;
}
.users-list {
background: var(--dark__medium);
grid-area: usersList;
}
/* ========================SERVERS======================== */
.toolbar {
z-index: 100000000;
-webkit-app-region: drag;
display: flex;
justify-content: space-between;
padding: 3px 15px;
padding-bottom: 5px;
color: var(--grey__light);
}
.toolbar div[class^='icon'] {
-webkit-app-region: no-drag;
}
.toolbar .logo {
font-size: 24px;
font-weight: bold;
opacity: 0.5;
z-index: 200;
}
.toolbar-btns {
display: flex;
z-index: 200;
}
.toolbar-btns div {
align-self: center;
cursor: pointer;
font-size: 20px;
padding: 5px;
}
.toolbar-btns div:hover {
color: var(--white);
}
/* ========================SERVERS======================== */
.servers {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
max-height: 93vh;
}
.servers .items {
max-height: 100%;
overflow-y: auto;
padding-right: 5px;
}
.servers .items::-webkit-scrollbar {
width: 3px;
border-radius: 10px;
}
/* Track */
.servers .items::-webkit-scrollbar-track {
background: var(--dark__medium);
border-radius: 10px;
}
/* Handle */
.servers .items::-webkit-scrollbar-thumb {
background: var(--grey);
border-radius: 10px;
}
/* Handle on hover */
.servers .items::-webkit-scrollbar-thumb:hover {
background: var(--dark__medium);
}
.servers .server {
background: var(--white);
width: 56px;
height: 56px;
margin-bottom: 15px;
border-radius: 50%;
}
.servers .server img {
border-radius: 50%;
}
.servers .icon-plus {
position: relative;
top: 10px;
font-size: 24px;
cursor: pointer;
}
/* ========================ROOMS======================== */
.rooms {
display: flex;
flex-direction: column;
justify-content: space-between;
border-top-left-radius: 10px;
}
.room-title {
z-index: 10;
position: relative;
padding-left: 5px;
}
.rooms .icon-chevron-down {
font-size: 12px;
transition: 0.2s all;
}
.room-title .icon-plus {
position: absolute;
right: 0;
font-size: 16px;
}
.rooms-wrapper {
padding: 7px 18px;
padding-top: 0;
transition: 0.2s all;
max-height: 500px;
z-index: 10;
}
.rooms-wrapper.hide {
max-height: 0;
z-index: -10;
}
.rooms-wrapper.hide .channels {
display: none;
}
.rooms .server-name {
margin-bottom: 7px;
padding: 8px 15px;
cursor: pointer;
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid var(--dark);
color: var(--white);
font-size: 18px;
}
.server-dropdown {
background: var(--dark);
z-index: 1000;
position: absolute;
left: 0;
top: 40px;
}
.server-dropdown.hide {
display: none;
}
.server-dropdown ul {
list-style: none;
}
.server-dropdown li {
padding: 10px;
font-size: 16px;
line-height: 20px;
}
.server-dropdown li:hover {
background: var(--dark__light);
}
.room-title {
margin-right: 7px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: flex-start;
}
.room-title span {
font-size: 12px;
margin: 0 3px;
}
.room .channel {
margin: 8px 0;
}
.channel-title {
cursor: pointer;
}
.channel-user-name {
margin: 5px 0;
padding-left: 15px;
display: flex;
align-items: center;
}
.channel-user-name img {
width: 17px;
height: 17px;
border-radius: 50%;
}
.rooms-popup {
z-index: 100;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.4);
display: flex;
align-items: center;
justify-content: center;
}
.rooms-popup.hide {
display: none;
}
.rooms-popup-inner {
background: var(--dark__light);
z-index: 101;
width: 25vw;
min-width: 250px;
height: 25vh;
min-height: 300px;
padding: 15px;
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: column;
border-radius: 10px;
box-shadow: 0px 0px 5px -2px var(--white);
}
.rooms-popup-inner h2 {
color: var(--white);
}
.rooms-popup-types {
margin-top: 10px;
}
.rooms-popup-type {
cursor: pointer;
display: flex;
align-items: center;
font-size: 24px;
margin: 7px 0;
}
.rooms-popup-type.selected .custom-radio-inner {
display: block;
}
.custom-radio {
margin-right: 10px;
width: 18px;
height: 18px;
border-radius: 50%;
background: var(--white);
position: relative;
}
.custom-radio-inner {
display: none;
width: 12px;
height: 12px;
border-radius: 50%;
position: absolute;
top: 3px;
left: 3px;
background: var(--blue);
}
.rooms-popup-inner input,
.rooms-popup-inner button {
margin: 10px 0;
padding: 5px 5px;
background: none;
color: #ccc;
border: none;
border-bottom: 2px solid var(--blue);
/* border: 1px solid var(--grey__light); */
border-radius: 7px;
outline: none;
font-size: 22px;
}
.rooms-popup-inner button {
background: var(--blue);
color: var(--white);
border: none;
cursor: pointer;
font-size: 20px;
padding: 7px 12px;
}
.rooms-popup-inner button:active {
background: #6479c5;
}
@media screen and (max-width: 1000px) {
.rooms-popup h2 {
font-size: 22px;
}
.rooms-popup-type {
font-size: 20px;
}
.custom-radio {
width: 14px;
height: 14px;
}
.custom-radio-inner {
width: 10px;
height: 10px;
top: 2px;
left: 2px;
}
.rooms-popup-inner input {
width: 70%;
font-size: 20px;
}
}
/* ========================CHAT======================== */
.chat {
display: flex;
flex-direction: column;
}
.chat-topbar {
padding: 8px 10px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid var(--dark);
}
.top-bar-btns {
display: flex;
justify-content: space-evenly;
width: 110px;
}
.top-bar-btns div[class^='icon'] {
cursor: pointer;
font-size: 22px;
}
.top-bar-btns .pinned-messages {
background: url('./fonts/office-push-pin.svg') no-repeat;
width: 22px;
}
.pinned-messages {
position: relative;
}
.pinned-messages .content {
display: none;
width: 500px;
max-height: 300px;
padding: 15px;
overflow-y: auto;
list-style: none;
font-size: 18px;
border: 3px solid var(--dark);
border-radius: 7px;
background: var(--dark__light);
z-index: 1000;
position: absolute;
left: -300px;
top: 20px;
}
.pinned-messages .content::-webkit-scrollbar {
width: 7px;
border-radius: 10px;
}
/* Track */
.pinned-messages .content::-webkit-scrollbar-track {
background: var(--dark__medium);
border-radius: 10px;
}
/* Handle */
.pinned-messages .content::-webkit-scrollbar-thumb {
background: var(--grey);
border-radius: 10px;
}
/* Handle on hover */
.pinned-messages .content::-webkit-scrollbar-thumb:hover {
background: var(--dark__medium);
}
.pinned-messages-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 20;
display: none;
}
.pinned-message-title {
font-size: 22px;
font-weight: bold;
text-align: center;
color: var(--white);
padding: 15px 0;
}
.pinned-messages ul li {
margin: 10px 0;
padding: 10px 0;
border-bottom: 2px solid var(--dark);
}
.pinned-messages ul li:last-child {
border: none;
}
.chat-channel-name {
color: var(--white);
display: flex;
align-items: center;
}
.chat-channel-name .sharp {
font-size: 24px;
margin-right: 5px;
}
.chat {
max-height: calc(100vh - 35px);
}
.chat-content {
padding: 15px 10px;
overflow-y: auto;
max-height: calc(100vh - 35px);
}
.chat-content::-webkit-scrollbar {
width: 7px;
border-radius: 10px;
}
/* Track */
.chat-content::-webkit-scrollbar-track {
background: var(--dark__medium);
border-radius: 10px;
}
/* Handle */
.chat-content::-webkit-scrollbar-thumb {
background: var(--grey);
border-radius: 10px;
}
/* Handle on hover */
.chat-content::-webkit-scrollbar-thumb:hover {
background: var(--dark__medium);
}
.chat-message {
margin: 5px 0;
padding: 10px;
position: relative;
color: #cbcdce;
border-radius: 5px;
}
.message-time {
position: relative;
color: var(--grey);
}
.chat-message .icon-gear {
display: none;
position: relative;
}
.chat-message:hover .icon-gear {
display: inline;
}
.icon-gear ul {
list-style: none;
display: none;
padding: 10px;
font-size: 18px;
font-family: Roboto;
background: var(--dark);
position: absolute;
left: 50%;
top: -30px;
}
.icon-gear li {
margin: 5px 0;
}
.icon-gear li:hover {
color: var(--white);
}
.message:hover {
background: var(--dark__medium);
}
.message span[class^='icon'] {
cursor: pointer;
}
.message span[class^='icon']:hover ul {
display: block;
}
.message-inner {
max-width: 90%;
display: flex;
}
.message-avatar {
margin-right: 15px;
min-width: 35px;
width: 35px;
height: 35px;
border-radius: 50%;
background: var(--white);
}
.message-author {
color: purple;
}
.message-content.edited::after {
content: '(edited)';
color: var(--white);
font-size: 12px;
margin-left: 5px;
}
.chat-field {
width: 97%;
margin: 10px auto;
margin-top: auto;
padding: 7px;
border-radius: 7px;
display: grid;
grid-template-columns: 40px 1fr 40px 40px;
align-items: center;
background: #474a52;
}
.chat-field div[class^='icon'],
.chat-gif {
text-align: center;
width: auto;
font-size: 30px;
cursor: pointer;
}
.chat-field .textarea {
border: none;
padding: 7px 0;
background: #474a52;
outline: none;
color: var(--grey__light);
resize: none;
max-height: 200px;
overflow-y: auto;
overflow-x: hidden;
font-size: 18px;
font-family: Roboto;
}
.textarea::-webkit-scrollbar {
width: 3px;
border-radius: 10px;
}
/* Track */
.textarea::-webkit-scrollbar-track {
background: var(--dark__medium);
border-radius: 10px;
}
/* Handle */
.textarea::-webkit-scrollbar-thumb {
background: var(--grey);
border-radius: 10px;
}
/* Handle on hover */
.textarea::-webkit-scrollbar-thumb:hover {
background: var(--dark__medium);
}
/* ========================USERSLIST======================== */
.users-list-topbar {
display: flex;
align-items: center;
justify-content: flex-start;
padding: 5px 7px;
padding-left: 16px;
}
.users-list-topbar div[class^='icon'] {
font-size: 22px;
cursor: pointer;
}
.user {
position: relative;
}
.user-hidden-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.user-hidden-overlay.hide {
display: none;
}
.user-hidden {
position: absolute;
top: -110px;
left: -260px;
background-color: var(--dark);
background: linear-gradient(180deg, var(--blue) 0%, var(--dark) 32%);
min-height: 200px;
max-width: 245px;
padding: 5px;
border-radius: 5px;
}
.user-hidden.hide {
display: none;
}
.user-hidden img {
max-width: 100%;
margin: 5px 0;
}
.user-hidden .user-avatar {
box-shadow: 0px 0px 10px -4px var(--dark);
margin-right: 15px;
}
.user-hidden hr {
background: var(--dark__light);
border-color: var(--grey);
border-width: 1;
display: none;
border-top: none;
}
.user-desc {
color: var(--grey__light);
margin: 20px 0;
margin-top: 0;
}
.user-inner {
padding: 10px;
}
.user-inner h2,
.user-inner h3 {
color: var(--white);
}
.user-inner:first-child {
display: flex;
padding-bottom: 20px;
}
.user-inner:first-child div {
display: flex;
flex-direction: column;
}
.user-playing {
font-size: 18px;
}
.user-playing span {
font-weight: bold;
}
.search {
position: relative;
}
.search input {
background: var(--dark);
color: var(--grey__light);
padding: 5px;
border: none;
height: 20px;
outline: none;
}
.search button {
cursor: pointer;
color: var(--grey__light);
border: none;
background: none;
position: absolute;
font-size: 18px;
right: 5px;
top: 5px;
}
.groups {
padding: 10px;
padding-left: 15px;
}
.groups .group {
margin-bottom: 30px;
}
.group-name {
font-weight: bold;
margin-bottom: 10px;
font-size: 18px;
}
.users {
padding-left: 5px;
}
.users .user {
display: flex;
margin-bottom: 10px;
cursor: pointer;
}
.user-avatar {
width: 40px;
min-width: 40px;
height: 40px;
background: url('./discord.png') center;
background-size: cover;
border-radius: 50%;
margin-right: 7px;
}
.users .user-name {
color: purple;
} | 0.418459 | 0.091342 |
body {
background-image: url("../images/main-background.jpg") !important;
background-position: top center !important;
background-repeat: repeat-y !important;
background-color: #000000 !important;
color: #ffffff;
}
a,
a:focus,
a:active,
a:hover {
color: inherit;
}
hr {
border-top: 1px solid #474747 !important;
}
/****** MISC STYLES ******/
.no-scroll {
overflow: hidden;
}
.padding {
padding: 0 10%;
}
.tiny {
font-size: 12px;
line-height: 20px;
}
.timer-active {
color: #a94442 !important;
}
.timer-done {
color: #3c763d !important;
}
.new {
color: #3c763d ;
font-weight: bold;
}
/****** BBCODE STYLES ******/
.bb_image {
max-width: 100%;
}
/****** LOGIN STYLES ******/
.login-logo {
padding-top: 150px;
padding-bottom:50px;
text-align: center;
}
.login-form {
width: 400px;
margin-left: auto;
margin-right: auto;
}
/****** USER STATUS STYLES ******/
.user-status-0 .side-bar {
display: none;
}
.user-status-0 .game-container {
max-width: 800px;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
float: none;
}
.user-status-0 .logo-container {
text-align: center !important;
width: 100%;
}
.user-status-0 .sub-header,
.user-status-0 .header .col-md-2,
.user-status-0 .header .col-md-3 {
display: none;
}
.user-level-0:before {
content: "[BANNED]";
}
.user-level-0,
.user-level-0:hover {
color: #777;
}
.user-level-2,
.user-level-2:hover {
color: #ff0;
font-weight: bold;
}
/****** HEADER STYLES ******/
.header {
background-color: #131313;
border-bottom: 1px solid #272727;
line-height: 40px;
margin-bottom: 10px;
}
.header .logo-container {
line-height: 80px;
}
/****** SIDEBAR STYLES ******/
.side-bar {
width: 220px;
float: left;
}
.side-bar .label {
float: right;
}
.side-bar .list-group {
border: 1px solid #474747;
border-top: none;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}
.side-bar .list-group .list-group-item {
position: relative;
padding: 0px 5px;
line-height: 22px;
background-color: #111 !important;
background-color: #111 !important;
font-size: 12px;
}
.side-bar .list-group .list-group-item:hover {
background-color: #222 !important;
}
.side-bar .list-group .list-group-item small {
position: relative;
font-size: 11px;
z-index: 200;
}
.side-bar .list-group .progress {
position: absolute;
top: 3px;
right: 3px;
bottom: 3px;
width: 100px;
height: 16px;
z-index: 100;
}
/****** GAME CONTAINER STYLES ******/
.game-container {
width: calc(100% - 230px);
float: right;
}
/****** CRIME HOLDER ******/
.crime-holder {
border:1px solid rgba(255, 255, 255, 0.2);
background: #000000;
margin-bottom:10px;
}
.crime-holder p {
padding:10px;
margin:0px;
text-align: right;
}
.crime-holder .cooldown {
color: #777;
padding-right: 20px;
}
.crime-holder .action {
float: left;
}
.crime-holder .crime-perc {
width:100%;
height:2px;
background-color:#900;
}
.crime-holder .crime-perc .perc {
height:2px;
background-color:#090;
width: 0px;
}
.crime-holder .crime-header {
background-color: #272727;
border-bottom: 1px solid #474747;
}
/****** BOOTSTRAP OVERRIDES ******/
.alert {
border: 1px solid;
}
.well {
background-color: #000;
border: 1px solid #474747;
text-align: left;
}
.well h3 {
margin-top: 0px;
}
/*** Panel ***/
.panel{
background-color: transparent;
border: none;
}
.panel-heading{
position: relative;
text-transform: capitalize;
color: #fff !important;
border-bottom: none;
height: 34px;
background-color: rgba(0, 0, 0, 0.6) !important;
padding: 0px;
text-align: center;
line-height: 34px;
}
.panel-body {
background: rgba(0, 0, 0, 0.7);
border: none;
border-radius: 5px;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border: 1px solid #373737;
border-top: none;
}
/*** Forms ***/
.form-control {
background-color: rgba(0, 0, 0, 0.67);
border: 1px solid rgba(255, 255, 255, 0.14);
}
.form-control:focus {
border: 1px solid rgba(255, 255, 255, 0.35);
box-shadow: none;
}
.form-control-inline {
display: inline-block;
width: 200px;
}
.form-group .form-control {
color: #aaa;
}
/*** Drop Down Menu ***/
.dropdown-menu {
background-color: #272727;
}
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
background-color: #474747;
color: #b7b7b7;
}
.dropdown-menu>li>a {
color: #979797;
}
.dropdown-menu .divider {
background-color: #979797;
}
/*** Tables ***/
table tr td, table tr th {
text-align: left;
}
.table-borderless tr, .table-borderless tr td, .table-borderless tr th {
border: none !important;
}
.table-bordered,
.table-bordered th,
.table-bordered td {
border-color: #272727 !important;
}
.table-striped>thead>tr:nth-child(odd)>td, .table-striped>thead>tr:nth-child(odd)>th {
background-color: #171717;
}
.table-striped>tbody>tr:nth-child(odd)>td, .table-striped>tbody>tr:nth-child(odd)>th {
background-color: #272727;
}
.table-striped>tbody>tr:nth-child(even)>td, .table-striped>tbody>tr:nth-child(even)>th {
background-color: #373737;
}
.table-condensed>thead>tr>th, .table-condensed>tbody>tr>th, .table-condensed>tfoot>tr>th, .table-condensed>thead>tr>td, .table-condensed>tbody>tr>td, .table-condensed>tfoot>tr>td {
padding: 2px 5px;
}
/*** Images ***/
.img-thumbnail {
background-color: transparent;
border-color: #555;
}
/****** Progress Bars ******/
.progress {
background-color: #050505;
border: 1px solid #000;
}
.progress-bar-success {
background-color: #040;
}
/****** Navs ******/
.nav-pills>li>a {
padding: 5px;
margin-bottom: 10px;
}
.nav-pills>li>a:hover {
background-color: #474747;
}
.nav-tabs {
border-bottom: 1px solid #474747 !important;
margin-bottom: 10px;
padding-bottom: 10px;
}
.nav-tabs li a {
border-bottom-color: transparent !important;
}
.nav-tabs li a:hover {
background-color: #474747;
border-radius: 5px;
border-color: transparent;
}
/****** Lists ******/
.list-group, .list-group .list-group-item {
border-color: #474747;
color: #fff;
}
.list-group .list-group-item:nth-child(odd) {
background-color: #171717;
}
.list-group .list-group-item:nth-child(even) {
background-color: #252525;
}
.list-group .list-group-item .badge {
background-color: transparent;
}
/****** Pagnation ******/
.pagination li a {
background-color: #252524;
color: #fff;
border-color: #474747;
}
.pagination li:hover a {
background-color: inherit !important;
color: inherit !important;
border-color: #474747;
}
.pagination li.active a {
background-color: #676767 !important;
color: #fff;
border-color: #ccc;
}
.pagination li:nth-child(odd) a {
background-color: #161616;
}
/****** Buttons ******/
.btn {
color:#fff;
position: relative;
border: none;
background-color: transparent !important;
}
.btn:hover{
text-decoration: underline;
background-color: inherit;
}
/****** Colors ******/
.btn-default,
.btn.btn-default:hover,
.panel-default > .panel-heading {
background: rgb(48,48,48);
background: linear-gradient(180deg, rgba(86,86,86,1) 0%, rgba(48,48,48,1) 5%, rgba(48,48,48,1) 35%, rgba(36,36,36,1) 50%);
border: #2c2c2c 1px solid;
color: #fff;
}
.text-success {
color: #00c300;
}
.btn-success,
.btn.btn-success:hover,
.panel-success > .panel-heading {
background: rgb(00,75,00);
background: linear-gradient(180deg, rgba(00,125,00,1) 0%, rgba(00,75,00,1) 5%, rgba(00,75,00,1) 35%, rgba(00,45,00,1) 50%);
border: #0c560c 1px solid;
color: #fff;
}
.text-danger {
color: #c30000;
}
.btn-danger,
.btn.btn-danger:hover,
.panel-danger > .panel-heading {
background: rgb(90,00,00);
background: linear-gradient(180deg, rgba(150,00,00,1) 0%, rgba(90,00,00,1) 5%, rgba(90,00,00,1) 35%, rgba(60,00,00,1) 50%);
border: #650c0c 1px solid;
color: #fff;
}
.text-info {
color: #00f3ff;
}
.btn-info,
.btn.btn-info:hover,
.panel-info > .panel-heading {
background: rgb(00,90,90);
background: linear-gradient(180deg, rgba(0,150,150,1) 0%, rgba(00,90,90,1) 5%, rgba(00,90,90,1) 35%, rgba(00,70,70,1) 50%);
border: #0c6365 1px solid;
color: #fff;
}
.text-warning {
color: #ffd400;
}
.btn-warning,
.btn.btn-warning:hover,
.panel-warning > .panel-heading {
background: rgb(90,75,00);
background: linear-gradient(180deg, rgba(150,110,00,1) 0%, rgba(90,75,00,1) 5%, rgba(90,75,00,1) 35%, rgba(60,45,00,1) 50%);
border: #65500c 1px solid;
color: #fff;
}
/****** MOBILE STYLES ******/
@media (max-width: 767px) {
html, body {
height: 100%;
font-size: 12px;
}
.side-bar {
display: none;
}
.show-sidebar .side-bar {
display: block;
width: 100%;
}
.show-sidebar .game-container {
display: none;
}
.login-logo {
padding-top: 25px;
padding-bottom: 25px;
text-align: center;
}
.mobile-menu {
background-color: #272727;
height: 100%;
overflow: auto;
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
display: none;
z-index: 1000;
}
.mobile-menu ul.nav {
position: absolute;
top: 0px;
bottom: 30px;
left: 0px;
right: 0px;
overflow: auto;
}
.mobile-menu .close-mobile-menu {
position: absolute;
text-align: center;
bottom: 0px;
left: 0px;
right: 0px;
line-height: 30px;
color: #fff;
z-index: 1100;
background-color: #474747;
}
.mobile-menu li {
float: left;
text-align: center;
}
.mobile-menu li a {
padding: 7px 15px;
margin-bottom: 0px;
}
.mobile-menu .title {
background-color: #171717;
display: block;
clear: both;
font-weight: bold;
}
.padding {
padding: 0 2%;
}
.game-container {
width: 100%;
padding: 0px;
}
.navbar-toggle {
background-color: #272727;
border: 1px solid #474747;
margin-left: -5px;
margin-right: 0px;
float: left;
}
.navbar-toggle .icon-bar {
background-color: #fff;
}
.header {
line-height: 25px;
}
.header .logo-container {
text-align: center !important;
}
.header .col-xs-6 {
padding: 0px;
}
.header .logo-container {
line-height: 60px;
}
.logo-container img {
height: 40px;
}
.crime-holder p {
text-align: center;
}
.crime-holder .action {
display: block;
float: none;
}
.crime-holder .cooldown,
.crime-holder .commit {
width: 49%;
float: none;
display: inline-block !important;
text-align: center;
font-size: 12px;
margin-top: 8px;
}
.crime-holder .commit:after {
content: "";
clear: both;
display: block;
}
} | themes/default/css/style.css | body {
background-image: url("../images/main-background.jpg") !important;
background-position: top center !important;
background-repeat: repeat-y !important;
background-color: #000000 !important;
color: #ffffff;
}
a,
a:focus,
a:active,
a:hover {
color: inherit;
}
hr {
border-top: 1px solid #474747 !important;
}
/****** MISC STYLES ******/
.no-scroll {
overflow: hidden;
}
.padding {
padding: 0 10%;
}
.tiny {
font-size: 12px;
line-height: 20px;
}
.timer-active {
color: #a94442 !important;
}
.timer-done {
color: #3c763d !important;
}
.new {
color: #3c763d ;
font-weight: bold;
}
/****** BBCODE STYLES ******/
.bb_image {
max-width: 100%;
}
/****** LOGIN STYLES ******/
.login-logo {
padding-top: 150px;
padding-bottom:50px;
text-align: center;
}
.login-form {
width: 400px;
margin-left: auto;
margin-right: auto;
}
/****** USER STATUS STYLES ******/
.user-status-0 .side-bar {
display: none;
}
.user-status-0 .game-container {
max-width: 800px;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
float: none;
}
.user-status-0 .logo-container {
text-align: center !important;
width: 100%;
}
.user-status-0 .sub-header,
.user-status-0 .header .col-md-2,
.user-status-0 .header .col-md-3 {
display: none;
}
.user-level-0:before {
content: "[BANNED]";
}
.user-level-0,
.user-level-0:hover {
color: #777;
}
.user-level-2,
.user-level-2:hover {
color: #ff0;
font-weight: bold;
}
/****** HEADER STYLES ******/
.header {
background-color: #131313;
border-bottom: 1px solid #272727;
line-height: 40px;
margin-bottom: 10px;
}
.header .logo-container {
line-height: 80px;
}
/****** SIDEBAR STYLES ******/
.side-bar {
width: 220px;
float: left;
}
.side-bar .label {
float: right;
}
.side-bar .list-group {
border: 1px solid #474747;
border-top: none;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}
.side-bar .list-group .list-group-item {
position: relative;
padding: 0px 5px;
line-height: 22px;
background-color: #111 !important;
background-color: #111 !important;
font-size: 12px;
}
.side-bar .list-group .list-group-item:hover {
background-color: #222 !important;
}
.side-bar .list-group .list-group-item small {
position: relative;
font-size: 11px;
z-index: 200;
}
.side-bar .list-group .progress {
position: absolute;
top: 3px;
right: 3px;
bottom: 3px;
width: 100px;
height: 16px;
z-index: 100;
}
/****** GAME CONTAINER STYLES ******/
.game-container {
width: calc(100% - 230px);
float: right;
}
/****** CRIME HOLDER ******/
.crime-holder {
border:1px solid rgba(255, 255, 255, 0.2);
background: #000000;
margin-bottom:10px;
}
.crime-holder p {
padding:10px;
margin:0px;
text-align: right;
}
.crime-holder .cooldown {
color: #777;
padding-right: 20px;
}
.crime-holder .action {
float: left;
}
.crime-holder .crime-perc {
width:100%;
height:2px;
background-color:#900;
}
.crime-holder .crime-perc .perc {
height:2px;
background-color:#090;
width: 0px;
}
.crime-holder .crime-header {
background-color: #272727;
border-bottom: 1px solid #474747;
}
/****** BOOTSTRAP OVERRIDES ******/
.alert {
border: 1px solid;
}
.well {
background-color: #000;
border: 1px solid #474747;
text-align: left;
}
.well h3 {
margin-top: 0px;
}
/*** Panel ***/
.panel{
background-color: transparent;
border: none;
}
.panel-heading{
position: relative;
text-transform: capitalize;
color: #fff !important;
border-bottom: none;
height: 34px;
background-color: rgba(0, 0, 0, 0.6) !important;
padding: 0px;
text-align: center;
line-height: 34px;
}
.panel-body {
background: rgba(0, 0, 0, 0.7);
border: none;
border-radius: 5px;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border: 1px solid #373737;
border-top: none;
}
/*** Forms ***/
.form-control {
background-color: rgba(0, 0, 0, 0.67);
border: 1px solid rgba(255, 255, 255, 0.14);
}
.form-control:focus {
border: 1px solid rgba(255, 255, 255, 0.35);
box-shadow: none;
}
.form-control-inline {
display: inline-block;
width: 200px;
}
.form-group .form-control {
color: #aaa;
}
/*** Drop Down Menu ***/
.dropdown-menu {
background-color: #272727;
}
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
background-color: #474747;
color: #b7b7b7;
}
.dropdown-menu>li>a {
color: #979797;
}
.dropdown-menu .divider {
background-color: #979797;
}
/*** Tables ***/
table tr td, table tr th {
text-align: left;
}
.table-borderless tr, .table-borderless tr td, .table-borderless tr th {
border: none !important;
}
.table-bordered,
.table-bordered th,
.table-bordered td {
border-color: #272727 !important;
}
.table-striped>thead>tr:nth-child(odd)>td, .table-striped>thead>tr:nth-child(odd)>th {
background-color: #171717;
}
.table-striped>tbody>tr:nth-child(odd)>td, .table-striped>tbody>tr:nth-child(odd)>th {
background-color: #272727;
}
.table-striped>tbody>tr:nth-child(even)>td, .table-striped>tbody>tr:nth-child(even)>th {
background-color: #373737;
}
.table-condensed>thead>tr>th, .table-condensed>tbody>tr>th, .table-condensed>tfoot>tr>th, .table-condensed>thead>tr>td, .table-condensed>tbody>tr>td, .table-condensed>tfoot>tr>td {
padding: 2px 5px;
}
/*** Images ***/
.img-thumbnail {
background-color: transparent;
border-color: #555;
}
/****** Progress Bars ******/
.progress {
background-color: #050505;
border: 1px solid #000;
}
.progress-bar-success {
background-color: #040;
}
/****** Navs ******/
.nav-pills>li>a {
padding: 5px;
margin-bottom: 10px;
}
.nav-pills>li>a:hover {
background-color: #474747;
}
.nav-tabs {
border-bottom: 1px solid #474747 !important;
margin-bottom: 10px;
padding-bottom: 10px;
}
.nav-tabs li a {
border-bottom-color: transparent !important;
}
.nav-tabs li a:hover {
background-color: #474747;
border-radius: 5px;
border-color: transparent;
}
/****** Lists ******/
.list-group, .list-group .list-group-item {
border-color: #474747;
color: #fff;
}
.list-group .list-group-item:nth-child(odd) {
background-color: #171717;
}
.list-group .list-group-item:nth-child(even) {
background-color: #252525;
}
.list-group .list-group-item .badge {
background-color: transparent;
}
/****** Pagnation ******/
.pagination li a {
background-color: #252524;
color: #fff;
border-color: #474747;
}
.pagination li:hover a {
background-color: inherit !important;
color: inherit !important;
border-color: #474747;
}
.pagination li.active a {
background-color: #676767 !important;
color: #fff;
border-color: #ccc;
}
.pagination li:nth-child(odd) a {
background-color: #161616;
}
/****** Buttons ******/
.btn {
color:#fff;
position: relative;
border: none;
background-color: transparent !important;
}
.btn:hover{
text-decoration: underline;
background-color: inherit;
}
/****** Colors ******/
.btn-default,
.btn.btn-default:hover,
.panel-default > .panel-heading {
background: rgb(48,48,48);
background: linear-gradient(180deg, rgba(86,86,86,1) 0%, rgba(48,48,48,1) 5%, rgba(48,48,48,1) 35%, rgba(36,36,36,1) 50%);
border: #2c2c2c 1px solid;
color: #fff;
}
.text-success {
color: #00c300;
}
.btn-success,
.btn.btn-success:hover,
.panel-success > .panel-heading {
background: rgb(00,75,00);
background: linear-gradient(180deg, rgba(00,125,00,1) 0%, rgba(00,75,00,1) 5%, rgba(00,75,00,1) 35%, rgba(00,45,00,1) 50%);
border: #0c560c 1px solid;
color: #fff;
}
.text-danger {
color: #c30000;
}
.btn-danger,
.btn.btn-danger:hover,
.panel-danger > .panel-heading {
background: rgb(90,00,00);
background: linear-gradient(180deg, rgba(150,00,00,1) 0%, rgba(90,00,00,1) 5%, rgba(90,00,00,1) 35%, rgba(60,00,00,1) 50%);
border: #650c0c 1px solid;
color: #fff;
}
.text-info {
color: #00f3ff;
}
.btn-info,
.btn.btn-info:hover,
.panel-info > .panel-heading {
background: rgb(00,90,90);
background: linear-gradient(180deg, rgba(0,150,150,1) 0%, rgba(00,90,90,1) 5%, rgba(00,90,90,1) 35%, rgba(00,70,70,1) 50%);
border: #0c6365 1px solid;
color: #fff;
}
.text-warning {
color: #ffd400;
}
.btn-warning,
.btn.btn-warning:hover,
.panel-warning > .panel-heading {
background: rgb(90,75,00);
background: linear-gradient(180deg, rgba(150,110,00,1) 0%, rgba(90,75,00,1) 5%, rgba(90,75,00,1) 35%, rgba(60,45,00,1) 50%);
border: #65500c 1px solid;
color: #fff;
}
/****** MOBILE STYLES ******/
@media (max-width: 767px) {
html, body {
height: 100%;
font-size: 12px;
}
.side-bar {
display: none;
}
.show-sidebar .side-bar {
display: block;
width: 100%;
}
.show-sidebar .game-container {
display: none;
}
.login-logo {
padding-top: 25px;
padding-bottom: 25px;
text-align: center;
}
.mobile-menu {
background-color: #272727;
height: 100%;
overflow: auto;
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
display: none;
z-index: 1000;
}
.mobile-menu ul.nav {
position: absolute;
top: 0px;
bottom: 30px;
left: 0px;
right: 0px;
overflow: auto;
}
.mobile-menu .close-mobile-menu {
position: absolute;
text-align: center;
bottom: 0px;
left: 0px;
right: 0px;
line-height: 30px;
color: #fff;
z-index: 1100;
background-color: #474747;
}
.mobile-menu li {
float: left;
text-align: center;
}
.mobile-menu li a {
padding: 7px 15px;
margin-bottom: 0px;
}
.mobile-menu .title {
background-color: #171717;
display: block;
clear: both;
font-weight: bold;
}
.padding {
padding: 0 2%;
}
.game-container {
width: 100%;
padding: 0px;
}
.navbar-toggle {
background-color: #272727;
border: 1px solid #474747;
margin-left: -5px;
margin-right: 0px;
float: left;
}
.navbar-toggle .icon-bar {
background-color: #fff;
}
.header {
line-height: 25px;
}
.header .logo-container {
text-align: center !important;
}
.header .col-xs-6 {
padding: 0px;
}
.header .logo-container {
line-height: 60px;
}
.logo-container img {
height: 40px;
}
.crime-holder p {
text-align: center;
}
.crime-holder .action {
display: block;
float: none;
}
.crime-holder .cooldown,
.crime-holder .commit {
width: 49%;
float: none;
display: inline-block !important;
text-align: center;
font-size: 12px;
margin-top: 8px;
}
.crime-holder .commit:after {
content: "";
clear: both;
display: block;
}
} | 0.393385 | 0.072308 |
.cont{
padding: 0 0.64rem;
}
.cont>img{
height: 1.6rem;
float: left;
margin-left: 0.8rem;
}
.cont>p{
margin-top: 0.28rem;
color: #f49b1b;
font-size: 1.04rem;
margin-left: 3rem;
}
.wen{
border-bottom: 1px solid #e3e3e3;
position: relative;
padding-bottom: 3.5rem;
}
.wen img{
display:block;
margin: 0 auto;
}
img.toux{
width: 3.2rem;
height: 3.2rem;
border-radius: 1.6rem;
position: absolute;
top: 1.4rem;
}
.wen>p:nth-of-type(1){
font-size: 1.2rem;
color: #363636;
padding-top: 1.8rem;
margin-left: 4rem;
}
.wen>p:nth-of-type(1) span{
margin-left: 1rem;
border: #ff0000 solid 1px;
color: #ff0000;
font-size: 0.72rem;
padding: 0.1rem 0.2rem;
border-radius: 0.3rem;
display: inline-block;
vertical-align: middle;
}
.wen>p:nth-of-type(2){
padding-top: 0.8rem;
margin-left: 4rem;
color: #7a8291;
font-size: 1rem;
margin-bottom: 1rem;
}
.wen>p:nth-of-type(3){
/*padding-top: 1.08rem;
margin-left: 4rem;
color: #7a8291;
font-size: 0.96rem;
line-height: 140%;*/
}
.da{
position: relative;
padding-bottom: 3rem;
border-bottom: 1px solid #e3e3e3;
}
.da>img:nth-of-type(1){
width: 3.2rem;
height: 3.2rem;
border-radius: 1.6rem;
position: absolute;
top: 2.6rem;
}
.da>p:nth-of-type(1){
font-size: 1.2rem;
color: #363636;
padding-top: 3rem;
margin-left: 4rem;
}
.da>p:nth-of-type(1) span{
margin-left: 1rem;
color: #ffffff;
background: #f49b1b;
font-size: 0.72rem;
padding: 0.1rem 0.2rem;
border-radius: 0.3rem;
}
.da>p:nth-of-type(2){
padding-top: 0.8rem;
margin-left: 4rem;
color: #7a8291;
font-size: 1rem;
}
.da>p:nth-of-type(3){
padding-top: 1.08rem;
margin-left: 4rem;
color: #7a8291;
font-size: 1rem;
line-height: 140%;
}
.da>p:nth-of-type(4){
position: absolute;
left: 2.48rem;
top: 0.28rem;
color: #f49b1b;
font-size: 1.04rem;
}
.footerr{
width:10.6rem ;
position: absolute;
right: 0;
bottom: 1.12rem;
}
.footerr img{
height: 1.04rem;
}
.footerr p{
font-size: 0.88rem;
height: 1.04rem;
margin-left: 0.5rem;
color: #7a8291;
width:3rem;
line-height:153%;
}
.foot{
width:5rem ;
position: absolute;
right: 0;
bottom: 1.12rem;
}
.foot img{
height: 1.04rem;
}
.foot p{
font-size: 0.88rem;
height: 1.04rem;
margin-left: 0.5rem;
color: #7a8291;
width:3rem;
line-height:153%;
} | Public/expert/css/xiangq1.css | .cont{
padding: 0 0.64rem;
}
.cont>img{
height: 1.6rem;
float: left;
margin-left: 0.8rem;
}
.cont>p{
margin-top: 0.28rem;
color: #f49b1b;
font-size: 1.04rem;
margin-left: 3rem;
}
.wen{
border-bottom: 1px solid #e3e3e3;
position: relative;
padding-bottom: 3.5rem;
}
.wen img{
display:block;
margin: 0 auto;
}
img.toux{
width: 3.2rem;
height: 3.2rem;
border-radius: 1.6rem;
position: absolute;
top: 1.4rem;
}
.wen>p:nth-of-type(1){
font-size: 1.2rem;
color: #363636;
padding-top: 1.8rem;
margin-left: 4rem;
}
.wen>p:nth-of-type(1) span{
margin-left: 1rem;
border: #ff0000 solid 1px;
color: #ff0000;
font-size: 0.72rem;
padding: 0.1rem 0.2rem;
border-radius: 0.3rem;
display: inline-block;
vertical-align: middle;
}
.wen>p:nth-of-type(2){
padding-top: 0.8rem;
margin-left: 4rem;
color: #7a8291;
font-size: 1rem;
margin-bottom: 1rem;
}
.wen>p:nth-of-type(3){
/*padding-top: 1.08rem;
margin-left: 4rem;
color: #7a8291;
font-size: 0.96rem;
line-height: 140%;*/
}
.da{
position: relative;
padding-bottom: 3rem;
border-bottom: 1px solid #e3e3e3;
}
.da>img:nth-of-type(1){
width: 3.2rem;
height: 3.2rem;
border-radius: 1.6rem;
position: absolute;
top: 2.6rem;
}
.da>p:nth-of-type(1){
font-size: 1.2rem;
color: #363636;
padding-top: 3rem;
margin-left: 4rem;
}
.da>p:nth-of-type(1) span{
margin-left: 1rem;
color: #ffffff;
background: #f49b1b;
font-size: 0.72rem;
padding: 0.1rem 0.2rem;
border-radius: 0.3rem;
}
.da>p:nth-of-type(2){
padding-top: 0.8rem;
margin-left: 4rem;
color: #7a8291;
font-size: 1rem;
}
.da>p:nth-of-type(3){
padding-top: 1.08rem;
margin-left: 4rem;
color: #7a8291;
font-size: 1rem;
line-height: 140%;
}
.da>p:nth-of-type(4){
position: absolute;
left: 2.48rem;
top: 0.28rem;
color: #f49b1b;
font-size: 1.04rem;
}
.footerr{
width:10.6rem ;
position: absolute;
right: 0;
bottom: 1.12rem;
}
.footerr img{
height: 1.04rem;
}
.footerr p{
font-size: 0.88rem;
height: 1.04rem;
margin-left: 0.5rem;
color: #7a8291;
width:3rem;
line-height:153%;
}
.foot{
width:5rem ;
position: absolute;
right: 0;
bottom: 1.12rem;
}
.foot img{
height: 1.04rem;
}
.foot p{
font-size: 0.88rem;
height: 1.04rem;
margin-left: 0.5rem;
color: #7a8291;
width:3rem;
line-height:153%;
} | 0.320821 | 0.076961 |
a.link-color-grey{color:#aaa!important;}
a:hover.link-color-grey{color:#5faee3!important;}
.edu-name-dark{ max-width:100px; display: block; }
.edu-info-dark{ max-width:345px; display: block; }
.edu-color-grey{ color:#666;}
.edu-color-grey:hover{color:#5faee3;}
.edu-btn-search{ position: absolute; top:0; right:15px;}
.edu-bg-light-blue{ background:#f7f9fd; padding:5px;}
.edu-max-h200{ height:200px; overflow: auto;}
.edu-position{ position: relative;}
.edu-h200-auto{ max-height:200px; overflow:auto;}
.edu-h300-auto{ max-height:300px; overflow:auto;}
.edu-h350-auto{ max-height:350px; overflow:auto;}
.edu-txt-w240{ width:240px; display: block;}
.edu-txt-w200{ width:200px; display: block;}
.edu-con-top{ padding:10px 0; background:#fff; border-bottom:1px solid #eee;font-size:16px; }
.edu-con-top h2{ font-size:16px;}
.edu-form-label{display: inline-block; width:60px;text-align: right; line-height: 40px; font-weight: normal;}
.edu-form-border{ border:1px solid #ddd;}
.edu-form-noborder,input.edu-form-noborder{ border:none; outline:none;}
a.edu-btn{display: inline-block;border:none; padding:0 12px;color: #666!important;border:1px solid #ccc; text-align:center;font-size: 14px; height: 29px;line-height: 29px; border-radius:3px; font-weight: bold;letter-spacing:1px;}
a:hover.edu-btn{ border:1px solid #FF7500; color: #FF7500!important;}
/*a.edu-filter-cir-grey{display: inline-block; padding:0px 15px; color:#666; border:1px solid #ddd; text-align: center; border-radius:3px; font-size:12px; height:25px; line-height:25px;}
a:hover.edu-filter-cir-grey,a.edu-filter-cir-grey.active{ border:1px solid #3498db; color:#3498db; }*/
/*.edu-filter-btn{display: inline-block; padding:0px 10px; color:#666; background:#eee; text-align: center; border-radius:3px; font-size:12px; height:25px; line-height:25px;}
.edu-filter-btn-blue{background:#ebf6fe; color:#3498db;}
.edu-filter-btn-orange{background:#ffeee8; color:#ff5055;}
.edu-filter-btn-red{background:#fee4e5; color:#d72e36;}
.edu-filter-btn-green{background:#e4f3ec; color:#6fbb9d;}
.edu-filter-btn-yellow{background:#fdefde; color:#ef9324;}
.edu-filter-btn-danger{background:#d72e36; color:#fff;}*/
.alert-red{background-color: #f2dede;border-color: #eed3d7; color: #d14f4d; text-align: left!important;}
.eud-pointer{ cursor:pointer;}
.edu-bg-grey{ background:#f6f6f6; width:90%; min-width:700px;color:#666;}
/* 与课程通用框架和tab 17/05/11 bylinda*/
.edu-class-con{ width:50%; margin:0px auto; font-size:14px; padding:50px 0;}
.edu-con-bg01{ width: 100%; background:#fff;}
.edu-class-box{ width:100%;}
.edu-class-container{ width: 1200px; margin:10px auto 20px;}
.edu-class-top{ background:#fff; padding:20px;}
.edu-class-top-img{ width:260px; height: 140px;}
/* tab */
/*.edu-tab{ width: 100%; background:#fff; }
#edu-tab-nav{height:47px;background: #fff; }
#edu-tab-nav li {float:left; width: 170px; text-align:center;height: 47px;line-height: 47px; position: relative; }
.edu-tab-fa{ position: absolute; top:27px; left:81px; color: #fff;}
#edu-tab-nav li a{font-size:14px; }
.edu-tab-hover {border-bottom:3px solid #5faee3; background: #fff; }
.edu-tab-hover .edu-tab-fa{ color: #5faee3;}
.edu-tab-hover a{ color:#5faee3; font-weight:bold;}
.edu-tab-con-box{ padding:15px; max-height:1200px; overflow: auto; color:#666; line-height: 2.0; background:#fff;}*/
/* 审核 17/05/11 bylinda*/
.admin-con-box { padding:15px;}
.edu-ad-user img{width:80px; height: 80px; border-radius:100px;}
.edu-renzheng-img{ width:200px;}
.admin-bg-grey{ background:#fafbfb; }
/* 试用授权用户列表 17/06/05 bylinda*/
.edu-admin-nav{ width:100%; background:#fff; height: 52px; box-sizing: border-box;display: flex}
.edu-admin-nav-li{flex: 1; text-align: center; border-bottom:3px solid #fff; height:47px; line-height:47px;}
.edu-admin-nav-li:hover,.edu-admin-nav-li.active{border-bottom:3px solid #5faee3;}
a.edu-admin-nav-a{ display: block; height: 24px; border-right:1px solid #ddd; line-height:24px; margin-top:13px; color:#333;}
a:hover.edu-admin-nav-a,.active a.edu-admin-nav-a{color: #5faee3;}
.edu-admin-nav-inner{ border:1px solid #ccc; border-top:none;top:50px; position:absolute; background:#fff; z-index:999; display: none;}
.edu-admin-nav-inner li{ width:108px; height: 40px; line-height: 40px; border-bottom:none;}
.edu-admin-nav-inner li:hover{ background:#eee;}
.edu-admin-nav-inner li a{ height: 40px; line-height:40px; }
.edu-admin-nav-li:hover .edu-admin-nav-inner{ display: block;}
.edu-admin-select{ border:1px solid #eee; height: 38px; line-height: 38px; text-align: center; width: 200px;}
.edu-admin-option{ position:absolute; top:39px; background:#fff;box-shadow: 0px 2px 8px rgba(146, 153, 169, 0.5); width: 100%; display:none; z-index: 999;}
.edu-admin-option li{height: 30px; line-height:30px; font-size:12px; color:#666; cursor: pointer;}
.edu-admin-option li:hover{ background:#eee; }
.edu-admin-select:hover .edu-admin-option{ display: block;}
.auth_table div.admin-con-box:nth-child(odd){background:#fafbfb;}
/*超级管理员实训页面*/
.all_shixun_Item{width: 100%;padding: 0px;}
.all_shixun_Item li{float:left;width: auto;padding: 7px 25px;}
.all_shixun_Item_on{border-bottom: 3px solid #2ab6e7;color: #2ab6e7;}
.operate{width: 100px;padding: 0px 10px;}
/*实训下拉框*/
.edu-dropdown-menu p{height: 35px;line-height: 35px;}
.ex_container{margin-bottom: 20px;}
.table_Name_text{padding-left: 5px;text-align: left;display: block;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;height: 39px;width: 370px;line-height: 39px;-webkit-box-orient: vertical;}
/*课程列表*/
.only_view{font-size: 14px;margin-right: 30px;vertical-align:top;}
/*超级管理员----技术体系*/
.createsystem{cursor: pointer;width: 100%;height: 70px;line-height: 70px;border:1px dashed #FF7500;color: #FF7500;text-align: center;margin:15px 0px 20px 0px;border-radius: 4px;}
.infoul li{list-style-type: disc} | public/stylesheets/css/edu-admin.css | a.link-color-grey{color:#aaa!important;}
a:hover.link-color-grey{color:#5faee3!important;}
.edu-name-dark{ max-width:100px; display: block; }
.edu-info-dark{ max-width:345px; display: block; }
.edu-color-grey{ color:#666;}
.edu-color-grey:hover{color:#5faee3;}
.edu-btn-search{ position: absolute; top:0; right:15px;}
.edu-bg-light-blue{ background:#f7f9fd; padding:5px;}
.edu-max-h200{ height:200px; overflow: auto;}
.edu-position{ position: relative;}
.edu-h200-auto{ max-height:200px; overflow:auto;}
.edu-h300-auto{ max-height:300px; overflow:auto;}
.edu-h350-auto{ max-height:350px; overflow:auto;}
.edu-txt-w240{ width:240px; display: block;}
.edu-txt-w200{ width:200px; display: block;}
.edu-con-top{ padding:10px 0; background:#fff; border-bottom:1px solid #eee;font-size:16px; }
.edu-con-top h2{ font-size:16px;}
.edu-form-label{display: inline-block; width:60px;text-align: right; line-height: 40px; font-weight: normal;}
.edu-form-border{ border:1px solid #ddd;}
.edu-form-noborder,input.edu-form-noborder{ border:none; outline:none;}
a.edu-btn{display: inline-block;border:none; padding:0 12px;color: #666!important;border:1px solid #ccc; text-align:center;font-size: 14px; height: 29px;line-height: 29px; border-radius:3px; font-weight: bold;letter-spacing:1px;}
a:hover.edu-btn{ border:1px solid #FF7500; color: #FF7500!important;}
/*a.edu-filter-cir-grey{display: inline-block; padding:0px 15px; color:#666; border:1px solid #ddd; text-align: center; border-radius:3px; font-size:12px; height:25px; line-height:25px;}
a:hover.edu-filter-cir-grey,a.edu-filter-cir-grey.active{ border:1px solid #3498db; color:#3498db; }*/
/*.edu-filter-btn{display: inline-block; padding:0px 10px; color:#666; background:#eee; text-align: center; border-radius:3px; font-size:12px; height:25px; line-height:25px;}
.edu-filter-btn-blue{background:#ebf6fe; color:#3498db;}
.edu-filter-btn-orange{background:#ffeee8; color:#ff5055;}
.edu-filter-btn-red{background:#fee4e5; color:#d72e36;}
.edu-filter-btn-green{background:#e4f3ec; color:#6fbb9d;}
.edu-filter-btn-yellow{background:#fdefde; color:#ef9324;}
.edu-filter-btn-danger{background:#d72e36; color:#fff;}*/
.alert-red{background-color: #f2dede;border-color: #eed3d7; color: #d14f4d; text-align: left!important;}
.eud-pointer{ cursor:pointer;}
.edu-bg-grey{ background:#f6f6f6; width:90%; min-width:700px;color:#666;}
/* 与课程通用框架和tab 17/05/11 bylinda*/
.edu-class-con{ width:50%; margin:0px auto; font-size:14px; padding:50px 0;}
.edu-con-bg01{ width: 100%; background:#fff;}
.edu-class-box{ width:100%;}
.edu-class-container{ width: 1200px; margin:10px auto 20px;}
.edu-class-top{ background:#fff; padding:20px;}
.edu-class-top-img{ width:260px; height: 140px;}
/* tab */
/*.edu-tab{ width: 100%; background:#fff; }
#edu-tab-nav{height:47px;background: #fff; }
#edu-tab-nav li {float:left; width: 170px; text-align:center;height: 47px;line-height: 47px; position: relative; }
.edu-tab-fa{ position: absolute; top:27px; left:81px; color: #fff;}
#edu-tab-nav li a{font-size:14px; }
.edu-tab-hover {border-bottom:3px solid #5faee3; background: #fff; }
.edu-tab-hover .edu-tab-fa{ color: #5faee3;}
.edu-tab-hover a{ color:#5faee3; font-weight:bold;}
.edu-tab-con-box{ padding:15px; max-height:1200px; overflow: auto; color:#666; line-height: 2.0; background:#fff;}*/
/* 审核 17/05/11 bylinda*/
.admin-con-box { padding:15px;}
.edu-ad-user img{width:80px; height: 80px; border-radius:100px;}
.edu-renzheng-img{ width:200px;}
.admin-bg-grey{ background:#fafbfb; }
/* 试用授权用户列表 17/06/05 bylinda*/
.edu-admin-nav{ width:100%; background:#fff; height: 52px; box-sizing: border-box;display: flex}
.edu-admin-nav-li{flex: 1; text-align: center; border-bottom:3px solid #fff; height:47px; line-height:47px;}
.edu-admin-nav-li:hover,.edu-admin-nav-li.active{border-bottom:3px solid #5faee3;}
a.edu-admin-nav-a{ display: block; height: 24px; border-right:1px solid #ddd; line-height:24px; margin-top:13px; color:#333;}
a:hover.edu-admin-nav-a,.active a.edu-admin-nav-a{color: #5faee3;}
.edu-admin-nav-inner{ border:1px solid #ccc; border-top:none;top:50px; position:absolute; background:#fff; z-index:999; display: none;}
.edu-admin-nav-inner li{ width:108px; height: 40px; line-height: 40px; border-bottom:none;}
.edu-admin-nav-inner li:hover{ background:#eee;}
.edu-admin-nav-inner li a{ height: 40px; line-height:40px; }
.edu-admin-nav-li:hover .edu-admin-nav-inner{ display: block;}
.edu-admin-select{ border:1px solid #eee; height: 38px; line-height: 38px; text-align: center; width: 200px;}
.edu-admin-option{ position:absolute; top:39px; background:#fff;box-shadow: 0px 2px 8px rgba(146, 153, 169, 0.5); width: 100%; display:none; z-index: 999;}
.edu-admin-option li{height: 30px; line-height:30px; font-size:12px; color:#666; cursor: pointer;}
.edu-admin-option li:hover{ background:#eee; }
.edu-admin-select:hover .edu-admin-option{ display: block;}
.auth_table div.admin-con-box:nth-child(odd){background:#fafbfb;}
/*超级管理员实训页面*/
.all_shixun_Item{width: 100%;padding: 0px;}
.all_shixun_Item li{float:left;width: auto;padding: 7px 25px;}
.all_shixun_Item_on{border-bottom: 3px solid #2ab6e7;color: #2ab6e7;}
.operate{width: 100px;padding: 0px 10px;}
/*实训下拉框*/
.edu-dropdown-menu p{height: 35px;line-height: 35px;}
.ex_container{margin-bottom: 20px;}
.table_Name_text{padding-left: 5px;text-align: left;display: block;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;height: 39px;width: 370px;line-height: 39px;-webkit-box-orient: vertical;}
/*课程列表*/
.only_view{font-size: 14px;margin-right: 30px;vertical-align:top;}
/*超级管理员----技术体系*/
.createsystem{cursor: pointer;width: 100%;height: 70px;line-height: 70px;border:1px dashed #FF7500;color: #FF7500;text-align: center;margin:15px 0px 20px 0px;border-radius: 4px;}
.infoul li{list-style-type: disc} | 0.249539 | 0.1712 |
@media screen and (max-width: 768px) {
:root {
--clr-white: #ffffff;
--clr-black: #000000;
--clr-Primary: #181D26;
--clr-Secondary: #F2668B;
--clr-Conplementary1: #4214A6;
--clr-Complementary2: #DC30F2;
--clr-Complementary3: #741BF2;
--clr-Extra: #11BFAE;
--clr-Extra2: #0DA6A6;
--clr-Extra3: #2D5559;
--font-size-small: 1.2rem;
--font-size-medium: 1.5rem;
--font-size:tall: 1.8rem;
--font-size-tittle: 2.4rem;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 62.5%;
}
ul {
list-style: none;
}
a{
text-decoration: none;
}
img {
object-fit: cover;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
body {
font-family: 'Rubik', sans-serif;
}
/* header { */
/* width: 100%; */
/* height: 8rem; */
/* } */
.navBar {
width: 100%;
height: 10vh;
background-color: var(--clr-Primary);
padding: 0.5rem calc((100vw - 1200px) / 2);
display: flex;
justify-content: center;
align-items: center;
}
body.active {
overflow-y: hidden;
overflow-x: hidden;
}
.navBar__link {
display: flex;
align-items: center;
justify-content: center;
}
.navBar__menu {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: repeat(6, 1fr);
position: absolute;
width: 100%;
top: -1000px;
}
.navBar__menu.active {
top: 8%;
opacity: 1;
z-index: 99;
height: 80vh;
font-size: var(--font-size-tittle);
background-color: var(--clr-Primary);
}
.navBar__toggle .bar {
width: 2.5rem;
height: .3rem;
background-color: var(--clr-Extra);
margin: .5rem auto;
display: block;
cursor: pointer;
transition: all 0.3s ease-in-out;
}
#mobile-menu {
position: absolute;
right: 5%;
/* transform: translate(5%, 20%); */
}
#mobile-menu.is-active .bar:nth-child(2) {
opacity: 0;
}
#mobile-menu.is-active .bar:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}
#mobile-menu.is-active .bar:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}
}
/* MEDIAQUERIES-MIN-NAVIGATION */
@media screen and (min-width: 785px) {
:root {
--clr-white: #ffffff;
--clr-black: #000000;
--clr-Primary: #181D26;
--clr-Secondary: #F2668B;
--clr-Conplementary1: #4214A6;
--clr-Complementary2: #DC30F2;
--clr-Complementary3: #741BF2;
--clr-Extra: #11BFAE;
--clr-Extra2: #0DA6A6;
--clr-Extra3: #2D5559;
--font-size-small: 1.2rem;
--font-size-medium: 1.5rem;
--font-size:tall: 1.8rem;
--font-size-tittle: 2.4rem;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 62.5%;
}
ul {
list-style: none;
}
a{
text-decoration: none;
}
img {
object-fit: cover;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
body {
font-family: 'Rubik', sans-serif;
}
.navBar {
padding: inherit;
width: 100%;
height: 6rem;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr;
gap: .5rem;
}
.navBar__logo {
grid-column: 1 / 2;
grid-row: 1 / 2;
display: flex;
justify-content: center;
align-items: center;
font-size: 2.5rem;
}
.navBar__link {
font-size: var(--font-size-small);
text-transform: uppercase;
font-weight: bold;
}
.navBar__menu {
grid-column: 2 / 3;
grid-row: 1 / 2;
align-self: center;
justify-self: center;
}
}
/* MEDIA SCREEN 1100PX */ | src/css/media.css | @media screen and (max-width: 768px) {
:root {
--clr-white: #ffffff;
--clr-black: #000000;
--clr-Primary: #181D26;
--clr-Secondary: #F2668B;
--clr-Conplementary1: #4214A6;
--clr-Complementary2: #DC30F2;
--clr-Complementary3: #741BF2;
--clr-Extra: #11BFAE;
--clr-Extra2: #0DA6A6;
--clr-Extra3: #2D5559;
--font-size-small: 1.2rem;
--font-size-medium: 1.5rem;
--font-size:tall: 1.8rem;
--font-size-tittle: 2.4rem;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 62.5%;
}
ul {
list-style: none;
}
a{
text-decoration: none;
}
img {
object-fit: cover;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
body {
font-family: 'Rubik', sans-serif;
}
/* header { */
/* width: 100%; */
/* height: 8rem; */
/* } */
.navBar {
width: 100%;
height: 10vh;
background-color: var(--clr-Primary);
padding: 0.5rem calc((100vw - 1200px) / 2);
display: flex;
justify-content: center;
align-items: center;
}
body.active {
overflow-y: hidden;
overflow-x: hidden;
}
.navBar__link {
display: flex;
align-items: center;
justify-content: center;
}
.navBar__menu {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: repeat(6, 1fr);
position: absolute;
width: 100%;
top: -1000px;
}
.navBar__menu.active {
top: 8%;
opacity: 1;
z-index: 99;
height: 80vh;
font-size: var(--font-size-tittle);
background-color: var(--clr-Primary);
}
.navBar__toggle .bar {
width: 2.5rem;
height: .3rem;
background-color: var(--clr-Extra);
margin: .5rem auto;
display: block;
cursor: pointer;
transition: all 0.3s ease-in-out;
}
#mobile-menu {
position: absolute;
right: 5%;
/* transform: translate(5%, 20%); */
}
#mobile-menu.is-active .bar:nth-child(2) {
opacity: 0;
}
#mobile-menu.is-active .bar:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}
#mobile-menu.is-active .bar:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}
}
/* MEDIAQUERIES-MIN-NAVIGATION */
@media screen and (min-width: 785px) {
:root {
--clr-white: #ffffff;
--clr-black: #000000;
--clr-Primary: #181D26;
--clr-Secondary: #F2668B;
--clr-Conplementary1: #4214A6;
--clr-Complementary2: #DC30F2;
--clr-Complementary3: #741BF2;
--clr-Extra: #11BFAE;
--clr-Extra2: #0DA6A6;
--clr-Extra3: #2D5559;
--font-size-small: 1.2rem;
--font-size-medium: 1.5rem;
--font-size:tall: 1.8rem;
--font-size-tittle: 2.4rem;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 62.5%;
}
ul {
list-style: none;
}
a{
text-decoration: none;
}
img {
object-fit: cover;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
body {
font-family: 'Rubik', sans-serif;
}
.navBar {
padding: inherit;
width: 100%;
height: 6rem;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr;
gap: .5rem;
}
.navBar__logo {
grid-column: 1 / 2;
grid-row: 1 / 2;
display: flex;
justify-content: center;
align-items: center;
font-size: 2.5rem;
}
.navBar__link {
font-size: var(--font-size-small);
text-transform: uppercase;
font-weight: bold;
}
.navBar__menu {
grid-column: 2 / 3;
grid-row: 1 / 2;
align-self: center;
justify-self: center;
}
}
/* MEDIA SCREEN 1100PX */ | 0.395018 | 0.095434 |
body { position: relative; width: 16rem; margin: 0 auto; background: #f3ecd1 url(../img/body-bg11.jpg) repeat; background-size: cover; }
.container { width: 100%; }
.container .person { overflow: hidden; width: 14.61333rem; height: 9.23733rem; margin: 0 auto 0.42667rem; padding: 0.64rem 0 0 0; }
#chenlongJpg { height: 8.53333rem; }
#chenlongGif { height: 8.53333rem; }
.text-cont { width: 15.36rem; height: 2.28267rem; margin: 0 auto 0.53333rem; background: url(../img/text.png) no-repeat; background-size: cover; font: 0.55467rem/0.68267rem "simhei"; color: #fff6d1; text-align: center; }
.text-cont .text { padding: 0.42667rem 1.70667rem; }
.text-cont .num { font-size: 0.64rem; color: #ffdd54; }
.text-cont .time { float: left; width: 3.2rem; height: 1.49333rem; margin-left: 1.06667rem; padding: 0 0 0 0.96rem; background: url(../img/text-time-icon.png) no-repeat 0 50%; font: 0.81067rem/1.49333rem "simhei"; color: #ebe5ca; }
.text-cont .time .time-num { float: left; margin-right: 0.10667rem; font: 1.152rem/1.49333rem "Arial"; color: #fff229; }
.text-cont .num-list { float: right; width: 5.54667rem; margin-right: 0.85333rem; font: 0.81067rem/1.49333rem "simhei"; }
.text-cont .num-list span { float: left; }
.text-cont .num-list .num-bg { width: 1.06667rem; height: 1.51467rem; margin-right: 0.064rem; background: url(../img/text-num-bg.png) no-repeat; background-size: cover; font: 1.36533rem/1.49333rem "Arial"; color: #fff228; text-align: center; }
.duang-cont { position: relative; width: 12.8rem; margin: 0 auto; margin-top: 1.28rem; }
.record { position: absolute; top: 0; right: 0; z-index: 5; height: 1.06667rem; margin-top: -px2rem(5); font: 0.55467rem/1.06667rem "simhei"; color: #141f31; text-decoration: underline; }
.btn-duang { display: block; width: 10.66667rem; height: 7.59467rem; margin: 0 auto; background: url(../img/btn-duang.png) no-repeat; background-size: cover; -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; touch-callout: none; }
.btn-duang .duang { position: relative; width: 100%; height: 100%; }
.duang-cont .hand { position: absolute; top: 4.69333rem; right: 0.85333rem; width: 4.71467rem; height: 5.01333rem; background: url(../img/hand.png) no-repeat; background-size: cover; }
.footer { position: fixed; bottom: 0; display: inline-block; width: 16rem; height: 2.816rem; background: url(../img/btn-bottom.png) no-repeat; background-size: 100% 2.816rem; font-size: 0; }
.footer .btn { display: inline-block; width: 33%; padding-top: 0.42667rem; font: 0.85333rem/2.13333rem "simhei"; color: #e7ddb5; }
@media (max-width: 640px) { .duang-cont { margin-top: 30px; }
.duang-cont .hand { display: none; } } | demo/css/style.css | body { position: relative; width: 16rem; margin: 0 auto; background: #f3ecd1 url(../img/body-bg11.jpg) repeat; background-size: cover; }
.container { width: 100%; }
.container .person { overflow: hidden; width: 14.61333rem; height: 9.23733rem; margin: 0 auto 0.42667rem; padding: 0.64rem 0 0 0; }
#chenlongJpg { height: 8.53333rem; }
#chenlongGif { height: 8.53333rem; }
.text-cont { width: 15.36rem; height: 2.28267rem; margin: 0 auto 0.53333rem; background: url(../img/text.png) no-repeat; background-size: cover; font: 0.55467rem/0.68267rem "simhei"; color: #fff6d1; text-align: center; }
.text-cont .text { padding: 0.42667rem 1.70667rem; }
.text-cont .num { font-size: 0.64rem; color: #ffdd54; }
.text-cont .time { float: left; width: 3.2rem; height: 1.49333rem; margin-left: 1.06667rem; padding: 0 0 0 0.96rem; background: url(../img/text-time-icon.png) no-repeat 0 50%; font: 0.81067rem/1.49333rem "simhei"; color: #ebe5ca; }
.text-cont .time .time-num { float: left; margin-right: 0.10667rem; font: 1.152rem/1.49333rem "Arial"; color: #fff229; }
.text-cont .num-list { float: right; width: 5.54667rem; margin-right: 0.85333rem; font: 0.81067rem/1.49333rem "simhei"; }
.text-cont .num-list span { float: left; }
.text-cont .num-list .num-bg { width: 1.06667rem; height: 1.51467rem; margin-right: 0.064rem; background: url(../img/text-num-bg.png) no-repeat; background-size: cover; font: 1.36533rem/1.49333rem "Arial"; color: #fff228; text-align: center; }
.duang-cont { position: relative; width: 12.8rem; margin: 0 auto; margin-top: 1.28rem; }
.record { position: absolute; top: 0; right: 0; z-index: 5; height: 1.06667rem; margin-top: -px2rem(5); font: 0.55467rem/1.06667rem "simhei"; color: #141f31; text-decoration: underline; }
.btn-duang { display: block; width: 10.66667rem; height: 7.59467rem; margin: 0 auto; background: url(../img/btn-duang.png) no-repeat; background-size: cover; -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; touch-callout: none; }
.btn-duang .duang { position: relative; width: 100%; height: 100%; }
.duang-cont .hand { position: absolute; top: 4.69333rem; right: 0.85333rem; width: 4.71467rem; height: 5.01333rem; background: url(../img/hand.png) no-repeat; background-size: cover; }
.footer { position: fixed; bottom: 0; display: inline-block; width: 16rem; height: 2.816rem; background: url(../img/btn-bottom.png) no-repeat; background-size: 100% 2.816rem; font-size: 0; }
.footer .btn { display: inline-block; width: 33%; padding-top: 0.42667rem; font: 0.85333rem/2.13333rem "simhei"; color: #e7ddb5; }
@media (max-width: 640px) { .duang-cont { margin-top: 30px; }
.duang-cont .hand { display: none; } } | 0.534612 | 0.142978 |
* {
box-sizing: border-box;
overflow-y: hidden;
overflow-x: hidden;
}
/* #region Universal */
body {
font-family: "Proxima Nova", "Segoe UI", Myriad, Verdana, sans-serif;
background: black;
color: white;
max-width: 36em;
height: 100vh;
margin: 0 auto;
}
/* Nav */
.navBar {
height: auto;
}
.navBar ul {
width: 100%;
background: #8B1728;
display: flex;
justify-content: center;
padding: 0;
margin: 0 auto;
height: 2em;
box-shadow: 0 2px 2px -2px rgba(0,0,0,.2);
}
.navBar ul li {
width: 50%;
text-align: center;
}
.navBar li a {
background-repeat: no-repeat;
background-position: center;
background-size: 2.5em;
display: block;
height: 100%;
opacity: .6;
}
.navBar li a:hover,
.navBar li a:focus {
opacity: 1;
outline: none;
}
.navBar li:nth-of-type(1) a {
background-image: url(/static/images/icons/account1.png);
}
.navBar li:nth-of-type(2) a {
background-image: url(/static/images/icons/search1.png);
}
.navBar li:nth-of-type(3) a {
background-image: url(/static/images/icons/tag1.png);
}
.navBar li.active:nth-of-type(1) a {
background-image: url(/static/images/icons/account2.png);
opacity: 1;
}
.navBar li.active:nth-of-type(2) a {
background-image: url(/static/images/icons/search2.png);
opacity: 1;
}
.navBar li.active:nth-of-type(3) a {
background-image: url(/static/images/icons/tag2.png);
opacity: 1;
}
/* labels/buttons */
label,
input,
textarea,
button {
margin: 1em 0
}
button {
font-size: 1em;
padding: 0.5em;
border-width: 0;
border-radius: 0.25em
}
input,
textarea {
display: flex;
justify-content: center;
width: 100%;
padding-left: 10px;
border-radius: 10em;
}
textarea {
height: 3.5em;
background: rgba(0, 0, 0, 0);
border: 1px solid rgba(255, 255, 255, .6);
color: #ffffff;
border-radius: 50px;
padding-top: 10px;
}
/* #endregion */
/* #region states */
/* ------- Index ------- */
.index a:not(:last-child):hover,
.index a:not(:last-child):focus {
background-color: rgba(255,255,255,.4);
transition: 0.3s;
outline: none;
}
.index a:last-child:hover,
.index a:last-child:focus {
text-decoration: underline;
outline: none;
}
/* ------- logIn ------- */
.index form input:hover,
.index form input:focus {
border: 1px solid rgba(255, 255, 255, 1);
transition: 0.3s;
outline: none;
cursor: pointer;
}
.login a:hover,
.login a:focus {
background-color: rgba(255,255,255,.4);
transition: 0.3s;
outline: none;
}
/* ------- Register ------- */
.register input[type="file"]:focus {
outline: none;
}
.register label:not(:first-child) input:hover,
.register label:not(:first-child) input:focus,
textarea:hover,
textarea:focus {
border: 1px solid rgba(255, 255, 255, 1);
transition: 0.3s;
outline: none;
}
.bottomBtns a:hover,
.bottomBtns a:focus,
.bottomBtns button:hover,
.bottomBtns button:focus {
background-color: rgba(255,255,255,.4);
transition: 0.3s;
outline: none;
}
/* ------- searchLocation ------- */
.searchLocation input[type=text]:focus {
outline: none;
}
.searchLocation .img-container:hover {
opacity: .6;
}
.dropTagBtn:hover,
.dropTagBtn:focus {
background: rgba(255,255,255,.4);
transition: 0.3s;
outline: none;
}
.dropTagBtn:focus {
outline: none;
}
/* ------- droppedTags ------- */
.droppedTagList ul li:hover,
.droppedTagList ul li:focus {
background: rgba(255,255,255,.4);
transition: 0.3s;
outline: none;
}
.droppedTagList ul li a:focus {
outline: none;
}
/* ------- Detail ------- */
.backBtn:hover,
.backBtn:focus,
.delete:hover,
.delete:focus {
background: rgba(255,255,255,.4);
transition: 0.3s;
outline: none;
}
/* ------- Add ------- */
.add label:not(:first-child) input:hover,
.add label:not(:first-child) input:focus {
border: 1px solid rgba(255, 255, 255, 1);
transition: 0.3s;
outline: none;
}
.add input[type="file"]:focus {
outline: none;
}
/* #endregion */
/* #region Index */
.index {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url("./images/backgrounds/couple1.png");
background-repeat: no-repeat;
background-size: cover;
}
.indexLogo {
max-width: 80%;
max-height: auto;
}
.index a:not(:last-child) {
display: flex;
justify-content: center;
align-items: center;
color: #ffffff;
font-weight: 100;
text-decoration: none;
text-transform: uppercase;
border: 1px solid #ffffff;
border-radius: 10em;
margin-top: 1em;
width: 80%;
height: 2.5em;
}
.index a:last-child {
margin-top: 1em;
color: #ffffff;
text-decoration: none;
font-size: 0.8em;
}
/* #endregion */
/* #region login */
/* User not logged in */
form {
width: 80%;
height: auto;
}
.index form input {
height: 3.5em;
background: rgba(0, 0, 0, 0);
border: 1px solid rgba(255, 255, 255, .6);
color: #ffffff;
text-align: center;
}
form input[type=submit] {
border: none;
background: linear-gradient(to bottom right, red, #ffffff);
text-transform: uppercase;
}
form a:last-child {
display: flex;
justify-content: center;
font-size: 12px;
text-decoration: underline;
color: #ffffff;
}
/* user logged in */
.login {
height: calc(100vh - 2em);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
.login a {
display: flex;
justify-content: center;
align-items: center;
color: #ffffff;
font-weight: 100;
text-decoration: none;
text-transform: uppercase;
border: 1px solid #ffffff;
border-radius: 10em;
margin-top: 8em;
width: 80%;
height: 2.5em;
}
/* #endregion */
/* #region searchLocation */
.searchLocation {
height: calc(100vh - 2em);
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
.searchLocation form:first-child {
width: 90%;
}
.searchLocation input[type=text] {
font-family: "Proxima Nova", FontAwesome, sans-serif;
font-size: 1em;
text-align: left;
margin-bottom: 0;
padding: 10px;
background: #ffffff;
border: 1px solid #ffffff;
}
.midSection {
display: flex;
flex: 1;
justify-content: center;
align-items: center;
width: 90%;
}
.radar-container {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
position: relative;
overflow: hidden;
}
.radar-container:before {
content: "";
display: block;
padding-top: 100%;
}
.img-container {
overflow: hidden;
width: 10em;
height: 10em;
border-radius: 50%;
border: 5px solid #ffffff;
z-index: 1;
}
.img-container img {
width: auto;
height: 100%;
}
.radar-container p {
border: 1px solid #ffffff;
font-size: 0.8em;
padding-left: 8px;
width: 50%;
height: 50%;
border-radius: 50%;
position: absolute;
margin: 0 auto;
display: flex;
align-items: center;
}
.radar-container p:nth-child(3) {
width: 75%;
height: 75%;
opacity: .7;
}
.radar-container p:nth-child(4) {
width: 100%;
height: 100%;
opacity: .5;
}
.searchLocation form:last-child {
text-align: center;
width: 100%;
}
/* #endregion */
/* #region droppedTags */
.droppedTags {
height: calc(100vh - 2em);
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
.droppedTags h1 {
margin-bottom: 0;
}
.droppedTagList {
width: 90%;
height: 40%;
overflow: auto;
}
.droppedTagList h2 {
margin: 0;
font-size: 1em;
}
.droppedTagList ul {
padding-left: 0;
}
.droppedTagList ul li {
border: 1px solid #ffffff;
border-radius: 50px;
width: 100%;
margin-top: 1px;
margin-bottom: 10px;
padding-left: 20px;
}
.droppedTagList ul li a {
color: #ffffff;
text-decoration: none;
}
.dropTagBtn {
display: flex;
justify-content: center;
align-items: center;
color: #ffffff;
font-weight: 100;
text-decoration: none;
text-transform: uppercase;
border: 1px solid #ffffff;
border-radius: 10em;
margin-bottom: 1em;
width: 80%;
height: 2.5em;
}
/* #endregion */
/* #region Register */
.register {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
.register label {
margin-top: 0;
}
.register label:not(:first-child) input {
height: 3.5em;
background: rgba(0, 0, 0, 0);
border: 1px solid rgba(255, 255, 255, .6);
color: #ffffff;
}
.register label:not(:nth-last-child(-n+3)) {
display: flex;
justify-content: space-between;
align-items: center;
}
.register label input {
width: 60%;
}
.register form {
display: flex;
flex-direction: column;
}
.bottomBtns {
display: flex;
justify-content: space-evenly;
align-items: center;
}
.bottomBtns a,
.bottomBtns button {
background: rgba(0, 0, 0, 0);
width: 9em;
height: 3em;
color: #ffffff;
border: 1px solid #ffffff;
border-radius: 50px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
text-decoration: none;
text-transform: uppercase;
}
/* #endregion */
/* #region Add */
.add {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
.add label:first-child {
display: flex;
justify-content: space-between;
align-items: center;
margin: auto;
width: 100%;
}
.add input[type="file"] {
width: 70%;
}
.add label:not(:first-child) input {
height: 3.5em;
background: rgba(0, 0, 0, 0);
border: 1px solid rgba(255, 255, 255, .6);
color: #ffffff;
}
.add form {
display: flex;
flex-direction: column;
}
/* #endregion */
/* #region Detail*/
.detail {
height: calc(100vh - 2em);
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
.detail h1 {
margin-bottom: 0;
}
.bio {
text-align: center;
width: 60%;
}
.bio h2 {
font-size: 1em;
}
.detailButtons {
width: 100%;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.backBtn,
.delete {
background: rgba(0, 0, 0, 0);
width: 9em;
height: 3em;
color: #ffffff;
border: 1px solid #ffffff;
border-radius: 50px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
text-decoration: none;
text-transform: uppercase;
margin: 1em 0;
cursor: pointer;
}
/* #endregion */
/* #region PersonalTag */
.personalTag {
height: calc(100vh - 2em);
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
/* #endregion */
/* #region credsRequired */
.credsRequired {
height: calc(100vh - 2em);
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
.credsRequired h1 {
width: 80%;
text-align: center;
}
/* #endregion */ | static/index.css | * {
box-sizing: border-box;
overflow-y: hidden;
overflow-x: hidden;
}
/* #region Universal */
body {
font-family: "Proxima Nova", "Segoe UI", Myriad, Verdana, sans-serif;
background: black;
color: white;
max-width: 36em;
height: 100vh;
margin: 0 auto;
}
/* Nav */
.navBar {
height: auto;
}
.navBar ul {
width: 100%;
background: #8B1728;
display: flex;
justify-content: center;
padding: 0;
margin: 0 auto;
height: 2em;
box-shadow: 0 2px 2px -2px rgba(0,0,0,.2);
}
.navBar ul li {
width: 50%;
text-align: center;
}
.navBar li a {
background-repeat: no-repeat;
background-position: center;
background-size: 2.5em;
display: block;
height: 100%;
opacity: .6;
}
.navBar li a:hover,
.navBar li a:focus {
opacity: 1;
outline: none;
}
.navBar li:nth-of-type(1) a {
background-image: url(/static/images/icons/account1.png);
}
.navBar li:nth-of-type(2) a {
background-image: url(/static/images/icons/search1.png);
}
.navBar li:nth-of-type(3) a {
background-image: url(/static/images/icons/tag1.png);
}
.navBar li.active:nth-of-type(1) a {
background-image: url(/static/images/icons/account2.png);
opacity: 1;
}
.navBar li.active:nth-of-type(2) a {
background-image: url(/static/images/icons/search2.png);
opacity: 1;
}
.navBar li.active:nth-of-type(3) a {
background-image: url(/static/images/icons/tag2.png);
opacity: 1;
}
/* labels/buttons */
label,
input,
textarea,
button {
margin: 1em 0
}
button {
font-size: 1em;
padding: 0.5em;
border-width: 0;
border-radius: 0.25em
}
input,
textarea {
display: flex;
justify-content: center;
width: 100%;
padding-left: 10px;
border-radius: 10em;
}
textarea {
height: 3.5em;
background: rgba(0, 0, 0, 0);
border: 1px solid rgba(255, 255, 255, .6);
color: #ffffff;
border-radius: 50px;
padding-top: 10px;
}
/* #endregion */
/* #region states */
/* ------- Index ------- */
.index a:not(:last-child):hover,
.index a:not(:last-child):focus {
background-color: rgba(255,255,255,.4);
transition: 0.3s;
outline: none;
}
.index a:last-child:hover,
.index a:last-child:focus {
text-decoration: underline;
outline: none;
}
/* ------- logIn ------- */
.index form input:hover,
.index form input:focus {
border: 1px solid rgba(255, 255, 255, 1);
transition: 0.3s;
outline: none;
cursor: pointer;
}
.login a:hover,
.login a:focus {
background-color: rgba(255,255,255,.4);
transition: 0.3s;
outline: none;
}
/* ------- Register ------- */
.register input[type="file"]:focus {
outline: none;
}
.register label:not(:first-child) input:hover,
.register label:not(:first-child) input:focus,
textarea:hover,
textarea:focus {
border: 1px solid rgba(255, 255, 255, 1);
transition: 0.3s;
outline: none;
}
.bottomBtns a:hover,
.bottomBtns a:focus,
.bottomBtns button:hover,
.bottomBtns button:focus {
background-color: rgba(255,255,255,.4);
transition: 0.3s;
outline: none;
}
/* ------- searchLocation ------- */
.searchLocation input[type=text]:focus {
outline: none;
}
.searchLocation .img-container:hover {
opacity: .6;
}
.dropTagBtn:hover,
.dropTagBtn:focus {
background: rgba(255,255,255,.4);
transition: 0.3s;
outline: none;
}
.dropTagBtn:focus {
outline: none;
}
/* ------- droppedTags ------- */
.droppedTagList ul li:hover,
.droppedTagList ul li:focus {
background: rgba(255,255,255,.4);
transition: 0.3s;
outline: none;
}
.droppedTagList ul li a:focus {
outline: none;
}
/* ------- Detail ------- */
.backBtn:hover,
.backBtn:focus,
.delete:hover,
.delete:focus {
background: rgba(255,255,255,.4);
transition: 0.3s;
outline: none;
}
/* ------- Add ------- */
.add label:not(:first-child) input:hover,
.add label:not(:first-child) input:focus {
border: 1px solid rgba(255, 255, 255, 1);
transition: 0.3s;
outline: none;
}
.add input[type="file"]:focus {
outline: none;
}
/* #endregion */
/* #region Index */
.index {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url("./images/backgrounds/couple1.png");
background-repeat: no-repeat;
background-size: cover;
}
.indexLogo {
max-width: 80%;
max-height: auto;
}
.index a:not(:last-child) {
display: flex;
justify-content: center;
align-items: center;
color: #ffffff;
font-weight: 100;
text-decoration: none;
text-transform: uppercase;
border: 1px solid #ffffff;
border-radius: 10em;
margin-top: 1em;
width: 80%;
height: 2.5em;
}
.index a:last-child {
margin-top: 1em;
color: #ffffff;
text-decoration: none;
font-size: 0.8em;
}
/* #endregion */
/* #region login */
/* User not logged in */
form {
width: 80%;
height: auto;
}
.index form input {
height: 3.5em;
background: rgba(0, 0, 0, 0);
border: 1px solid rgba(255, 255, 255, .6);
color: #ffffff;
text-align: center;
}
form input[type=submit] {
border: none;
background: linear-gradient(to bottom right, red, #ffffff);
text-transform: uppercase;
}
form a:last-child {
display: flex;
justify-content: center;
font-size: 12px;
text-decoration: underline;
color: #ffffff;
}
/* user logged in */
.login {
height: calc(100vh - 2em);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
.login a {
display: flex;
justify-content: center;
align-items: center;
color: #ffffff;
font-weight: 100;
text-decoration: none;
text-transform: uppercase;
border: 1px solid #ffffff;
border-radius: 10em;
margin-top: 8em;
width: 80%;
height: 2.5em;
}
/* #endregion */
/* #region searchLocation */
.searchLocation {
height: calc(100vh - 2em);
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
.searchLocation form:first-child {
width: 90%;
}
.searchLocation input[type=text] {
font-family: "Proxima Nova", FontAwesome, sans-serif;
font-size: 1em;
text-align: left;
margin-bottom: 0;
padding: 10px;
background: #ffffff;
border: 1px solid #ffffff;
}
.midSection {
display: flex;
flex: 1;
justify-content: center;
align-items: center;
width: 90%;
}
.radar-container {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
position: relative;
overflow: hidden;
}
.radar-container:before {
content: "";
display: block;
padding-top: 100%;
}
.img-container {
overflow: hidden;
width: 10em;
height: 10em;
border-radius: 50%;
border: 5px solid #ffffff;
z-index: 1;
}
.img-container img {
width: auto;
height: 100%;
}
.radar-container p {
border: 1px solid #ffffff;
font-size: 0.8em;
padding-left: 8px;
width: 50%;
height: 50%;
border-radius: 50%;
position: absolute;
margin: 0 auto;
display: flex;
align-items: center;
}
.radar-container p:nth-child(3) {
width: 75%;
height: 75%;
opacity: .7;
}
.radar-container p:nth-child(4) {
width: 100%;
height: 100%;
opacity: .5;
}
.searchLocation form:last-child {
text-align: center;
width: 100%;
}
/* #endregion */
/* #region droppedTags */
.droppedTags {
height: calc(100vh - 2em);
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
.droppedTags h1 {
margin-bottom: 0;
}
.droppedTagList {
width: 90%;
height: 40%;
overflow: auto;
}
.droppedTagList h2 {
margin: 0;
font-size: 1em;
}
.droppedTagList ul {
padding-left: 0;
}
.droppedTagList ul li {
border: 1px solid #ffffff;
border-radius: 50px;
width: 100%;
margin-top: 1px;
margin-bottom: 10px;
padding-left: 20px;
}
.droppedTagList ul li a {
color: #ffffff;
text-decoration: none;
}
.dropTagBtn {
display: flex;
justify-content: center;
align-items: center;
color: #ffffff;
font-weight: 100;
text-decoration: none;
text-transform: uppercase;
border: 1px solid #ffffff;
border-radius: 10em;
margin-bottom: 1em;
width: 80%;
height: 2.5em;
}
/* #endregion */
/* #region Register */
.register {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
.register label {
margin-top: 0;
}
.register label:not(:first-child) input {
height: 3.5em;
background: rgba(0, 0, 0, 0);
border: 1px solid rgba(255, 255, 255, .6);
color: #ffffff;
}
.register label:not(:nth-last-child(-n+3)) {
display: flex;
justify-content: space-between;
align-items: center;
}
.register label input {
width: 60%;
}
.register form {
display: flex;
flex-direction: column;
}
.bottomBtns {
display: flex;
justify-content: space-evenly;
align-items: center;
}
.bottomBtns a,
.bottomBtns button {
background: rgba(0, 0, 0, 0);
width: 9em;
height: 3em;
color: #ffffff;
border: 1px solid #ffffff;
border-radius: 50px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
text-decoration: none;
text-transform: uppercase;
}
/* #endregion */
/* #region Add */
.add {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
.add label:first-child {
display: flex;
justify-content: space-between;
align-items: center;
margin: auto;
width: 100%;
}
.add input[type="file"] {
width: 70%;
}
.add label:not(:first-child) input {
height: 3.5em;
background: rgba(0, 0, 0, 0);
border: 1px solid rgba(255, 255, 255, .6);
color: #ffffff;
}
.add form {
display: flex;
flex-direction: column;
}
/* #endregion */
/* #region Detail*/
.detail {
height: calc(100vh - 2em);
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
.detail h1 {
margin-bottom: 0;
}
.bio {
text-align: center;
width: 60%;
}
.bio h2 {
font-size: 1em;
}
.detailButtons {
width: 100%;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.backBtn,
.delete {
background: rgba(0, 0, 0, 0);
width: 9em;
height: 3em;
color: #ffffff;
border: 1px solid #ffffff;
border-radius: 50px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
text-decoration: none;
text-transform: uppercase;
margin: 1em 0;
cursor: pointer;
}
/* #endregion */
/* #region PersonalTag */
.personalTag {
height: calc(100vh - 2em);
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
/* #endregion */
/* #region credsRequired */
.credsRequired {
height: calc(100vh - 2em);
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
background-image: url("./images/backgrounds/redgradient.png");
background-repeat: no-repeat;
background-size: cover;
}
.credsRequired h1 {
width: 80%;
text-align: center;
}
/* #endregion */ | 0.427397 | 0.130368 |
html {
scroll-behavior: smooth; }
.text-green {
color: #32cb55; }
img {
max-width: 100%; }
.gray-bg {
background-color: #f3f3f3; }
.bg-contrast-higher {
background-color: #212121 !important;
color: #fff; }
.bg-contrast-high {
background-color: #4b4b4b !important;
color: #fff; }
.bg-contrast-medium {
background-color: #757575 !important;
color: #fff; }
.bg-contrast-low {
background-color: #e0e0e0 !important;
color: #4b4b4b; }
.bg-contrast-lower {
background-color: #f4f4f4 !important;
color: #4b4b4b; }
.bg-contrast-lowest {
background-color: #fff !important;
color: #4b4b4b; }
.bg-primary {
background-color: #7252d3 !important;
color: #fff; }
.bg-primary-dark {
background-color: #4e37b6 !important;
color: #fff; }
.bg-primary-darker {
background-color: #2d218f !important;
color: #fff; }
.bg-primary-light {
background-color: #845ae0 !important;
color: #fff; }
.bg-primary-lighter {
background-color: #eae0fb !important;
color: #4b4b4b; }
.bg-complete {
background-color: #0072ec !important;
color: #fff; }
.bg-complete-dark {
background-color: #004fbf !important;
color: #fff; }
.bg-complete-darker {
background-color: #00318e !important;
color: #fff; }
.bg-complete-light {
background-color: #0f8ff9 !important;
color: #fff; }
.bg-complete-lighter {
background-color: #d3eeff !important;
color: #4b4b4b; }
.bg-success {
background-color: #19ad79 !important;
color: #fff; }
.bg-success-dark {
background-color: #0d935b !important;
color: #fff; }
.bg-success-darker {
background-color: #04733e !important;
color: #fff; }
.bg-success-light {
background-color: #26bf93 !important;
color: #4b4b4b; }
.bg-success-lighter {
background-color: #d6f7f0 !important;
color: #4b4b4b; }
.bg-info {
background-color: #3b4752 !important;
color: #fff; }
.bg-info-dark {
background-color: #2b3947;
color: #fff; }
.bg-info-darker {
background-color: #1b2839;
color: #fff; }
.bg-info-light {
background-color: #475b6b;
color: #fff; }
.bg-info-lighter {
background-color: #dbe6e8;
color: #4b4b4b; }
.bg-danger {
background-color: #d83c31 !important;
color: #fff; }
.bg-danger-dark {
background-color: #b91e1e;
color: #fff; }
.bg-danger-darker {
background-color: #900f17;
color: #fff; }
.bg-danger-light {
background-color: #e6533c;
color: #4b4b4b; }
.bg-danger-lighter {
background-color: #fde2da;
color: #4b4b4b; }
.bg-warning {
background-color: #ffd945 !important;
color: #4b4b4b; }
.bg-warning-dark {
background-color: #daab2d;
color: #4b4b4b; }
.bg-warning-darker {
background-color: #aa7918;
color: #4b4b4b; }
.bg-warning-light {
background-color: #ffe858;
color: #4b4b4b; }
.bg-warning-lighter {
background-color: #fffde1;
color: #4b4b4b; }
.bg-menu-dark {
background-color: #21252d;
color: #fff; }
.bg-menu {
background-color: #2b303b;
color: #fff; }
.bg-menu-light {
background-color: #929aac;
color: #4b4b4b; }
.gradient-grey {
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%);
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%); }
.gradient-black {
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%);
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%); }
.bg-black {
background-color: #000 !important;
color: #fff; }
.bg-white {
background-color: #fff !important;
color: #4b4b4b; }
.bg-transparent {
background-color: transparent !important; } | output/css/variable.css | html {
scroll-behavior: smooth; }
.text-green {
color: #32cb55; }
img {
max-width: 100%; }
.gray-bg {
background-color: #f3f3f3; }
.bg-contrast-higher {
background-color: #212121 !important;
color: #fff; }
.bg-contrast-high {
background-color: #4b4b4b !important;
color: #fff; }
.bg-contrast-medium {
background-color: #757575 !important;
color: #fff; }
.bg-contrast-low {
background-color: #e0e0e0 !important;
color: #4b4b4b; }
.bg-contrast-lower {
background-color: #f4f4f4 !important;
color: #4b4b4b; }
.bg-contrast-lowest {
background-color: #fff !important;
color: #4b4b4b; }
.bg-primary {
background-color: #7252d3 !important;
color: #fff; }
.bg-primary-dark {
background-color: #4e37b6 !important;
color: #fff; }
.bg-primary-darker {
background-color: #2d218f !important;
color: #fff; }
.bg-primary-light {
background-color: #845ae0 !important;
color: #fff; }
.bg-primary-lighter {
background-color: #eae0fb !important;
color: #4b4b4b; }
.bg-complete {
background-color: #0072ec !important;
color: #fff; }
.bg-complete-dark {
background-color: #004fbf !important;
color: #fff; }
.bg-complete-darker {
background-color: #00318e !important;
color: #fff; }
.bg-complete-light {
background-color: #0f8ff9 !important;
color: #fff; }
.bg-complete-lighter {
background-color: #d3eeff !important;
color: #4b4b4b; }
.bg-success {
background-color: #19ad79 !important;
color: #fff; }
.bg-success-dark {
background-color: #0d935b !important;
color: #fff; }
.bg-success-darker {
background-color: #04733e !important;
color: #fff; }
.bg-success-light {
background-color: #26bf93 !important;
color: #4b4b4b; }
.bg-success-lighter {
background-color: #d6f7f0 !important;
color: #4b4b4b; }
.bg-info {
background-color: #3b4752 !important;
color: #fff; }
.bg-info-dark {
background-color: #2b3947;
color: #fff; }
.bg-info-darker {
background-color: #1b2839;
color: #fff; }
.bg-info-light {
background-color: #475b6b;
color: #fff; }
.bg-info-lighter {
background-color: #dbe6e8;
color: #4b4b4b; }
.bg-danger {
background-color: #d83c31 !important;
color: #fff; }
.bg-danger-dark {
background-color: #b91e1e;
color: #fff; }
.bg-danger-darker {
background-color: #900f17;
color: #fff; }
.bg-danger-light {
background-color: #e6533c;
color: #4b4b4b; }
.bg-danger-lighter {
background-color: #fde2da;
color: #4b4b4b; }
.bg-warning {
background-color: #ffd945 !important;
color: #4b4b4b; }
.bg-warning-dark {
background-color: #daab2d;
color: #4b4b4b; }
.bg-warning-darker {
background-color: #aa7918;
color: #4b4b4b; }
.bg-warning-light {
background-color: #ffe858;
color: #4b4b4b; }
.bg-warning-lighter {
background-color: #fffde1;
color: #4b4b4b; }
.bg-menu-dark {
background-color: #21252d;
color: #fff; }
.bg-menu {
background-color: #2b303b;
color: #fff; }
.bg-menu-light {
background-color: #929aac;
color: #4b4b4b; }
.gradient-grey {
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%);
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%); }
.gradient-black {
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%);
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%); }
.bg-black {
background-color: #000 !important;
color: #fff; }
.bg-white {
background-color: #fff !important;
color: #4b4b4b; }
.bg-transparent {
background-color: transparent !important; } | 0.435421 | 0.111604 |
html {
scroll-behavior: smooth;
}
/* primero */
.primero {
width: 100%;
height: 300px;
text-align: center;
position: relative;
background-color: white;
z-index: -5;
}
.wrapper {
min-height: 600px;
display: flex;
flex-direction: column;
}
.content {
padding-top: 5rem;
display: flex;
flex: 1;
}
.columns {
display: flex;
flex: 1;
}
.main {
flex: 1;
}
.theWorldContainer {
padding-top: 0;
z-index: -30;
}
.theWorld {
font-size: 1rem;
filter: invert(1);
mix-blend-mode: difference;
}
.NOT {
font-size: 2rem;
white-space: nowrap;
color: white;
filter: none;
mix-blend-mode: normal;
}
/* segundo */
.segundo {
width: 100%;
height: 300px;
text-align: center;
align-content: center;
position: relative;
background-color: black;
z-index: -10;
}
.if {
position: relative;
z-index: -1;
top: -4rem;
font-size: 5rem;
color: white;
}
.openPar {
position: relative;
top: -4rem;
font-size: 5rem;
color: white;
}
.closePar {
position: relative;
top: -4rem;
font-size: 5rem;
color: white;
}
.colons {
position: relative;
top: -4rem;
font-size: 5rem;
color: white
}
.codeIt {
font-size: 2rem;
position: relative;
display: block;
top: -26rem;
z-index: -9;
}
.tree {
position: relative;
display: block;
margin-left: auto;
margin-right: auto;
width: 13rem;
top: -100px;
padding-top: 0rem;
z-index: -5;
}
/* tercero */
.tercero {
width: 100%;
height: 600px;
text-align: center;
position: relative;
background-color: white;
z-index: -10;
}
/* cuarto */
.cuarto {
width: 100%;
height: 300px;
text-align: center;
position: relative;
background-color: black;
}
.imDeveloper {
font-size: 1.3rem;
padding-top: 6rem;
color: white;
}
#developer {
padding-top: 2rem;
font-size: 2.5rem;
mix-blend-mode: difference;
}
.quinto {
width: 100%;
height: 500px;
text-align: center;
position: relative;
background-color: white;
}
.pleaseSeeMy {
font-size: 1.5rem;
padding-top: 8rem;
color: black;
text-align: center;
align-items: center;
position: relative;
}
.botonProyectos {
outline: none;
font-size: 2rem;
margin: 0;
position: absolute;
border-style: none;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
margin-top: 6rem;
color: #fff;
display: flex;
align-items: center;
text-decoration: none;
padding: 0.5rem 1rem;
background-color: black;
cursor: pointer;
transition: 0.4s all;
}
.botonProyectos:hover {
background: rgb(231, 0, 166);
;
}
.botonProyectos:active {
background: rgb(179, 0, 128);
}
.footer-logo {
display: none;
}
.algoColumnMain {
z-index: 7;
position: relative;
top: -50rem;
}
.algoColumn {
width: 6rem;
}
.sexto {
width: 100%;
height: 630px;
position: absolute;
z-index: 25;
overflow: hidden;
top: 660px;
}
.social-icons {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
.septimo {
/*extra1*/
display: none;
}
.octavo {
/*extra2*/
display: none;
}
.noveno {
/*extra3*/
display: none;
}
.decimo {
/*extra4*/
display: none;
}
img {
pointer-events: none;
}
.algoColumn.left1 {
left: 0px;
padding-top: 570px;
top: 0;
position: absolute;
}
.algoColumn.left2 {
display: none;
}
.algoColumn.right1 {
display: none;
right: 0px;
padding-top: 500px;
top: 0;
position: absolute;
}
.algoColumn.right2 {
right: 0px;
padding-top: 423px;
top: 0;
position: absolute;
}
.floating {
animation-name: floating;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
margin-left: 30px;
margin-top: 5px;
}
.floating-slow {
animation-name: floating-slow;
animation-duration: 5s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
margin-left: 30px;
margin-top: 5px;
}
@keyframes floating {
0% {
transform: translate(0, 0px);
}
50% {
transform: translate(0, 15px);
}
100% {
transform: translate(0, -0px);
}
}
@keyframes floating-slow {
0% {
transform: translate(0, 0px);
}
50% {
transform: translate(0, 50px);
}
100% {
transform: translate(0, -0px);
}
}
/* MOBILE images */
.septimo {
/*extra1 jsx*/
display: block;
width: 7rem;
height: 200px;
position: absolute;
z-index: 25;
top: 160px;
left: -32px;
filter: invert(1);
mix-blend-mode: difference;
}
.octavo {
/*extra2 arrays*/
display: block;
width: 14rem;
height: 200px;
position: absolute;
z-index: 25;
top: 1430px;
left: -54px;
filter: invert(1);
mix-blend-mode: difference;
}
.noveno {
/*extra3 database*/
display: block;
width: 10rem;
height: 200px;
position: absolute;
z-index: 25;
top: 233px;
right: 0px;
filter: invert(1);
mix-blend-mode: difference;
}
.decimo {
/*extra4 big o*/
display: block;
width: 10rem;
height: 200px;
position: absolute;
z-index: 25;
top: 2100px;
right: 10px;
filter: invert(1);
mix-blend-mode: difference;
}
/* media queries 400*/
@media (min-width:400px) {
.septimo {
/*extra1 jsx*/
display: block;
width: 10rem;
height: 200px;
position: absolute;
z-index: 25;
top: 250px;
left: -32px;
filter: invert(1);
mix-blend-mode: difference;
}
.octavo {
/*extra2 arrays*/
display: block;
width: 14rem;
height: 200px;
position: absolute;
z-index: 25;
top: 1430px;
left: -54px;
filter: invert(1);
mix-blend-mode: difference;
}
.noveno {
/*extra3 database*/
display: block;
width: 10rem;
height: 200px;
position: absolute;
z-index: 25;
top: 273px;
right: 0px;
filter: invert(1);
mix-blend-mode: difference;
}
.decimo {
/*extra4 big o*/
display: block;
width: 10rem;
height: 200px;
position: absolute;
z-index: 25;
top: 1630px;
right: 10px;
filter: invert(1);
mix-blend-mode: difference;
}
}
/* media queries 600*/
@media (min-width:600px) {
.algoColumn.right1 {
display: block;
right: 0px;
padding-top: 500px;
top: 0;
position: absolute;
}
.theWorld {
font-size: 1.5rem;
}
html {
font-size: 19px;
}
.tree {
width: 15rem;
}
.imDeveloper {
font-size: 1.3rem;
padding-top: 4.5rem;
color: white;
}
#developer {
padding-top: 2rem;
font-size: 4rem;
mix-blend-mode: difference;
}
.lastPart {
position: relative;
top: 300px;
z-index: -40;
height: 300px;
background-color: black;
}
.septimo {
/*extra1*/
display: block;
width: 14rem;
height: 200px;
position: absolute;
z-index: 25;
top: 250px;
filter: invert(1);
mix-blend-mode: difference;
}
.octavo {
/*extra2*/
display: block;
width: 14rem;
height: 200px;
position: absolute;
z-index: 25;
top: 1430px;
left: 0px;
filter: invert(1);
mix-blend-mode: difference;
}
.noveno {
/*extra3*/
display: block;
width: 14rem;
height: 200px;
position: absolute;
z-index: 25;
top: 175px;
right: 0px;
filter: invert(1);
mix-blend-mode: difference;
}
.decimo {
/*extra4*/
display: block;
width: 14rem;
height: 200px;
position: absolute;
z-index: 25;
top: 1630px;
right: 19px;
filter: invert(1);
mix-blend-mode: difference;
}
.algoColumn.left1 {
padding-top: 700px;
position: absolute;
top: 0;
left: 70px;
}
.algoColumn.left2 {
display: block;
padding-top: 500px;
position: absolute;
top: 0;
left: 100px;
}
.algoColumn.right1 {
right: 100px;
padding-top: 850px;
top: 0;
position: absolute;
}
.algoColumn.right2 {
display: block;
right: 70px;
padding-top: 500px;
top: 0;
position: absolute;
}
}
/* media queries 961*/
@media (min-width:961px) {
.theWorld {
font-size: 1.5rem;
}
html {
font-size: 19px;
}
.tree {
width: 15rem;
}
.imDeveloper {
font-size: 1.3rem;
padding-top: 4.5rem;
color: white;
}
#developer {
padding-top: 2rem;
font-size: 4rem;
mix-blend-mode: difference;
}
.lastPart {
position: relative;
top: 300px;
z-index: -40;
height: 300px;
background-color: black;
}
.septimo {
/*extra1*/
display: block;
width: 25rem;
height: 200px;
position: absolute;
z-index: 25;
top: 50px;
filter: invert(1);
mix-blend-mode: difference;
}
.octavo {
/*extra2*/
display: block;
width: 25rem;
height: 200px;
position: absolute;
z-index: 25;
top: 1430px;
left: 0px;
filter: invert(1);
mix-blend-mode: difference;
}
.noveno {
/*extra3*/
display: block;
width: 25rem;
height: 200px;
position: absolute;
z-index: 25;
top: 175px;
right: 0px;
filter: invert(1);
mix-blend-mode: difference;
}
.decimo {
/*extra4*/
display: block;
width: 18rem;
height: 200px;
position: absolute;
z-index: 25;
top: 1630px;
right: 19px;
filter: invert(1);
mix-blend-mode: difference;
}
.algoColumn.left1 {
padding-top: 700px;
position: absolute;
top: 0;
left: 70px;
}
.algoColumn.left2 {
display: block;
padding-top: 500px;
position: absolute;
top: 0;
left: 100px;
}
.algoColumn.right1 {
right: 100px;
padding-top: 850px;
top: 0;
position: absolute;
}
.algoColumn.right2 {
display: block;
right: 70px;
padding-top: 500px;
top: 0;
position: absolute;
}
} | src/components/TheWorld.css | html {
scroll-behavior: smooth;
}
/* primero */
.primero {
width: 100%;
height: 300px;
text-align: center;
position: relative;
background-color: white;
z-index: -5;
}
.wrapper {
min-height: 600px;
display: flex;
flex-direction: column;
}
.content {
padding-top: 5rem;
display: flex;
flex: 1;
}
.columns {
display: flex;
flex: 1;
}
.main {
flex: 1;
}
.theWorldContainer {
padding-top: 0;
z-index: -30;
}
.theWorld {
font-size: 1rem;
filter: invert(1);
mix-blend-mode: difference;
}
.NOT {
font-size: 2rem;
white-space: nowrap;
color: white;
filter: none;
mix-blend-mode: normal;
}
/* segundo */
.segundo {
width: 100%;
height: 300px;
text-align: center;
align-content: center;
position: relative;
background-color: black;
z-index: -10;
}
.if {
position: relative;
z-index: -1;
top: -4rem;
font-size: 5rem;
color: white;
}
.openPar {
position: relative;
top: -4rem;
font-size: 5rem;
color: white;
}
.closePar {
position: relative;
top: -4rem;
font-size: 5rem;
color: white;
}
.colons {
position: relative;
top: -4rem;
font-size: 5rem;
color: white
}
.codeIt {
font-size: 2rem;
position: relative;
display: block;
top: -26rem;
z-index: -9;
}
.tree {
position: relative;
display: block;
margin-left: auto;
margin-right: auto;
width: 13rem;
top: -100px;
padding-top: 0rem;
z-index: -5;
}
/* tercero */
.tercero {
width: 100%;
height: 600px;
text-align: center;
position: relative;
background-color: white;
z-index: -10;
}
/* cuarto */
.cuarto {
width: 100%;
height: 300px;
text-align: center;
position: relative;
background-color: black;
}
.imDeveloper {
font-size: 1.3rem;
padding-top: 6rem;
color: white;
}
#developer {
padding-top: 2rem;
font-size: 2.5rem;
mix-blend-mode: difference;
}
.quinto {
width: 100%;
height: 500px;
text-align: center;
position: relative;
background-color: white;
}
.pleaseSeeMy {
font-size: 1.5rem;
padding-top: 8rem;
color: black;
text-align: center;
align-items: center;
position: relative;
}
.botonProyectos {
outline: none;
font-size: 2rem;
margin: 0;
position: absolute;
border-style: none;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
margin-top: 6rem;
color: #fff;
display: flex;
align-items: center;
text-decoration: none;
padding: 0.5rem 1rem;
background-color: black;
cursor: pointer;
transition: 0.4s all;
}
.botonProyectos:hover {
background: rgb(231, 0, 166);
;
}
.botonProyectos:active {
background: rgb(179, 0, 128);
}
.footer-logo {
display: none;
}
.algoColumnMain {
z-index: 7;
position: relative;
top: -50rem;
}
.algoColumn {
width: 6rem;
}
.sexto {
width: 100%;
height: 630px;
position: absolute;
z-index: 25;
overflow: hidden;
top: 660px;
}
.social-icons {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
.septimo {
/*extra1*/
display: none;
}
.octavo {
/*extra2*/
display: none;
}
.noveno {
/*extra3*/
display: none;
}
.decimo {
/*extra4*/
display: none;
}
img {
pointer-events: none;
}
.algoColumn.left1 {
left: 0px;
padding-top: 570px;
top: 0;
position: absolute;
}
.algoColumn.left2 {
display: none;
}
.algoColumn.right1 {
display: none;
right: 0px;
padding-top: 500px;
top: 0;
position: absolute;
}
.algoColumn.right2 {
right: 0px;
padding-top: 423px;
top: 0;
position: absolute;
}
.floating {
animation-name: floating;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
margin-left: 30px;
margin-top: 5px;
}
.floating-slow {
animation-name: floating-slow;
animation-duration: 5s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
margin-left: 30px;
margin-top: 5px;
}
@keyframes floating {
0% {
transform: translate(0, 0px);
}
50% {
transform: translate(0, 15px);
}
100% {
transform: translate(0, -0px);
}
}
@keyframes floating-slow {
0% {
transform: translate(0, 0px);
}
50% {
transform: translate(0, 50px);
}
100% {
transform: translate(0, -0px);
}
}
/* MOBILE images */
.septimo {
/*extra1 jsx*/
display: block;
width: 7rem;
height: 200px;
position: absolute;
z-index: 25;
top: 160px;
left: -32px;
filter: invert(1);
mix-blend-mode: difference;
}
.octavo {
/*extra2 arrays*/
display: block;
width: 14rem;
height: 200px;
position: absolute;
z-index: 25;
top: 1430px;
left: -54px;
filter: invert(1);
mix-blend-mode: difference;
}
.noveno {
/*extra3 database*/
display: block;
width: 10rem;
height: 200px;
position: absolute;
z-index: 25;
top: 233px;
right: 0px;
filter: invert(1);
mix-blend-mode: difference;
}
.decimo {
/*extra4 big o*/
display: block;
width: 10rem;
height: 200px;
position: absolute;
z-index: 25;
top: 2100px;
right: 10px;
filter: invert(1);
mix-blend-mode: difference;
}
/* media queries 400*/
@media (min-width:400px) {
.septimo {
/*extra1 jsx*/
display: block;
width: 10rem;
height: 200px;
position: absolute;
z-index: 25;
top: 250px;
left: -32px;
filter: invert(1);
mix-blend-mode: difference;
}
.octavo {
/*extra2 arrays*/
display: block;
width: 14rem;
height: 200px;
position: absolute;
z-index: 25;
top: 1430px;
left: -54px;
filter: invert(1);
mix-blend-mode: difference;
}
.noveno {
/*extra3 database*/
display: block;
width: 10rem;
height: 200px;
position: absolute;
z-index: 25;
top: 273px;
right: 0px;
filter: invert(1);
mix-blend-mode: difference;
}
.decimo {
/*extra4 big o*/
display: block;
width: 10rem;
height: 200px;
position: absolute;
z-index: 25;
top: 1630px;
right: 10px;
filter: invert(1);
mix-blend-mode: difference;
}
}
/* media queries 600*/
@media (min-width:600px) {
.algoColumn.right1 {
display: block;
right: 0px;
padding-top: 500px;
top: 0;
position: absolute;
}
.theWorld {
font-size: 1.5rem;
}
html {
font-size: 19px;
}
.tree {
width: 15rem;
}
.imDeveloper {
font-size: 1.3rem;
padding-top: 4.5rem;
color: white;
}
#developer {
padding-top: 2rem;
font-size: 4rem;
mix-blend-mode: difference;
}
.lastPart {
position: relative;
top: 300px;
z-index: -40;
height: 300px;
background-color: black;
}
.septimo {
/*extra1*/
display: block;
width: 14rem;
height: 200px;
position: absolute;
z-index: 25;
top: 250px;
filter: invert(1);
mix-blend-mode: difference;
}
.octavo {
/*extra2*/
display: block;
width: 14rem;
height: 200px;
position: absolute;
z-index: 25;
top: 1430px;
left: 0px;
filter: invert(1);
mix-blend-mode: difference;
}
.noveno {
/*extra3*/
display: block;
width: 14rem;
height: 200px;
position: absolute;
z-index: 25;
top: 175px;
right: 0px;
filter: invert(1);
mix-blend-mode: difference;
}
.decimo {
/*extra4*/
display: block;
width: 14rem;
height: 200px;
position: absolute;
z-index: 25;
top: 1630px;
right: 19px;
filter: invert(1);
mix-blend-mode: difference;
}
.algoColumn.left1 {
padding-top: 700px;
position: absolute;
top: 0;
left: 70px;
}
.algoColumn.left2 {
display: block;
padding-top: 500px;
position: absolute;
top: 0;
left: 100px;
}
.algoColumn.right1 {
right: 100px;
padding-top: 850px;
top: 0;
position: absolute;
}
.algoColumn.right2 {
display: block;
right: 70px;
padding-top: 500px;
top: 0;
position: absolute;
}
}
/* media queries 961*/
@media (min-width:961px) {
.theWorld {
font-size: 1.5rem;
}
html {
font-size: 19px;
}
.tree {
width: 15rem;
}
.imDeveloper {
font-size: 1.3rem;
padding-top: 4.5rem;
color: white;
}
#developer {
padding-top: 2rem;
font-size: 4rem;
mix-blend-mode: difference;
}
.lastPart {
position: relative;
top: 300px;
z-index: -40;
height: 300px;
background-color: black;
}
.septimo {
/*extra1*/
display: block;
width: 25rem;
height: 200px;
position: absolute;
z-index: 25;
top: 50px;
filter: invert(1);
mix-blend-mode: difference;
}
.octavo {
/*extra2*/
display: block;
width: 25rem;
height: 200px;
position: absolute;
z-index: 25;
top: 1430px;
left: 0px;
filter: invert(1);
mix-blend-mode: difference;
}
.noveno {
/*extra3*/
display: block;
width: 25rem;
height: 200px;
position: absolute;
z-index: 25;
top: 175px;
right: 0px;
filter: invert(1);
mix-blend-mode: difference;
}
.decimo {
/*extra4*/
display: block;
width: 18rem;
height: 200px;
position: absolute;
z-index: 25;
top: 1630px;
right: 19px;
filter: invert(1);
mix-blend-mode: difference;
}
.algoColumn.left1 {
padding-top: 700px;
position: absolute;
top: 0;
left: 70px;
}
.algoColumn.left2 {
display: block;
padding-top: 500px;
position: absolute;
top: 0;
left: 100px;
}
.algoColumn.right1 {
right: 100px;
padding-top: 850px;
top: 0;
position: absolute;
}
.algoColumn.right2 {
display: block;
right: 70px;
padding-top: 500px;
top: 0;
position: absolute;
}
} | 0.50952 | 0.07072 |
body {
font: 400 12px 'Montserrat';
color: #000030;
}
h1 {
font-size: 4.5em;
font-weight: 700;
text-transform: uppercase;
color: #fff;
text-align: center;
}
h2 {
font: 2em 'Courgette';
color: #fff;
}
h3 {
font-size: 3em;
font-weight: 700;
text-transform: uppercase;
text-align: left;
}
h4 {
font: 1em 'Courgette';
}
a:hover {
text-decoration: underline;
color: #000030;
}
.text-blue {
color: #000030;
}
/*Shadows*/
.shadow-input {
box-shadow: 2px 2px 10px rgba(0, 0, 48, 0.2);
}
/*Buttons*/
.btn-blue {
background-color: #000030;
color: #fff;
}
.custom-btn {
font: 1.2em 'Courgette';
border-radius: 0;
padding: 0.7em 1em;
}
#logout {
position: absolute;
top: 0;
left: 0;
padding: 5px;
z-index: 100;
}
/*Home left side styles*/
.home-side-image {
box-shadow: 15px 0px 30px rgba(0, 0, 48, .4);
}
.home-side-titles {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0px;
justify-content: center;
flex-direction: column;
align-items: center;
display: flex;
}
.powered-by {
padding: 1.15em;
background-color: #000030;
color: #fff;
text-align: center;
position: absolute;
left: 0;
bottom: 0;
}
/*Form styles*/
form {
margin-top: 2em;
}
input {
border: none;
background-color: transparent;
}
.hp-form {
background-image: url(../img/blue-circles-bgx1.png);
background-repeat: no-repeat;
background-position: top right;
padding-top: 2em;
padding-bottom: 3em;
}
.custom-form {
color: #000030;
font-size: 1em;
font-weight: 700;
text-align: left;
border: none;
border-radius: 0;
}
.form-icon {
padding: 15px;
background-color: #fff;
}
.custom-select {
border-color: transparent;
border-radius: 0;
font-size: 0.8em;
font-weight: 700;
color: #495057;
}
/*Timer*/
#demo {
font-size: 4em;
}
.ui-autocomplete {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
float: left;
display: none;
min-width: 160px;
padding: 4px 0;
margin: 0 0 10px 25px;
list-style: none;
background-color: #ffffff;
border-color: #ccc;
border-color: rgba(0, 0, 0, 0.2);
border-style: solid;
border-width: 1px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
*border-right-width: 2px;
*border-bottom-width: 2px;
}
.ui-menu-item > a.ui-corner-all {
display: block;
padding: 3px 15px;
clear: both;
font-weight: normal;
line-height: 18px;
color: #555555;
white-space: nowrap;
}
@media (min-width: 768px) {
body {
font-size: 14px;
}
}
@media (min-width: 992px) {
body {
font-size: 15px;
}
.custom-form {
font-size: 0.8em;
}
}
@media (min-width: 1200px) {
body {
font-size: 16px;
}
} | web/css/style.css | body {
font: 400 12px 'Montserrat';
color: #000030;
}
h1 {
font-size: 4.5em;
font-weight: 700;
text-transform: uppercase;
color: #fff;
text-align: center;
}
h2 {
font: 2em 'Courgette';
color: #fff;
}
h3 {
font-size: 3em;
font-weight: 700;
text-transform: uppercase;
text-align: left;
}
h4 {
font: 1em 'Courgette';
}
a:hover {
text-decoration: underline;
color: #000030;
}
.text-blue {
color: #000030;
}
/*Shadows*/
.shadow-input {
box-shadow: 2px 2px 10px rgba(0, 0, 48, 0.2);
}
/*Buttons*/
.btn-blue {
background-color: #000030;
color: #fff;
}
.custom-btn {
font: 1.2em 'Courgette';
border-radius: 0;
padding: 0.7em 1em;
}
#logout {
position: absolute;
top: 0;
left: 0;
padding: 5px;
z-index: 100;
}
/*Home left side styles*/
.home-side-image {
box-shadow: 15px 0px 30px rgba(0, 0, 48, .4);
}
.home-side-titles {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0px;
justify-content: center;
flex-direction: column;
align-items: center;
display: flex;
}
.powered-by {
padding: 1.15em;
background-color: #000030;
color: #fff;
text-align: center;
position: absolute;
left: 0;
bottom: 0;
}
/*Form styles*/
form {
margin-top: 2em;
}
input {
border: none;
background-color: transparent;
}
.hp-form {
background-image: url(../img/blue-circles-bgx1.png);
background-repeat: no-repeat;
background-position: top right;
padding-top: 2em;
padding-bottom: 3em;
}
.custom-form {
color: #000030;
font-size: 1em;
font-weight: 700;
text-align: left;
border: none;
border-radius: 0;
}
.form-icon {
padding: 15px;
background-color: #fff;
}
.custom-select {
border-color: transparent;
border-radius: 0;
font-size: 0.8em;
font-weight: 700;
color: #495057;
}
/*Timer*/
#demo {
font-size: 4em;
}
.ui-autocomplete {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
float: left;
display: none;
min-width: 160px;
padding: 4px 0;
margin: 0 0 10px 25px;
list-style: none;
background-color: #ffffff;
border-color: #ccc;
border-color: rgba(0, 0, 0, 0.2);
border-style: solid;
border-width: 1px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
*border-right-width: 2px;
*border-bottom-width: 2px;
}
.ui-menu-item > a.ui-corner-all {
display: block;
padding: 3px 15px;
clear: both;
font-weight: normal;
line-height: 18px;
color: #555555;
white-space: nowrap;
}
@media (min-width: 768px) {
body {
font-size: 14px;
}
}
@media (min-width: 992px) {
body {
font-size: 15px;
}
.custom-form {
font-size: 0.8em;
}
}
@media (min-width: 1200px) {
body {
font-size: 16px;
}
} | 0.446736 | 0.140071 |
color: #fff;
text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.3),
0 0.1rem 0.1rem rgba(0, 0, 0, 0.6),
0 0.1rem 0.2rem rgba(0, 0, 0, 0.7);
}
#evmeContainer #shortcuts {
background: transparent;
position: absolute;
top: 8rem;
left: 0;
right: 0;
bottom: 0;
z-index: 100;
display: none;
overflow: hidden;
-moz-transition: opacity .2s linear;
transition: opacity .2s linear;
}
#evmeContainer #shortcuts-loading {
position: absolute;
top: 50%;
right: 50%;
width: 0;
height: 0;
z-index: 650;
display: none;
}
#evmeContainer #shortcuts-loading.visible {
display: block;
}
#evmeContainer #shortcuts #shortcuts-list {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
#evmeContainer #shortcuts #shortcuts-list ul {
padding: 0.5rem 0 0 0;
overflow: hidden;
}
#evmeContainer .shortcut {
position: relative;
display: inline-block;
vertical-align: top;
z-index: 10;
padding: 0.5rem 0 0.8rem 0;
width: 25%;
height: 8rem;
text-align: center;
/* The above outline is a hack to force Gecko to create only one big
* big Thebes layer for shorcuts results instead of trying it to be
* smart and result into a lot of layers creation/destruction.
*/
outline: 1px solid transparent;
outline-offset: 1px;
}
#evmeContainer:not(.shortcuts-customizing) .shortcut {
/* The above outline is a hack to force Gecko to create only one big
* big Thebes layer for shorcuts results instead of trying it to be
* smart and result into a lot of layers creation/destruction.
*
* Do not merge them while editing, it ends up beeing too expensive
* and generate additional repaints.
*/
outline: 1px solid transparent;
}
#evmeContainer .shortcut .remove {
position: absolute;
top: -0.5rem;
left: .5rem;
right: 0;
height: 2.5rem;
z-index: 100;
display: none;
cursor: pointer;
background: transparent url('/resources/images/delete.png') no-repeat left top/2.4rem;
}
#evmeContainer .shortcut.disabled {
opacity: 0;
-moz-transition: none;
transition: none;
}
#evmeContainer .shortcut.remove {
opacity: 0;
}
#evmeContainer .shortcut.placeholder {
position: absolute;
top: 0;
left: 0.2rem;
right: 0.2rem;
height: 5.5rem;
z-index: 15;
background: rgba(66, 192, 230, .4);
border: 0.1rem solid #4abcd9;
-moz-transition: none;
transition: none;
}
#evmeContainer .shortcut .remove {
display: none;
}
#evmeContainer .shortcut .thumb {
display: block;
position: relative;
height: 4.8rem;
z-index: 10;
-moz-transform-origin: 50% 50%;
}
#evmeContainer .shortcut.add .thumb {
background: url(/everything.me/images/add.png) 50% no-repeat;
background-size: 3rem 3.1rem;
opacity: .7;
}
#evmeContainer .shortcut b {
position: relative;
display: block;
font-size: 1.3rem;
z-index: 50;
color: #fff;
font-weight: 300;
text-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, .6);
}
#evmeContainer.shortcuts-customize #shortcuts .shortcut.add {
opacity: 0;
pointer-events: none;
display: none;
}
#evmeContainer.shortcuts-customize #shortcuts .apps-group span {
-moz-transform: scale(.7) !important;
transform: scale(.7) !important;
}
.evme-display-shortcuts #evmeContainer #shortcuts {
display: block;
}
#evmeContainer #shortcuts-customize {
display: none;
}
#evmeContainer.shortcuts-customizing #shortcuts #shortcuts-list:not([data-scrolling^=true]):not([data-touched^=true]) .shortcut .thumb{
-moz-animation: shake 800ms infinite ease-out;
}
#evmeContainer.shortcuts-customizing .shortcut .remove {
display: block;
}
#evmeContainer.shortcuts-customizing .shortcut.add {
display: none;
}
#evmeContainer.shortcuts-customizing .shortcut.remove .thumb {
-moz-animation: remove 150ms 1;
}
@-moz-keyframes shake {
0% { -moz-transform: scale(1); }
25% { -moz-transform: scale(1.05); }
50% { -moz-transform: scale(1); }
75% { -moz-transform: scale(0.95); }
100% { -moz-transform: scale(1); }
}
@-moz-keyframes remove {
0% { -moz-transform: scale(1); opacity: 1; }
100% { -moz-transform: scale(1.1); opacity: 0; }
} | B2G/gaia/apps/homescreen/everything.me/modules/Shortcuts/Shortcuts.css | color: #fff;
text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.3),
0 0.1rem 0.1rem rgba(0, 0, 0, 0.6),
0 0.1rem 0.2rem rgba(0, 0, 0, 0.7);
}
#evmeContainer #shortcuts {
background: transparent;
position: absolute;
top: 8rem;
left: 0;
right: 0;
bottom: 0;
z-index: 100;
display: none;
overflow: hidden;
-moz-transition: opacity .2s linear;
transition: opacity .2s linear;
}
#evmeContainer #shortcuts-loading {
position: absolute;
top: 50%;
right: 50%;
width: 0;
height: 0;
z-index: 650;
display: none;
}
#evmeContainer #shortcuts-loading.visible {
display: block;
}
#evmeContainer #shortcuts #shortcuts-list {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
#evmeContainer #shortcuts #shortcuts-list ul {
padding: 0.5rem 0 0 0;
overflow: hidden;
}
#evmeContainer .shortcut {
position: relative;
display: inline-block;
vertical-align: top;
z-index: 10;
padding: 0.5rem 0 0.8rem 0;
width: 25%;
height: 8rem;
text-align: center;
/* The above outline is a hack to force Gecko to create only one big
* big Thebes layer for shorcuts results instead of trying it to be
* smart and result into a lot of layers creation/destruction.
*/
outline: 1px solid transparent;
outline-offset: 1px;
}
#evmeContainer:not(.shortcuts-customizing) .shortcut {
/* The above outline is a hack to force Gecko to create only one big
* big Thebes layer for shorcuts results instead of trying it to be
* smart and result into a lot of layers creation/destruction.
*
* Do not merge them while editing, it ends up beeing too expensive
* and generate additional repaints.
*/
outline: 1px solid transparent;
}
#evmeContainer .shortcut .remove {
position: absolute;
top: -0.5rem;
left: .5rem;
right: 0;
height: 2.5rem;
z-index: 100;
display: none;
cursor: pointer;
background: transparent url('/resources/images/delete.png') no-repeat left top/2.4rem;
}
#evmeContainer .shortcut.disabled {
opacity: 0;
-moz-transition: none;
transition: none;
}
#evmeContainer .shortcut.remove {
opacity: 0;
}
#evmeContainer .shortcut.placeholder {
position: absolute;
top: 0;
left: 0.2rem;
right: 0.2rem;
height: 5.5rem;
z-index: 15;
background: rgba(66, 192, 230, .4);
border: 0.1rem solid #4abcd9;
-moz-transition: none;
transition: none;
}
#evmeContainer .shortcut .remove {
display: none;
}
#evmeContainer .shortcut .thumb {
display: block;
position: relative;
height: 4.8rem;
z-index: 10;
-moz-transform-origin: 50% 50%;
}
#evmeContainer .shortcut.add .thumb {
background: url(/everything.me/images/add.png) 50% no-repeat;
background-size: 3rem 3.1rem;
opacity: .7;
}
#evmeContainer .shortcut b {
position: relative;
display: block;
font-size: 1.3rem;
z-index: 50;
color: #fff;
font-weight: 300;
text-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, .6);
}
#evmeContainer.shortcuts-customize #shortcuts .shortcut.add {
opacity: 0;
pointer-events: none;
display: none;
}
#evmeContainer.shortcuts-customize #shortcuts .apps-group span {
-moz-transform: scale(.7) !important;
transform: scale(.7) !important;
}
.evme-display-shortcuts #evmeContainer #shortcuts {
display: block;
}
#evmeContainer #shortcuts-customize {
display: none;
}
#evmeContainer.shortcuts-customizing #shortcuts #shortcuts-list:not([data-scrolling^=true]):not([data-touched^=true]) .shortcut .thumb{
-moz-animation: shake 800ms infinite ease-out;
}
#evmeContainer.shortcuts-customizing .shortcut .remove {
display: block;
}
#evmeContainer.shortcuts-customizing .shortcut.add {
display: none;
}
#evmeContainer.shortcuts-customizing .shortcut.remove .thumb {
-moz-animation: remove 150ms 1;
}
@-moz-keyframes shake {
0% { -moz-transform: scale(1); }
25% { -moz-transform: scale(1.05); }
50% { -moz-transform: scale(1); }
75% { -moz-transform: scale(0.95); }
100% { -moz-transform: scale(1); }
}
@-moz-keyframes remove {
0% { -moz-transform: scale(1); opacity: 1; }
100% { -moz-transform: scale(1.1); opacity: 0; }
} | 0.485356 | 0.069038 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("asiatorrents.me") {
/* Asiatorrents BLACK v0.2 by Hayenn */
body {
background-color: #000000;
color: #A6B5CF !important;
}
a { color: #D6E5FF !important; }
a:hover { color: #A6B5CF !important;}
/* custom logo */
.tracker_logo {
background-image : url('http://www.asiatorrents.me/imgz/images/Sk3pz.png');
background-repeat: no-repeat;
background-position: 50px 0;
height: 200px;
}
.tracker_logo a img {
height: 200px;
width: 1090px;
opacity : 0;
}
div#main {
max-width: 1120px !important;
background-color: #040608;
}
#footer { background-image: none !important }
table {
background-color: #040608 !important;
}
.b-content table { background-color: #0B0E13 !important; }
.lista {
background-color: #0B0E13 !important;
border-left: 1px solid #0B0E13 !important;
border-right: 1px solid #0B0E13 !important;
color: #A6B5CF !important;
}
#bodyarea #mcol .block-head-title {
background-image: none !important;
background-color: #2E3D54 !important;
color: #A6B5CF !important;
}
#header .b-content,
#header .block-head-title,
#header .block-foot-m,
#bodyarea #mcol .b-content {
background-image: none !important;
background-color: #0B0E13 !important;
}
#header .block-head-l,
#header .block-head-r,
#header .block-content-l,
#header .block-content-r,
#header .block-foot-l,
#header .block-foot-r{
background-image: none !important;
}
.block {
background-color: #0B0E13 !important;
}
td.header {
background-image: none !important;
background-color: #2E3D54 !important;
border-bottom: none !important;
border-top: none !important;
}
#bodyarea #col .block-head-title {
background-image: none !important;
}
#bodyarea #col .b-content {
background-color: #0B0E13 !important;
}
td.blocklist {
background-color: #0B0E13 !important;
color: #A6B5CF !important;
}
td.header {
color: #A6B5CF !important;
}
.code { color: #6784B2 !important;}
/* forum */
.navbar,
span.corners-top span,
span.corners-bottom span,
span.corners-top,
span.corners-bottom{
background-image: none !important;
background: none !important;
}
.content,
.postprofile strong,
fieldset.polls dl,
.content h2,
.panel h2,
.author {
color: #A6B5CF !important;
}
.bg1 { background-color: #121821 !important; }
.bg2 { background-color: #181D26 !important; }
.panel,
.pagination span a,
.pagination span a:link,
.pagination span a:visited {
background-color: #121821 !important;
}
.forabg,
dl {
background-image: none !important;
background-color: #0B0E13 !important;
color : #63A2C9;
}
} | data/usercss/98329.user.css | @namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("asiatorrents.me") {
/* Asiatorrents BLACK v0.2 by Hayenn */
body {
background-color: #000000;
color: #A6B5CF !important;
}
a { color: #D6E5FF !important; }
a:hover { color: #A6B5CF !important;}
/* custom logo */
.tracker_logo {
background-image : url('http://www.asiatorrents.me/imgz/images/Sk3pz.png');
background-repeat: no-repeat;
background-position: 50px 0;
height: 200px;
}
.tracker_logo a img {
height: 200px;
width: 1090px;
opacity : 0;
}
div#main {
max-width: 1120px !important;
background-color: #040608;
}
#footer { background-image: none !important }
table {
background-color: #040608 !important;
}
.b-content table { background-color: #0B0E13 !important; }
.lista {
background-color: #0B0E13 !important;
border-left: 1px solid #0B0E13 !important;
border-right: 1px solid #0B0E13 !important;
color: #A6B5CF !important;
}
#bodyarea #mcol .block-head-title {
background-image: none !important;
background-color: #2E3D54 !important;
color: #A6B5CF !important;
}
#header .b-content,
#header .block-head-title,
#header .block-foot-m,
#bodyarea #mcol .b-content {
background-image: none !important;
background-color: #0B0E13 !important;
}
#header .block-head-l,
#header .block-head-r,
#header .block-content-l,
#header .block-content-r,
#header .block-foot-l,
#header .block-foot-r{
background-image: none !important;
}
.block {
background-color: #0B0E13 !important;
}
td.header {
background-image: none !important;
background-color: #2E3D54 !important;
border-bottom: none !important;
border-top: none !important;
}
#bodyarea #col .block-head-title {
background-image: none !important;
}
#bodyarea #col .b-content {
background-color: #0B0E13 !important;
}
td.blocklist {
background-color: #0B0E13 !important;
color: #A6B5CF !important;
}
td.header {
color: #A6B5CF !important;
}
.code { color: #6784B2 !important;}
/* forum */
.navbar,
span.corners-top span,
span.corners-bottom span,
span.corners-top,
span.corners-bottom{
background-image: none !important;
background: none !important;
}
.content,
.postprofile strong,
fieldset.polls dl,
.content h2,
.panel h2,
.author {
color: #A6B5CF !important;
}
.bg1 { background-color: #121821 !important; }
.bg2 { background-color: #181D26 !important; }
.panel,
.pagination span a,
.pagination span a:link,
.pagination span a:visited {
background-color: #121821 !important;
}
.forabg,
dl {
background-image: none !important;
background-color: #0B0E13 !important;
color : #63A2C9;
}
} | 0.232659 | 0.121451 |
body {
font: 15px/20px "Fifteen-Web", sans-serif;
}
h1 {
font-size: 60px;
line-height: 80px;
}
h2 {
font-size: 30px;
line-height: 40px;
}
a {
color: #06c;
text-decoration: underline;
}
a:hover {
font-weight: 700;
}
strong {
font-weight: 700;
}
em {
font-style: italic;
}
p {
text-align: center;
}
p + p {
margin-top: 20px;
}
.wrapper {
width: 800px;
margin: 60px auto;
}
.block:not(:last-child) {
margin-bottom: 60px;
}
.block.image {}
.block.image img {
max-width: 400px;
margin: 0 auto;
}
.site-header {
text-align: center;
}
.site-header h3 {
margin-top: 10px;
}
.sticky-nav {
position: sticky;
top: 0;
background: white;
padding: 10px 0;
}
.site-links {
text-align: center;
}
.site-footer {
text-align: center;
}
.sample {
}
.italic {
font-style: italic;
}
.large.sample {
font-size: 30px;
line-height: 40px;
}
.medium.sample {
font-size: 22.5px;
line-height: 30px;
}
.weights.sample {
margin: 0 auto;
}
.weights.sample .thin,
.weight-100 {
font-weight: 100;
}
.weights.sample .extra-light,
.weight-200 {
font-weight: 200;
}
.weights.sample .light,
.weight-300 {
font-weight: 300;
}
.weights.sample .regular,
.weight-400 {
font-weight: 400;
}
.weights.sample .medium,
.weight-500 {
font-weight: 500;
}
.weights.sample .semi-bold,
.weight-600 {
font-weight: 600;
}
.weights.sample .bold,
.weight-700 {
font-weight: 700;
}
.weights.sample th {
text-align: right;
}
.weights.sample td {
padding-left: 20px;
text-align: center;
}
.code.sample {
padding: 10px;
width: 520px;
margin: 0 auto;
}
.darkest.code {
background: #000;
color: #fff;
}
.darker.code {
background: #333;
color: #ccc;
}
.dark.code {
background: #666;
color: #999;
}
.light.code {
background: #999;
color: #666;
}
.lighter.code {
background: #ccc;
color: #333;
}
.lightest.code {
background: #fff;
color: #000;
}
.large.sample,
.medium.sample {
text-align: center;
}
.features {
display: flex;
}
.features + .features {
margin-top: 60px;
}
.feature {
width: 400px;
padding: 0 30px;
box-sizing: border-box;
}
.feature dt {
font-weight: 700;
/*font-size: 18px;*/
/*line-height: 20px;*/
padding-bottom: 20px;
text-transform: uppercase;
} | docs/styles.css | body {
font: 15px/20px "Fifteen-Web", sans-serif;
}
h1 {
font-size: 60px;
line-height: 80px;
}
h2 {
font-size: 30px;
line-height: 40px;
}
a {
color: #06c;
text-decoration: underline;
}
a:hover {
font-weight: 700;
}
strong {
font-weight: 700;
}
em {
font-style: italic;
}
p {
text-align: center;
}
p + p {
margin-top: 20px;
}
.wrapper {
width: 800px;
margin: 60px auto;
}
.block:not(:last-child) {
margin-bottom: 60px;
}
.block.image {}
.block.image img {
max-width: 400px;
margin: 0 auto;
}
.site-header {
text-align: center;
}
.site-header h3 {
margin-top: 10px;
}
.sticky-nav {
position: sticky;
top: 0;
background: white;
padding: 10px 0;
}
.site-links {
text-align: center;
}
.site-footer {
text-align: center;
}
.sample {
}
.italic {
font-style: italic;
}
.large.sample {
font-size: 30px;
line-height: 40px;
}
.medium.sample {
font-size: 22.5px;
line-height: 30px;
}
.weights.sample {
margin: 0 auto;
}
.weights.sample .thin,
.weight-100 {
font-weight: 100;
}
.weights.sample .extra-light,
.weight-200 {
font-weight: 200;
}
.weights.sample .light,
.weight-300 {
font-weight: 300;
}
.weights.sample .regular,
.weight-400 {
font-weight: 400;
}
.weights.sample .medium,
.weight-500 {
font-weight: 500;
}
.weights.sample .semi-bold,
.weight-600 {
font-weight: 600;
}
.weights.sample .bold,
.weight-700 {
font-weight: 700;
}
.weights.sample th {
text-align: right;
}
.weights.sample td {
padding-left: 20px;
text-align: center;
}
.code.sample {
padding: 10px;
width: 520px;
margin: 0 auto;
}
.darkest.code {
background: #000;
color: #fff;
}
.darker.code {
background: #333;
color: #ccc;
}
.dark.code {
background: #666;
color: #999;
}
.light.code {
background: #999;
color: #666;
}
.lighter.code {
background: #ccc;
color: #333;
}
.lightest.code {
background: #fff;
color: #000;
}
.large.sample,
.medium.sample {
text-align: center;
}
.features {
display: flex;
}
.features + .features {
margin-top: 60px;
}
.feature {
width: 400px;
padding: 0 30px;
box-sizing: border-box;
}
.feature dt {
font-weight: 700;
/*font-size: 18px;*/
/*line-height: 20px;*/
padding-bottom: 20px;
text-transform: uppercase;
} | 0.560614 | 0.120026 |
.animenu {
display: inline-block;
margin: 0 auto;
margin-top: 0px;
list-style-type: none;
}
.animenu a {
display: block;
margin: 0;
padding: 16px 25px;
color: #333;
text-decoration: none;
background-color: #fff;
}
.animenu li {
position: relative;
float: left;
margin: 0;
border-left: 1px solid #eee;
-webkit-perspective: 200;
perspective: 200;
}
.animenu li:first-child {
border-left: none;
}
.animenu li.parent:before {
content: '';
z-index: 200;
position: fixed;
top: 100%;
left: 50%;
margin-top: -4px;
margin-left: -20px;
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 8px 20px 0 20px;
border-color: #fff transparent transparent transparent;
transition: margin-top .1s ease-out;
}
.animenu li:hover > a, .animenu li:focus > a {
text-decoration: none;
color: #fff;
background-color: #333;
}
.animenu li:hover:before, .animenu li:focus:before {
margin-top: 0;
border-top-color: #333;
}
.animenu li:hover .children, .animenu li:focus .children {
opacity: 1;
-webkit-transform: rotateX(0) translateZ(0);
transform: rotateX(0) translateZ(0);
}
.animenu .children {
opacity: 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: rotateX(-90deg);
transform: rotateX(-90deg);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform-origin: top center;
transform-origin: top center;
transition: opacity 0.1s 0.1s, -webkit-transform 0.4s cubic-bezier(0.17, 0.67, 0.59, 1.21);
transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.59, 1.21), opacity 0.1s 0.1s;
transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.59, 1.21), opacity 0.1s 0.1s, -webkit-transform 0.4s cubic-bezier(0.17, 0.67, 0.59, 1.21);
z-index: 1000;
list-style-type: none;
position: fixed;
top: 100%;
left: 0;
width: 200px;
margin: 0;
padding: 10px 0;
background-color: #fff;
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
text-align: left;
}
.animenu .children li {
float: none;
}
.animenu .children a {
background-color: transparent;
}
.animenu .children a:hover, .animenu .children a:focus {
color: #333;
background-color: #f9f9f9;
} | public/frontend/css/Topbar.css | .animenu {
display: inline-block;
margin: 0 auto;
margin-top: 0px;
list-style-type: none;
}
.animenu a {
display: block;
margin: 0;
padding: 16px 25px;
color: #333;
text-decoration: none;
background-color: #fff;
}
.animenu li {
position: relative;
float: left;
margin: 0;
border-left: 1px solid #eee;
-webkit-perspective: 200;
perspective: 200;
}
.animenu li:first-child {
border-left: none;
}
.animenu li.parent:before {
content: '';
z-index: 200;
position: fixed;
top: 100%;
left: 50%;
margin-top: -4px;
margin-left: -20px;
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 8px 20px 0 20px;
border-color: #fff transparent transparent transparent;
transition: margin-top .1s ease-out;
}
.animenu li:hover > a, .animenu li:focus > a {
text-decoration: none;
color: #fff;
background-color: #333;
}
.animenu li:hover:before, .animenu li:focus:before {
margin-top: 0;
border-top-color: #333;
}
.animenu li:hover .children, .animenu li:focus .children {
opacity: 1;
-webkit-transform: rotateX(0) translateZ(0);
transform: rotateX(0) translateZ(0);
}
.animenu .children {
opacity: 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: rotateX(-90deg);
transform: rotateX(-90deg);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform-origin: top center;
transform-origin: top center;
transition: opacity 0.1s 0.1s, -webkit-transform 0.4s cubic-bezier(0.17, 0.67, 0.59, 1.21);
transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.59, 1.21), opacity 0.1s 0.1s;
transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.59, 1.21), opacity 0.1s 0.1s, -webkit-transform 0.4s cubic-bezier(0.17, 0.67, 0.59, 1.21);
z-index: 1000;
list-style-type: none;
position: fixed;
top: 100%;
left: 0;
width: 200px;
margin: 0;
padding: 10px 0;
background-color: #fff;
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
text-align: left;
}
.animenu .children li {
float: none;
}
.animenu .children a {
background-color: transparent;
}
.animenu .children a:hover, .animenu .children a:focus {
color: #333;
background-color: #f9f9f9;
} | 0.449634 | 0.062646 |
* {
position: relative;
}
.colorA {
color: #F09086;
}
.colorB {
color: #93A5D2;
}
.colorC {
color: #6CACF0;
}
.container {
padding: 0px;
background-size: 60%;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: bottom;
max-width: 1024px;
font-size: 0px;
margin-left: auto;
margin-right: auto;
}
.button {
text-align: center;
top: -10px;
}
.button > a {
text-align: center;
font-size: 25px;
width: 100px;
height: 50px;
color: #707177;
font-weight: bold;
}
hr {
border-top: solid 4px;
color: #707177;
width: 70%;
top: -70px;
}
.title {
width: 100%;
font-size: 45px;
color: #707177;
font-weight: bold;
top: 70px;
margin-bottom: 100px;
}
.border{
text-align: center;
border-radius: 25px;
left: 35%;
width: 210px;
border: solid 3px #707177;
}
.room {
box-sizing: border-box;
display: inline-block;
}
.nav {
position: fixed;
top: 0px;
width: 100%;
height: 100px;
background-color: #707177;
}
.menu {
padding: 0;
max-width: 1024px;
margin-left: auto;
margin-right: auto;
top: -20px;
}
.menu > li {
top: 23px;
font-size: 20px;
display: inline-block;
left: 20%;
font-weight: bold;
}
a {
color: white;
text-decoration: none;
padding-left: 6px;
}
a:hover {
color: #333333;
text-decoration: none;
}
.icon {
width: 30%;
min-width: 200px;
-webkit-transition-duration: 5s;
transition-duration: 5s;
}
.icon2 {
top: 20px;
left: -40%;
width: 200px;
min-width: 150px;
}
.banner {
height: initial;
background-image: url("http://i.imgur.com/xakrNxc.png");
}
.icon {
width: 100%;
min-width: 200px;
}
.banner {
width: 100%;
}
.Room {
height: 500px;
display: inline-block;
font-size: 20px;
box-sizing: border-box;
text-align: center;
}
.seriea {
width: 100%;
height: 500px;
margin-bottom: 450px;
}
.serie {
width: 100%;
height: 500px;
margin-bottom: 450px;
}
.seriec {
width: 100%;
height: 500px;
margin-bottom: 500px;
}
.serienameA {
font-weight: 900;
top: 20px;
padding: 0px;
left: 2%;
width: 200px;
text-align: center;
}
.serienameA > hr {
position: relative;
border-top: 3px solid #F09086;
top: -20px;
width: 170px;
}
.serienameA > h1 {
font-size: 100px;
font-weight: 900;
color: #F09086;
}
.serienameA > h4 {
font-weight: bold;
color: #F09086;
}
.serienameB {
font-weight: 900;
top: 20px;
padding: 0px;
left: 2%;
width: 200px;
text-align: center;
}
.serienameB > hr {
position: relative;
border-top: 3px solid #93A5D2;
top: -20px;
width: 170px;
}
.serienameB > h1 {
font-size: 100px;
font-weight: 900;
color: #93A5D2;
}
.serienameB > h4 {
font-weight: bold;
color: #93A5D2;
}
.serienameC {
font-weight: 900;
top: 20px;
padding: 0px;
left: 2%;
width: 400px;
text-align: center;
}
.serienameC > hr {
position: relative;
border-top: 3px solid #6CACF0;
top: -20px;
width: 300px;
}
.serienameC > h1 {
font-size: 100px;
font-weight: 900;
color: #6CACF0;
}
.serienameC > h4 {
font-weight: bold;
color: #6CACF0;
}
.w {
display: inline-block;
}
table {
left: 3%;
top: 20px;
font-size: 15px;
color: #333333;
border-collapse: collapse;
width: 500px;
}
td, th {
border: 1px solid white;
text-align: center;
padding: 8px;
}
th {
font-weight: bold;
}
tr:nth-child(even) {
background-color: #707177;
color: white;
}
ul {
color: #707177;
text-align: left;
top: 50px;
left: 2%;
}
.text > ul {
left: 4%;
}
li {
padding: 2px;
}
.text {
top: -210px;
text-align: center;
width: 50%;
padding-top: 50px;
}
.text > h2 {
font-weight: bold;
text-align: left;
left: 40px;
}
.photo {
height: 300px;
border: solid 20px;
top: -100px;
width: 50%;
overflow:hidden;
}
.colorAb {
border: solid 8px #F09086;
}
.colorBb {
border: solid 8px #93A5D2;
}
.colorCb {
border: solid 8px #6CACF0;
}
.call {
transform:scaleX(-1);
height: 150px;
width: 150px;
position: fixed;
bottom: 2%;
right: 3%;
transition-duration: 1s;
opacity: 0;
display: none;
}
.call:hover {
cursor: pointer;
}
.index{
display: none;
}
.number{
height: 200px;
width: 200px;
position: fixed;
transition-duration: 1s;
opacity: 0;
bottom: 6%;
right: 33%;
display: none;
}
.visible{
display: initial;
opacity: 1;
}
.group {
left: -6px;
top: -30px;
transition-duration:0.5s;
}
.group:hover{
-webkit-filter:brightness(.5);
}
#Barside {
display: none;
}
@media screen and (max-width: 1000px) {
.banner {
top:150px;
}
.container {
top:150px;
width: 80%;
}
*{
font-size: 1.5rem;
}
.nav {
position: fixed;
top: 0px;
width: 100%;
height: 150px;
background-color: #707177;
}
.icon2 {
position:relative;
transform:scale(1.5,1.5);
top: 40px;
left: 50px;
width: 400px;
min-width: 150px;
}
.menu{
position: relative;
}
.menu > li{
top: 50px;
display: none;
}
.call {
transform:scale(-1.5,1.5);
bottom: 4%;
right: 10%;
}
.menu > li {
left: 8%;
}
.icon2 {
left: -90%;
width: 200px;
min-width: 150px;
}
.seriea {
margin-bottom: 1000px;
}
.serie {
margin-bottom: 1000px;
}
.seriec {
margin-bottom: 1200px;
}
.text {
width: 100%;
margin-bottom: 200px;
}
.photo {
border-width: 20px;
height: 500px;
width: 100%;
margin-top: -100px;
margin-bottom: 200px;
}
.container {
background-size: 90%;
}
.serienameA {
left: 40%;
}
.serienameB {
left: 35%;
}
.serienameC {
left: 20%;
}
table {
width: 100%;
}
.button > a{
font-size: 80px;
}
.index{
display: initial;
transform: scale(1.5,1.5);
position: absolute;
right: -70%;
top: 33%;
cursor: pointer;
height: 20px;
width: 20px;
}
.navside{
letter-spacing: 5px;
position: fixed;
height: 480px;
width: 100%;
top: -620px;
background-color: #707177;
color: white;
box-shadow: 0px 4px 15px #333;
text-decoration: none;
list-style-type: none;
text-align: center;
}
#Barside {
display: initial;
}
#Barside > li{
font-weight: bold;
border-bottom: solid 5px white;
font-size: 50px;
padding: 20px;
}
.number{
display: none;
}
.barside > a{
padding:10px;
font-size:2rem;
}
.border {
left:34%;
border-width:8px;
width:300px;
font-weight:900;
font-size: 2rem;
}
}
.flip-in-ver-right {
-webkit-animation: flip-in-ver-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
animation: flip-in-ver-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
/* ----------------------------------------------
* Generated by Animista on 2017-7-21 20:33:13
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
/**
* ----------------------------------------
* animation flip-in-ver-right
* ----------------------------------------
*/
@-webkit-keyframes flip-in-ver-right {
0% {
-webkit-transform: rotateY(-80deg);
transform: rotateY(-80deg);
opacity: 0;
}
50% {
-webkit-transform: rotateY(-40);
transform: rotateY(-40);
opacity: 0.5;
}
100% {
-webkit-transform: rotateY(0);
transform: rotateY(0);
opacity: 1;
}
}
@keyframes flip-in-ver-right {
0% {
-webkit-transform: rotateY(-80deg);
transform: rotateY(-80deg);
opacity: 0;
}
100% {
-webkit-transform: rotateY(0);
transform: rotateY(0);
opacity: 1;
}
} | css/style.css | * {
position: relative;
}
.colorA {
color: #F09086;
}
.colorB {
color: #93A5D2;
}
.colorC {
color: #6CACF0;
}
.container {
padding: 0px;
background-size: 60%;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: bottom;
max-width: 1024px;
font-size: 0px;
margin-left: auto;
margin-right: auto;
}
.button {
text-align: center;
top: -10px;
}
.button > a {
text-align: center;
font-size: 25px;
width: 100px;
height: 50px;
color: #707177;
font-weight: bold;
}
hr {
border-top: solid 4px;
color: #707177;
width: 70%;
top: -70px;
}
.title {
width: 100%;
font-size: 45px;
color: #707177;
font-weight: bold;
top: 70px;
margin-bottom: 100px;
}
.border{
text-align: center;
border-radius: 25px;
left: 35%;
width: 210px;
border: solid 3px #707177;
}
.room {
box-sizing: border-box;
display: inline-block;
}
.nav {
position: fixed;
top: 0px;
width: 100%;
height: 100px;
background-color: #707177;
}
.menu {
padding: 0;
max-width: 1024px;
margin-left: auto;
margin-right: auto;
top: -20px;
}
.menu > li {
top: 23px;
font-size: 20px;
display: inline-block;
left: 20%;
font-weight: bold;
}
a {
color: white;
text-decoration: none;
padding-left: 6px;
}
a:hover {
color: #333333;
text-decoration: none;
}
.icon {
width: 30%;
min-width: 200px;
-webkit-transition-duration: 5s;
transition-duration: 5s;
}
.icon2 {
top: 20px;
left: -40%;
width: 200px;
min-width: 150px;
}
.banner {
height: initial;
background-image: url("http://i.imgur.com/xakrNxc.png");
}
.icon {
width: 100%;
min-width: 200px;
}
.banner {
width: 100%;
}
.Room {
height: 500px;
display: inline-block;
font-size: 20px;
box-sizing: border-box;
text-align: center;
}
.seriea {
width: 100%;
height: 500px;
margin-bottom: 450px;
}
.serie {
width: 100%;
height: 500px;
margin-bottom: 450px;
}
.seriec {
width: 100%;
height: 500px;
margin-bottom: 500px;
}
.serienameA {
font-weight: 900;
top: 20px;
padding: 0px;
left: 2%;
width: 200px;
text-align: center;
}
.serienameA > hr {
position: relative;
border-top: 3px solid #F09086;
top: -20px;
width: 170px;
}
.serienameA > h1 {
font-size: 100px;
font-weight: 900;
color: #F09086;
}
.serienameA > h4 {
font-weight: bold;
color: #F09086;
}
.serienameB {
font-weight: 900;
top: 20px;
padding: 0px;
left: 2%;
width: 200px;
text-align: center;
}
.serienameB > hr {
position: relative;
border-top: 3px solid #93A5D2;
top: -20px;
width: 170px;
}
.serienameB > h1 {
font-size: 100px;
font-weight: 900;
color: #93A5D2;
}
.serienameB > h4 {
font-weight: bold;
color: #93A5D2;
}
.serienameC {
font-weight: 900;
top: 20px;
padding: 0px;
left: 2%;
width: 400px;
text-align: center;
}
.serienameC > hr {
position: relative;
border-top: 3px solid #6CACF0;
top: -20px;
width: 300px;
}
.serienameC > h1 {
font-size: 100px;
font-weight: 900;
color: #6CACF0;
}
.serienameC > h4 {
font-weight: bold;
color: #6CACF0;
}
.w {
display: inline-block;
}
table {
left: 3%;
top: 20px;
font-size: 15px;
color: #333333;
border-collapse: collapse;
width: 500px;
}
td, th {
border: 1px solid white;
text-align: center;
padding: 8px;
}
th {
font-weight: bold;
}
tr:nth-child(even) {
background-color: #707177;
color: white;
}
ul {
color: #707177;
text-align: left;
top: 50px;
left: 2%;
}
.text > ul {
left: 4%;
}
li {
padding: 2px;
}
.text {
top: -210px;
text-align: center;
width: 50%;
padding-top: 50px;
}
.text > h2 {
font-weight: bold;
text-align: left;
left: 40px;
}
.photo {
height: 300px;
border: solid 20px;
top: -100px;
width: 50%;
overflow:hidden;
}
.colorAb {
border: solid 8px #F09086;
}
.colorBb {
border: solid 8px #93A5D2;
}
.colorCb {
border: solid 8px #6CACF0;
}
.call {
transform:scaleX(-1);
height: 150px;
width: 150px;
position: fixed;
bottom: 2%;
right: 3%;
transition-duration: 1s;
opacity: 0;
display: none;
}
.call:hover {
cursor: pointer;
}
.index{
display: none;
}
.number{
height: 200px;
width: 200px;
position: fixed;
transition-duration: 1s;
opacity: 0;
bottom: 6%;
right: 33%;
display: none;
}
.visible{
display: initial;
opacity: 1;
}
.group {
left: -6px;
top: -30px;
transition-duration:0.5s;
}
.group:hover{
-webkit-filter:brightness(.5);
}
#Barside {
display: none;
}
@media screen and (max-width: 1000px) {
.banner {
top:150px;
}
.container {
top:150px;
width: 80%;
}
*{
font-size: 1.5rem;
}
.nav {
position: fixed;
top: 0px;
width: 100%;
height: 150px;
background-color: #707177;
}
.icon2 {
position:relative;
transform:scale(1.5,1.5);
top: 40px;
left: 50px;
width: 400px;
min-width: 150px;
}
.menu{
position: relative;
}
.menu > li{
top: 50px;
display: none;
}
.call {
transform:scale(-1.5,1.5);
bottom: 4%;
right: 10%;
}
.menu > li {
left: 8%;
}
.icon2 {
left: -90%;
width: 200px;
min-width: 150px;
}
.seriea {
margin-bottom: 1000px;
}
.serie {
margin-bottom: 1000px;
}
.seriec {
margin-bottom: 1200px;
}
.text {
width: 100%;
margin-bottom: 200px;
}
.photo {
border-width: 20px;
height: 500px;
width: 100%;
margin-top: -100px;
margin-bottom: 200px;
}
.container {
background-size: 90%;
}
.serienameA {
left: 40%;
}
.serienameB {
left: 35%;
}
.serienameC {
left: 20%;
}
table {
width: 100%;
}
.button > a{
font-size: 80px;
}
.index{
display: initial;
transform: scale(1.5,1.5);
position: absolute;
right: -70%;
top: 33%;
cursor: pointer;
height: 20px;
width: 20px;
}
.navside{
letter-spacing: 5px;
position: fixed;
height: 480px;
width: 100%;
top: -620px;
background-color: #707177;
color: white;
box-shadow: 0px 4px 15px #333;
text-decoration: none;
list-style-type: none;
text-align: center;
}
#Barside {
display: initial;
}
#Barside > li{
font-weight: bold;
border-bottom: solid 5px white;
font-size: 50px;
padding: 20px;
}
.number{
display: none;
}
.barside > a{
padding:10px;
font-size:2rem;
}
.border {
left:34%;
border-width:8px;
width:300px;
font-weight:900;
font-size: 2rem;
}
}
.flip-in-ver-right {
-webkit-animation: flip-in-ver-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
animation: flip-in-ver-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
/* ----------------------------------------------
* Generated by Animista on 2017-7-21 20:33:13
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
/**
* ----------------------------------------
* animation flip-in-ver-right
* ----------------------------------------
*/
@-webkit-keyframes flip-in-ver-right {
0% {
-webkit-transform: rotateY(-80deg);
transform: rotateY(-80deg);
opacity: 0;
}
50% {
-webkit-transform: rotateY(-40);
transform: rotateY(-40);
opacity: 0.5;
}
100% {
-webkit-transform: rotateY(0);
transform: rotateY(0);
opacity: 1;
}
}
@keyframes flip-in-ver-right {
0% {
-webkit-transform: rotateY(-80deg);
transform: rotateY(-80deg);
opacity: 0;
}
100% {
-webkit-transform: rotateY(0);
transform: rotateY(0);
opacity: 1;
}
} | 0.270673 | 0.066539 |
body {
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}
nav.navbar-default {
background-color: #EEEEEE;
}
input#messageText {
float:left;
}
div.message-area {
margin-top: 4em;
margin-bottom: 5em;
}
#username {
float: right;
}
div.main-area {
}
div.message {
background-color: #E5E5EA;
margin: 5px;
padding: 10px;
border-radius: 12px;
float:left;
max-width: 70%;
min-width: 30%;
}
div.message.ownMessage {
background: radial-gradient(circle, #4EBDFA, #2297FD);
float:right;
color: white;
}
div.messageText {
font-size: 14pt;
overflow: hidden;
word-wrap: break-word;
}
div.ownMessage div.coords {
color: #FFFFFF;
}
div.ownMessage div.userName {
color: #FFFFFF;
}
div.userName {
font-weight: bold;
padding-bottom: 5px;
color: #777777;
}
div.coords {
color: #999999;
}
.messageTime {
font-size: 10pt;
font-style: italic;
float: right;
color: #AAAAAA;
margin-left: 20px;
}
.ownMessage .messageTime{
color: #FFFFFF;
}
.fixedTop {
z-index: 9999;
position: fixed;
top: 0;
background-color: #cccccc;
}
div.headerText {
padding: 10px 25px;
font-weight: bold;
font-size: 18pt;
}
.fixedBottom {
z-index: 9999;
position: fixed;
bottom: 0;
background-color: #cccccc;
padding: 10px;
}
.container {
padding: 0;
}
.overlay {
/* Height & width depends on how you want to reveal the overlay (see JS below) */
height: 0%;
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%;
background-color: rgb(0,0,0); /* Black fallback color */
background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
overflow-x: hidden; /* Disable horizontal scroll */
transition: 0.5s;
}
.overlay.opened {
height: 50%;
}
.overlay-content {
position: relative;
bottom: 30px;
width: 100%;
height: 100%;
padding-bottom: 30px;
text-align: center; /* Centered text/links */
}
.overlay .close-map-btn {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
font-size: 14px;
border-radius: 0;
}
.settings-overlay {
/* Height & width depends on how you want to reveal the overlay (see JS below) */
height: 0%;
position: fixed; /* Stay in place */
z-index: 2; /* Sit on top */
left: 0;
top: 0;
width: 100%;
background-color: #E5E5EA;
overflow-x: hidden; /* Disable horizontal scroll */
transition: 0.5s;
}
.under-settings-overlay {
/* Height & width depends on how you want to reveal the overlay (see JS below) */
height: 100%;
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%;
background-color: rgba(0,0,0, 0.0);
overflow-x: hidden; /* Disable horizontal scroll */
transition: 0.5s;
}
.under-settings-overlay.opened {
background-color: rgba(0,0,0, 0.3);
}
.settings-overlay.opened {
height: 60%;
}
.settings-overlay-content {
position: relative;
top: 20%;
height: 80%;
}
.settings-overlay-content > div {
margin-top: 20px;
}
.settings-overlay .close-settings-btn {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
font-size: 16px;
border-radius: 0;
}
.input-info {
color: #888888;
}
.settings-link {
float: right;
margin: 15px;
}
#messageText {
height: 4em;
margin: 5px;
}
#sendButton {
height: 55px;
width: 80%;
margin: 5px;
font-size: 16pt;
border-radius: 6px;
}
.message-text-container {
padding-right: 0;
}
.send-button-container {
padding-left: 5px;
padding-right: 5px;
}
div.status {
color: white;
}
div.status.waiting {
color: black;
background-color: lightgrey;
}
div.status.fail {
background-color: indianred;
}
div.no-messages {
color: #cccccc;
font-style: italic;
}
.error {
color: red;
}
.glyphicon-map-marker {
float:right;
font-size: 16pt;
} | public/stylesheets/style.css | body {
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}
nav.navbar-default {
background-color: #EEEEEE;
}
input#messageText {
float:left;
}
div.message-area {
margin-top: 4em;
margin-bottom: 5em;
}
#username {
float: right;
}
div.main-area {
}
div.message {
background-color: #E5E5EA;
margin: 5px;
padding: 10px;
border-radius: 12px;
float:left;
max-width: 70%;
min-width: 30%;
}
div.message.ownMessage {
background: radial-gradient(circle, #4EBDFA, #2297FD);
float:right;
color: white;
}
div.messageText {
font-size: 14pt;
overflow: hidden;
word-wrap: break-word;
}
div.ownMessage div.coords {
color: #FFFFFF;
}
div.ownMessage div.userName {
color: #FFFFFF;
}
div.userName {
font-weight: bold;
padding-bottom: 5px;
color: #777777;
}
div.coords {
color: #999999;
}
.messageTime {
font-size: 10pt;
font-style: italic;
float: right;
color: #AAAAAA;
margin-left: 20px;
}
.ownMessage .messageTime{
color: #FFFFFF;
}
.fixedTop {
z-index: 9999;
position: fixed;
top: 0;
background-color: #cccccc;
}
div.headerText {
padding: 10px 25px;
font-weight: bold;
font-size: 18pt;
}
.fixedBottom {
z-index: 9999;
position: fixed;
bottom: 0;
background-color: #cccccc;
padding: 10px;
}
.container {
padding: 0;
}
.overlay {
/* Height & width depends on how you want to reveal the overlay (see JS below) */
height: 0%;
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%;
background-color: rgb(0,0,0); /* Black fallback color */
background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
overflow-x: hidden; /* Disable horizontal scroll */
transition: 0.5s;
}
.overlay.opened {
height: 50%;
}
.overlay-content {
position: relative;
bottom: 30px;
width: 100%;
height: 100%;
padding-bottom: 30px;
text-align: center; /* Centered text/links */
}
.overlay .close-map-btn {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
font-size: 14px;
border-radius: 0;
}
.settings-overlay {
/* Height & width depends on how you want to reveal the overlay (see JS below) */
height: 0%;
position: fixed; /* Stay in place */
z-index: 2; /* Sit on top */
left: 0;
top: 0;
width: 100%;
background-color: #E5E5EA;
overflow-x: hidden; /* Disable horizontal scroll */
transition: 0.5s;
}
.under-settings-overlay {
/* Height & width depends on how you want to reveal the overlay (see JS below) */
height: 100%;
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%;
background-color: rgba(0,0,0, 0.0);
overflow-x: hidden; /* Disable horizontal scroll */
transition: 0.5s;
}
.under-settings-overlay.opened {
background-color: rgba(0,0,0, 0.3);
}
.settings-overlay.opened {
height: 60%;
}
.settings-overlay-content {
position: relative;
top: 20%;
height: 80%;
}
.settings-overlay-content > div {
margin-top: 20px;
}
.settings-overlay .close-settings-btn {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
font-size: 16px;
border-radius: 0;
}
.input-info {
color: #888888;
}
.settings-link {
float: right;
margin: 15px;
}
#messageText {
height: 4em;
margin: 5px;
}
#sendButton {
height: 55px;
width: 80%;
margin: 5px;
font-size: 16pt;
border-radius: 6px;
}
.message-text-container {
padding-right: 0;
}
.send-button-container {
padding-left: 5px;
padding-right: 5px;
}
div.status {
color: white;
}
div.status.waiting {
color: black;
background-color: lightgrey;
}
div.status.fail {
background-color: indianred;
}
div.no-messages {
color: #cccccc;
font-style: italic;
}
.error {
color: red;
}
.glyphicon-map-marker {
float:right;
font-size: 16pt;
} | 0.407569 | 0.114319 |
.solutionSettings {
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
flex: 1 1 auto;
overflow-y: hidden;
line-height: 1.1;
}
/* solution-settings */
.solution-settings {
flex: 3;
display: flex;
max-height: 86vh;
}
.new-solution-pane {
height: 100%;
}
/* hide certain elements under beginner mode */
/* -- hide option to select group or single view */
.beginner .multi-theme-setting .main .tabbable ul {
display: none;
}
/* -- slidebars for weights */
.beginner .weight-setting .weight-slider {
display: none;
}
/* panel title */
.solution-settings .panel-title span {
display: flex;
}
.solution-settings .panel-title i {
margin-right: 5px;
}
/* panels */
.solution-settings .panel-body {
padding: 0;
background: #e9ecef; /* $gray-200 */
}
.solution-settings .panel.panel-default>.panel-heading {
border-top-right-radius: 0px;
background: #ced4da; /* $gray-400 */
}
/* panels group */
.solution-settings .panel-group {
flex: 1 1 auto;
flex-direction: column;
overflow-y: hidden;
margin-bottom: 2px !important;
padding-right: 4px;
}
.solution-settings .panel-content-inner {
overflow-y: scroll;
max-height: calc(100vh - 290px);
}
/* footer */
/* -- container*/
.solution-footer {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin: 0;
width: 100%;
padding-right: 5px;
overflow-x: hide;
flex-wrap: wrap;
left: 20px;
gap: 3px;
}
/* -- items*/
.solution-footer .form-group.shiny-input-container {
margin-bottom: 0px;
}
/* -- color picker */
.solution-footer-color {
width: 25px;
}
.shiny-colour-input.colourpicker-input {
padding-left: 0px !important;
padding-right: 0px !important;
}
.solution-footer-color .colourpicker-panel {
left: -50px;
}
/* -- colourpicker-input-container */
.solution-footer-color .colourpicker-input-container {
width: 25px;
}
/* -- colourpicker-panel */
.solution-footer-color .colourpicker-panel {
width: 184px !important;
bottom: 38px;
}
.solution-footer-stop-button button {
padding-left: 6px;
padding-right: 6px;
}
/* reset button */
.solution-settings .reset-button {
padding: 0;
margin-left: 0px;
margin-top: 0px;
border: 0;
padding-top: 2px;
font-size: 11px;
background: #fff;
}
/* solution name input */
.solution-footer-name {
flex-grow: 1;
}
/* view containers */
.solution-setting {
width: calc(100% - 15px);
border: 1px var(--border) solid;
border-radius: 5px 5px 5px 5px;
margin: 10px;
padding-bottom: 0px;
background: white;
}
.empty-setting.solution-setting label {
margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
font-weight: 400;
}
.weight-setting.solution-setting,
.include-setting.solution-setting,
.parameter-setting.solution-setting {
padding-bottom: 5px;
}
/* -- add disabled mouse cursor to any element with the .disable-mouse class */
.solution-setting .disable-mouse *:hover {
cursor: not-allowed;
}
.solution-setting .single-view {
overflow-y: auto;
max-height: 150px;
}
.solution-setting .main {
max-height: 100%;
}
/* header and sub-header containers */
.solution-setting .header,
.solution-setting .sub-header {
padding-top: 5px;
padding-left: 5px;
padding-bottom: 0px;
display: flex;
align-items: flex-start;
gap: 3px;
}
/* header container */
.solution-setting .status {
margin-top: 0px;
}
.solution-setting .header .name-label {
font-size: 14px;
margin: 0px;
margin-right: auto;
word-break: break-all;
}
.solution-setting .header .el-switch {
font-size: 9px;
font-weight: 700;
padding-bottom: 0;
margin-bottom: 0;
}
.solution-setting .header .provenance-container {
font-size: 14px;
margin-right: 3px;
padding-bottom: 0;
margin-bottom: 0;
}
/* sub-header container */
.solution-setting .sub-header .name-label {
font-size: 12px;
font-weight: 700;
margin-bottom: 0px;
margin-right: auto;
word-break: break-all;
}
.solution-setting .sub-header .el-switch {
font-size: 7px;
margin-bottom: 0;
padding-bottom: 0;
}
.solution-setting .sub-header .provenance-container {
font-size: 12px;
margin-right: 3px;
padding-bottom: 0;
margin-bottom: 0;
}
/* icon and sub-icon containers */
.solution-setting .icon,
.solution-setting .sub-icon {
float: right;
padding-right: 10px;
padding-bottom: 0px;
padding-top: 0px;
}
/* tabs */
.solution-setting .tabbable {
padding-top: 2px;
}
.solution-setting a[role = "tab"] {
padding-top: 2px;
padding-bottom: 2px;
}
/* status info */
/* -- containers */
.solution-setting .status-info {
display: flex;
align-items: center;
margin-bottom: 0px;
margin-top: 2px;
padding-left: 5px;
padding-right: 5px;
flex-basis: 50%;
}
.solution-setting .single-container {
width: calc(100% - 6px);
margin: 3px;
border: 1px var(--border) solid;
border-radius: 5px 5px 5px 5px;
}
.solution-setting .single-container .status-info {
padding-top: 0px;
}
.solution-setting .sub-status-info {
display: flex;
align-items: center;
flex-basis: 50%;
box-sizing: border-box;
width: 100%;
gap: 2px;
}
/* -- labels */
.solution-setting .status-info label {
font-size: 12px;
font-weight: 400;
margin-bottom: 0px;
}
/* -- symbols */
.solution-setting .current-symbol,
.solution-setting .slider-symbol {
width: 12px;
height: 12px;
display:inline-block;
box-sizing: border-box;
border-radius: 4px;
border: 1px solid var(--symbol-border);
box-sizing: border-box;
}
.solution-setting .slider-symbol {
background-color: var(--slider);
color: var(--slider);
}
.solution-setting .current-symbol {
background-color: var(--current);
color: var(--current);
}
/* -- inactive styling */
.solution-setting label[disabled],
.solution-setting i[disabled],
.solution-setting button[disabled] {
color: var(--inactive) !important;
}
.solution-setting .status-info div[disabled] {
background-color: var(--inactive) !important;
color: var(--inactive) !important;
}
/* slider styling (current bar and widget) */
.solution-setting .slider {
width: 100%;
display: inline-flex;
align-items: center;
position: relative;
padding-top: 2px;
padding-left: 5px;
}
.solution-setting .bar-cap,
.solution-setting .current-bar,
.solution-setting .current-min-bar,
.solution-setting .current-max-bar {
width: 0%;
height: 12px;
padding-top: 12px;
padding-bottom: 12px;
padding-left: 0px;
padding-right: 0px;
}
.solution-setting .current-bar,
.solution-setting .current-min-bar,
.solution-setting .current-max-bar {
position: absolute;
}
.solution-setting .bar-cap {
color: var(--current);
background-color: var(--current);
padding-left: 5px;
border-radius: 5px 0px 0px 5px;
}
.solution-setting .current-bar,
.solution-setting .current-min-bar {
color: var(--current);
background-color: var(--current);
}
.solution-setting .current-max-bar {
background-color: var(--current-transparent);
}
.solution-setting .bars,
.solution-setting .widget {
width: 95%;
position: absolute;
padding-right: 0px;
margin-right: 0px;
}
.solution-setting .bars {
display: inline-flex;
align-items: center;
}
/* specify padding if there is a current bar */
.solution-setting .slider .has-current-bar {
margin-left: 5px;
}
/* specify padding if there isn't a current bar */
.solution-setting .widget.no-current-bar {
margin-left: 5px;
}
.solution-setting .weight-slider,
.solution-setting .parameter-slider {
margin-top: 32px;
margin-bottom: 5px;
}
/* noUiSlider settings */
.solution-setting .noUi-connect {
background: var(--slider);
}
.solution-setting .nav > li > a {
padding: 2px 5px;
}
/* -- add extra padding if there is a current bar */
.solution-setting .noUiSlider-widget {
width: 100%;
z-index: 10;
}
.solution-setting [disabled] .noUi-connect {
background: #B8B8B8 !important;
}
/* -- main bar */
.noUi-horizontal {
height: 10px;
}
/* -- handle */
.noUi-horizontal .noUi-handle {
width: 14px;
height: 20px;
right: -7px;
}
/* -- notches */
.noUi-handle:before,
.noUi-handle:after {
height: 6px;
left: 4px;
}
.noUi-handle:after {
left: 7px;
}
/* el-widget styling */
.el-switch.el-switch > input[type="checkbox"]:checked + .el-switch-style {
background-color: var(--active);
}
.el-switch.el-switch > input[type="checkbox"]:checked[disabled] + .el-switch-style {
background-color: var(--inactive);
}
.el-switch > input[type="checkbox"]:checked[disabled] + .el-switch-style {
background-color: var(--inactive);
}
.el-switch > input[type="checkbox"][disabled] + .el-switch-style {
background-color: var(--inactive);
}
.el-radio.el-radio > input[type="radio"] + label:hover:before,
.el-checkbox.el-checkbox > input[type="checkbox"] + label:hover:before,
.el-radio.el-radio > input[type="radio"]:checked + label:before,
.el-checkbox.el-checkbox > input[type="checkbox"]:checked + label:before {
border-color: var(--active);
}
.el-checkbox.el-checkbox > input[type="checkbox"]:checked + label:before,
.el-radio.el-radio > input[type="radio"] + label:after {
background: var(--active);
}
.el-radio.el-radio > input[type="radio"][disabled] + label:hover:before,
.el-checkbox.el-checkbox > input[type="checkbox"][disabled] + label:hover:before {
border-color: var(--inactive);
}
.el-checkbox.el-checkbox > input[type="checkbox"]:checked[disabled] + label:before,
.el-radio.el-radio > input[type="radio"]:checked[disabled] + label:before {
border-color: var(--inactive);
}
.el-checkbox.el-checkbox > input[type="checkbox"][disabled]:checked + label:before,
.el-radio.el-radio > input[type="radio"]:checked[disabled] + label:after {
background: var(--inactive);
}
.el-switch .el-switch-style {
background: var(--inactive);
} | inst/htmlwidgets/lib/solutionSettings-1.0.0/style.css | .solutionSettings {
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
flex: 1 1 auto;
overflow-y: hidden;
line-height: 1.1;
}
/* solution-settings */
.solution-settings {
flex: 3;
display: flex;
max-height: 86vh;
}
.new-solution-pane {
height: 100%;
}
/* hide certain elements under beginner mode */
/* -- hide option to select group or single view */
.beginner .multi-theme-setting .main .tabbable ul {
display: none;
}
/* -- slidebars for weights */
.beginner .weight-setting .weight-slider {
display: none;
}
/* panel title */
.solution-settings .panel-title span {
display: flex;
}
.solution-settings .panel-title i {
margin-right: 5px;
}
/* panels */
.solution-settings .panel-body {
padding: 0;
background: #e9ecef; /* $gray-200 */
}
.solution-settings .panel.panel-default>.panel-heading {
border-top-right-radius: 0px;
background: #ced4da; /* $gray-400 */
}
/* panels group */
.solution-settings .panel-group {
flex: 1 1 auto;
flex-direction: column;
overflow-y: hidden;
margin-bottom: 2px !important;
padding-right: 4px;
}
.solution-settings .panel-content-inner {
overflow-y: scroll;
max-height: calc(100vh - 290px);
}
/* footer */
/* -- container*/
.solution-footer {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin: 0;
width: 100%;
padding-right: 5px;
overflow-x: hide;
flex-wrap: wrap;
left: 20px;
gap: 3px;
}
/* -- items*/
.solution-footer .form-group.shiny-input-container {
margin-bottom: 0px;
}
/* -- color picker */
.solution-footer-color {
width: 25px;
}
.shiny-colour-input.colourpicker-input {
padding-left: 0px !important;
padding-right: 0px !important;
}
.solution-footer-color .colourpicker-panel {
left: -50px;
}
/* -- colourpicker-input-container */
.solution-footer-color .colourpicker-input-container {
width: 25px;
}
/* -- colourpicker-panel */
.solution-footer-color .colourpicker-panel {
width: 184px !important;
bottom: 38px;
}
.solution-footer-stop-button button {
padding-left: 6px;
padding-right: 6px;
}
/* reset button */
.solution-settings .reset-button {
padding: 0;
margin-left: 0px;
margin-top: 0px;
border: 0;
padding-top: 2px;
font-size: 11px;
background: #fff;
}
/* solution name input */
.solution-footer-name {
flex-grow: 1;
}
/* view containers */
.solution-setting {
width: calc(100% - 15px);
border: 1px var(--border) solid;
border-radius: 5px 5px 5px 5px;
margin: 10px;
padding-bottom: 0px;
background: white;
}
.empty-setting.solution-setting label {
margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
font-weight: 400;
}
.weight-setting.solution-setting,
.include-setting.solution-setting,
.parameter-setting.solution-setting {
padding-bottom: 5px;
}
/* -- add disabled mouse cursor to any element with the .disable-mouse class */
.solution-setting .disable-mouse *:hover {
cursor: not-allowed;
}
.solution-setting .single-view {
overflow-y: auto;
max-height: 150px;
}
.solution-setting .main {
max-height: 100%;
}
/* header and sub-header containers */
.solution-setting .header,
.solution-setting .sub-header {
padding-top: 5px;
padding-left: 5px;
padding-bottom: 0px;
display: flex;
align-items: flex-start;
gap: 3px;
}
/* header container */
.solution-setting .status {
margin-top: 0px;
}
.solution-setting .header .name-label {
font-size: 14px;
margin: 0px;
margin-right: auto;
word-break: break-all;
}
.solution-setting .header .el-switch {
font-size: 9px;
font-weight: 700;
padding-bottom: 0;
margin-bottom: 0;
}
.solution-setting .header .provenance-container {
font-size: 14px;
margin-right: 3px;
padding-bottom: 0;
margin-bottom: 0;
}
/* sub-header container */
.solution-setting .sub-header .name-label {
font-size: 12px;
font-weight: 700;
margin-bottom: 0px;
margin-right: auto;
word-break: break-all;
}
.solution-setting .sub-header .el-switch {
font-size: 7px;
margin-bottom: 0;
padding-bottom: 0;
}
.solution-setting .sub-header .provenance-container {
font-size: 12px;
margin-right: 3px;
padding-bottom: 0;
margin-bottom: 0;
}
/* icon and sub-icon containers */
.solution-setting .icon,
.solution-setting .sub-icon {
float: right;
padding-right: 10px;
padding-bottom: 0px;
padding-top: 0px;
}
/* tabs */
.solution-setting .tabbable {
padding-top: 2px;
}
.solution-setting a[role = "tab"] {
padding-top: 2px;
padding-bottom: 2px;
}
/* status info */
/* -- containers */
.solution-setting .status-info {
display: flex;
align-items: center;
margin-bottom: 0px;
margin-top: 2px;
padding-left: 5px;
padding-right: 5px;
flex-basis: 50%;
}
.solution-setting .single-container {
width: calc(100% - 6px);
margin: 3px;
border: 1px var(--border) solid;
border-radius: 5px 5px 5px 5px;
}
.solution-setting .single-container .status-info {
padding-top: 0px;
}
.solution-setting .sub-status-info {
display: flex;
align-items: center;
flex-basis: 50%;
box-sizing: border-box;
width: 100%;
gap: 2px;
}
/* -- labels */
.solution-setting .status-info label {
font-size: 12px;
font-weight: 400;
margin-bottom: 0px;
}
/* -- symbols */
.solution-setting .current-symbol,
.solution-setting .slider-symbol {
width: 12px;
height: 12px;
display:inline-block;
box-sizing: border-box;
border-radius: 4px;
border: 1px solid var(--symbol-border);
box-sizing: border-box;
}
.solution-setting .slider-symbol {
background-color: var(--slider);
color: var(--slider);
}
.solution-setting .current-symbol {
background-color: var(--current);
color: var(--current);
}
/* -- inactive styling */
.solution-setting label[disabled],
.solution-setting i[disabled],
.solution-setting button[disabled] {
color: var(--inactive) !important;
}
.solution-setting .status-info div[disabled] {
background-color: var(--inactive) !important;
color: var(--inactive) !important;
}
/* slider styling (current bar and widget) */
.solution-setting .slider {
width: 100%;
display: inline-flex;
align-items: center;
position: relative;
padding-top: 2px;
padding-left: 5px;
}
.solution-setting .bar-cap,
.solution-setting .current-bar,
.solution-setting .current-min-bar,
.solution-setting .current-max-bar {
width: 0%;
height: 12px;
padding-top: 12px;
padding-bottom: 12px;
padding-left: 0px;
padding-right: 0px;
}
.solution-setting .current-bar,
.solution-setting .current-min-bar,
.solution-setting .current-max-bar {
position: absolute;
}
.solution-setting .bar-cap {
color: var(--current);
background-color: var(--current);
padding-left: 5px;
border-radius: 5px 0px 0px 5px;
}
.solution-setting .current-bar,
.solution-setting .current-min-bar {
color: var(--current);
background-color: var(--current);
}
.solution-setting .current-max-bar {
background-color: var(--current-transparent);
}
.solution-setting .bars,
.solution-setting .widget {
width: 95%;
position: absolute;
padding-right: 0px;
margin-right: 0px;
}
.solution-setting .bars {
display: inline-flex;
align-items: center;
}
/* specify padding if there is a current bar */
.solution-setting .slider .has-current-bar {
margin-left: 5px;
}
/* specify padding if there isn't a current bar */
.solution-setting .widget.no-current-bar {
margin-left: 5px;
}
.solution-setting .weight-slider,
.solution-setting .parameter-slider {
margin-top: 32px;
margin-bottom: 5px;
}
/* noUiSlider settings */
.solution-setting .noUi-connect {
background: var(--slider);
}
.solution-setting .nav > li > a {
padding: 2px 5px;
}
/* -- add extra padding if there is a current bar */
.solution-setting .noUiSlider-widget {
width: 100%;
z-index: 10;
}
.solution-setting [disabled] .noUi-connect {
background: #B8B8B8 !important;
}
/* -- main bar */
.noUi-horizontal {
height: 10px;
}
/* -- handle */
.noUi-horizontal .noUi-handle {
width: 14px;
height: 20px;
right: -7px;
}
/* -- notches */
.noUi-handle:before,
.noUi-handle:after {
height: 6px;
left: 4px;
}
.noUi-handle:after {
left: 7px;
}
/* el-widget styling */
.el-switch.el-switch > input[type="checkbox"]:checked + .el-switch-style {
background-color: var(--active);
}
.el-switch.el-switch > input[type="checkbox"]:checked[disabled] + .el-switch-style {
background-color: var(--inactive);
}
.el-switch > input[type="checkbox"]:checked[disabled] + .el-switch-style {
background-color: var(--inactive);
}
.el-switch > input[type="checkbox"][disabled] + .el-switch-style {
background-color: var(--inactive);
}
.el-radio.el-radio > input[type="radio"] + label:hover:before,
.el-checkbox.el-checkbox > input[type="checkbox"] + label:hover:before,
.el-radio.el-radio > input[type="radio"]:checked + label:before,
.el-checkbox.el-checkbox > input[type="checkbox"]:checked + label:before {
border-color: var(--active);
}
.el-checkbox.el-checkbox > input[type="checkbox"]:checked + label:before,
.el-radio.el-radio > input[type="radio"] + label:after {
background: var(--active);
}
.el-radio.el-radio > input[type="radio"][disabled] + label:hover:before,
.el-checkbox.el-checkbox > input[type="checkbox"][disabled] + label:hover:before {
border-color: var(--inactive);
}
.el-checkbox.el-checkbox > input[type="checkbox"]:checked[disabled] + label:before,
.el-radio.el-radio > input[type="radio"]:checked[disabled] + label:before {
border-color: var(--inactive);
}
.el-checkbox.el-checkbox > input[type="checkbox"][disabled]:checked + label:before,
.el-radio.el-radio > input[type="radio"]:checked[disabled] + label:after {
background: var(--inactive);
}
.el-switch .el-switch-style {
background: var(--inactive);
} | 0.393152 | 0.059374 |
.isquemia{
display: grid;
grid-template-columns: 1fr 1fr;
grid-auto-rows: 1fr;
/* column-gap: 1px;
row-gap: 1px; */
grid-gap: 1px;
}
.box1{
grid-column: 1/3;
}
.boxFin{
grid-column: 1/3;
}
.gridcss{
display: grid;
grid-template-columns: repeat(2,50%);
grid-template-rows: minmax(100px, auto);
gap: 2px;
}
/* Galeria de vasos sanguineos */
#cotenedor_vasos{
display: grid;
grid-template-columns: repeat(2,300px);
grid-template-rows: 50px 350px 150px;
gap: 10px;
}
.vasos_sang:nth-child(1){
grid-column: 1/3;
}
.vasos_sang:nth-child(2){
grid-row: 2/3;
grid-column: 1/2;
}
.vasos_sang:nth-child(3){
grid-row: 2/3;
grid-column: 2/3;
}
.vasos_sang:nth-child(4){
grid-column: 1/3;
}
/* graficas de hipovolemia */
.imgHipovolemia{
display: grid;
height: 100%;
width: 100%;
/* Especificar posición de las áreas */
grid-template-areas:
"derecha izquierda"
"inferior inferior"
;
}
/* nombres de area */
.imgHipovolemia img:nth-child(1){
grid-area: izquierda;
}
.imgHipovolemia img:nth-child(2){
grid-area: derecha;
}
.imgHipovolemia p{
grid-area: inferior;
}
/* Especificar posiciones de cuadro de clasificacion de hipovolemia */
table{
border-collapse: collapse;
width: 100%!important;
}
table, th, td{
border: 1px solid #ffffff;
}
th, td{
width: 18% !important;
}
table td:nth-child(1){
width: 28% !important;
}
table thead{
background: var(--resaltadoTabla);
}
table th:nth-child(1){
width: 28% !important;
}
tbody tr:nth-child(even){
background: var(--negro);
}
tbody tr:hover{
background: var(--encabezado);
}
ol li:hover{
background: var(--encabezado);
}
ul li:hover{
background: var(--encabezado);
}
.parrafo caption{
background: var(--encabezadoTabla);
text-align: center;
}
.parrafo td{
font-size: 0.7em !important;
}
#gridPrimaria{
width: 100%;
height: 100%;
display: grid;
grid-template-columns:1fr 1fr;
gap: 10px;
}
#gridPrimaria h4{
background: var(--resaltadoTabla);
padding: 0px 10px 0px 10px;
}
#gridPrimaria .itemPrimaria, .itemPrimaria .btn{
background: var(--cuerpoTabla);
color: var(--sombra)!important;
}
.itemPrimaria .parrafo{
padding: 10px;
font-size: 0.5em !important;
}
.letra{
color: var(--resaltadoTabla);
font-size: 1.5em;
}
#cuadroSignosHiptension{
height: 100%;
width: 100%;
display: grid;
gap: 10px;
grid-template-columns: 2fr 1fr;
}
.itemCuadroHipot {
font-size: 0.7em !important;
margin: 0 0;
}
.itemCuadroHipot:nth-child(3),.itemCuadroHipot:nth-child(4){
background: var(--encabezado) ;
/* color: var(--sombra); */
padding: 10px;
} | lib/css/cssgrid.css | .isquemia{
display: grid;
grid-template-columns: 1fr 1fr;
grid-auto-rows: 1fr;
/* column-gap: 1px;
row-gap: 1px; */
grid-gap: 1px;
}
.box1{
grid-column: 1/3;
}
.boxFin{
grid-column: 1/3;
}
.gridcss{
display: grid;
grid-template-columns: repeat(2,50%);
grid-template-rows: minmax(100px, auto);
gap: 2px;
}
/* Galeria de vasos sanguineos */
#cotenedor_vasos{
display: grid;
grid-template-columns: repeat(2,300px);
grid-template-rows: 50px 350px 150px;
gap: 10px;
}
.vasos_sang:nth-child(1){
grid-column: 1/3;
}
.vasos_sang:nth-child(2){
grid-row: 2/3;
grid-column: 1/2;
}
.vasos_sang:nth-child(3){
grid-row: 2/3;
grid-column: 2/3;
}
.vasos_sang:nth-child(4){
grid-column: 1/3;
}
/* graficas de hipovolemia */
.imgHipovolemia{
display: grid;
height: 100%;
width: 100%;
/* Especificar posición de las áreas */
grid-template-areas:
"derecha izquierda"
"inferior inferior"
;
}
/* nombres de area */
.imgHipovolemia img:nth-child(1){
grid-area: izquierda;
}
.imgHipovolemia img:nth-child(2){
grid-area: derecha;
}
.imgHipovolemia p{
grid-area: inferior;
}
/* Especificar posiciones de cuadro de clasificacion de hipovolemia */
table{
border-collapse: collapse;
width: 100%!important;
}
table, th, td{
border: 1px solid #ffffff;
}
th, td{
width: 18% !important;
}
table td:nth-child(1){
width: 28% !important;
}
table thead{
background: var(--resaltadoTabla);
}
table th:nth-child(1){
width: 28% !important;
}
tbody tr:nth-child(even){
background: var(--negro);
}
tbody tr:hover{
background: var(--encabezado);
}
ol li:hover{
background: var(--encabezado);
}
ul li:hover{
background: var(--encabezado);
}
.parrafo caption{
background: var(--encabezadoTabla);
text-align: center;
}
.parrafo td{
font-size: 0.7em !important;
}
#gridPrimaria{
width: 100%;
height: 100%;
display: grid;
grid-template-columns:1fr 1fr;
gap: 10px;
}
#gridPrimaria h4{
background: var(--resaltadoTabla);
padding: 0px 10px 0px 10px;
}
#gridPrimaria .itemPrimaria, .itemPrimaria .btn{
background: var(--cuerpoTabla);
color: var(--sombra)!important;
}
.itemPrimaria .parrafo{
padding: 10px;
font-size: 0.5em !important;
}
.letra{
color: var(--resaltadoTabla);
font-size: 1.5em;
}
#cuadroSignosHiptension{
height: 100%;
width: 100%;
display: grid;
gap: 10px;
grid-template-columns: 2fr 1fr;
}
.itemCuadroHipot {
font-size: 0.7em !important;
margin: 0 0;
}
.itemCuadroHipot:nth-child(3),.itemCuadroHipot:nth-child(4){
background: var(--encabezado) ;
/* color: var(--sombra); */
padding: 10px;
} | 0.211295 | 0.341528 |
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
font-family: 'Poppins', sans-serif;
padding-top: 70px;
}
body[data-theme="dark"] {
background-color: black;
}
.navbar {
background-color: #202226!important;
}
.widget {
cursor: pointer;
width: 360px;
max-height: 365px;
}
body[data-theme="dark"] .widget {
background-color: #141619;
}
body[data-theme="dark"] .widget-action-close {
color: #999;
}
.widget-optimal-width {
width: 10px;
white-space: nowrap;
}
body[data-theme="dark"] .widget-header {
color: white;
background-color: #202226;
}
.widget-header .widget-title {
overflow: hidden;
font-size: 14px;
height: 21px;
word-break: break-all;
}
.widget-header .widget-sub-title {
overflow: hidden;
font-size: 12px;
font-weight: 300;
height: 18px;
word-break: break-all;
}
.widget-body {
overflow: auto;
font-size: 12px;
font-weight: 300;
height: 100%;
}
.widget-body .widget-table tr {
vertical-align: top;
}
.widget-body .widget-table td, .widget-body .widget-table th {
padding: 3px;
white-space: nowrap;
}
body[data-theme="dark"] .widget-body .widget-table td {
color: #999;
border-color: #555;
}
body[data-theme="dark"] .widget-body .widget-table th {
color: #999;
border-color: #555;
background-color: #343a40;
}
body[data-theme="dark"] .widget-body {
color: #999;
}
body[data-theme="dark"] .widget-footer {
color: white;
background-color: #202226;
}
body[data-theme="dark"] .widget-body .c3-chart-arc .c3-gauge-value {
fill: #999;
}
body[data-theme="dark"] .widget-body .c3-chart-arcs .c3-chart-arcs-gauge-min {
fill: #999;
}
body[data-theme="dark"] .widget-body .c3-chart-arcs .c3-chart-arcs-gauge-max {
fill: #999;
}
body[data-theme="dark"] .widget-body .c3-chart-arcs .c3-chart-arcs-background {
fill: #333;
stroke: #444;
}
body[data-theme="dark"] .widget-body .c3-chart-arcs .c3-chart-arc path {
stroke: #AAA;
}
body[data-theme="dark"] .widget-body .c3-axis {
stroke: #AAA;
}
body[data-theme="dark"] .widget-body .c3-grid line {
stroke: #333;
stroke-dasharray: 0 0;
}
.widget-body .c3-grid line {
stroke: #DDD;
stroke-dasharray: 0 0;
}
body[data-theme="dark"] .widget-body .c3-legend-item {
fill: #999;
}
.widget-footer .widget-footer-title, .widget-footer .widget-footer-sub-title, .widget-footer .widget-footer-tags {
overflow: hidden;
font-size: 12px;
height: 18px;
word-break: break-all;
}
.widget-footer .widget-footer-tags {
margin-left: 6px;
font-weight: normal;
background-color: darkslategray;
padding-left: 6px;
padding-right: 6px;
border-radius: 3px;
color: white;
}
.widget-detached {
position: fixed;
top: 80px;
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
z-index: 1075;
left: 50%;
margin-left: -350px;
width: 700px;
max-height: 638px;
height: 638px;
}
.widget-backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1050;
display: none;
width: 100%;
height: 100%;
overflow: hidden;
outline: 0;
transition: opacity .15s linear;
opacity: 0.5;
background-color: #444;
}
.widget-action-close {
display: none;
}
.widget-detached .widget-action-close {
display: inline;
}
body.widget-detached-activated .widget-backdrop {
display: inline;
}
@media (max-width: 540px) {
.widget-detached {
left: 10px;
right: 10px;
margin: 0!important;
width: initial;
}
}
.hub-disconnected i {
color: red;
}
.hub-connected i {
color: green;
} | www/css/styles.css | @import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
font-family: 'Poppins', sans-serif;
padding-top: 70px;
}
body[data-theme="dark"] {
background-color: black;
}
.navbar {
background-color: #202226!important;
}
.widget {
cursor: pointer;
width: 360px;
max-height: 365px;
}
body[data-theme="dark"] .widget {
background-color: #141619;
}
body[data-theme="dark"] .widget-action-close {
color: #999;
}
.widget-optimal-width {
width: 10px;
white-space: nowrap;
}
body[data-theme="dark"] .widget-header {
color: white;
background-color: #202226;
}
.widget-header .widget-title {
overflow: hidden;
font-size: 14px;
height: 21px;
word-break: break-all;
}
.widget-header .widget-sub-title {
overflow: hidden;
font-size: 12px;
font-weight: 300;
height: 18px;
word-break: break-all;
}
.widget-body {
overflow: auto;
font-size: 12px;
font-weight: 300;
height: 100%;
}
.widget-body .widget-table tr {
vertical-align: top;
}
.widget-body .widget-table td, .widget-body .widget-table th {
padding: 3px;
white-space: nowrap;
}
body[data-theme="dark"] .widget-body .widget-table td {
color: #999;
border-color: #555;
}
body[data-theme="dark"] .widget-body .widget-table th {
color: #999;
border-color: #555;
background-color: #343a40;
}
body[data-theme="dark"] .widget-body {
color: #999;
}
body[data-theme="dark"] .widget-footer {
color: white;
background-color: #202226;
}
body[data-theme="dark"] .widget-body .c3-chart-arc .c3-gauge-value {
fill: #999;
}
body[data-theme="dark"] .widget-body .c3-chart-arcs .c3-chart-arcs-gauge-min {
fill: #999;
}
body[data-theme="dark"] .widget-body .c3-chart-arcs .c3-chart-arcs-gauge-max {
fill: #999;
}
body[data-theme="dark"] .widget-body .c3-chart-arcs .c3-chart-arcs-background {
fill: #333;
stroke: #444;
}
body[data-theme="dark"] .widget-body .c3-chart-arcs .c3-chart-arc path {
stroke: #AAA;
}
body[data-theme="dark"] .widget-body .c3-axis {
stroke: #AAA;
}
body[data-theme="dark"] .widget-body .c3-grid line {
stroke: #333;
stroke-dasharray: 0 0;
}
.widget-body .c3-grid line {
stroke: #DDD;
stroke-dasharray: 0 0;
}
body[data-theme="dark"] .widget-body .c3-legend-item {
fill: #999;
}
.widget-footer .widget-footer-title, .widget-footer .widget-footer-sub-title, .widget-footer .widget-footer-tags {
overflow: hidden;
font-size: 12px;
height: 18px;
word-break: break-all;
}
.widget-footer .widget-footer-tags {
margin-left: 6px;
font-weight: normal;
background-color: darkslategray;
padding-left: 6px;
padding-right: 6px;
border-radius: 3px;
color: white;
}
.widget-detached {
position: fixed;
top: 80px;
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
z-index: 1075;
left: 50%;
margin-left: -350px;
width: 700px;
max-height: 638px;
height: 638px;
}
.widget-backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1050;
display: none;
width: 100%;
height: 100%;
overflow: hidden;
outline: 0;
transition: opacity .15s linear;
opacity: 0.5;
background-color: #444;
}
.widget-action-close {
display: none;
}
.widget-detached .widget-action-close {
display: inline;
}
body.widget-detached-activated .widget-backdrop {
display: inline;
}
@media (max-width: 540px) {
.widget-detached {
left: 10px;
right: 10px;
margin: 0!important;
width: initial;
}
}
.hub-disconnected i {
color: red;
}
.hub-connected i {
color: green;
} | 0.485356 | 0.075756 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.